Skip to content

Instantly share code, notes, and snippets.

@cauemello
Created December 8, 2016 14:49
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cauemello/92a6018318c2ad320d98f8d6eb690c3e to your computer and use it in GitHub Desktop.
Save cauemello/92a6018318c2ad320d98f8d6eb690c3e to your computer and use it in GitHub Desktop.
Fronteira Eficiente - Carteira de Markovitz
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Fronteira Eficiente - Carteira de Markovitz"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Resolveremos numericamente o problema para traçar a fronteira média-variância através da solução do problema de minimização da variância esperada da carteira, para um nível mínimo de retorno esperado como restrição."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Importação dos pacotes utilizados"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Importamos os pacotes necessários e fazemos a inicialização da ferramenta que apresentará os gráficos."
]
},
{
"cell_type": "code",
"execution_count": 1,
"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=\"53bf2bd9-b38a-4d74-b6f7-061e3cf88b2d\">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",
"\n",
" \n",
" if (typeof (window._bokeh_timeout) === \"undefined\" || force !== \"\") {\n",
" window._bokeh_timeout = Date.now() + 5000;\n",
" window._bokeh_failed_load = false;\n",
" }\n",
"\n",
" var NB_LOAD_WARNING = {'data': {'text/html':\n",
" \"<div style='background-color: #fdd'>\\n\"+\n",
" \"<p>\\n\"+\n",
" \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n",
" \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n",
" \"</p>\\n\"+\n",
" \"<ul>\\n\"+\n",
" \"<li>re-rerun `output_notebook()` to attempt to load from CDN again, or</li>\\n\"+\n",
" \"<li>use INLINE resources instead, as so:</li>\\n\"+\n",
" \"</ul>\\n\"+\n",
" \"<code>\\n\"+\n",
" \"from bokeh.resources import INLINE\\n\"+\n",
" \"output_notebook(resources=INLINE)\\n\"+\n",
" \"</code>\\n\"+\n",
" \"</div>\"}};\n",
"\n",
" function display_loaded() {\n",
" if (window.Bokeh !== undefined) {\n",
" Bokeh.$(\"#53bf2bd9-b38a-4d74-b6f7-061e3cf88b2d\").text(\"BokehJS successfully loaded.\");\n",
" } else if (Date.now() < window._bokeh_timeout) {\n",
" setTimeout(display_loaded, 100)\n",
" }\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(\"53bf2bd9-b38a-4d74-b6f7-061e3cf88b2d\");\n",
" if (element == null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid '53bf2bd9-b38a-4d74-b6f7-061e3cf88b2d' but no matching script tag was found. \")\n",
" return false;\n",
" }\n",
"\n",
" var js_urls = ['https://cdn.pydata.org/bokeh/release/bokeh-0.12.3.min.js', 'https://cdn.pydata.org/bokeh/release/bokeh-widgets-0.12.3.min.js'];\n",
"\n",
" var inline_js = [\n",
" function(Bokeh) {\n",
" Bokeh.set_log_level(\"info\");\n",
" },\n",
" \n",
" function(Bokeh) {\n",
" \n",
" Bokeh.$(\"#53bf2bd9-b38a-4d74-b6f7-061e3cf88b2d\").text(\"BokehJS is loading...\");\n",
" },\n",
" function(Bokeh) {\n",
" console.log(\"Bokeh: injecting CSS: https://cdn.pydata.org/bokeh/release/bokeh-0.12.3.min.css\");\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh/release/bokeh-0.12.3.min.css\");\n",
" console.log(\"Bokeh: injecting CSS: https://cdn.pydata.org/bokeh/release/bokeh-widgets-0.12.3.min.css\");\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh/release/bokeh-widgets-0.12.3.min.css\");\n",
" }\n",
" ];\n",
"\n",
" function run_inline_js() {\n",
" \n",
" if ((window.Bokeh !== undefined) || (force === \"1\")) {\n",
" for (var i = 0; i < inline_js.length; i++) {\n",
" inline_js[i](window.Bokeh);\n",
" }if (force === \"1\") {\n",
" display_loaded();\n",
" }} else if (Date.now() < window._bokeh_timeout) {\n",
" setTimeout(run_inline_js, 100);\n",
" } else if (!window._bokeh_failed_load) {\n",
" console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n",
" window._bokeh_failed_load = true;\n",
" } else if (!force) {\n",
" var cell = $(\"#53bf2bd9-b38a-4d74-b6f7-061e3cf88b2d\").parents('.cell').data().cell;\n",
" cell.output_area.append_execute_result(NB_LOAD_WARNING)\n",
" }\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 pandas_datareader.data as web\n",
"import matplotlib.pyplot as plt\n",
"import pandas as pd\n",
"import datetime as dt\n",
"import numpy as np\n",
"from scipy.optimize import minimize\n",
"\n",
"from bokeh.io import show, output_notebook\n",
"from bokeh.plotting import figure\n",
"import bokeh.palettes as palettes\n",
"from bokeh.models import NumeralTickFormatter\n",
"\n",
"output_notebook()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Captura dos preços do ativos"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Selecionamos 5 ativos negociados na bolsa brasileira para o problema. Capturamos os preços a partir do início do ano de 2016."
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"From 04/Jan/16 to 07/Dec/16 \n",
"\n"
]
}
],
"source": [
"first_price_date = dt.datetime(2016, 1, 1)\n",
"last_price_date = dt.datetime(2016, 12, 7)\n",
"symbols = ['VALE5', 'PETR4', 'BVMF3', 'ITUB4', 'BBAS3']\n",
"\n",
"data = pd.DataFrame()\n",
"for sym in symbols:\n",
" data[sym] = web.DataReader(sym, 'google', first_price_date, last_price_date)['Close']\n",
"data = data.dropna()\n",
"\n",
"days = data.index\n",
"print(\"From %s to %s \\n\" % (days[0].strftime(\"%d/%b/%y\"), days[-1].strftime(\"%d/%b/%y\")))"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Cálculo dos retornos diários"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Note que o importante não é o preço dos ativos, e sim seus retornos."
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"daily_returns = np.log(data / data.shift(1))"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Cálculo da matriz de covariância e dos retornos anualizados"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Devemos sempre anualizar os retornos e a matriz de covariância. Para isso utilizamos a convenção de 252 dias úteis."
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"_252_DAYS = 252\n",
"covariance_matrix = np.asarray(_252_DAYS * daily_returns.cov())\n",
"annualized_returns = np.asarray(_252_DAYS * daily_returns.mean())"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Matriz de covariância anualizada"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
" VALE5 PETR4 BVMF3 ITUB4 BBAS3\n",
"VALE5 0.423061 0.237970 0.086874 0.100836 0.138764\n",
"PETR4 0.237970 0.425339 0.144189 0.162488 0.266100\n",
"BVMF3 0.086874 0.144189 0.132996 0.083185 0.128917\n",
"ITUB4 0.100836 0.162488 0.083185 0.132272 0.160479\n",
"BBAS3 0.138764 0.266100 0.128917 0.160479 0.337085\n"
]
}
],
"source": [
"print(pd.DataFrame(covariance_matrix, index=symbols, columns=symbols))"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Retorno anualizado"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
" Return\n",
"VALE5 1.112155\n",
"PETR4 0.908760\n",
"BVMF3 0.478882\n",
"ITUB4 0.431669\n",
"BBAS3 0.694936\n"
]
}
],
"source": [
"print(pd.DataFrame(annualized_returns, index=symbols, columns=['Return']))"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Definição dos métodos de cálculo de variância (risco) e retorno da carteira"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Definimos as equações de variância e retorno da carteira. Lembramos que o risco é medido pelo desvio padrão, que é a raiz quadrada da variância."
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"def portfolio_variance(w):\n",
" _w = np.asarray(w)\n",
" return _w.dot(covariance_matrix).dot(_w)\n",
"\n",
"def portfolio_return(w):\n",
" _w = np.asarray(w)\n",
" return _w.dot(annualized_returns)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Definição do gradiente da variância para facilitar a convergência na minimização"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"def portfolio_variance_gradient(w):\n",
" _w = np.asarray(w)\n",
" return 2 * _w.dot(covariance_matrix)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Definição do método de minimização da variância com restrição de retorno mínimo para a carteira"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Aqui definimos o método que, dado um retorno mínimo, minimiza a variância da carteira e retorna o vetor com a proporção de cada ativo. Devemos chamar atenção para as restrições:\n",
"\n",
"$\\bullet$ Se não há venda a descoberto, w deve ser não negativo.\n",
"\n",
"$\\bullet$ A soma dos elementos de w é sempre igual a 1.\n",
"\n",
"$\\bullet$ O retorno da carteira é sempre maior ou igual ao retorno mínimo passado como parâmetro."
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"def minimize_portfolio_variance(min_return, short_sale_allowed=True):\n",
" assets_number = len(symbols)\n",
"\n",
" bnds = None if short_sale_allowed \\\n",
" else [(0, None) for i in range(assets_number)] # If short sale not allowed, lower bound = 0\n",
"\n",
" initial_guess = [1 / assets_number for i in range(assets_number)]\n",
" cons = ({'type': 'eq', 'fun': lambda w: w.sum() - 1},\n",
" {'type': 'ineq', 'fun': lambda w: portfolio_return(w) - min_return})\n",
" return minimize(portfolio_variance, initial_guess,\n",
" constraints=cons,\n",
" bounds=bnds,\n",
" options={'disp': False},\n",
" method='SLSQP',\n",
" jac=portfolio_variance_gradient)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Definição do método que calcula a fronteira eficiente"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"O método que calcula a fronteira eficiente executa o método definido anteriormente para diversos valores de retorno mínimo. Assim, para cada iteração, temos um ponto da fronteira desejada."
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"def calculate_mv_frontier(short_sale_allowed=True):\n",
" frontier = pd.Series()\n",
" weights = pd.DataFrame()\n",
" for min_return in np.linspace(0, 1.2, num=2000):\n",
" result = minimize_portfolio_variance(min_return, short_sale_allowed=short_sale_allowed)\n",
" if not result.success:\n",
" continue\n",
" w_frontier = result.x\n",
" port_sigma = np.sqrt(portfolio_variance(w_frontier))\n",
" port_return = portfolio_return(w_frontier)\n",
" frontier.set_value(port_sigma, port_return)\n",
"\n",
" for i, symbol in enumerate(symbols):\n",
" weights.set_value(port_sigma, symbol, w_frontier[i])\n",
"\n",
" return frontier, weights"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Cálculo das fronteiras e das respectivas proporções dos ativos"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Agora podemos calcular as fronteiras desejadas: Uma será calculada sem vendas a descoberto e a outra com vendas a descoberto. Medimos o tempo de execução para avaliar a eficiência do algoritmo de otimização."
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"CPU times: user 7.18 s, sys: 84.1 ms, total: 7.27 s\n",
"Wall time: 7.7 s\n",
"CPU times: user 8.57 s, sys: 87.8 ms, total: 8.66 s\n",
"Wall time: 9.32 s\n"
]
}
],
"source": [
"%time frontier_ss_false, weights_ss_false = calculate_mv_frontier(short_sale_allowed=False)\n",
"%time frontier_ss_true, weights_ss_true = calculate_mv_frontier(short_sale_allowed=True)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Apresentação dos gráficos"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Fronteiras com e sem vendas a descoberto\n",
"É interessante notar que a fronteira que permite vendas a descoberto é maior, por possibilitar mais combinações de ativos. Porém, como esperado, na região em que a carteira ótima possui apenas proporções positivas, as duas fronteiras se confundem.\n",
"\n",
"Outra característica importante que deve ser notada é que o retorno máximo da carteira quando não é permitido venda a descoberto é o maior retorno dentre os ativos, alcançado quando a carteira está totalmente alocada neste ativo (proporção de 100%). Quando a venda a descoberto é permitida, alcançamos esse mesmo retorno com um risco inferior e com outros ativos na carteira.\n",
"\n",
"Dica: Ao clicar no gráfico, selecione a opção de Zoom para verificar os níveis de risco."
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {
"collapsed": false,
"scrolled": false
},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
" <div class=\"bk-root\">\n",
" <div class=\"plotdiv\" id=\"70cef20b-b5f5-43be-bfab-f5057d6bc256\"></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",
" \n",
" \n",
" if (typeof (window._bokeh_timeout) === \"undefined\" || force !== \"\") {\n",
" window._bokeh_timeout = Date.now() + 0;\n",
" window._bokeh_failed_load = false;\n",
" }\n",
" \n",
" var NB_LOAD_WARNING = {'data': {'text/html':\n",
" \"<div style='background-color: #fdd'>\\n\"+\n",
" \"<p>\\n\"+\n",
" \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n",
" \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n",
" \"</p>\\n\"+\n",
" \"<ul>\\n\"+\n",
" \"<li>re-rerun `output_notebook()` to attempt to load from CDN again, or</li>\\n\"+\n",
" \"<li>use INLINE resources instead, as so:</li>\\n\"+\n",
" \"</ul>\\n\"+\n",
" \"<code>\\n\"+\n",
" \"from bokeh.resources import INLINE\\n\"+\n",
" \"output_notebook(resources=INLINE)\\n\"+\n",
" \"</code>\\n\"+\n",
" \"</div>\"}};\n",
" \n",
" function display_loaded() {\n",
" if (window.Bokeh !== undefined) {\n",
" Bokeh.$(\"#70cef20b-b5f5-43be-bfab-f5057d6bc256\").text(\"BokehJS successfully loaded.\");\n",
" } else if (Date.now() < window._bokeh_timeout) {\n",
" setTimeout(display_loaded, 100)\n",
" }\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(\"70cef20b-b5f5-43be-bfab-f5057d6bc256\");\n",
" if (element == null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid '70cef20b-b5f5-43be-bfab-f5057d6bc256' 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 = {\"cd55fd21-724a-481c-ad85-2d7297ed5b30\":{\"roots\":{\"references\":[{\"attributes\":{\"label\":{\"value\":\"Short Sale Allowed\"},\"renderers\":[{\"id\":\"1080f45d-8db9-45ec-838b-f76c3203417a\",\"type\":\"GlyphRenderer\"}]},\"id\":\"860f6d95-03c1-4488-98fd-0945393f4d5a\",\"type\":\"LegendItem\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[0.3276185208729144,0.32761852455499285,0.3276184988715761,0.32761855767617,0.32761850624705724,0.3276193425099424,0.3276210172813669,0.3276235293231958,0.32762687861596157,0.32763106513388246,0.32763608884523554,0.3276419497111282,0.32764864768745783,0.32765618272196295,0.3276645547572867,0.327673763728768,0.32768380956756465,0.32769469219461383,0.3277064115269136,0.32771896747521423,0.3277323599441557,0.3277465888301686,0.32776170316310044,0.3277775554111653,0.3277942928702391,0.32781186627042086,0.32783027548173077,0.3278495203602329,0.3278696007604206,0.327890516526277,0.32791226750052427,0.32793485351615814,0.3279582744004624,0.32798252997565613,0.3280076200529819,0.3280335444472768,0.32806030295323413,0.3280878953744637,0.3281163214928485,0.3281455810975444,0.32817567396367586,0.32820659986384776,0.32823835855911426,0.3282709498073848,0.32830437336470925,0.3283386289767402,0.32837371637966595,0.3284096353065426,0.328446385490255,0.3284839666462454,0.328522378491068,0.3285616207320121,0.3286016930747113,0.3286488114485297,0.3286913313465059,0.3287332341034497,0.3287759982257872,0.328819623377448,0.32886410921577514,0.3289094553915382,0.3289556615489477,0.3290027273256681,0.3290506523528323,0.32909943625505605,0.3291490786504519,0.32919957915064474,0.3292509373607862,0.32930315287957035,0.32935622529924874,0.3294101542056466,0.32946493917817843,0.32952057978986415,0.3295770766271116,0.3296344357551179,0.329692640466889,0.32975169028233553,0.329811584705585,0.32987232322433635,0.32993390533750516,0.3299963305246728,0.3300595982613782,0.33012370801607366,0.3301886592534524,0.33025445141789733,0.3303210839826195,0.33038855634002484,0.33045686796450413,0.33052601827381783,0.3305960066714396,0.33066683260080204,0.3307384954348778,0.3308109945870268,0.33088432944732427,0.3309584993935369,0.3310335038140434,0.33110934209434983,0.3311860135546626,0.3312635176053262,0.3313418535634944,0.3314210207654918,0.33150101858140035,0.3315803667706755,0.3316553508408586,0.33173722375590725,0.33181990316667603,0.33190338846687845,0.33198767904191984,0.33207277428194365,0.33215867356425693,0.3322453762738716,0.33233288177727727,0.33242118944998655,0.33251029862497045,0.3326002086866098,0.33269091897500536,0.3327824288423031,0.3328747376179746,0.33296784463743345,0.33306174924749865,0.33315645075170885,0.3332519484870249,0.33334824176441596,0.33344532990777176,0.3335432121893467,0.33364188792990374,0.33374135644035235,0.33384161698305814,0.3339426688744463,0.33404451137369423,0.33414714376545673,0.3342505653137495,0.3343547753113757,0.33445977299625357,0.33456555763513846,0.3346721284817986,0.33477948478541014,0.3348876257905814,0.33499655073737855,0.33510625886135037,0.33521674939355334,0.335328021550047,0.3354400745745613,0.3355529076832664,0.33566652005879416,0.3357809109537664,0.33589607952832223,0.3360120250265912,0.3361287465998748,0.3362462434748632,0.3363645148398088,0.3364835598530452,0.3366033777192032,0.33672396756062456,0.3368453286148634,0.336967460019645,0.3370903609404778,0.33721403053504684,0.3373384679725447,0.33746367237465313,0.3375896428872456,0.33771637868294996,0.33784387888677936,0.33797214264623887,0.3381011690479721,0.33823095726683644,0.33836150640806967,0.3384928156081368,0.33862488393439627,0.3387577105660711,0.33889129455994904,0.33902563501993527,0.33916073108287664,0.339296581847061,0.33943318636947506,0.33957054375871737,0.3397086531015482,0.33984751348121683,0.33998712395887415,0.3401274836463812,0.34026859160249673,0.3404104469119095,0.34055304858383517,0.34069639573933225,0.34084048743867745,0.3409853226977668,0.34113090056708545,0.3412772201634511,0.34142428046613843,0.3415720805407974,0.3417206194038998,0.3418698961393813,0.34201990975948887,0.342170659314578,0.34232214378860504,0.3424743622054179,0.3426273136572685,0.34278099709427445,0.34293541152416834,0.3430905560440399,0.3432464295565326,0.34340303117588855,0.343560359825766,0.3437184145347064,0.3438771942752246,0.3440366981224538,0.3441969249637783,0.34435787386787936,0.3445195438299261,0.34468193377423934,0.3448450427130118,0.34500886962863075,0.3451734134923803,0.34533867325428713,0.3455046480115461,0.34567133654383886,0.3458387379159097,0.346006851119397,0.34617567509176655,0.34634520885909625,0.34651545117888133,0.34668640120555644,0.3468580578274571,0.34703042002902734,0.3472034866939096,0.3473772568017567,0.34755172929743916,0.3477269031236846,0.3479027771836269,0.34807935052821976,0.34825662194318135,0.348434590479296,0.3486132550648891,0.34879261451559856,0.34897266787734516,0.3491534140347148,0.34933485192075936,0.349516980488252,0.34969979858444955,0.34988330512721383,0.35006749911190366,0.35025237941220166,0.35043794503481146,0.3506241946278068,0.35081112745133197,0.3509987421054667,0.3511870376293314,0.3513760129769223,0.3515656670436281,0.35175599865312984,0.35194700669233503,0.3521386902562696,0.3523310479624999,0.35252407884255427,0.35271778183700014,0.3529121557987549,0.35310719965202103,0.3533029122123975,0.3534992923813571,0.3536963391280943,0.35389405126192747,0.35409242769130456,0.3542914672601337,0.35449116901698413,0.35469153158750344,0.35489255402796693,0.3550942352304366,0.3552965738426132,0.35549956908640906,0.35570321954152045,0.355907524277048,0.3561124820879324,0.35631809194159836,0.3565243525423899,0.35673126277073197,0.3569388217331018,0.3571470279696804,0.3573558807570205,0.35756537847691244,0.35777552032333076,0.35798630508454377,0.35819773153059903,0.35840979868388484,0.3586225055338194,0.35883585047500877,0.3590498326403999,0.3592644509859948,0.3594797042800513,0.35969559138264817,0.35991211125050965,0.3601292625488342,0.36034704413333357,0.3605654551586172,0.3607844942855715,0.3610041600739574,0.3612244520664634,0.36144536842938096,0.36166690852182837,0.36188907068221443,0.3621118542829124,0.36233525807654265,0.3625592807066436,0.36278392649143454,0.3630092039833127,0.36323510974685336,0.3634616395416308,0.3636887904252584,0.36391655855220706,0.3641449414098956,0.36437393606095553,0.36460354018914765,0.36483375144628316,0.3650645674073248,0.3652959860096139,0.36552800553268555,0.3657606240406229,0.3659931127356883,0.36622688232464823,0.3664612513118711,0.36669621858935414,0.366931782981064,0.36716794333525865,0.3674046985271326,0.36764204737639145,0.36787998875704536,0.36811852151242713,0.3683576445014068,0.3685973565521269,0.3688376565391948,0.36907854331396545,0.36932001570594913,0.3695620725966156,0.3698046709789259,0.3700476912742367,0.37029110201080434,0.3705349118256054,0.3707791212049149,0.37102372941013,0.3712687357436688,0.37151413944478556,0.37175993985213535,0.3720061362490987,0.372252728006767,0.372499714456405,0.3727470949966942,0.3729948690397256,0.37324303604999204,0.3734915964126429,0.3737405505389886,0.37398989531938187,0.3742396300337059,0.3744897539052839,0.37474026614656475,0.3749911660319915,0.37524245272871737,0.3754941254797369,0.3757461834181527,0.37599862575136545,0.3762514516132772,0.37650466008920763,0.3767582502615739,0.3770122212180641,0.37726657192635826,0.3775205907014442,0.3777756610934663,0.37803109975125393,0.37828691309160933,0.37854310139229247,0.3787996639104321,0.37905659988236334,0.37931390855129243,0.37957158919078593,0.3798296410086964,0.3800880632787945,0.38034685526216677,0.3806060162117057,0.38086554535885836,0.3811254419766587,0.3813857053296712,0.3816463346758456,0.38190732926529836,0.38216868834971235,0.3824304112020241,0.3826924970723964,0.3829556130989314,0.38321835863181786,0.38348146764188695,0.3837449397510051,0.38400877452667553,0.3842729714518197,0.3845375300206121,0.38480244954389037,0.3850677293780543,0.3853333686869785,0.38559936671489053,0.38586572259446483,0.38613250025470497,0.38639975401983545,0.38666737096371606,0.38693531541260534,0.3872027928131327,0.3874712894004402,0.38774013384819755,0.38800932531719823,0.38827886323399824,0.3885493927169675,0.3888195387360317,0.38909003069022075,0.38936087242681666,0.38963206597587663,0.38990361183748595,0.39017550947560237,0.39044775776125756,0.39072035507915387,0.39099329972615854,0.3912665899267954,0.39154022401581595,0.3918142003151253,0.3920885173990754,0.3923631738911549,0.392638168472412,0.3929135001109363,0.3931891676635508,0.3934651701743622,0.39374150672489744,0.39401817643987425,0.3942951784963602,0.3945725120793736,0.39485017640484665,0.39512817072557804,0.3954064943163363,0.3956851465702112,0.3959641280481939,0.3962434420144016,0.3965231100110187,0.396803167667493,0.3970834226948424,0.3973640110657166,0.39764493027750564,0.3979261758772389,0.3982077281367434,0.39848960456713367,0.39877181407975226,0.39905435331197625,0.39933721762220664,0.3996204018691251,0.3999039020956996,0.40018771644480094,0.40047202831299067,0.4007563444001012,0.4010411039167187,0.4013261784900671,0.4016115664693754,0.4018972666319537,0.40218327914019414,0.40246960387103914,0.4027562404563842,0.4030431883744242,0.4033304470265281,0.4036180158935932,0.40390588713029724,0.40419405938496805,0.4044825416078352,0.4047713356548185,0.40506043962910454,0.4053498512102704,0.40563956858791955,0.40592959059639533,0.4062199163105409,0.4065105449886759,0.40680147592892063,0.4070927084623936,0.40738424192919775,0.4076760756934266,0.40796820910121956,0.40826064149138797,0.40855337225667737,0.40884728864886416,0.40914060863727403,0.40943420876512804,0.4097280843427481,0.4100222338928219,0.4103166559825014,0.41061134914619585,0.4109063119777112,0.411201543035364,0.4114970409565903,0.4117928043475969,0.4120888318849738,0.41238512224966883,0.4126816741563655,0.41297848635836465,0.4132755576221351,0.41357288672894144,0.41387047255041076,0.4141683138955167,0.41446640968290543,0.414764758824998,0.415063360229828,0.4153622128987402,0.41566131580392895,0.4159606679645471,0.4162602684493768,0.4165601163021296,0.4168602106160261,0.4171605505586886,0.4174611352393533,0.41776196385697745,0.41806303558528807,0.4183643497159781,0.4186659054215974,0.41896770205949435,0.4192697475353904,0.4195720542496474,0.41987460115814584,0.42017647086758025,0.42047943512012087,0.4207826365159078,0.4210860742830144,0.4213897478221484,0.42169231655651285,0.4219963623992954,0.42230064209953017,0.4226051535915755,0.42290989639137566,0.42321487001247626,0.4235200739434664,0.4238255077545718,0.4241311709132678,0.42443706297602224,0.42474318343144324,0.42504953179190025,0.4253561075882796,0.42566291031914405,0.4259699395126862,0.4262771947057729,0.42658467536768724,0.4268924716407696,0.42720073401658143,0.42750939474025657,0.4278185143243341,0.4281280920957425,0.4284381277026951,0.42874862088918747,0.42905957167129716,0.42937098015375263,0.4296828463735681,0.4299951701945951,0.4303095066269367,0.4306227181995988,0.43093637935010476,0.4312504894538105,0.4315660214442515,0.43188099165112115,0.4321964112990264,0.4325122795429912,0.43282859540116675,0.43314535778967783,0.43346256801053495,0.433780228071229,0.4340983286526985,0.43441686880864144,0.4347358476174781,0.4350552641410328,0.4353751174974541,0.43569540673550566,0.43601613090322683,0.4363372891306743,0.4366588804900141,0.43698090403058737,0.43730335885969995,0.43762624406436823,0.43794955873059804,0.43827330192224523,0.43859747275500216,0.4389220703044613,0.43924709365608394,0.4395725419285548,0.4398984142150703,0.44022470957262944,0.4405514271243408,0.4408785660034026,0.4412061252389988,0.4415341039898564,0.441862501340393,0.4421913163985827,0.4425205482696644,0.4428501960664273,0.44318025891206275,0.4435107358756941,0.4438416261127388,0.4441729287061149,0.44450464279961927,0.4448367674994698,0.44516930193072435,0.44550224520947884,0.4458355964793657,0.4461693545130176,0.4465035184576972,0.44683808782605466,0.4471730617690894,0.4475084394011344,0.44784421986095774,0.4481804023015942,0.4485169858546873,0.44885396967078867,0.4491913528992015,0.4495291346719301,0.44986731412322994,0.45020589043699344,0.45054486275190686,0.45088423022366764,0.4512239920046236,0.4515641472518304,0.4519046951332633,0.45224563480179286,0.4525869654295825,0.45292868618654064,0.45327079621755334,0.45361329470879624,0.45395618082086936,0.4542994537257346,0.4546436733313877,0.4549876793982982,0.45533207357892524,0.4556768551798802,0.4560220236675058,0.45636757834788627,0.4567135185709516,0.4570598436863472,0.45740655288936755,0.45775364546193875,0.4581011204306979,0.4584489769319677,0.4587972138782804,0.45914583011308185,0.4594948244296817,0.4598441955317917,0.46019394214345943,0.46054406282282057,0.46089455633507725,0.4612454213709968,0.46159665659526666,0.46194826109500936,0.46230023383496366,0.4626525739489643,0.46300528064888113,0.46335835335922626,0.46371179147499436,0.46406461678341066,0.4644187274418161,0.46477141631397656,0.4651261615125447,0.46548126409327395,0.4658367233006195,0.4661925384011847,0.46654870879963967,0.4669052353267928,0.4672621196292786,0.46761936035172286,0.46797695893529984,0.4683349233884471,0.46869324832403514,0.4690519272723844,0.4694109443201829,0.4697702764144947,0.47012990839036367,0.4704898541838774,0.4708501516647552,0.47121131725775606,0.47157223126890474,0.47193364242440355,0.47229553333374813,0.47265710959724816,0.4730195629050927,0.4733823486517745,0.47374545416030184,0.4741088788678331,0.4744726272628526,0.47483670253625576,0.47520169212191793,0.47556622961206996,0.47593123357753275,0.4762966877483658,0.4766624771421816,0.4770285975900899,0.4773950481892088,0.4777618279528871,0.4781289358243282,0.4784963709132398,0.47886413226007934,0.47923221880355543,0.47960062973119816,0.4799693640898356,0.480338420994994,0.4807077996194145,0.4810774992306132,0.4814475191265742,0.481817858652657,0.4821885172760752,0.4825594945765413,0.4829307902552972,0.4833024040515648,0.48367433603527077,0.48404658614779555,0.48441915459752294,0.48479204156291206,0.4851652471963508,0.4855387713966733,0.485912613770581,0.48628677331398845,0.48666173748561714,0.48703632228749183,0.4874112831159519,0.48778711808791264,0.4881624980804226,0.48853836034878845,0.4889146559384489,0.48929132543687437,0.4896684056257545,0.490045951599564,0.49042317369430743,0.4908011563217118,0.4911795076005428,0.4915576031842891,0.49193639070888534,0.4923154847044879,0.49269488515101184,0.4930745913647547,0.493454602184728,0.4938349159295011,0.4942155308300826,0.494596444951963,0.49497765648316505,0.4953591637704427,0.4957409652311993,0.4961230594731949,0.49650544522701456,0.4968881213183531,0.49727108678864096,0.49765434066972647,0.49803788200397797,0.4984217100963559,0.49880582420459146,0.4991902236614418,0.4995749078387592,0.4999598762744819,0.5003451285414345,0.5007306642925553,0.5011164832643826,0.5015025852652909,0.5018889702097965,0.5022756380268597,0.5026625887313902,0.5030498223275642,0.5034373388499208,0.5038251381973499,0.5042132203367085,0.5046015849638693,0.5049902317952749,0.5053791603470241,0.5057683699827319,0.5061578600254687,0.506547629615227,0.5069376778887179,0.5073280039115786,0.5077191530337897,0.5081099505573895,0.5085010387793968,0.5088924147733859,0.5092840764296084,0.5096760212083846,0.5100682471931943,0.5104607813907877,0.5108536020752311,0.5112466972695389,0.5116400669736914,0.5120337114412281,0.5124276309390629,0.5128218261281751,0.513215676081069,0.5136103425057741,0.5140052751153042,0.5144004734398787,0.514795936994438,0.5151916653298481,0.5155876579315746,0.5159839142234586,0.5163804335029022,0.5167772148905009,0.5171742572221573,0.5175715589869805,0.5179691183190409,0.5183669329875326,0.5187650005638732,0.5191633188199051,0.5195618862623187,0.5199607026980112,0.5203597696505828,0.5207590901665654,0.5211586678785516,0.5215585053609705,0.5219586030362763,0.5223593092866805,0.5227597394802035,0.5231605048205838,0.5235615760105713,0.5239633505645851,0.5243647358048913,0.5247665013039349,0.52516857545494,0.5255709256491867,0.5259735365076305,0.526376395134451,0.5267795006598399,0.527182851826865,0.5275864485498842,0.5279902901148998,0.5283943758913644,0.5287987053860629,0.5292032779637972,0.5296080930296972,0.5300131504115849,0.5304184492257633,0.5308239889264812,0.5312297689351825,0.5316357888816083,0.5320420481205522,0.5324485460529598,0.5328552821875893,0.5332622558710797,0.5336694667004198,0.5340769140751931,0.5344845974725903,0.5348925162988789,0.5353006701539214,0.5357090583432144,0.5361176802853201,0.5365265357921298,0.5369356239151918,0.5373449444015402,0.5377544964461688,0.5381642797489563,0.5385742938852193,0.5389845380618323,0.5393950119132461,0.5398057148115711,0.5402166462599496,0.5406278057575918,0.5410391928586403,0.5414508067199123,0.5418626472021574,0.5422747138693207,0.5426870058897331,0.5430995228015831,0.5435122640761096,0.5439252293356994,0.5443384180006918,0.5447518294338245,0.5451654635262064,0.5455793193020945,0.545993396566334,0.5464076945867465,0.5468222131019972,0.5472369512095709,0.5476519091055221,0.5480670857076768,0.5484824803653235,0.5488980934894478,0.5493139236822627,0.549729970791212,0.550146234099216,0.5505627135471599,0.5509794082232801,0.5513963179092195,0.5518134421702116,0.5522307800720356,0.5526483315658361,0.5530660961061418,0.5534840730606805,0.553902261794857,0.5543206625186338,0.5547392740678021,0.5551580961274324,0.555577128114965,0.55599637014323,0.5564158210677477,0.5568354807733487,0.5572553485698212,0.557675424101996,0.5580957066201168,0.5585161963979011,0.5589368921093465,0.5593577939602252,0.5597789009759845,0.5602002129877574,0.5606217293142193,0.561043449852403,0.5614653767934108,0.5618875068135856,0.5623098385108156,0.5627330202645666,0.5631575815332568,0.5635834791811218,0.5640107107245436,0.564439272793779,0.5648691623636762,0.5653003761520567,0.5657329105185228,0.566166762156415,0.5666019842285378,0.5670384046802042,0.5674761802908647,0.5679152624986603,0.5683559688619614,0.5687974019878185,0.5692403054076047,0.5696845610771832,0.5701301123905335,0.5705769494392532,0.5710250682586746,0.5714744650016355,0.5719251383636904,0.572377083626041,0.5728302994767241,0.5732847807649216,0.5737405275023068,0.5741975340823943,0.5746557979448994,0.5751153173381679,0.5755760871496207,0.5760381069374542,0.576501371971604,0.5769658796884414,0.5774316270889869,0.5778986107461345,0.578366828525399,0.5788362765957427,0.579306953608496,0.5797788536766982,0.5802519771256146,0.580726318888777,0.581201875608689,0.5816786455038442,0.5821566247786081,0.5826358120970041,0.5831162024468157,0.5835977932757404,0.5840805815981703,0.5845645668365643,0.5850497428532416,0.5855361074885306,0.5860236589350432,0.5865123930819945,0.5870023069793188,0.5874933984350001,0.5879856641184633,0.5884791010829665,0.5889737063846434,0.5894694770825473,0.5899664098629451,0.5904645029198481,0.5909637521916329,0.5914641554374038,0.5919657087972877,0.5924684105629283,0.5929722566640098,0.593477245024253,0.5939833724511252,0.5944906360353509,0.5949990328710513,0.5955085598626342,0.5960192148581146,0.5965309940312975,0.5970438948672141,0.5975579143592266,0.5980730498759531,0.5985892984869771,0.5991066570590501,0.5996251229747172,0.6001446932064092,0.6006653651058922,0.6011871569420064,0.6017115394922604,0.6022408527038137,0.6027750835874243,0.6033142190793906,0.6038582460429461,0.604407151269647,0.6049609214807637,0.6055195433286686,0.6060830033982157,0.6066512882081305,0.6072243842123796,0.6078022778015586,0.6083849553042558,0.608972402988426,0.6095646070627575,0.6101615536780305,0.6107632289284791,0.6113696188531407,0.6119807094372045,0.6125964866133619,0.6132169362631326,0.613842044218209,0.6144717962617782,0.6151061781298415,0.6157451755125362,0.6163887740554387,0.6170369593608707,0.6176897169891922,0.6183470324600961,0.6190088912538864,0.6196752788127511,0.6203461805420398,0.6210215818115106,0.6217014679565938,0.6223858242796303,0.6230746360511121,0.6237678885109068,0.6244655668694814,0.6251676563091129,0.6258741419850922,0.6265850090269155,0.6273002425394739,0.6280198276042286,0.6287437492803774,0.6294719926060145,0.6302045425992769,0.6309413842594899,0.6316825025682894,0.6324278824907483,0.6331775089764837,0.6339313669607606,0.6346894413655788,0.6354517171007567,0.6362181790650031,0.6369888121469761,0.637763601226334,0.6385425311747751,0.6393255868570658,0.6401127531320668,0.6409040148537345,0.6416993568721232,0.6424987640343736,0.6433022211856831,0.6441097131702879,0.6449212248324032,0.6457367410171742,0.6465562465716149,0.647379726345525,0.648207165192408,0.6490385479703705,0.6498738595430167,0.650431421168143,0.6504314211681552,0.6504314211681561,0.6504314211681526,0.6504314211681245,0.6504314211681381,0.6504314211681398,0.6504314211681383,0.6504314211681108,0.650431421168118,0.6504314211680856,0.6504314211682425,0.650431421168151,0.6504314211681762,0.6504314211681986,0.6504314211680794,0.6504314211681685,0.6504314211682178,0.6504314211682288,0.6504314211680734,0.6504314211680396,0.6504314211682417,0.650431421196252,0.650431421168084,0.6504314211683154,0.6504314211679917,0.6504314211682017,0.6504314211681342,0.6504314211682222,0.650431421168131,0.6504314211680873,0.6504314211680358,0.650431421168147,0.6504314211679793,0.6504314211680354,0.650431421168102,0.650431421168133,0.6504314211681815,0.6504314211680918,0.6504314211680909,0.6504314211680826,0.650431421168028,0.6504314211681513,0.6504314211680937,0.6504314212168691,0.6504314211680002,0.650431421168286,0.6504314211685488,0.6504314211681096,0.6504314211682941,0.6504314211685547,0.6504314211680956,0.6504314211683113,0.6504314211684885,0.6504314211681849,0.650431421168326,0.6504314211684297,0.6504314211682155,0.6504314211679184,0.6504314211682105,0.6504314211681317,0.6504314211680611,0.6504314211679451,0.6504314211680983,0.6504314211682588,0.6504314211680085,0.6504314211680232,0.6504314212403407,0.6504314211683315,0.6504314211681826,0.6504314211683471,0.6504314211682738,0.6504314211681698,0.6504314211682698,0.6504314211679041,0.6504314211679395,0.6504314211679528,0.6504314211681336,0.6504314211681436,0.6504314211681338,0.6504314211683457,0.6504314211680795,0.6504314211681019,0.6504314211682705,0.6504314211681456,0.6504314211680374,0.6504314211681864,0.6504314211682373,0.6504314211682757,0.6504314211679336,0.6504314212072408,0.6504314211681433,0.6504314211680498,0.6504314211683573,0.6504314211684686,0.6504314211681391,0.6504314211679796,0.650431421168314,0.6504314211680439,0.6504314211679354,0.6504314211683815,0.6504314211682266,0.6504314211680166,0.6504314211687673,0.6504314211680575,0.6504314211683299,0.6504314211684152,0.6504314211684658,0.6504314211684058,0.6504314211824711,0.650431421168519,0.6504314211683059,0.6504314211680978,0.6504314211680853,0.6504314211679295,0.6504314211681267,0.6504314211679085,0.6504314211684737,0.6504314211678885,0.650431421168656,0.6504314211860333,0.6504314211680513,0.6504314211682494,0.6504314211684301,0.6504314211680586,0.6504314211681571,0.6504314211681723,0.650431421168437,0.6504314211680293,0.6504314211683254,0.6504314211683727,0.6504314211684734,0.6504314211679928,0.6504314211676888,0.6504314211683334,0.6504314211681724,0.6504314211683655,0.6504314211680013,0.6504314211679391,0.6504314211679816,0.6504314211689638,0.6504314211680372],\"y\":[0.48202060760373666,0.4820154600807697,0.4820496837444411,0.4820410204809679,0.48264132070280635,0.4832416207793614,0.4838419209639907,0.4844422211470953,0.48504252129646797,0.48564282141684734,0.4862431215625607,0.48684342168688577,0.487443721866674,0.4880440220146294,0.48864432216650816,0.48924462228979887,0.48984492249000067,0.4904452226386014,0.4910455227642606,0.4916458228951358,0.4922461230648964,0.4928464232249394,0.49344672337064327,0.4940470235170087,0.49464732369012165,0.49524762378961235,0.4958479239672619,0.4964482241172292,0.497048524291115,0.49764882441541847,0.4982491245654237,0.49884942471709837,0.4994497248654341,0.5000500250368142,0.5006503251445786,0.5012506253388426,0.5018509254456067,0.5024512256376837,0.5030515257466346,0.5036518258971487,0.5042521260476628,0.5048524262327851,0.5054527263847858,0.5060530264992056,0.5066533266497197,0.5072536268307695,0.5078539269824659,0.5084542271012632,0.5090545272813051,0.5096548274307242,0.5102551275782466,0.5108554277033235,0.5114557278538389,0.5120560280118064,0.5126563282238509,0.5132566283708163,0.5138569285177816,0.5144572286647472,0.5150575288117127,0.5156578289586782,0.5162581291056437,0.516858429252609,0.5174587293995746,0.51805902954654,0.5186593296935056,0.519259629840471,0.5198599299874365,0.520460230134402,0.5210605302813675,0.521660830428333,0.5222611305752984,0.5228614307222639,0.5234617308398295,0.5240620310194567,0.5246623311393422,0.5252626312890993,0.5258629314694325,0.5264632315886153,0.5270635317383741,0.5276638318881332,0.5282641320378931,0.5288644321876537,0.5294647323693653,0.5300650324871762,0.5306653327800219,0.5312656328193213,0.5318659329693051,0.5324662331489443,0.5330665332359931,0.5336668334841499,0.534267133624675,0.5348674337753561,0.5354677339260363,0.5360680340191678,0.5366683341345947,0.5372686343906062,0.5378689344341342,0.5384692346794214,0.5390695348438455,0.5396698348834486,0.5402701350332215,0.540870435219842,0.5414707354017467,0.5420710355026802,0.5426713356540348,0.5432716358287325,0.5438719359791614,0.5444722361295895,0.5450725362504176,0.545672836402083,0.5462731365516957,0.5468734367635142,0.5474737368486284,0.5480740370005401,0.548674337147741,0.5492746373329863,0.5498749374834071,0.5504752375990142,0.5510755377842467,0.5516758378982576,0.5522761380451076,0.5528764381946728,0.5534767384275923,0.5540770385363312,0.5546773386433764,0.555277638837159,0.5558779389425182,0.5564782391379834,0.5570785392883947,0.5576788394388047,0.5582791395408172,0.5588794397396226,0.5594797398900304,0.5600800400404372,0.5606803401908432,0.5612806403412485,0.5618809404916527,0.5624812406420564,0.5630815407924592,0.5636818409428611,0.5642821410366508,0.5648824411902246,0.5654827413940625,0.5660830414854239,0.5666833416948597,0.567283641788819,0.5678839419956538,0.5684842420838033,0.5690845422334004,0.56968484244684,0.5702851425972341,0.5708854428130569,0.5714857428317995,0.5720860429860506,0.5726863431310039,0.5732866432806076,0.5738869434302116,0.5744872436499775,0.5750875438003673,0.575687843879028,0.5762881440286345,0.5768884441833269,0.5774887444019239,0.5780890444774568,0.5786893446323126,0.5792896447819751,0.5798899450034766,0.5804902450758903,0.5810905453042522,0.58169084545464,0.5822911455247165,0.5828914456743249,0.583491745905804,0.5840920460561922,0.5846923462065807,0.5852926463569694,0.5858929465073583,0.5864932465779209,0.5870935467215752,0.5876938468772406,0.5882941471089189,0.5888944471765576,0.589494747326215,0.5900950475600946,0.5906953477104875,0.591295647768793,0.5918959480112759,0.5924962481616712,0.5930965483120675,0.5936968483671806,0.5942971485167744,0.5948974486730897,0.5954977489136605,0.596098049064061,0.5966983491220275,0.5972986493648651,0.5978989495222735,0.5984992495638917,0.5990995498160789,0.5996998498630544,0.6003001501168934,0.6009004502673023,0.6015007504177123,0.6021010504687674,0.6027013507185356,0.6033016507680271,0.603901950910072,0.6045022511697791,0.6051025513201957,0.6057028514706135,0.606303151628852,0.6069034517714527,0.6075037518074511,0.6081040521875833,0.6087043522227192,0.6093046522642375,0.6099049524056707,0.6105052525552218,0.6111055529440751,0.6117058528626819,0.6123061530122897,0.6129064531618962,0.6135067534261436,0.6141070535765761,0.6147073537270096,0.615307653877444,0.6159079540278793,0.6165082540506504,0.6171085543287526,0.6177088543497198,0.6183091545082984,0.6189094547891774,0.6195097548074863,0.6201100549570788,0.6207103550973718,0.6213106552562608,0.6219109555322779,0.6225112556827219,0.6231115557050269,0.623711855854614,0.6243121559945184,0.6249124564249702,0.6255127562935595,0.6261130567277207,0.6267133567357127,0.6273136567425256,0.6279139569022497,0.6285142571866364,0.6291145573470185,0.6297148573414457,0.6303151577839227,0.630915457797085,0.6315157578054723,0.6321160579507887,0.6327163581069263,0.6333166583728107,0.6339169585176591,0.6345172585799776,0.6351175588077222,0.6357178589648307,0.6363181591217042,0.636918459157227,0.637518759569736,0.6381190595895654,0.6387193597444836,0.6393196600707971,0.6399199598838758,0.6405202602065025,0.6411205601614558,0.6417208603215252,0.6423211604535004,0.6429214608328482,0.6435217609699508,0.6441220608941645,0.6447223612899357,0.6453226612056217,0.6459229618171644,0.6465232617285769,0.64712356187994,0.6477238620485366,0.648324161964954,0.6489244620784431,0.6495247627420607,0.6501250626355516,0.6507253625245802,0.651325662673454,0.6519259628223972,0.6525262629714046,0.653126563389741,0.6537268635404555,0.6543271634187651,0.6549274638417844,0.655527764267553,0.6561280638857376,0.656728364571205,0.6573286644440934,0.6579289648745038,0.6585292644641653,0.6591295646136526,0.6597298650460157,0.6603301651964442,0.6609304653462493,0.6615307652138808,0.6621310656456121,0.6627313655151226,0.6633316662244789,0.6639319660948542,0.6645322662446487,0.6651325661171664,0.6657328662675968,0.6663331666941577,0.6669334668440322,0.66753376671872,0.6681340668690429,0.6687343670383813,0.6693346673407197,0.6699349675090678,0.6705352676240275,0.6711355677914614,0.6717358679429775,0.6723361680724609,0.672936468241941,0.6735367683724856,0.6741370685225603,0.674737368672677,0.6753376688421854,0.6759379689730349,0.6765382691232762,0.6771385692920759,0.6777388694238842,0.6783391695918627,0.6789394697401651,0.6795397698932818,0.680140070021968,0.6807403701973225,0.6813406703436132,0.6819409704721026,0.6825412706436186,0.6831415707724857,0.6837418709434582,0.684342171073132,0.6849424712431158,0.6855427713867612,0.6861430715425713,0.6867433716782979,0.6873436718260885,0.6879439719764772,0.6885442721485294,0.6891445722818221,0.6897448724433433,0.690345172601753,0.6909454727225708,0.6915457728952263,0.6921460730207818,0.6927463732065634,0.6933466733473008,0.6939469734980374,0.6945472736808391,0.6951475738120575,0.6957478739145038,0.6963481740633112,0.6969484742266692,0.697548774388195,0.6981490745335472,0.698749374677017,0.6993496748397211,0.6999499749842837,0.7005502751387587,0.7011505752849116,0.7017508754226645,0.7023511756041242,0.7029514757359172,0.703551775873499,0.7041520760285238,0.7047523762009498,0.7053526763380803,0.7059529764749719,0.7065532766254027,0.7071535767883521,0.7077538769501166,0.7083541770890032,0.7089544772393112,0.7095547773808342,0.7101550775177141,0.7107553776606557,0.7113556778348227,0.7119559779857372,0.7125562781589689,0.7131565782753263,0.7137568784498083,0.7143571785782581,0.7149574787546352,0.7155577788810181,0.7161580790177012,0.7167583791835413,0.7173586793414812,0.7179589794784237,0.7185592796482491,0.7191595797711849,0.7197598799429017,0.7203601800823538,0.7209604802315944,0.7215607803931279,0.7221610805400018,0.722761380705906,0.723361680813652,0.7239619810245671,0.7245622811332164,0.725162581305208,0.7257628814341582,0.7263631815571787,0.7269634817539228,0.7275637818857394,0.7281640820362583,0.7287643821709345,0.7293646823674433,0.7299649824727773,0.7305652826512434,0.7311655828392962,0.7317658829131539,0.7323661831024377,0.7329664832395522,0.7335667833774027,0.7341670835280272,0.7347673836783359,0.7353676838489337,0.7359679840099148,0.736568284148601,0.7371685842805703,0.737768884448351,0.7383691845800997,0.7389694847197892,0.7395697848923318,0.74017008504245,0.7407703852002198,0.7413706853236779,0.7419709855248032,0.7425712856168227,0.7431715857872288,0.7437718859369079,0.7443721860622867,0.7449724862124172,0.7455727864349218,0.7461730865813552,0.7467733867087233,0.74737368681728,0.7479739870068967,0.7485742871594455,0.7491745872788582,0.7497748874273622,0.7503751875929077,0.7509754877321486,0.7515757878939144,0.7521760880432623,0.7527763881932943,0.7533766883444043,0.7539769885086707,0.7545772886297375,0.7551775887974621,0.755777888944063,0.7563781890774814,0.7569784892666204,0.757578789395084,0.758179089514964,0.7587793897106037,0.7593796898511527,0.7599799900098236,0.7605802901455904,0.7611805902932864,0.761780890445672,0.7623811905956921,0.7629814907318835,0.7635817908940961,0.764182091061786,0.7647823911944651,0.7653826913573365,0.7659829914967047,0.7665832916434923,0.7671835917983778,0.7677838919460765,0.768384192095919,0.7689844922509144,0.769584792393264,0.7701850925435461,0.770785392695475,0.7713856928521748,0.7719859930007464,0.772586293151198,0.7731865932952707,0.7737868934452489,0.7743871936001606,0.7749874937604584,0.7755877938917443,0.7761880940614493,0.7767883941952657,0.7773886943452878,0.7779889945086554,0.7785892946414262,0.7791895947871545,0.779789894945407,0.780390195086926,0.780990495245473,0.7815907953965021,0.7821910955379876,0.7827913957047333,0.7833916958551406,0.7839919960056372,0.7845922961462413,0.7851925963165247,0.7857928964456244,0.7863931965956192,0.7869934967381017,0.787593796895622,0.7881940970564274,0.7887943972008851,0.7893946973463283,0.789994997501015,0.7905952976412594,0.7911955978053028,0.7917958979385397,0.7923961980922282,0.7929964982422903,0.7935967983923515,0.7941970985516085,0.7947973987028096,0.7953976988435864,0.7959979989925907,0.7965982991383362,0.7971985993061987,0.7977988994585229,0.7983991996064513,0.7989994997724651,0.7995997999033548,0.800200100047109,0.8008004001930382,0.8014007003437252,0.8020010005072404,0.8026013006439906,0.8032016007939712,0.8038019009533415,0.8044022010939212,0.8050025012536852,0.8056028013938734,0.8062031015438604,0.8068034017111101,0.8074037018615836,0.8080040019972302,0.8086043021476249,0.8092046022978401,0.809804902452187,0.8104052025982262,0.8110055027534455,0.8116058028951479,0.8122061030406722,0.8128064031907962,0.8134067033361791,0.8140070034910736,0.8146073036461459,0.8152076037993848,0.8158079039712882,0.8164082041338099,0.8170085042661488,0.8176088043921895,0.8182091045498354,0.8188094047206569,0.819409704842767,0.8200100049978749,0.820610305143154,0.8212106052933482,0.8218109054385822,0.8224112055887578,0.8230115057505265,0.8236118058941305,0.824212106050695,0.8248124062007784,0.8254127063447232,0.826013006494922,0.8266133066690002,0.8272136068005236,0.8278139069507592,0.828414207113332,0.8290145072513565,0.8296148073961308,0.8302151075411501,0.8308154076911161,0.8314157078467457,0.8320160079914478,0.8326163081723245,0.8332166083075142,0.8338169084673508,0.8344172086034596,0.8350175087480006,0.8356178088982136,0.8362181090484273,0.8368184091986419,0.8374187093781509,0.8380190094931671,0.8386193096552472,0.8392196097995301,0.8398199099657463,0.8404202101155649,0.8410205102502157,0.8416208104004468,0.8422211105445732,0.8428214106947861,0.8434217108646183,0.8440220110253721,0.8446223111516193,0.8452226113018577,0.8458229114537489,0.8464232116085245,0.8470235117587648,0.8476238119028261,0.848224112054138,0.848824412197171,0.8494247123474408,0.8500250125105449,0.8506253126559356,0.8512256128057294,0.8518259129545784,0.8524262131048341,0.8530265132858418,0.8536268134254814,0.8542271136171757,0.854827413722174,0.8554277138763569,0.8560280140266623,0.8566283141415605,0.8572286142985746,0.8578289144163094,0.8584292145954867,0.8590295147159527,0.8596298148957875,0.8602301150762846,0.8608304152364312,0.8614307153795958,0.8620310154986206,0.8626313156782859,0.863231615804379,0.8638319159808786,0.8644322162073301,0.8650325162487269,0.8656328163987593,0.8662331165480978,0.8668334167354242,0.8674337168486487,0.8680340170350087,0.8686343171832072,0.8692346173039611,0.8698349174538489,0.8704352175961383,0.871035517754552,0.8716358178957544,0.8722361180633006,0.8728364181989019,0.8734367183430154,0.8740370185195597,0.87463731866963,0.8752376187952022,0.8758379189547534,0.876438219128799,0.877038519253373,0.8776388194054152,0.8782391195481256,0.8788394196826902,0.8794397198674779,0.8800400200108758,0.8806403201586913,0.8812406202993274,0.8818409204438221,0.8824412205936727,0.8830415207527532,0.8836418209092125,0.8842421210667437,0.8848424212201306,0.8854427213519959,0.8860430215176982,0.8866433216573757,0.8872436218035017,0.8878439219680319,0.8884442220906628,0.8890445222764977,0.8896448223911159,0.8902451225767882,0.8908454226949627,0.8914457228450309,0.892046023060906,0.8926463231551839,0.8932466233166665,0.8938469234767832,0.894447223595944,0.895047523745472,0.8956478239159694,0.8962481240468166,0.8968484241865754,0.8974487243483649,0.8980490245149716,0.898649324676093,0.8992496248258928,0.8998499249521124,0.900450225125356,0.9010505252219783,0.9016508254285049,0.9022511255740688,0.9028514257234654,0.9034517258594736,0.9040520260113699,0.9046523261422725,0.905252626319092,0.9058529264364421,0.9064532266110634,0.9070535267700182,0.9076538269124275,0.9082541272024918,0.9088544271295836,0.9094547272889795,0.910055027591171,0.9106553276903886,0.9112556279625819,0.9118559281100675,0.9124562281050211,0.9130565282569926,0.9136568284100346,0.9142571285552019,0.9148574287137032,0.915457728868749,0.9160580290228164,0.9166583291375512,0.917258629315962,0.9178589294595209,0.91845922964078,0.9190595297841015,0.9196598299088714,0.9202601300685496,0.9208604302189294,0.9214607303665862,0.9220610305195449,0.9226613306182901,0.9232616307900771,0.9238619309662888,0.9244622310901606,0.9250625312403027,0.9256628314203467,0.9262631315999114,0.9268634317203062,0.9274637318593765,0.9280640320095674,0.9286643321597781,0.9292646323100082,0.9298649324602584,0.9304652326182428,0.9310655327692152,0.9316658329111218,0.9322661330470029,0.9328664332184682,0.9334667333373506,0.9340670335199242,0.934667333651186,0.9352676338051114,0.9358679339774844,0.9364682341171635,0.9370685342820255,0.9376688344286381,0.9382691345779768,0.9388694347168134,0.9394697348010912,0.94007003495006,0.9406703351881329,0.9412706352483482,0.9418709354412402,0.9424712355940619,0.943071535696639,0.9436718359990769,0.9442721360443779,0.9448724362491907,0.9454727363991914,0.9460730365443524,0.9466733366471498,0.9472736369500527,0.9478739369796572,0.9484742371177349,0.949074537267835,0.9496748374273845,0.9502751375680606,0.9508754377181872,0.9514757378683222,0.9520760380184661,0.9526763381656713,0.9532766383155347,0.9538769384624525,0.9544772386028852,0.9550775387523014,0.9556778389151398,0.9562781390692663,0.9568784392152017,0.9574787393719424,0.958079039532011,0.9586793396789146,0.959279639805282,0.9598799399682271,0.9604802401181055,0.9610805402814853,0.9616808404131857,0.9622811405744479,0.9628814407204197,0.9634817408598685,0.9640820411382272,0.964682341133391,0.9652826413633833,0.9658829414348815,0.9664832417433858,0.9670835417384167,0.9676838416474973,0.9682841421152931,0.9688844421120473,0.9694847423384569,0.9700850425682551,0.9706853427183183,0.9712856428663917,0.9718859429385063,0.9724862428517054,0.9730865431607585,0.9736868433885498,0.9742871435385656,0.9748874436102322,0.9754877438377529,0.97608804406881,0.9766883442165374,0.9772886444479988,0.9778889445187794,0.9784892446689781,0.9790895448190151,0.9796898449690504,0.9802901450387627,0.9808904452691142,0.981490745419143,0.9820910454082924,0.9826913457191943,0.9832916457903677,0.9838919460209058,0.9844922460077136,0.9850925460793307,0.9856928463890051,0.9862931465390357,0.9868934467693047,0.9874937469221541,0.9880940470723599,0.9886943472193184,0.9892946474518537,0.9898949473565506,0.9904952474302673,0.9910955478193042,0.9916958480524413,0.9922961482025779,0.992896448269268,0.9934967484192515,0.9940970485692321,0.9946973485556996,0.995297648874773,0.9958979489454728,0.9964982491751635,0.9970985492397598,0.9976988494690627,0.9982991492980701,0.998899449703807,0.9994997499261227,1.0001000496770087,1.000700350297623,1.0013006504474649,1.0019009506272212,1.0025012505902533,1.0031015508969505,1.0037018508903768,1.0043021510404402,1.0049024513623506,1.0055027513405714,1.0061030514906388,1.0067033516608797,1.0073036518114549,1.0079039516348274,1.008504252112617,1.0091045522409976,1.0097048523910734,1.0103051522378543,1.01090545269123,1.0115057528413105,1.012106053143435,1.0127063532931415,1.0133066534428417,1.0139069532674585,1.0145072537422182,1.0151075537418262,1.0157078540664017,1.0163081541912253,1.016908454340878,1.0175087543422037,1.0181090546401614,1.018709354674543,1.0193096547925742,1.0199099549427626,1.0205102552268355,1.0211105555114033,1.0217108554025067,1.0223111556460842,1.0229114557096008,1.0235117558632152,1.0241120561197825,1.024712356170579,1.025312656306125,1.0259129564654128,1.0265132565767052,1.027113556830764,1.02771385692284,1.0283141564356917,1.0289144577737568,1.0295147579230477,1.0301150574878937,1.0307153570297294,1.031315657788733,1.0319159585116815,1.032516258089328,1.0331165588059081,1.0337168583899228,1.034317159100134,1.0349174581052396,1.0355177593943579,1.036118059541469,1.0367183591414093,1.0373186598356905,1.0379189588734758,1.0385192595923007,1.0391195597425988,1.0397198598928958,1.0403201600431933,1.0409204596417196,1.0415207597953697,1.0421210594305381,1.0427213606443837,1.0433216597442223,1.043921960944979,1.044522261600996,1.0451225612455743,1.0457228613958727,1.0463231610245844,1.046923462189421,1.0475237623365268,1.0481240619970633,1.0487243611558206,1.0493246627778423,1.0499249629249467,1.0505252625982546,1.0511255632191545,1.0517258633662572,1.0523261630491485,1.0529264631994464,1.0535267633497443,1.0541270635000424,1.0547273636503405,1.0553276638006381,1.0559279634975431,1.0565282641032843,1.0571285642547321,1.0577288647793215,1.0583291645576247,1.0589294650429226,1.0595297648605149,1.0601300650119594,1.0607303651634028,1.0613306653148455,1.0619309654662874,1.0625312653904055,1.0631315659658436,1.0637318660977395,1.0643321662296503,1.0649324662234805,1.0655327663749152,1.0661330666254776,1.066733366677782,1.0673336668292133,1.0679339668969139,1.0685342671320723,1.0691345672065014,1.0697348673415856,1.0703351674766672,1.0709354676117495,1.071535767746832,1.0721360678819158,1.0727363680169988,1.073336668152081,1.0739369682871647,1.0745372684222465,1.0751375685573308,1.075737868692412,1.0763381688274951,1.076938468962578,1.0775387690976606,1.0781390692327437,1.078739369367826,1.0793396695029096,1.0799399696379934,1.0805402697730742,1.0811405699081587,1.0817408700432403,1.0823411701783228,1.0829414703134064,1.083541770448488,1.084142070583571,1.084742370718654,1.085342670853738,1.0859429709888202,1.086543271123903,1.087143571258987,1.0877438713940675,1.0883441715291517,1.0889444716642342,1.0895447717993167,1.090145071934399,1.0907453720694824,1.0913456722045651,1.0919459723396476,1.09254627247473,1.0931465726098133,1.0937468727448965,1.0943471728799785,1.094947473015062,1.0955477731501442,1.0961480732852287,1.0967483734203096,1.0973486735553923,1.097948973690475,1.0985492738255573,1.0991495739606403,1.0997498740957241,1.1003501742308084,1.1009504743658898,1.1015507745009718,1.1021510746360546,1.1027513747711375,1.1033516749062213,1.1039519750413027,1.1045522751763852,1.105152575311468,1.1057528754465509,1.1063531755816365,1.1069534757167163,1.107553775851799,1.108154075986883,1.1087543761219654,1.1093546762570485,1.1099549763921315,1.110555276527214,1.1111555766622963,1.1117558767973807,1.1121550133749505,1.1121550133749734,1.1121550133749787,1.112155013374967,1.1121550133749278,1.1121550133749551,1.1121550133749578,1.1121550133749567,1.1121550133749107,1.1121550133749414,1.1121550133748996,1.1121550133751206,1.1121550133750022,1.1121550133750202,1.1121550133750489,1.1121550133748759,1.1121550133750346,1.1121550133751241,1.1121550133751488,1.1121550133750957,1.1121550133748441,1.1121550133751787,1.1121550134230513,1.1121550133748894,1.1121550133753293,1.112155013374807,1.1121550133751363,1.1121550133749911,1.1121550133751206,1.1121550133750273,1.1121550133749736,1.112155013374891,1.1121550133750597,1.1121550133748328,1.1121550133749203,1.112155013374921,1.1121550133749611,1.112155013375086,1.1121550133750697,1.1121550133749232,1.112155013374917,1.1121550133747995,1.112155013375024,1.112155013374978,1.1121550134582872,1.1121550133748863,1.1121550133753102,1.1121550133757896,1.112155013374997,1.1121550133752438,1.1121550133757632,1.1121550133750224,1.1121550133753704,1.1121550133756415,1.1121550133751115,1.1121550133753326,1.112155013375482,1.1121550133751406,1.1121550133747296,1.1121550133751124,1.1121550133750862,1.1121550133750986,1.1121550133748899,1.112155013374952,1.1121550133753404,1.1121550133748621,1.1121550133749611,1.1121550134984,1.1121550133753468,1.1121550133750577,1.112155013375405,1.112155013375452,1.1121550133750908,1.1121550133753442,1.1121550133747669,1.1121550133749618,1.1121550133747864,1.1121550133750362,1.1121550133750617,1.1121550133749885,1.112155013375395,1.1121550133749996,1.1121550133750244,1.1121550133753353,1.112155013375148,1.1121550133749507,1.1121550133751419,1.1121550133752054,1.1121550133753741,1.1121550133748448,1.1121550134420668,1.112155013375113,1.112155013374941,1.112155013375497,1.1121550133756115,1.1121550133751499,1.1121550133748954,1.1121550133753708,1.1121550133748748,1.1121550133747202,1.1121550133755276,1.1121550133752858,1.1121550133748324,1.1121550133761342,1.11215501337517,1.1121550133756277,1.1121550133757698,1.1121550133755624,1.1121550133755567,1.1121550133994496,1.1121550133757847,1.1121550133752414,1.1121550133751341,1.1121550133750795,1.1121550133747167,1.112155013375071,1.1121550133748748,1.1121550133756954,1.112155013374995,1.112155013376006,1.1121550134058125,1.1121550133750266,1.1121550133752305,1.1121550133756017,1.1121550133750433,1.1121550133752347,1.112155013375163,1.1121550133756677,1.1121550133748286,1.1121550133753721,1.1121550133754732,1.112155013375774,1.1121550133750773,1.1121550133745952,1.1121550133753824,1.1121550133754332,1.112155013375386,1.1121550133750417,1.1121550133748386,1.1121550133748928,1.1121550133764158,1.112155013374957]}},\"id\":\"be462cab-9acf-4f36-a2ca-4dcbd8f30ac4\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"baf954c0-97c1-4734-ade5-97da16bd822a\",\"type\":\"ToolEvents\"},{\"attributes\":{\"line_color\":{\"value\":\"green\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"fef8b2d7-1f72-43fa-9db9-66f83536764c\",\"type\":\"Line\"},{\"attributes\":{\"plot\":{\"id\":\"5e5ea79b-c0b9-44bd-a5fe-bb9aecef90f1\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"3799fd60-6d03-4fb6-ba6e-630e5440f8b0\",\"type\":\"ResetTool\"},{\"attributes\":{\"plot\":{\"id\":\"5e5ea79b-c0b9-44bd-a5fe-bb9aecef90f1\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"930f132f-a095-42f8-a8e0-d4a8efb2e172\",\"type\":\"PanTool\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"930f132f-a095-42f8-a8e0-d4a8efb2e172\",\"type\":\"PanTool\"},{\"id\":\"30ad338d-9bfe-458a-a660-0a1c635f68b6\",\"type\":\"WheelZoomTool\"},{\"id\":\"490f04be-2f66-49c2-ab4f-31ac6d9d3cc6\",\"type\":\"BoxZoomTool\"},{\"id\":\"8611c6ef-95e4-45a4-9ce7-1b790cd6e957\",\"type\":\"SaveTool\"},{\"id\":\"3799fd60-6d03-4fb6-ba6e-630e5440f8b0\",\"type\":\"ResetTool\"},{\"id\":\"24d906e6-e4d9-46af-89d6-90988347e9af\",\"type\":\"HelpTool\"}]},\"id\":\"7499d973-0d59-46d1-9a03-ace9c946a2b0\",\"type\":\"Toolbar\"},{\"attributes\":{\"callback\":null},\"id\":\"10ea17f2-f8c8-41c1-8a4c-ed6d311e7e66\",\"type\":\"DataRange1d\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"37d08b81-f31c-4fc5-8eb0-474dfd8d2384\",\"type\":\"Line\"},{\"attributes\":{\"axis_label\":\"Return\",\"formatter\":{\"id\":\"67dd31ff-2661-4399-8478-1a22810bd3d2\",\"type\":\"NumeralTickFormatter\"},\"plot\":{\"id\":\"5e5ea79b-c0b9-44bd-a5fe-bb9aecef90f1\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"6a0b844e-6a2e-468c-a05d-dcef87e2e7cf\",\"type\":\"BasicTicker\"}},\"id\":\"9465bc8b-16de-4862-8fdc-2a576c87bfee\",\"type\":\"LinearAxis\"},{\"attributes\":{\"overlay\":{\"id\":\"f4d68e06-b7cb-4370-9035-3f9a575e80c5\",\"type\":\"BoxAnnotation\"},\"plot\":{\"id\":\"5e5ea79b-c0b9-44bd-a5fe-bb9aecef90f1\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"490f04be-2f66-49c2-ab4f-31ac6d9d3cc6\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"plot\":null,\"text\":\"Efficient Frontier\"},\"id\":\"2cb7da82-1eb9-4392-bb58-e49687dd7fe7\",\"type\":\"Title\"},{\"attributes\":{},\"id\":\"7c987749-a69c-4b1b-b587-cb8fb1c97a39\",\"type\":\"BasicTicker\"},{\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"5e5ea79b-c0b9-44bd-a5fe-bb9aecef90f1\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"6a0b844e-6a2e-468c-a05d-dcef87e2e7cf\",\"type\":\"BasicTicker\"}},\"id\":\"02befb85-aaed-4e00-922a-bde22b75b6eb\",\"type\":\"Grid\"},{\"attributes\":{\"label\":{\"value\":\"No Short Sale Allowed\"},\"renderers\":[{\"id\":\"c4ba2876-9aaf-4ce8-9777-2fa75816f15a\",\"type\":\"GlyphRenderer\"}]},\"id\":\"f1ad5b86-9905-4d24-881c-99e5630bc9f5\",\"type\":\"LegendItem\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"eef6db11-e819-4986-91a0-15957218eeca\",\"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\":\"f4d68e06-b7cb-4370-9035-3f9a575e80c5\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"plot\":{\"id\":\"5e5ea79b-c0b9-44bd-a5fe-bb9aecef90f1\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"24d906e6-e4d9-46af-89d6-90988347e9af\",\"type\":\"HelpTool\"},{\"attributes\":{\"axis_label\":\"Risk\",\"formatter\":{\"id\":\"914b8f7c-d6ed-4296-8c94-01eae12bd1f9\",\"type\":\"NumeralTickFormatter\"},\"plot\":{\"id\":\"5e5ea79b-c0b9-44bd-a5fe-bb9aecef90f1\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"7c987749-a69c-4b1b-b587-cb8fb1c97a39\",\"type\":\"BasicTicker\"}},\"id\":\"8ecfbca6-3b11-46de-a65f-924a1447a8da\",\"type\":\"LinearAxis\"},{\"attributes\":{\"items\":[{\"id\":\"860f6d95-03c1-4488-98fd-0945393f4d5a\",\"type\":\"LegendItem\"},{\"id\":\"f1ad5b86-9905-4d24-881c-99e5630bc9f5\",\"type\":\"LegendItem\"}],\"location\":\"top_left\",\"plot\":{\"id\":\"5e5ea79b-c0b9-44bd-a5fe-bb9aecef90f1\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"3c154391-f903-4ef6-9700-83d3b9ea2440\",\"type\":\"Legend\"},{\"attributes\":{\"below\":[{\"id\":\"8ecfbca6-3b11-46de-a65f-924a1447a8da\",\"type\":\"LinearAxis\"}],\"left\":[{\"id\":\"9465bc8b-16de-4862-8fdc-2a576c87bfee\",\"type\":\"LinearAxis\"}],\"plot_width\":900,\"renderers\":[{\"id\":\"8ecfbca6-3b11-46de-a65f-924a1447a8da\",\"type\":\"LinearAxis\"},{\"id\":\"cc2f1ed0-e385-4ec3-9269-fd25c2e7bce6\",\"type\":\"Grid\"},{\"id\":\"9465bc8b-16de-4862-8fdc-2a576c87bfee\",\"type\":\"LinearAxis\"},{\"id\":\"02befb85-aaed-4e00-922a-bde22b75b6eb\",\"type\":\"Grid\"},{\"id\":\"f4d68e06-b7cb-4370-9035-3f9a575e80c5\",\"type\":\"BoxAnnotation\"},{\"id\":\"3c154391-f903-4ef6-9700-83d3b9ea2440\",\"type\":\"Legend\"},{\"id\":\"1080f45d-8db9-45ec-838b-f76c3203417a\",\"type\":\"GlyphRenderer\"},{\"id\":\"c4ba2876-9aaf-4ce8-9777-2fa75816f15a\",\"type\":\"GlyphRenderer\"}],\"title\":{\"id\":\"2cb7da82-1eb9-4392-bb58-e49687dd7fe7\",\"type\":\"Title\"},\"tool_events\":{\"id\":\"baf954c0-97c1-4734-ade5-97da16bd822a\",\"type\":\"ToolEvents\"},\"toolbar\":{\"id\":\"7499d973-0d59-46d1-9a03-ace9c946a2b0\",\"type\":\"Toolbar\"},\"toolbar_location\":\"above\",\"x_range\":{\"id\":\"10ea17f2-f8c8-41c1-8a4c-ed6d311e7e66\",\"type\":\"DataRange1d\"},\"y_range\":{\"id\":\"2f6c98c6-33b6-4672-9134-dad7a74f78e3\",\"type\":\"DataRange1d\"}},\"id\":\"5e5ea79b-c0b9-44bd-a5fe-bb9aecef90f1\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"callback\":null},\"id\":\"2f6c98c6-33b6-4672-9134-dad7a74f78e3\",\"type\":\"DataRange1d\"},{\"attributes\":{\"plot\":{\"id\":\"5e5ea79b-c0b9-44bd-a5fe-bb9aecef90f1\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"7c987749-a69c-4b1b-b587-cb8fb1c97a39\",\"type\":\"BasicTicker\"}},\"id\":\"cc2f1ed0-e385-4ec3-9269-fd25c2e7bce6\",\"type\":\"Grid\"},{\"attributes\":{\"data_source\":{\"id\":\"7bf7a962-1f42-42ee-84ef-345c1244bff1\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"fef8b2d7-1f72-43fa-9db9-66f83536764c\",\"type\":\"Line\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"37d08b81-f31c-4fc5-8eb0-474dfd8d2384\",\"type\":\"Line\"},\"selection_glyph\":null},\"id\":\"1080f45d-8db9-45ec-838b-f76c3203417a\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"6a0b844e-6a2e-468c-a05d-dcef87e2e7cf\",\"type\":\"BasicTicker\"},{\"attributes\":{\"plot\":{\"id\":\"5e5ea79b-c0b9-44bd-a5fe-bb9aecef90f1\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"8611c6ef-95e4-45a4-9ce7-1b790cd6e957\",\"type\":\"SaveTool\"},{\"attributes\":{\"line_color\":{\"value\":\"blue\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"d88f2e25-f9af-4e33-ad38-982d335df97c\",\"type\":\"Line\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[0.30277732649230255,0.3027773243528187,0.30277732384363676,0.30277732163277865,0.30277776303022685,0.30277883430879293,0.302780533913296,0.30278286209337674,0.30278581968773344,0.3027894074475561,0.30279362577674906,0.3027984730514229,0.3028039498610367,0.30281005622932095,0.3028167921180846,0.30282415748559743,0.3028321522854142,0.3028407764675795,0.3028500299771865,0.3028608141080561,0.3028712951705163,0.30288240513299014,0.3028941438740389,0.30290651126904466,0.30291950718912464,0.3029331315120592,0.3029473841206663,0.30296226491482653,0.3029777414899235,0.3029938718345482,0.30301065495466134,0.30302811364173193,0.30304623908221434,0.30306500753989185,0.30308441761314664,0.30310442567890183,0.3031250236731619,0.3031462495830467,0.30316716047652625,0.3031896124145009,0.30321269152374186,0.30323639766121047,0.30326073067854703,0.3032856904252255,0.30331127674703595,0.30333748948393413,0.3033643284739846,0.3033917935493559,0.30341988454140917,0.3034486012746904,0.3034779435709653,0.3035079112488485,0.3035385041224358,0.3035697220023399,0.3036015646941907,0.3036340320017529,0.30366712372468735,0.3037008396562196,0.3037351795899945,0.3037701433118116,0.3038057306070869,0.3038419412551731,0.30387877503305166,0.3039162317128426,0.3039543110632828,0.3039930128506806,0.3040323368346242,0.30407228277622417,0.30411285042669917,0.30415403953724474,0.3041958498538903,0.3042382811219828,0.3042813330783752,0.3043250054610695,0.3043692979992316,0.30441421042381317,0.30445974245924606,0.3045058938240946,0.3045526642408225,0.30460005341877444,0.3046480610715687,0.30469668690445934,0.30474593061861244,0.3047957919184976,0.30484627049569035,0.3048973660455095,0.3049490782539797,0.3050014068088008,0.30505435139197634,0.3051079116812506,0.3051620873503504,0.30521687807344705,0.30527228351632485,0.30532830334375083,0.3053849372164343,0.30544218479178026,0.3055000457259851,0.3055585196663789,0.3056176062611195,0.3056773051563898,0.3057376159890185,0.3057985383997767,0.3058600720206528,0.305922216479181,0.30598497140628494,0.30604833642326434,0.30611231115398,0.3061768952093662,0.3062420882093875,0.3063078897597447,0.30637429946839495,0.306441316937641,0.30650894177221916,0.3065771735665188,0.30664601191715196,0.3067154564118021,0.3067855066400741,0.30685616218278766,0.30692742262542627,0.306999287545301,0.3070717565165197,0.30714482911118474,0.3072185048986588,0.3072927834420341,0.30736766430592466,0.3074431470481011,0.3075192312229381,0.3075959163923032,0.3076732020943887,0.30775108788367844,0.30782957330211597,0.30790865789058064,0.3079883411895906,0.30806862273011376,0.3081495020452715,0.3082309786659554,0.30831305211655,0.3083957219210329,0.308478987597878,0.30856284866671235,0.30864730463989043,0.3087323550308583,0.30881799934877396,0.30890423709504405,0.308991067776843,0.30907849089087475,0.30916650593750056,0.3092551124129569,0.30934430980243316,0.3094340975981982,0.3095244752872701,0.3096154423535475,0.30970699827611176,0.30979914253077334,0.3098918745960403,0.30998519394453566,0.31007910004222383,0.31017359236000025,0.3102686703612377,0.3103643335085437,0.31046058125829984,0.3105574130684122,0.31065482839635217,0.3107528266890186,0.31085140739618383,0.3109505699653604,0.3110503138366825,0.31115063845899193,0.3112515432619618,0.3113530276897061,0.3114550911680593,0.3115577331331372,0.31166095301591334,0.3117647502357147,0.3118691242197017,0.3119740743917517,0.31207960016684266,0.3121857009657331,0.31229237619957456,0.3123996252815793,0.3125074476205579,0.3126158426211093,0.31272480969466027,0.31283434823755196,0.31294445765518686,0.31305513734168894,0.3131663866926119,0.3132782051039777,0.3133905919666557,0.31350354666845265,0.31361706859338456,0.3137311571312611,0.3138458116685361,0.3139610315750563,0.31407681623519373,0.3141931650200737,0.3143100773088198,0.3144275524718231,0.31454558987341735,0.31466418889434433,0.3147833488865824,0.3149030692203623,0.31502334925511943,0.31514418834757507,0.3152655858640244,0.3153875411532665,0.3155100535680891,0.31563312246521036,0.3157567471915832,0.3158809270931608,0.31600566151621606,0.316130949803125,0.3162567913029028,0.31638318535072496,0.31651013128327665,0.3166376284361527,0.31676567614520607,0.31689427375423,0.31702342057887406,0.31715311595125295,0.3172833591979066,0.31741414965368847,0.31754548663374565,0.31767736946736896,0.3178097974708876,0.3179427699551579,0.31807628624656886,0.31821034567049117,0.3183449475181626,0.31848009111351927,0.3186157757659472,0.31875200078396676,0.31888876547610423,0.3190260691447323,0.3191639110964416,0.31930229063332677,0.31944120705626255,0.31958065966382115,0.3197206477499852,0.31986117062046415,0.32000222756173624,0.32014381786941265,0.3202859408378917,0.32042859575219795,0.32057178190666175,0.32071549858484183,0.3208597450726271,0.32100452065595914,0.32114982462332,0.3212956562468407,0.32144201480735474,0.32158984383294786,0.3217372300261208,0.3218851409565948,0.32203357590123083,0.3221825341856948,0.3223320150465908,0.32248201778448415,0.3226325416542781,0.3227835859623534,0.3229370603329617,0.3230890693157995,0.3232415975523075,0.3233946443443268,0.32354820898740383,0.32370346282137924,0.3238579934898173,0.3240130419825959,0.3241686076309079,0.3243246897384356,0.3244812876327912,0.3246384006207412,0.32479602801661567,0.32495416914820063,0.32511282331629443,0.3252719898425722,0.3254316680374892,0.32559185720917216,0.32575255666707265,0.325914727691033,0.3260764004938663,0.3262385832448004,0.3264012752080624,0.32656447567073454,0.32672818393027286,0.32689239926822783,0.3270571209602987,0.32722234826779084,0.32738808048565976,0.32755431687648695,0.32772105671154717,0.3278882992520387,0.32805604377512143,0.32822428950511806,0.328393035740746,0.328562281701224,0.32873202666292933,0.3289022698485235,0.3290730105148692,0.3292442478993849,0.3294159812303475,0.3295882097511111,0.3297609326698837,0.32993414920904146,0.3301078586092401,0.3302820600549131,0.33045675277183645,0.33063193595728957,0.3308076088108569,0.3309837705278592,0.33116042029213477,0.3313375572895767,0.33151518069465774,0.3316932896905951,0.33187188341871376,0.33205096105644943,0.3322305217614297,0.33241056467087826,0.3325910889321504,0.33277209367524757,0.332953578027278,0.33313554111198723,0.33331798203349444,0.3335008999015651,0.33368429381224235,0.33386816283289045,0.33405250605995546,0.33423732254569527,0.33442261134462337,0.33460837151232015,0.33479460204756556,0.33498130198656684,0.33516847032270813,0.33535610604393756,0.33554420810182933,0.33573277544490066,0.3359218070100361,0.3361113016950343,0.336301258368081,0.33649167589111395,0.33668255306517203,0.3368738886812488,0.3370644969064471,0.33725665592933535,0.33744926159052785,0.33764231212882206,0.33783382405717727,0.3380277220409519,0.3382220681314555,0.3384168616649495,0.3386121021656987,0.3388077894081353,0.3390039232276793,0.3392005035774549,0.3393975303127614,0.3395950031759099,0.3397929217942554,0.3399912855913546,0.34019009394836797,0.34038934620530503,0.3405890417671068,0.3407891801951701,0.3409897612902384,0.3411907850078528,0.34139225140289164,0.3415941605384774,0.3417965123207599,0.34199932874747546,0.34220260076409326,0.3424063118582848,0.342610457334003,0.3428150338148735,0.3430200394063933,0.343225473315414,0.3434313354008855,0.34363762571261713,0.3438443443010811,0.3440514911222102,0.34425906597725364,0.344467068530753,0.3446754983224698,0.344884354830393,0.34509363744823696,0.3453033454871491,0.3455134782759343,0.3457240350812451,0.3459350151373917,0.3461464177124286,0.3463582420144299,0.3465704872717464,0.34678315271778304,0.34699623757573955,0.347210586581127,0.34742447541648697,0.3476387820959812,0.34785350577074675,0.34806864573934926,0.3482842011447443,0.34850017132119354,0.34871655540004803,0.3489333583048664,0.34915057323994797,0.3493681991693539,0.3495862354124306,0.3498046811893453,0.350023535836997,0.3502427985618194,0.35046246859415214,0.35068254519718456,0.35090302761107245,0.3511239151240839,0.3513452069291575,0.35156690227853965,0.35178900043912364,0.3520115006589203,0.35223440216685703,0.35245770414614097,0.35268140595077085,0.35290550668051135,0.3531300056574509,0.3533549021286081,0.3535801952983088,0.35380588441070754,0.35403196867935255,0.3542584474005015,0.3544853196921082,0.35471258494566493,0.3549402423236338,0.35516829093815727,0.3553967302291901,0.35562555930423084,0.3558547774726267,0.3560843839383484,0.35631437793255866,0.35654475868684515,0.35677552546690083,0.35700667751583964,0.3572382140262354,0.3574701343076809,0.3577024375466781,0.35793512303898417,0.35816818998342376,0.35840163766274147,0.3586354653028647,0.3588696721764309,0.35910425751967084,0.3593392206061466,0.35957456064810905,0.3598102769645978,0.36004636874373264,0.360282835334508,0.3605196759163629,0.3607568898427755,0.3609944763223412,0.36123243464580324,0.361470764128541,0.3617094640433732,0.36194853370726404,0.36218797235965045,0.3624277793558541,0.3626679540488767,0.3629084957253959,0.36314940379762645,0.3633906775899151,0.3636323164899829,0.3638743199772792,0.36411668745697545,0.3643594184259437,0.3646025124203911,0.3648459689894583,0.36508978775439926,0.3653339683956985,0.3655785105607277,0.36582341408797425,0.366068678634519,0.3663143040388874,0.36656029002846174,0.3668066362632449,0.36705334230651454,0.36730040758226334,0.36754783132954444,0.3677956124070695,0.36804374956385155,0.3682922411936328,0.3685410853433744,0.36879028007968073,0.36903982310246636,0.36928971220760015,0.3695399451419284,0.36978961856757186,0.37004049206744527,0.3702917075187641,0.3705432630938897,0.3707951569236406,0.3710473871514951,0.37129995180056363,0.3715539783332945,0.37180723596609794,0.37206082513725347,0.3723147441408322,0.3725700377140676,0.3728246014949471,0.3730795040905899,0.3733347449694112,0.3735903235330313,0.373846239330907,0.3741024917926727,0.3743590804323847,0.3746160046628059,0.37487326395672954,0.37513085776772376,0.3753887854965455,0.3756470464932655,0.3759056401009473,0.37616361762925027,0.3764228594860703,0.3766824291325402,0.37694232591712373,0.3772025491779526,0.3774630982633404,0.3777239724903221,0.3779851711798501,0.37824669363915286,0.3785085392014972,0.3787707071691655,0.3790331968570071,0.37929600758038506,0.3795591386642526,0.3798225894330597,0.38008635924293777,0.3803504474373791,0.38061485338806117,0.38087957646770954,0.3811454242861324,0.3814107088754395,0.3816763072007905,0.38194222123998167,0.38220845275601495,0.38247500311823174,0.3827418732046737,0.38300906317355443,0.38327657249959873,0.3835444000624425,0.3838125442855319,0.38408100334229706,0.3843497753501676,0.3846194879642829,0.38488871171424915,0.38515843505760133,0.38542838371022836,0.3856986177479515,0.38596917920917617,0.38624077467286255,0.3865117341287832,0.38678312612987276,0.3870548825443619,0.38732697066464244,0.3875993745155569,0.3878720864968863,0.38814510286659437,0.3884184212750432,0.38869204027520105,0.38896595935368944,0.3892401770455884,0.38951469307488806,0.389789506671088,0.3900646169464628,0.3903400233999206,0.390615725410329,0.3908917227828015,0.3911680156313619,0.3914446042344175,0.3917214913353754,0.3919986838956986,0.3922761973353119,0.3925540651190331,0.3928323568106605,0.3931102447659687,0.3933889117919671,0.3936678972728145,0.3939471758309883,0.39422665315235367,0.394506543786645,0.3947868424560063,0.39506662846321605,0.39534726671196585,0.3956281932239816,0.3959094087925431,0.3961909140913276,0.39647270954792113,0.3967547952002355,0.3970371704779611,0.39731983424894496,0.39760278465430315,0.39788601947996316,0.3981695360168164,0.3984533313411192,0.3987374024232316,0.39902100496211684,0.39930554818335473,0.39959036638481443,0.3998754589423273,0.4001608252329101,0.4004464646553937,0.400732376595833,0.40101856049407947,0.4013050157440968,0.40159174178173135,0.40187873802068785,0.40216600391356166,0.40245353887445573,0.40274134235852654,0.4030294137862049,0.4033177526000768,0.40360635822671204,0.40389523012310485,0.4041843677026083,0.40447377040209476,0.4047634376650065,0.4050533689189541,0.40534356358716495,0.4056340211214602,0.4059247409440657,0.4062157224907431,0.4065076891559769,0.4067991752699334,0.40709092311472145,0.4073829321045538,0.40767520169954985,0.40796773118514085,0.4082605200775493,0.408553567699121,0.40884687350417726,0.4091404366734237,0.40943425680727996,0.40972833322400826,0.4100226652875794,0.41031725233620187,0.41061209382761427,0.41090718910279145,0.41120253761941666,0.4114981387231149,0.4117939918752613,0.412090096377009,0.412386451729136,0.41268305735163113,0.4129799126128925,0.4132770169641743,0.4135743698298863,0.4138719706348937,0.4141698188371442,0.41446791382302295,0.4147662550998678,0.4150648420471019,0.41536367419269254,0.4156627508455756,0.4159620716191275,0.4162616358807775,0.4165614430653072,0.4168614926758092,0.4171617841914102,0.41746231704234077,0.4177630907160721,0.4180641046245153,0.4183653583086878,0.4186668512103023,0.41896761577738995,0.4192695662792992,0.4195717541165296,0.41987417857064563,0.4201768391668176,0.4204797353424812,0.42078286664163617,0.4210862325546253,0.4213885003035549,0.42169231498744586,0.4219963623992954,0.42230064209953017,0.4226051535915755,0.42290989639137566,0.42321487001247626,0.4235200739434664,0.4238255077545718,0.4241311709132678,0.42443706297602224,0.42474318343144324,0.42504953179190025,0.4253561075882796,0.42566291031914405,0.4259699395126862,0.4262771947057729,0.42658467536768724,0.42689238105302535,0.4272003113050577,0.42750846556166544,0.4278168434268336,0.42812544437233135,0.4284342679238929,0.4287433136114045,0.42905258095656673,0.42936206943760885,0.42967177866715245,0.42998170809771075,0.4302918572963152,0.4306022257332925,0.43091281299206424,0.431223618566168,0.43153464197331587,0.43184588280766206,0.43215734051817734,0.43246901467176113,0.4327809047895798,0.43309301041290466,0.43340533106153123,0.43371786628809417,0.4340306156026741,0.43434357855208844,0.43465675465122705,0.434970143493,0.4352837445412217,0.43559755742745315,0.43591158154426474,0.43622581656560716,0.4365402619688762,0.43685491731906556,0.43716978216530705,0.4374848560165767,0.4378001384355902,0.43811562899969303,0.4384313272194172,0.43874723262298015,0.4390633447756983,0.4393796632538152,0.4396961875674375,0.440012917330915,0.4403298520372381,0.440646991269124,0.4409643345702585,0.4412818815043002,0.44159963162030424,0.44191758449385005,0.4422357396661626,0.4425540967466862,0.4428726551904106,0.4431914146824866,0.4435103747303904,0.4438295349286549,0.44414889481808856,0.4444684540498418,0.44478821204293073,0.44510816846142975,0.44542832295559825,0.44574867912858773,0.44606923808129345,0.4463899939563461,0.44671094638085734,0.4470320949493268,0.44735343910812647,0.4476749785695708,0.4479967128492247,0.44831864158610063,0.44864076423630994,0.448963080540477,0.44928558995469775,0.4496082921250136,0.4499311866651071,0.4502542730935071,0.4505775510081713,0.45090102002990967,0.45122467975031366,0.4515485297014823,0.4518725695430297,0.4521967987649885,0.45252121710907467,0.45284582403690055,0.45317061926601787,0.45349560225912355,0.4538207726919731,0.4541461301584381,0.45447167417974804,0.4547974044415301,0.45512332054209004,0.4554494220664083,0.45577504772667216,0.4561015131910573,0.456428162853104,0.45675499633405214,0.4570820132579908,0.45740921319301964,0.4577365957772848,0.45806416059765365,0.4583919072791567,0.45871983541295497,0.4590479446334034,0.4593762345433737,0.4597047047436898,0.46003335486578306,0.46036218450807204,0.4606911933029658,0.4610203808664626,0.4613497467956424,0.46167929071912045,0.46200901226470836,0.4623389110425621,0.4626689866829302,0.4629992387811247,0.4633296669999426,0.4636602709319969,0.4639910502147353,0.4643220044739533,0.46465313332337976,0.46498443640624554,0.4653159133449272,0.4656475637522272,0.46597938727573074,0.46631138354483054,0.4666435521831641,0.46697589283046387,0.467308405117559,0.46764108867432075,0.46797394312712076,0.46830696813948613,0.4686401633043001,0.4689735283101206,0.46930706276560014,0.46964076629222523,0.46997463858478433,0.47030867922458897,0.47064288788403474,0.470977264202498,0.4713118078149113,0.4716465183683891,0.4719813955243142,0.4723164388995538,0.47265164816286565,0.47298702294355827,0.4733225629034721,0.47365826768561914,0.47399413694596265,0.4743301703307971,0.4746663674832023,0.4750027280621081,0.475339251726717,0.47567593811624115,0.47601278691031407,0.47634979774210584,0.47668697027203066,0.4770243041520786,0.47736179904978315,0.4776994546249136,0.4780372705339156,0.47837524643205537,0.4787133819839166,0.4790516768501259,0.4793901306952541,0.4797287431910954,0.480067513994357,0.48040644275293215,0.48074552915626273,0.48108477286833173,0.4814241735408832,0.48176373085829244,0.48210344448323494,0.4824433140900842,0.4827833393206533,0.4831235199015323,0.4834638554617315,0.4838043456763462,0.4841449902366499,0.48448578881227555,0.4848267410727903,0.4851678466931292,0.48550910535467734,0.4858505167356367,0.48619208050698076,0.4865337963471891,0.48687566395717896,0.48721768299511176,0.4875598531551616,0.4879021740922805,0.4882446455266297,0.488587267115989,0.4889300385501928,0.4892729595371902,0.489616029722302,0.4899592488103329,0.49030261651311147,0.49064613247715194,0.49098979641263923,0.49133360802519804,0.4916775669669591,0.4920216729570181,0.4923659256777915,0.4927103248220208,0.49305487008215076,0.49339956114259614,0.4937443977279679,0.4940893795086678,0.4944345061706224,0.4947797774524041,0.495125193011312,0.4954707525640396,0.49581645580053746,0.49616230242555276,0.49650829214384884,0.49685442464761,0.49720069964022673,0.497547116826477,0.4978936759070254,0.4982403766200972,0.4985872186013346,0.49893420160909224,0.49928132534313313,0.4996285894916347,0.49997599377563656,0.50032353788553,0.5006712215702495,0.5010190444966008,0.5013670063890351,0.5017151069747809,0.5020633459534897,0.5024117230214707,0.5027602379186489,0.5031088903345634,0.5034576800033366,0.5038066066214353,0.5041556699305959,0.5045048696224222,0.5048542054275759,0.5052036770707666,0.5055532842492723,0.5059030266899305,0.5062529041177363,0.5066029162617519,0.5069530628170076,0.5073033435318328,0.5076537581208255,0.5080043062867313,0.5083549877931278,0.5087058023309814,0.5090567496335313,0.509407829428077,0.5097590414555632,0.510110385417906,0.5104618610629904,0.5108134681156852,0.5111652062827111,0.5115170753269804,0.5118690749580806,0.5122212049113399,0.5125734649265884,0.5129258547319546,0.51327837404748,0.5136310226206268,0.5139838001905769,0.5143367064711617,0.5146897412054453,0.5150429041408704,0.5153961950182355,0.5157496135571823,0.5161031594961851,0.5164568325906557,0.5168106325632185,0.5171645591459959,0.5175186121066342,0.5178727911793607,0.518227096087917,0.5185815265871816,0.5189360824193874,0.519290763325319,0.5196455690571533,0.5200004993490621,0.5203555539433385,0.5207107325980664,0.5210660350619072,0.5214214610639031,0.5217770103733982,0.5221326827047825,0.5224884778546258,0.5228443955409077,0.5232004355176874,0.5235565975379182,0.5239128813445781,0.5242692867098835,0.5246258133662477,0.524982461075838,0.525339229599814,0.5256961186680015,0.5260531280643539,0.5264102575259763,0.5267675068085191,0.5271248756767992,0.5274823638842872,0.5278399711841818,0.5281976973388643,0.528555542110237,0.5289135052541408,0.5292715865278304,0.5296297856991898,0.52998810462683,0.5303465431067994,0.5307050991118122,0.5310637724195726,0.5314225627824481,0.5317814699614128,0.5321404937121718,0.5324996337797808,0.5328588899141671,0.5332182619041638,0.5335777494292533,0.5339373523060907,0.5342970702342587,0.5346569029808739,0.5350168503052646,0.5353769119580306,0.5357370876887433,0.5360973772531457,0.5364577804158244,0.5368182968889949,0.5371789264494212,0.537539668867609,0.5379005238748097,0.5382614911942092,0.5386225706149672,0.5389837618514872,0.5393450647021006,0.5397064788836897,0.5400680041083346,0.5404296402000778,0.5407913868276263,0.5411532437853555,0.5415152108853128,0.5418772877893429,0.5422394742628653,0.542601770099459,0.5429641751002928,0.5433266889213477,0.5436893114285125,0.544052042330089,0.5444148813932792,0.5447778284466356,0.5451408832517882,0.5455040455280643,0.5458673151110345,0.5462306917473884,0.5465941752743132,0.5469577654370681,0.5473214619861924,0.5476852647944037,0.5480491735995254,0.5484131882337113,0.5487773084424442,0.5491415340002178,0.5495058648304973,0.5498703006082336,0.5502348411654556,0.5505994863193086,0.5509642358668811,0.5513290895989322,0.5516940473412043,0.5520591089401623,0.5524242740666961,0.5527895426336257,0.5531549144334609,0.5535203892483352,0.5538859668855676,0.554251647194517,0.554617429957959,0.5549833149998955,0.5553493020690352,0.5557153910406311,0.556081581695717,0.5564478738585598,0.5568142673612282,0.5571807619374298,0.557547357466415,0.5579140537570239,0.5582808505640451,0.5586477478439844,0.5590147451942885,0.5593818426297938,0.5597490398004749,0.5601163366489635,0.560483732896118,0.560851228382935,0.5612188229686403,0.561586516403213,0.561954308508847,0.5623221992081303,0.5626901881223467,0.563058275218331,0.5634264602415683,0.5637947429737424,0.5641631233462419,0.5645316010841932,0.5649001760021818,0.5652688479800787,0.5656376167728157,0.5660064821994008,0.5663754440954929,0.5667445022678786,0.5671136565291801,0.5674829067327395,0.567852252613158,0.5682216940546533,0.568591230848173,0.5689608628218259,0.5693305897717933,0.5697004115385552,0.5700703279609852,0.5704403387675436,0.570810443876235,0.5711806430549676,0.571550936103027,0.5719213228781622,0.5722918031992973,0.5726623768773056,0.5730330437023475,0.5734038035247201,0.5737746561276658,0.5741456013714249,0.5745166390746785,0.5748877690482294,0.5752589910483751,0.5756303050335618,0.576001710677155,0.5763732079462144,0.5767447965713478,0.5771164763544315,0.5774882471731985,0.5778601088327493,0.5782320611572456,0.5786041039682375,0.5789762370773147,0.5793484603156437,0.5797207735235109,0.5800931765214906,0.580465669131238,0.5808382511449356,0.5812109224482263,0.5815836828344347,0.5819565321183469,0.5823294701251243,0.5827024967649758,0.5830756117664206,0.5834488149904609,0.5838221062444491,0.584195485424027,0.5845689523066844,0.5849425067179836,0.5853161485191402,0.5856898775158719,0.5860636935575682,0.586437596456425,0.5868115860816964,0.5871856621984065,0.5875598247369946,0.5879340734464014,0.5883084082054068,0.588682828821415,0.5890573351530332,0.5894319270176432,0.5898066042427008,0.5901813666974739,0.5905566718145397,0.5909315892098326,0.591306591779754,0.5916816794584724,0.5920568519758246,0.5924321092200312,0.5928074509450175,0.5931828770616892,0.5935583873050309,0.5939339816395718,0.5943096597752429,0.5946854215280137,0.5950612668845215,0.5954371955099871,0.5958132073167893,0.5961893021430348,0.5965654797359913,0.5969417400365455,0.5973180828409663,0.5976945079679721,0.5980710152322909,0.5984476045651929,0.5988242756582552,0.5992010285167043,0.5995778628172551,0.5999547785016929,0.6003317753640636,0.6007088532538595,0.6010860119638768,0.6014632514143451,0.6018405714220507,0.6022179718073594,0.60259545239854,0.6029730130695291,0.6033506536742127,0.6037283739892801,0.6041061739736369,0.6044840533266014,0.6048620119971103,0.6052400498035745,0.605618166526687,0.6059963621086845,0.6063746363752173,0.6067529890953796,0.6071314202291108,0.6075099295241067,0.6078885168596397,0.6082671821186191,0.608645925109491,0.6090247456874972,0.6094036437053449,0.6097826190087879,0.6101616714622282,0.6105408008935166,0.6109200071768818,0.6112992901130984,0.6116786495798371,0.6120580854687168,0.6124375975635613,0.6128171857494192,0.6131968498825677,0.6135765898453407,0.6139564054164366,0.6143362964619491,0.6147162629404944,0.6150963045779502,0.6154764213124617,0.615856612989309,0.6162373842199187,0.6166176982829812,0.6169980867732123,0.6173785495700849,0.6177590866396634,0.6181396978803164,0.61852038316106,0.6189011425300354,0.6192819758336288,0.6196628830932719,0.6200438642415467,0.6204249193118763,0.6208060482815613,0.6211872511571342,0.6215685279550925,0.621949878674597,0.6223313033546735,0.6227132376773072,0.6230947595842917,0.6234763613623435,0.6238580430525792,0.6242398046715426,0.6246216456597322,0.6250035662127068,0.6253855661184651,0.625767645186085,0.6261498032644824,0.6265320404236945,0.6269143561602067,0.6272967505741205,0.6276792235399892,0.6280617748276452,0.6284444042152147,0.6288271118544361,0.6292098972154238,0.6295927605202607,0.6299757012870442,0.630358238047194,0.6307412727616286,0.6311243785825829,0.6315075553079182,0.631890802630153,0.63227412031651,0.6326575081834397,0.6330409659712963,0.6334244934435347,0.6338080904209316,0.6341917566361409,0.6345754919249521,0.6349592962001939,0.6353431691238732,0.6357271106372185,0.6361111204239585,0.6364946892422949,0.63687880452416,0.6372629874393486,0.6376472379246177,0.6380315558188517,0.6384159410622166,0.6388003934386587,0.6391849128781079,0.639569499299647,0.6399541525769488,0.6403388724811613,0.6407236590177409,0.6411085120462612,0.6414934314232869,0.6418784170336974,0.6422634687863559,0.6426485865533869,0.6430337702360489,0.64341901968428,0.6438043348135156,0.644189715504964,0.6445751616241573,0.6449606730992596,0.645346249765084,0.6457318915647958,0.6461175983698714,0.6465033700606275,0.6468892064607618,0.6472751075792686,0.6476610732594599,0.6480471033558705,0.6484331978216497,0.648819356442765,0.649205579245706,0.6495918660120451,0.6499782166460447,0.6503646310787934,0.6507511092302753,0.6511376508913128,0.6515242559960043,0.6519109244824638,0.6522976562276005,0.6526844510722539,0.6530713089261971,0.6534582297265913,0.6538452133281012,0.6542322596206442,0.6546193685343688,0.6550065398894842,0.6553937736890384,0.655781069709218,0.6561684279098076,0.6565558482060599,0.6569433304523195,0.6573308745851528,0.6577184803814294,0.6581061479693512,0.6584938770095743,0.6588816674805391,0.6592695192728818,0.659657432295178,0.6600454065058372,0.6604330285950786,0.6608211144303695,0.6612092608389974,0.6615974677531268,0.6619857350074042,0.6623740625282497,0.6627624502225791,0.6631508979321283,0.6635394056154255],\"y\":[0.38818314077437877,0.3881880636262179,0.3881797435927725,0.3883941970951983,0.3889944972436701,0.3895947973976884,0.3901950975507753,0.39079539770046784,0.39139569784247275,0.3919959980023493,0.3925962981502166,0.39319659829774506,0.3937968984479049,0.39439719860463207,0.3949974987502,0.39559779890656543,0.3961980990501872,0.3967983992042905,0.3973986993488622,0.3979989994844291,0.39859929965403695,0.39919959981810216,0.3997998999354384,0.4004002000749939,0.40100050020463635,0.4016008003758361,0.40220110054947567,0.40280140070277576,0.4034017008474501,0.40400200096262445,0.4046023011359256,0.40520260130493463,0.40580290143777653,0.40640320160436305,0.40700350173476907,0.4076038019150787,0.4082041020385554,0.40880440215461805,0.4094047023519606,0.41000500249883776,0.41060530264541867,0.4112056028048453,0.4118059029480208,0.41240620309215265,0.4130065032521302,0.41360680340226724,0.41420710355917634,0.41480740369927405,0.415407703855362,0.41600800400983046,0.4166083041563891,0.4172086043065938,0.41780890445662894,0.41840920461069026,0.41900950475060234,0.41960980490052857,0.42021010505752154,0.4208104051983569,0.42141070535598835,0.42201100550094656,0.4226113056518612,0.4232116058024341,0.4238119059582284,0.4244122061083849,0.42501250625189413,0.42561280640636,0.4262131065405853,0.42681340670645773,0.4274137068565052,0.42801400700931,0.4286143071473442,0.42921460730664285,0.42981490744887985,0.4304152076146797,0.4310155077531185,0.4316158079019731,0.43221610806033484,0.43281640819102657,0.43341670835195756,0.434017008493236,0.4346173086519486,0.43521760881098726,0.43581790895023553,0.4364182091128918,0.4370185092578367,0.43761880941676967,0.4382191095581173,0.4388194097020929,0.4394197098583963,0.44002001000735214,0.4406203101513981,0.4412206103088109,0.4418209104574569,0.44242121061270656,0.44302151076481194,0.443621810909357,0.44422211106847104,0.4448224112129357,0.44542271135195133,0.4460230115117423,0.44662331164871305,0.4472236118023022,0.4478239119638441,0.44842421210333616,0.44902451224761797,0.4496248123870329,0.4502251125547906,0.4508254127009482,0.45142571286415856,0.4520260130202244,0.452626313170348,0.45322661330505537,0.4538269134581296,0.45442721360483285,0.4550275137639855,0.45562781391800045,0.4562281140710589,0.45682841420880993,0.4574287143493404,0.45802901449938366,0.45862931465168916,0.4592296148028025,0.45982991496279424,0.46043021510847476,0.46103051526631805,0.46163081541642065,0.4622311155450223,0.46283141572222736,0.4634317158602643,0.46403201600602106,0.4646323161560753,0.46523261629996915,0.4658329164587804,0.4664332166164859,0.4670335167610302,0.46763381690664924,0.4682341170573189,0.4688344172089566,0.46943471735344255,0.47003501750756965,0.47063531765353117,0.4712356178035764,0.4718359179663521,0.4724362181121405,0.4730365182609727,0.4736368184007963,0.4742371185508608,0.4748374187180815,0.47543771886565733,0.47603801900840886,0.4766383191556045,0.4772386193094793,0.477838919466917,0.47843921960813063,0.4790395197619906,0.47963981991951654,0.4802401200618575,0.480840420210614,0.48144072036232566,0.482041020516742,0.48264132066248944,0.48324162080191035,0.4838419209626511,0.48444222110996554,0.48504252126661784,0.485642821414656,0.48624312155229155,0.4868434217156618,0.48744372185446927,0.4880440220201932,0.4886443221582673,0.48924462230524124,0.4898449224710084,0.4904452226160205,0.491045522752931,0.4916458229100614,0.49224612305309634,0.4928464232077653,0.4934467233603343,0.49404702351066954,0.4946473236607157,0.4952476238057649,0.4958479239589255,0.4964482241059983,0.497048524263239,0.4976488244109496,0.49824912455627646,0.49884942471116633,0.49944972486454187,0.500050025009308,0.5006503251492618,0.5012506252993882,0.5018509254631011,0.5024512256201998,0.5030515257746719,0.5036518259149818,0.504252126063278,0.5048524262247884,0.5054527263503034,0.5060530265241721,0.5066533266706742,0.5072536268207379,0.5078539269635565,0.5084542271009869,0.5090545272601247,0.5096548274161451,0.5102551275514093,0.5108554277055666,0.5114557278664944,0.5120560280103975,0.5126563281604521,0.5132566283060294,0.5138569284605617,0.5144572286170767,0.515057528775284,0.5156578289107269,0.5162581290528842,0.516858429225105,0.5174587293753582,0.5180590295217175,0.5186593296535045,0.5192596298110603,0.5198599299538211,0.520460230111173,0.5210605302754054,0.5216608304043053,0.5222611305438021,0.5228614307254612,0.5234617308688075,0.5240620310189212,0.5246623311615765,0.5252626313116353,0.5258629314692594,0.5264632316117549,0.5270635317694827,0.5276638319118764,0.5282641320697037,0.528864432219813,0.5294647323620634,0.5300650325258769,0.5306653326701374,0.5312656328122567,0.5318659329759335,0.5324662331123898,0.5330665332659027,0.533666833425974,0.5342671335608087,0.5348674337126682,0.5354677338759967,0.5360680340259997,0.5366683341614452,0.537268634307588,0.537868934477536,0.5384692346295221,0.5390695347598161,0.539669834930465,0.5402701350589955,0.5408704352273246,0.5414707353595611,0.5420710355287249,0.5426713356720616,0.5432716358238996,0.5438719359752792,0.5444722361146237,0.5450725362717841,0.5456728364145721,0.5462731365691498,0.546873436714928,0.5474737368717018,0.548074037015282,0.5486743371748724,0.5492746373239374,0.5498749374658087,0.5504752376190862,0.5510755377691802,0.5516758379238145,0.5522761380686749,0.5528764382290362,0.5534767383687416,0.5540770385082632,0.5546773386561782,0.5552776388393071,0.5558779389875568,0.5564782391141089,0.5570785392572459,0.5576788394144471,0.5582791395758382,0.5588794397083124,0.5594797398649392,0.5600800400083296,0.5606803401583393,0.5612806403083497,0.5618809404883385,0.5624812406096749,0.5630815407848966,0.5636818409102238,0.5642821410799035,0.5648824412191161,0.5654827413610568,0.5660830415188864,0.5666833416616193,0.5672836418322127,0.5678839419853987,0.5684842421085969,0.5690845422849992,0.5696848424181885,0.5702851425639939,0.5708854427140628,0.5714857428676468,0.5720860430142191,0.5726863431676054,0.5732866433144013,0.5738869434673756,0.5744872436394032,0.5750875437657923,0.5756878439093192,0.5762881440669301,0.5768884442168232,0.5774887443685273,0.5780890445185978,0.5786893446665174,0.5792896448180667,0.5798899449684016,0.5804902451187385,0.5810905452830962,0.5816908454189804,0.5822911455690408,0.5828914457211058,0.5834917458691631,0.5840920460433041,0.5846923461692917,0.5852926463157138,0.5858929464718288,0.5864932466403169,0.5870935467794225,0.5876938469196755,0.5882941470655685,0.5888944472132889,0.5894947473655436,0.5900950475242072,0.5906953476698555,0.5912956478142615,0.5918959479836392,0.5924962481282272,0.5930965482843739,0.5936968484259068,0.5942971485855916,0.5948974487359073,0.5954977488600911,0.5960980490108106,0.5966983491602711,0.5972986493256538,0.5978989494718815,0.5984992496221022,0.5990995497723508,0.5996998499226252,0.6003001500703538,0.6009004502123898,0.6015007503628942,0.602101050513457,0.6027013506982277,0.6033016508246808,0.6039019509613472,0.6045022511334704,0.6051025512673355,0.6057028514272239,0.606303151572548,0.6069034517148204,0.6075037518790869,0.6081040520243175,0.6087043521691163,0.6093046523189736,0.6099049524855982,0.610505252618993,0.6111055527657101,0.611705852932616,0.6123061530732041,0.6129064532166695,0.6135067533719465,0.6141070535335951,0.6147073536707863,0.6153076538188446,0.6159079539845702,0.6165082541189065,0.6171085542732797,0.6177088544346632,0.6183091545719441,0.6189094547337777,0.61950975488092,0.6201100550233725,0.6207103551734047,0.6213106553353319,0.6219109555064024,0.6225112556567263,0.6231115558158934,0.6237118559573187,0.6243121561363316,0.6249124561936484,0.6255127563831882,0.626113056523829,0.6267133566460819,0.6273136568599229,0.6279139569697734,0.6285142571323192,0.6291145572728363,0.6297148574579248,0.6303151576092396,0.6309154577341939,0.6315157578686916,0.632116058021869,0.6327163581441554,0.6333166582979304,0.6339169584444222,0.6345172586307094,0.6351175587874096,0.6357178589597391,0.6363181590491647,0.6369184592597478,0.6375187593497167,0.6381190595201272,0.6387193596502981,0.6393196598005993,0.6399199599792545,0.6405202601012208,0.6411205603095168,0.6417208603971345,0.642321160609383,0.6429214607995873,0.643521760847968,0.6441220610291285,0.6447223611686889,0.6453226613280123,0.6459229614946032,0.6465232616304253,0.6471235617549912,0.6477238619053547,0.6483241621339741,0.6489244622060882,0.6495247623772793,0.6501250625068287,0.6507253626771158,0.651325662807573,0.6519259629579459,0.652526263097585,0.653126563253322,0.6537268634090663,0.654327163606826,0.6549274637176876,0.6555277639230006,0.6561280640105526,0.6567283642061275,0.6573286643060097,0.6579289644997521,0.6585292646555744,0.6591295647623789,0.6597298649127381,0.6603301650630953,0.6609304652777938,0.6615307654136816,0.6621310655141519,0.6627313656994183,0.663331665817867,0.6639319660010087,0.6645322661628834,0.6651325662679961,0.6657328664548519,0.6663331666124543,0.666933466752486,0.6675337669031971,0.6681340670485005,0.6687343671984107,0.6693346673617517,0.6699349674792512,0.6705352676505067,0.6711355677694231,0.6717358679293507,0.6723361680991873,0.672936468231031,0.6735367683704482,0.6741370685197245,0.6747373686970136,0.6753376688227917,0.6759379689803384,0.6765382691663124,0.6771385692746023,0.6777388694438669,0.6783391695740186,0.6789394697363107,0.6795397698733318,0.6801400700401614,0.6807403701788347,0.6813406703320158,0.6819409704905577,0.682541270631359,0.6831415707886247,0.6837418709314386,0.6843421710838454,0.6849424712370521,0.6855427713843374,0.6861430715420516,0.6867433716698033,0.6873436718193153,0.687943971968794,0.6885442721777921,0.6891445722676535,0.6897448724427058,0.6903451725724579,0.6909454727493307,0.6915457728934995,0.6921460730205338,0.692746373169868,0.6933466733128663,0.693946973438728,0.6945472736114081,0.6951475737944243,0.6957478739364438,0.6963481740885531,0.6969484742362559,0.6975487743802875,0.6981490745375618,0.6987493746913809,0.6993496748459462,0.6999499749858527,0.7005502751357913,0.7011505752884128,0.7017508754385916,0.7023511755856682,0.7029514757389599,0.7035517758884386,0.7041520760384234,0.7047523761895236,0.7053526763397027,0.7059529764870438,0.7065532766174647,0.7071535768119385,0.7077538769334539,0.7083541770897738,0.7089544772679597,0.7095547773789552,0.7101550775311833,0.7107553776832383,0.7113556778368664,0.7119559779879472,0.7125562781378327,0.7131565782870652,0.7137568784438374,0.7143571785846677,0.7149574787410591,0.715557778868998,0.7161580790529865,0.7167583791801146,0.7173586793475278,0.7179589798161117,0.7185592795053222,0.7191595798908957,0.7197598797496909,0.7203601798951136,0.7209604800412209,0.7215607802231602,0.72216108066346,0.7227613808494675,0.7233616806658016,0.7239619811365173,0.7245622809630123,0.7251625811558009,0.7257628815892172,0.7263631817396086,0.7269634818677095,0.7275637817578632,0.7281640818273372,0.7287643824201997,0.7293646824662718,0.7299649822830889,0.7305652824918678,0.7311655829280154,0.7317658830735363,0.7323661829023549,0.7329664832419764,0.7335667833840779,0.7341670835295907,0.7347673837137574,0.7353676838133896,0.7359679839615817,0.7365682840979985,0.7371685842861398,0.7377688844486983,0.7383691845925042,0.7389694847638109,0.7395697849142551,0.7401700850372148,0.7407703851863756,0.7413706853382633,0.7419709855304581,0.7425712856296894,0.7431715857907839,0.7437718859671544,0.7443721861371145,0.7449724861868279,0.7455727863985611,0.746173086536879,0.7467733866867945,0.7473736868457982,0.7479739869960416,0.7485742871555394,0.7491745872867206,0.7497748874466308,0.7503751875967821,0.7509754877482744,0.7515757878860208,0.7521760880462822,0.7527763881871625,0.7533766883455084,0.7539769884937391,0.7545772886489095,0.7551775887836879,0.7557778889450181,0.7563781890987245,0.7569784892453975,0.7575787893939148,0.7581790895457756,0.758779389688575,0.7593796898476532,0.7599799899976872,0.7605802901590424,0.761180590300864,0.7617808904490445,0.762381190565894,0.7629814907165688,0.7635817909348169,0.7641820910185587,0.7647823911689436,0.7653826913192043,0.7659829915965684,0.7665832915931101,0.7671835917441091,0.7677838919471409,0.7683841921316085,0.7689844922480431,0.7695847923966959,0.7701850925223545,0.7707853926744399,0.7713856928249503,0.7719859930316768,0.7725862931259291,0.7731865932529349,0.7737868934673281,0.7743871935958114,0.7749874937457291,0.7755877938754631,0.7761880940065286,0.7767883941983442,0.7773886943078224,0.7779889944953959,0.7785892946270087,0.7791895948270967,0.7797898949101855,0.7803901951268234,0.7809904952767018,0.7815907953816505,0.7821910955319464,0.7827913956822338,0.7833916958450644,0.7839919960262293,0.7845922961450265,0.7851925962950115,0.785792896444575,0.7863931966004323,0.7869934967537007,0.7875937968988695,0.7881940970506562,0.7887943972075948,0.7893946973508087,0.7899949974940055,0.7905952976495499,0.7911955977921027,0.7917958979600846,0.7923961980922282,0.7929964982422903,0.7935967983923515,0.7941970985516085,0.7947973987028096,0.7953976988435864,0.7959979989925907,0.7965982991383362,0.7971985993061987,0.7977988994585229,0.7983991996064513,0.7989994997724651,0.7995997999033548,0.800200100047109,0.8008004001930382,0.8014007003437252,0.8020010004774855,0.802601300653715,0.803201600777344,0.8038019009432984,0.8044022011039381,0.8050025012540135,0.8056028014040895,0.8062031015746638,0.8068034016768594,0.8074037018583723,0.8080040019936394,0.8086043021737214,0.8092046022937325,0.8098049024437786,0.8104052025938238,0.811005502726188,0.8116058029117432,0.8122061030594175,0.8128064031940012,0.8134067033368252,0.8140070035051938,0.8146073036438672,0.8152076037941729,0.8158079039554369,0.8164082041103518,0.817008504236346,0.8176088043988033,0.818209104555762,0.8188094047384278,0.819409704843847,0.8200100049945045,0.8206103051445452,0.8212106052983477,0.821810905444627,0.8224112055938049,0.8230115057447087,0.8236118059110453,0.8242121060565644,0.8248124062066429,0.8254127063448748,0.8260130064949168,0.8266133066215373,0.8272136068070793,0.827813906945046,0.8284142070950902,0.8290145072451347,0.8296148073840762,0.830215107543557,0.8308154077073888,0.8314157078336608,0.8320160080549004,0.8326163081454183,0.8332166082954691,0.8338169084455211,0.8344172086146993,0.8350175087502933,0.8356178089316518,0.8362181090712788,0.836818409167398,0.8374187093627401,0.8380190094959206,0.8386193096517023,0.8392196097818846,0.8398199099318392,0.8404202101227898,0.8410205102308721,0.8416208103962628,0.842221110551796,0.8428214107234964,0.8434217108315694,0.8440220110088806,0.8446223111308788,0.845222611265707,0.8458229114710283,0.8464232116172749,0.8470235117467869,0.847623811917507,0.8482241120750871,0.8488244122016758,0.8494247123754409,0.8500250124810844,0.8506253126596921,0.8512256127809241,0.8518259129761487,0.8524262131231377,0.8530265132685394,0.8536268134266799,0.8542271135601314,0.85482741369757,0.8554277138476317,0.8560280140191044,0.8566283141571023,0.8572286143141732,0.8578289144547437,0.8584292145952881,0.8590295147670665,0.8596298149075382,0.8602301150646741,0.8608304152076951,0.8614307153675123,0.8620310155078184,0.8626313156579513,0.8632316158178666,0.8638319159584427,0.864432216108209,0.8650325162487549,0.8656328163987944,0.8662331165654964,0.8668334167088898,0.8674337168556103,0.8680340170085133,0.8686343171591002,0.8692346173190384,0.8698349174488251,0.8704352176090776,0.8710355177562111,0.8716358179090562,0.8722361180666233,0.8728364182094291,0.8734367183698488,0.8740370185271464,0.8746373186700789,0.8752376188129598,0.8758379189671912,0.8764382191099611,0.8770385192673783,0.8776388194206494,0.8782391195707624,0.8788394197097372,0.879439719870989,0.8800400199960083,0.880640320160589,0.881240620318026,0.8818409204453801,0.8824412206215505,0.8830415207609513,0.8836418209102679,0.8842421210611338,0.8848424212103991,0.8854427213502332,0.8860430215187496,0.8866433216574516,0.8872436218215014,0.8878439219616837,0.8884442221113583,0.8890445222577287,0.8896448224119613,0.8902451225693685,0.8908454227121466,0.8914457228585916,0.8920460230123332,0.8926463231508487,0.89324662331252,0.8938469234723602,0.8944472236237198,0.8950475237628017,0.8956478239091085,0.8962481240616088,0.8968484242130851,0.8974487243631797,0.8980490245117937,0.8986493246609715,0.8992496247984803,0.8998499249626175,0.9004502251247475,0.9010505252591384,0.9016508254098665,0.9022511255710481,0.9028514257140393,0.9034517258641356,0.9040520260130758,0.9046523261754384,0.9052526263001841,0.9058529264645225,0.9064532266146197,0.9070535267585444,0.9076538269057719,0.9082541270607329,0.9088544272135957,0.9094547273601528,0.9100550275124548,0.9106553276653031,0.9112556278111382,0.9118559279505044,0.9124562281139835,0.9130565282656967,0.9136568284268274,0.9142571285633685,0.9148574287159938,0.9154577288660926,0.9160580290033891,0.9166583291728556,0.9172586293136422,0.9178589294508338,0.91845922961659,0.9190595297562509,0.9196598298985055,0.9202601300668898,0.9208604302115722,0.9214607303649485,0.9220610305171911,0.9226613306672913,0.9232616308173915,0.9238619309541287,0.9244622311152682,0.9250625312676938,0.9256628314041797,0.9262631315678952,0.926863431717996,0.9274637318750817,0.9280640320181981,0.9286643321682995,0.9292646323251337,0.9298649324751489,0.9304652326128107,0.9310655327556252,0.9316658328959606,0.9322661330791793,0.9328664332059327,0.9334667333542218,0.9340670335247526,0.9346673336663602,0.9352676338194125,0.935867933950479,0.936468234121269,0.9370685342653081,0.9376688344067983,0.9382691345667479,0.9388694347298071,0.9394697348701202,0.9400700350299077,0.9406703351703217,0.9412706353204225,0.9418709354576098,0.9424712356172033,0.9430715357565803,0.9436718359079731,0.9442721360709248,0.9448724362210243,0.9454727363648351,0.9460730365112907,0.9466733366713241,0.9472736368087282,0.9478739369661398,0.9484742371258024,0.949074537260012,0.949674837425882,0.9502751375719184,0.9508754377203099,0.9514757378610234,0.9520760380222127,0.9526763381665028,0.9532766383248749,0.9538769384807596,0.9544772386103494,0.955077538768598,0.9556778389167302,0.956278139062208,0.9568784392168216,0.9574787393730833,0.9580790395189384,0.9586793396687623,0.9592796398309369,0.959879939973463,0.9604802401118062,0.9610805402605611,0.9616808404237441,0.9622811405765868,0.9628814407195381,0.9634817408810148,0.9640820410310221,0.9646823411628781,0.9652826413130351,0.9658829414743879,0.9664832416202086,0.9670835417699821,0.9676838419180527,0.968284142067722,0.968884442224836,0.9694847423749249,0.970085042514312,0.9706853426644746,0.9712856428251866,0.9718859429705535,0.9724862431310184,0.9730865432578165,0.9736868434215589,0.9742871435756152,0.974887443730984,0.9754877438809729,0.9760880440183984,0.9766883441771211,0.9772886443222327,0.9778889444696294,0.9784892446309064,0.9790895447686795,0.9796898449263534,0.9802901450808564,0.9808904452272292,0.9814907453765895,0.9820910455266673,0.9826913456753832,0.983291645820493,0.9838919459720231,0.9844922461198226,0.9850925462692846,0.9856928464222483,0.9862931465773016,0.9868934467277772,0.9874937468720281,0.9880940470280735,0.9886943471783084,0.9892946473285311,0.9898949474787432,0.9904952476215159,0.9910955477559099,0.9916958479371237,0.9922961480626842,0.9928964482382958,0.993496748379779,0.9940970485221111,0.9946973486710493,0.9952976488206164,0.9958979489709876,0.9964982491231602,0.9970985492919366,0.9976988494226074,0.9982991495587634,0.9988994497209738,0.9994997498808202,1.0001000500210195,1.0007003501710519,1.0013006503049726,1.0019009504835366,1.0025012506410986,1.0031015507712415,1.003701850960259,1.0043021510662316,1.004902451205136,1.005502751391304,1.0061030515471718,1.006703351671661,1.007303651805292,1.0079039519994355,1.0085042521219114,1.0091045522719981,1.0097048524151009,1.0103051525436264,1.0109054526789543,1.0115057528649534,1.0121060530224513,1.0127063531725438,1.0133066533056438,1.0139069534727285,1.0145072536495479,1.0151075537430305,1.015707853915029,1.0163081540650851,1.0169084542499376,1.0175087543919712,1.0181090545057847,1.0187093547001695,1.0193096548540281,1.0199099549824644,1.020510255123721,1.0211105552738073,1.0217108553932928,1.0223111555433717,1.0229114557705712,1.0235117558741436,1.0241120560242265,1.0247123561743077,1.0253126563243884,1.0259129564440235,1.0265132565871067,1.0271135567677068,1.0277138569549493,1.0283141570747827,1.0289144572141533,1.0295147573814696,1.0301150575250118,1.0307153577006687,1.031315657825163,1.0319159579752386,1.0325162581198961,1.0331165582264983,1.03371685844552,1.034317158555714,1.0349174587543317,1.0355177588756843,1.036118059050379,1.0367183591879148,1.0373186593057862,1.0379189594759801,1.0385192596367152,1.0391195597183298,1.0397198599771638,1.040320160079617,1.040920460249881,1.0415207603976477,1.042121060500302,1.0427213606765786,1.0433216608252034,1.0439219609512889,1.0445222611268077,1.0451225613017976,1.045722861426963,1.046323161576764,1.04692346172712,1.0475237618537745,1.0481240620487622,1.048724362177358,1.049324662328314,1.04992496247752,1.0505252626280126,1.0511255627556642,1.0517258629060535,1.052326163099251,1.0529264632078428,1.0535267633780172,1.0541270635485633,1.054727363658305,1.055327663808448,1.0559279639783596,1.0565282641470675,1.057128564296938,1.057728864465346,1.0583291645826671,1.0589294647287988,1.059529764883195,1.0601300650635295,1.06073036514326,1.0613306653339563,1.0619309654257045,1.0625312656293413,1.063131565800885,1.0637318659195978,1.0643321660772997,1.0649324662297095,1.0655327663941714,1.0661330665450095,1.066733366693736,1.0673336668227764,1.0679339669801764,1.068534267136613,1.0691345673069492,1.0697348674247582,1.0703351675941957,1.070935467755734,1.0715357678875246,1.072136068003819,1.0727363682007034,1.0733366683506687,1.073936968500634,1.074537268616003,1.0751375687910085,1.0757378689433104,1.0763381690814966,1.0769384692405128,1.0775387693787912,1.0781390695317765,1.0787393696679781,1.0793396698393727,1.0799399699473209,1.0805402701396298,1.0811405702822419,1.081740870442594,1.082341170589903,1.0829414707556955,1.0835417708999213,1.084142071030203,1.0847423711827897,1.0853426713380157,1.0859429715265465,1.086543271607693,1.0871435717524434,1.0877438719327073,1.0883441720902902,1.0889444722144839,1.0895447724161678,1.0901450725147739,1.0907453727077565,1.0913456728382325,1.0919459729718197,1.092546273164026,1.0931465732883097,1.093746873438337,1.0943471736128016,1.0949474737222267,1.095547773894395,1.0961480740443303,1.0967483741932025,1.0973486743169747,1.0979489745105253,1.098549274617406,1.0991495748093871,1.0997498749439303,1.1003501751094493,1.100950475243893,1.1015507754135796,1.1021510755438007,1.1027513756888854,1.1033516758407493,1.1039519759936716,1.104552276119766,1.105152576270018,1.1057528764202726,1.1063531765533865,1.1069534767423708,1.1075537768751424,1.1081540770394032,1.1087543772093673,1.1093546773218588,1.1099549774757669,1.1105552776435217,1.1111555777858848,1.111755877958599,1.1123561781084974,1.1129564782216903,1.1135567784042537,1.1141570785267991,1.1147573786888134,1.1153576788247457,1.1159579789656784,1.1165582791275455,1.1171585792907637,1.1177588794589681,1.1183591795946783,1.118959479737531,1.1195597798926795,1.1201600800413698,1.1207603801914978,1.1213606803280978,1.1219609805062138,1.122561280655943,1.1231615807553983,1.1237618809554923,1.124362181089987,1.1249624812391317,1.125562781406673,1.1261630815488548,1.1267633816659506,1.1273636818417978,1.1279639819649843,1.12856428211572,1.1291645822927185,1.129764882411489,1.1303651825978958,1.1309654827474604,1.1315657829206722,1.1321660830526992,1.1327663832024515,1.1333666833522118,1.1339669835019819,1.1345672836517617,1.135167583798338,1.1357678839300587,1.1363681840868003,1.136968484368165,1.1375687844254407,1.1381690845187187,1.138769384818604,1.1393696848672663,1.139969985017308,1.1405702852024895,1.1411705853284135,1.1417708854303827,1.1423711857203669,1.1429714857674393,1.1435717858603869,1.1441720860674593,1.144772386250629,1.1453726862951576,1.1459729865501875,1.146573286561042,1.1471735868336188,1.1477738868597238,1.1483741870625759,1.1489744872192795,1.149574787368792,1.1501750875604069,1.1507753877113134,1.1513756878322525,1.1519759880013694,1.1525762881477954,1.1531765883151484,1.153776888483482,1.1543771886018845,1.1549774887167508,1.155577788919257,1.1561780890310076,1.1567783892414873,1.1573786893106068,1.1579789894922043,1.1585792896627296,1.1591795898014532,1.1597798899472367,1.160380190090529,1.160980490261907,1.16158079039812,1.1621810905302123,1.1627813906914095,1.1633816908841612,1.1639819909912312,1.1645822911151713,1.165182591299842,1.165782891457827,1.1663831915822784,1.1669834917322413,1.167583791890757,1.1681840920512174,1.168784392209091,1.169384692359348,1.16998499248503,1.1705852926395042,1.1711855928101338,1.1717858929403109,1.1723861930902557,1.1729864932609415,1.173586793424625,1.1741870935240275,1.1747873936671989,1.1753876938400076,1.1759879939573084,1.1765882941535108,1.1771885942654579,1.1777888944538644,1.1783891946135476,1.1789894947397648,1.1795897948897303,1.1801900950644821,1.180790395225519,1.1813906953121724,1.181990995461677,1.1825912956657796,1.183191595817546,1.183791895958489,1.184392196089491,1.1849924962394656,1.1855927963894426,1.1861930965590062,1.186793396657465,1.187393696852667,1.1879939969894098,1.1885942971057755,1.1891945972690299,1.1897948974046118,1.1903951976203893,1.1909954977185964,1.1915957979373986,1.192196098092441,1.192796398244096,1.1933966983723,1.1939969984892036,1.1945972986565796,1.1951975988176884,1.1957978989516065,1.1963981990798778,1.1969984992496603,1.1975987993915944,1.198199099539051,1.1987993997170556,1.199399699849765,1.200000000022851]}},\"id\":\"7bf7a962-1f42-42ee-84ef-345c1244bff1\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"plot\":{\"id\":\"5e5ea79b-c0b9-44bd-a5fe-bb9aecef90f1\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"30ad338d-9bfe-458a-a660-0a1c635f68b6\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"format\":\"0.%\"},\"id\":\"67dd31ff-2661-4399-8478-1a22810bd3d2\",\"type\":\"NumeralTickFormatter\"},{\"attributes\":{\"format\":\"0.%\"},\"id\":\"914b8f7c-d6ed-4296-8c94-01eae12bd1f9\",\"type\":\"NumeralTickFormatter\"},{\"attributes\":{\"data_source\":{\"id\":\"be462cab-9acf-4f36-a2ca-4dcbd8f30ac4\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"d88f2e25-f9af-4e33-ad38-982d335df97c\",\"type\":\"Line\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"eef6db11-e819-4986-91a0-15957218eeca\",\"type\":\"Line\"},\"selection_glyph\":null},\"id\":\"c4ba2876-9aaf-4ce8-9777-2fa75816f15a\",\"type\":\"GlyphRenderer\"}],\"root_ids\":[\"5e5ea79b-c0b9-44bd-a5fe-bb9aecef90f1\"]},\"title\":\"Bokeh Application\",\"version\":\"0.12.3\"}};\n",
" var render_items = [{\"docid\":\"cd55fd21-724a-481c-ad85-2d7297ed5b30\",\"elementid\":\"70cef20b-b5f5-43be-bfab-f5057d6bc256\",\"modelid\":\"5e5ea79b-c0b9-44bd-a5fe-bb9aecef90f1\"}];\n",
" \n",
" Bokeh.embed.embed_items(docs_json, render_items);\n",
" });\n",
" },\n",
" function(Bokeh) {\n",
" }\n",
" ];\n",
" \n",
" function run_inline_js() {\n",
" \n",
" if ((window.Bokeh !== undefined) || (force === \"1\")) {\n",
" for (var i = 0; i < inline_js.length; i++) {\n",
" inline_js[i](window.Bokeh);\n",
" }if (force === \"1\") {\n",
" display_loaded();\n",
" }} else if (Date.now() < window._bokeh_timeout) {\n",
" setTimeout(run_inline_js, 100);\n",
" } else if (!window._bokeh_failed_load) {\n",
" console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n",
" window._bokeh_failed_load = true;\n",
" } else if (!force) {\n",
" var cell = $(\"#70cef20b-b5f5-43be-bfab-f5057d6bc256\").parents('.cell').data().cell;\n",
" cell.output_area.append_execute_result(NB_LOAD_WARNING)\n",
" }\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": [
"p1 = figure(width=900, height=600, title=\"Efficient Frontier\", toolbar_location=\"above\")\n",
"p1.line(frontier_ss_true.index, frontier_ss_true.values, legend=\"Short Sale Allowed\", color=\"green\", line_width=2)\n",
"p1.line(frontier_ss_false.index, frontier_ss_false.values, legend=\"No Short Sale Allowed\", color=\"blue\", line_width=2)\n",
"\n",
"p1.legend.location = \"top_left\"\n",
"p1.xaxis.axis_label = 'Risk'\n",
"p1.xaxis.formatter = NumeralTickFormatter(format=\"0.%\")\n",
"p1.yaxis.axis_label = 'Return'\n",
"p1.yaxis.formatter = NumeralTickFormatter(format=\"0.%\")\n",
"\n",
"show(p1)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Proporção de cada ativo, com vendas a descoberto\n",
"Por não haver restrição nas proporções, notamos nas curvas abaixo uma aparente continuidade."
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
" <div class=\"bk-root\">\n",
" <div class=\"plotdiv\" id=\"712fc52c-c738-4c54-ad7e-6286842513c0\"></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",
" \n",
" \n",
" if (typeof (window._bokeh_timeout) === \"undefined\" || force !== \"\") {\n",
" window._bokeh_timeout = Date.now() + 0;\n",
" window._bokeh_failed_load = false;\n",
" }\n",
" \n",
" var NB_LOAD_WARNING = {'data': {'text/html':\n",
" \"<div style='background-color: #fdd'>\\n\"+\n",
" \"<p>\\n\"+\n",
" \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n",
" \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n",
" \"</p>\\n\"+\n",
" \"<ul>\\n\"+\n",
" \"<li>re-rerun `output_notebook()` to attempt to load from CDN again, or</li>\\n\"+\n",
" \"<li>use INLINE resources instead, as so:</li>\\n\"+\n",
" \"</ul>\\n\"+\n",
" \"<code>\\n\"+\n",
" \"from bokeh.resources import INLINE\\n\"+\n",
" \"output_notebook(resources=INLINE)\\n\"+\n",
" \"</code>\\n\"+\n",
" \"</div>\"}};\n",
" \n",
" function display_loaded() {\n",
" if (window.Bokeh !== undefined) {\n",
" Bokeh.$(\"#712fc52c-c738-4c54-ad7e-6286842513c0\").text(\"BokehJS successfully loaded.\");\n",
" } else if (Date.now() < window._bokeh_timeout) {\n",
" setTimeout(display_loaded, 100)\n",
" }\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(\"712fc52c-c738-4c54-ad7e-6286842513c0\");\n",
" if (element == null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid '712fc52c-c738-4c54-ad7e-6286842513c0' 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 = {\"ea84622a-a3c3-4843-a4c7-77b7ad118327\":{\"roots\":{\"references\":[{\"attributes\":{\"plot\":{\"id\":\"9ad12f60-7c08-4216-815d-6c9a0dc5c47c\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"75807cde-ce38-4843-a683-150089fcd43f\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"label\":{\"value\":\"PETR4\"},\"renderers\":[{\"id\":\"512bfae6-8329-4bff-959f-19792152e5f0\",\"type\":\"GlyphRenderer\"}]},\"id\":\"bf5793fe-4b3a-4fc6-a371-248b8b30d371\",\"type\":\"LegendItem\"},{\"attributes\":{\"format\":\"0.%\"},\"id\":\"30bf4cc7-845e-4c18-8350-a76744f4ff0e\",\"type\":\"NumeralTickFormatter\"},{\"attributes\":{\"line_color\":{\"value\":\"#2b83ba\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"82193e13-0530-411c-8a21-e2cb6c58b244\",\"type\":\"Line\"},{\"attributes\":{\"line_color\":{\"value\":\"#abdda4\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"dd09e3e3-a43d-460c-8be1-acdd9615c876\",\"type\":\"Line\"},{\"attributes\":{\"plot\":null,\"text\":\"Efficient Frontier Weights (Short Sale Allowed)\"},\"id\":\"93c6dcc1-c246-41b3-a6da-119caa3872f4\",\"type\":\"Title\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"e3d88507-a47b-401e-907c-1df97b799dc4\",\"type\":\"Line\"},{\"attributes\":{\"axis_label\":\"Weight\",\"formatter\":{\"id\":\"30bf4cc7-845e-4c18-8350-a76744f4ff0e\",\"type\":\"NumeralTickFormatter\"},\"plot\":{\"id\":\"9ad12f60-7c08-4216-815d-6c9a0dc5c47c\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"4ddc96ae-ab5e-4854-bef7-aa0b1f696f7c\",\"type\":\"BasicTicker\"}},\"id\":\"691b6602-9386-4dd4-b337-0c85f868d087\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"b7ba6968-f149-40c4-a3e5-08e86bf312ea\",\"type\":\"BasicTicker\"},{\"attributes\":{\"line_color\":{\"value\":\"#d7191c\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"80719eac-c3b0-45dd-8f28-bc282295c79d\",\"type\":\"Line\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[0.30277732649230255,0.3027773243528187,0.30277732384363676,0.30277732163277865,0.30277776303022685,0.30277883430879293,0.302780533913296,0.30278286209337674,0.30278581968773344,0.3027894074475561,0.30279362577674906,0.3027984730514229,0.3028039498610367,0.30281005622932095,0.3028167921180846,0.30282415748559743,0.3028321522854142,0.3028407764675795,0.3028500299771865,0.3028608141080561,0.3028712951705163,0.30288240513299014,0.3028941438740389,0.30290651126904466,0.30291950718912464,0.3029331315120592,0.3029473841206663,0.30296226491482653,0.3029777414899235,0.3029938718345482,0.30301065495466134,0.30302811364173193,0.30304623908221434,0.30306500753989185,0.30308441761314664,0.30310442567890183,0.3031250236731619,0.3031462495830467,0.30316716047652625,0.3031896124145009,0.30321269152374186,0.30323639766121047,0.30326073067854703,0.3032856904252255,0.30331127674703595,0.30333748948393413,0.3033643284739846,0.3033917935493559,0.30341988454140917,0.3034486012746904,0.3034779435709653,0.3035079112488485,0.3035385041224358,0.3035697220023399,0.3036015646941907,0.3036340320017529,0.30366712372468735,0.3037008396562196,0.3037351795899945,0.3037701433118116,0.3038057306070869,0.3038419412551731,0.30387877503305166,0.3039162317128426,0.3039543110632828,0.3039930128506806,0.3040323368346242,0.30407228277622417,0.30411285042669917,0.30415403953724474,0.3041958498538903,0.3042382811219828,0.3042813330783752,0.3043250054610695,0.3043692979992316,0.30441421042381317,0.30445974245924606,0.3045058938240946,0.3045526642408225,0.30460005341877444,0.3046480610715687,0.30469668690445934,0.30474593061861244,0.3047957919184976,0.30484627049569035,0.3048973660455095,0.3049490782539797,0.3050014068088008,0.30505435139197634,0.3051079116812506,0.3051620873503504,0.30521687807344705,0.30527228351632485,0.30532830334375083,0.3053849372164343,0.30544218479178026,0.3055000457259851,0.3055585196663789,0.3056176062611195,0.3056773051563898,0.3057376159890185,0.3057985383997767,0.3058600720206528,0.305922216479181,0.30598497140628494,0.30604833642326434,0.30611231115398,0.3061768952093662,0.3062420882093875,0.3063078897597447,0.30637429946839495,0.306441316937641,0.30650894177221916,0.3065771735665188,0.30664601191715196,0.3067154564118021,0.3067855066400741,0.30685616218278766,0.30692742262542627,0.306999287545301,0.3070717565165197,0.30714482911118474,0.3072185048986588,0.3072927834420341,0.30736766430592466,0.3074431470481011,0.3075192312229381,0.3075959163923032,0.3076732020943887,0.30775108788367844,0.30782957330211597,0.30790865789058064,0.3079883411895906,0.30806862273011376,0.3081495020452715,0.3082309786659554,0.30831305211655,0.3083957219210329,0.308478987597878,0.30856284866671235,0.30864730463989043,0.3087323550308583,0.30881799934877396,0.30890423709504405,0.308991067776843,0.30907849089087475,0.30916650593750056,0.3092551124129569,0.30934430980243316,0.3094340975981982,0.3095244752872701,0.3096154423535475,0.30970699827611176,0.30979914253077334,0.3098918745960403,0.30998519394453566,0.31007910004222383,0.31017359236000025,0.3102686703612377,0.3103643335085437,0.31046058125829984,0.3105574130684122,0.31065482839635217,0.3107528266890186,0.31085140739618383,0.3109505699653604,0.3110503138366825,0.31115063845899193,0.3112515432619618,0.3113530276897061,0.3114550911680593,0.3115577331331372,0.31166095301591334,0.3117647502357147,0.3118691242197017,0.3119740743917517,0.31207960016684266,0.3121857009657331,0.31229237619957456,0.3123996252815793,0.3125074476205579,0.3126158426211093,0.31272480969466027,0.31283434823755196,0.31294445765518686,0.31305513734168894,0.3131663866926119,0.3132782051039777,0.3133905919666557,0.31350354666845265,0.31361706859338456,0.3137311571312611,0.3138458116685361,0.3139610315750563,0.31407681623519373,0.3141931650200737,0.3143100773088198,0.3144275524718231,0.31454558987341735,0.31466418889434433,0.3147833488865824,0.3149030692203623,0.31502334925511943,0.31514418834757507,0.3152655858640244,0.3153875411532665,0.3155100535680891,0.31563312246521036,0.3157567471915832,0.3158809270931608,0.31600566151621606,0.316130949803125,0.3162567913029028,0.31638318535072496,0.31651013128327665,0.3166376284361527,0.31676567614520607,0.31689427375423,0.31702342057887406,0.31715311595125295,0.3172833591979066,0.31741414965368847,0.31754548663374565,0.31767736946736896,0.3178097974708876,0.3179427699551579,0.31807628624656886,0.31821034567049117,0.3183449475181626,0.31848009111351927,0.3186157757659472,0.31875200078396676,0.31888876547610423,0.3190260691447323,0.3191639110964416,0.31930229063332677,0.31944120705626255,0.31958065966382115,0.3197206477499852,0.31986117062046415,0.32000222756173624,0.32014381786941265,0.3202859408378917,0.32042859575219795,0.32057178190666175,0.32071549858484183,0.3208597450726271,0.32100452065595914,0.32114982462332,0.3212956562468407,0.32144201480735474,0.32158984383294786,0.3217372300261208,0.3218851409565948,0.32203357590123083,0.3221825341856948,0.3223320150465908,0.32248201778448415,0.3226325416542781,0.3227835859623534,0.3229370603329617,0.3230890693157995,0.3232415975523075,0.3233946443443268,0.32354820898740383,0.32370346282137924,0.3238579934898173,0.3240130419825959,0.3241686076309079,0.3243246897384356,0.3244812876327912,0.3246384006207412,0.32479602801661567,0.32495416914820063,0.32511282331629443,0.3252719898425722,0.3254316680374892,0.32559185720917216,0.32575255666707265,0.325914727691033,0.3260764004938663,0.3262385832448004,0.3264012752080624,0.32656447567073454,0.32672818393027286,0.32689239926822783,0.3270571209602987,0.32722234826779084,0.32738808048565976,0.32755431687648695,0.32772105671154717,0.3278882992520387,0.32805604377512143,0.32822428950511806,0.328393035740746,0.328562281701224,0.32873202666292933,0.3289022698485235,0.3290730105148692,0.3292442478993849,0.3294159812303475,0.3295882097511111,0.3297609326698837,0.32993414920904146,0.3301078586092401,0.3302820600549131,0.33045675277183645,0.33063193595728957,0.3308076088108569,0.3309837705278592,0.33116042029213477,0.3313375572895767,0.33151518069465774,0.3316932896905951,0.33187188341871376,0.33205096105644943,0.3322305217614297,0.33241056467087826,0.3325910889321504,0.33277209367524757,0.332953578027278,0.33313554111198723,0.33331798203349444,0.3335008999015651,0.33368429381224235,0.33386816283289045,0.33405250605995546,0.33423732254569527,0.33442261134462337,0.33460837151232015,0.33479460204756556,0.33498130198656684,0.33516847032270813,0.33535610604393756,0.33554420810182933,0.33573277544490066,0.3359218070100361,0.3361113016950343,0.336301258368081,0.33649167589111395,0.33668255306517203,0.3368738886812488,0.3370644969064471,0.33725665592933535,0.33744926159052785,0.33764231212882206,0.33783382405717727,0.3380277220409519,0.3382220681314555,0.3384168616649495,0.3386121021656987,0.3388077894081353,0.3390039232276793,0.3392005035774549,0.3393975303127614,0.3395950031759099,0.3397929217942554,0.3399912855913546,0.34019009394836797,0.34038934620530503,0.3405890417671068,0.3407891801951701,0.3409897612902384,0.3411907850078528,0.34139225140289164,0.3415941605384774,0.3417965123207599,0.34199932874747546,0.34220260076409326,0.3424063118582848,0.342610457334003,0.3428150338148735,0.3430200394063933,0.343225473315414,0.3434313354008855,0.34363762571261713,0.3438443443010811,0.3440514911222102,0.34425906597725364,0.344467068530753,0.3446754983224698,0.344884354830393,0.34509363744823696,0.3453033454871491,0.3455134782759343,0.3457240350812451,0.3459350151373917,0.3461464177124286,0.3463582420144299,0.3465704872717464,0.34678315271778304,0.34699623757573955,0.347210586581127,0.34742447541648697,0.3476387820959812,0.34785350577074675,0.34806864573934926,0.3482842011447443,0.34850017132119354,0.34871655540004803,0.3489333583048664,0.34915057323994797,0.3493681991693539,0.3495862354124306,0.3498046811893453,0.350023535836997,0.3502427985618194,0.35046246859415214,0.35068254519718456,0.35090302761107245,0.3511239151240839,0.3513452069291575,0.35156690227853965,0.35178900043912364,0.3520115006589203,0.35223440216685703,0.35245770414614097,0.35268140595077085,0.35290550668051135,0.3531300056574509,0.3533549021286081,0.3535801952983088,0.35380588441070754,0.35403196867935255,0.3542584474005015,0.3544853196921082,0.35471258494566493,0.3549402423236338,0.35516829093815727,0.3553967302291901,0.35562555930423084,0.3558547774726267,0.3560843839383484,0.35631437793255866,0.35654475868684515,0.35677552546690083,0.35700667751583964,0.3572382140262354,0.3574701343076809,0.3577024375466781,0.35793512303898417,0.35816818998342376,0.35840163766274147,0.3586354653028647,0.3588696721764309,0.35910425751967084,0.3593392206061466,0.35957456064810905,0.3598102769645978,0.36004636874373264,0.360282835334508,0.3605196759163629,0.3607568898427755,0.3609944763223412,0.36123243464580324,0.361470764128541,0.3617094640433732,0.36194853370726404,0.36218797235965045,0.3624277793558541,0.3626679540488767,0.3629084957253959,0.36314940379762645,0.3633906775899151,0.3636323164899829,0.3638743199772792,0.36411668745697545,0.3643594184259437,0.3646025124203911,0.3648459689894583,0.36508978775439926,0.3653339683956985,0.3655785105607277,0.36582341408797425,0.366068678634519,0.3663143040388874,0.36656029002846174,0.3668066362632449,0.36705334230651454,0.36730040758226334,0.36754783132954444,0.3677956124070695,0.36804374956385155,0.3682922411936328,0.3685410853433744,0.36879028007968073,0.36903982310246636,0.36928971220760015,0.3695399451419284,0.36978961856757186,0.37004049206744527,0.3702917075187641,0.3705432630938897,0.3707951569236406,0.3710473871514951,0.37129995180056363,0.3715539783332945,0.37180723596609794,0.37206082513725347,0.3723147441408322,0.3725700377140676,0.3728246014949471,0.3730795040905899,0.3733347449694112,0.3735903235330313,0.373846239330907,0.3741024917926727,0.3743590804323847,0.3746160046628059,0.37487326395672954,0.37513085776772376,0.3753887854965455,0.3756470464932655,0.3759056401009473,0.37616361762925027,0.3764228594860703,0.3766824291325402,0.37694232591712373,0.3772025491779526,0.3774630982633404,0.3777239724903221,0.3779851711798501,0.37824669363915286,0.3785085392014972,0.3787707071691655,0.3790331968570071,0.37929600758038506,0.3795591386642526,0.3798225894330597,0.38008635924293777,0.3803504474373791,0.38061485338806117,0.38087957646770954,0.3811454242861324,0.3814107088754395,0.3816763072007905,0.38194222123998167,0.38220845275601495,0.38247500311823174,0.3827418732046737,0.38300906317355443,0.38327657249959873,0.3835444000624425,0.3838125442855319,0.38408100334229706,0.3843497753501676,0.3846194879642829,0.38488871171424915,0.38515843505760133,0.38542838371022836,0.3856986177479515,0.38596917920917617,0.38624077467286255,0.3865117341287832,0.38678312612987276,0.3870548825443619,0.38732697066464244,0.3875993745155569,0.3878720864968863,0.38814510286659437,0.3884184212750432,0.38869204027520105,0.38896595935368944,0.3892401770455884,0.38951469307488806,0.389789506671088,0.3900646169464628,0.3903400233999206,0.390615725410329,0.3908917227828015,0.3911680156313619,0.3914446042344175,0.3917214913353754,0.3919986838956986,0.3922761973353119,0.3925540651190331,0.3928323568106605,0.3931102447659687,0.3933889117919671,0.3936678972728145,0.3939471758309883,0.39422665315235367,0.394506543786645,0.3947868424560063,0.39506662846321605,0.39534726671196585,0.3956281932239816,0.3959094087925431,0.3961909140913276,0.39647270954792113,0.3967547952002355,0.3970371704779611,0.39731983424894496,0.39760278465430315,0.39788601947996316,0.3981695360168164,0.3984533313411192,0.3987374024232316,0.39902100496211684,0.39930554818335473,0.39959036638481443,0.3998754589423273,0.4001608252329101,0.4004464646553937,0.400732376595833,0.40101856049407947,0.4013050157440968,0.40159174178173135,0.40187873802068785,0.40216600391356166,0.40245353887445573,0.40274134235852654,0.4030294137862049,0.4033177526000768,0.40360635822671204,0.40389523012310485,0.4041843677026083,0.40447377040209476,0.4047634376650065,0.4050533689189541,0.40534356358716495,0.4056340211214602,0.4059247409440657,0.4062157224907431,0.4065076891559769,0.4067991752699334,0.40709092311472145,0.4073829321045538,0.40767520169954985,0.40796773118514085,0.4082605200775493,0.408553567699121,0.40884687350417726,0.4091404366734237,0.40943425680727996,0.40972833322400826,0.4100226652875794,0.41031725233620187,0.41061209382761427,0.41090718910279145,0.41120253761941666,0.4114981387231149,0.4117939918752613,0.412090096377009,0.412386451729136,0.41268305735163113,0.4129799126128925,0.4132770169641743,0.4135743698298863,0.4138719706348937,0.4141698188371442,0.41446791382302295,0.4147662550998678,0.4150648420471019,0.41536367419269254,0.4156627508455756,0.4159620716191275,0.4162616358807775,0.4165614430653072,0.4168614926758092,0.4171617841914102,0.41746231704234077,0.4177630907160721,0.4180641046245153,0.4183653583086878,0.4186668512103023,0.41896761577738995,0.4192695662792992,0.4195717541165296,0.41987417857064563,0.4201768391668176,0.4204797353424812,0.42078286664163617,0.4210862325546253,0.4213885003035549,0.42169231498744586,0.4219963623992954,0.42230064209953017,0.4226051535915755,0.42290989639137566,0.42321487001247626,0.4235200739434664,0.4238255077545718,0.4241311709132678,0.42443706297602224,0.42474318343144324,0.42504953179190025,0.4253561075882796,0.42566291031914405,0.4259699395126862,0.4262771947057729,0.42658467536768724,0.42689238105302535,0.4272003113050577,0.42750846556166544,0.4278168434268336,0.42812544437233135,0.4284342679238929,0.4287433136114045,0.42905258095656673,0.42936206943760885,0.42967177866715245,0.42998170809771075,0.4302918572963152,0.4306022257332925,0.43091281299206424,0.431223618566168,0.43153464197331587,0.43184588280766206,0.43215734051817734,0.43246901467176113,0.4327809047895798,0.43309301041290466,0.43340533106153123,0.43371786628809417,0.4340306156026741,0.43434357855208844,0.43465675465122705,0.434970143493,0.4352837445412217,0.43559755742745315,0.43591158154426474,0.43622581656560716,0.4365402619688762,0.43685491731906556,0.43716978216530705,0.4374848560165767,0.4378001384355902,0.43811562899969303,0.4384313272194172,0.43874723262298015,0.4390633447756983,0.4393796632538152,0.4396961875674375,0.440012917330915,0.4403298520372381,0.440646991269124,0.4409643345702585,0.4412818815043002,0.44159963162030424,0.44191758449385005,0.4422357396661626,0.4425540967466862,0.4428726551904106,0.4431914146824866,0.4435103747303904,0.4438295349286549,0.44414889481808856,0.4444684540498418,0.44478821204293073,0.44510816846142975,0.44542832295559825,0.44574867912858773,0.44606923808129345,0.4463899939563461,0.44671094638085734,0.4470320949493268,0.44735343910812647,0.4476749785695708,0.4479967128492247,0.44831864158610063,0.44864076423630994,0.448963080540477,0.44928558995469775,0.4496082921250136,0.4499311866651071,0.4502542730935071,0.4505775510081713,0.45090102002990967,0.45122467975031366,0.4515485297014823,0.4518725695430297,0.4521967987649885,0.45252121710907467,0.45284582403690055,0.45317061926601787,0.45349560225912355,0.4538207726919731,0.4541461301584381,0.45447167417974804,0.4547974044415301,0.45512332054209004,0.4554494220664083,0.45577504772667216,0.4561015131910573,0.456428162853104,0.45675499633405214,0.4570820132579908,0.45740921319301964,0.4577365957772848,0.45806416059765365,0.4583919072791567,0.45871983541295497,0.4590479446334034,0.4593762345433737,0.4597047047436898,0.46003335486578306,0.46036218450807204,0.4606911933029658,0.4610203808664626,0.4613497467956424,0.46167929071912045,0.46200901226470836,0.4623389110425621,0.4626689866829302,0.4629992387811247,0.4633296669999426,0.4636602709319969,0.4639910502147353,0.4643220044739533,0.46465313332337976,0.46498443640624554,0.4653159133449272,0.4656475637522272,0.46597938727573074,0.46631138354483054,0.4666435521831641,0.46697589283046387,0.467308405117559,0.46764108867432075,0.46797394312712076,0.46830696813948613,0.4686401633043001,0.4689735283101206,0.46930706276560014,0.46964076629222523,0.46997463858478433,0.47030867922458897,0.47064288788403474,0.470977264202498,0.4713118078149113,0.4716465183683891,0.4719813955243142,0.4723164388995538,0.47265164816286565,0.47298702294355827,0.4733225629034721,0.47365826768561914,0.47399413694596265,0.4743301703307971,0.4746663674832023,0.4750027280621081,0.475339251726717,0.47567593811624115,0.47601278691031407,0.47634979774210584,0.47668697027203066,0.4770243041520786,0.47736179904978315,0.4776994546249136,0.4780372705339156,0.47837524643205537,0.4787133819839166,0.4790516768501259,0.4793901306952541,0.4797287431910954,0.480067513994357,0.48040644275293215,0.48074552915626273,0.48108477286833173,0.4814241735408832,0.48176373085829244,0.48210344448323494,0.4824433140900842,0.4827833393206533,0.4831235199015323,0.4834638554617315,0.4838043456763462,0.4841449902366499,0.48448578881227555,0.4848267410727903,0.4851678466931292,0.48550910535467734,0.4858505167356367,0.48619208050698076,0.4865337963471891,0.48687566395717896,0.48721768299511176,0.4875598531551616,0.4879021740922805,0.4882446455266297,0.488587267115989,0.4889300385501928,0.4892729595371902,0.489616029722302,0.4899592488103329,0.49030261651311147,0.49064613247715194,0.49098979641263923,0.49133360802519804,0.4916775669669591,0.4920216729570181,0.4923659256777915,0.4927103248220208,0.49305487008215076,0.49339956114259614,0.4937443977279679,0.4940893795086678,0.4944345061706224,0.4947797774524041,0.495125193011312,0.4954707525640396,0.49581645580053746,0.49616230242555276,0.49650829214384884,0.49685442464761,0.49720069964022673,0.497547116826477,0.4978936759070254,0.4982403766200972,0.4985872186013346,0.49893420160909224,0.49928132534313313,0.4996285894916347,0.49997599377563656,0.50032353788553,0.5006712215702495,0.5010190444966008,0.5013670063890351,0.5017151069747809,0.5020633459534897,0.5024117230214707,0.5027602379186489,0.5031088903345634,0.5034576800033366,0.5038066066214353,0.5041556699305959,0.5045048696224222,0.5048542054275759,0.5052036770707666,0.5055532842492723,0.5059030266899305,0.5062529041177363,0.5066029162617519,0.5069530628170076,0.5073033435318328,0.5076537581208255,0.5080043062867313,0.5083549877931278,0.5087058023309814,0.5090567496335313,0.509407829428077,0.5097590414555632,0.510110385417906,0.5104618610629904,0.5108134681156852,0.5111652062827111,0.5115170753269804,0.5118690749580806,0.5122212049113399,0.5125734649265884,0.5129258547319546,0.51327837404748,0.5136310226206268,0.5139838001905769,0.5143367064711617,0.5146897412054453,0.5150429041408704,0.5153961950182355,0.5157496135571823,0.5161031594961851,0.5164568325906557,0.5168106325632185,0.5171645591459959,0.5175186121066342,0.5178727911793607,0.518227096087917,0.5185815265871816,0.5189360824193874,0.519290763325319,0.5196455690571533,0.5200004993490621,0.5203555539433385,0.5207107325980664,0.5210660350619072,0.5214214610639031,0.5217770103733982,0.5221326827047825,0.5224884778546258,0.5228443955409077,0.5232004355176874,0.5235565975379182,0.5239128813445781,0.5242692867098835,0.5246258133662477,0.524982461075838,0.525339229599814,0.5256961186680015,0.5260531280643539,0.5264102575259763,0.5267675068085191,0.5271248756767992,0.5274823638842872,0.5278399711841818,0.5281976973388643,0.528555542110237,0.5289135052541408,0.5292715865278304,0.5296297856991898,0.52998810462683,0.5303465431067994,0.5307050991118122,0.5310637724195726,0.5314225627824481,0.5317814699614128,0.5321404937121718,0.5324996337797808,0.5328588899141671,0.5332182619041638,0.5335777494292533,0.5339373523060907,0.5342970702342587,0.5346569029808739,0.5350168503052646,0.5353769119580306,0.5357370876887433,0.5360973772531457,0.5364577804158244,0.5368182968889949,0.5371789264494212,0.537539668867609,0.5379005238748097,0.5382614911942092,0.5386225706149672,0.5389837618514872,0.5393450647021006,0.5397064788836897,0.5400680041083346,0.5404296402000778,0.5407913868276263,0.5411532437853555,0.5415152108853128,0.5418772877893429,0.5422394742628653,0.542601770099459,0.5429641751002928,0.5433266889213477,0.5436893114285125,0.544052042330089,0.5444148813932792,0.5447778284466356,0.5451408832517882,0.5455040455280643,0.5458673151110345,0.5462306917473884,0.5465941752743132,0.5469577654370681,0.5473214619861924,0.5476852647944037,0.5480491735995254,0.5484131882337113,0.5487773084424442,0.5491415340002178,0.5495058648304973,0.5498703006082336,0.5502348411654556,0.5505994863193086,0.5509642358668811,0.5513290895989322,0.5516940473412043,0.5520591089401623,0.5524242740666961,0.5527895426336257,0.5531549144334609,0.5535203892483352,0.5538859668855676,0.554251647194517,0.554617429957959,0.5549833149998955,0.5553493020690352,0.5557153910406311,0.556081581695717,0.5564478738585598,0.5568142673612282,0.5571807619374298,0.557547357466415,0.5579140537570239,0.5582808505640451,0.5586477478439844,0.5590147451942885,0.5593818426297938,0.5597490398004749,0.5601163366489635,0.560483732896118,0.560851228382935,0.5612188229686403,0.561586516403213,0.561954308508847,0.5623221992081303,0.5626901881223467,0.563058275218331,0.5634264602415683,0.5637947429737424,0.5641631233462419,0.5645316010841932,0.5649001760021818,0.5652688479800787,0.5656376167728157,0.5660064821994008,0.5663754440954929,0.5667445022678786,0.5671136565291801,0.5674829067327395,0.567852252613158,0.5682216940546533,0.568591230848173,0.5689608628218259,0.5693305897717933,0.5697004115385552,0.5700703279609852,0.5704403387675436,0.570810443876235,0.5711806430549676,0.571550936103027,0.5719213228781622,0.5722918031992973,0.5726623768773056,0.5730330437023475,0.5734038035247201,0.5737746561276658,0.5741456013714249,0.5745166390746785,0.5748877690482294,0.5752589910483751,0.5756303050335618,0.576001710677155,0.5763732079462144,0.5767447965713478,0.5771164763544315,0.5774882471731985,0.5778601088327493,0.5782320611572456,0.5786041039682375,0.5789762370773147,0.5793484603156437,0.5797207735235109,0.5800931765214906,0.580465669131238,0.5808382511449356,0.5812109224482263,0.5815836828344347,0.5819565321183469,0.5823294701251243,0.5827024967649758,0.5830756117664206,0.5834488149904609,0.5838221062444491,0.584195485424027,0.5845689523066844,0.5849425067179836,0.5853161485191402,0.5856898775158719,0.5860636935575682,0.586437596456425,0.5868115860816964,0.5871856621984065,0.5875598247369946,0.5879340734464014,0.5883084082054068,0.588682828821415,0.5890573351530332,0.5894319270176432,0.5898066042427008,0.5901813666974739,0.5905566718145397,0.5909315892098326,0.591306591779754,0.5916816794584724,0.5920568519758246,0.5924321092200312,0.5928074509450175,0.5931828770616892,0.5935583873050309,0.5939339816395718,0.5943096597752429,0.5946854215280137,0.5950612668845215,0.5954371955099871,0.5958132073167893,0.5961893021430348,0.5965654797359913,0.5969417400365455,0.5973180828409663,0.5976945079679721,0.5980710152322909,0.5984476045651929,0.5988242756582552,0.5992010285167043,0.5995778628172551,0.5999547785016929,0.6003317753640636,0.6007088532538595,0.6010860119638768,0.6014632514143451,0.6018405714220507,0.6022179718073594,0.60259545239854,0.6029730130695291,0.6033506536742127,0.6037283739892801,0.6041061739736369,0.6044840533266014,0.6048620119971103,0.6052400498035745,0.605618166526687,0.6059963621086845,0.6063746363752173,0.6067529890953796,0.6071314202291108,0.6075099295241067,0.6078885168596397,0.6082671821186191,0.608645925109491,0.6090247456874972,0.6094036437053449,0.6097826190087879,0.6101616714622282,0.6105408008935166,0.6109200071768818,0.6112992901130984,0.6116786495798371,0.6120580854687168,0.6124375975635613,0.6128171857494192,0.6131968498825677,0.6135765898453407,0.6139564054164366,0.6143362964619491,0.6147162629404944,0.6150963045779502,0.6154764213124617,0.615856612989309,0.6162373842199187,0.6166176982829812,0.6169980867732123,0.6173785495700849,0.6177590866396634,0.6181396978803164,0.61852038316106,0.6189011425300354,0.6192819758336288,0.6196628830932719,0.6200438642415467,0.6204249193118763,0.6208060482815613,0.6211872511571342,0.6215685279550925,0.621949878674597,0.6223313033546735,0.6227132376773072,0.6230947595842917,0.6234763613623435,0.6238580430525792,0.6242398046715426,0.6246216456597322,0.6250035662127068,0.6253855661184651,0.625767645186085,0.6261498032644824,0.6265320404236945,0.6269143561602067,0.6272967505741205,0.6276792235399892,0.6280617748276452,0.6284444042152147,0.6288271118544361,0.6292098972154238,0.6295927605202607,0.6299757012870442,0.630358238047194,0.6307412727616286,0.6311243785825829,0.6315075553079182,0.631890802630153,0.63227412031651,0.6326575081834397,0.6330409659712963,0.6334244934435347,0.6338080904209316,0.6341917566361409,0.6345754919249521,0.6349592962001939,0.6353431691238732,0.6357271106372185,0.6361111204239585,0.6364946892422949,0.63687880452416,0.6372629874393486,0.6376472379246177,0.6380315558188517,0.6384159410622166,0.6388003934386587,0.6391849128781079,0.639569499299647,0.6399541525769488,0.6403388724811613,0.6407236590177409,0.6411085120462612,0.6414934314232869,0.6418784170336974,0.6422634687863559,0.6426485865533869,0.6430337702360489,0.64341901968428,0.6438043348135156,0.644189715504964,0.6445751616241573,0.6449606730992596,0.645346249765084,0.6457318915647958,0.6461175983698714,0.6465033700606275,0.6468892064607618,0.6472751075792686,0.6476610732594599,0.6480471033558705,0.6484331978216497,0.648819356442765,0.649205579245706,0.6495918660120451,0.6499782166460447,0.6503646310787934,0.6507511092302753,0.6511376508913128,0.6515242559960043,0.6519109244824638,0.6522976562276005,0.6526844510722539,0.6530713089261971,0.6534582297265913,0.6538452133281012,0.6542322596206442,0.6546193685343688,0.6550065398894842,0.6553937736890384,0.655781069709218,0.6561684279098076,0.6565558482060599,0.6569433304523195,0.6573308745851528,0.6577184803814294,0.6581061479693512,0.6584938770095743,0.6588816674805391,0.6592695192728818,0.659657432295178,0.6600454065058372,0.6604330285950786,0.6608211144303695,0.6612092608389974,0.6615974677531268,0.6619857350074042,0.6623740625282497,0.6627624502225791,0.6631508979321283,0.6635394056154255],\"y\":[0.7089767392545219,0.7089571966766195,0.7089657902543423,0.7085895844207774,0.7075697374721271,0.7065457349294276,0.7055270658456354,0.704506137804212,0.7034818827763824,0.7024538372607431,0.7014221800304024,0.7003914529014197,0.6993609178239518,0.6983304546934969,0.6973000674554332,0.6962697570423902,0.695239522874558,0.6942093614308941,0.6931792672618623,0.6917211269008318,0.6907153235311011,0.6897094883525325,0.6887035810203262,0.6876975630072487,0.686691397731728,0.6856850436638603,0.6846784622050566,0.6836716042940402,0.6826685457854179,0.6816591228956604,0.6806421102754326,0.679600867769821,0.6785467715471776,0.6774892875773408,0.676429037554458,0.6753752372045759,0.6743290472233749,0.6732825882239367,0.6726123825495978,0.6715841617060293,0.670555887150515,0.6695275514058197,0.6684991592746382,0.6674707048557883,0.66644218927471,0.6654136134172252,0.6643849754452817,0.6633562750409262,0.6623275121878437,0.6612986836476922,0.6602697932242991,0.6592408387232923,0.6582118201204152,0.6571827378084913,0.6561535948970926,0.6551243832311883,0.6540951102189092,0.6530657768246975,0.652036379001121,0.6510069179556519,0.6499773984626239,0.6489478170800903,0.647918173298592,0.6468884717840778,0.6458587133899547,0.6448288953925588,0.6437990225021751,0.6427690892172391,0.6417391025210127,0.6407090599285682,0.6396789676161104,0.6386488204467543,0.6376186243575844,0.6365883718073885,0.6355580761367012,0.634527729367617,0.6334973341408625,0.632466897276747,0.6314364122455994,0.6304058861208843,0.6293753127600755,0.6283446975199085,0.6273140453322261,0.6262833522300096,0.6252526211256261,0.6242218531486011,0.6231910499020518,0.6221602134528103,0.6211293396359796,0.6200984370284689,0.6190674991084156,0.6180365323430984,0.6170055389146529,0.61597451320628,0.6149434637468612,0.6139123873520855,0.6128812863124629,0.6118501617723634,0.6108190175849618,0.6097878465764532,0.608756660356247,0.6077254513932563,0.6066942206503214,0.6056629768170397,0.6046317183983746,0.6036004441122846,0.6025691493019575,0.60153784514092,0.600506521749985,0.5994751926177809,0.5984438511083807,0.5974125044023322,0.5963811405506464,0.5953497712481866,0.5943183930512528,0.593287009844841,0.5922556179514875,0.5912242228416427,0.5901928254829119,0.5891614200173868,0.5881300118275129,0.5870986004279644,0.5860671825576266,0.5850357701277931,0.5840043506533513,0.5829729338287316,0.5819415241064444,0.5809100980883355,0.5798786831856124,0.5788472719367526,0.5778158591749148,0.5767844478556984,0.5757530385018074,0.5747216302078213,0.5736902284167412,0.5726588295305645,0.5716274342214067,0.5705960443412831,0.5695646573242383,0.5685332719711124,0.5675018964114902,0.5664705220151013,0.565439150651039,0.5644077845731272,0.5633764267952488,0.5623450747817595,0.5613137260118789,0.5602823764014703,0.5592510380516221,0.5582197056910305,0.5571883756588255,0.5561570512683157,0.5551257287830752,0.5540944116929599,0.5530631016535188,0.5520317904374268,0.5510004912897912,0.5499691865023608,0.5489378924238031,0.5479065946676223,0.5468753064763104,0.5458440193568957,0.5448127304041471,0.5437814463077619,0.5427501590089684,0.5417188748412366,0.5406875982322706,0.5396563131281222,0.5386250319029835,0.5375937429700004,0.5365624625776728,0.5355311745868285,0.5344998794572438,0.5334685899731075,0.5324372932715145,0.531405989067102,0.5303746863564838,0.5293433701631792,0.528312053373918,0.5272807301579997,0.5262493956872195,0.5252180543592054,0.5241867064300425,0.523155343603472,0.5221239724604775,0.5210925921975359,0.5200611990529912,0.5190297911364244,0.5179983712576418,0.5169669370852615,0.5159354877348683,0.5149040243961707,0.5138725360970022,0.5128410347432378,0.5118095124722795,0.5107779734174094,0.5097464197414254,0.5087148370245858,0.507683238599249,0.506651606207337,0.505619959517804,0.5045882849405238,0.5035565895423235,0.5025248659563506,0.5014931144859032,0.5004613284758023,0.49942952336742596,0.4983976819003995,0.4973658060449095,0.49633390669917504,0.4953019718327636,0.49427000566789236,0.493238000031442,0.49220595328081207,0.4911738837878897,0.49014177746570703,0.4891096340626225,0.48807743707187357,0.4870452118830822,0.4860129496878674,0.4849806547410803,0.4839483128400573,0.48291592789678295,0.4818835005428768,0.480851024478217,0.4798185191418784,0.4787859779025989,0.47775336360837417,0.476720725508527,0.4756880466715119,0.47465532766372387,0.4736225623474728,0.4725897470765551,0.4715569023465745,0.47052400554894075,0.4694910773265293,0.4684580977439907,0.4674250852593481,0.4663920500861342,0.465358957805372,0.46432583525907634,0.46329269104274023,0.46225950530161897,0.4612262977611097,0.4601930640308586,0.4591598079691887,0.4581265371941984,0.4570932554332864,0.45605994595804245,0.45502664403617277,0.4539933491073795,0.45131826967445277,0.45029974232612413,0.4492817502177594,0.44826432022969714,0.447247397499591,0.4462310729657184,0.4452153399076505,0.44420026464972234,0.4431858246885119,0.4398856944179644,0.4389186561078946,0.43795277381854825,0.43698806357102815,0.4360245601210724,0.4341628292878161,0.4332366748277664,0.4323114923403066,0.43138726854140647,0.4304640105754605,0.42954170691913796,0.4286203602872183,0.42769996210094047,0.4267804994205925,0.4258619753419218,0.4249443711505777,0.4240276755828259,0.423111888323142,0.42219698483952156,0.42104646469704426,0.4201512993544355,0.4192567727083697,0.41836286941565,0.4174695718922255,0.4165768612495159,0.4156847070901005,0.41479309602623415,0.4139020001333705,0.41301139528278863,0.41212125010483186,0.41123153915129346,0.41034223221770294,0.4094532968748771,0.40856470635268805,0.40767641486071565,0.4067883882602168,0.40590059672255663,0.40501299003907676,0.4041255319766913,0.4032381759831361,0.4023508803230484,0.4014635958924888,0.4005762699851483,0.3996888531467222,0.39880129664249087,0.39791354227358516,0.39702553539723745,0.3961372112242843,0.39524851675714684,0.39435939092887096,0.3934697607012584,0.3925795703093626,0.39168874687046157,0.39079722767758646,0.38990493717582214,0.3890118021205802,0.388117756897124,0.38722272124112544,0.386326627322384,0.3854293897894452,0.3845309329091592,0.38363118332053947,0.38273005046065317,0.3818274625723994,0.38092333472788525,0.38001757204965103,0.3791100987346752,0.37820081336443667,0.37728963675338634,0.3763764671975586,0.3754612030040323,0.3745437384962244,0.37362396145625054,0.37270175720962795,0.3717769956958183,0.3708495365933173,0.36991923210568356,0.36898592067823105,0.36804941342147085,0.36710951686134163,0.36616599981507436,0.3652186224992816,0.3631462780996928,0.3621131428358768,0.3610682504625288,0.3600109856630331,0.3564648255303209,0.35535916495587544,0.35424900441836726,0.3531349025359896,0.35201761762952954,0.35089820467029326,0.3497777800621105,0.3486576020027026,0.34753876516035415,0.3464222334074024,0.3453089168788094,0.344199441505916,0.3430944848173848,0.34199471933972975,0.3409009073898988,0.33981393833959755,0.3387349544398314,0.33766509359374725,0.33660535697765315,0.33555648463523985,0.3345186138302365,0.33345560149677494,0.33237858014737603,0.3313096932254914,0.33025089048277184,0.32920115843155817,0.3281582821029827,0.3271201166433038,0.3260851500139108,0.3250523428047346,0.3240210347289075,0.3229908092987245,0.3219614612096994,0.32093280985342193,0.3199047679724778,0.3188772691045383,0.3178502664262846,0.31682370295348206,0.3157975699824983,0.31477183249085977,0.31374647358229674,0.31272147527327954,0.3116968017150366,0.3106724698474461,0.3096484292304844,0.30862465959694046,0.3078009963770043,0.30674031912963606,0.30568117434396064,0.30462363802172293,0.3035676471251485,0.3025131056163003,0.30146021082245067,0.300408745162546,0.29936161640789966,0.2983156667132981,0.2972705685037794,0.2962264745893044,0.2951833003296353,0.29414115277679337,0.2930999428718587,0.2920596185714697,0.2910202478789362,0.2899817628452422,0.28894416337411255,0.28790749386343517,0.2868716471521128,0.2858366996990433,0.2848025409716199,0.28376921862829557,0.28273657564150023,0.281704775871498,0.28067359180208573,0.279643178260581,0.27861341102302967,0.2775842971682839,0.2765558580751811,0.2755279192100676,0.2745006104941261,0.2734737162923684,0.2724474357415619,0.27142162392185215,0.27039614056538214,0.26937116749801243,0.26834655196817125,0.26732232929507505,0.2662983810278618,0.2652747302541005,0.2642513611685975,0.2632282060646814,0.2622053748897104,0.261182595563527,0.2601600975677824,0.2591376611424118,0.258115340434611,0.2570931078915513,0.2560708814002684,0.2550488122636216,0.2540266540674844,0.2530045264751511,0.25198242025737766,0.2509601069751115,0.24993786689421227,0.24891533990576536,0.24789282883202712,0.24687006786453417,0.245847191186227,0.24482413220677807,0.2438008112995245,0.24277729234327133,0.24175355350196256,0.2407296160925189,0.23970536781441135,0.23868077486875905,0.2376560530425816,0.23663098077609582,0.23560573676363977,0.2345803084930354,0.23355467354265394,0.23252909158766147,0.23150336751247888,0.23047782587848742,0.2294525736696102,0.22842770604650836,0.22740354069005453,0.22638020825418836,0.2253580005702483,0.22433723412781498,0.22331812659495592,0.22230123748503727,0.22128652609140317,0.2202744124038341,0.21926502282845667,0.21825851962016163,0.217254848753725,0.21625379689172514,0.21525521369252987,0.2142586200176889,0.21326339732467972,0.21226916268057214,0.21127509179830634,0.2102805693947299,0.20928500618570695,0.20808160777901852,0.20707476287732882,0.2060701565158926,0.20506759795205398,0.20406657973632045,0.20306651264135103,0.20206642847373135,0.20124813876674327,0.20023744832275864,0.19922750406294273,0.19820957193915165,0.19724918344833842,0.19618447952764442,0.19511878604664773,0.19405214675497406,0.192984496906572,0.19191601450442844,0.19084665712874713,0.18977655919648642,0.18870575095560196,0.18763432458810256,0.18656240434189417,0.18549008673676726,0.18441749391796697,0.18334476006872846,0.18260911043473105,0.18156317051716836,0.18051692341714248,0.1794705160271219,0.17842409792347383,0.1773778308973722,0.17633193786736656,0.17528660827099155,0.17424208485060255,0.17319859068311935,0.17215637354635058,0.17111572101381806,0.17007688291820366,0.16904004894155386,0.168005482192863,0.16697329765871527,0.16594359527478686,0.1649164368847171,0.16389176271040035,0.16218489563544186,0.1611735093327256,0.1601712132593267,0.15917814020970894,0.15819404950667407,0.15721803019607172,0.15624875842818337,0.1552842224699463,0.15432197950600957,0.1533592221023565,0.15239315842081994,0.15142117926162657,0.15044108938667983,0.14906543739789901,0.1481124320382551,0.14717491995562057,0.14629926168983573,0.14538225643956493,0.14441370740391976,0.14382135079408967,0.14264521717104656,0.14152675052625138,0.1404418197917941,0.13937620013445184,0.13832152799141773,0.13727318153800522,0.13622855268112005,0.13518617424165896,0.13414527021169537,0.1331054713524575,0.13206648898220913,0.1310282004235168,0.12999060861296688,0.1289536758064186,0.12791753191720673,0.12688233590015732,0.1258485326172203,0.1248169001918481,0.1237887089466489,0.12276649876068826,0.121754841749139,0.1207617569437139,0.1198009676194221,0.11889528585734843,0.11749210802646756,0.11638771476191649,0.11523144774831975,0.11402495624735236,0.11285198580528708,0.11171805437815474,0.11058472821203001,0.1100889298427375,0.10898538785698202,0.10787369134447886,0.10675594567006111,0.10563452015070866,0.10451197812478431,0.10339077718517388,0.10227316963436667,0.10116092154137027,0.1000554651904536,0.09895775791547247,0.09786828494542398,0.09678719136571076,0.09571437968160112,0.09570180803183481,0.09465912545228246,0.09361846854107296,0.09257993707478936,0.0915435510198039,0.09050927214338436,0.0894770480344811,0.08844673885990498,0.08741821879392371,0.08639131821750524,0.08536592105903432,0.08434181706177382,0.08331886384622005,0.08229687653451967,0.08127574941823956,0.08025528733755719,0.07923541259183581,0.07821596689285136,0.0771968777805759,0.0761780341946348,0.07515938293977978,0.07414078611091893,0.07312226542806995,0.07210370752966469,0.0710850935182761,0.07006637300006123,0.06821974930722649,0.06721778879602612,0.06621567655548029,0.06521340207448709,0.06421091626066239,0.06320812526166283,0.062205031272866744,0.061201572869139034,0.06019778780518258,0.05919355318880745,0.058188928273274314,0.05718391325172981,0.05617843232998999,0.055172503229515946,0.054166154252580534,0.05315933915981738,0.052152065840132676,0.05114436674020289,0.05013622808679678,0.04912765053967298,0.04811863993871966,0.047109249792686575,0.04609940912653785,0.04508917077512134,0.04407854378629281,0.0430675133257931,0.042056150517300536,0.041044403167734146,0.04003234924622935,0.039019914455171494,0.0380071689246735,0.036994095990227606,0.03598075910736831,0.034967096460588994,0.03395313993368141,0.03293893237460671,0.03192446475556294,0.030909772485735818,0.029894815195700617,0.0288796183846911,0.02786421225963446,0.02684858377338304,0.026122008368257253,0.02509717639681297,0.02407003354369484,0.023043066502210163,0.022016315231003357,0.020989709046947816,0.0199632902023094,0.018936993793732728,0.018088254066753053,0.017057619629256036,0.01602690626162292,0.014996044053515387,0.013965133226615824,0.012934157653701515,0.01190315096803705,0.010872185454005819,0.009841219749340586,0.008810241647432484,0.007779322917010809,0.006748391418428344,0.005717610450371013,0.0046867654105893,0.0036560482307050612,0.0026254230246959428,0.001594814398911571,0.0005642448293057053,-0.00046618940809551213,-0.0014966365923031687,-0.00252691843061654,-0.0035572005089688392,-0.004587422723359983,-0.005617540524307597,-0.006647603940217686,-0.0076775616890761905,-0.008707455943551412,-0.009737315753612637,-0.010767095899310367,-0.011796887405069656,-0.012826501576870626,-0.013856133010629242,-0.014885689193785367,-0.015915191261230848,-0.01694468648812754,-0.017974089835361053,-0.01900347645678282,-0.020032844933345867,-0.021062154652012718,-0.022091422164285574,-0.023120642706474445,-0.024149901704529714,-0.025179071562045078,-0.026208296588719784,-0.027237441473390536,-0.028266659228219512,-0.029295805358220794,-0.03032500751806379,-0.031354159834923935,-0.03238335717375445,-0.03341261569164524,-0.034441841176137716,-0.0354711477286678,-0.03650042728303074,-0.03752983970722504,-0.03855926834264416,-0.03958872736970233,-0.040618220212715245,-0.04164781783401665,-0.042677537583505974,-0.0437073276219012,-0.04473716674660905,-0.045767133993358154,-0.04679720951937856,-0.047827437210475804,-0.048857753341082805,-0.04988821502981917,-0.050918799128550025,-0.051949581449743654,-0.05298043056935723,-0.05401150383209454,-0.05504274675343933,-0.056074169359439444,-0.057105787805854714,-0.05813760862352667,-0.05916962189045551,-0.06020185435344425,-0.06123430535015785,-0.06226468473714801,-0.06329219596768472,-0.06431965541866834,-0.06534706423552296,-0.06637442796176994,-0.0674017586914023,-0.06842909267500638,-0.06945642420414125,-0.07048364812254883,-0.07151090603555321,-0.07253810729077385,-0.07356523093567086,-0.07459240908856131,-0.07561953937136938,-0.076646573314334,-0.07767364336598416,-0.07870067392751563,-0.07972769034937827,-0.08075464559860068,-0.08178163062369405,-0.08280858840010193,-0.08383550686904503,-0.08486234942667344,-0.0858892414940691,-0.08691605492194433,-0.0879428850380572,-0.08896971168132801,-0.08999652847676422,-0.09102324626153038,-0.09204996804026873,-0.09307672792586404,-0.09443768104635351,-0.09546686230481545,-0.09649601249100596,-0.0975251500956302,-0.09855428542611243,-0.09958342404128905,-0.10061258897088703,-0.1016416978453132,-0.1026708498013075,-0.10369997981262945,-0.10472910915070577,-0.10575825640739701,-0.10678741213122739,-0.10781651706762586,-0.10884567672930445,-0.10987480368529783,-0.11090395019702012,-0.11193308305377654,-0.11296221042769519,-0.11399132542836288,-0.11502049386154767,-0.11604960656023117,-0.11707873457625105,-0.11810788049522655,-0.11913705338091882,-0.12016614371069402,-0.12119534575355505,-0.12222446467548276,-0.12325363211012058,-0.12428278775817318,-0.12531194833126663,-0.12634110270876742,-0.12737030119098144,-0.1283994371951712,-0.12942864280901675,-0.13045779917895625,-0.1314869859736429,-0.13251616072827077,-0.1335453644070776,-0.1345745658078251,-0.13560375612707498,-0.13663298838881086,-0.13766219501820937,-0.1386913964525196,-0.1397206205693975,-0.14074984985140365,-0.14177908764921776,-0.1428083289051354,-0.14383760488645908,-0.1448668766867245,-0.14589610218830987,-0.1469253879453387,-0.1479546625257964,-0.14898397513335215,-0.1500132379270106,-0.15104254357601807,-0.1520718860614431,-0.15310117632184206,-0.15413052877066302,-0.15515984374451364,-0.15618921658693308,-0.15721854027253276,-0.15824791865842694,-0.1592772906984265,-0.16030667219645128,-0.16133609068337576,-0.16236547331935341,-0.1633948844056791,-0.1644243118390049,-0.16545375035149754,-0.16648322479089933,-0.16751266603993165,-0.16854215107264192,-0.16957160934969567,-0.17060109139283924,-0.17163061931734203,-0.17266013566497823,-0.17368963733584644,-0.174719168566718,-0.17574874751358824,-0.17677829246161944,-0.17780788833097133,-0.17883744721263006,-0.1798670465994993,-0.1808966929942221,-0.1819263097537799,-0.18295595223819405,-0.1839856111109989,-0.1850152435439814,-0.18604492882095994,-0.18707462690264692,-0.1881043641458291,-0.18913407879782104,-0.19016382291427858,-0.19119354546795533,-0.19222331438843418,-0.1932530873477038,-0.1942828803162339,-0.19531269209160823,-0.19634253579328348,-0.19737238116738084,-0.19840220542539083,-0.19943209784738813,-0.20046194967160655,-0.20149187671489371,-0.20252177512443117,-0.20355168202863766,-0.20458163205414426,-0.20561161823458424,-0.2066415658457432,-0.20767155265312234,-0.20870155820869987,-0.20973160031694824,-0.2107616438935,-0.21179166585571563,-0.21282175513328094,-0.2138518096793923,-0.21488191120829658,-0.21591203134640757,-0.21694215028438546,-0.21797230253101058,-0.21900246337008505,-0.2200326460081751,-0.22106282097052013,-0.22209305450848454,-0.22312327554200145,-0.2241534897246021,-0.22518376257361294,-0.2262140228801886,-0.22724432473286188,-0.22827461012615188,-0.22930489514963984,-0.23033523561058827,-0.231365560331069,-0.23239590968584012,-0.23342630468627476,-0.2344566947150731,-0.23548706666591662,-0.23651747163569148,-0.2375478958673882,-0.2385783342616316,-0.23960878191404264,-0.24063927314550115,-0.24166975390634418,-0.2427002295604376,-0.24373073736058717,-0.2447612249744009,-0.2457917475237344,-0.24682228495913788,-0.2478528625913343,-0.2488833905797793,-0.24991398363575737,-0.25094454154381074,-0.25197516328184794,-0.25300576340890063,-0.25403637630120024,-0.2550669535138567,-0.2560976165510773,-0.25712824335916423,-0.2581588636409226,-0.25918951483135916,-0.2602201879801751,-0.2612508484583524,-0.26228153685984207,-0.26331222734396226,-0.2643428805424928,-0.26537359914793496,-0.266404265530856,-0.26743496300528913,-0.2684657044355641,-0.2694964107255394,-0.2705270965190647,-0.27155781056534256,-0.2725885567007607,-0.2736192491785845,-0.27464996690528515,-0.27568072700358714,-0.2767114429908337,-0.27774215063997937,-0.27877287144084,-0.27980362275491594,-0.280834342270583,-0.2818650368447524,-0.28289578915000135,-0.283926517964415,-0.28495719240149725,-0.28598791611327085,-0.2870186283889159,-0.28804933328415777,-0.2890800579409534,-0.2901107628170775,-0.2911414288934707,-0.29217215140329295,-0.29320280507539254,-0.2942335038264559,-0.2952641702346249,-0.29629480850380774,-0.297325474484064,-0.29835612080135887,-0.29938674846196645,-0.3004174178281105,-0.3014480329417528,-0.3024786168245666,-0.3035092327008284,-0.30453982038782357,-0.3055704040184024,-0.30660098308411005,-0.30763157851175915,-0.3086620911360979,-0.30969262359984556,-0.3107231664563143,-0.31175367124754577,-0.3127842101278612,-0.31381468683911623,-0.3148451473047663,-0.31587564684065217,-0.31689909621446355,-0.31791502176711145,-0.31892916783925607,-0.3199416266520798,-0.3209525639442191,-0.32196205112278936,-0.32297021546448584,-0.32397721930421775,-0.3249831072146943,-0.32598804341650783,-0.3269922093673058,-0.32799564308259815,-0.32899851606604735,-0.3300009477998414,-0.3310030755325008,-0.3320049229132764,-0.33300663360100646,-0.3340082624824521,-0.3350099692036515,-0.3360117893080389,-0.33701387497138613,-0.33801621635036044,-0.33901889138418934,-0.34002207993171,-0.3410257333423077,-0.34202994494086325,-0.3430348057479587,-0.34404025366427143,-0.3450465639597077,-0.346053541782568,-0.34706140222712023,-0.3480700776396122,-0.34907955145112357,-0.3500899842075009,-0.35110138299071864,-0.35211364370520043,-0.35312687231592604,-0.35414102769216144,-0.35515611258905516,-0.35617216404847984,-0.35718917760751157,-0.35820709230398046,-0.3592259880400496,-0.36024581948700485,-0.36126653364292344,-0.36228814950389837,-0.36331065407573276,-0.3643339729894542,-0.3653582353920204,-0.3663832902173872,-0.3674091514001832,-0.368435752886846,-0.36946316421738645,-0.3704914014875374,-0.3715202411062663,-0.37254991251862396,-0.37358010955960264,-0.3746111256096792,-0.3756427004229186,-0.3766748766019919,-0.3777076557162548,-0.3787409507907829,-0.379774902017973,-0.3808093183583491,-0.3818442283020395,-0.3828796225190192,-0.3839154688180577,-0.3849517383111013,-0.3859884601271849,-0.3870255711690121,-0.3880630359040045,-0.38910079620824345,-0.3901389783881439,-0.39117753276991246,-0.39221625199363136,-0.39325537670066063,-0.39429470842548364,-0.3953342634594413,-0.3963740505738899,-0.3974140019773192,-0.3984542786711114,-0.3994946703156413,-0.4005352318718541,-0.40157585640210847,-0.4026167385540843,-0.4036576701003399,-0.4046987295121252,-0.4057398870554122,-0.40678105299043016,-0.407822310164657,-0.40886362811535326,-0.4099050166259629,-0.4109464010897832,-0.4119879078508215,-0.41302932608900944,-0.4140707562627104,-0.41511216411352914,-0.41615354276060534,-0.417194917939021,-0.41823620077222445,-0.41927745116901133,-0.42031865180948025,-0.4213597417753899,-0.4224007560293915,-0.4234417883286918,-0.42448265088422393,-0.4255234378653709,-0.4265640496659978,-0.427604667794971,-0.42864512460640136,-0.4296854556402745,-0.4307256422730459,-0.4317657205853772,-0.43280567074192505,-0.4338454196431834,-0.4348850917569354,-0.4359246048487208,-0.43696387529369934,-0.43800308190256243,-0.4390421392372713,-0.4400810552001911,-0.4411197887503621,-0.44215831857790333,-0.4431966874629469,-0.44423495670232416,-0.445273032867874,-0.4463109165276857,-0.44734868090310537,-0.44838616108851165,-0.44942360245425184,-0.4504607645445058,-0.4514978958457743,-0.4525347836025406,-0.45357142476205015,-0.45460805440314767,-0.4556444211772598,-0.45668066455309975,-0.4577166974464792,-0.45875255379333674,-0.4597883434649962,-0.4608238643441789,-0.4618592973232757,-0.4628946022810644,-0.463929742764218,-0.464964637524,-0.46599943496997487,-0.467034118030502,-0.46806871483635054,-0.4691031248484864,-0.4701372892199366,-0.4711714709095999,-0.4722054597500048,-0.4732392177504185,-0.4742730137254454,-0.47530659981468687,-0.47634006867356254,-0.4773733999426661,-0.478406658694306,-0.47943976728846427,-0.48047268776082497,-0.48150565843119914,-0.48253839549664185,-0.4835710416132726,-0.4846036301211687,-0.48563618041345924,-0.4860354634469011,-0.48707613224066715,-0.4881165702219298,-0.48915665070222736,-0.4901964496672262,-0.4912358079050086,-0.49227501990632183,-0.49331386492739765,-0.4943523988933839,-0.4953906585073776,-0.4964285844823846,-0.49746618711652546,-0.49850368271509893,-0.49954079429725334,-0.500577604999781,-0.5016142021702402,-0.5026504568847657,-0.503686524072834,-0.5047223570773365,-0.5057579332536036,-0.5067933403089114,-0.5078284829996559,-0.5088633567587607,-0.5098980763511213,-0.5109325091058591,-0.5119668515358161,-0.5130008585010495,-0.5140347472931824,-0.5150684974610366,-0.5161021060862654,-0.5171355247335566,-0.518168654525677,-0.5192017881603087,-0.5202347417685431,-0.5212675410444486,-0.5223002250116353,-0.5233328132957752,-0.5243652052423793,-0.5253976693203908,-0.5264299162458663,-0.5274622004486128,-0.5284942557212413,-0.529526466882334,-0.5305585203015997,-0.5315906102202906,-0.5326226089484689,-0.5336546309178731,-0.5346867316454443,-0.5357186984813938,-0.5367508601785931,-0.5377831191069556,-0.5388153605436253,-0.5398478224414219,-0.540880392597225,-0.5419129899383396,-0.5429459100724132,-0.5439789433716522,-0.5450121831108911,-0.5460456932517845,-0.5470794596440526,-0.5481134791478924,-0.5491477565301289,-0.5501825623095173,-0.5512175829590912,-0.5522530941967256,-0.5532889847134482,-0.5543252542109273,-0.5553621484033431,-0.556511037140375,-0.5575652144215454,-0.5586196054996442,-0.5596740134931284,-0.5607284623160987,-0.5617828826380299,-0.5628369950141782,-0.5638906910121697,-0.5649438923936474,-0.565996340666696,-0.5670479143692242,-0.5680984954835525,-0.5691477565929725,-0.5701957064510039,-0.5712420717313155,-0.5722866390339919,-0.5733293815555071,-0.5757732862544404,-0.5767868856950555,-0.5777996796272862,-0.5788117226305367,-0.5798231321527487,-0.5808336106156302,-0.5818434309826946,-0.5828524759300927,-0.5838608325850788,-0.5848683615279546,-0.5858753629086805,-0.5868815469979534,-0.5878870737807323,-0.5888918760240758,-0.5898959771565383,-0.5908993668305638,-0.5919021722397834,-0.5929043088450129,-0.5939057568445283,-0.5949065230316497,-0.5946683235919197,-0.5956613128422478,-0.5966531932743789,-0.5976441658811115,-0.5986342332348564,-0.599623556844085,-0.6006125123176815,-0.6016009842786036,-0.6025891412150846,-0.6035772220608397,-0.6045651490568107,-0.6055531648815292,-0.6065413847246642,-0.6075296692529829,-0.6085183852420925,-0.6095073030880019,-0.6107750506716494,-0.6117916720841675,-0.6128086846182923,-0.6138261391207508,-0.6148440540236417,-0.6158621406828135,-0.616880678407383,-0.6178995463381006,-0.6189186290484224,-0.6199379457547862,-0.620957529108555,-0.6219772145620244,-0.6229972073225699,-0.6240173998998365,-0.6250376240290185,-0.626058062751648,-0.6270786654142066,-0.6280991968755743,-0.6291200082701185,-0.630140755785623,-0.6311615609060911,-0.6321824586566412,-0.6332033647600528,-0.6342243083059491,-0.6352452096624427,-0.6362660940028199,-0.6372868914522093,-0.6383078368875472,-0.6393285955186812,-0.6403493462308578,-0.6413699401229398,-0.6423905578183816,-0.6434111695824124,-0.6444315326269695,-0.6454519465472808,-0.6464722147261672,-0.6474923812641,-0.6485123558373849,-0.6495323268616514,-0.6505520583922436,-0.6515717275552977,-0.6525912366140496,-0.6536106060997443,-0.6546299123648706,-0.6556489833948497,-0.656667888994563,-0.6576866798017428,-0.6587053009268802,-0.6597237585847914,-0.6607420278453918,-0.6617601134134407,-0.6627781078764123,-0.6637958824294532,-0.6648134985555598,-0.6658309344875122,-0.6668481530313758,-0.6678651639775226,-0.6688820297154389,-0.6698986542525298,-0.6709152112670799,-0.671931495595077,-0.6729474900351795,-0.675053167895313,-0.6760806278339705,-0.6771079752971303,-0.6781351994830754,-0.6791624527767589,-0.6801896014591005,-0.6812166198147159,-0.682243760372732,-0.6832707236463236]}},\"id\":\"7293c5d7-3ff0-4bc5-9e33-9326a59ea296\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"axis_label\":\"Risk\",\"formatter\":{\"id\":\"4b442fee-e37a-4768-a030-72b7c1e2594e\",\"type\":\"NumeralTickFormatter\"},\"plot\":{\"id\":\"9ad12f60-7c08-4216-815d-6c9a0dc5c47c\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"b7ba6968-f149-40c4-a3e5-08e86bf312ea\",\"type\":\"BasicTicker\"}},\"id\":\"27a74617-b55f-413a-b732-8bf8308a3e5e\",\"type\":\"LinearAxis\"},{\"attributes\":{\"label\":{\"value\":\"VALE5\"},\"renderers\":[{\"id\":\"fe00d21f-fa2f-47b7-bf26-759bd515417c\",\"type\":\"GlyphRenderer\"}]},\"id\":\"52fa43de-8eb4-42ff-988d-7e8ca28ab59a\",\"type\":\"LegendItem\"},{\"attributes\":{\"callback\":null},\"id\":\"df29649b-5a3d-4dfb-ac14-e21880fd50ea\",\"type\":\"DataRange1d\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"240518dc-a48c-4bb7-bd8b-b1fd67de2185\",\"type\":\"PanTool\"},{\"id\":\"75807cde-ce38-4843-a683-150089fcd43f\",\"type\":\"WheelZoomTool\"},{\"id\":\"09e2b650-5e5d-4fba-81a4-f65a5aedbc71\",\"type\":\"BoxZoomTool\"},{\"id\":\"24356b87-b8b5-44aa-9d8e-715b2326e4b6\",\"type\":\"SaveTool\"},{\"id\":\"4c894f41-5c9a-4acb-86de-63fa824b86cd\",\"type\":\"ResetTool\"},{\"id\":\"a62d230d-5848-4ab9-b6e0-a0bc6bc1cd58\",\"type\":\"HelpTool\"}]},\"id\":\"cbb2a310-1aa2-41ed-ae9f-a7a41df057fb\",\"type\":\"Toolbar\"},{\"attributes\":{\"plot\":{\"id\":\"9ad12f60-7c08-4216-815d-6c9a0dc5c47c\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"24356b87-b8b5-44aa-9d8e-715b2326e4b6\",\"type\":\"SaveTool\"},{\"attributes\":{\"plot\":{\"id\":\"9ad12f60-7c08-4216-815d-6c9a0dc5c47c\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"a62d230d-5848-4ab9-b6e0-a0bc6bc1cd58\",\"type\":\"HelpTool\"},{\"attributes\":{\"plot\":{\"id\":\"9ad12f60-7c08-4216-815d-6c9a0dc5c47c\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"4c894f41-5c9a-4acb-86de-63fa824b86cd\",\"type\":\"ResetTool\"},{\"attributes\":{\"format\":\"0.%\"},\"id\":\"4b442fee-e37a-4768-a030-72b7c1e2594e\",\"type\":\"NumeralTickFormatter\"},{\"attributes\":{\"label\":{\"value\":\"BBAS3\"},\"renderers\":[{\"id\":\"7eef9b57-a705-4e00-bab3-88edf1e2c58f\",\"type\":\"GlyphRenderer\"}]},\"id\":\"337f28e3-c992-4a88-b3d3-5f3e9c9b06f6\",\"type\":\"LegendItem\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[0.30277732649230255,0.3027773243528187,0.30277732384363676,0.30277732163277865,0.30277776303022685,0.30277883430879293,0.302780533913296,0.30278286209337674,0.30278581968773344,0.3027894074475561,0.30279362577674906,0.3027984730514229,0.3028039498610367,0.30281005622932095,0.3028167921180846,0.30282415748559743,0.3028321522854142,0.3028407764675795,0.3028500299771865,0.3028608141080561,0.3028712951705163,0.30288240513299014,0.3028941438740389,0.30290651126904466,0.30291950718912464,0.3029331315120592,0.3029473841206663,0.30296226491482653,0.3029777414899235,0.3029938718345482,0.30301065495466134,0.30302811364173193,0.30304623908221434,0.30306500753989185,0.30308441761314664,0.30310442567890183,0.3031250236731619,0.3031462495830467,0.30316716047652625,0.3031896124145009,0.30321269152374186,0.30323639766121047,0.30326073067854703,0.3032856904252255,0.30331127674703595,0.30333748948393413,0.3033643284739846,0.3033917935493559,0.30341988454140917,0.3034486012746904,0.3034779435709653,0.3035079112488485,0.3035385041224358,0.3035697220023399,0.3036015646941907,0.3036340320017529,0.30366712372468735,0.3037008396562196,0.3037351795899945,0.3037701433118116,0.3038057306070869,0.3038419412551731,0.30387877503305166,0.3039162317128426,0.3039543110632828,0.3039930128506806,0.3040323368346242,0.30407228277622417,0.30411285042669917,0.30415403953724474,0.3041958498538903,0.3042382811219828,0.3042813330783752,0.3043250054610695,0.3043692979992316,0.30441421042381317,0.30445974245924606,0.3045058938240946,0.3045526642408225,0.30460005341877444,0.3046480610715687,0.30469668690445934,0.30474593061861244,0.3047957919184976,0.30484627049569035,0.3048973660455095,0.3049490782539797,0.3050014068088008,0.30505435139197634,0.3051079116812506,0.3051620873503504,0.30521687807344705,0.30527228351632485,0.30532830334375083,0.3053849372164343,0.30544218479178026,0.3055000457259851,0.3055585196663789,0.3056176062611195,0.3056773051563898,0.3057376159890185,0.3057985383997767,0.3058600720206528,0.305922216479181,0.30598497140628494,0.30604833642326434,0.30611231115398,0.3061768952093662,0.3062420882093875,0.3063078897597447,0.30637429946839495,0.306441316937641,0.30650894177221916,0.3065771735665188,0.30664601191715196,0.3067154564118021,0.3067855066400741,0.30685616218278766,0.30692742262542627,0.306999287545301,0.3070717565165197,0.30714482911118474,0.3072185048986588,0.3072927834420341,0.30736766430592466,0.3074431470481011,0.3075192312229381,0.3075959163923032,0.3076732020943887,0.30775108788367844,0.30782957330211597,0.30790865789058064,0.3079883411895906,0.30806862273011376,0.3081495020452715,0.3082309786659554,0.30831305211655,0.3083957219210329,0.308478987597878,0.30856284866671235,0.30864730463989043,0.3087323550308583,0.30881799934877396,0.30890423709504405,0.308991067776843,0.30907849089087475,0.30916650593750056,0.3092551124129569,0.30934430980243316,0.3094340975981982,0.3095244752872701,0.3096154423535475,0.30970699827611176,0.30979914253077334,0.3098918745960403,0.30998519394453566,0.31007910004222383,0.31017359236000025,0.3102686703612377,0.3103643335085437,0.31046058125829984,0.3105574130684122,0.31065482839635217,0.3107528266890186,0.31085140739618383,0.3109505699653604,0.3110503138366825,0.31115063845899193,0.3112515432619618,0.3113530276897061,0.3114550911680593,0.3115577331331372,0.31166095301591334,0.3117647502357147,0.3118691242197017,0.3119740743917517,0.31207960016684266,0.3121857009657331,0.31229237619957456,0.3123996252815793,0.3125074476205579,0.3126158426211093,0.31272480969466027,0.31283434823755196,0.31294445765518686,0.31305513734168894,0.3131663866926119,0.3132782051039777,0.3133905919666557,0.31350354666845265,0.31361706859338456,0.3137311571312611,0.3138458116685361,0.3139610315750563,0.31407681623519373,0.3141931650200737,0.3143100773088198,0.3144275524718231,0.31454558987341735,0.31466418889434433,0.3147833488865824,0.3149030692203623,0.31502334925511943,0.31514418834757507,0.3152655858640244,0.3153875411532665,0.3155100535680891,0.31563312246521036,0.3157567471915832,0.3158809270931608,0.31600566151621606,0.316130949803125,0.3162567913029028,0.31638318535072496,0.31651013128327665,0.3166376284361527,0.31676567614520607,0.31689427375423,0.31702342057887406,0.31715311595125295,0.3172833591979066,0.31741414965368847,0.31754548663374565,0.31767736946736896,0.3178097974708876,0.3179427699551579,0.31807628624656886,0.31821034567049117,0.3183449475181626,0.31848009111351927,0.3186157757659472,0.31875200078396676,0.31888876547610423,0.3190260691447323,0.3191639110964416,0.31930229063332677,0.31944120705626255,0.31958065966382115,0.3197206477499852,0.31986117062046415,0.32000222756173624,0.32014381786941265,0.3202859408378917,0.32042859575219795,0.32057178190666175,0.32071549858484183,0.3208597450726271,0.32100452065595914,0.32114982462332,0.3212956562468407,0.32144201480735474,0.32158984383294786,0.3217372300261208,0.3218851409565948,0.32203357590123083,0.3221825341856948,0.3223320150465908,0.32248201778448415,0.3226325416542781,0.3227835859623534,0.3229370603329617,0.3230890693157995,0.3232415975523075,0.3233946443443268,0.32354820898740383,0.32370346282137924,0.3238579934898173,0.3240130419825959,0.3241686076309079,0.3243246897384356,0.3244812876327912,0.3246384006207412,0.32479602801661567,0.32495416914820063,0.32511282331629443,0.3252719898425722,0.3254316680374892,0.32559185720917216,0.32575255666707265,0.325914727691033,0.3260764004938663,0.3262385832448004,0.3264012752080624,0.32656447567073454,0.32672818393027286,0.32689239926822783,0.3270571209602987,0.32722234826779084,0.32738808048565976,0.32755431687648695,0.32772105671154717,0.3278882992520387,0.32805604377512143,0.32822428950511806,0.328393035740746,0.328562281701224,0.32873202666292933,0.3289022698485235,0.3290730105148692,0.3292442478993849,0.3294159812303475,0.3295882097511111,0.3297609326698837,0.32993414920904146,0.3301078586092401,0.3302820600549131,0.33045675277183645,0.33063193595728957,0.3308076088108569,0.3309837705278592,0.33116042029213477,0.3313375572895767,0.33151518069465774,0.3316932896905951,0.33187188341871376,0.33205096105644943,0.3322305217614297,0.33241056467087826,0.3325910889321504,0.33277209367524757,0.332953578027278,0.33313554111198723,0.33331798203349444,0.3335008999015651,0.33368429381224235,0.33386816283289045,0.33405250605995546,0.33423732254569527,0.33442261134462337,0.33460837151232015,0.33479460204756556,0.33498130198656684,0.33516847032270813,0.33535610604393756,0.33554420810182933,0.33573277544490066,0.3359218070100361,0.3361113016950343,0.336301258368081,0.33649167589111395,0.33668255306517203,0.3368738886812488,0.3370644969064471,0.33725665592933535,0.33744926159052785,0.33764231212882206,0.33783382405717727,0.3380277220409519,0.3382220681314555,0.3384168616649495,0.3386121021656987,0.3388077894081353,0.3390039232276793,0.3392005035774549,0.3393975303127614,0.3395950031759099,0.3397929217942554,0.3399912855913546,0.34019009394836797,0.34038934620530503,0.3405890417671068,0.3407891801951701,0.3409897612902384,0.3411907850078528,0.34139225140289164,0.3415941605384774,0.3417965123207599,0.34199932874747546,0.34220260076409326,0.3424063118582848,0.342610457334003,0.3428150338148735,0.3430200394063933,0.343225473315414,0.3434313354008855,0.34363762571261713,0.3438443443010811,0.3440514911222102,0.34425906597725364,0.344467068530753,0.3446754983224698,0.344884354830393,0.34509363744823696,0.3453033454871491,0.3455134782759343,0.3457240350812451,0.3459350151373917,0.3461464177124286,0.3463582420144299,0.3465704872717464,0.34678315271778304,0.34699623757573955,0.347210586581127,0.34742447541648697,0.3476387820959812,0.34785350577074675,0.34806864573934926,0.3482842011447443,0.34850017132119354,0.34871655540004803,0.3489333583048664,0.34915057323994797,0.3493681991693539,0.3495862354124306,0.3498046811893453,0.350023535836997,0.3502427985618194,0.35046246859415214,0.35068254519718456,0.35090302761107245,0.3511239151240839,0.3513452069291575,0.35156690227853965,0.35178900043912364,0.3520115006589203,0.35223440216685703,0.35245770414614097,0.35268140595077085,0.35290550668051135,0.3531300056574509,0.3533549021286081,0.3535801952983088,0.35380588441070754,0.35403196867935255,0.3542584474005015,0.3544853196921082,0.35471258494566493,0.3549402423236338,0.35516829093815727,0.3553967302291901,0.35562555930423084,0.3558547774726267,0.3560843839383484,0.35631437793255866,0.35654475868684515,0.35677552546690083,0.35700667751583964,0.3572382140262354,0.3574701343076809,0.3577024375466781,0.35793512303898417,0.35816818998342376,0.35840163766274147,0.3586354653028647,0.3588696721764309,0.35910425751967084,0.3593392206061466,0.35957456064810905,0.3598102769645978,0.36004636874373264,0.360282835334508,0.3605196759163629,0.3607568898427755,0.3609944763223412,0.36123243464580324,0.361470764128541,0.3617094640433732,0.36194853370726404,0.36218797235965045,0.3624277793558541,0.3626679540488767,0.3629084957253959,0.36314940379762645,0.3633906775899151,0.3636323164899829,0.3638743199772792,0.36411668745697545,0.3643594184259437,0.3646025124203911,0.3648459689894583,0.36508978775439926,0.3653339683956985,0.3655785105607277,0.36582341408797425,0.366068678634519,0.3663143040388874,0.36656029002846174,0.3668066362632449,0.36705334230651454,0.36730040758226334,0.36754783132954444,0.3677956124070695,0.36804374956385155,0.3682922411936328,0.3685410853433744,0.36879028007968073,0.36903982310246636,0.36928971220760015,0.3695399451419284,0.36978961856757186,0.37004049206744527,0.3702917075187641,0.3705432630938897,0.3707951569236406,0.3710473871514951,0.37129995180056363,0.3715539783332945,0.37180723596609794,0.37206082513725347,0.3723147441408322,0.3725700377140676,0.3728246014949471,0.3730795040905899,0.3733347449694112,0.3735903235330313,0.373846239330907,0.3741024917926727,0.3743590804323847,0.3746160046628059,0.37487326395672954,0.37513085776772376,0.3753887854965455,0.3756470464932655,0.3759056401009473,0.37616361762925027,0.3764228594860703,0.3766824291325402,0.37694232591712373,0.3772025491779526,0.3774630982633404,0.3777239724903221,0.3779851711798501,0.37824669363915286,0.3785085392014972,0.3787707071691655,0.3790331968570071,0.37929600758038506,0.3795591386642526,0.3798225894330597,0.38008635924293777,0.3803504474373791,0.38061485338806117,0.38087957646770954,0.3811454242861324,0.3814107088754395,0.3816763072007905,0.38194222123998167,0.38220845275601495,0.38247500311823174,0.3827418732046737,0.38300906317355443,0.38327657249959873,0.3835444000624425,0.3838125442855319,0.38408100334229706,0.3843497753501676,0.3846194879642829,0.38488871171424915,0.38515843505760133,0.38542838371022836,0.3856986177479515,0.38596917920917617,0.38624077467286255,0.3865117341287832,0.38678312612987276,0.3870548825443619,0.38732697066464244,0.3875993745155569,0.3878720864968863,0.38814510286659437,0.3884184212750432,0.38869204027520105,0.38896595935368944,0.3892401770455884,0.38951469307488806,0.389789506671088,0.3900646169464628,0.3903400233999206,0.390615725410329,0.3908917227828015,0.3911680156313619,0.3914446042344175,0.3917214913353754,0.3919986838956986,0.3922761973353119,0.3925540651190331,0.3928323568106605,0.3931102447659687,0.3933889117919671,0.3936678972728145,0.3939471758309883,0.39422665315235367,0.394506543786645,0.3947868424560063,0.39506662846321605,0.39534726671196585,0.3956281932239816,0.3959094087925431,0.3961909140913276,0.39647270954792113,0.3967547952002355,0.3970371704779611,0.39731983424894496,0.39760278465430315,0.39788601947996316,0.3981695360168164,0.3984533313411192,0.3987374024232316,0.39902100496211684,0.39930554818335473,0.39959036638481443,0.3998754589423273,0.4001608252329101,0.4004464646553937,0.400732376595833,0.40101856049407947,0.4013050157440968,0.40159174178173135,0.40187873802068785,0.40216600391356166,0.40245353887445573,0.40274134235852654,0.4030294137862049,0.4033177526000768,0.40360635822671204,0.40389523012310485,0.4041843677026083,0.40447377040209476,0.4047634376650065,0.4050533689189541,0.40534356358716495,0.4056340211214602,0.4059247409440657,0.4062157224907431,0.4065076891559769,0.4067991752699334,0.40709092311472145,0.4073829321045538,0.40767520169954985,0.40796773118514085,0.4082605200775493,0.408553567699121,0.40884687350417726,0.4091404366734237,0.40943425680727996,0.40972833322400826,0.4100226652875794,0.41031725233620187,0.41061209382761427,0.41090718910279145,0.41120253761941666,0.4114981387231149,0.4117939918752613,0.412090096377009,0.412386451729136,0.41268305735163113,0.4129799126128925,0.4132770169641743,0.4135743698298863,0.4138719706348937,0.4141698188371442,0.41446791382302295,0.4147662550998678,0.4150648420471019,0.41536367419269254,0.4156627508455756,0.4159620716191275,0.4162616358807775,0.4165614430653072,0.4168614926758092,0.4171617841914102,0.41746231704234077,0.4177630907160721,0.4180641046245153,0.4183653583086878,0.4186668512103023,0.41896761577738995,0.4192695662792992,0.4195717541165296,0.41987417857064563,0.4201768391668176,0.4204797353424812,0.42078286664163617,0.4210862325546253,0.4213885003035549,0.42169231498744586,0.4219963623992954,0.42230064209953017,0.4226051535915755,0.42290989639137566,0.42321487001247626,0.4235200739434664,0.4238255077545718,0.4241311709132678,0.42443706297602224,0.42474318343144324,0.42504953179190025,0.4253561075882796,0.42566291031914405,0.4259699395126862,0.4262771947057729,0.42658467536768724,0.42689238105302535,0.4272003113050577,0.42750846556166544,0.4278168434268336,0.42812544437233135,0.4284342679238929,0.4287433136114045,0.42905258095656673,0.42936206943760885,0.42967177866715245,0.42998170809771075,0.4302918572963152,0.4306022257332925,0.43091281299206424,0.431223618566168,0.43153464197331587,0.43184588280766206,0.43215734051817734,0.43246901467176113,0.4327809047895798,0.43309301041290466,0.43340533106153123,0.43371786628809417,0.4340306156026741,0.43434357855208844,0.43465675465122705,0.434970143493,0.4352837445412217,0.43559755742745315,0.43591158154426474,0.43622581656560716,0.4365402619688762,0.43685491731906556,0.43716978216530705,0.4374848560165767,0.4378001384355902,0.43811562899969303,0.4384313272194172,0.43874723262298015,0.4390633447756983,0.4393796632538152,0.4396961875674375,0.440012917330915,0.4403298520372381,0.440646991269124,0.4409643345702585,0.4412818815043002,0.44159963162030424,0.44191758449385005,0.4422357396661626,0.4425540967466862,0.4428726551904106,0.4431914146824866,0.4435103747303904,0.4438295349286549,0.44414889481808856,0.4444684540498418,0.44478821204293073,0.44510816846142975,0.44542832295559825,0.44574867912858773,0.44606923808129345,0.4463899939563461,0.44671094638085734,0.4470320949493268,0.44735343910812647,0.4476749785695708,0.4479967128492247,0.44831864158610063,0.44864076423630994,0.448963080540477,0.44928558995469775,0.4496082921250136,0.4499311866651071,0.4502542730935071,0.4505775510081713,0.45090102002990967,0.45122467975031366,0.4515485297014823,0.4518725695430297,0.4521967987649885,0.45252121710907467,0.45284582403690055,0.45317061926601787,0.45349560225912355,0.4538207726919731,0.4541461301584381,0.45447167417974804,0.4547974044415301,0.45512332054209004,0.4554494220664083,0.45577504772667216,0.4561015131910573,0.456428162853104,0.45675499633405214,0.4570820132579908,0.45740921319301964,0.4577365957772848,0.45806416059765365,0.4583919072791567,0.45871983541295497,0.4590479446334034,0.4593762345433737,0.4597047047436898,0.46003335486578306,0.46036218450807204,0.4606911933029658,0.4610203808664626,0.4613497467956424,0.46167929071912045,0.46200901226470836,0.4623389110425621,0.4626689866829302,0.4629992387811247,0.4633296669999426,0.4636602709319969,0.4639910502147353,0.4643220044739533,0.46465313332337976,0.46498443640624554,0.4653159133449272,0.4656475637522272,0.46597938727573074,0.46631138354483054,0.4666435521831641,0.46697589283046387,0.467308405117559,0.46764108867432075,0.46797394312712076,0.46830696813948613,0.4686401633043001,0.4689735283101206,0.46930706276560014,0.46964076629222523,0.46997463858478433,0.47030867922458897,0.47064288788403474,0.470977264202498,0.4713118078149113,0.4716465183683891,0.4719813955243142,0.4723164388995538,0.47265164816286565,0.47298702294355827,0.4733225629034721,0.47365826768561914,0.47399413694596265,0.4743301703307971,0.4746663674832023,0.4750027280621081,0.475339251726717,0.47567593811624115,0.47601278691031407,0.47634979774210584,0.47668697027203066,0.4770243041520786,0.47736179904978315,0.4776994546249136,0.4780372705339156,0.47837524643205537,0.4787133819839166,0.4790516768501259,0.4793901306952541,0.4797287431910954,0.480067513994357,0.48040644275293215,0.48074552915626273,0.48108477286833173,0.4814241735408832,0.48176373085829244,0.48210344448323494,0.4824433140900842,0.4827833393206533,0.4831235199015323,0.4834638554617315,0.4838043456763462,0.4841449902366499,0.48448578881227555,0.4848267410727903,0.4851678466931292,0.48550910535467734,0.4858505167356367,0.48619208050698076,0.4865337963471891,0.48687566395717896,0.48721768299511176,0.4875598531551616,0.4879021740922805,0.4882446455266297,0.488587267115989,0.4889300385501928,0.4892729595371902,0.489616029722302,0.4899592488103329,0.49030261651311147,0.49064613247715194,0.49098979641263923,0.49133360802519804,0.4916775669669591,0.4920216729570181,0.4923659256777915,0.4927103248220208,0.49305487008215076,0.49339956114259614,0.4937443977279679,0.4940893795086678,0.4944345061706224,0.4947797774524041,0.495125193011312,0.4954707525640396,0.49581645580053746,0.49616230242555276,0.49650829214384884,0.49685442464761,0.49720069964022673,0.497547116826477,0.4978936759070254,0.4982403766200972,0.4985872186013346,0.49893420160909224,0.49928132534313313,0.4996285894916347,0.49997599377563656,0.50032353788553,0.5006712215702495,0.5010190444966008,0.5013670063890351,0.5017151069747809,0.5020633459534897,0.5024117230214707,0.5027602379186489,0.5031088903345634,0.5034576800033366,0.5038066066214353,0.5041556699305959,0.5045048696224222,0.5048542054275759,0.5052036770707666,0.5055532842492723,0.5059030266899305,0.5062529041177363,0.5066029162617519,0.5069530628170076,0.5073033435318328,0.5076537581208255,0.5080043062867313,0.5083549877931278,0.5087058023309814,0.5090567496335313,0.509407829428077,0.5097590414555632,0.510110385417906,0.5104618610629904,0.5108134681156852,0.5111652062827111,0.5115170753269804,0.5118690749580806,0.5122212049113399,0.5125734649265884,0.5129258547319546,0.51327837404748,0.5136310226206268,0.5139838001905769,0.5143367064711617,0.5146897412054453,0.5150429041408704,0.5153961950182355,0.5157496135571823,0.5161031594961851,0.5164568325906557,0.5168106325632185,0.5171645591459959,0.5175186121066342,0.5178727911793607,0.518227096087917,0.5185815265871816,0.5189360824193874,0.519290763325319,0.5196455690571533,0.5200004993490621,0.5203555539433385,0.5207107325980664,0.5210660350619072,0.5214214610639031,0.5217770103733982,0.5221326827047825,0.5224884778546258,0.5228443955409077,0.5232004355176874,0.5235565975379182,0.5239128813445781,0.5242692867098835,0.5246258133662477,0.524982461075838,0.525339229599814,0.5256961186680015,0.5260531280643539,0.5264102575259763,0.5267675068085191,0.5271248756767992,0.5274823638842872,0.5278399711841818,0.5281976973388643,0.528555542110237,0.5289135052541408,0.5292715865278304,0.5296297856991898,0.52998810462683,0.5303465431067994,0.5307050991118122,0.5310637724195726,0.5314225627824481,0.5317814699614128,0.5321404937121718,0.5324996337797808,0.5328588899141671,0.5332182619041638,0.5335777494292533,0.5339373523060907,0.5342970702342587,0.5346569029808739,0.5350168503052646,0.5353769119580306,0.5357370876887433,0.5360973772531457,0.5364577804158244,0.5368182968889949,0.5371789264494212,0.537539668867609,0.5379005238748097,0.5382614911942092,0.5386225706149672,0.5389837618514872,0.5393450647021006,0.5397064788836897,0.5400680041083346,0.5404296402000778,0.5407913868276263,0.5411532437853555,0.5415152108853128,0.5418772877893429,0.5422394742628653,0.542601770099459,0.5429641751002928,0.5433266889213477,0.5436893114285125,0.544052042330089,0.5444148813932792,0.5447778284466356,0.5451408832517882,0.5455040455280643,0.5458673151110345,0.5462306917473884,0.5465941752743132,0.5469577654370681,0.5473214619861924,0.5476852647944037,0.5480491735995254,0.5484131882337113,0.5487773084424442,0.5491415340002178,0.5495058648304973,0.5498703006082336,0.5502348411654556,0.5505994863193086,0.5509642358668811,0.5513290895989322,0.5516940473412043,0.5520591089401623,0.5524242740666961,0.5527895426336257,0.5531549144334609,0.5535203892483352,0.5538859668855676,0.554251647194517,0.554617429957959,0.5549833149998955,0.5553493020690352,0.5557153910406311,0.556081581695717,0.5564478738585598,0.5568142673612282,0.5571807619374298,0.557547357466415,0.5579140537570239,0.5582808505640451,0.5586477478439844,0.5590147451942885,0.5593818426297938,0.5597490398004749,0.5601163366489635,0.560483732896118,0.560851228382935,0.5612188229686403,0.561586516403213,0.561954308508847,0.5623221992081303,0.5626901881223467,0.563058275218331,0.5634264602415683,0.5637947429737424,0.5641631233462419,0.5645316010841932,0.5649001760021818,0.5652688479800787,0.5656376167728157,0.5660064821994008,0.5663754440954929,0.5667445022678786,0.5671136565291801,0.5674829067327395,0.567852252613158,0.5682216940546533,0.568591230848173,0.5689608628218259,0.5693305897717933,0.5697004115385552,0.5700703279609852,0.5704403387675436,0.570810443876235,0.5711806430549676,0.571550936103027,0.5719213228781622,0.5722918031992973,0.5726623768773056,0.5730330437023475,0.5734038035247201,0.5737746561276658,0.5741456013714249,0.5745166390746785,0.5748877690482294,0.5752589910483751,0.5756303050335618,0.576001710677155,0.5763732079462144,0.5767447965713478,0.5771164763544315,0.5774882471731985,0.5778601088327493,0.5782320611572456,0.5786041039682375,0.5789762370773147,0.5793484603156437,0.5797207735235109,0.5800931765214906,0.580465669131238,0.5808382511449356,0.5812109224482263,0.5815836828344347,0.5819565321183469,0.5823294701251243,0.5827024967649758,0.5830756117664206,0.5834488149904609,0.5838221062444491,0.584195485424027,0.5845689523066844,0.5849425067179836,0.5853161485191402,0.5856898775158719,0.5860636935575682,0.586437596456425,0.5868115860816964,0.5871856621984065,0.5875598247369946,0.5879340734464014,0.5883084082054068,0.588682828821415,0.5890573351530332,0.5894319270176432,0.5898066042427008,0.5901813666974739,0.5905566718145397,0.5909315892098326,0.591306591779754,0.5916816794584724,0.5920568519758246,0.5924321092200312,0.5928074509450175,0.5931828770616892,0.5935583873050309,0.5939339816395718,0.5943096597752429,0.5946854215280137,0.5950612668845215,0.5954371955099871,0.5958132073167893,0.5961893021430348,0.5965654797359913,0.5969417400365455,0.5973180828409663,0.5976945079679721,0.5980710152322909,0.5984476045651929,0.5988242756582552,0.5992010285167043,0.5995778628172551,0.5999547785016929,0.6003317753640636,0.6007088532538595,0.6010860119638768,0.6014632514143451,0.6018405714220507,0.6022179718073594,0.60259545239854,0.6029730130695291,0.6033506536742127,0.6037283739892801,0.6041061739736369,0.6044840533266014,0.6048620119971103,0.6052400498035745,0.605618166526687,0.6059963621086845,0.6063746363752173,0.6067529890953796,0.6071314202291108,0.6075099295241067,0.6078885168596397,0.6082671821186191,0.608645925109491,0.6090247456874972,0.6094036437053449,0.6097826190087879,0.6101616714622282,0.6105408008935166,0.6109200071768818,0.6112992901130984,0.6116786495798371,0.6120580854687168,0.6124375975635613,0.6128171857494192,0.6131968498825677,0.6135765898453407,0.6139564054164366,0.6143362964619491,0.6147162629404944,0.6150963045779502,0.6154764213124617,0.615856612989309,0.6162373842199187,0.6166176982829812,0.6169980867732123,0.6173785495700849,0.6177590866396634,0.6181396978803164,0.61852038316106,0.6189011425300354,0.6192819758336288,0.6196628830932719,0.6200438642415467,0.6204249193118763,0.6208060482815613,0.6211872511571342,0.6215685279550925,0.621949878674597,0.6223313033546735,0.6227132376773072,0.6230947595842917,0.6234763613623435,0.6238580430525792,0.6242398046715426,0.6246216456597322,0.6250035662127068,0.6253855661184651,0.625767645186085,0.6261498032644824,0.6265320404236945,0.6269143561602067,0.6272967505741205,0.6276792235399892,0.6280617748276452,0.6284444042152147,0.6288271118544361,0.6292098972154238,0.6295927605202607,0.6299757012870442,0.630358238047194,0.6307412727616286,0.6311243785825829,0.6315075553079182,0.631890802630153,0.63227412031651,0.6326575081834397,0.6330409659712963,0.6334244934435347,0.6338080904209316,0.6341917566361409,0.6345754919249521,0.6349592962001939,0.6353431691238732,0.6357271106372185,0.6361111204239585,0.6364946892422949,0.63687880452416,0.6372629874393486,0.6376472379246177,0.6380315558188517,0.6384159410622166,0.6388003934386587,0.6391849128781079,0.639569499299647,0.6399541525769488,0.6403388724811613,0.6407236590177409,0.6411085120462612,0.6414934314232869,0.6418784170336974,0.6422634687863559,0.6426485865533869,0.6430337702360489,0.64341901968428,0.6438043348135156,0.644189715504964,0.6445751616241573,0.6449606730992596,0.645346249765084,0.6457318915647958,0.6461175983698714,0.6465033700606275,0.6468892064607618,0.6472751075792686,0.6476610732594599,0.6480471033558705,0.6484331978216497,0.648819356442765,0.649205579245706,0.6495918660120451,0.6499782166460447,0.6503646310787934,0.6507511092302753,0.6511376508913128,0.6515242559960043,0.6519109244824638,0.6522976562276005,0.6526844510722539,0.6530713089261971,0.6534582297265913,0.6538452133281012,0.6542322596206442,0.6546193685343688,0.6550065398894842,0.6553937736890384,0.655781069709218,0.6561684279098076,0.6565558482060599,0.6569433304523195,0.6573308745851528,0.6577184803814294,0.6581061479693512,0.6584938770095743,0.6588816674805391,0.6592695192728818,0.659657432295178,0.6600454065058372,0.6604330285950786,0.6608211144303695,0.6612092608389974,0.6615974677531268,0.6619857350074042,0.6623740625282497,0.6627624502225791,0.6631508979321283,0.6635394056154255],\"y\":[-0.19514105443925026,-0.19513532729353347,-0.19513450490049963,-0.19502677108556032,-0.19472100916933185,-0.19441442959534438,-0.19410180419185727,-0.19378976251476138,-0.193479300659099,-0.19317124603856434,-0.19286586919032353,-0.19255866797029753,-0.1922512012812516,-0.19194361514036565,-0.1916359090818678,-0.19132808459163608,-0.1910201444820885,-0.19071209282727491,-0.1904039347644979,-0.1895486872275997,-0.18924608351055944,-0.18894409707024154,-0.18864280672867398,-0.18834229071136246,-0.1880426252802463,-0.18774388228520197,-0.18744612634399396,-0.1871494123267037,-0.1868819699236461,-0.1865959150652648,-0.18629216343567287,-0.1859618743359081,-0.18560465983888186,-0.18523574964407835,-0.18485622617123396,-0.18450050337725707,-0.18417488840730065,-0.18384915177201697,-0.1842324603409736,-0.1839241945843706,-0.18361585988009133,-0.18330745708300974,-0.1829989862132986,-0.1826904486134077,-0.18238184368101343,-0.1820731724969988,-0.1817644350925071,-0.1814556332065277,-0.18114676648963698,-0.18083783656008154,-0.18052884382254236,-0.18021978968588379,-0.17991067491078386,-0.17960149969559036,-0.17929226597958764,-0.1789829744818983,-0.17867362678162346,-0.17836422268507662,-0.17805476417867558,-0.17774525295086488,-0.17743568869313675,-0.17712607311441694,-0.17681640863090942,-0.17650669462710297,-0.17619693304136433,-0.17588712494659267,-0.17557727219819694,-0.17526737443601323,-0.17495743405428965,-0.17464745273739476,-0.17433743086039652,-0.17402736848799857,-0.17371726837700766,-0.17340713184432635,-0.17309695885991339,-0.17278675247752553,-0.17247651221735144,-0.17216623873086187,-0.17185593495762638,-0.17154560083669704,-0.17123523838932955,-0.1709248480631085,-0.17061443117572134,-0.17030398821319956,-0.16999352223673767,-0.16968303298290993,-0.1693725220099128,-0.16906198998046684,-0.16875143873128035,-0.1684408678949372,-0.16813028060973395,-0.1678196769936483,-0.16750905707925814,-0.16719842481213518,-0.1668877783535403,-0.16657712140767694,-0.16626645235359036,-0.1659557748607313,-0.16564508834709224,-0.1653343936971738,-0.16502369324469282,-0.16471298718138855,-0.16440227782083203,-0.16409156455129353,-0.1637808478234551,-0.16347013242397687,-0.1631594154611478,-0.16284870139813076,-0.1625379890434406,-0.16222727848021468,-0.16191657291304506,-0.1616058722785438,-0.16129517860073414,-0.1609844913338436,-0.16067381204590134,-0.16036314266593432,-0.1600524835452421,-0.15974183559587488,-0.15943119890921317,-0.15912057581442438,-0.15880996663913613,-0.15849937313104187,-0.15818879482205334,-0.15787823255995392,-0.15756768958646047,-0.15725716471178897,-0.15694665793764234,-0.15663617218536446,-0.1563257080096604,-0.15601526406370908,-0.1557048446413745,-0.1553944492714138,-0.15508407706864197,-0.1547737315764055,-0.15446341137333086,-0.15415311708266857,-0.15384284979410853,-0.15353261157561873,-0.15322240297892176,-0.15291222361307477,-0.15260207502429696,-0.1522919567724707,-0.15198187016371315,-0.15167181658645587,-0.1513617958560917,-0.15105180824650596,-0.15074185566272544,-0.15043193749327988,-0.15012205613723276,-0.1498122097015576,-0.1495023993688515,-0.14919262640327693,-0.1488828919054973,-0.14857319578458897,-0.14826353712170662,-0.14795391905253727,-0.14764434356127953,-0.1473348055633306,-0.14702530586948936,-0.14671585125654443,-0.146406436272826,-0.14609706491043245,-0.14578773497634387,-0.1454784500472628,-0.14516921066371605,-0.14486001001720272,-0.1445508563400917,-0.1442417463336688,-0.14393268439325643,-0.14362366474803404,-0.14331469156296348,-0.14300576709962362,-0.1426968869781885,-0.14238805566088883,-0.14207927073203822,-0.14177053616280708,-0.14146184651494934,-0.14115320866916586,-0.14084461712765592,-0.14053607444839955,-0.1402275821862555,-0.13991914357100455,-0.13961074896168504,-0.13930241204477062,-0.13899412293977564,-0.13868588303444504,-0.1383776985478434,-0.13806956718683164,-0.1377614838372531,-0.13745345564852837,-0.13714548548528585,-0.13683756806761874,-0.13652970044427587,-0.1362218882259178,-0.13591413316119827,-0.135606436356066,-0.13529879228534472,-0.13499120491547933,-0.13468367721995983,-0.13437620619081583,-0.13406879102794844,-0.13376143743730567,-0.13345414474546388,-0.13314691286359456,-0.1328397359530224,-0.13253262959163445,-0.13222557758215844,-0.13191859045499763,-0.13161166797213622,-0.13130480367410793,-0.13099801068411637,-0.13069128950755193,-0.13038462291185793,-0.13007803277598703,-0.12977150754905412,-0.1294650528693403,-0.1291586744103416,-0.12885236143148537,-0.12854611998016266,-0.12823995556150647,-0.1279338722680684,-0.12762786009225438,-0.1273219300501113,-0.12701607258859277,-0.12671030579013343,-0.1264046173699912,-0.12609901425566775,-0.12579349188034364,-0.12548806509975688,-0.12518272659268348,-0.12487747242257471,-0.12457231842481926,-0.12426726593447636,-0.12396229836227185,-0.12365744492617785,-0.12335268005247946,-0.12304803168266842,-0.12274348606886125,-0.12243904797875206,-0.1221347300131877,-0.12183052430587754,-0.1215264313161813,-0.12122247087859339,-0.12091862380034574,-0.12061491484287834,-0.12031133819196708,-0.12000789058395572,-0.11970458160001864,-0.11940141997736906,-0.11909840172718285,-0.11879553467931746,-0.1179623893802401,-0.11767653100177632,-0.11739086011930247,-0.11710537308717194,-0.11682007086668846,-0.116534941566494,-0.11624998274905561,-0.11596517187833015,-0.11568051647184657,-0.11529543817419832,-0.11502372270114399,-0.11475166012118063,-0.11447923654016737,-0.11420642471356705,-0.11416495972747089,-0.11388447944857406,-0.113603264702415,-0.11332131020457312,-0.1130385765106974,-0.11275505881515976,-0.11247071830807605,-0.11218554217412056,-0.11189950860848272,-0.11161258759604575,-0.11132476063634456,-0.11103600191844505,-0.11074629117282223,-0.11045559770952205,-0.11089117710776752,-0.1105845387772455,-0.11027695221673532,-0.10996838413220833,-0.10965881931091995,-0.10934823299619637,-0.10903661355431317,-0.108723928659848,-0.10841015854814978,-0.10809528753164409,-0.1077792838827061,-0.10746213245230239,-0.10714380513720327,-0.10682428909364174,-0.10650354151327254,-0.10618156294237954,-0.10585830777111757,-0.10553377242766648,-0.10520792514293616,-0.1048807448462279,-0.10455221382163922,-0.10422230552609735,-0.10389100689417372,-0.1035582905012584,-0.1032241348461439,-0.1028885350097141,-0.10255146028677584,-0.10221290004037963,-0.10187284302319771,-0.10153127909463283,-0.10118818313686438,-0.10084356501831787,-0.10049740049755405,-0.1001496986373757,-0.09980045123349615,-0.09944965136768034,-0.09909730886240227,-0.09874343447430756,-0.09838802790791318,-0.09803110346873849,-0.09767267448304365,-0.09731275696007823,-0.09695137286665026,-0.09658854947596322,-0.09622430694619283,-0.09585867581492158,-0.0954916759213019,-0.0951233534602283,-0.09475373334744205,-0.09438285647404625,-0.0940107535918185,-0.09363744712406431,-0.09326298286002245,-0.09288738924756283,-0.09251069648199552,-0.09213291571140207,-0.09175408094207303,-0.09137419622726406,-0.09099328391185034,-0.09061134411656632,-0.09022837205654448,-0.08984436202815221,-0.08945930972845195,-0.08893982587896694,-0.0885593609171839,-0.08818008886449885,-0.08780257885148697,-0.08821534023372475,-0.08790167445025246,-0.08759419338380102,-0.0872931968746918,-0.08699882398634141,-0.08671100343507053,-0.08642955646773731,-0.0861541893027938,-0.08588461496143508,-0.08562061416089958,-0.08536203431803391,-0.08510893308174251,-0.08486140343498208,-0.08461959281314957,-0.08438356711755085,-0.08415308193597376,-0.08392748424393029,-0.08370563103298623,-0.08348584321424506,-0.08326599182399816,-0.08304363610493859,-0.08272243270704834,-0.08234413198679051,-0.0819731354492056,-0.08161785906526324,-0.08128004712480613,-0.0809578081058481,-0.08064796089580936,-0.08034726927330352,-0.08005304569534566,-0.07976314153682286,-0.07947599233027072,-0.07919045371824035,-0.07890574525627145,-0.0786213093912143,-0.07833676181789052,-0.07805185231348985,-0.07776645878384925,-0.07748044343780851,-0.07719376424947096,-0.07690640912809142,-0.0766183473086133,-0.07632961514776768,-0.07604021329699694,-0.07575015183138532,-0.07545943856272534,-0.07388566543433844,-0.07361854580878353,-0.07335101028801674,-0.07308307699800849,-0.07281471013108069,-0.07254595264682365,-0.07227670496919404,-0.0720070171086658,-0.07172942154784273,-0.07145155387366439,-0.07117370053582717,-0.0708958009996018,-0.07061782032530826,-0.07033967082295507,-0.07006133345124846,-0.06978282291090726,-0.06950408254118406,-0.06922511035916382,-0.06894582282401131,-0.06866623069653528,-0.06838634435877612,-0.06810608076692434,-0.06782539234684196,-0.06754428433571329,-0.06726281006720944,-0.06698082042075656,-0.06669845477394791,-0.0664155923706426,-0.06613218533438567,-0.06584828741508694,-0.0655638607801876,-0.06527891389928255,-0.06499338124359012,-0.06470739384468892,-0.06442071341264431,-0.06413342324409899,-0.06384572701588093,-0.06355730303004038,-0.06326834291400579,-0.06297870934800451,-0.0626884809311888,-0.062397606630903685,-0.06210612963146739,-0.0618140226459143,-0.0615212690080537,-0.061227849257962076,-0.06093372841710262,-0.060638998357674494,-0.060343555380846056,-0.060047424554413004,-0.05975060113973303,-0.05945300916465868,-0.05915469503346386,-0.05885560886610302,-0.0585557119854766,-0.058255059270932975,-0.057953494180717366,-0.05765112181060545,-0.0573477332577425,-0.05704345745452093,-0.05673809817773911,-0.056431690413898325,-0.056124112289363134,-0.055815253393638485,-0.055505015276736916,-0.05519329232739415,-0.05488006119117602,-0.05456506735666228,-0.054248120974327546,-0.0539291278675136,-0.05360774869252976,-0.05328385647991185,-0.05295718796174317,-0.05262732292187205,-0.05229408120656832,-0.05195701248535462,-0.05161575629338694,-0.05126999057734922,-0.050919293341713155,-0.05056326665006557,-0.0502016768449737,-0.04983406295657668,-0.04946045934990887,-0.049080655223211825,-0.04869484476380696,-0.04830330077183142,-0.04790662313152688,-0.04750556303820002,-0.047101106502309475,-0.04669464893080847,-0.04628757451841357,-0.04588150259943032,-0.04547816176873837,-0.045079063631296434,-0.044685801348816986,-0.044299663552286664,-0.04392172344929813,-0.044797864597518736,-0.04444042307296291,-0.044090484004434015,-0.04374977755263881,-0.04342017633041671,-0.043103711664879515,-0.042802951983925815,-0.04122843826861625,-0.040928628411101536,-0.040635145304041186,-0.04034818936970161,-0.03971959634545043,-0.039461100580470546,-0.03920362619211299,-0.038947244579813356,-0.03869199734533234,-0.038437923383252665,-0.03818507582367854,-0.03793347683566847,-0.037683130192708525,-0.03743403342034524,-0.037186137480318675,-0.03693939567366983,-0.03669371085778008,-0.03644894346925681,-0.03616724002841169,-0.03589052104212517,-0.03561376748345282,-0.03533692550439612,-0.03505995035772141,-0.03478279204544035,-0.03450539098700268,-0.03422769195814704,-0.033949631627312696,-0.03367114276943856,-0.03339216512846288,-0.03311262941761155,-0.03283248148536657,-0.032551683370757964,-0.03227020589016521,-0.031988031673278884,-0.031705192474156166,-0.03142172759138098,-0.03113771396630799,-0.03113629159302751,-0.030815291716965513,-0.030489491857288126,-0.030160217723622176,-0.029828953212487245,-0.029497357038941525,-0.02916712328879918,-0.028839847055537465,-0.028516943764552428,-0.02819948714479024,-0.027888134410687437,-0.027583088705147238,-0.027284108843698668,-0.02727883345992528,-0.026848715429878683,-0.026603776398961013,-0.02626703701476809,-0.02589160087051953,-0.025530259928283578,-0.025489598776932933,-0.025008306751975545,-0.024596989780204224,-0.024236026665838465,-0.02391009103013932,-0.023607832206150443,-0.023321185961159657,-0.023044639430412323,-0.022774542870940814,-0.02250858655625603,-0.02224530137270998,-0.021983921325956918,-0.02172401234141093,-0.021465529577375422,-0.021208709347265868,-0.02095415705044203,-0.020702904502685738,-0.020456706161979903,-0.02021833301777441,-0.01999195326012079,-0.019783725453509853,-0.019602478832921908,-0.019460329469406668,-0.019373337605656824,-0.019361539301420087,-0.018612474879247814,-0.018459435826184967,-0.01832786356269445,-0.018169991736345988,-0.01788088345995037,-0.017753495231615776,-0.017713825315256393,-0.016632462124815006,-0.016394988834968056,-0.016165923502903926,-0.01594523927772846,-0.015732434974844667,-0.015526584738283077,-0.015326425426422504,-0.015130391969063186,-0.014936777852352735,-0.01474381026404765,-0.014549805199922232,-0.01435319389929804,-0.014152605889163448,-0.013946893773642464,-0.012668590517585607,-0.01239382407534416,-0.012118566745282083,-0.011842709502255173,-0.011566166455865211,-0.011288880761597448,-0.011010824103597612,-0.010732008787990781,-0.010452424636151387,-0.010172113446339457,-0.009891100513119195,-0.00960944076919073,-0.009327171076097339,-0.009044357685637262,-0.00876103647793512,-0.00847725509900359,-0.008193060622165455,-0.007908506842677762,-0.00762361341125,-0.007338416808189269,-0.007052962394919271,-0.006767253920843984,-0.006481317611063372,-0.006195179224157295,-0.005908849839274232,-0.005622334467820787,-0.006483664513016952,-0.006181255232346032,-0.005879269199891873,-0.005577725541654957,-0.005276702874463498,-0.00497621563580371,-0.004676321747478128,-0.004377003872493279,-0.00407828885846229,-0.003780166984157172,-0.0034826622959170574,-0.0031857442377866765,-0.002889425938371204,-0.002593665158466386,-0.0022984703145824655,-0.002003800673912255,-0.0017096777639351067,-0.001416040911064972,-0.0011229066904316553,-0.0008302116666471585,-0.0005379720987460672,-0.00024614365689473033,4.527044092662944e-05,0.0003363127072642316,0.000626987020679746,0.0009173180071715865,0.0012073316909055592,0.0014970442644308395,0.0017864661400886286,0.0020756155669717554,0.00236449036032381,0.0026531660560645404,0.002941600321866248,0.0032298099620447123,0.003517838076296782,0.0038056886559397016,0.004093348745753749,0.004380864618816328,0.0046682198973759335,0.004955443335288965,0.0052425363546631815,0.005529504747958533,0.006879475394622503,0.007174662115916192,0.007470100884373712,0.007765883706695705,0.008061998100155307,0.00835844682559884,0.008655197057769142,0.008952227149660088,0.010976258881066178,0.011281250718675863,0.011586828030832491,0.011892793810470037,0.012199196830750311,0.012505992839164648,0.01281313359733151,0.013120652762519421,0.013428447932703385,0.013736541596631985,0.014044878814254348,0.01435348248732875,0.014662328046246544,0.014971367600584703,0.015280632018258935,0.015590095385837534,0.015899711328684594,0.016209533423377248,0.0165194574830555,0.016829501271708937,0.017139784278355975,0.017450106507361153,0.017760594214945778,0.01807119866031877,0.018381918147455267,0.01869271936959322,0.0190037044547382,0.019314713655834446,0.019625866053900102,0.019937040666962842,0.020248403015193726,0.020559814510212927,0.0208713006290425,0.021182915601757474,0.021494542096850165,0.021806293754082294,0.02211812574743449,0.022430033157065994,0.02274200908315392,0.023054108433748086,0.023366231180439113,0.023678440828318534,0.023990722521416295,0.024303138087468472,0.02461555896011777,0.02492810344311002,0.025240642686523068,0.025553351431877157,0.025866093876573418,0.026178925493030813,0.026491781001116772,0.0268047624043891,0.027117781511307188,0.027430900643411513,0.0277440228066579,0.028057249321061264,0.02837054651689749,0.028683937058618058,0.028997362475170357,0.029310873238051018,0.029624348081134975,0.02993797622993983,0.030251596672264226,0.030565277872985935,0.030879007579476536,0.03119277386234598,0.0315065816569365,0.031820423061501554,0.03213422189922614,0.03244818187744083,0.03276206711459558,0.03307597047694167,0.03338988245710792,0.033703809600462056,0.03401766338667996,0.03433155903996487,0.0346454543290194,0.0349592399124993,0.03527152833015047,0.035581789239563816,0.03589212952257924,0.03620244564796416,0.036512750498719646,0.036823121409348604,0.037133506685608456,0.03744387488529964,0.03775429195472059,0.03806475858319483,0.038375176744484304,0.038685702508104255,0.03899619180145962,0.03930668606758351,0.039617210308499205,0.039927784927323885,0.040238373806613645,0.040548976072638715,0.04085962549829045,0.04117026070408483,0.04148099050327415,0.041791649375578915,0.04210241205403138,0.042413106598332,0.04272387697429555,0.04303468498746268,0.043345508987047324,0.043656366475839425,0.04396727637722708,0.04427816958958859,0.04458903568247013,0.04491134267517526,0.0452204680526642,0.045529595717873156,0.0458387187878205,0.046147829379946506,0.046456962981973146,0.04676609343245156,0.04707522734243872,0.047384335239909335,0.04769345448943024,0.0480025853381912,0.048311690453679466,0.048620805033858225,0.04892993418030482,0.04923904729840406,0.04954815915179545,0.04985724852485034,0.050166369096583584,0.05047546824016502,0.050784569150995384,0.05109366835566483,0.051402763517424066,0.051711869973552954,0.05202095216500179,0.052330032278597824,0.05263912207112269,0.052948181142185705,0.05325726127798828,0.053566315106048056,0.05387537890734018,0.05418443570431083,0.054493494014978314,0.05480253047804034,0.055111585561014934,0.05542060441930727,0.05572963521694005,0.056038656370515694,0.05634767008959267,0.056656678385467826,0.05696568553974047,0.05727467832638282,0.05758365456986202,0.05789263096783076,0.05820160038257513,0.05851056709363715,0.05881950957310816,0.0591284613932724,0.059437383442062015,0.05974631712384457,0.06005520940673102,0.06036412504916703,0.06067299493564151,0.06098189357551004,0.061290752455640043,0.06159961575712992,0.06190846373823859,0.06221728662002013,0.06252611575815421,0.06283491685245716,0.06314370571331679,0.06345248577284315,0.06376125056635225,0.06406997683411865,0.06437871776064476,0.0646874456831671,0.06499614606612819,0.06530482528759267,0.06561350290050014,0.06592215147356524,0.06623077700754376,0.06653938006302557,0.06684800732018771,0.06715656896600417,0.06746512956163608,0.06777367857349617,0.06808219966045856,0.06839068682750697,0.06869917448138715,0.06900763487169097,0.06931606691999792,0.06962447198438265,0.06993286418491301,0.07024124262724084,0.07054958630664337,0.070857889654608,0.07116618984973347,0.07147446121388754,0.07178269809245437,0.072090918316128,0.07239911352562739,0.07270727234704763,0.07301540517351046,0.07332350429475176,0.07363158179553712,0.07393964025601017,0.07424765460480197,0.07455563547016068,0.07486360883959974,0.07517152679462492,0.07547942496858048,0.07578727997179449,0.0760951062740961,0.07640290125168668,0.07671067169888225,0.0770183981617699,0.07732609480087092,0.07763375706267536,0.07794136943803091,0.07824895254969545,0.07855650781292535,0.07886402121292607,0.0791714958975172,0.0794789157975277,0.07978632017417675,0.08009368704966124,0.08040098265903811,0.08070828041174255,0.08101551451017493,0.08132269366108728,0.08162986702054177,0.08193697588839827,0.08224402984375064,0.08255105353997055,0.08285805884337748,0.08316500207505992,0.08347188708920295,0.08377874375018259,0.08408556080967924,0.08439233209201076,0.08469900913113365,0.08500570800414899,0.08531234202502705,0.08561892178701583,0.08592545563450575,0.08623194151426114,0.08653838771485486,0.08684477711349098,0.08715112345351392,0.08745742800766143,0.08776367352372702,0.0880698816649171,0.08837604353427682,0.08868214780244058,0.08898819929394414,0.08929422811904594,0.08960018150162091,0.08990609995238077,0.0902119622754493,0.09051777876539535,0.09082354243929341,0.09112927751105628,0.09143495420390584,0.09174056824318769,0.09204614457636819,0.09235167329160623,0.09265715839403595,0.0929626077117571,0.0932679761579012,0.09357332608659778,0.09387862593007276,0.09418386445083089,0.09448905112112646,0.09479422187707498,0.095099343934192,0.09540439690085373,0.09570941149221089,0.09601438201466911,0.09631931357163216,0.09662421034371292,0.09692904104699107,0.09723383954915685,0.0975385930892546,0.0978433139626916,0.09814797814181489,0.09845259706920052,0.09875719222365748,0.09906173569858173,0.09936624925260207,0.09967071060992244,0.09997514278464666,0.10027952972726406,0.10058388431584926,0.10088820264028972,0.10119247425353163,0.10149670491514262,0.10180091672078988,0.10210507384806916,0.10240921063568975,0.10271331252257673,0.10301737902129046,0.10332140336861494,0.10362540213217768,0.1039293574566028,0.10423329518315035,0.10453719059354122,0.10484107040038755,0.10514491707080635,0.10544870856180623,0.10575249357535296,0.10605624779286443,0.10635996357361713,0.10666366056620617,0.10696732769371746,0.10727096635132741,0.10757457558317543,0.10787817156666371,0.10818172020004536,0.10848524814123338,0.108788771345695,0.10909226584688343,0.10939570969794606,0.10969915090347639,0.11000255861827572,0.11030596711775525,0.11060931681586211,0.11091266462554593,0.11123368459163509,0.11157045113667813,0.11190712612162847,0.11224363501621795,0.11257989463583505,0.1129158118082599,0.11325130650259697,0.113586287686214,0.11392069300902,0.11425448405393153,0.11458761354170965,0.11492003853764744,0.11525177350247871,0.11558278442471567,0.11591309285681445,0.1162427169452536,0.11657164602857258,0.11689990827335,0.11722752939333587,0.11755451048860066,0.11788086316969879,0.11820659131980571,0.11853172348752723,0.11885623439348736,0.1191801777828629,0.11950351464954401,0.11982627188899597,0.12014850786470399,0.1204701247384024,0.12079114996888085,0.1211116905214546,0.12143159031588383,0.12175099065142836,0.12206981635999237,0.12238809918470105,0.12270583416479579,0.12302305607562022,0.12333974022616612,0.12365593143696496,0.12397159658417188,0.12428673264140155,0.12460142354309406,0.12491557182443346,0.1252292260857032,0.1255424358302098,0.12585516759410273,0.1261674616593753,0.12647926820388233,0.12679067497703964,0.12710161246771445,0.12741211649447165,0.1277221669755298,0.12803183492105633,0.1283410499455952,0.12864987869061528,0.12895830204059752,0.1292663113954571,0.12957396162581733,0.12988119033810452,0.13018805649179388,0.13049452918309165,0.1308005914811926,0.1311063556619723,0.13141171180055353,0.13171672418404576,0.1320213577806186,0.13232565319292866,0.13262961905548623,0.13293319600970732,0.13323643491105983,0.1335393597109418,0.1338419566170086,0.13414417195041772,0.1344461281806465,0.13474774226103733,0.13504903732864698,0.13535000992179919,0.13565071066935647,0.13595106769933868,0.13625118176712184,0.13655093465138307,0.13685045950274252,0.13714966649910298,0.13744862089158555,0.13774729373066372,0.13804572733842568,0.13834390624755377,0.13864178449604048,0.13893952381632332,0.13923692390918244,0.1395341285228354,0.13983113469687133,0.14012792008814273,0.14042446159119465,0.14072083364616117,0.1410170206113355,0.14131299476110756,0.1416088190715848,0.1419044417467204,0.14219995551307835,0.1424953048871182,0.1427904991038486,0.1430856071317533,0.1433805290466597,0.14367536512987528,0.1439700970634982,0.14426471780459826,0.14455926027500052,0.1448537572193765,0.14514815942755402,0.14544251172639142,0.14573680815947207,0.14603108453392738,0.14632530565045107,0.1466195514650323,0.14691375958545405,0.14720796953202148,0.14750220733504052,0.1477964398005997,0.1480906915006853,0.14838501422688904,0.14867935218751013,0.1489737792194654,0.1492681997409427,0.14956271951691621,0.14985735242891512,0.1501520135892337,0.1504468096831244,0.15074170305704082,0.1510367133804869,0.15133177889306365,0.15162702685326002,0.15192235056006204,0.15221784747892986,0.15251344892948085,0.15280921952427956,0.1531051050428879,0.15340118420815838,0.15369737747883708,0.15399376216627414,0.15429027051590094,0.1545869671682544,0.15488385469085486,0.15518083483832953,0.15547810288366773,0.15577550084878033,0.15607305807312452,0.15637077669136412,0.1566687177345531,0.1569668411443834,0.1572651225714512,0.15756360008663983,0.1578622610853737,0.15816113590809522,0.15846015185717147,0.15875939419944768,0.15905875985357948,0.1593583695593412,0.15965813361237588,0.15995811310869462,0.16025823885437163,0.16055851622731263,0.16085903338175306,0.16115964709006644,0.1614605030381373,0.1630559971043062,0.16334413379930235,0.16363244571954844,0.16392087546573952,0.1642093166440043,0.1644979506531368,0.1647866884661187,0.1650755344316654,0.1653645731195272,0.16565380105927827,0.1659431786132858,0.1662326391524655,0.16652241575294743,0.1668123518168474,0.1671024713520728,0.16739281425919778,0.1676833328572313,0.16797407935117986,0.16826510001575992,0.16855633774182133,0.16884777922264566,0.1691395061385808,0.16943143542510186,0.169723710735757,0.17001613814717637,0.17030887593955732,0.17060187609315047,0.17089507952614155,0.17118851816565836,0.17148228038814686,0.17177633857500008,0.17207058409437956,0.17236511778091626,0.17265988520958792,0.17295497525611875,0.17325021945983657,0.17354583639324428,0.1738415523231415,0.17413758727220915,0.17443383920387956,0.17473028121573356,0.1750269433821324,0.17532391205988995,0.17562088048170907,0.1759182155836358,0.17621559659210698,0.17651318896233703,0.17681088033226558,0.17710876456459135,0.17740666512659403,0.1777047490347647,0.17800285420537706,0.17830101800795392,0.1785991664940838,0.1788973541457004,0.1791955103854722,0.1794935309973675,0.17979162386229483,0.18008948714174325,0.18038721720233938,0.1806848387513656,0.1809822859047676,0.18127946053916194,0.18157636424851312,0.18187303160825205,0.1821693078077795,0.18246530458568144,0.18276099158754522,0.18384446688826417,0.1841106384145998,0.18437538098645137,0.18463886381428976,0.1849010427965667,0.1851618807843976,0.18542142800037795,0.18567967150940415,0.1859366949097618,0.18619244937842322,0.18644708777560923,0.18670062142099345,0.18695317760316324,0.18720482928389567,0.18745571518974843,0.18770588930619508,0.1879556482720843,0.1877650810609031,0.18799872615423904,0.18823006791147479,0.1884589730948239,0.18868549791384912,0.18890981405436946,0.1891317361327941,0.18935144285660427,0.189568903824344,0.18978419144200548,0.1899972390543234,0.19020823531277767,0.19041708287517223,0.19062387900454705,0.19082866018528366,0.19103149116201398,0.19123221578271027,0.19143113974768827,0.19162812745498423,0.19182332407155908,0.19333492882353773,0.19360646505634496,0.19387966877496593,0.194154421463337,0.19443077006808307,0.1947086313781323,0.1949878826376525,0.1952685049747303,0.19555036063512252,0.19583335857544876,0.19611756774855474,0.19640276216684757,0.19668873419969188,0.19697565484016752,0.19726322844468938,0.19755156037077973,0.1987515801815065,0.19906528588180825,0.199378685222453,0.19969187932220098,0.20000476435551962,0.20031730697271435,0.20062968014223914,0.20094174031869996,0.20125353596177714,0.20156503761018504,0.20187640912013655,0.20218754561892818,0.20249828160625047,0.2028088530349824,0.20311926122858054,0.20342939504301671,0.20373924183990424,0.2040489306926719,0.20435836325155712,0.20466761707414904,0.20497670473445107,0.2052855262602528,0.20559412435009614,0.20590259642788525,0.20621082504398364,0.20651884909514495,0.20682669500910789,0.2071343858504958,0.2074419060995991,0.20774914036276526,0.20805632109351577,0.20836316352252113,0.2086699287454509,0.2089764655645738,0.2092827677876156,0.20958899211886267,0.20989499772565495,0.21020078140521625,0.21050636889372562,0.210811961523186,0.21111723384582243,0.21142227126770075,0.2117271799665772,0.2120319694997195,0.21233648750433665,0.21264086762358603,0.21294505215462298,0.21324905283145437,0.2135529093283352,0.21385653783764955,0.21415993763428068,0.21446321587596742,0.21476623095056405,0.21506914159842394,0.21537174691758137,0.21567426135883372,0.21597652787690697,0.21627860289743497,0.21658050289354447,0.21688219461958225,0.21718371606502393,0.21748500885053385,0.2179127324578195,0.21822182876939067,0.21853094587174463,0.21884014748619757,0.2191493036770784,0.21945852987968759,0.21976772757546195,0.2200769714906597,0.22038624203865048]}},\"id\":\"a84e2736-f691-4bec-bc1e-252c8bf2f169\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"f867013e-b0df-4c78-a5d2-2fa088496078\",\"type\":\"Line\"},{\"attributes\":{\"data_source\":{\"id\":\"8b8b025e-19af-4c7f-bad1-c87014304e4e\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"82193e13-0530-411c-8a21-e2cb6c58b244\",\"type\":\"Line\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"3638cee8-ed8d-44a8-b0c7-788de8c3b8ee\",\"type\":\"Line\"},\"selection_glyph\":null},\"id\":\"fe00d21f-fa2f-47b7-bf26-759bd515417c\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[0.30277732649230255,0.3027773243528187,0.30277732384363676,0.30277732163277865,0.30277776303022685,0.30277883430879293,0.302780533913296,0.30278286209337674,0.30278581968773344,0.3027894074475561,0.30279362577674906,0.3027984730514229,0.3028039498610367,0.30281005622932095,0.3028167921180846,0.30282415748559743,0.3028321522854142,0.3028407764675795,0.3028500299771865,0.3028608141080561,0.3028712951705163,0.30288240513299014,0.3028941438740389,0.30290651126904466,0.30291950718912464,0.3029331315120592,0.3029473841206663,0.30296226491482653,0.3029777414899235,0.3029938718345482,0.30301065495466134,0.30302811364173193,0.30304623908221434,0.30306500753989185,0.30308441761314664,0.30310442567890183,0.3031250236731619,0.3031462495830467,0.30316716047652625,0.3031896124145009,0.30321269152374186,0.30323639766121047,0.30326073067854703,0.3032856904252255,0.30331127674703595,0.30333748948393413,0.3033643284739846,0.3033917935493559,0.30341988454140917,0.3034486012746904,0.3034779435709653,0.3035079112488485,0.3035385041224358,0.3035697220023399,0.3036015646941907,0.3036340320017529,0.30366712372468735,0.3037008396562196,0.3037351795899945,0.3037701433118116,0.3038057306070869,0.3038419412551731,0.30387877503305166,0.3039162317128426,0.3039543110632828,0.3039930128506806,0.3040323368346242,0.30407228277622417,0.30411285042669917,0.30415403953724474,0.3041958498538903,0.3042382811219828,0.3042813330783752,0.3043250054610695,0.3043692979992316,0.30441421042381317,0.30445974245924606,0.3045058938240946,0.3045526642408225,0.30460005341877444,0.3046480610715687,0.30469668690445934,0.30474593061861244,0.3047957919184976,0.30484627049569035,0.3048973660455095,0.3049490782539797,0.3050014068088008,0.30505435139197634,0.3051079116812506,0.3051620873503504,0.30521687807344705,0.30527228351632485,0.30532830334375083,0.3053849372164343,0.30544218479178026,0.3055000457259851,0.3055585196663789,0.3056176062611195,0.3056773051563898,0.3057376159890185,0.3057985383997767,0.3058600720206528,0.305922216479181,0.30598497140628494,0.30604833642326434,0.30611231115398,0.3061768952093662,0.3062420882093875,0.3063078897597447,0.30637429946839495,0.306441316937641,0.30650894177221916,0.3065771735665188,0.30664601191715196,0.3067154564118021,0.3067855066400741,0.30685616218278766,0.30692742262542627,0.306999287545301,0.3070717565165197,0.30714482911118474,0.3072185048986588,0.3072927834420341,0.30736766430592466,0.3074431470481011,0.3075192312229381,0.3075959163923032,0.3076732020943887,0.30775108788367844,0.30782957330211597,0.30790865789058064,0.3079883411895906,0.30806862273011376,0.3081495020452715,0.3082309786659554,0.30831305211655,0.3083957219210329,0.308478987597878,0.30856284866671235,0.30864730463989043,0.3087323550308583,0.30881799934877396,0.30890423709504405,0.308991067776843,0.30907849089087475,0.30916650593750056,0.3092551124129569,0.30934430980243316,0.3094340975981982,0.3095244752872701,0.3096154423535475,0.30970699827611176,0.30979914253077334,0.3098918745960403,0.30998519394453566,0.31007910004222383,0.31017359236000025,0.3102686703612377,0.3103643335085437,0.31046058125829984,0.3105574130684122,0.31065482839635217,0.3107528266890186,0.31085140739618383,0.3109505699653604,0.3110503138366825,0.31115063845899193,0.3112515432619618,0.3113530276897061,0.3114550911680593,0.3115577331331372,0.31166095301591334,0.3117647502357147,0.3118691242197017,0.3119740743917517,0.31207960016684266,0.3121857009657331,0.31229237619957456,0.3123996252815793,0.3125074476205579,0.3126158426211093,0.31272480969466027,0.31283434823755196,0.31294445765518686,0.31305513734168894,0.3131663866926119,0.3132782051039777,0.3133905919666557,0.31350354666845265,0.31361706859338456,0.3137311571312611,0.3138458116685361,0.3139610315750563,0.31407681623519373,0.3141931650200737,0.3143100773088198,0.3144275524718231,0.31454558987341735,0.31466418889434433,0.3147833488865824,0.3149030692203623,0.31502334925511943,0.31514418834757507,0.3152655858640244,0.3153875411532665,0.3155100535680891,0.31563312246521036,0.3157567471915832,0.3158809270931608,0.31600566151621606,0.316130949803125,0.3162567913029028,0.31638318535072496,0.31651013128327665,0.3166376284361527,0.31676567614520607,0.31689427375423,0.31702342057887406,0.31715311595125295,0.3172833591979066,0.31741414965368847,0.31754548663374565,0.31767736946736896,0.3178097974708876,0.3179427699551579,0.31807628624656886,0.31821034567049117,0.3183449475181626,0.31848009111351927,0.3186157757659472,0.31875200078396676,0.31888876547610423,0.3190260691447323,0.3191639110964416,0.31930229063332677,0.31944120705626255,0.31958065966382115,0.3197206477499852,0.31986117062046415,0.32000222756173624,0.32014381786941265,0.3202859408378917,0.32042859575219795,0.32057178190666175,0.32071549858484183,0.3208597450726271,0.32100452065595914,0.32114982462332,0.3212956562468407,0.32144201480735474,0.32158984383294786,0.3217372300261208,0.3218851409565948,0.32203357590123083,0.3221825341856948,0.3223320150465908,0.32248201778448415,0.3226325416542781,0.3227835859623534,0.3229370603329617,0.3230890693157995,0.3232415975523075,0.3233946443443268,0.32354820898740383,0.32370346282137924,0.3238579934898173,0.3240130419825959,0.3241686076309079,0.3243246897384356,0.3244812876327912,0.3246384006207412,0.32479602801661567,0.32495416914820063,0.32511282331629443,0.3252719898425722,0.3254316680374892,0.32559185720917216,0.32575255666707265,0.325914727691033,0.3260764004938663,0.3262385832448004,0.3264012752080624,0.32656447567073454,0.32672818393027286,0.32689239926822783,0.3270571209602987,0.32722234826779084,0.32738808048565976,0.32755431687648695,0.32772105671154717,0.3278882992520387,0.32805604377512143,0.32822428950511806,0.328393035740746,0.328562281701224,0.32873202666292933,0.3289022698485235,0.3290730105148692,0.3292442478993849,0.3294159812303475,0.3295882097511111,0.3297609326698837,0.32993414920904146,0.3301078586092401,0.3302820600549131,0.33045675277183645,0.33063193595728957,0.3308076088108569,0.3309837705278592,0.33116042029213477,0.3313375572895767,0.33151518069465774,0.3316932896905951,0.33187188341871376,0.33205096105644943,0.3322305217614297,0.33241056467087826,0.3325910889321504,0.33277209367524757,0.332953578027278,0.33313554111198723,0.33331798203349444,0.3335008999015651,0.33368429381224235,0.33386816283289045,0.33405250605995546,0.33423732254569527,0.33442261134462337,0.33460837151232015,0.33479460204756556,0.33498130198656684,0.33516847032270813,0.33535610604393756,0.33554420810182933,0.33573277544490066,0.3359218070100361,0.3361113016950343,0.336301258368081,0.33649167589111395,0.33668255306517203,0.3368738886812488,0.3370644969064471,0.33725665592933535,0.33744926159052785,0.33764231212882206,0.33783382405717727,0.3380277220409519,0.3382220681314555,0.3384168616649495,0.3386121021656987,0.3388077894081353,0.3390039232276793,0.3392005035774549,0.3393975303127614,0.3395950031759099,0.3397929217942554,0.3399912855913546,0.34019009394836797,0.34038934620530503,0.3405890417671068,0.3407891801951701,0.3409897612902384,0.3411907850078528,0.34139225140289164,0.3415941605384774,0.3417965123207599,0.34199932874747546,0.34220260076409326,0.3424063118582848,0.342610457334003,0.3428150338148735,0.3430200394063933,0.343225473315414,0.3434313354008855,0.34363762571261713,0.3438443443010811,0.3440514911222102,0.34425906597725364,0.344467068530753,0.3446754983224698,0.344884354830393,0.34509363744823696,0.3453033454871491,0.3455134782759343,0.3457240350812451,0.3459350151373917,0.3461464177124286,0.3463582420144299,0.3465704872717464,0.34678315271778304,0.34699623757573955,0.347210586581127,0.34742447541648697,0.3476387820959812,0.34785350577074675,0.34806864573934926,0.3482842011447443,0.34850017132119354,0.34871655540004803,0.3489333583048664,0.34915057323994797,0.3493681991693539,0.3495862354124306,0.3498046811893453,0.350023535836997,0.3502427985618194,0.35046246859415214,0.35068254519718456,0.35090302761107245,0.3511239151240839,0.3513452069291575,0.35156690227853965,0.35178900043912364,0.3520115006589203,0.35223440216685703,0.35245770414614097,0.35268140595077085,0.35290550668051135,0.3531300056574509,0.3533549021286081,0.3535801952983088,0.35380588441070754,0.35403196867935255,0.3542584474005015,0.3544853196921082,0.35471258494566493,0.3549402423236338,0.35516829093815727,0.3553967302291901,0.35562555930423084,0.3558547774726267,0.3560843839383484,0.35631437793255866,0.35654475868684515,0.35677552546690083,0.35700667751583964,0.3572382140262354,0.3574701343076809,0.3577024375466781,0.35793512303898417,0.35816818998342376,0.35840163766274147,0.3586354653028647,0.3588696721764309,0.35910425751967084,0.3593392206061466,0.35957456064810905,0.3598102769645978,0.36004636874373264,0.360282835334508,0.3605196759163629,0.3607568898427755,0.3609944763223412,0.36123243464580324,0.361470764128541,0.3617094640433732,0.36194853370726404,0.36218797235965045,0.3624277793558541,0.3626679540488767,0.3629084957253959,0.36314940379762645,0.3633906775899151,0.3636323164899829,0.3638743199772792,0.36411668745697545,0.3643594184259437,0.3646025124203911,0.3648459689894583,0.36508978775439926,0.3653339683956985,0.3655785105607277,0.36582341408797425,0.366068678634519,0.3663143040388874,0.36656029002846174,0.3668066362632449,0.36705334230651454,0.36730040758226334,0.36754783132954444,0.3677956124070695,0.36804374956385155,0.3682922411936328,0.3685410853433744,0.36879028007968073,0.36903982310246636,0.36928971220760015,0.3695399451419284,0.36978961856757186,0.37004049206744527,0.3702917075187641,0.3705432630938897,0.3707951569236406,0.3710473871514951,0.37129995180056363,0.3715539783332945,0.37180723596609794,0.37206082513725347,0.3723147441408322,0.3725700377140676,0.3728246014949471,0.3730795040905899,0.3733347449694112,0.3735903235330313,0.373846239330907,0.3741024917926727,0.3743590804323847,0.3746160046628059,0.37487326395672954,0.37513085776772376,0.3753887854965455,0.3756470464932655,0.3759056401009473,0.37616361762925027,0.3764228594860703,0.3766824291325402,0.37694232591712373,0.3772025491779526,0.3774630982633404,0.3777239724903221,0.3779851711798501,0.37824669363915286,0.3785085392014972,0.3787707071691655,0.3790331968570071,0.37929600758038506,0.3795591386642526,0.3798225894330597,0.38008635924293777,0.3803504474373791,0.38061485338806117,0.38087957646770954,0.3811454242861324,0.3814107088754395,0.3816763072007905,0.38194222123998167,0.38220845275601495,0.38247500311823174,0.3827418732046737,0.38300906317355443,0.38327657249959873,0.3835444000624425,0.3838125442855319,0.38408100334229706,0.3843497753501676,0.3846194879642829,0.38488871171424915,0.38515843505760133,0.38542838371022836,0.3856986177479515,0.38596917920917617,0.38624077467286255,0.3865117341287832,0.38678312612987276,0.3870548825443619,0.38732697066464244,0.3875993745155569,0.3878720864968863,0.38814510286659437,0.3884184212750432,0.38869204027520105,0.38896595935368944,0.3892401770455884,0.38951469307488806,0.389789506671088,0.3900646169464628,0.3903400233999206,0.390615725410329,0.3908917227828015,0.3911680156313619,0.3914446042344175,0.3917214913353754,0.3919986838956986,0.3922761973353119,0.3925540651190331,0.3928323568106605,0.3931102447659687,0.3933889117919671,0.3936678972728145,0.3939471758309883,0.39422665315235367,0.394506543786645,0.3947868424560063,0.39506662846321605,0.39534726671196585,0.3956281932239816,0.3959094087925431,0.3961909140913276,0.39647270954792113,0.3967547952002355,0.3970371704779611,0.39731983424894496,0.39760278465430315,0.39788601947996316,0.3981695360168164,0.3984533313411192,0.3987374024232316,0.39902100496211684,0.39930554818335473,0.39959036638481443,0.3998754589423273,0.4001608252329101,0.4004464646553937,0.400732376595833,0.40101856049407947,0.4013050157440968,0.40159174178173135,0.40187873802068785,0.40216600391356166,0.40245353887445573,0.40274134235852654,0.4030294137862049,0.4033177526000768,0.40360635822671204,0.40389523012310485,0.4041843677026083,0.40447377040209476,0.4047634376650065,0.4050533689189541,0.40534356358716495,0.4056340211214602,0.4059247409440657,0.4062157224907431,0.4065076891559769,0.4067991752699334,0.40709092311472145,0.4073829321045538,0.40767520169954985,0.40796773118514085,0.4082605200775493,0.408553567699121,0.40884687350417726,0.4091404366734237,0.40943425680727996,0.40972833322400826,0.4100226652875794,0.41031725233620187,0.41061209382761427,0.41090718910279145,0.41120253761941666,0.4114981387231149,0.4117939918752613,0.412090096377009,0.412386451729136,0.41268305735163113,0.4129799126128925,0.4132770169641743,0.4135743698298863,0.4138719706348937,0.4141698188371442,0.41446791382302295,0.4147662550998678,0.4150648420471019,0.41536367419269254,0.4156627508455756,0.4159620716191275,0.4162616358807775,0.4165614430653072,0.4168614926758092,0.4171617841914102,0.41746231704234077,0.4177630907160721,0.4180641046245153,0.4183653583086878,0.4186668512103023,0.41896761577738995,0.4192695662792992,0.4195717541165296,0.41987417857064563,0.4201768391668176,0.4204797353424812,0.42078286664163617,0.4210862325546253,0.4213885003035549,0.42169231498744586,0.4219963623992954,0.42230064209953017,0.4226051535915755,0.42290989639137566,0.42321487001247626,0.4235200739434664,0.4238255077545718,0.4241311709132678,0.42443706297602224,0.42474318343144324,0.42504953179190025,0.4253561075882796,0.42566291031914405,0.4259699395126862,0.4262771947057729,0.42658467536768724,0.42689238105302535,0.4272003113050577,0.42750846556166544,0.4278168434268336,0.42812544437233135,0.4284342679238929,0.4287433136114045,0.42905258095656673,0.42936206943760885,0.42967177866715245,0.42998170809771075,0.4302918572963152,0.4306022257332925,0.43091281299206424,0.431223618566168,0.43153464197331587,0.43184588280766206,0.43215734051817734,0.43246901467176113,0.4327809047895798,0.43309301041290466,0.43340533106153123,0.43371786628809417,0.4340306156026741,0.43434357855208844,0.43465675465122705,0.434970143493,0.4352837445412217,0.43559755742745315,0.43591158154426474,0.43622581656560716,0.4365402619688762,0.43685491731906556,0.43716978216530705,0.4374848560165767,0.4378001384355902,0.43811562899969303,0.4384313272194172,0.43874723262298015,0.4390633447756983,0.4393796632538152,0.4396961875674375,0.440012917330915,0.4403298520372381,0.440646991269124,0.4409643345702585,0.4412818815043002,0.44159963162030424,0.44191758449385005,0.4422357396661626,0.4425540967466862,0.4428726551904106,0.4431914146824866,0.4435103747303904,0.4438295349286549,0.44414889481808856,0.4444684540498418,0.44478821204293073,0.44510816846142975,0.44542832295559825,0.44574867912858773,0.44606923808129345,0.4463899939563461,0.44671094638085734,0.4470320949493268,0.44735343910812647,0.4476749785695708,0.4479967128492247,0.44831864158610063,0.44864076423630994,0.448963080540477,0.44928558995469775,0.4496082921250136,0.4499311866651071,0.4502542730935071,0.4505775510081713,0.45090102002990967,0.45122467975031366,0.4515485297014823,0.4518725695430297,0.4521967987649885,0.45252121710907467,0.45284582403690055,0.45317061926601787,0.45349560225912355,0.4538207726919731,0.4541461301584381,0.45447167417974804,0.4547974044415301,0.45512332054209004,0.4554494220664083,0.45577504772667216,0.4561015131910573,0.456428162853104,0.45675499633405214,0.4570820132579908,0.45740921319301964,0.4577365957772848,0.45806416059765365,0.4583919072791567,0.45871983541295497,0.4590479446334034,0.4593762345433737,0.4597047047436898,0.46003335486578306,0.46036218450807204,0.4606911933029658,0.4610203808664626,0.4613497467956424,0.46167929071912045,0.46200901226470836,0.4623389110425621,0.4626689866829302,0.4629992387811247,0.4633296669999426,0.4636602709319969,0.4639910502147353,0.4643220044739533,0.46465313332337976,0.46498443640624554,0.4653159133449272,0.4656475637522272,0.46597938727573074,0.46631138354483054,0.4666435521831641,0.46697589283046387,0.467308405117559,0.46764108867432075,0.46797394312712076,0.46830696813948613,0.4686401633043001,0.4689735283101206,0.46930706276560014,0.46964076629222523,0.46997463858478433,0.47030867922458897,0.47064288788403474,0.470977264202498,0.4713118078149113,0.4716465183683891,0.4719813955243142,0.4723164388995538,0.47265164816286565,0.47298702294355827,0.4733225629034721,0.47365826768561914,0.47399413694596265,0.4743301703307971,0.4746663674832023,0.4750027280621081,0.475339251726717,0.47567593811624115,0.47601278691031407,0.47634979774210584,0.47668697027203066,0.4770243041520786,0.47736179904978315,0.4776994546249136,0.4780372705339156,0.47837524643205537,0.4787133819839166,0.4790516768501259,0.4793901306952541,0.4797287431910954,0.480067513994357,0.48040644275293215,0.48074552915626273,0.48108477286833173,0.4814241735408832,0.48176373085829244,0.48210344448323494,0.4824433140900842,0.4827833393206533,0.4831235199015323,0.4834638554617315,0.4838043456763462,0.4841449902366499,0.48448578881227555,0.4848267410727903,0.4851678466931292,0.48550910535467734,0.4858505167356367,0.48619208050698076,0.4865337963471891,0.48687566395717896,0.48721768299511176,0.4875598531551616,0.4879021740922805,0.4882446455266297,0.488587267115989,0.4889300385501928,0.4892729595371902,0.489616029722302,0.4899592488103329,0.49030261651311147,0.49064613247715194,0.49098979641263923,0.49133360802519804,0.4916775669669591,0.4920216729570181,0.4923659256777915,0.4927103248220208,0.49305487008215076,0.49339956114259614,0.4937443977279679,0.4940893795086678,0.4944345061706224,0.4947797774524041,0.495125193011312,0.4954707525640396,0.49581645580053746,0.49616230242555276,0.49650829214384884,0.49685442464761,0.49720069964022673,0.497547116826477,0.4978936759070254,0.4982403766200972,0.4985872186013346,0.49893420160909224,0.49928132534313313,0.4996285894916347,0.49997599377563656,0.50032353788553,0.5006712215702495,0.5010190444966008,0.5013670063890351,0.5017151069747809,0.5020633459534897,0.5024117230214707,0.5027602379186489,0.5031088903345634,0.5034576800033366,0.5038066066214353,0.5041556699305959,0.5045048696224222,0.5048542054275759,0.5052036770707666,0.5055532842492723,0.5059030266899305,0.5062529041177363,0.5066029162617519,0.5069530628170076,0.5073033435318328,0.5076537581208255,0.5080043062867313,0.5083549877931278,0.5087058023309814,0.5090567496335313,0.509407829428077,0.5097590414555632,0.510110385417906,0.5104618610629904,0.5108134681156852,0.5111652062827111,0.5115170753269804,0.5118690749580806,0.5122212049113399,0.5125734649265884,0.5129258547319546,0.51327837404748,0.5136310226206268,0.5139838001905769,0.5143367064711617,0.5146897412054453,0.5150429041408704,0.5153961950182355,0.5157496135571823,0.5161031594961851,0.5164568325906557,0.5168106325632185,0.5171645591459959,0.5175186121066342,0.5178727911793607,0.518227096087917,0.5185815265871816,0.5189360824193874,0.519290763325319,0.5196455690571533,0.5200004993490621,0.5203555539433385,0.5207107325980664,0.5210660350619072,0.5214214610639031,0.5217770103733982,0.5221326827047825,0.5224884778546258,0.5228443955409077,0.5232004355176874,0.5235565975379182,0.5239128813445781,0.5242692867098835,0.5246258133662477,0.524982461075838,0.525339229599814,0.5256961186680015,0.5260531280643539,0.5264102575259763,0.5267675068085191,0.5271248756767992,0.5274823638842872,0.5278399711841818,0.5281976973388643,0.528555542110237,0.5289135052541408,0.5292715865278304,0.5296297856991898,0.52998810462683,0.5303465431067994,0.5307050991118122,0.5310637724195726,0.5314225627824481,0.5317814699614128,0.5321404937121718,0.5324996337797808,0.5328588899141671,0.5332182619041638,0.5335777494292533,0.5339373523060907,0.5342970702342587,0.5346569029808739,0.5350168503052646,0.5353769119580306,0.5357370876887433,0.5360973772531457,0.5364577804158244,0.5368182968889949,0.5371789264494212,0.537539668867609,0.5379005238748097,0.5382614911942092,0.5386225706149672,0.5389837618514872,0.5393450647021006,0.5397064788836897,0.5400680041083346,0.5404296402000778,0.5407913868276263,0.5411532437853555,0.5415152108853128,0.5418772877893429,0.5422394742628653,0.542601770099459,0.5429641751002928,0.5433266889213477,0.5436893114285125,0.544052042330089,0.5444148813932792,0.5447778284466356,0.5451408832517882,0.5455040455280643,0.5458673151110345,0.5462306917473884,0.5465941752743132,0.5469577654370681,0.5473214619861924,0.5476852647944037,0.5480491735995254,0.5484131882337113,0.5487773084424442,0.5491415340002178,0.5495058648304973,0.5498703006082336,0.5502348411654556,0.5505994863193086,0.5509642358668811,0.5513290895989322,0.5516940473412043,0.5520591089401623,0.5524242740666961,0.5527895426336257,0.5531549144334609,0.5535203892483352,0.5538859668855676,0.554251647194517,0.554617429957959,0.5549833149998955,0.5553493020690352,0.5557153910406311,0.556081581695717,0.5564478738585598,0.5568142673612282,0.5571807619374298,0.557547357466415,0.5579140537570239,0.5582808505640451,0.5586477478439844,0.5590147451942885,0.5593818426297938,0.5597490398004749,0.5601163366489635,0.560483732896118,0.560851228382935,0.5612188229686403,0.561586516403213,0.561954308508847,0.5623221992081303,0.5626901881223467,0.563058275218331,0.5634264602415683,0.5637947429737424,0.5641631233462419,0.5645316010841932,0.5649001760021818,0.5652688479800787,0.5656376167728157,0.5660064821994008,0.5663754440954929,0.5667445022678786,0.5671136565291801,0.5674829067327395,0.567852252613158,0.5682216940546533,0.568591230848173,0.5689608628218259,0.5693305897717933,0.5697004115385552,0.5700703279609852,0.5704403387675436,0.570810443876235,0.5711806430549676,0.571550936103027,0.5719213228781622,0.5722918031992973,0.5726623768773056,0.5730330437023475,0.5734038035247201,0.5737746561276658,0.5741456013714249,0.5745166390746785,0.5748877690482294,0.5752589910483751,0.5756303050335618,0.576001710677155,0.5763732079462144,0.5767447965713478,0.5771164763544315,0.5774882471731985,0.5778601088327493,0.5782320611572456,0.5786041039682375,0.5789762370773147,0.5793484603156437,0.5797207735235109,0.5800931765214906,0.580465669131238,0.5808382511449356,0.5812109224482263,0.5815836828344347,0.5819565321183469,0.5823294701251243,0.5827024967649758,0.5830756117664206,0.5834488149904609,0.5838221062444491,0.584195485424027,0.5845689523066844,0.5849425067179836,0.5853161485191402,0.5856898775158719,0.5860636935575682,0.586437596456425,0.5868115860816964,0.5871856621984065,0.5875598247369946,0.5879340734464014,0.5883084082054068,0.588682828821415,0.5890573351530332,0.5894319270176432,0.5898066042427008,0.5901813666974739,0.5905566718145397,0.5909315892098326,0.591306591779754,0.5916816794584724,0.5920568519758246,0.5924321092200312,0.5928074509450175,0.5931828770616892,0.5935583873050309,0.5939339816395718,0.5943096597752429,0.5946854215280137,0.5950612668845215,0.5954371955099871,0.5958132073167893,0.5961893021430348,0.5965654797359913,0.5969417400365455,0.5973180828409663,0.5976945079679721,0.5980710152322909,0.5984476045651929,0.5988242756582552,0.5992010285167043,0.5995778628172551,0.5999547785016929,0.6003317753640636,0.6007088532538595,0.6010860119638768,0.6014632514143451,0.6018405714220507,0.6022179718073594,0.60259545239854,0.6029730130695291,0.6033506536742127,0.6037283739892801,0.6041061739736369,0.6044840533266014,0.6048620119971103,0.6052400498035745,0.605618166526687,0.6059963621086845,0.6063746363752173,0.6067529890953796,0.6071314202291108,0.6075099295241067,0.6078885168596397,0.6082671821186191,0.608645925109491,0.6090247456874972,0.6094036437053449,0.6097826190087879,0.6101616714622282,0.6105408008935166,0.6109200071768818,0.6112992901130984,0.6116786495798371,0.6120580854687168,0.6124375975635613,0.6128171857494192,0.6131968498825677,0.6135765898453407,0.6139564054164366,0.6143362964619491,0.6147162629404944,0.6150963045779502,0.6154764213124617,0.615856612989309,0.6162373842199187,0.6166176982829812,0.6169980867732123,0.6173785495700849,0.6177590866396634,0.6181396978803164,0.61852038316106,0.6189011425300354,0.6192819758336288,0.6196628830932719,0.6200438642415467,0.6204249193118763,0.6208060482815613,0.6211872511571342,0.6215685279550925,0.621949878674597,0.6223313033546735,0.6227132376773072,0.6230947595842917,0.6234763613623435,0.6238580430525792,0.6242398046715426,0.6246216456597322,0.6250035662127068,0.6253855661184651,0.625767645186085,0.6261498032644824,0.6265320404236945,0.6269143561602067,0.6272967505741205,0.6276792235399892,0.6280617748276452,0.6284444042152147,0.6288271118544361,0.6292098972154238,0.6295927605202607,0.6299757012870442,0.630358238047194,0.6307412727616286,0.6311243785825829,0.6315075553079182,0.631890802630153,0.63227412031651,0.6326575081834397,0.6330409659712963,0.6334244934435347,0.6338080904209316,0.6341917566361409,0.6345754919249521,0.6349592962001939,0.6353431691238732,0.6357271106372185,0.6361111204239585,0.6364946892422949,0.63687880452416,0.6372629874393486,0.6376472379246177,0.6380315558188517,0.6384159410622166,0.6388003934386587,0.6391849128781079,0.639569499299647,0.6399541525769488,0.6403388724811613,0.6407236590177409,0.6411085120462612,0.6414934314232869,0.6418784170336974,0.6422634687863559,0.6426485865533869,0.6430337702360489,0.64341901968428,0.6438043348135156,0.644189715504964,0.6445751616241573,0.6449606730992596,0.645346249765084,0.6457318915647958,0.6461175983698714,0.6465033700606275,0.6468892064607618,0.6472751075792686,0.6476610732594599,0.6480471033558705,0.6484331978216497,0.648819356442765,0.649205579245706,0.6495918660120451,0.6499782166460447,0.6503646310787934,0.6507511092302753,0.6511376508913128,0.6515242559960043,0.6519109244824638,0.6522976562276005,0.6526844510722539,0.6530713089261971,0.6534582297265913,0.6538452133281012,0.6542322596206442,0.6546193685343688,0.6550065398894842,0.6553937736890384,0.655781069709218,0.6561684279098076,0.6565558482060599,0.6569433304523195,0.6573308745851528,0.6577184803814294,0.6581061479693512,0.6584938770095743,0.6588816674805391,0.6592695192728818,0.659657432295178,0.6600454065058372,0.6604330285950786,0.6608211144303695,0.6612092608389974,0.6615974677531268,0.6619857350074042,0.6623740625282497,0.6627624502225791,0.6631508979321283,0.6635394056154255],\"y\":[0.0974192465140173,0.09742138609779438,0.09741261985286173,0.09761042287150495,0.098139706035488,0.09866745736125082,0.09919501362319422,0.09972415632319823,0.10025395118501157,0.10078351004251065,0.10131225826636679,0.10184129109560007,0.10237031635815508,0.10289929425821709,0.10342822524779705,0.10395711038335169,0.10448595157541275,0.10501475129482424,0.1055435130788607,0.10530761545607904,0.10584960284839731,0.10639210977294829,0.1069351929718401,0.10747891247610077,0.1080233303988985,0.10856850747361321,0.10911450243463226,0.1096613663101851,0.11023283736217686,0.11078758946393309,0.1113250756359955,0.11182994085451883,0.11230847753517098,0.11277850198421295,0.11324176295045009,0.11372630185116864,0.11423543786489819,0.114744571238737,0.11607817721843233,0.11660298936929393,0.11712774727068907,0.11765245132621856,0.11817710386246916,0.11870170561197556,0.11922625755600898,0.11975076177684338,0.12027521895783277,0.12079963129327803,0.12132399932225615,0.12184832475000412,0.12237260939170089,0.12289685450167584,0.12342106138129996,0.12394523123071823,0.1244693666268147,0.12499346749320436,0.12551753609533559,0.12604157427410118,0.12656558255867012,0.12708956303017221,0.12761351685004313,0.128137445374741,0.1286613501171483,0.12918523232456544,0.12970909390874627,0.13023293552019793,0.1307567594712334,0.13128056524963996,0.13180435566299886,0.13232813204278276,0.1328518957882143,0.13337564669657867,0.133899387521725,0.13442311854116917,0.13494684202037058,0.13547055851118817,0.13599426908087284,0.13651797551831635,0.13704167794841268,0.1375653787490266,0.13808907775762108,0.1386127767295536,0.1391364778576781,0.13966017985403315,0.14018388587423686,0.14070759625593826,0.14123131247515325,0.14175503508318477,0.1422787650707255,0.14280250325605015,0.14332625120749706,0.1438500095684352,0.14437377910054064,0.14489756162991865,0.1454213576635188,0.1459451681955553,0.1464689932415151,0.14699283516297335,0.1475166946006504,0.14804057108287966,0.14856446726617853,0.14908838231606628,0.1496123181965333,0.15013627609350966,0.15066025524088442,0.15118425852945916,0.15170828413339468,0.15223233646332185,0.15275641194020248,0.15328051455431102,0.15380464404576744,0.1543288020495177,0.1548529872104824,0.15537720150719314,0.15590144484390983,0.1564257195507423,0.15695002419905485,0.15747436148759386,0.15799873024660002,0.15852313160459955,0.15904756662187813,0.15957203544960594,0.1600965377816017,0.16062107564451125,0.16114564903724002,0.1616702584567317,0.16219490468424383,0.16271958528717012,0.16324430531004386,0.1637690621087851,0.16429385758437945,0.16481869116834072,0.16534356278796625,0.1658684748669775,0.166393425868797,0.1669184154715299,0.16744344563289304,0.16796851645658642,0.168493628071708,0.16901878010255364,0.16954397401589877,0.1700692080886865,0.1705944834999832,0.17111980105884356,0.17164516018445378,0.17217056151987545,0.172696005102655,0.1732214895082733,0.17374701796730802,0.1742725880798933,0.17479819991111356,0.17532385416846702,0.1758495512315452,0.17637529080330278,0.17690107339253064,0.17742689774784162,0.17795276693537918,0.17847867609310047,0.17900462813692178,0.17953062262761493,0.18005666003327755,0.18058273969228658,0.18110886088721725,0.18163502487752356,0.18216123227601494,0.1826874786863242,0.18321376951007914,0.18374010004395097,0.1842664736957681,0.18479288710333897,0.18531934284021023,0.1858458400056298,0.18637237662116923,0.18689895584984978,0.18742557405626553,0.18795223398793912,0.18847893351515227,0.18900567291250436,0.18953245233282265,0.19005927069293108,0.1905861283175783,0.1911130278188943,0.19163996302863534,0.19216693954399827,0.19269395334662345,0.19322100471401427,0.1937480959678963,0.19427522568251568,0.194802391207874,0.19532959427211444,0.19585683785480543,0.19638411862485103,0.19691143170586778,0.19743878479423582,0.19796617348833725,0.19849360029383967,0.19902106290691376,0.19954856224520134,0.2000760978117073,0.20060366862997747,0.2011312758263057,0.20165891893658686,0.20218659842527942,0.20271431538506143,0.20324206557327365,0.2037698541489466,0.20429767576224803,0.20482553362039413,0.20535342797632658,0.20588135578052957,0.20640932272995838,0.20693732895628866,0.20746536500928753,0.20799344007515821,0.20852155392084165,0.209049703385412,0.20957789397838103,0.21010611608946342,0.21063437777126123,0.2111626805429631,0.21169102522135316,0.21221940698852598,0.21274782983611176,0.21327629067216358,0.21380479653238926,0.214333345007062,0.21486193852747304,0.2153905697974705,0.21591925272677426,0.21644798236848728,0.2169767564247861,0.2175055826230886,0.21803446069132237,0.21856338687513874,0.21909237212355476,0.21962140621337245,0.22015050242651465,0.2206796557322872,0.22120887282804605,0.22173815332318444,0.22226749764068235,0.22279690961598067,0.22332639755395073,0.22385595373296563,0.22438559146703266,0.2249153124625021,0.2254451118798779,0.2259750028736036,0.22650498324374713,0.22703506054057768,0.22756523911731621,0.2274576280923568,0.22800094976684396,0.2285444919688332,0.22908825880768338,0.22963225105059332,0.2301764710085913,0.230720927066263,0.23126561383214703,0.23181053935470314,0.23216414766706345,0.23272029309220477,0.23327648804743722,0.2338327244349458,0.2343889982014195,0.23517726213766027,0.23572785263197715,0.2362782814656834,0.2368285454193919,0.23737862829434098,0.2379285274315191,0.23847822802470867,0.23902772234569042,0.23957700121270858,0.24012605423896471,0.24067486861543713,0.24122343304097105,0.24177174272524518,0.24231977619067607,0.24355716731824356,0.24409576783579048,0.24463416150310044,0.24517233161578383,0.24571026872225377,0.24624796122206893,0.24678539682354925,0.24732256231030925,0.2478594409495315,0.24839602426129948,0.24893229311950943,0.2494682354259838,0.2500038324339223,0.2505390740856455,0.2510739340447621,0.25160840498786463,0.25214246000205015,0.2526760907471242,0.2532092713931178,0.253741987809655,0.2542742192857024,0.2548059467482014,0.25533715324265877,0.2558678129682659,0.2563979077839506,0.2569274226925998,0.25745633192202,0.2579846185715963,0.25851226157779994,0.2590392439455064,0.2595655445683853,0.26009114714751885,0.2606160318811006,0.26114018328484656,0.26166358799633943,0.2621862252174743,0.26270808403539175,0.26322915675288555,0.263749427570909,0.26426888949253563,0.26478753512384906,0.2653053582680206,0.26582235608541604,0.26633852882839737,0.2668538745597719,0.2673683949010449,0.26788208859355117,0.26839497051995226,0.26890704173892604,0.26941830764036834,0.26992878296974054,0.2704384609418818,0.27094735967218186,0.2714554810174747,0.2719628306137622,0.2724693971172681,0.2729751831265195,0.27348017616874865,0.27398436478316923,0.27448771794171267,0.27499020421267717,0.27549177996412627,0.2759923945950111,0.2760491979216165,0.2765342854885529,0.27701772598309854,0.27749976413474037,0.2778242867590117,0.2783389551015835,0.27885653664519355,0.2793773152338203,0.27990149866236597,0.2804292093499946,0.2809605052597747,0.2814953611762121,0.28203372153789547,0.28257553431754323,0.2831207807764096,0.28366953174826687,0.28422192181077355,0.28477814784391997,0.2853384323126419,0.2859028755323258,0.28647142089876126,0.28704375501917145,0.28761920112959266,0.2881967747972291,0.2887751413965713,0.28930900185162606,0.28981832027826393,0.29033377081369677,0.2908576366194794,0.29138876563598715,0.2919249904395835,0.2924642866007335,0.2930051513531043,0.29354658136702216,0.2940879301554042,0.2946288423731449,0.2951691253391994,0.2957087039221773,0.2962475572578241,0.2967857063106492,0.29732319292375387,0.29786007733089986,0.2983964011638973,0.2989322225587754,0.2994675892025267,0.30000254567818657,0.30053713436139035,0.30107139306799763,0.30160534688226615,0.3021390159908034,0.30230610867948754,0.3028428183209913,0.3033794228323557,0.30391594317497256,0.3044523890064156,0.3049887860620276,0.30552512677496413,0.3060614063093848,0.30659530962016124,0.30712924664499414,0.307663266837793,0.30819738337873176,0.30873155181029077,0.30926579090171336,0.3098000646711087,0.3103343752862124,0.31086871204294647,0.3114030630547479,0.31193742363398086,0.31247177203797033,0.3130061244338315,0.31354045287382165,0.31407472518246937,0.31460895703557523,0.31514314138199817,0.31567725479585274,0.3162113138033361,0.3167452853144102,0.3172791599009719,0.3178129452705082,0.31834663548436914,0.31888019549535546,0.31941364123300564,0.3199469699986051,0.3204801365019301,0.3210131541401503,0.32154605260738456,0.3220787630885129,0.3226113188295902,0.32314369728044573,0.3236758832806348,0.3242078619717841,0.32473965432277296,0.32527123339053965,0.3258026123398503,0.32633373442762537,0.32686462745356615,0.32739527397669743,0.32792565645128047,0.3284557555667587,0.32898557111641075,0.32951509264802564,0.33004427470970776,0.33057312492356955,0.3311016278752123,0.3316297452783357,0.33215747019544906,0.332684751853582,0.333211576938489,0.33373792733919705,0.3342637356871757,0.33478899319046324,0.3353136267904999,0.3358375948218947,0.3363608346135256,0.3368832894548419,0.33740491538147405,0.337925573644544,0.33844522820957607,0.33896376226820946,0.339481076547396,0.339997065623461,0.3405116034527752,0.34102457448938556,0.34153586196212665,0.34204530176759634,0.34255278879496964,0.34305824535132273,0.343561559852861,0.34406266341227676,0.34456157614533356,0.3450582902820568,0.3455529837884924,0.34604583753618995,0.34653714668226454,0.3470273194622781,0.3475168787356971,0.3480064193811684,0.34849663223577393,0.34898826652248977,0.3494820812483981,0.349978806566601,0.3504791158078529,0.35098356568418415,0.3514925725315416,0.3520063899312329,0.35252510908540874,0.35342069725835557,0.35392888543073603,0.3544417535207624,0.35495985617820214,0.3554837288681098,0.3560139771846278,0.3565514067157868,0.3568174277006743,0.3573649084146941,0.3579133699139484,0.3584609950644019,0.3591658391376446,0.35971681894778945,0.3602685411039029,0.3608210784543699,0.3613744657586347,0.3619287675639884,0.3624840265422918,0.36304028225504686,0.36359752943378787,0.3641557739922698,0.3647149812839276,0.3652751088836305,0.36583606629641463,0.36639772917082597,0.3666053624920471,0.3671452894505955,0.3676848389811231,0.36822400327980487,0.36876277465449087,0.3693011455732513,0.3698391001814713,0.37037661873859096,0.3709136807555918,0.37145026456724206,0.3719863482944635,0.3725219157291741,0.3730569550541317,0.3735914581818655,0.3741254408437021,0.37465891279078317,0.3751919140223849,0.375724498922554,0.3762567286007256,0.3772208154326906,0.3777129311574196,0.37820168593257636,0.37868841166141354,0.37917455424619484,0.3796616083339399,0.38015104214382966,0.3806441164252862,0.38114183161504633,0.3816447949055617,0.38215319862304586,0.38266680333652137,0.3831849761764292,0.3841411829929007,0.3845305528544903,0.38511601723112576,0.385617813585505,0.38606990910363337,0.386524278898718,0.38754587023061116,0.3878459165865641,0.38822275460241495,0.38865376330667667,0.3891219868399486,0.3896151794992452,0.3901248272113695,0.3906451620112697,0.3911723939072999,0.39170409538407946,0.39223877118723466,0.39277555890626026,0.39331399637689235,0.3938539880278265,0.3943957255303706,0.39493976225757194,0.3954870834472117,0.3960393777129208,0.39659932484666505,0.3971710014425568,0.39776054893307183,0.3983769294069876,0.39903279097150124,0.39974544940473017,0.4005376315251043,0.4005082316044922,0.40113721496908217,0.4017750573036207,0.40237775594310976,0.40286477241608387,0.4035094156450094,0.4042344508025221,0.4041239524136453,0.40467856051990375,0.40523892877498513,0.4058054229276482,0.40637804017145257,0.4069564345905416,0.4075399354540648,0.4081275754489508,0.40871817882282185,0.40931043676994217,0.40990304702592195,0.4104947138823598,0.41108425614105437,0.4116706523795673,0.41156657354216325,0.4121024840040439,0.41263833690981383,0.4131740667718481,0.41370961062462663,0.4142449276845427,0.4147799834425921,0.415314770585515,0.41584926849244824,0.4163834777343752,0.4169174104876355,0.4174510783458361,0.4179844865620649,0.41851766152871,0.4190506156329394,0.4195833610394202,0.42011591691973543,0.4206483056150869,0.42118053366942754,0.42171260998493454,0.4222445577522613,0.4227763623933291,0.42330805171794117,0.4238396219473214,0.42437107681484504,0.4249024181213205,0.42609219458013187,0.426607921915148,0.42712411196468414,0.4276407902673978,0.42815799625745815,0.42867573621968874,0.4291940425108396,0.42971289940476975,0.43023232557692437,0.43075228690695977,0.43127281508527726,0.43179387285294185,0.43231545996368564,0.4328375406063299,0.4333601160687649,0.43388315175980685,0.4344066505039861,0.43493057570404264,0.43545492948710035,0.4359796551385131,0.43650476679332556,0.43703023964235427,0.4375560475631334,0.43808217031039093,0.4386085975309897,0.43913531254876964,0.4396623044075765,0.4401895376266671,0.4407170244635157,0.4412447328442347,0.4417726689639593,0.4423007766408448,0.44282909477675947,0.4433575893851667,0.4438862391495501,0.4444150494172424,0.44494401362075225,0.4454731108529934,0.4460023419131263,0.44653168995489323,0.4470611493501759,0.44759071814141876,0.4476379316034784,0.44816404993138714,0.44868954474486755,0.44921493190076994,0.4497402125648813,0.45026538394622134,0.4507904604838264,0.4513154465047717,0.4513213006097958,0.451843349954399,0.4523653849790195,0.4528874569055496,0.45340954243339476,0.4539316439593372,0.4544537721511257,0.4549759243170759,0.4554981041248834,0.45602030895726414,0.4565425550937784,0.4570648097626929,0.4575871158718891,0.45810944264800507,0.45863180196076847,0.45915419984456773,0.45967662467400516,0.4601990747248148,0.4607215925615967,0.46124413718096724,0.46176669755319166,0.4622893187178054,0.46281195831282707,0.46333464315563605,0.46385735974671544,0.4643801384101661,0.4649029166113469,0.46542576023208965,0.4659486207089758,0.4664715410182374,0.4669944762694064,0.46751745005180817,0.46804047631381074,0.46856352385884553,0.46908662679369373,0.4696097618427835,0.47013292447263505,0.47065612744115426,0.47117938214023336,0.471702651167234,0.4722259857510918,0.47274934973325455,0.4732727665550865,0.4737961827672856,0.47431967798172425,0.47484318997681013,0.4753667746158777,0.47589036712262767,0.47641402256713866,0.4769377153987675,0.4774614653355353,0.4779852384251826,0.47850907426866696,0.4790329577836165,0.47955689365547605,0.4800808667865396,0.4806049072834935,0.4811289941161592,0.4816531361324747,0.48217731851720136,0.4827016010138446,0.4832259036073783,0.483750288704229,0.4842747328829933,0.48479922906429596,0.48532380890701443,0.48584844907763314,0.4863731578900317,0.48689796735027185,0.48742280661926457,0.4879477440838968,0.4884727620830733,0.48899785603877494,0.4895230207118033,0.4900482766308513,0.49057362546561645,0.4910990375117999,0.49162456159434115,0.4921492546165709,0.4926727803703952,0.49319628845748426,0.4937198110852126,0.4942433385889645,0.4947668654837254,0.4952903797386401,0.49581390929339003,0.4963374248401156,0.49686093720887786,0.497384466282632,0.49790797602136194,0.4984314920725486,0.4989550174070799,0.49947854941219366,0.5000020592018259,0.5005255763541755,0.5010490819522435,0.5015725921006162,0.5020961039536176,0.5026195989082353,0.5031431185938818,0.5036666218463057,0.5041901358443115,0.5047136524064513,0.505237145976909,0.5057606347217457,0.5062841367966092,0.5068076306989677,0.5073311290184956,0.507854638529067,0.5087787426242768,0.5093048863814483,0.5098310526505813,0.5103572231970557,0.5108833946892472,0.5114095690595203,0.5119357373475901,0.5124619231865704,0.5129881164699167,0.5135143204033974,0.5140405158537829,0.5145667253181958,0.5150929360477428,0.5156191535161585,0.5161453770862842,0.5166716059757377,0.5171978436512643,0.5177240833528551,0.5182503413751878,0.5187766000796548,0.5193028590267983,0.519829131956858,0.5203554133407128,0.5208816944028712,0.5214079841230278,0.5219342945885411,0.52246059520558,0.5229869159041626,0.5235132439900518,0.5240395721188611,0.524565919967156,0.5250922673144561,0.5256186239083636,0.5261449923468069,0.526671371484272,0.5271977583073626,0.5277241511330037,0.5282505652479457,0.5287769736321393,0.5293034039323716,0.5298298407432432,0.5303562820370182,0.5308827471553753,0.5314092106636761,0.531935690974451,0.5324621840572014,0.5329886811257053,0.533515201702816,0.5340417191233371,0.5345682571319846,0.5350948066594257,0.5356213752747739,0.5361479464688167,0.5366745304317972,0.5372011347324706,0.5377277454040069,0.5382543681732533,0.5387810117393408,0.5393076671528175,0.5398343417980169,0.540361022375941,0.5408877217128271,0.5414144411054198,0.5419411690676522,0.5424679121343403,0.5429946697789704,0.5435214508855911,0.5440482397885386,0.5445750517579396,0.5451018796633234,0.5456287241414488,0.5461555743953733,0.5466824537576361,0.547209350338737,0.5477362618064805,0.5482631886180042,0.5487901401894244,0.5493171129635196,0.5498440975769183,0.5503710944368166,0.5508981259928972,0.5514251756700809,0.5519522343064086,0.5524793171688419,0.5530064287844023,0.5535335532795514,0.5540606988235705,0.5545878676305253,0.5551150631807472,0.5556422769513136,0.5561695086338151,0.556696759658507,0.5572240434519832,0.5577513417950214,0.5582786681078957,0.5588060098371198,0.5593333917366443,0.559860777330386,0.5603882040848692,0.5609156418008626,0.561443103306764,0.5619706056176698,0.5624981239984271,0.5630256629362659,0.563553227031021,0.5640808224260437,0.5646084363946248,0.5651360864631689,0.5656637503689146,0.5661914503554956,0.5667191708579012,0.5672469204544959,0.5677747007681353,0.5683024971900728,0.568830328861944,0.5693581955237047,0.5698860722321044,0.5704139873579126,0.5709419289061896,0.5714698934471749,0.5719978923765603,0.5725259182435639,0.573053972670879,0.5735820484436835,0.5741101540612928,0.5746382970501918,0.5751664553552565,0.5756946499488133,0.5762228705527215,0.5767511240668454,0.5772793962427248,0.5778077071484546,0.5783360434581187,0.5788644051228662,0.5793927978267555,0.5799212184651839,0.5804496614686937,0.5809781398669825,0.5815066485041487,0.5820351802756603,0.5825637436425616,0.5830923291608938,0.5836209476127288,0.5841495905797822,0.5846782612881164,0.5852069637561531,0.5857356877646535,0.586264445126031,0.5867932271614789,0.587322028419255,0.5878508596882885,0.5883797150414541,0.5889086037989522,0.5894375050469993,0.5899664468206182,0.5904953991952178,0.591024384697517,0.5915533929385745,0.5920824278502689,0.5926114848009104,0.5931405684954749,0.5936696740020035,0.5941987890484305,0.5947279346957246,0.5952571043373511,0.5957863035932496,0.5963155145343841,0.5968447502048917,0.597373997196953,0.5979032709074519,0.598432567373617,0.5989618784117139,0.5994912118629655,0.6000205653918889,0.6005499403132181,0.6010793232535897,0.6016087164770676,0.6021381398212862,0.6026675766471544,0.6031970269271834,0.603726503092341,0.6042559834105983,0.6047854802257259,0.6053149899353739,0.6058445185629462,0.6063740629911726,0.6069036204225627,0.6074331850490065,0.6079627605895971,0.608492348608213,0.6090219527991381,0.6095515671476416,0.6100811887571113,0.6106108195821092,0.6111404704514486,0.6116701175071733,0.6121997801544293,0.6127294570986734,0.613259132950104,0.6137888250902026,0.6143185160322738,0.6148482258614653,0.6153779427567797,0.6159076523418339,0.6164373841032761,0.6169671100676865,0.6174968472356461,0.6180265895596503,0.6185563387995594,0.6190860862984313,0.619615850822378,0.6201456158682682,0.6206753757157429,0.6212051437650756,0.6217349245396289,0.6222646931681495,0.6227848381708392,0.6232964098923905,0.6238080852223672,0.6243198987757611,0.6248318846557592,0.6253441015943784,0.6258565932054778,0.6263694011222525,0.6268825789676835,0.6273961195686419,0.6279100677445844,0.6284244273312395,0.6289392031764178,0.6294543966666007,0.629969982345949,0.6304859704838779,0.631002338931287,0.6315190836059117,0.6320361633439703,0.6325535975540547,0.6330713519983111,0.6335894232597991,0.6341078103719443,0.6346264986794016,0.6351454755713651,0.6356647592536706,0.6361843082884968,0.6367041523786778,0.6372242620991804,0.6377446775711231,0.6382653417409359,0.6387863218864824,0.639307557619426,0.6398290762781642,0.6403508674363909,0.6408729554502692,0.6413952937059968,0.6419179433848994,0.6424408409607689,0.6429640335623317,0.6434875175175361,0.6440112495578961,0.6445352529500632,0.6450595576969379,0.6455841127787164,0.6461089473415522,0.6466340262341647,0.6471594051003683,0.6476850025437141,0.6482108836701775,0.6487370238981238,0.649263428739247,0.6497900686432071,0.6503169675503427,0.6508441110960618,0.6513714760724061,0.6518991301901182,0.6524269652999026,0.6529550666238008,0.6534833920050239,0.6540119497964633,0.6545407375359031,0.6550697194666079,0.6555989406145553,0.6561283609226981,0.6566580090973168,0.6571878599277456,0.6577178992139165,0.6582481548474052,0.6587785874512367,0.6593092295082683,0.6598400678160127,0.6603710946624343,0.6609022540790388,0.6614336252827461,0.6619651558164178,0.6624968717537951,0.6630287317419763,0.6635607803082018,0.6640929454817195,0.6646252912048287,0.6651577464717623,0.6656903894529566,0.6662231557549314,0.6667560287312192,0.6672890550074844,0.6678221791024193,0.668355450907704,0.6688888175830844,0.6694222861977746,0.6699558789646061,0.6704895334774978,0.6710232984449936,0.6715571530061853,0.6720910719142716,0.6726250764363297,0.6731591661711824,0.6736932886098885,0.6742274963293571,0.6747617409885125,0.6752960448407135,0.6758303815578456,0.6763647614955793,0.6768991621939762,0.6774335925139631,0.6779680519801538,0.6785025214457386,0.6790370129906771,0.6795714721478623,0.6801059538047027,0.6806404028133358,0.6811748782818592,0.6817093037999227,0.6822437203844558,0.6827781052549874,0.6833124658044074,0.6838467711678866,0.6843810469169291,0.6849152740791646,0.6854494493652945,0.6859835649109719,0.6865176170004642,0.6870516091056026,0.6875855531885129,0.6881194326776547,0.6886531932336414,0.6891869286762239,0.6897205252709488,0.6902540759814786,0.6907875190394227,0.6913209064451122,0.691854151224668,0.6923873360262653,0.6929204278941178,0.6934534028717732,0.6939863031638356,0.6945190846940172,0.6950517609561349,0.6955843470632596,0.6961168260212973,0.6966492059479129,0.6971814648027644,0.6977136171882614,0.6982457065318135,0.6987776254635811,0.6993094634794277,0.6998411988026876,0.7003728315779214,0.7009043330475334,0.7014357654234468,0.701967071504457,0.7024982727233584,0.703029397925244,0.7035603736792498,0.7040912877576133,0.7046220724866423,0.7051528065013943,0.7056833711209894,0.7062138873754172,0.7067442921036459,0.7072746029297365,0.7078048353574233,0.7083349756575144,0.7088650436322123,0.7093949814626849,0.7091315420887714,0.7096736818382214,0.7102156017201201,0.710757323633707,0.711298919831705,0.71184031345859,0.7123815050745637,0.7129225334716134,0.7134633617496917,0.7140039563799689,0.7145443579402214,0.7150846444492563,0.7156245835844917,0.7161643746301454,0.7167039571441403,0.7172432984799472,0.7177824828331257,0.7183214206003543,0.7188601016002508,0.7193985783387754,0.7199368317667364,0.7204748309768706,0.7210126619538417,0.7215501848488525,0.72208755707536,0.7226246445749713,0.7231615249885996,0.7236981911579244,0.7242346660838489,0.7247708526039274,0.7253068126142458,0.7258425911679164,0.7263781184981192,0.7269134419126032,0.7274485072213248,0.7279834182447941,0.7285180332896595,0.7290525306004472,0.729586744062128,0.7301207796547875,0.7306546306704227,0.7311882939151761,0.7317216833338286,0.7322549895394236,0.732788023759676,0.7333209556320989,0.7338536718159394,0.7343862450486041,0.7349186499364423,0.7354509215320973,0.7359830132519047,0.736515012261866,0.73704683921395,0.7375785759925365,0.738110213648954,0.7386417398033733,0.7391732125783396,0.7397045577620621,0.7402358940138947,0.7407671796039059,0.7412983995738691,0.7418295827608519,0.7423607587960692,0.742891976436754,0.7434231320114043,0.7439543688542463,0.7444856226086882,0.7450168896217284,0.7447847770915061,0.745337376827472,0.7458909910769972,0.7464456196406121,0.7470012938250327,0.7475580785341706,0.7481160427512124,0.7486752043016528,0.7492356139980472,0.7497973156670247,0.7503603059786647,0.7509245884764099,0.7514901830373218,0.7520570540199724,0.7526251778770506,0.7531945553972718,0.753765045047694,0.7540295230354322,0.7546380819246088,0.7552474243062226,0.7558575880208287,0.7564684971912906,0.7570801688046989,0.7576925940751524,0.7583056910650553,0.7589194650237707,0.7595338992803374,0.76014895213403,0.7607646024415728,0.7613808411712369,0.7619976166907885,0.7626149144056995,0.7632327194736314,0.7638510434880877,0.7644697698323505,0.765088936554788,0.765708514855159,0.7658479810024577,0.7664193445572651,0.7669897353264985,0.7675591621083644,0.768127579505222,0.768694985935699,0.7692613822227982,0.7698267930480573,0.7703912091563511,0.7709546892083637,0.7715172028086547,0.7720788172517443,0.7726396362794931,0.7731996023896455,0.7737587980066528,0.7743172297964107,0.7740593000509421,0.7745894426969934,0.7751195947502161,0.7756497762281042,0.7761799874526495,0.7767103212712685,0.7772406110659335,0.7777709835687275,0.7783014487218006,0.7788320127921436,0.7793625473380014,0.7798931981520005,0.7804239767769086,0.7809548163768256,0.7814857296170297,0.7820167586921039,0.7825479135475573,0.7830791639001019,0.7836105190006037,0.7841419905083352,0.7846735839366634,0.7852052812947531,0.7857371310846064,0.786269067906767,0.7868011763113989,0.7873334192197715,0.7878657999189324,0.7883982752807188,0.7889309197363654,0.7894637487923271,0.7899966741743288,0.7905298126219885,0.7910630386663484,0.7915964693065274,0.7921300610095022,0.792663759144244,0.7931976386918221,0.7937317335053581,0.7942659507663017,0.7948002810653169,0.7953348398025364,0.7958695778645836,0.7964044617346352,0.7969394775769756,0.7974747451402061,0.798010144190276,0.7985457116723578,0.7990814658290463,0.7996173738114138,0.8001534778769145,0.800689762577728,0.8012262113783892,0.8017628742025584,0.8022996806658133,0.8028367030841845,0.8033738483256403,0.8039112556438536,0.8044488009908122,0.8049865144666201,0.805524413907191,0.8060624885433398,0.8066007822657074,0.8064799709714262,0.8070076377315841,0.80753531931924,0.8080630299149892,0.8085907592481993,0.8091184982735251,0.8096462996596562,0.8101740728907579,0.8107018969788046]}},\"id\":\"8b8b025e-19af-4c7f-bad1-c87014304e4e\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"line_color\":{\"value\":\"#fdae61\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"bb21f79c-7a03-487d-bea1-f7998dedfcf8\",\"type\":\"Line\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[0.30277732649230255,0.3027773243528187,0.30277732384363676,0.30277732163277865,0.30277776303022685,0.30277883430879293,0.302780533913296,0.30278286209337674,0.30278581968773344,0.3027894074475561,0.30279362577674906,0.3027984730514229,0.3028039498610367,0.30281005622932095,0.3028167921180846,0.30282415748559743,0.3028321522854142,0.3028407764675795,0.3028500299771865,0.3028608141080561,0.3028712951705163,0.30288240513299014,0.3028941438740389,0.30290651126904466,0.30291950718912464,0.3029331315120592,0.3029473841206663,0.30296226491482653,0.3029777414899235,0.3029938718345482,0.30301065495466134,0.30302811364173193,0.30304623908221434,0.30306500753989185,0.30308441761314664,0.30310442567890183,0.3031250236731619,0.3031462495830467,0.30316716047652625,0.3031896124145009,0.30321269152374186,0.30323639766121047,0.30326073067854703,0.3032856904252255,0.30331127674703595,0.30333748948393413,0.3033643284739846,0.3033917935493559,0.30341988454140917,0.3034486012746904,0.3034779435709653,0.3035079112488485,0.3035385041224358,0.3035697220023399,0.3036015646941907,0.3036340320017529,0.30366712372468735,0.3037008396562196,0.3037351795899945,0.3037701433118116,0.3038057306070869,0.3038419412551731,0.30387877503305166,0.3039162317128426,0.3039543110632828,0.3039930128506806,0.3040323368346242,0.30407228277622417,0.30411285042669917,0.30415403953724474,0.3041958498538903,0.3042382811219828,0.3042813330783752,0.3043250054610695,0.3043692979992316,0.30441421042381317,0.30445974245924606,0.3045058938240946,0.3045526642408225,0.30460005341877444,0.3046480610715687,0.30469668690445934,0.30474593061861244,0.3047957919184976,0.30484627049569035,0.3048973660455095,0.3049490782539797,0.3050014068088008,0.30505435139197634,0.3051079116812506,0.3051620873503504,0.30521687807344705,0.30527228351632485,0.30532830334375083,0.3053849372164343,0.30544218479178026,0.3055000457259851,0.3055585196663789,0.3056176062611195,0.3056773051563898,0.3057376159890185,0.3057985383997767,0.3058600720206528,0.305922216479181,0.30598497140628494,0.30604833642326434,0.30611231115398,0.3061768952093662,0.3062420882093875,0.3063078897597447,0.30637429946839495,0.306441316937641,0.30650894177221916,0.3065771735665188,0.30664601191715196,0.3067154564118021,0.3067855066400741,0.30685616218278766,0.30692742262542627,0.306999287545301,0.3070717565165197,0.30714482911118474,0.3072185048986588,0.3072927834420341,0.30736766430592466,0.3074431470481011,0.3075192312229381,0.3075959163923032,0.3076732020943887,0.30775108788367844,0.30782957330211597,0.30790865789058064,0.3079883411895906,0.30806862273011376,0.3081495020452715,0.3082309786659554,0.30831305211655,0.3083957219210329,0.308478987597878,0.30856284866671235,0.30864730463989043,0.3087323550308583,0.30881799934877396,0.30890423709504405,0.308991067776843,0.30907849089087475,0.30916650593750056,0.3092551124129569,0.30934430980243316,0.3094340975981982,0.3095244752872701,0.3096154423535475,0.30970699827611176,0.30979914253077334,0.3098918745960403,0.30998519394453566,0.31007910004222383,0.31017359236000025,0.3102686703612377,0.3103643335085437,0.31046058125829984,0.3105574130684122,0.31065482839635217,0.3107528266890186,0.31085140739618383,0.3109505699653604,0.3110503138366825,0.31115063845899193,0.3112515432619618,0.3113530276897061,0.3114550911680593,0.3115577331331372,0.31166095301591334,0.3117647502357147,0.3118691242197017,0.3119740743917517,0.31207960016684266,0.3121857009657331,0.31229237619957456,0.3123996252815793,0.3125074476205579,0.3126158426211093,0.31272480969466027,0.31283434823755196,0.31294445765518686,0.31305513734168894,0.3131663866926119,0.3132782051039777,0.3133905919666557,0.31350354666845265,0.31361706859338456,0.3137311571312611,0.3138458116685361,0.3139610315750563,0.31407681623519373,0.3141931650200737,0.3143100773088198,0.3144275524718231,0.31454558987341735,0.31466418889434433,0.3147833488865824,0.3149030692203623,0.31502334925511943,0.31514418834757507,0.3152655858640244,0.3153875411532665,0.3155100535680891,0.31563312246521036,0.3157567471915832,0.3158809270931608,0.31600566151621606,0.316130949803125,0.3162567913029028,0.31638318535072496,0.31651013128327665,0.3166376284361527,0.31676567614520607,0.31689427375423,0.31702342057887406,0.31715311595125295,0.3172833591979066,0.31741414965368847,0.31754548663374565,0.31767736946736896,0.3178097974708876,0.3179427699551579,0.31807628624656886,0.31821034567049117,0.3183449475181626,0.31848009111351927,0.3186157757659472,0.31875200078396676,0.31888876547610423,0.3190260691447323,0.3191639110964416,0.31930229063332677,0.31944120705626255,0.31958065966382115,0.3197206477499852,0.31986117062046415,0.32000222756173624,0.32014381786941265,0.3202859408378917,0.32042859575219795,0.32057178190666175,0.32071549858484183,0.3208597450726271,0.32100452065595914,0.32114982462332,0.3212956562468407,0.32144201480735474,0.32158984383294786,0.3217372300261208,0.3218851409565948,0.32203357590123083,0.3221825341856948,0.3223320150465908,0.32248201778448415,0.3226325416542781,0.3227835859623534,0.3229370603329617,0.3230890693157995,0.3232415975523075,0.3233946443443268,0.32354820898740383,0.32370346282137924,0.3238579934898173,0.3240130419825959,0.3241686076309079,0.3243246897384356,0.3244812876327912,0.3246384006207412,0.32479602801661567,0.32495416914820063,0.32511282331629443,0.3252719898425722,0.3254316680374892,0.32559185720917216,0.32575255666707265,0.325914727691033,0.3260764004938663,0.3262385832448004,0.3264012752080624,0.32656447567073454,0.32672818393027286,0.32689239926822783,0.3270571209602987,0.32722234826779084,0.32738808048565976,0.32755431687648695,0.32772105671154717,0.3278882992520387,0.32805604377512143,0.32822428950511806,0.328393035740746,0.328562281701224,0.32873202666292933,0.3289022698485235,0.3290730105148692,0.3292442478993849,0.3294159812303475,0.3295882097511111,0.3297609326698837,0.32993414920904146,0.3301078586092401,0.3302820600549131,0.33045675277183645,0.33063193595728957,0.3308076088108569,0.3309837705278592,0.33116042029213477,0.3313375572895767,0.33151518069465774,0.3316932896905951,0.33187188341871376,0.33205096105644943,0.3322305217614297,0.33241056467087826,0.3325910889321504,0.33277209367524757,0.332953578027278,0.33313554111198723,0.33331798203349444,0.3335008999015651,0.33368429381224235,0.33386816283289045,0.33405250605995546,0.33423732254569527,0.33442261134462337,0.33460837151232015,0.33479460204756556,0.33498130198656684,0.33516847032270813,0.33535610604393756,0.33554420810182933,0.33573277544490066,0.3359218070100361,0.3361113016950343,0.336301258368081,0.33649167589111395,0.33668255306517203,0.3368738886812488,0.3370644969064471,0.33725665592933535,0.33744926159052785,0.33764231212882206,0.33783382405717727,0.3380277220409519,0.3382220681314555,0.3384168616649495,0.3386121021656987,0.3388077894081353,0.3390039232276793,0.3392005035774549,0.3393975303127614,0.3395950031759099,0.3397929217942554,0.3399912855913546,0.34019009394836797,0.34038934620530503,0.3405890417671068,0.3407891801951701,0.3409897612902384,0.3411907850078528,0.34139225140289164,0.3415941605384774,0.3417965123207599,0.34199932874747546,0.34220260076409326,0.3424063118582848,0.342610457334003,0.3428150338148735,0.3430200394063933,0.343225473315414,0.3434313354008855,0.34363762571261713,0.3438443443010811,0.3440514911222102,0.34425906597725364,0.344467068530753,0.3446754983224698,0.344884354830393,0.34509363744823696,0.3453033454871491,0.3455134782759343,0.3457240350812451,0.3459350151373917,0.3461464177124286,0.3463582420144299,0.3465704872717464,0.34678315271778304,0.34699623757573955,0.347210586581127,0.34742447541648697,0.3476387820959812,0.34785350577074675,0.34806864573934926,0.3482842011447443,0.34850017132119354,0.34871655540004803,0.3489333583048664,0.34915057323994797,0.3493681991693539,0.3495862354124306,0.3498046811893453,0.350023535836997,0.3502427985618194,0.35046246859415214,0.35068254519718456,0.35090302761107245,0.3511239151240839,0.3513452069291575,0.35156690227853965,0.35178900043912364,0.3520115006589203,0.35223440216685703,0.35245770414614097,0.35268140595077085,0.35290550668051135,0.3531300056574509,0.3533549021286081,0.3535801952983088,0.35380588441070754,0.35403196867935255,0.3542584474005015,0.3544853196921082,0.35471258494566493,0.3549402423236338,0.35516829093815727,0.3553967302291901,0.35562555930423084,0.3558547774726267,0.3560843839383484,0.35631437793255866,0.35654475868684515,0.35677552546690083,0.35700667751583964,0.3572382140262354,0.3574701343076809,0.3577024375466781,0.35793512303898417,0.35816818998342376,0.35840163766274147,0.3586354653028647,0.3588696721764309,0.35910425751967084,0.3593392206061466,0.35957456064810905,0.3598102769645978,0.36004636874373264,0.360282835334508,0.3605196759163629,0.3607568898427755,0.3609944763223412,0.36123243464580324,0.361470764128541,0.3617094640433732,0.36194853370726404,0.36218797235965045,0.3624277793558541,0.3626679540488767,0.3629084957253959,0.36314940379762645,0.3633906775899151,0.3636323164899829,0.3638743199772792,0.36411668745697545,0.3643594184259437,0.3646025124203911,0.3648459689894583,0.36508978775439926,0.3653339683956985,0.3655785105607277,0.36582341408797425,0.366068678634519,0.3663143040388874,0.36656029002846174,0.3668066362632449,0.36705334230651454,0.36730040758226334,0.36754783132954444,0.3677956124070695,0.36804374956385155,0.3682922411936328,0.3685410853433744,0.36879028007968073,0.36903982310246636,0.36928971220760015,0.3695399451419284,0.36978961856757186,0.37004049206744527,0.3702917075187641,0.3705432630938897,0.3707951569236406,0.3710473871514951,0.37129995180056363,0.3715539783332945,0.37180723596609794,0.37206082513725347,0.3723147441408322,0.3725700377140676,0.3728246014949471,0.3730795040905899,0.3733347449694112,0.3735903235330313,0.373846239330907,0.3741024917926727,0.3743590804323847,0.3746160046628059,0.37487326395672954,0.37513085776772376,0.3753887854965455,0.3756470464932655,0.3759056401009473,0.37616361762925027,0.3764228594860703,0.3766824291325402,0.37694232591712373,0.3772025491779526,0.3774630982633404,0.3777239724903221,0.3779851711798501,0.37824669363915286,0.3785085392014972,0.3787707071691655,0.3790331968570071,0.37929600758038506,0.3795591386642526,0.3798225894330597,0.38008635924293777,0.3803504474373791,0.38061485338806117,0.38087957646770954,0.3811454242861324,0.3814107088754395,0.3816763072007905,0.38194222123998167,0.38220845275601495,0.38247500311823174,0.3827418732046737,0.38300906317355443,0.38327657249959873,0.3835444000624425,0.3838125442855319,0.38408100334229706,0.3843497753501676,0.3846194879642829,0.38488871171424915,0.38515843505760133,0.38542838371022836,0.3856986177479515,0.38596917920917617,0.38624077467286255,0.3865117341287832,0.38678312612987276,0.3870548825443619,0.38732697066464244,0.3875993745155569,0.3878720864968863,0.38814510286659437,0.3884184212750432,0.38869204027520105,0.38896595935368944,0.3892401770455884,0.38951469307488806,0.389789506671088,0.3900646169464628,0.3903400233999206,0.390615725410329,0.3908917227828015,0.3911680156313619,0.3914446042344175,0.3917214913353754,0.3919986838956986,0.3922761973353119,0.3925540651190331,0.3928323568106605,0.3931102447659687,0.3933889117919671,0.3936678972728145,0.3939471758309883,0.39422665315235367,0.394506543786645,0.3947868424560063,0.39506662846321605,0.39534726671196585,0.3956281932239816,0.3959094087925431,0.3961909140913276,0.39647270954792113,0.3967547952002355,0.3970371704779611,0.39731983424894496,0.39760278465430315,0.39788601947996316,0.3981695360168164,0.3984533313411192,0.3987374024232316,0.39902100496211684,0.39930554818335473,0.39959036638481443,0.3998754589423273,0.4001608252329101,0.4004464646553937,0.400732376595833,0.40101856049407947,0.4013050157440968,0.40159174178173135,0.40187873802068785,0.40216600391356166,0.40245353887445573,0.40274134235852654,0.4030294137862049,0.4033177526000768,0.40360635822671204,0.40389523012310485,0.4041843677026083,0.40447377040209476,0.4047634376650065,0.4050533689189541,0.40534356358716495,0.4056340211214602,0.4059247409440657,0.4062157224907431,0.4065076891559769,0.4067991752699334,0.40709092311472145,0.4073829321045538,0.40767520169954985,0.40796773118514085,0.4082605200775493,0.408553567699121,0.40884687350417726,0.4091404366734237,0.40943425680727996,0.40972833322400826,0.4100226652875794,0.41031725233620187,0.41061209382761427,0.41090718910279145,0.41120253761941666,0.4114981387231149,0.4117939918752613,0.412090096377009,0.412386451729136,0.41268305735163113,0.4129799126128925,0.4132770169641743,0.4135743698298863,0.4138719706348937,0.4141698188371442,0.41446791382302295,0.4147662550998678,0.4150648420471019,0.41536367419269254,0.4156627508455756,0.4159620716191275,0.4162616358807775,0.4165614430653072,0.4168614926758092,0.4171617841914102,0.41746231704234077,0.4177630907160721,0.4180641046245153,0.4183653583086878,0.4186668512103023,0.41896761577738995,0.4192695662792992,0.4195717541165296,0.41987417857064563,0.4201768391668176,0.4204797353424812,0.42078286664163617,0.4210862325546253,0.4213885003035549,0.42169231498744586,0.4219963623992954,0.42230064209953017,0.4226051535915755,0.42290989639137566,0.42321487001247626,0.4235200739434664,0.4238255077545718,0.4241311709132678,0.42443706297602224,0.42474318343144324,0.42504953179190025,0.4253561075882796,0.42566291031914405,0.4259699395126862,0.4262771947057729,0.42658467536768724,0.42689238105302535,0.4272003113050577,0.42750846556166544,0.4278168434268336,0.42812544437233135,0.4284342679238929,0.4287433136114045,0.42905258095656673,0.42936206943760885,0.42967177866715245,0.42998170809771075,0.4302918572963152,0.4306022257332925,0.43091281299206424,0.431223618566168,0.43153464197331587,0.43184588280766206,0.43215734051817734,0.43246901467176113,0.4327809047895798,0.43309301041290466,0.43340533106153123,0.43371786628809417,0.4340306156026741,0.43434357855208844,0.43465675465122705,0.434970143493,0.4352837445412217,0.43559755742745315,0.43591158154426474,0.43622581656560716,0.4365402619688762,0.43685491731906556,0.43716978216530705,0.4374848560165767,0.4378001384355902,0.43811562899969303,0.4384313272194172,0.43874723262298015,0.4390633447756983,0.4393796632538152,0.4396961875674375,0.440012917330915,0.4403298520372381,0.440646991269124,0.4409643345702585,0.4412818815043002,0.44159963162030424,0.44191758449385005,0.4422357396661626,0.4425540967466862,0.4428726551904106,0.4431914146824866,0.4435103747303904,0.4438295349286549,0.44414889481808856,0.4444684540498418,0.44478821204293073,0.44510816846142975,0.44542832295559825,0.44574867912858773,0.44606923808129345,0.4463899939563461,0.44671094638085734,0.4470320949493268,0.44735343910812647,0.4476749785695708,0.4479967128492247,0.44831864158610063,0.44864076423630994,0.448963080540477,0.44928558995469775,0.4496082921250136,0.4499311866651071,0.4502542730935071,0.4505775510081713,0.45090102002990967,0.45122467975031366,0.4515485297014823,0.4518725695430297,0.4521967987649885,0.45252121710907467,0.45284582403690055,0.45317061926601787,0.45349560225912355,0.4538207726919731,0.4541461301584381,0.45447167417974804,0.4547974044415301,0.45512332054209004,0.4554494220664083,0.45577504772667216,0.4561015131910573,0.456428162853104,0.45675499633405214,0.4570820132579908,0.45740921319301964,0.4577365957772848,0.45806416059765365,0.4583919072791567,0.45871983541295497,0.4590479446334034,0.4593762345433737,0.4597047047436898,0.46003335486578306,0.46036218450807204,0.4606911933029658,0.4610203808664626,0.4613497467956424,0.46167929071912045,0.46200901226470836,0.4623389110425621,0.4626689866829302,0.4629992387811247,0.4633296669999426,0.4636602709319969,0.4639910502147353,0.4643220044739533,0.46465313332337976,0.46498443640624554,0.4653159133449272,0.4656475637522272,0.46597938727573074,0.46631138354483054,0.4666435521831641,0.46697589283046387,0.467308405117559,0.46764108867432075,0.46797394312712076,0.46830696813948613,0.4686401633043001,0.4689735283101206,0.46930706276560014,0.46964076629222523,0.46997463858478433,0.47030867922458897,0.47064288788403474,0.470977264202498,0.4713118078149113,0.4716465183683891,0.4719813955243142,0.4723164388995538,0.47265164816286565,0.47298702294355827,0.4733225629034721,0.47365826768561914,0.47399413694596265,0.4743301703307971,0.4746663674832023,0.4750027280621081,0.475339251726717,0.47567593811624115,0.47601278691031407,0.47634979774210584,0.47668697027203066,0.4770243041520786,0.47736179904978315,0.4776994546249136,0.4780372705339156,0.47837524643205537,0.4787133819839166,0.4790516768501259,0.4793901306952541,0.4797287431910954,0.480067513994357,0.48040644275293215,0.48074552915626273,0.48108477286833173,0.4814241735408832,0.48176373085829244,0.48210344448323494,0.4824433140900842,0.4827833393206533,0.4831235199015323,0.4834638554617315,0.4838043456763462,0.4841449902366499,0.48448578881227555,0.4848267410727903,0.4851678466931292,0.48550910535467734,0.4858505167356367,0.48619208050698076,0.4865337963471891,0.48687566395717896,0.48721768299511176,0.4875598531551616,0.4879021740922805,0.4882446455266297,0.488587267115989,0.4889300385501928,0.4892729595371902,0.489616029722302,0.4899592488103329,0.49030261651311147,0.49064613247715194,0.49098979641263923,0.49133360802519804,0.4916775669669591,0.4920216729570181,0.4923659256777915,0.4927103248220208,0.49305487008215076,0.49339956114259614,0.4937443977279679,0.4940893795086678,0.4944345061706224,0.4947797774524041,0.495125193011312,0.4954707525640396,0.49581645580053746,0.49616230242555276,0.49650829214384884,0.49685442464761,0.49720069964022673,0.497547116826477,0.4978936759070254,0.4982403766200972,0.4985872186013346,0.49893420160909224,0.49928132534313313,0.4996285894916347,0.49997599377563656,0.50032353788553,0.5006712215702495,0.5010190444966008,0.5013670063890351,0.5017151069747809,0.5020633459534897,0.5024117230214707,0.5027602379186489,0.5031088903345634,0.5034576800033366,0.5038066066214353,0.5041556699305959,0.5045048696224222,0.5048542054275759,0.5052036770707666,0.5055532842492723,0.5059030266899305,0.5062529041177363,0.5066029162617519,0.5069530628170076,0.5073033435318328,0.5076537581208255,0.5080043062867313,0.5083549877931278,0.5087058023309814,0.5090567496335313,0.509407829428077,0.5097590414555632,0.510110385417906,0.5104618610629904,0.5108134681156852,0.5111652062827111,0.5115170753269804,0.5118690749580806,0.5122212049113399,0.5125734649265884,0.5129258547319546,0.51327837404748,0.5136310226206268,0.5139838001905769,0.5143367064711617,0.5146897412054453,0.5150429041408704,0.5153961950182355,0.5157496135571823,0.5161031594961851,0.5164568325906557,0.5168106325632185,0.5171645591459959,0.5175186121066342,0.5178727911793607,0.518227096087917,0.5185815265871816,0.5189360824193874,0.519290763325319,0.5196455690571533,0.5200004993490621,0.5203555539433385,0.5207107325980664,0.5210660350619072,0.5214214610639031,0.5217770103733982,0.5221326827047825,0.5224884778546258,0.5228443955409077,0.5232004355176874,0.5235565975379182,0.5239128813445781,0.5242692867098835,0.5246258133662477,0.524982461075838,0.525339229599814,0.5256961186680015,0.5260531280643539,0.5264102575259763,0.5267675068085191,0.5271248756767992,0.5274823638842872,0.5278399711841818,0.5281976973388643,0.528555542110237,0.5289135052541408,0.5292715865278304,0.5296297856991898,0.52998810462683,0.5303465431067994,0.5307050991118122,0.5310637724195726,0.5314225627824481,0.5317814699614128,0.5321404937121718,0.5324996337797808,0.5328588899141671,0.5332182619041638,0.5335777494292533,0.5339373523060907,0.5342970702342587,0.5346569029808739,0.5350168503052646,0.5353769119580306,0.5357370876887433,0.5360973772531457,0.5364577804158244,0.5368182968889949,0.5371789264494212,0.537539668867609,0.5379005238748097,0.5382614911942092,0.5386225706149672,0.5389837618514872,0.5393450647021006,0.5397064788836897,0.5400680041083346,0.5404296402000778,0.5407913868276263,0.5411532437853555,0.5415152108853128,0.5418772877893429,0.5422394742628653,0.542601770099459,0.5429641751002928,0.5433266889213477,0.5436893114285125,0.544052042330089,0.5444148813932792,0.5447778284466356,0.5451408832517882,0.5455040455280643,0.5458673151110345,0.5462306917473884,0.5465941752743132,0.5469577654370681,0.5473214619861924,0.5476852647944037,0.5480491735995254,0.5484131882337113,0.5487773084424442,0.5491415340002178,0.5495058648304973,0.5498703006082336,0.5502348411654556,0.5505994863193086,0.5509642358668811,0.5513290895989322,0.5516940473412043,0.5520591089401623,0.5524242740666961,0.5527895426336257,0.5531549144334609,0.5535203892483352,0.5538859668855676,0.554251647194517,0.554617429957959,0.5549833149998955,0.5553493020690352,0.5557153910406311,0.556081581695717,0.5564478738585598,0.5568142673612282,0.5571807619374298,0.557547357466415,0.5579140537570239,0.5582808505640451,0.5586477478439844,0.5590147451942885,0.5593818426297938,0.5597490398004749,0.5601163366489635,0.560483732896118,0.560851228382935,0.5612188229686403,0.561586516403213,0.561954308508847,0.5623221992081303,0.5626901881223467,0.563058275218331,0.5634264602415683,0.5637947429737424,0.5641631233462419,0.5645316010841932,0.5649001760021818,0.5652688479800787,0.5656376167728157,0.5660064821994008,0.5663754440954929,0.5667445022678786,0.5671136565291801,0.5674829067327395,0.567852252613158,0.5682216940546533,0.568591230848173,0.5689608628218259,0.5693305897717933,0.5697004115385552,0.5700703279609852,0.5704403387675436,0.570810443876235,0.5711806430549676,0.571550936103027,0.5719213228781622,0.5722918031992973,0.5726623768773056,0.5730330437023475,0.5734038035247201,0.5737746561276658,0.5741456013714249,0.5745166390746785,0.5748877690482294,0.5752589910483751,0.5756303050335618,0.576001710677155,0.5763732079462144,0.5767447965713478,0.5771164763544315,0.5774882471731985,0.5778601088327493,0.5782320611572456,0.5786041039682375,0.5789762370773147,0.5793484603156437,0.5797207735235109,0.5800931765214906,0.580465669131238,0.5808382511449356,0.5812109224482263,0.5815836828344347,0.5819565321183469,0.5823294701251243,0.5827024967649758,0.5830756117664206,0.5834488149904609,0.5838221062444491,0.584195485424027,0.5845689523066844,0.5849425067179836,0.5853161485191402,0.5856898775158719,0.5860636935575682,0.586437596456425,0.5868115860816964,0.5871856621984065,0.5875598247369946,0.5879340734464014,0.5883084082054068,0.588682828821415,0.5890573351530332,0.5894319270176432,0.5898066042427008,0.5901813666974739,0.5905566718145397,0.5909315892098326,0.591306591779754,0.5916816794584724,0.5920568519758246,0.5924321092200312,0.5928074509450175,0.5931828770616892,0.5935583873050309,0.5939339816395718,0.5943096597752429,0.5946854215280137,0.5950612668845215,0.5954371955099871,0.5958132073167893,0.5961893021430348,0.5965654797359913,0.5969417400365455,0.5973180828409663,0.5976945079679721,0.5980710152322909,0.5984476045651929,0.5988242756582552,0.5992010285167043,0.5995778628172551,0.5999547785016929,0.6003317753640636,0.6007088532538595,0.6010860119638768,0.6014632514143451,0.6018405714220507,0.6022179718073594,0.60259545239854,0.6029730130695291,0.6033506536742127,0.6037283739892801,0.6041061739736369,0.6044840533266014,0.6048620119971103,0.6052400498035745,0.605618166526687,0.6059963621086845,0.6063746363752173,0.6067529890953796,0.6071314202291108,0.6075099295241067,0.6078885168596397,0.6082671821186191,0.608645925109491,0.6090247456874972,0.6094036437053449,0.6097826190087879,0.6101616714622282,0.6105408008935166,0.6109200071768818,0.6112992901130984,0.6116786495798371,0.6120580854687168,0.6124375975635613,0.6128171857494192,0.6131968498825677,0.6135765898453407,0.6139564054164366,0.6143362964619491,0.6147162629404944,0.6150963045779502,0.6154764213124617,0.615856612989309,0.6162373842199187,0.6166176982829812,0.6169980867732123,0.6173785495700849,0.6177590866396634,0.6181396978803164,0.61852038316106,0.6189011425300354,0.6192819758336288,0.6196628830932719,0.6200438642415467,0.6204249193118763,0.6208060482815613,0.6211872511571342,0.6215685279550925,0.621949878674597,0.6223313033546735,0.6227132376773072,0.6230947595842917,0.6234763613623435,0.6238580430525792,0.6242398046715426,0.6246216456597322,0.6250035662127068,0.6253855661184651,0.625767645186085,0.6261498032644824,0.6265320404236945,0.6269143561602067,0.6272967505741205,0.6276792235399892,0.6280617748276452,0.6284444042152147,0.6288271118544361,0.6292098972154238,0.6295927605202607,0.6299757012870442,0.630358238047194,0.6307412727616286,0.6311243785825829,0.6315075553079182,0.631890802630153,0.63227412031651,0.6326575081834397,0.6330409659712963,0.6334244934435347,0.6338080904209316,0.6341917566361409,0.6345754919249521,0.6349592962001939,0.6353431691238732,0.6357271106372185,0.6361111204239585,0.6364946892422949,0.63687880452416,0.6372629874393486,0.6376472379246177,0.6380315558188517,0.6384159410622166,0.6388003934386587,0.6391849128781079,0.639569499299647,0.6399541525769488,0.6403388724811613,0.6407236590177409,0.6411085120462612,0.6414934314232869,0.6418784170336974,0.6422634687863559,0.6426485865533869,0.6430337702360489,0.64341901968428,0.6438043348135156,0.644189715504964,0.6445751616241573,0.6449606730992596,0.645346249765084,0.6457318915647958,0.6461175983698714,0.6465033700606275,0.6468892064607618,0.6472751075792686,0.6476610732594599,0.6480471033558705,0.6484331978216497,0.648819356442765,0.649205579245706,0.6495918660120451,0.6499782166460447,0.6503646310787934,0.6507511092302753,0.6511376508913128,0.6515242559960043,0.6519109244824638,0.6522976562276005,0.6526844510722539,0.6530713089261971,0.6534582297265913,0.6538452133281012,0.6542322596206442,0.6546193685343688,0.6550065398894842,0.6553937736890384,0.655781069709218,0.6561684279098076,0.6565558482060599,0.6569433304523195,0.6573308745851528,0.6577184803814294,0.6581061479693512,0.6584938770095743,0.6588816674805391,0.6592695192728818,0.659657432295178,0.6600454065058372,0.6604330285950786,0.6608211144303695,0.6612092608389974,0.6615974677531268,0.6619857350074042,0.6623740625282497,0.6627624502225791,0.6631508979321283,0.6635394056154255],\"y\":[0.5508895521323396,0.5509003797076105,0.5509123028075122,0.5508667231979496,0.5506556562188677,0.5504475040082932,0.5502384596106382,0.550034653677116,0.5498345976574763,0.549636322215576,0.5494382322431284,0.5492413640666375,0.5490445099762943,0.5488475949443233,0.5486506155790761,0.5484535712120606,0.5482564635647647,0.5480592975595782,0.5478620816760355,0.5472512677872887,0.5470444956787932,0.5468381547126536,0.5466323258061183,0.5464270940935022,0.5462225487702393,0.5460187863765154,0.5458159035971677,0.5456140045562625,0.5454260250216093,0.5452319353597599,0.5450312657805649,0.5448233905318729,0.5446069827747535,0.544389840032572,0.5441735108222304,0.5439668568406454,0.5437686318183709,0.543570849947736,0.5438049967993622,0.5435979776932256,0.5433909875133408,0.5431840352434092,0.5429771196387925,0.5427702478965742,0.5425634210674951,0.5423566411423796,0.5421499115728451,0.5419432353718295,0.5417366137942164,0.5415300525589326,0.5413235501648056,0.541117110260142,0.5409107346523979,0.5407044249647767,0.540498180549237,0.5402920103718362,0.5400859082312061,0.5398798768062658,0.5396739199323364,0.5394680386223114,0.5392622295204837,0.539056497778255,0.5388508445209039,0.5386452671309309,0.538439766346518,0.5382343455993951,0.5380290019233854,0.5378237411494369,0.53761855804015,0.5374134564416678,0.5372084312400928,0.5370034880725593,0.5367986224715506,0.5365938426707814,0.5363891370547268,0.5361845132132508,0.5359799704685915,0.5357755034918731,0.5355711173035703,0.5353668081676108,0.5351625810828853,0.5349584325480543,0.534754359577164,0.534550363835997,0.534346445030259,0.5341426025496157,0.5339388358949686,0.5337351428630104,0.533531528579237,0.5333279846273274,0.5331245188657412,0.5329211244549905,0.5327178002771601,0.5325145527268309,0.5323113742552024,0.532108267016813,0.53190522975233,0.5317022621313777,0.5314993612294757,0.531296533880497,0.5310937689602147,0.5308910736616839,0.5306884483547116,0.5304858854852381,0.5302833848253117,0.5300809488269614,0.5298785823469261,0.5296762761013699,0.5294740362171643,0.5292718539933849,0.5290697338371295,0.5288676702625403,0.5286656730534655,0.5284637324347956,0.5282618507789203,0.5280600260238099,0.527858259524692,0.5276565489909971,0.5274548908106138,0.5272532919645315,0.5270517476509304,0.5268502570394441,0.5266488239292025,0.5264474369879405,0.5262461080961574,0.5260448276702258,0.5258435918553369,0.5256424212494518,0.5254412920500666,0.5252402093591723,0.5250391789099511,0.5248381965179189,0.5246372621842453,0.5244363782600139,0.5242355366080287,0.5240347403082256,0.5238339912252962,0.5236332852750363,0.5234326253249778,0.523232012419991,0.5230314380386074,0.5228309097485254,0.5226304262164324,0.5224299850217886,0.5222295814604903,0.522029219648817,0.5218289007564403,0.52162862758226,0.5214283894153673,0.521228189849511,0.5210280322579424,0.5208279127080948,0.5206278354110382,0.5204277957222436,0.520227793382644,0.5200278329391291,0.5198279022967415,0.5196280185765287,0.5194281667017236,0.5192283566487292,0.5190285786332465,0.518828837764766,0.518629138240401,0.5184294709617379,0.5182298462916647,0.5180302548442447,0.5178306935161046,0.5176311758842294,0.5174316893340243,0.5172322469646596,0.5170328300772669,0.5168334541909757,0.516634119213853,0.5164348114429963,0.5162355418640623,0.5160363120692125,0.5158371125241301,0.5156379550795093,0.5154388298323174,0.5152397392647271,0.5150406883393293,0.5148416735671016,0.5146426922053684,0.5144437516924911,0.5142448459528584,0.5140459752192101,0.5138471423707127,0.5136483491718079,0.5134495921939476,0.5132508705723696,0.5130521882859299,0.5128535426083578,0.5126549403977617,0.5124563765496877,0.5122578503959095,0.5120593606974518,0.5118609057356386,0.5116625009036103,0.5114641262807812,0.5112658048159653,0.5110675158593506,0.5108692692843885,0.5106710580933818,0.5104728934523999,0.5102747724519199,0.5100766978617562,0.5098786566469761,0.5096806654279374,0.5094827225840393,0.5092848154495946,0.5090869565902558,0.5088891406644486,0.5086913763746228,0.5084936618408058,0.5082959856593833,0.5080983534247312,0.5079007703314554,0.5077032484567838,0.5075057666689866,0.5073083331030025,0.507110940150578,0.5069136055318014,0.5067163214734,0.5065190905533568,0.506321916174958,0.506124782351176,0.505927694788807,0.5057306890425375,0.5055337176318341,0.5053367986723144,0.5051399309982796,0.5049431212702241,0.5047463720837102,0.5045496677374868,0.5043530278672169,0.5041564330284286,0.5039599053658581,0.5037634263864013,0.5035669918599812,0.5033706303656612,0.5031743179880301,0.5029780511246454,0.5027818502669447,0.502585695688376,0.5023895937383852,0.5021935488134478,0.5019975456623609,0.5018015954677101,0.501605705743862,0.5014098521589386,0.5012140360587811,0.5023119510328179,0.5021066874730316,0.5019010120908469,0.5016949036927563,0.5014884293728298,0.501281494933746,0.501074126789138,0.5008662563645427,0.5006579188453114,0.5029646865783666,0.5027074493143612,0.5024492425853464,0.5021900450359532,0.5019298333133971,0.5029831681712389,0.5026740602120019,0.5023641826283163,0.5020535505284407,0.5017421630747637,0.5014300337948249,0.5011171693206793,0.5008035778495301,0.5004892789116471,0.5001742784498625,0.4998585928064943,0.49954223949397075,0.49922522958960613,0.49890758205170105,0.4994894729639429,0.49914533843635867,0.49880096447729966,0.49845637080002986,0.4981115755740276,0.4977666037380064,0.49742148012095877,0.4970762275517037,0.49673086745832523,0.4963854281468365,0.4960399424809733,0.49569443300812477,0.49534892817527154,0.49500346064835593,0.49465805496630405,0.4943127517221692,0.49396758616312714,0.49362258162916645,0.4932777812083154,0.49293322246406146,0.4925889395987668,0.4922449730487742,0.49190136263954404,0.49155815012243476,0.4912153820642288,0.49087309337188667,0.4905313360283175,0.4901901542492259,0.48984959747612455,0.48950970750814604,0.4891705429059785,0.48883215136316605,0.4884945866449043,0.48815789863062015,0.4878221459862783,0.48748738776062317,0.48715368211856974,0.48682108351775266,0.4864896596461603,0.48615946544283656,0.48583057745947555,0.4855030601704702,0.4851769757174857,0.4848524079716404,0.4845294206740191,0.4842080901552464,0.48388851015747014,0.4835707558726737,0.48325492832389644,0.4829410939677074,0.482629374633967,0.4823198592868975,0.4820126660442503,0.4817079071273655,0.4814057032573932,0.4811061801706262,0.4808094800735391,0.4805157549414266,0.48022515740413513,0.47993785757807306,0.4796540352454443,0.4793738935855334,0.47909763126906085,0.47946817300448197,0.47926188466209446,0.4790655613444415,0.4788798622880304,0.4806406491972379,0.4805137479651673,0.48039183492675097,0.4802744805305416,0.48016102451522436,0.4800504882436759,0.47994180035353945,0.4798336696497269,0.479724938993973,0.4796145504349414,0.4795015097853343,0.47938513407952316,0.47926476552497804,0.4791398189497971,0.4790097296728846,0.47887385000971244,0.4787313247605965,0.4785812932700103,0.4784228907913782,0.47825542123201975,0.47807855580898867,0.4779442082460689,0.47783604616868913,0.4777225850287864,0.47759752878409173,0.4774581613454281,0.47730486816361023,0.47713950195643007,0.4769642058134684,0.47678096853951996,0.4765914729541572,0.47639708854312446,0.4761988258981285,0.47599753242584286,0.4757938261034091,0.4755882085773328,0.47538106531518026,0.4751727031318876,0.4749633491591741,0.47475319999129073,0.474542380414672,0.47433102865899623,0.4741192344381433,0.4739070494453177,0.4736945735549943,0.47348186269428844,0.47358724513461425,0.4734020285146023,0.4732151530995131,0.47302654894183765,0.472836346686397,0.4726446712759919,0.47245136502354795,0.47225663506232984,0.4720598579600873,0.4718619781309004,0.47166320764418457,0.4714634449342613,0.47126274221081327,0.47106109175034466,0.4708585517964463,0.47065517536798124,0.4704509148406091,0.47024583197799313,0.4700400007534372,0.46983331414144924,0.4696259238451584,0.4694177646968978,0.46920895665394774,0.46899946652229635,0.4687894197001935,0.46857871791974137,0.4683675335082151,0.46815573248438025,0.4679434959526396,0.4677307766963923,0.46751757460104487,0.4673040266721976,0.46709006954976007,0.46687583205739225,0.4666612187782214,0.46644635041353455,0.4662312542044353,0.4660158928108572,0.4658003277225119,0.4655846079744315,0.465368770895406,0.4651528103419098,0.46493674323674905,0.46472062688654536,0.46450436899153513,0.46428821185768754,0.46407196297440945,0.463855766171709,0.4636396238349885,0.46342350781137376,0.46320752217153505,0.4629915376951457,0.4627757208224497,0.4625599898996192,0.4623443644896743,0.46212899530044815,0.46191368151130124,0.46169866084739697,0.4614837443036205,0.4612690941410437,0.4610546100808025,0.46084032227121285,0.4606263073239939,0.460412515784329,0.4601989508720523,0.45998558132241546,0.45977248285317146,0.4595596803967076,0.4593470287595366,0.4591346662566914,0.4589225186728708,0.45871052372891535,0.4584987260600149,0.4582870013548834,0.4580755406793753,0.4578640772784871,0.45765263442567694,0.4574412649378502,0.4572297838293668,0.45701829265693444,0.4568067061830518,0.4565950795051841,0.4563834575387612,0.4561717159770253,0.45596028235771713,0.4557491634896299,0.45553862112797167,0.4553288628715451,0.4551203127006269,0.4549132967498148,0.45470809362880443,0.4545050945622451,0.4543046432554389,0.4541067847342138,0.4539117511360107,0.4537195062231816,0.45352988230472097,0.4530801381512133,0.4528636378971415,0.452646022166948,0.4524268821990825,0.45220601718194575,0.45198330403611736,0.451758936410812,0.45204954368331646,0.45185656974437693,0.45165831910816845,0.4514617269442835,0.4518367325139652,0.4516754446201544,0.45151578523025426,0.45135777077282385,0.4512015069205813,0.4510468619802798,0.4508939180668311,0.4507425654186839,0.4505927536389982,0.45044438419860283,0.4502972871424431,0.4501513092816312,0.4500062232154051,0.4498617631314945,0.4486594492371612,0.4484719880998886,0.4482842065929793,0.4480959640139311,0.4479071075281438,0.4477174748480693,0.44752682276834865,0.4473349369688733,0.44714154484536034,0.4469463991527054,0.44674921538541656,0.4465496804244073,0.44634752061807803,0.4461425267427193,0.4459344375011235,0.44572314878075325,0.44550858462057885,0.4452907357995175,0.44506971702799175,0.4462342472850731,0.44595617760054873,0.44566529174149394,0.4453626873923674,0.4450499814684993,0.4447295291022852,0.4444041015950814,0.44407700647222154,0.443751751470224,0.44343186742954194,0.44312047723348286,0.44282009684338375,0.44253241773950175,0.4432819505038661,0.4428423229625384,0.4425792248033949,0.44217003851614856,0.44175355541754285,0.4413903215713405,0.44134667236829017,0.44105708834114377,0.44077627116202683,0.4405093663606499,0.4402561283994189,0.4400143357816489,0.4397811597199308,0.43955409472239304,0.4393312242184968,0.4391110924665727,0.4388927111351041,0.43867553069738474,0.43845923307590867,0.43824367509610324,0.4380290414336366,0.43781564204048906,0.4376041656396478,0.43739559273720197,0.4371914061042752,0.43699380987004566,0.43680547230984135,0.4366293877958304,0.4364682193026217,0.4363227909058427,0.43618936389237883,0.43580525431479966,0.4357385923257929,0.43573100194852166,0.43574277366390135,0.43562018899671323,0.43559437443517207,0.435636253370079,0.4343187418156277,0.43419098001150663,0.43407595695778367,0.43397183986994636,0.4338762324948013,0.43378625967992723,0.43369888140516466,0.4336110342446202,0.4335199844460194,0.4334232144488356,0.43331870883806517,0.43320492700806246,0.43308076759924286,0.4329455130346365,0.43124648245866726,0.4310453635750934,0.4308421509879195,0.43063670456613307,0.4304289634747981,0.4302189517191422,0.4300066947208457,0.4297923363043169,0.4295760002222502,0.42935785284386646,0.42913803415515583,0.4289167682136978,0.4286942023693187,0.42847054712759436,0.4282459198353482,0.4280205345573638,0.42779447653475366,0.4275679283310414,0.42734097158774953,0.4271137227189626,0.42688624639320905,0.426658678781959,0.4264310212250291,0.4262033789490247,0.4259757713427899,0.42574825823602286,0.4266650625810437,0.4264027049604378,0.42614100703382035,0.4258800116964818,0.42561977695785735,0.42536041596269647,0.42510193026456916,0.42484438181001966,0.4245877334985576,0.4243320806968145,0.42407738658740496,0.4238236096993044,0.42357082924763023,0.42331899651601607,0.4230680707108125,0.4228180819451327,0.4225690045264921,0.4223207884222968,0.42207343785165574,0.4218269060510813,0.42158119643714315,0.42133623951886434,0.4210920689535236,0.420848622842135,0.4206058741979836,0.4203638331660983,0.4201224174038209,0.419881638680888,0.41964143522264247,0.4194018543062053,0.41916281970152885,0.4189243188374134,0.4186863064596228,0.41844880981880267,0.41821179145356535,0.41797521301109614,0.41773906019795887,0.41750329523121066,0.4172679526096741,0.417032997560933,0.4167983833831144,0.4165641280732599,0.4160982158621474,0.41587664557302906,0.4156569365703097,0.4154371459132785,0.4152172148154573,0.41499722683605045,0.41477712582274673,0.41455697773697847,0.41482716277133685,0.41461450922345683,0.4144025037997811,0.4141911353788833,0.41398028519544927,0.4137699336908508,0.4135600128217546,0.413350462630919,0.4131412391702276,0.41293237456937903,0.412723758323143,0.41251543788996825,0.41230727277779233,0.4120994175582192,0.4118916920750853,0.4116841258411857,0.4114767424291863,0.41126956413365795,0.41106245282461296,0.4108555273081485,0.4106486677269124,0.4104419644555477,0.4102353876249403,0.410028886523709,0.4098224943164686,0.40961617401547906,0.4094099577346224,0.40920384931353093,0.4089978183036303,0.40879193845635575,0.40858605745353477,0.4083803203927952,0.40817466683404663,0.4079691160395787,0.40776367502980254,0.4075583081239018,0.40735305366590513,0.407147929595541,0.4069429015148969,0.4067379719616251,0.40653313487126697,0.4063284873648905,0.4061239046079998,0.4059195205242413,0.40571519642909104,0.40551111589326577,0.40530708305848995,0.40510330180109544,0.4048996144895872,0.40469614249086333,0.40449287894323394,0.40428974448485716,0.40408686729442117,0.4038841482490732,0.4036816951432593,0.4034794371128822,0.403277416136124,0.4030756182809257,0.40287408912559347,0.4026728713155949,0.40247189665771227,0.4022711725656366,0.4020707562319613,0.4018706460632308,0.4016708697896469,0.4014713989434778,0.4012722630253542,0.4010734422573395,0.4008750148212293,0.40067688642681787,0.400479146535628,0.4002817868352977,0.4000848012044511,0.3998882059337025,0.39969196064964424,0.39949617092663103,0.3993007702072824,0.3991057430962227,0.39890510539558577,0.3986967119829605,0.39848830003266517,0.3982798304628769,0.39807130401708946,0.39786280194988166,0.39765429339116815,0.39744579453226425,0.39723718578691936,0.39702866167005196,0.39682005248561714,0.3966114181414468,0.3964028262532033,0.3961941985562606,0.39598549628728646,0.39577684505303945,0.3955681738397823,0.3953594763940414,0.39515076001144284,0.39494206891178213,0.39473340590922745,0.3945246722347135,0.39431591732692617,0.3941071757251259,0.39389841852316454,0.3936896745133786,0.3934809327156324,0.39327223791747273,0.393063458543853,0.39285467599170104,0.3926459345458669,0.39362932337345446,0.39342689671302716,0.39322447800341354,0.39302204767506754,0.3928196039082565,0.3926171926191343,0.3924147984533299,0.3922123733644801,0.3920099893254808,0.39180761043795964,0.39160522578251167,0.3914028645106807,0.3912005254558921,0.3909981519021749,0.390795840995226,0.3905934992121092,0.3903911758993432,0.3901888708448141,0.38998657326589514,0.3897842636475291,0.3895820179287847,0.3893797272540002,0.3891774828861965,0.38897523555704455,0.3887730358111876,0.3885707850827238,0.3883686210347678,0.3881664153969192,0.3879642570207475,0.38776209424998853,0.38755996869507925,0.38735783612153774,0.3871557534720058,0.3869536360451832,0.3867515881815253,0.38654950698994267,0.3863474649332018,0.3861454420107041,0.3859434377960797,0.38574147216532967,0.38553949120165837,0.38533755366342987,0.38513563119114524,0.3849336921422417,0.38473181067411344,0.38452993613622166,0.3843280889090404,0.3841262618361408,0.3839244825379409,0.3837226967981005,0.38352090014253193,0.38331916836903906,0.38311745652348445,0.3829157762794533,0.38271407900094123,0.38251243104675076,0.3823108264853865,0.382109204706654,0.3819076538129923,0.38170608225239255,0.3815045840226468,0.3813030469037125,0.38110157704808834,0.3809001305553454,0.3806987119425242,0.3804973392640866,0.38029594723583293,0.38009460334322087,0.3798932951794579,0.3796920084952651,0.3794907753432044,0.3792895369074234,0.37908834297640526,0.37888714866405565,0.378686000722877,0.3784849106071257,0.37828382058001064,0.3780827541791932,0.37788171964559913,0.377680738860028,0.3774797568799218,0.3772788593851826,0.3770779203214706,0.3768770430588619,0.37667623871467837,0.37647541999538897,0.37627464470048383,0.3760739001780537,0.3758731586278888,0.37567249187191754,0.3754718392932453,0.3752712460910799,0.37507065531302075,0.374870107025696,0.3746695676865161,0.37446907091669723,0.3742686236166396,0.3740682003392061,0.3738678246326009,0.3736674894789466,0.37346715942948644,0.3732668541757291,0.37306663202896073,0.37286637570092035,0.37266621619978374,0.37246605272334626,0.37226590132159443,0.3720658229145357,0.3718657862820768,0.3716657447715592,0.37146574921918224,0.37126579437955287,0.3710658892402355,0.3708660015205479,0.37066611846022834,0.37046631453701157,0.37026648968882797,0.3700667333434121,0.36986699628510217,0.369667296498373,0.3694676398477225,0.3692679913091333,0.3690683945704052,0.3688688115528349,0.36866929608904864,0.3684697799503194,0.36827025678141156,0.3680708362438443,0.36787140524689016,0.3676719950538082,0.36747262258458263,0.3672732602196956,0.36707396086677235,0.3668746456720994,0.3666753730853695,0.36647617080520767,0.3662769493547221,0.36607773159765417,0.3658785712195672,0.36567942046810925,0.3654803110880906,0.3652812099266073,0.3650821685177939,0.36488310935562085,0.3646840752027488,0.36448506683183635,0.3642860408351137,0.36408706632657944,0.3638881122738881,0.36368919203873856,0.3634902408960969,0.3632913578767054,0.3630924344358521,0.36289357556633717,0.3626947216131045,0.36249586037677584,0.36229698431288004,0.3620981766909375,0.3618993581355061,0.36170052452361884,0.3615017196079351,0.36130293218935167,0.3611041320150795,0.36090537688449,0.3607066021166998,0.36050780117086967,0.36030905888833326,0.3601102621203463,0.35991149066750167,0.35971275903276817,0.3595139966347792,0.3593151928458091,0.35911643452671294,0.3589176979908873,0.3587188925496705,0.35852010976592424,0.35832134737221627,0.35812255982762853,0.3579237364133115,0.357724926177508,0.35752615842798624,0.35732732784645393,0.3571284627882912,0.35692964682004275,0.3567307982125147,0.3565318952038716,0.3563330232263773,0.35613413104374714,0.35593521643604087,0.3557363150309926,0.3555373789865999,0.35533838991039896,0.3551394407014193,0.35494040792184545,0.35474142705585704,0.3545423838012932,0.35434330361768357,0.3541442301933651,0.35394512431321296,0.3537459967342208,0.3535468795222305,0.3533477141436963,0.35314849478747545,0.35294927205889987,0.35275002879230194,0.35255075618450044,0.3523514528025255,0.35215215887372225,0.35195277270062886,0.3517533789298241,0.35155398057859444,0.3513545342503216,0.35115508624694897,0.3509555791214445,0.3507560185715191,0.35055648028938874,0.3503472569073501,0.3501278938944065,0.3499064720318367,0.3496830966934906,0.3494579534475347,0.3492311504845175,0.3490028479114488,0.34877323387596043,0.3485424045394767,0.34831050788068213,0.3480778052435175,0.3478443073770262,0.34761024732531187,0.3473757395353338,0.3471409233936353,0.3469058655354784,0.3466706876884752,0.34643547672158065,0.3462003730562748,0.34596545882480867,0.34573086462964475,0.3454965756259204,0.3452627133034978,0.34502944358542653,0.344796735891275,0.34456470061328587,0.3443333949787854,0.3441028587422035,0.3438732737052154,0.3436445066898491,0.3434168161365239,0.34319009452068255,0.34296434481221416,0.34273974139962926,0.3425163041989118,0.34229394830391235,0.34207274699878437,0.34185274448700337,0.3416338653494232,0.3414162131104043,0.3411997722806896,0.340984467990388,0.3407703458701067,0.34055745708927626,0.34034568743472476,0.3401350832633612,0.33992560049150405,0.33971720675621103,0.3395099895169813,0.33930382087872346,0.33909870626567923,0.3388945556963754,0.3386914674792884,0.3384894377316982,0.33828823171341355,0.33808806583437456,0.337888689199405,0.33769030458105953,0.33749269770355866,0.3372958976042916,0.33709989145760516,0.3369045515562154,0.3367100917249584,0.33651625654876133,0.33632306722876265,0.336130533160189,0.33593860675775367,0.33574723369499615,0.3355564445163384,0.335366136769261,0.3351763539308048,0.33498698562789614,0.3347981177114751,0.33460970301768417,0.3344215594000914,0.3342339020703077,0.3340465357628696,0.33385945072286605,0.3336726726452754,0.33348607896164617,0.33329987335710864,0.3331137932727897,0.33292796850581824,0.33274220837369045,0.33255668968158464,0.33237129054209896,0.33218598379399517,0.33200078434923214,0.3318156412043593,0.3316304695434877,0.33144541895101787,0.3312603768689522,0.3310753247532343,0.3308903535104441,0.3307052306197513,0.3305201045492342,0.330334905316308,0.33014958513007847,0.3299642258498443,0.32977871782424517,0.32959312177121575,0.32940737499521505,0.32922149163271797,0.32903537159530705,0.3288492461097943,0.32866286689293545,0.32847630485951873,0.328289494532605,0.3281025844226922,0.32791542732841383,0.3277280043319704,0.32754040157801656,0.3273525502373913,0.32716447079489097,0.32697610959991624,0.3267875703790057,0.32659873253266714,0.3264095694016769,0.3262202294640703,0.3260306264050248,0.32584080624642164,0.32565065621762196,0.3254602302265533,0.32526950882446787,0.3250786399612155,0.3248874176170334,0.3246959406184512,0.32450418316441937,0.3243120872361192,0.3241198521054443,0.32392722364038573,0.32373446282362783,0.3235413643282609,0.3233479573723862,0.3231544141182495,0.3229605738196015,0.3227664674238171,0.3225720929207309,0.3223774420575465,0.32218269271905997,0.32198754675887525,0.32179224628592973,0.3215967732522701,0.321401069803341,0.3212050224079244,0.321008828973576,0.32081245546490966,0.32061593871187516,0.32041916063680753,0.32022213040628056,0.32002503384349124,0.3198276937592185,0.31963010728121716,0.3194324900282672,0.31923463767087523,0.31903661657429555,0.3188384522204293,0.31864011352765126,0.3184416514514026,0.3182429579149782,0.31804428901309784,0.31784533404056226,0.31764632774498675,0.3174472072069377,0.3172480284188028,0.3160263934640083,0.31584808211237175,0.3156692388399653,0.31548969396479654,0.31530957443783797,0.31512871763680905,0.31494739542885986,0.31476541753382337,0.3145828653733605,0.314399714575333,0.3142159327539853,0.3140316168739832,0.31384681228670774,0.3136614119239133,0.3134754236972976,0.31328893049346584,0.31310189103,0.31291437213494483,0.31272634348483047,0.312537822262526,0.3123488654976102,0.3121593778470513,0.31196943830668983,0.3117790580357742,0.31158818808873584,0.31139696528002436,0.31120519359526755,0.31101306520712874,0.3108206315556519,0.31062778866828056,0.31043456975618583,0.31024083385228896,0.31004690281299463,0.3098525898457122,0.30965790968381934,0.30946294372237687,0.30926765823216046,0.30907200437978155,0.3088762058643502,0.30868001397919126,0.30848369946705506,0.3082869610864382,0.3080901871610374,0.30789306019559587,0.3076958152330824,0.307498307048164,0.3073006200196106,0.3071028505651272,0.3069047840213314,0.306706713499868,0.3065085956752901,0.30631029852539055,0.30611199568337766,0.3059136354584908,0.3057151556838969,0.3055168229825667,0.3053183908337271,0.30512003529731285,0.30492176481705463,0.3047235769018912,0.30452546336180714,0.30432742023330644,0.3041297375833444,0.30393212920513574,0.3037347643886871,0.3035376318490222,0.3033407171583333,0.30314428261253,0.3023898201523381,0.3022264302233519,0.3020638454478096,0.3019019935156645,0.3017409200052251,0.3015806290113204,0.3014209633319564,0.3012618118781028,0.3011032606573258,0.30094503072492124,0.3007871192289597,0.30062940013493683,0.30047163891915846,0.3003138496300543,0.3001557910358945,0.29999725807004457,0.2998382383905956,0.3003598499107298,0.3002228855545457,0.3000841741305258,0.299943722151789,0.299801581045767,0.2996575930429704,0.2995118886870405,0.2993643439570789,0.29921504550593603,0.29906386274961877,0.29891101395171077,0.29875629393977027,0.29859978254388936,0.29844139407605863,0.2982811656479461,0.298119120596511,0.29795528014166833,0.29778962072320037,0.2976220551428199,0.29745268208365977,0.29614928255118567,0.2959528773237575,0.2957548927495121,0.2955554732119364,0.2953545810240783,0.2951523275320193,0.29494905016280154,0.29474463763981495,0.29453914086291133,0.294332874246173,0.2941257528189063,0.29391797837224615,0.2937096856924353,0.29350076401079084,0.29329152595150915,0.2930818099905983,0.2925376662828981,0.29233219036013275,0.2921269061434649,0.29192201414195507,0.2917174347273777,0.2915129623295163,0.2913087870151539,0.29110486403766567,0.29090111975204247,0.29069756050749457,0.29049414076582125,0.2902908372952689,0.29008775844059653,0.2898848780787288,0.28968201697419393,0.28947936937869695,0.2892768803458892,0.2890743326429354,0.2888720746859509,0.28866978682704925,0.28846764026701954,0.2882655437552413,0.28806353057608897,0.2878616065642946,0.28765972144409396,0.28745787277822726,0.28725600805349577,0.287054353280505,0.28685262838310877,0.2866509671441895,0.2864492481074059,0.2862476343486919,0.28604610650018614,0.28584444427323186,0.28564292302415084,0.28544135278187394,0.2852397924349098,0.2850381941205654,0.28483663383562063,0.2846350054407914,0.28443342489200457,0.2842317628152078,0.2840300850812663,0.2838284672760334,0.2836267802463152,0.28342500899846584,0.2832232295606683,0.28302142179911205,0.28281956953706106,0.28261764027988073,0.2824156099300023,0.28221366525178726,0.28201160523827684,0.2818095263367372,0.28160734234393814,0.2814050412450273,0.2812027473542253,0.28100035384330496,0.2807978178927068,0.28059535276669384,0.2803927252128668,0.28018994096495137,0.28016729695373516,0.27996568522185933,0.27976398567147975,0.279562275369988,0.27936059189476564,0.2791588689281661,0.2789570792255966,0.27875543001185626,0.2785536891532065]}},\"id\":\"082ee34c-d971-4481-abd4-c33c2b9abb37\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"4ddc96ae-ab5e-4854-bef7-aa0b1f696f7c\",\"type\":\"BasicTicker\"},{\"attributes\":{\"overlay\":{\"id\":\"c1168160-af7b-48b1-92bc-af958a3ab9a2\",\"type\":\"BoxAnnotation\"},\"plot\":{\"id\":\"9ad12f60-7c08-4216-815d-6c9a0dc5c47c\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"09e2b650-5e5d-4fba-81a4-f65a5aedbc71\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"items\":[{\"id\":\"52fa43de-8eb4-42ff-988d-7e8ca28ab59a\",\"type\":\"LegendItem\"},{\"id\":\"bf5793fe-4b3a-4fc6-a371-248b8b30d371\",\"type\":\"LegendItem\"},{\"id\":\"b8424489-314f-4348-a87c-6d1213c5237e\",\"type\":\"LegendItem\"},{\"id\":\"13f908b5-2f4c-4d8e-8144-0ffd002fda66\",\"type\":\"LegendItem\"},{\"id\":\"337f28e3-c992-4a88-b3d3-5f3e9c9b06f6\",\"type\":\"LegendItem\"}],\"location\":\"bottom_left\",\"plot\":{\"id\":\"9ad12f60-7c08-4216-815d-6c9a0dc5c47c\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"3c228a3e-4dcf-417f-b595-ac8079598d7c\",\"type\":\"Legend\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[0.30277732649230255,0.3027773243528187,0.30277732384363676,0.30277732163277865,0.30277776303022685,0.30277883430879293,0.302780533913296,0.30278286209337674,0.30278581968773344,0.3027894074475561,0.30279362577674906,0.3027984730514229,0.3028039498610367,0.30281005622932095,0.3028167921180846,0.30282415748559743,0.3028321522854142,0.3028407764675795,0.3028500299771865,0.3028608141080561,0.3028712951705163,0.30288240513299014,0.3028941438740389,0.30290651126904466,0.30291950718912464,0.3029331315120592,0.3029473841206663,0.30296226491482653,0.3029777414899235,0.3029938718345482,0.30301065495466134,0.30302811364173193,0.30304623908221434,0.30306500753989185,0.30308441761314664,0.30310442567890183,0.3031250236731619,0.3031462495830467,0.30316716047652625,0.3031896124145009,0.30321269152374186,0.30323639766121047,0.30326073067854703,0.3032856904252255,0.30331127674703595,0.30333748948393413,0.3033643284739846,0.3033917935493559,0.30341988454140917,0.3034486012746904,0.3034779435709653,0.3035079112488485,0.3035385041224358,0.3035697220023399,0.3036015646941907,0.3036340320017529,0.30366712372468735,0.3037008396562196,0.3037351795899945,0.3037701433118116,0.3038057306070869,0.3038419412551731,0.30387877503305166,0.3039162317128426,0.3039543110632828,0.3039930128506806,0.3040323368346242,0.30407228277622417,0.30411285042669917,0.30415403953724474,0.3041958498538903,0.3042382811219828,0.3042813330783752,0.3043250054610695,0.3043692979992316,0.30441421042381317,0.30445974245924606,0.3045058938240946,0.3045526642408225,0.30460005341877444,0.3046480610715687,0.30469668690445934,0.30474593061861244,0.3047957919184976,0.30484627049569035,0.3048973660455095,0.3049490782539797,0.3050014068088008,0.30505435139197634,0.3051079116812506,0.3051620873503504,0.30521687807344705,0.30527228351632485,0.30532830334375083,0.3053849372164343,0.30544218479178026,0.3055000457259851,0.3055585196663789,0.3056176062611195,0.3056773051563898,0.3057376159890185,0.3057985383997767,0.3058600720206528,0.305922216479181,0.30598497140628494,0.30604833642326434,0.30611231115398,0.3061768952093662,0.3062420882093875,0.3063078897597447,0.30637429946839495,0.306441316937641,0.30650894177221916,0.3065771735665188,0.30664601191715196,0.3067154564118021,0.3067855066400741,0.30685616218278766,0.30692742262542627,0.306999287545301,0.3070717565165197,0.30714482911118474,0.3072185048986588,0.3072927834420341,0.30736766430592466,0.3074431470481011,0.3075192312229381,0.3075959163923032,0.3076732020943887,0.30775108788367844,0.30782957330211597,0.30790865789058064,0.3079883411895906,0.30806862273011376,0.3081495020452715,0.3082309786659554,0.30831305211655,0.3083957219210329,0.308478987597878,0.30856284866671235,0.30864730463989043,0.3087323550308583,0.30881799934877396,0.30890423709504405,0.308991067776843,0.30907849089087475,0.30916650593750056,0.3092551124129569,0.30934430980243316,0.3094340975981982,0.3095244752872701,0.3096154423535475,0.30970699827611176,0.30979914253077334,0.3098918745960403,0.30998519394453566,0.31007910004222383,0.31017359236000025,0.3102686703612377,0.3103643335085437,0.31046058125829984,0.3105574130684122,0.31065482839635217,0.3107528266890186,0.31085140739618383,0.3109505699653604,0.3110503138366825,0.31115063845899193,0.3112515432619618,0.3113530276897061,0.3114550911680593,0.3115577331331372,0.31166095301591334,0.3117647502357147,0.3118691242197017,0.3119740743917517,0.31207960016684266,0.3121857009657331,0.31229237619957456,0.3123996252815793,0.3125074476205579,0.3126158426211093,0.31272480969466027,0.31283434823755196,0.31294445765518686,0.31305513734168894,0.3131663866926119,0.3132782051039777,0.3133905919666557,0.31350354666845265,0.31361706859338456,0.3137311571312611,0.3138458116685361,0.3139610315750563,0.31407681623519373,0.3141931650200737,0.3143100773088198,0.3144275524718231,0.31454558987341735,0.31466418889434433,0.3147833488865824,0.3149030692203623,0.31502334925511943,0.31514418834757507,0.3152655858640244,0.3153875411532665,0.3155100535680891,0.31563312246521036,0.3157567471915832,0.3158809270931608,0.31600566151621606,0.316130949803125,0.3162567913029028,0.31638318535072496,0.31651013128327665,0.3166376284361527,0.31676567614520607,0.31689427375423,0.31702342057887406,0.31715311595125295,0.3172833591979066,0.31741414965368847,0.31754548663374565,0.31767736946736896,0.3178097974708876,0.3179427699551579,0.31807628624656886,0.31821034567049117,0.3183449475181626,0.31848009111351927,0.3186157757659472,0.31875200078396676,0.31888876547610423,0.3190260691447323,0.3191639110964416,0.31930229063332677,0.31944120705626255,0.31958065966382115,0.3197206477499852,0.31986117062046415,0.32000222756173624,0.32014381786941265,0.3202859408378917,0.32042859575219795,0.32057178190666175,0.32071549858484183,0.3208597450726271,0.32100452065595914,0.32114982462332,0.3212956562468407,0.32144201480735474,0.32158984383294786,0.3217372300261208,0.3218851409565948,0.32203357590123083,0.3221825341856948,0.3223320150465908,0.32248201778448415,0.3226325416542781,0.3227835859623534,0.3229370603329617,0.3230890693157995,0.3232415975523075,0.3233946443443268,0.32354820898740383,0.32370346282137924,0.3238579934898173,0.3240130419825959,0.3241686076309079,0.3243246897384356,0.3244812876327912,0.3246384006207412,0.32479602801661567,0.32495416914820063,0.32511282331629443,0.3252719898425722,0.3254316680374892,0.32559185720917216,0.32575255666707265,0.325914727691033,0.3260764004938663,0.3262385832448004,0.3264012752080624,0.32656447567073454,0.32672818393027286,0.32689239926822783,0.3270571209602987,0.32722234826779084,0.32738808048565976,0.32755431687648695,0.32772105671154717,0.3278882992520387,0.32805604377512143,0.32822428950511806,0.328393035740746,0.328562281701224,0.32873202666292933,0.3289022698485235,0.3290730105148692,0.3292442478993849,0.3294159812303475,0.3295882097511111,0.3297609326698837,0.32993414920904146,0.3301078586092401,0.3302820600549131,0.33045675277183645,0.33063193595728957,0.3308076088108569,0.3309837705278592,0.33116042029213477,0.3313375572895767,0.33151518069465774,0.3316932896905951,0.33187188341871376,0.33205096105644943,0.3322305217614297,0.33241056467087826,0.3325910889321504,0.33277209367524757,0.332953578027278,0.33313554111198723,0.33331798203349444,0.3335008999015651,0.33368429381224235,0.33386816283289045,0.33405250605995546,0.33423732254569527,0.33442261134462337,0.33460837151232015,0.33479460204756556,0.33498130198656684,0.33516847032270813,0.33535610604393756,0.33554420810182933,0.33573277544490066,0.3359218070100361,0.3361113016950343,0.336301258368081,0.33649167589111395,0.33668255306517203,0.3368738886812488,0.3370644969064471,0.33725665592933535,0.33744926159052785,0.33764231212882206,0.33783382405717727,0.3380277220409519,0.3382220681314555,0.3384168616649495,0.3386121021656987,0.3388077894081353,0.3390039232276793,0.3392005035774549,0.3393975303127614,0.3395950031759099,0.3397929217942554,0.3399912855913546,0.34019009394836797,0.34038934620530503,0.3405890417671068,0.3407891801951701,0.3409897612902384,0.3411907850078528,0.34139225140289164,0.3415941605384774,0.3417965123207599,0.34199932874747546,0.34220260076409326,0.3424063118582848,0.342610457334003,0.3428150338148735,0.3430200394063933,0.343225473315414,0.3434313354008855,0.34363762571261713,0.3438443443010811,0.3440514911222102,0.34425906597725364,0.344467068530753,0.3446754983224698,0.344884354830393,0.34509363744823696,0.3453033454871491,0.3455134782759343,0.3457240350812451,0.3459350151373917,0.3461464177124286,0.3463582420144299,0.3465704872717464,0.34678315271778304,0.34699623757573955,0.347210586581127,0.34742447541648697,0.3476387820959812,0.34785350577074675,0.34806864573934926,0.3482842011447443,0.34850017132119354,0.34871655540004803,0.3489333583048664,0.34915057323994797,0.3493681991693539,0.3495862354124306,0.3498046811893453,0.350023535836997,0.3502427985618194,0.35046246859415214,0.35068254519718456,0.35090302761107245,0.3511239151240839,0.3513452069291575,0.35156690227853965,0.35178900043912364,0.3520115006589203,0.35223440216685703,0.35245770414614097,0.35268140595077085,0.35290550668051135,0.3531300056574509,0.3533549021286081,0.3535801952983088,0.35380588441070754,0.35403196867935255,0.3542584474005015,0.3544853196921082,0.35471258494566493,0.3549402423236338,0.35516829093815727,0.3553967302291901,0.35562555930423084,0.3558547774726267,0.3560843839383484,0.35631437793255866,0.35654475868684515,0.35677552546690083,0.35700667751583964,0.3572382140262354,0.3574701343076809,0.3577024375466781,0.35793512303898417,0.35816818998342376,0.35840163766274147,0.3586354653028647,0.3588696721764309,0.35910425751967084,0.3593392206061466,0.35957456064810905,0.3598102769645978,0.36004636874373264,0.360282835334508,0.3605196759163629,0.3607568898427755,0.3609944763223412,0.36123243464580324,0.361470764128541,0.3617094640433732,0.36194853370726404,0.36218797235965045,0.3624277793558541,0.3626679540488767,0.3629084957253959,0.36314940379762645,0.3633906775899151,0.3636323164899829,0.3638743199772792,0.36411668745697545,0.3643594184259437,0.3646025124203911,0.3648459689894583,0.36508978775439926,0.3653339683956985,0.3655785105607277,0.36582341408797425,0.366068678634519,0.3663143040388874,0.36656029002846174,0.3668066362632449,0.36705334230651454,0.36730040758226334,0.36754783132954444,0.3677956124070695,0.36804374956385155,0.3682922411936328,0.3685410853433744,0.36879028007968073,0.36903982310246636,0.36928971220760015,0.3695399451419284,0.36978961856757186,0.37004049206744527,0.3702917075187641,0.3705432630938897,0.3707951569236406,0.3710473871514951,0.37129995180056363,0.3715539783332945,0.37180723596609794,0.37206082513725347,0.3723147441408322,0.3725700377140676,0.3728246014949471,0.3730795040905899,0.3733347449694112,0.3735903235330313,0.373846239330907,0.3741024917926727,0.3743590804323847,0.3746160046628059,0.37487326395672954,0.37513085776772376,0.3753887854965455,0.3756470464932655,0.3759056401009473,0.37616361762925027,0.3764228594860703,0.3766824291325402,0.37694232591712373,0.3772025491779526,0.3774630982633404,0.3777239724903221,0.3779851711798501,0.37824669363915286,0.3785085392014972,0.3787707071691655,0.3790331968570071,0.37929600758038506,0.3795591386642526,0.3798225894330597,0.38008635924293777,0.3803504474373791,0.38061485338806117,0.38087957646770954,0.3811454242861324,0.3814107088754395,0.3816763072007905,0.38194222123998167,0.38220845275601495,0.38247500311823174,0.3827418732046737,0.38300906317355443,0.38327657249959873,0.3835444000624425,0.3838125442855319,0.38408100334229706,0.3843497753501676,0.3846194879642829,0.38488871171424915,0.38515843505760133,0.38542838371022836,0.3856986177479515,0.38596917920917617,0.38624077467286255,0.3865117341287832,0.38678312612987276,0.3870548825443619,0.38732697066464244,0.3875993745155569,0.3878720864968863,0.38814510286659437,0.3884184212750432,0.38869204027520105,0.38896595935368944,0.3892401770455884,0.38951469307488806,0.389789506671088,0.3900646169464628,0.3903400233999206,0.390615725410329,0.3908917227828015,0.3911680156313619,0.3914446042344175,0.3917214913353754,0.3919986838956986,0.3922761973353119,0.3925540651190331,0.3928323568106605,0.3931102447659687,0.3933889117919671,0.3936678972728145,0.3939471758309883,0.39422665315235367,0.394506543786645,0.3947868424560063,0.39506662846321605,0.39534726671196585,0.3956281932239816,0.3959094087925431,0.3961909140913276,0.39647270954792113,0.3967547952002355,0.3970371704779611,0.39731983424894496,0.39760278465430315,0.39788601947996316,0.3981695360168164,0.3984533313411192,0.3987374024232316,0.39902100496211684,0.39930554818335473,0.39959036638481443,0.3998754589423273,0.4001608252329101,0.4004464646553937,0.400732376595833,0.40101856049407947,0.4013050157440968,0.40159174178173135,0.40187873802068785,0.40216600391356166,0.40245353887445573,0.40274134235852654,0.4030294137862049,0.4033177526000768,0.40360635822671204,0.40389523012310485,0.4041843677026083,0.40447377040209476,0.4047634376650065,0.4050533689189541,0.40534356358716495,0.4056340211214602,0.4059247409440657,0.4062157224907431,0.4065076891559769,0.4067991752699334,0.40709092311472145,0.4073829321045538,0.40767520169954985,0.40796773118514085,0.4082605200775493,0.408553567699121,0.40884687350417726,0.4091404366734237,0.40943425680727996,0.40972833322400826,0.4100226652875794,0.41031725233620187,0.41061209382761427,0.41090718910279145,0.41120253761941666,0.4114981387231149,0.4117939918752613,0.412090096377009,0.412386451729136,0.41268305735163113,0.4129799126128925,0.4132770169641743,0.4135743698298863,0.4138719706348937,0.4141698188371442,0.41446791382302295,0.4147662550998678,0.4150648420471019,0.41536367419269254,0.4156627508455756,0.4159620716191275,0.4162616358807775,0.4165614430653072,0.4168614926758092,0.4171617841914102,0.41746231704234077,0.4177630907160721,0.4180641046245153,0.4183653583086878,0.4186668512103023,0.41896761577738995,0.4192695662792992,0.4195717541165296,0.41987417857064563,0.4201768391668176,0.4204797353424812,0.42078286664163617,0.4210862325546253,0.4213885003035549,0.42169231498744586,0.4219963623992954,0.42230064209953017,0.4226051535915755,0.42290989639137566,0.42321487001247626,0.4235200739434664,0.4238255077545718,0.4241311709132678,0.42443706297602224,0.42474318343144324,0.42504953179190025,0.4253561075882796,0.42566291031914405,0.4259699395126862,0.4262771947057729,0.42658467536768724,0.42689238105302535,0.4272003113050577,0.42750846556166544,0.4278168434268336,0.42812544437233135,0.4284342679238929,0.4287433136114045,0.42905258095656673,0.42936206943760885,0.42967177866715245,0.42998170809771075,0.4302918572963152,0.4306022257332925,0.43091281299206424,0.431223618566168,0.43153464197331587,0.43184588280766206,0.43215734051817734,0.43246901467176113,0.4327809047895798,0.43309301041290466,0.43340533106153123,0.43371786628809417,0.4340306156026741,0.43434357855208844,0.43465675465122705,0.434970143493,0.4352837445412217,0.43559755742745315,0.43591158154426474,0.43622581656560716,0.4365402619688762,0.43685491731906556,0.43716978216530705,0.4374848560165767,0.4378001384355902,0.43811562899969303,0.4384313272194172,0.43874723262298015,0.4390633447756983,0.4393796632538152,0.4396961875674375,0.440012917330915,0.4403298520372381,0.440646991269124,0.4409643345702585,0.4412818815043002,0.44159963162030424,0.44191758449385005,0.4422357396661626,0.4425540967466862,0.4428726551904106,0.4431914146824866,0.4435103747303904,0.4438295349286549,0.44414889481808856,0.4444684540498418,0.44478821204293073,0.44510816846142975,0.44542832295559825,0.44574867912858773,0.44606923808129345,0.4463899939563461,0.44671094638085734,0.4470320949493268,0.44735343910812647,0.4476749785695708,0.4479967128492247,0.44831864158610063,0.44864076423630994,0.448963080540477,0.44928558995469775,0.4496082921250136,0.4499311866651071,0.4502542730935071,0.4505775510081713,0.45090102002990967,0.45122467975031366,0.4515485297014823,0.4518725695430297,0.4521967987649885,0.45252121710907467,0.45284582403690055,0.45317061926601787,0.45349560225912355,0.4538207726919731,0.4541461301584381,0.45447167417974804,0.4547974044415301,0.45512332054209004,0.4554494220664083,0.45577504772667216,0.4561015131910573,0.456428162853104,0.45675499633405214,0.4570820132579908,0.45740921319301964,0.4577365957772848,0.45806416059765365,0.4583919072791567,0.45871983541295497,0.4590479446334034,0.4593762345433737,0.4597047047436898,0.46003335486578306,0.46036218450807204,0.4606911933029658,0.4610203808664626,0.4613497467956424,0.46167929071912045,0.46200901226470836,0.4623389110425621,0.4626689866829302,0.4629992387811247,0.4633296669999426,0.4636602709319969,0.4639910502147353,0.4643220044739533,0.46465313332337976,0.46498443640624554,0.4653159133449272,0.4656475637522272,0.46597938727573074,0.46631138354483054,0.4666435521831641,0.46697589283046387,0.467308405117559,0.46764108867432075,0.46797394312712076,0.46830696813948613,0.4686401633043001,0.4689735283101206,0.46930706276560014,0.46964076629222523,0.46997463858478433,0.47030867922458897,0.47064288788403474,0.470977264202498,0.4713118078149113,0.4716465183683891,0.4719813955243142,0.4723164388995538,0.47265164816286565,0.47298702294355827,0.4733225629034721,0.47365826768561914,0.47399413694596265,0.4743301703307971,0.4746663674832023,0.4750027280621081,0.475339251726717,0.47567593811624115,0.47601278691031407,0.47634979774210584,0.47668697027203066,0.4770243041520786,0.47736179904978315,0.4776994546249136,0.4780372705339156,0.47837524643205537,0.4787133819839166,0.4790516768501259,0.4793901306952541,0.4797287431910954,0.480067513994357,0.48040644275293215,0.48074552915626273,0.48108477286833173,0.4814241735408832,0.48176373085829244,0.48210344448323494,0.4824433140900842,0.4827833393206533,0.4831235199015323,0.4834638554617315,0.4838043456763462,0.4841449902366499,0.48448578881227555,0.4848267410727903,0.4851678466931292,0.48550910535467734,0.4858505167356367,0.48619208050698076,0.4865337963471891,0.48687566395717896,0.48721768299511176,0.4875598531551616,0.4879021740922805,0.4882446455266297,0.488587267115989,0.4889300385501928,0.4892729595371902,0.489616029722302,0.4899592488103329,0.49030261651311147,0.49064613247715194,0.49098979641263923,0.49133360802519804,0.4916775669669591,0.4920216729570181,0.4923659256777915,0.4927103248220208,0.49305487008215076,0.49339956114259614,0.4937443977279679,0.4940893795086678,0.4944345061706224,0.4947797774524041,0.495125193011312,0.4954707525640396,0.49581645580053746,0.49616230242555276,0.49650829214384884,0.49685442464761,0.49720069964022673,0.497547116826477,0.4978936759070254,0.4982403766200972,0.4985872186013346,0.49893420160909224,0.49928132534313313,0.4996285894916347,0.49997599377563656,0.50032353788553,0.5006712215702495,0.5010190444966008,0.5013670063890351,0.5017151069747809,0.5020633459534897,0.5024117230214707,0.5027602379186489,0.5031088903345634,0.5034576800033366,0.5038066066214353,0.5041556699305959,0.5045048696224222,0.5048542054275759,0.5052036770707666,0.5055532842492723,0.5059030266899305,0.5062529041177363,0.5066029162617519,0.5069530628170076,0.5073033435318328,0.5076537581208255,0.5080043062867313,0.5083549877931278,0.5087058023309814,0.5090567496335313,0.509407829428077,0.5097590414555632,0.510110385417906,0.5104618610629904,0.5108134681156852,0.5111652062827111,0.5115170753269804,0.5118690749580806,0.5122212049113399,0.5125734649265884,0.5129258547319546,0.51327837404748,0.5136310226206268,0.5139838001905769,0.5143367064711617,0.5146897412054453,0.5150429041408704,0.5153961950182355,0.5157496135571823,0.5161031594961851,0.5164568325906557,0.5168106325632185,0.5171645591459959,0.5175186121066342,0.5178727911793607,0.518227096087917,0.5185815265871816,0.5189360824193874,0.519290763325319,0.5196455690571533,0.5200004993490621,0.5203555539433385,0.5207107325980664,0.5210660350619072,0.5214214610639031,0.5217770103733982,0.5221326827047825,0.5224884778546258,0.5228443955409077,0.5232004355176874,0.5235565975379182,0.5239128813445781,0.5242692867098835,0.5246258133662477,0.524982461075838,0.525339229599814,0.5256961186680015,0.5260531280643539,0.5264102575259763,0.5267675068085191,0.5271248756767992,0.5274823638842872,0.5278399711841818,0.5281976973388643,0.528555542110237,0.5289135052541408,0.5292715865278304,0.5296297856991898,0.52998810462683,0.5303465431067994,0.5307050991118122,0.5310637724195726,0.5314225627824481,0.5317814699614128,0.5321404937121718,0.5324996337797808,0.5328588899141671,0.5332182619041638,0.5335777494292533,0.5339373523060907,0.5342970702342587,0.5346569029808739,0.5350168503052646,0.5353769119580306,0.5357370876887433,0.5360973772531457,0.5364577804158244,0.5368182968889949,0.5371789264494212,0.537539668867609,0.5379005238748097,0.5382614911942092,0.5386225706149672,0.5389837618514872,0.5393450647021006,0.5397064788836897,0.5400680041083346,0.5404296402000778,0.5407913868276263,0.5411532437853555,0.5415152108853128,0.5418772877893429,0.5422394742628653,0.542601770099459,0.5429641751002928,0.5433266889213477,0.5436893114285125,0.544052042330089,0.5444148813932792,0.5447778284466356,0.5451408832517882,0.5455040455280643,0.5458673151110345,0.5462306917473884,0.5465941752743132,0.5469577654370681,0.5473214619861924,0.5476852647944037,0.5480491735995254,0.5484131882337113,0.5487773084424442,0.5491415340002178,0.5495058648304973,0.5498703006082336,0.5502348411654556,0.5505994863193086,0.5509642358668811,0.5513290895989322,0.5516940473412043,0.5520591089401623,0.5524242740666961,0.5527895426336257,0.5531549144334609,0.5535203892483352,0.5538859668855676,0.554251647194517,0.554617429957959,0.5549833149998955,0.5553493020690352,0.5557153910406311,0.556081581695717,0.5564478738585598,0.5568142673612282,0.5571807619374298,0.557547357466415,0.5579140537570239,0.5582808505640451,0.5586477478439844,0.5590147451942885,0.5593818426297938,0.5597490398004749,0.5601163366489635,0.560483732896118,0.560851228382935,0.5612188229686403,0.561586516403213,0.561954308508847,0.5623221992081303,0.5626901881223467,0.563058275218331,0.5634264602415683,0.5637947429737424,0.5641631233462419,0.5645316010841932,0.5649001760021818,0.5652688479800787,0.5656376167728157,0.5660064821994008,0.5663754440954929,0.5667445022678786,0.5671136565291801,0.5674829067327395,0.567852252613158,0.5682216940546533,0.568591230848173,0.5689608628218259,0.5693305897717933,0.5697004115385552,0.5700703279609852,0.5704403387675436,0.570810443876235,0.5711806430549676,0.571550936103027,0.5719213228781622,0.5722918031992973,0.5726623768773056,0.5730330437023475,0.5734038035247201,0.5737746561276658,0.5741456013714249,0.5745166390746785,0.5748877690482294,0.5752589910483751,0.5756303050335618,0.576001710677155,0.5763732079462144,0.5767447965713478,0.5771164763544315,0.5774882471731985,0.5778601088327493,0.5782320611572456,0.5786041039682375,0.5789762370773147,0.5793484603156437,0.5797207735235109,0.5800931765214906,0.580465669131238,0.5808382511449356,0.5812109224482263,0.5815836828344347,0.5819565321183469,0.5823294701251243,0.5827024967649758,0.5830756117664206,0.5834488149904609,0.5838221062444491,0.584195485424027,0.5845689523066844,0.5849425067179836,0.5853161485191402,0.5856898775158719,0.5860636935575682,0.586437596456425,0.5868115860816964,0.5871856621984065,0.5875598247369946,0.5879340734464014,0.5883084082054068,0.588682828821415,0.5890573351530332,0.5894319270176432,0.5898066042427008,0.5901813666974739,0.5905566718145397,0.5909315892098326,0.591306591779754,0.5916816794584724,0.5920568519758246,0.5924321092200312,0.5928074509450175,0.5931828770616892,0.5935583873050309,0.5939339816395718,0.5943096597752429,0.5946854215280137,0.5950612668845215,0.5954371955099871,0.5958132073167893,0.5961893021430348,0.5965654797359913,0.5969417400365455,0.5973180828409663,0.5976945079679721,0.5980710152322909,0.5984476045651929,0.5988242756582552,0.5992010285167043,0.5995778628172551,0.5999547785016929,0.6003317753640636,0.6007088532538595,0.6010860119638768,0.6014632514143451,0.6018405714220507,0.6022179718073594,0.60259545239854,0.6029730130695291,0.6033506536742127,0.6037283739892801,0.6041061739736369,0.6044840533266014,0.6048620119971103,0.6052400498035745,0.605618166526687,0.6059963621086845,0.6063746363752173,0.6067529890953796,0.6071314202291108,0.6075099295241067,0.6078885168596397,0.6082671821186191,0.608645925109491,0.6090247456874972,0.6094036437053449,0.6097826190087879,0.6101616714622282,0.6105408008935166,0.6109200071768818,0.6112992901130984,0.6116786495798371,0.6120580854687168,0.6124375975635613,0.6128171857494192,0.6131968498825677,0.6135765898453407,0.6139564054164366,0.6143362964619491,0.6147162629404944,0.6150963045779502,0.6154764213124617,0.615856612989309,0.6162373842199187,0.6166176982829812,0.6169980867732123,0.6173785495700849,0.6177590866396634,0.6181396978803164,0.61852038316106,0.6189011425300354,0.6192819758336288,0.6196628830932719,0.6200438642415467,0.6204249193118763,0.6208060482815613,0.6211872511571342,0.6215685279550925,0.621949878674597,0.6223313033546735,0.6227132376773072,0.6230947595842917,0.6234763613623435,0.6238580430525792,0.6242398046715426,0.6246216456597322,0.6250035662127068,0.6253855661184651,0.625767645186085,0.6261498032644824,0.6265320404236945,0.6269143561602067,0.6272967505741205,0.6276792235399892,0.6280617748276452,0.6284444042152147,0.6288271118544361,0.6292098972154238,0.6295927605202607,0.6299757012870442,0.630358238047194,0.6307412727616286,0.6311243785825829,0.6315075553079182,0.631890802630153,0.63227412031651,0.6326575081834397,0.6330409659712963,0.6334244934435347,0.6338080904209316,0.6341917566361409,0.6345754919249521,0.6349592962001939,0.6353431691238732,0.6357271106372185,0.6361111204239585,0.6364946892422949,0.63687880452416,0.6372629874393486,0.6376472379246177,0.6380315558188517,0.6384159410622166,0.6388003934386587,0.6391849128781079,0.639569499299647,0.6399541525769488,0.6403388724811613,0.6407236590177409,0.6411085120462612,0.6414934314232869,0.6418784170336974,0.6422634687863559,0.6426485865533869,0.6430337702360489,0.64341901968428,0.6438043348135156,0.644189715504964,0.6445751616241573,0.6449606730992596,0.645346249765084,0.6457318915647958,0.6461175983698714,0.6465033700606275,0.6468892064607618,0.6472751075792686,0.6476610732594599,0.6480471033558705,0.6484331978216497,0.648819356442765,0.649205579245706,0.6495918660120451,0.6499782166460447,0.6503646310787934,0.6507511092302753,0.6511376508913128,0.6515242559960043,0.6519109244824638,0.6522976562276005,0.6526844510722539,0.6530713089261971,0.6534582297265913,0.6538452133281012,0.6542322596206442,0.6546193685343688,0.6550065398894842,0.6553937736890384,0.655781069709218,0.6561684279098076,0.6565558482060599,0.6569433304523195,0.6573308745851528,0.6577184803814294,0.6581061479693512,0.6584938770095743,0.6588816674805391,0.6592695192728818,0.659657432295178,0.6600454065058372,0.6604330285950786,0.6608211144303695,0.6612092608389974,0.6615974677531268,0.6619857350074042,0.6623740625282497,0.6627624502225791,0.6631508979321283,0.6635394056154255],\"y\":[-0.16214448346162852,-0.16214363518849081,-0.16215620801421665,-0.16203995940467167,-0.16164409055715095,-0.16124626670362738,-0.16085873488761063,-0.16047518528976498,-0.16009113095977126,-0.15970242348026542,-0.15930680134957403,-0.1589154400933599,-0.15852454287714948,-0.15813372875567172,-0.15774299920043838,-0.1573523540461665,-0.1569617935326469,-0.15657131745802172,-0.15618092725226054,-0.1547313229165998,-0.1543633385477322,-0.15399565576789284,-0.15362829306961068,-0.1532612788654892,-0.15289465162061958,-0.15252845522878672,-0.15216274189286272,-0.15179756283378407,-0.15144543824555795,-0.15108273265408864,-0.15070628825632013,-0.1502923248203045,-0.14985757201822011,-0.14942187995004716,-0.14898808515590464,-0.14856789251913266,-0.14815822849934335,-0.1477488576383926,-0.14826309622641873,-0.14786093418417826,-0.14745876205445343,-0.1470565808924376,-0.1466543965626012,-0.14625220975093028,-0.14585002421720064,-0.14544784383944925,-0.14504567088345235,-0.14464350849950602,-0.14424135881467948,-0.14383922439654728,-0.1434371089582631,-0.14303501379922626,-0.14263294124332926,-0.14223089430839578,-0.14182887609355668,-0.14142688661433037,-0.1410249277638274,-0.1406230052199877,-0.140221117313452,-0.13981926665727062,-0.1394174561400142,-0.13901568711866938,-0.13861395930573478,-0.13821227661247118,-0.13781064060385456,-0.13740905156555908,-0.137007511698597,-0.13660602118030277,-0.13620458216987183,-0.13580319567562407,-0.13540186378402108,-0.1350005867278938,-0.13459936597385241,-0.13419820117501263,-0.13379709635188503,-0.13339604861453036,-0.13299506147297538,-0.13259413755607438,-0.132193272539956,-0.13179247220082474,-0.13139173321125236,-0.13099105873440783,-0.13059045159134708,-0.1301899077068401,-0.1297894297933843,-0.129389018971245,-0.1289886762622609,-0.12858840141853858,-0.12818819455466174,-0.12778805701690932,-0.12738798857192005,-0.1269879893728759,-0.12658806121309554,-0.12618820275089432,-0.12578841731204202,-0.12538870115677697,-0.12498905695271761,-0.12458948420598306,-0.12418998506799571,-0.12379055784265613,-0.12339120333794734,-0.1229919201896178,-0.12259270938073445,-0.12219357384449396,-0.1217945106411157,-0.12139551904472837,-0.1209966003211303,-0.1205977563074811,-0.12019898086391105,-0.1198002826852622,-0.11940165607823254,-0.11900310443584622,-0.1186046222138603,-0.11820621385633168,-0.11780787662818143,-0.11740961275345863,-0.11701141812999218,-0.11661329772435908,-0.11621524763091248,-0.11581726777209346,-0.11541935946118531,-0.11502151978597244,-0.11462374944637754,-0.11422605020029107,-0.11382841820028824,-0.11343085524390015,-0.11303336270838281,-0.11263593243959284,-0.11223857253606234,-0.11184127934100072,-0.11144405102787086,-0.11104688627054418,-0.11064978640537698,-0.1102527517584072,-0.10985577952023591,-0.10945886822765123,-0.10906202128548735,-0.10866523449728702,-0.10826850774200233,-0.1078718408805821,-0.10747523344169956,-0.1070786830798426,-0.10668219020374128,-0.10628575406730356,-0.10588937258410103,-0.10549304770394584,-0.10509677620824873,-0.10470055599872369,-0.10430438929706455,-0.10390827391887733,-0.10351220845902996,-0.10311619174160064,-0.10272022352016101,-0.10232430243391716,-0.10192843130698691,-0.1015326020718604,-0.1011368169606324,-0.10074107560865933,-0.10034538139295894,-0.09994972268742204,-0.09955410887000853,-0.099158531903516,-0.09876299455542147,-0.09836749209976045,-0.0979720269129318,-0.0975765983546027,-0.09718120491836242,-0.09678584272263367,-0.0963905105395196,-0.09599521228996487,-0.09559994393218632,-0.09520470168381039,-0.09480948831407748,-0.09441430160506467,-0.09401913845980417,-0.09362399896144641,-0.09322888588081661,-0.09283378948602695,-0.09243871841140201,-0.09204366566725838,-0.0916486301578714,-0.09125361217419686,-0.0908586127023611,-0.09046362279519109,-0.09006864882018359,-0.08967368909631533,-0.08927873884375671,-0.08888379880391648,-0.08848887082221024,-0.08809394628121714,-0.08769902839031776,-0.08730411756176064,-0.086909207756356,-0.08651430786124353,-0.08611940319532808,-0.08572449805263492,-0.0853295960986328,-0.08493469525791794,-0.08453978547177755,-0.08414487346246376,-0.08374996017551173,-0.08335503572419319,-0.0829601013155209,-0.08256516193021723,-0.08217021655807424,-0.08177525089487057,-0.0813802781944917,-0.08098529049373342,-0.08059028863313922,-0.08019527425519124,-0.0798002404688614,-0.07940518578107762,-0.0790101185034944,-0.07861502242078895,-0.07821991581906049,-0.07782478140650996,-0.0774296239621172,-0.07703444018663536,-0.07663923634316734,-0.07624400777232654,-0.075848747844943,-0.07545346526813038,-0.07505814915618347,-0.07466280917980452,-0.07426743139543084,-0.07387202913012493,-0.07347659696321097,-0.07308113056803844,-0.07268563076737843,-0.07229010111963015,-0.07189454266421481,-0.07149894781596647,-0.07110331391711146,-0.07070765859692821,-0.07031196061353465,-0.06991623651585105,-0.06952047385369503,-0.06912468130917539,-0.0687288667954095,-0.06833301148102991,-0.06793712658191124,-0.06754122046718498,-0.06714528224392084,-0.06674932338210551,-0.06635333439339806,-0.06595733105317164,-0.06556130415248132,-0.06516527217458147,-0.06476921496828243,-0.06437315500850613,-0.06397708960415946,-0.06312545941938726,-0.06273084856422319,-0.062336394158137104,-0.06194210964296493,-0.061548007056325856,-0.06115409734156171,-0.060760411013995944,-0.06036696296808212,-0.05997376641668007,-0.059719090489196096,-0.059322675813316496,-0.05892684433015113,-0.058531596501759715,-0.05813696692232199,-0.05815829986924425,-0.057754108223171376,-0.05735069173189141,-0.05694805428466592,-0.05654622543386789,-0.05614520933032232,-0.055745039324530246,-0.055345720122040316,-0.05494727093646552,-0.05454972043470316,-0.05415307193616454,-0.05375734619932265,-0.05336256946517133,-0.05296874537237666,-0.053201927871463224,-0.05280786684933922,-0.05241494647203458,-0.05202318769925536,-0.05163259687758691,-0.05124319321339486,-0.050854970480295573,-0.05046795722839908,-0.05008214999307732,-0.04969756015928074,-0.049314201822608365,-0.04893207513309962,-0.04855118768969371,-0.048171542515236934,-0.047793153850481704,-0.0474160086283699,-0.04704012665427641,-0.04666549667118085,-0.0462921174975737,-0.04591999740417995,-0.04554912104596614,-0.04517949459392662,-0.044811104880517975,-0.044443942574590396,-0.04407800814875772,-0.04371327769726343,-0.043349749937146805,-0.04298740817767998,-0.04262622725501082,-0.042266189116166475,-0.041907295266370444,-0.041549494193625365,-0.04119278833781344,-0.04083713014855258,-0.04048251042670804,-0.04012889878623919,-0.03977625941213936,-0.03942456269345474,-0.039073780550281614,-0.03872387878901757,-0.03837482788972614,-0.03802659438757168,-0.037679142256790865,-0.03733243778472768,-0.03698645085999759,-0.03664114396925486,-0.0362964948793705,-0.035952471667072945,-0.03560905007981691,-0.03526618188741589,-0.03492387120944776,-0.03458207610874724,-0.034240781352634156,-0.03389996035352793,-0.03355959459878799,-0.03321965727231049,-0.03288011885130276,-0.03254096698859474,-0.03220215895368517,-0.03186364482469042,-0.031525384262918635,-0.03118731133658178,-0.03084933863490148,-0.029723823146824417,-0.029349952069340254,-0.02897144892557004,-0.028588033234316888,-0.026714421252845868,-0.02631019357237391,-0.025903182606510755,-0.025493501425659676,-0.02508131682077846,-0.024666898828893242,-0.02425052920768723,-0.023832443525847683,-0.023412810730787412,-0.022991703998987433,-0.022569173122519492,-0.022145174251963523,-0.021719768718154477,-0.021293093320297173,-0.020865502257874396,-0.020437581945662104,-0.020010215855258952,-0.019584510849942702,-0.019161605684378816,-0.01874268884049048,-0.018328674930857984,-0.01798637888742155,-0.017688814607538628,-0.017392913618769153,-0.01708819682107963,-0.016768038288167204,-0.016430332600328293,-0.016075944304658123,-0.01570723790717998,-0.015326847015931067,-0.014937296301645938,-0.014540747884723341,-0.014138958728786873,-0.013733300945170567,-0.01332484194249659,-0.012914422174629783,-0.012502672351728807,-0.012090024632420166,-0.011676876867761279,-0.011263490791454776,-0.010850034071403985,-0.010436702301849059,-0.010023555366802417,-0.009610699063764412,-0.009198197836359605,-0.00878609971930704,-0.009808684756767607,-0.009366620156446178,-0.008924739987812715,-0.008483053140524641,-0.008041672686880358,-0.00760061030749611,-0.007159997651768781,-0.006719769425594969,-0.006287362440305481,-0.005855337615528203,-0.005423342449929851,-0.00499150190269577,-0.0045597740254309654,-0.004128364605896152,-0.0036972258881652776,-0.003266346314756239,-0.002835792221307509,-0.002405547518819274,-0.0019757649375192,-0.0015463493463194235,-0.0011173510723265076,-0.0006888365028383317,-0.00026083046119516375,0.0001666421495460568,0.0005936733435174639,0.001020071833664423,0.0014460156603111132,0.0018713963112709266,0.002296118457744525,0.002720268279902441,0.0031437926195923577,0.003566772521661975,0.003989059966698391,0.0044108754963230485,0.004831922390930736,0.0052522947685619235,0.005672279638678996,0.006091479632657859,0.006510144393732455,0.0069280747980522694,0.007345445727286315,0.007762204063109329,0.008178370903347972,0.008593956304147962,0.009008912786957752,0.009423307409122193,0.009837040421344423,0.01025029706685613,0.010662934659966136,0.011075053284729217,0.01148662645151898,0.011897566557865799,0.012308045433821966,0.012717967567763278,0.013127299363212372,0.013536211717037654,0.013944475579754862,0.014352369203861003,0.014759583183605977,0.015166368109745927,0.015572561223533787,0.015978242745444213,0.016383366875344887,0.016787850444143534,0.017191676289196475,0.017594805457618004,0.017997295142119153,0.018399038446651618,0.018799810962633334,0.019199718566517032,0.019598416708623195,0.019995958634500134,0.020392184906298967,0.020786655489941606,0.021179311052587517,0.02156980756078382,0.021957759403130182,0.022342774241667994,0.02272440896943077,0.023102102326666124,0.023475393946340125,0.023843459041520906,0.02420589142769944,0.02456186422495933,0.024910889632422124,0.02525240541608925,0.02558610043940154,0.025911761165324777,0.02622931281218351,0.02653928876677883,0.02684218594868123,0.02713898145289535,0.027431005380766926,0.027719550532326154,0.02800638588295824,0.028293198003142315,0.02858172587346156,0.030215421408931326,0.030573136867756593,0.030932551800830956,0.031295441223300295,0.031663850544040785,0.03203991780278337,0.03242618038359561,0.031113328117882248,0.0314697019292719,0.03183595221898147,0.03221589542186467,0.03146784124550225,0.03188435748488231,0.03230051381130816,0.03271624859764565,0.03313152775954417,0.03354627933455588,0.03396047408580868,0.034374069965451275,0.0347870961643206,0.03519955064137017,0.03561146471205394,0.03602289077164088,0.036433927427993326,0.03684469109820781,0.038293317864472334,0.03871007297447282,0.03912779849220802,0.03954644218353835,0.03996597025161284,0.040386340726747676,0.04080753016981623,0.04122952797969133,0.04165232117575802,0.04207588836637173,0.042500227902232145,0.04292531225021215,0.043351122894953145,0.043777649504619334,0.0442048453524767,0.044632672443027196,0.04506109855640569,0.04549005598459235,0.04591950562719026,0.04549633323982207,0.04597267362627147,0.046451300923891124,0.04693097846013232,0.047410367991118994,0.04788818940664465,0.048363221121704755,0.04883450168808345,0.04930138117327258,0.0497636027073302,0.05022130013333878,0.050675009263615595,0.05112562554108793,0.0507902625652594,0.051363407574594976,0.051733614408819836,0.052179923223278815,0.052685879909778445,0.05320195205430528,0.05277570538394193,0.05346008465322118,0.05407121348951108,0.05463107720671787,0.05515577565631989,0.05565678893383851,0.056142017491854136,0.056616830015629525,0.057084750503485125,0.05754812849390834,0.058008347697913826,0.05846634274010269,0.05892258246509306,0.05937725784047865,0.05983026657684021,0.060281220835174225,0.06072931951566882,0.06117320309463675,0.061610701874986136,0.0620384330008695,0.06245120544990824,0.06284131988096499,0.06319756225156983,0.06350412967566199,0.06373925802658852,0.06480688093348838,0.06519591376939356,0.0655903565622325,0.06602450588198257,0.06654393624186612,0.06693165077327949,0.06725839293062519,0.06810083805280459,0.06854006044657568,0.06897734642565641,0.0694120308100727,0.0698436421578821,0.07027191234302993,0.07069683138201903,0.07111861264112551,0.07153769304214111,0.0719546938548163,0.07237029142046277,0.07278526806345183,0.07320039078315549,0.07361634867783753,0.07415372648492029,0.07458685104392444,0.07501961030647579,0.0754520010894847,0.07588404133663673,0.07631572921452827,0.07674709790567873,0.07717816303825394,0.07760893712752934,0.07803946465059272,0.0784697348112936,0.07889977714788314,0.07932961829849373,0.07975927249481328,0.08018875159140777,0.08061807216466249,0.08104725457584068,0.08147630600369812,0.08190523037349702,0.0823340499096573,0.08276277530966905,0.08319142663463701,0.08361997924002311,0.08404847079814654,0.08447690816336323,0.08490528511041626,0.08550665804461499,0.0859528395607339,0.08639847364590707,0.0868435215032882,0.08728801339848569,0.08773193819175566,0.08817531769920268,0.08861814978856487,0.08906044197779778,0.0895022461915755,0.0899435323499604,0.09038434843381064,0.09082470439706535,0.09126462480660451,0.0917041292824246,0.09214322780915525,0.0925819568933243,0.09302031004452271,0.09345831126487888,0.0938959999373796,0.09433336892955756,0.0947704147029896,0.09520720391587864,0.0956437233650885,0.09607999746405409,0.09651602295216735,0.09695179598039648,0.09738737626027993,0.0978227249275239,0.0982578828274168,0.09869285204951458,0.09912764247544968,0.09956223933438316,0.0999966943733968,0.10043099138690642,0.10086511654111506,0.10129911267997221,0.10173295681124381,0.10216667038412305,0.1026002507641937,0.103033718652412,0.10346706526397971,0.10326236877149451,0.10368746598285469,0.10411338425675408,0.10453897197704556,0.10496425928850274,0.10538923334518151,0.10581392643334828,0.10623835481485702,0.10478702367104809,0.10520327047421225,0.1056183769287439,0.10603256985158176,0.10644584231378995,0.10685827185694571,0.10726993046175125,0.10768077483547991,0.10809098902284495,0.10850053322929246,0.10890948485181337,0.10931787844158165,0.1097256728537011,0.11013300678260157,0.1105398257151823,0.11094615590371316,0.11135210716921223,0.1117575828888443,0.11216268653883034,0.11256747083147851,0.11297176887215644,0.11337581082825458,0.11377948257064693,0.11418281218464375,0.11458583172957836,0.11498852989383782,0.11539087714284388,0.1157929925521576,0.11619479083280418,0.11659636726351366,0.11699756483873583,0.11739854805581287,0.11779924541688552,0.11819963576104912,0.11859984256778118,0.11899972611459324,0.11939937257080818,0.11979875473958448,0.12019786191372846,0.12059669060167834,0.12099529090367657,0.12139362377806623,0.1217916778775425,0.12218945520972446,0.12258700810245753,0.12298424991503364,0.12338130499733016,0.12377798716246355,0.12417442890162443,0.12457057379109289,0.12496649041175927,0.12536209586170893,0.1257574246542726,0.12615242060692955,0.1265472281018318,0.1269417151221611,0.1273358574331873,0.1277296707570123,0.1281232301007781,0.1285164745126586,0.12890948186920945,0.12930211434365438,0.12969449238490366,0.1300865527001686,0.13047833077705645,0.1308697716282446,0.1312609212698954,0.13165177591967725,0.13204237737901633,0.13243255564583398,0.1328225460979741,0.13321222735812677,0.1336016296591054,0.13399075155988688,0.13437970795635115,0.1347682664582432,0.13515659230534258,0.13554476074709476,0.1359387963948409,0.1363409143747654,0.13674293740593962,0.13714497703946918,0.13754703485699626,0.13794896984844665,0.13835091285958973,0.13875284549318734,0.13915474554079324,0.1395565485734286,0.13995841177804041,0.14036013426475794,0.14076189896134986,0.1411636373404454,0.1415653173063547,0.14196695418379499,0.1423685499269443,0.1427701559304547,0.14317166798825115,0.14357319705420957,0.14397459307936505,0.14437606666487052,0.14477739819941024,0.14517882332629967,0.145580107018033,0.14598137956030685,0.1463826352569025,0.1467837872868429,0.14718488064148255,0.1475859934404834,0.14798711916846008,0.14711827237344693,0.14751461115767578,0.14791088611913808,0.14830716043568648,0.14870345744866234,0.14909969938066137,0.14949595973751534,0.1498921739518239,0.15028840876600072,0.1506845944818422,0.15108078217622006,0.15147697612484112,0.15187314559373433,0.1522692774689877,0.15266541134939027,0.1530615393456555,0.1534576821215624,0.1538537597595237,0.15424982754644737,0.15464589255018363,0.15504194855029974,0.15543798383194876,0.15583396837578886,0.1562299983703091,0.1566260011681057,0.15702194196830643,0.15741794837102155,0.15781387209641254,0.15820981599327313,0.1586057424819834,0.15900162396472073,0.15939750525779522,0.1597933933325718,0.16018922324216633,0.16058507872391226,0.16098089866471105,0.1613767135369216,0.1617724833800282,0.1621682745933908,0.16256400417038336,0.16295974585579054,0.16335549811850084,0.1637511857038581,0.1641468932640266,0.16454255182719593,0.1649382200848726,0.16533385622119973,0.16572948192411674,0.1661250861013364,0.16652071334990845,0.16691627033718529,0.16731184936588403,0.16770736595798533,0.16810291596646165,0.1684984084364689,0.16889390338702187,0.16928940478278315,0.16968484411769325,0.170080290952396,0.17047571398078737,0.1708711244155023,0.17126652108964097,0.17166192367080016,0.1720572733147841,0.17245260243641963,0.17284793557419048,0.17324324991033663,0.1736385383734195,0.17403381342804206,0.1744290851853654,0.17482434524322055,0.17521954741694717,0.17561478537259637,0.17600998078526717,0.17640515028998563,0.1768003204317535,0.17719548806803628,0.17759059571174649,0.17798571647250966,0.1783808472967457,0.1787759376044178,0.1791709890907949,0.17956604995751005,0.1799611000651521,0.18035613584053348,0.18075114662910594,0.1811461475002521,0.18154114520996573,0.18193610341921757,0.1823310464721015,0.18272600662853897,0.18312095322273172,0.1835158757380651,0.183910792298024,0.1843056694175335,0.18470057902981507,0.18509543652425928,0.18549029380704202,0.18588513657951325,0.1862799795448937,0.18667483845933602,0.1870696393578958,0.18746444056831377,0.18785923933553816,0.18825403532231907,0.1886488051741704,0.18904358724974316,0.1894383532384088,0.1898331290338976,0.1902278629057631,0.19062261136311293,0.19101734747713386,0.19141209451104954,0.1918068250087026,0.19220153148388203,0.19259626241352637,0.19299096734671736,0.19338567599679696,0.19378041249402847,0.19417509331829552,0.19456979441832947,0.19496452397363714,0.19535922522692045,0.19575390213062424,0.19614860228308315,0.1965433114522876,0.1969380338377515,0.19733271557127616,0.1977274149885662,0.19812219648107476,0.19851688329469544,0.19891158575646262,0.1993063094986815,0.19970105390159765,0.20009579725945412,0.2004905277010282,0.20088530677816635,0.20128007174776605,0.20167482390431418,0.2020696215998917,0.2024643978660623,0.2028591992922647,0.20325400921253794,0.20364885467699678,0.20404366495052653,0.20443852527097686,0.2048333964222528,0.20522827379567454,0.20562316675837566,0.2060180996940474,0.20641301248433763,0.20680795651369197,0.20720293506581877,0.20759793809214314,0.20799292168357164,0.20838795833517082,0.2087829767917027,0.20917807076366443,0.20957313128679164,0.20996822838632062,0.2103633622771181,0.21075853066769337,0.21115370551776752,0.2115488813454355,0.2119441239890574,0.21233936428616257,0.2127346437105484,0.21312993963398588,0.2135252647971215,0.21392063344835288,0.21431600716798638,0.21471143217228703,0.21510685021297254,0.21550231517616958,0.2158978192464954,0.2162933416621137,0.21668892745572155,0.21708449408931701,0.2174801269695911,0.2178757755515021,0.21827143150732456,0.21866714669768164,0.21906289119044564,0.219458678141053,0.21985449627381143,0.22025031748566332,0.22064619861626167,0.22104210166047258,0.22143804373594297,0.22183401528045746,0.22223002766272454,0.22262606970325244,0.22302216448815976,0.22341828238828762,0.22381441572560914,0.22421059852577105,0.22460680766088867,0.22500307863021918,0.225399369962689,0.22579567884467827,0.22619205869998896,0.22658843237038523,0.2269848515865939,0.22738134194876733,0.22777783190907014,0.22817436619955184,0.22857096284589307,0.2289675819371533,0.22936420829021475,0.2297608925247067,0.2301576253573957,0.23055437022547956,0.2309511895468935,0.23134799683484092,0.23174488737775625,0.23214180875756785,0.2325333165446392,0.23292026684363626,0.2333074844634239,0.23369499616661027,0.23408283120509016,0.23447098723563362,0.2348594678449622,0.2352482966197909,0.23563743069851395,0.23602693191325214,0.236416722837494,0.2368068698366851,0.23719729206183887,0.23758802717319127,0.23797907693610204,0.23837036994866648,0.23876196095267171,0.23915379388160993,0.2395459034100704,0.23993822244057486,0.2403307951737316,0.24072362614483556,0.24111664422121992,0.24150990327339458,0.24190334409680453,0.24229697042436268,0.2426908305916803,0.24308473467868605,0.24347890341690934,0.2438732075527149,0.2442675538282059,0.24466207091656353,0.24505665836805496,0.24545135016971495,0.2458461121707148,0.24624090578622304,0.24663577553552468,0.24703059959409257,0.2474254748418983,0.247820320791572,0.24821515516788442,0.2486099512126022,0.24900481739544628,0.24939957861508752,0.24979429759927232,0.25018895130488206,0.2505835656906889,0.25097809292899254,0.25137256835428523,0.25176697320077146,0.25216130474190857,0.25255560147569367,0.2529497931738344,0.25334394625990114,0.25373801960617565,0.254132068571246,0.2545259787746222,0.25491989410289984,0.25531374575745447,0.2557075305008825,0.2561012852790947,0.25649507021747175,0.2568887351644345,0.2572824093944791,0.257676075966533,0.2580697224808948,0.2584633489396299,0.25885698634670246,0.25925066475373404,0.25964441203745464,0.2600380927539896,0.260431786147326,0.260825594063817,0.26121944749254306,0.2616133250497567,0.26200728148528796,0.26240129098701986,0.26279537032524264,0.2631895299210743,0.2635837957668317,0.26397817945779106,0.2643726710683467,0.26476720741397647,0.265161871381901,0.2655567264106168,0.2659515972123308,0.26634666036815696,0.2667418673024357,0.2671370703866633,0.2675326305142122,0.267928201676894,0.2683239715826413,0.2687198578034125,0.2691159397429975,0.26951218990882536,0.26990855466581093,0.27030509786493123,0.27070184994905366,0.2710987540130993,0.2714957864463886,0.271892979669964,0.27229039615257067,0.27268788151533935,0.27308569319344883,0.27348358457505917,0.2738816349476367,0.2742798937555154,0.27467828186771537,0.2750768540050399,0.2754755840457307,0.27587453676857693,0.27627355425369815,0.2766727820141358,0.2770721739121273,0.2774716533232473,0.2778712959880682,0.2782711316161454,0.27867105164005296,0.2790711385587278,0.27947137196626665,0.27987166981590855,0.2802721633447657,0.28067270002628214,0.2810734257090235,0.2814741645465378,0.2818750695882841,0.28227603364377696,0.28267716278461275,0.2830782948138732,0.28347951792889786,0.28388085556594406,0.2842822549442186,0.28468373268795244,0.28508519201661625,0.2854867884836442,0.28588832466954317,0.28629000739237753,0.2866916593614551,0.2870933871936938,0.28749506255836477,0.2878968411214896,0.28829861906632703,0.28870035714967807,0.2891021315907338,0.28950388676882666,0.2899056416681907,0.29030740568978053,0.29070916785519,0.2911109134295921,0.2915125522458258,0.2919142429902004,0.29231589318078816,0.2927174514585837,0.2931190141098331,0.2935205225290268,0.29392198541317693,0.29432338136726294,0.2947248044863241,0.29512609484926866,0.2955273246335064,0.29592852763399313,0.29632970987134344,0.2967307048290183,0.2971317321919522,0.2975326674938343,0.29782153078981516,0.29821023449077155,0.2985992839422961,0.29898875763798416,0.2993786387536788,0.29976882615647277,0.3001594309367795,0.30055037949029545,0.30094159865080444,0.30133318649279733,0.3017251151748921,0.3021172866408202,0.3025098710909523,0.3029026559263472,0.3032957528062704,0.30368915893762943,0.30408275016440867,0.3044766519863551,0.30487081197649535,0.3052651949104807,0.30565986382191934,0.3060547680371532,0.3064498210731274,0.3068451227307375,0.30724062579458694,0.30763636574126313,0.30803226382403165,0.30842841140198785,0.3088246816558773,0.3092211844259104,0.30961780378812503,0.31001464541109197,0.3104116490682786,0.31080882480064,0.31120614888318576,0.3116036435846278,0.3120012853807111,0.31239911793900915,0.3127971321217035,0.31319528340800806,0.3135935890954014,0.3139920573374944,0.3143906843275782,0.31478959008487106,0.3151885556438966,0.3155877496760991,0.315987150119986,0.3163867556994476,0.31678649995902847,0.31718656002003387,0.31758676114499595,0.31798719555099186,0.3183879695361404,0.3187890146521139,0.31919026645978815,0.3195918369010011,0.3199938089622181,0.32039596618922134,0.32079854727909196,0.32120148593591585,0.32160477746085087,0.3220084676312029,0.3224126053909418,0.32281711306868843,0.32322216618838223,0.3236276762024003,0.3240336098582244,0.3244399845815395,0.3254919730082666,0.32589076895612173,0.32628938798838586,0.32668753652256205,0.32708520568927424,0.3274822943081414,0.3278785609306315,0.3282740033230099,0.32866832282851266,0.32906154489632694,0.32945340138599055,0.32984388545121235,0.33023275703332894,0.3306199735170816,0.33100538762862186,0.3313889362604804,0.3317704498451333,0.33361883224737515,0.3339271920616619,0.33423801327906294,0.33455143936309517,0.33486755600184204,0.3351860347135915,0.3355072120877076,0.33583099805135425,0.3361574182310281,0.33648640805599317,0.3368181577686164,0.3371524153038326,0.33748936719043376,0.3378289862526817,0.33817123691760914,0.3385160355984073,0.3388636328273171,0.3392137785417738,0.33956663769193624,0.33992200202127176,0.33933613121473866,0.33968262590488024,0.34002889642340234,0.3403751090974735,0.340721302637473,0.34106761199823454,0.34141419729442934,0.3417610486160011,0.34210843056069956,0.3424563000308543,0.3428046256806951,0.34315360709069104,0.3435033285530441,0.34385364801237916,0.34420483283924125,0.34455670293021323,0.34542650415630255,0.3458047531452329,0.34618349850215835,0.3465624694284905,0.346941867488095,0.3473215501093145,0.3477016001840563,0.34808195841300743,0.348462524612802,0.34884333484496327,0.34922443188459584,0.34960563349582685,0.3499871904988145,0.35036885240929977,0.35075061620921444,0.35113253963783053,0.3515146296808559,0.3518967696398651,0.3522790513320069,0.35266136137608955,0.3530436319679571,0.353426107346394,0.35380857874926125,0.35419103740700214,0.3545734868629662,0.35495595290967624,0.3553383884706734,0.3557208224758277,0.35610314129960785,0.3564854899315761,0.3568676967476893,0.35724994732518,0.35763209567042703,0.3580141534826366,0.3583961947260121,0.3587781106811866,0.35915995241171284,0.3595416468062452,0.35992337336600355,0.36030481036294937,0.3606862290149341,0.36106762466655756,0.3614488793172655,0.36182999801214216,0.36221097050399154,0.362591868182235,0.36297268641409364,0.3633533604672673,0.36373390590798127,0.3641143718509471,0.3644948032714296,0.3648750153702685,0.3652551720380539,0.3656351499545854,0.3660151421418081,0.36639500210187453,0.3667746331025368,0.3671542719838869,0.3675338189996587,0.3679132499736131,0.36829256577384667,0.36867175795398704,0.3704931675123322,0.3708854761111364,0.37127772443466595,0.37166974671190073,0.37206179795671535,0.37245370437772163,0.3728455133540011,0.37323728597945827,0.37362889547566197]}},\"id\":\"b944a763-e082-49fb-a46f-2b241c158e76\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"below\":[{\"id\":\"27a74617-b55f-413a-b732-8bf8308a3e5e\",\"type\":\"LinearAxis\"}],\"left\":[{\"id\":\"691b6602-9386-4dd4-b337-0c85f868d087\",\"type\":\"LinearAxis\"}],\"plot_width\":900,\"renderers\":[{\"id\":\"27a74617-b55f-413a-b732-8bf8308a3e5e\",\"type\":\"LinearAxis\"},{\"id\":\"c5a530b2-36ec-403c-85ad-0b7106a64d3f\",\"type\":\"Grid\"},{\"id\":\"691b6602-9386-4dd4-b337-0c85f868d087\",\"type\":\"LinearAxis\"},{\"id\":\"89aba5b0-9687-46ef-b001-e6d9c17d46f3\",\"type\":\"Grid\"},{\"id\":\"c1168160-af7b-48b1-92bc-af958a3ab9a2\",\"type\":\"BoxAnnotation\"},{\"id\":\"3c228a3e-4dcf-417f-b595-ac8079598d7c\",\"type\":\"Legend\"},{\"id\":\"fe00d21f-fa2f-47b7-bf26-759bd515417c\",\"type\":\"GlyphRenderer\"},{\"id\":\"512bfae6-8329-4bff-959f-19792152e5f0\",\"type\":\"GlyphRenderer\"},{\"id\":\"8fe25b60-0a89-4312-b58c-0a13de4b2377\",\"type\":\"GlyphRenderer\"},{\"id\":\"3ea3fcbf-2f19-4092-8e7a-c4ea0a0a1e68\",\"type\":\"GlyphRenderer\"},{\"id\":\"7eef9b57-a705-4e00-bab3-88edf1e2c58f\",\"type\":\"GlyphRenderer\"}],\"title\":{\"id\":\"93c6dcc1-c246-41b3-a6da-119caa3872f4\",\"type\":\"Title\"},\"tool_events\":{\"id\":\"7d0b32dc-1b80-4f5f-ae23-0146a92a1bc9\",\"type\":\"ToolEvents\"},\"toolbar\":{\"id\":\"cbb2a310-1aa2-41ed-ae9f-a7a41df057fb\",\"type\":\"Toolbar\"},\"toolbar_location\":\"above\",\"x_range\":{\"id\":\"167c3a2e-b0cd-4086-a06c-b0498a6a7e4b\",\"type\":\"DataRange1d\"},\"y_range\":{\"id\":\"df29649b-5a3d-4dfb-ac14-e21880fd50ea\",\"type\":\"DataRange1d\"}},\"id\":\"9ad12f60-7c08-4216-815d-6c9a0dc5c47c\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"label\":{\"value\":\"ITUB4\"},\"renderers\":[{\"id\":\"3ea3fcbf-2f19-4092-8e7a-c4ea0a0a1e68\",\"type\":\"GlyphRenderer\"}]},\"id\":\"13f908b5-2f4c-4d8e-8144-0ffd002fda66\",\"type\":\"LegendItem\"},{\"attributes\":{\"plot\":{\"id\":\"9ad12f60-7c08-4216-815d-6c9a0dc5c47c\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"b7ba6968-f149-40c4-a3e5-08e86bf312ea\",\"type\":\"BasicTicker\"}},\"id\":\"c5a530b2-36ec-403c-85ad-0b7106a64d3f\",\"type\":\"Grid\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"4b191dfb-9805-483c-b850-c128766eb4ee\",\"type\":\"Line\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"3638cee8-ed8d-44a8-b0c7-788de8c3b8ee\",\"type\":\"Line\"},{\"attributes\":{\"label\":{\"value\":\"BVMF3\"},\"renderers\":[{\"id\":\"8fe25b60-0a89-4312-b58c-0a13de4b2377\",\"type\":\"GlyphRenderer\"}]},\"id\":\"b8424489-314f-4348-a87c-6d1213c5237e\",\"type\":\"LegendItem\"},{\"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\":\"c1168160-af7b-48b1-92bc-af958a3ab9a2\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"data_source\":{\"id\":\"7293c5d7-3ff0-4bc5-9e33-9326a59ea296\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"bb21f79c-7a03-487d-bea1-f7998dedfcf8\",\"type\":\"Line\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"4b191dfb-9805-483c-b850-c128766eb4ee\",\"type\":\"Line\"},\"selection_glyph\":null},\"id\":\"3ea3fcbf-2f19-4092-8e7a-c4ea0a0a1e68\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"aefae4ef-e729-4ded-be13-7aaa0b716d26\",\"type\":\"Line\"},{\"attributes\":{},\"id\":\"7d0b32dc-1b80-4f5f-ae23-0146a92a1bc9\",\"type\":\"ToolEvents\"},{\"attributes\":{\"data_source\":{\"id\":\"b944a763-e082-49fb-a46f-2b241c158e76\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"80719eac-c3b0-45dd-8f28-bc282295c79d\",\"type\":\"Line\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"e3d88507-a47b-401e-907c-1df97b799dc4\",\"type\":\"Line\"},\"selection_glyph\":null},\"id\":\"7eef9b57-a705-4e00-bab3-88edf1e2c58f\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"a84e2736-f691-4bec-bc1e-252c8bf2f169\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"dd09e3e3-a43d-460c-8be1-acdd9615c876\",\"type\":\"Line\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"aefae4ef-e729-4ded-be13-7aaa0b716d26\",\"type\":\"Line\"},\"selection_glyph\":null},\"id\":\"512bfae6-8329-4bff-959f-19792152e5f0\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"9ad12f60-7c08-4216-815d-6c9a0dc5c47c\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"4ddc96ae-ab5e-4854-bef7-aa0b1f696f7c\",\"type\":\"BasicTicker\"}},\"id\":\"89aba5b0-9687-46ef-b001-e6d9c17d46f3\",\"type\":\"Grid\"},{\"attributes\":{\"data_source\":{\"id\":\"082ee34c-d971-4481-abd4-c33c2b9abb37\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"736efa32-91fc-4c96-bccf-1d81d9c037bc\",\"type\":\"Line\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"f867013e-b0df-4c78-a5d2-2fa088496078\",\"type\":\"Line\"},\"selection_glyph\":null},\"id\":\"8fe25b60-0a89-4312-b58c-0a13de4b2377\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"callback\":null},\"id\":\"167c3a2e-b0cd-4086-a06c-b0498a6a7e4b\",\"type\":\"DataRange1d\"},{\"attributes\":{\"line_color\":{\"value\":\"#ffffbf\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"736efa32-91fc-4c96-bccf-1d81d9c037bc\",\"type\":\"Line\"},{\"attributes\":{\"plot\":{\"id\":\"9ad12f60-7c08-4216-815d-6c9a0dc5c47c\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"240518dc-a48c-4bb7-bd8b-b1fd67de2185\",\"type\":\"PanTool\"}],\"root_ids\":[\"9ad12f60-7c08-4216-815d-6c9a0dc5c47c\"]},\"title\":\"Bokeh Application\",\"version\":\"0.12.3\"}};\n",
" var render_items = [{\"docid\":\"ea84622a-a3c3-4843-a4c7-77b7ad118327\",\"elementid\":\"712fc52c-c738-4c54-ad7e-6286842513c0\",\"modelid\":\"9ad12f60-7c08-4216-815d-6c9a0dc5c47c\"}];\n",
" \n",
" Bokeh.embed.embed_items(docs_json, render_items);\n",
" });\n",
" },\n",
" function(Bokeh) {\n",
" }\n",
" ];\n",
" \n",
" function run_inline_js() {\n",
" \n",
" if ((window.Bokeh !== undefined) || (force === \"1\")) {\n",
" for (var i = 0; i < inline_js.length; i++) {\n",
" inline_js[i](window.Bokeh);\n",
" }if (force === \"1\") {\n",
" display_loaded();\n",
" }} else if (Date.now() < window._bokeh_timeout) {\n",
" setTimeout(run_inline_js, 100);\n",
" } else if (!window._bokeh_failed_load) {\n",
" console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n",
" window._bokeh_failed_load = true;\n",
" } else if (!force) {\n",
" var cell = $(\"#712fc52c-c738-4c54-ad7e-6286842513c0\").parents('.cell').data().cell;\n",
" cell.output_area.append_execute_result(NB_LOAD_WARNING)\n",
" }\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": [
"mypalette = palettes.Spectral5[0:len(symbols)]\n",
"\n",
"p2 = figure(width=900, height=600, title=\"Efficient Frontier Weights (Short Sale Allowed)\", toolbar_location=\"above\")\n",
"for i, symbol in enumerate(symbols):\n",
" p2.line(weights_ss_true[symbol].index, weights_ss_true[symbol].values, legend=symbol, color=mypalette[i], line_width=2)\n",
"\n",
"p2.legend.location = \"bottom_left\"\n",
"p2.xaxis.axis_label = 'Risk'\n",
"p2.xaxis.formatter = NumeralTickFormatter(format=\"0.%\")\n",
"p2.yaxis.axis_label = 'Weight'\n",
"p2.yaxis.formatter = NumeralTickFormatter(format=\"0.%\")\n",
"\n",
"show(p2)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Proporção de cada ativo, sem vendas a descoberto\n",
"A continuidade observada no gráfico anterior não pode mais ser observada quando colocamos a restrição das vendas a descoberto."
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
" <div class=\"bk-root\">\n",
" <div class=\"plotdiv\" id=\"22835ff4-3f15-4157-a807-96c7ad14d50e\"></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",
" \n",
" \n",
" if (typeof (window._bokeh_timeout) === \"undefined\" || force !== \"\") {\n",
" window._bokeh_timeout = Date.now() + 0;\n",
" window._bokeh_failed_load = false;\n",
" }\n",
" \n",
" var NB_LOAD_WARNING = {'data': {'text/html':\n",
" \"<div style='background-color: #fdd'>\\n\"+\n",
" \"<p>\\n\"+\n",
" \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n",
" \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n",
" \"</p>\\n\"+\n",
" \"<ul>\\n\"+\n",
" \"<li>re-rerun `output_notebook()` to attempt to load from CDN again, or</li>\\n\"+\n",
" \"<li>use INLINE resources instead, as so:</li>\\n\"+\n",
" \"</ul>\\n\"+\n",
" \"<code>\\n\"+\n",
" \"from bokeh.resources import INLINE\\n\"+\n",
" \"output_notebook(resources=INLINE)\\n\"+\n",
" \"</code>\\n\"+\n",
" \"</div>\"}};\n",
" \n",
" function display_loaded() {\n",
" if (window.Bokeh !== undefined) {\n",
" Bokeh.$(\"#22835ff4-3f15-4157-a807-96c7ad14d50e\").text(\"BokehJS successfully loaded.\");\n",
" } else if (Date.now() < window._bokeh_timeout) {\n",
" setTimeout(display_loaded, 100)\n",
" }\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(\"22835ff4-3f15-4157-a807-96c7ad14d50e\");\n",
" if (element == null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid '22835ff4-3f15-4157-a807-96c7ad14d50e' 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 = {\"c2263dc0-c17b-4258-bc49-bb17a17e806a\":{\"roots\":{\"references\":[{\"attributes\":{\"callback\":null},\"id\":\"1cfaddb5-115c-4638-877d-8753618173c1\",\"type\":\"DataRange1d\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[0.3276185208729144,0.32761852455499285,0.3276184988715761,0.32761855767617,0.32761850624705724,0.3276193425099424,0.3276210172813669,0.3276235293231958,0.32762687861596157,0.32763106513388246,0.32763608884523554,0.3276419497111282,0.32764864768745783,0.32765618272196295,0.3276645547572867,0.327673763728768,0.32768380956756465,0.32769469219461383,0.3277064115269136,0.32771896747521423,0.3277323599441557,0.3277465888301686,0.32776170316310044,0.3277775554111653,0.3277942928702391,0.32781186627042086,0.32783027548173077,0.3278495203602329,0.3278696007604206,0.327890516526277,0.32791226750052427,0.32793485351615814,0.3279582744004624,0.32798252997565613,0.3280076200529819,0.3280335444472768,0.32806030295323413,0.3280878953744637,0.3281163214928485,0.3281455810975444,0.32817567396367586,0.32820659986384776,0.32823835855911426,0.3282709498073848,0.32830437336470925,0.3283386289767402,0.32837371637966595,0.3284096353065426,0.328446385490255,0.3284839666462454,0.328522378491068,0.3285616207320121,0.3286016930747113,0.3286488114485297,0.3286913313465059,0.3287332341034497,0.3287759982257872,0.328819623377448,0.32886410921577514,0.3289094553915382,0.3289556615489477,0.3290027273256681,0.3290506523528323,0.32909943625505605,0.3291490786504519,0.32919957915064474,0.3292509373607862,0.32930315287957035,0.32935622529924874,0.3294101542056466,0.32946493917817843,0.32952057978986415,0.3295770766271116,0.3296344357551179,0.329692640466889,0.32975169028233553,0.329811584705585,0.32987232322433635,0.32993390533750516,0.3299963305246728,0.3300595982613782,0.33012370801607366,0.3301886592534524,0.33025445141789733,0.3303210839826195,0.33038855634002484,0.33045686796450413,0.33052601827381783,0.3305960066714396,0.33066683260080204,0.3307384954348778,0.3308109945870268,0.33088432944732427,0.3309584993935369,0.3310335038140434,0.33110934209434983,0.3311860135546626,0.3312635176053262,0.3313418535634944,0.3314210207654918,0.33150101858140035,0.3315803667706755,0.3316553508408586,0.33173722375590725,0.33181990316667603,0.33190338846687845,0.33198767904191984,0.33207277428194365,0.33215867356425693,0.3322453762738716,0.33233288177727727,0.33242118944998655,0.33251029862497045,0.3326002086866098,0.33269091897500536,0.3327824288423031,0.3328747376179746,0.33296784463743345,0.33306174924749865,0.33315645075170885,0.3332519484870249,0.33334824176441596,0.33344532990777176,0.3335432121893467,0.33364188792990374,0.33374135644035235,0.33384161698305814,0.3339426688744463,0.33404451137369423,0.33414714376545673,0.3342505653137495,0.3343547753113757,0.33445977299625357,0.33456555763513846,0.3346721284817986,0.33477948478541014,0.3348876257905814,0.33499655073737855,0.33510625886135037,0.33521674939355334,0.335328021550047,0.3354400745745613,0.3355529076832664,0.33566652005879416,0.3357809109537664,0.33589607952832223,0.3360120250265912,0.3361287465998748,0.3362462434748632,0.3363645148398088,0.3364835598530452,0.3366033777192032,0.33672396756062456,0.3368453286148634,0.336967460019645,0.3370903609404778,0.33721403053504684,0.3373384679725447,0.33746367237465313,0.3375896428872456,0.33771637868294996,0.33784387888677936,0.33797214264623887,0.3381011690479721,0.33823095726683644,0.33836150640806967,0.3384928156081368,0.33862488393439627,0.3387577105660711,0.33889129455994904,0.33902563501993527,0.33916073108287664,0.339296581847061,0.33943318636947506,0.33957054375871737,0.3397086531015482,0.33984751348121683,0.33998712395887415,0.3401274836463812,0.34026859160249673,0.3404104469119095,0.34055304858383517,0.34069639573933225,0.34084048743867745,0.3409853226977668,0.34113090056708545,0.3412772201634511,0.34142428046613843,0.3415720805407974,0.3417206194038998,0.3418698961393813,0.34201990975948887,0.342170659314578,0.34232214378860504,0.3424743622054179,0.3426273136572685,0.34278099709427445,0.34293541152416834,0.3430905560440399,0.3432464295565326,0.34340303117588855,0.343560359825766,0.3437184145347064,0.3438771942752246,0.3440366981224538,0.3441969249637783,0.34435787386787936,0.3445195438299261,0.34468193377423934,0.3448450427130118,0.34500886962863075,0.3451734134923803,0.34533867325428713,0.3455046480115461,0.34567133654383886,0.3458387379159097,0.346006851119397,0.34617567509176655,0.34634520885909625,0.34651545117888133,0.34668640120555644,0.3468580578274571,0.34703042002902734,0.3472034866939096,0.3473772568017567,0.34755172929743916,0.3477269031236846,0.3479027771836269,0.34807935052821976,0.34825662194318135,0.348434590479296,0.3486132550648891,0.34879261451559856,0.34897266787734516,0.3491534140347148,0.34933485192075936,0.349516980488252,0.34969979858444955,0.34988330512721383,0.35006749911190366,0.35025237941220166,0.35043794503481146,0.3506241946278068,0.35081112745133197,0.3509987421054667,0.3511870376293314,0.3513760129769223,0.3515656670436281,0.35175599865312984,0.35194700669233503,0.3521386902562696,0.3523310479624999,0.35252407884255427,0.35271778183700014,0.3529121557987549,0.35310719965202103,0.3533029122123975,0.3534992923813571,0.3536963391280943,0.35389405126192747,0.35409242769130456,0.3542914672601337,0.35449116901698413,0.35469153158750344,0.35489255402796693,0.3550942352304366,0.3552965738426132,0.35549956908640906,0.35570321954152045,0.355907524277048,0.3561124820879324,0.35631809194159836,0.3565243525423899,0.35673126277073197,0.3569388217331018,0.3571470279696804,0.3573558807570205,0.35756537847691244,0.35777552032333076,0.35798630508454377,0.35819773153059903,0.35840979868388484,0.3586225055338194,0.35883585047500877,0.3590498326403999,0.3592644509859948,0.3594797042800513,0.35969559138264817,0.35991211125050965,0.3601292625488342,0.36034704413333357,0.3605654551586172,0.3607844942855715,0.3610041600739574,0.3612244520664634,0.36144536842938096,0.36166690852182837,0.36188907068221443,0.3621118542829124,0.36233525807654265,0.3625592807066436,0.36278392649143454,0.3630092039833127,0.36323510974685336,0.3634616395416308,0.3636887904252584,0.36391655855220706,0.3641449414098956,0.36437393606095553,0.36460354018914765,0.36483375144628316,0.3650645674073248,0.3652959860096139,0.36552800553268555,0.3657606240406229,0.3659931127356883,0.36622688232464823,0.3664612513118711,0.36669621858935414,0.366931782981064,0.36716794333525865,0.3674046985271326,0.36764204737639145,0.36787998875704536,0.36811852151242713,0.3683576445014068,0.3685973565521269,0.3688376565391948,0.36907854331396545,0.36932001570594913,0.3695620725966156,0.3698046709789259,0.3700476912742367,0.37029110201080434,0.3705349118256054,0.3707791212049149,0.37102372941013,0.3712687357436688,0.37151413944478556,0.37175993985213535,0.3720061362490987,0.372252728006767,0.372499714456405,0.3727470949966942,0.3729948690397256,0.37324303604999204,0.3734915964126429,0.3737405505389886,0.37398989531938187,0.3742396300337059,0.3744897539052839,0.37474026614656475,0.3749911660319915,0.37524245272871737,0.3754941254797369,0.3757461834181527,0.37599862575136545,0.3762514516132772,0.37650466008920763,0.3767582502615739,0.3770122212180641,0.37726657192635826,0.3775205907014442,0.3777756610934663,0.37803109975125393,0.37828691309160933,0.37854310139229247,0.3787996639104321,0.37905659988236334,0.37931390855129243,0.37957158919078593,0.3798296410086964,0.3800880632787945,0.38034685526216677,0.3806060162117057,0.38086554535885836,0.3811254419766587,0.3813857053296712,0.3816463346758456,0.38190732926529836,0.38216868834971235,0.3824304112020241,0.3826924970723964,0.3829556130989314,0.38321835863181786,0.38348146764188695,0.3837449397510051,0.38400877452667553,0.3842729714518197,0.3845375300206121,0.38480244954389037,0.3850677293780543,0.3853333686869785,0.38559936671489053,0.38586572259446483,0.38613250025470497,0.38639975401983545,0.38666737096371606,0.38693531541260534,0.3872027928131327,0.3874712894004402,0.38774013384819755,0.38800932531719823,0.38827886323399824,0.3885493927169675,0.3888195387360317,0.38909003069022075,0.38936087242681666,0.38963206597587663,0.38990361183748595,0.39017550947560237,0.39044775776125756,0.39072035507915387,0.39099329972615854,0.3912665899267954,0.39154022401581595,0.3918142003151253,0.3920885173990754,0.3923631738911549,0.392638168472412,0.3929135001109363,0.3931891676635508,0.3934651701743622,0.39374150672489744,0.39401817643987425,0.3942951784963602,0.3945725120793736,0.39485017640484665,0.39512817072557804,0.3954064943163363,0.3956851465702112,0.3959641280481939,0.3962434420144016,0.3965231100110187,0.396803167667493,0.3970834226948424,0.3973640110657166,0.39764493027750564,0.3979261758772389,0.3982077281367434,0.39848960456713367,0.39877181407975226,0.39905435331197625,0.39933721762220664,0.3996204018691251,0.3999039020956996,0.40018771644480094,0.40047202831299067,0.4007563444001012,0.4010411039167187,0.4013261784900671,0.4016115664693754,0.4018972666319537,0.40218327914019414,0.40246960387103914,0.4027562404563842,0.4030431883744242,0.4033304470265281,0.4036180158935932,0.40390588713029724,0.40419405938496805,0.4044825416078352,0.4047713356548185,0.40506043962910454,0.4053498512102704,0.40563956858791955,0.40592959059639533,0.4062199163105409,0.4065105449886759,0.40680147592892063,0.4070927084623936,0.40738424192919775,0.4076760756934266,0.40796820910121956,0.40826064149138797,0.40855337225667737,0.40884728864886416,0.40914060863727403,0.40943420876512804,0.4097280843427481,0.4100222338928219,0.4103166559825014,0.41061134914619585,0.4109063119777112,0.411201543035364,0.4114970409565903,0.4117928043475969,0.4120888318849738,0.41238512224966883,0.4126816741563655,0.41297848635836465,0.4132755576221351,0.41357288672894144,0.41387047255041076,0.4141683138955167,0.41446640968290543,0.414764758824998,0.415063360229828,0.4153622128987402,0.41566131580392895,0.4159606679645471,0.4162602684493768,0.4165601163021296,0.4168602106160261,0.4171605505586886,0.4174611352393533,0.41776196385697745,0.41806303558528807,0.4183643497159781,0.4186659054215974,0.41896770205949435,0.4192697475353904,0.4195720542496474,0.41987460115814584,0.42017647086758025,0.42047943512012087,0.4207826365159078,0.4210860742830144,0.4213897478221484,0.42169231655651285,0.4219963623992954,0.42230064209953017,0.4226051535915755,0.42290989639137566,0.42321487001247626,0.4235200739434664,0.4238255077545718,0.4241311709132678,0.42443706297602224,0.42474318343144324,0.42504953179190025,0.4253561075882796,0.42566291031914405,0.4259699395126862,0.4262771947057729,0.42658467536768724,0.4268924716407696,0.42720073401658143,0.42750939474025657,0.4278185143243341,0.4281280920957425,0.4284381277026951,0.42874862088918747,0.42905957167129716,0.42937098015375263,0.4296828463735681,0.4299951701945951,0.4303095066269367,0.4306227181995988,0.43093637935010476,0.4312504894538105,0.4315660214442515,0.43188099165112115,0.4321964112990264,0.4325122795429912,0.43282859540116675,0.43314535778967783,0.43346256801053495,0.433780228071229,0.4340983286526985,0.43441686880864144,0.4347358476174781,0.4350552641410328,0.4353751174974541,0.43569540673550566,0.43601613090322683,0.4363372891306743,0.4366588804900141,0.43698090403058737,0.43730335885969995,0.43762624406436823,0.43794955873059804,0.43827330192224523,0.43859747275500216,0.4389220703044613,0.43924709365608394,0.4395725419285548,0.4398984142150703,0.44022470957262944,0.4405514271243408,0.4408785660034026,0.4412061252389988,0.4415341039898564,0.441862501340393,0.4421913163985827,0.4425205482696644,0.4428501960664273,0.44318025891206275,0.4435107358756941,0.4438416261127388,0.4441729287061149,0.44450464279961927,0.4448367674994698,0.44516930193072435,0.44550224520947884,0.4458355964793657,0.4461693545130176,0.4465035184576972,0.44683808782605466,0.4471730617690894,0.4475084394011344,0.44784421986095774,0.4481804023015942,0.4485169858546873,0.44885396967078867,0.4491913528992015,0.4495291346719301,0.44986731412322994,0.45020589043699344,0.45054486275190686,0.45088423022366764,0.4512239920046236,0.4515641472518304,0.4519046951332633,0.45224563480179286,0.4525869654295825,0.45292868618654064,0.45327079621755334,0.45361329470879624,0.45395618082086936,0.4542994537257346,0.4546436733313877,0.4549876793982982,0.45533207357892524,0.4556768551798802,0.4560220236675058,0.45636757834788627,0.4567135185709516,0.4570598436863472,0.45740655288936755,0.45775364546193875,0.4581011204306979,0.4584489769319677,0.4587972138782804,0.45914583011308185,0.4594948244296817,0.4598441955317917,0.46019394214345943,0.46054406282282057,0.46089455633507725,0.4612454213709968,0.46159665659526666,0.46194826109500936,0.46230023383496366,0.4626525739489643,0.46300528064888113,0.46335835335922626,0.46371179147499436,0.46406461678341066,0.4644187274418161,0.46477141631397656,0.4651261615125447,0.46548126409327395,0.4658367233006195,0.4661925384011847,0.46654870879963967,0.4669052353267928,0.4672621196292786,0.46761936035172286,0.46797695893529984,0.4683349233884471,0.46869324832403514,0.4690519272723844,0.4694109443201829,0.4697702764144947,0.47012990839036367,0.4704898541838774,0.4708501516647552,0.47121131725775606,0.47157223126890474,0.47193364242440355,0.47229553333374813,0.47265710959724816,0.4730195629050927,0.4733823486517745,0.47374545416030184,0.4741088788678331,0.4744726272628526,0.47483670253625576,0.47520169212191793,0.47556622961206996,0.47593123357753275,0.4762966877483658,0.4766624771421816,0.4770285975900899,0.4773950481892088,0.4777618279528871,0.4781289358243282,0.4784963709132398,0.47886413226007934,0.47923221880355543,0.47960062973119816,0.4799693640898356,0.480338420994994,0.4807077996194145,0.4810774992306132,0.4814475191265742,0.481817858652657,0.4821885172760752,0.4825594945765413,0.4829307902552972,0.4833024040515648,0.48367433603527077,0.48404658614779555,0.48441915459752294,0.48479204156291206,0.4851652471963508,0.4855387713966733,0.485912613770581,0.48628677331398845,0.48666173748561714,0.48703632228749183,0.4874112831159519,0.48778711808791264,0.4881624980804226,0.48853836034878845,0.4889146559384489,0.48929132543687437,0.4896684056257545,0.490045951599564,0.49042317369430743,0.4908011563217118,0.4911795076005428,0.4915576031842891,0.49193639070888534,0.4923154847044879,0.49269488515101184,0.4930745913647547,0.493454602184728,0.4938349159295011,0.4942155308300826,0.494596444951963,0.49497765648316505,0.4953591637704427,0.4957409652311993,0.4961230594731949,0.49650544522701456,0.4968881213183531,0.49727108678864096,0.49765434066972647,0.49803788200397797,0.4984217100963559,0.49880582420459146,0.4991902236614418,0.4995749078387592,0.4999598762744819,0.5003451285414345,0.5007306642925553,0.5011164832643826,0.5015025852652909,0.5018889702097965,0.5022756380268597,0.5026625887313902,0.5030498223275642,0.5034373388499208,0.5038251381973499,0.5042132203367085,0.5046015849638693,0.5049902317952749,0.5053791603470241,0.5057683699827319,0.5061578600254687,0.506547629615227,0.5069376778887179,0.5073280039115786,0.5077191530337897,0.5081099505573895,0.5085010387793968,0.5088924147733859,0.5092840764296084,0.5096760212083846,0.5100682471931943,0.5104607813907877,0.5108536020752311,0.5112466972695389,0.5116400669736914,0.5120337114412281,0.5124276309390629,0.5128218261281751,0.513215676081069,0.5136103425057741,0.5140052751153042,0.5144004734398787,0.514795936994438,0.5151916653298481,0.5155876579315746,0.5159839142234586,0.5163804335029022,0.5167772148905009,0.5171742572221573,0.5175715589869805,0.5179691183190409,0.5183669329875326,0.5187650005638732,0.5191633188199051,0.5195618862623187,0.5199607026980112,0.5203597696505828,0.5207590901665654,0.5211586678785516,0.5215585053609705,0.5219586030362763,0.5223593092866805,0.5227597394802035,0.5231605048205838,0.5235615760105713,0.5239633505645851,0.5243647358048913,0.5247665013039349,0.52516857545494,0.5255709256491867,0.5259735365076305,0.526376395134451,0.5267795006598399,0.527182851826865,0.5275864485498842,0.5279902901148998,0.5283943758913644,0.5287987053860629,0.5292032779637972,0.5296080930296972,0.5300131504115849,0.5304184492257633,0.5308239889264812,0.5312297689351825,0.5316357888816083,0.5320420481205522,0.5324485460529598,0.5328552821875893,0.5332622558710797,0.5336694667004198,0.5340769140751931,0.5344845974725903,0.5348925162988789,0.5353006701539214,0.5357090583432144,0.5361176802853201,0.5365265357921298,0.5369356239151918,0.5373449444015402,0.5377544964461688,0.5381642797489563,0.5385742938852193,0.5389845380618323,0.5393950119132461,0.5398057148115711,0.5402166462599496,0.5406278057575918,0.5410391928586403,0.5414508067199123,0.5418626472021574,0.5422747138693207,0.5426870058897331,0.5430995228015831,0.5435122640761096,0.5439252293356994,0.5443384180006918,0.5447518294338245,0.5451654635262064,0.5455793193020945,0.545993396566334,0.5464076945867465,0.5468222131019972,0.5472369512095709,0.5476519091055221,0.5480670857076768,0.5484824803653235,0.5488980934894478,0.5493139236822627,0.549729970791212,0.550146234099216,0.5505627135471599,0.5509794082232801,0.5513963179092195,0.5518134421702116,0.5522307800720356,0.5526483315658361,0.5530660961061418,0.5534840730606805,0.553902261794857,0.5543206625186338,0.5547392740678021,0.5551580961274324,0.555577128114965,0.55599637014323,0.5564158210677477,0.5568354807733487,0.5572553485698212,0.557675424101996,0.5580957066201168,0.5585161963979011,0.5589368921093465,0.5593577939602252,0.5597789009759845,0.5602002129877574,0.5606217293142193,0.561043449852403,0.5614653767934108,0.5618875068135856,0.5623098385108156,0.5627330202645666,0.5631575815332568,0.5635834791811218,0.5640107107245436,0.564439272793779,0.5648691623636762,0.5653003761520567,0.5657329105185228,0.566166762156415,0.5666019842285378,0.5670384046802042,0.5674761802908647,0.5679152624986603,0.5683559688619614,0.5687974019878185,0.5692403054076047,0.5696845610771832,0.5701301123905335,0.5705769494392532,0.5710250682586746,0.5714744650016355,0.5719251383636904,0.572377083626041,0.5728302994767241,0.5732847807649216,0.5737405275023068,0.5741975340823943,0.5746557979448994,0.5751153173381679,0.5755760871496207,0.5760381069374542,0.576501371971604,0.5769658796884414,0.5774316270889869,0.5778986107461345,0.578366828525399,0.5788362765957427,0.579306953608496,0.5797788536766982,0.5802519771256146,0.580726318888777,0.581201875608689,0.5816786455038442,0.5821566247786081,0.5826358120970041,0.5831162024468157,0.5835977932757404,0.5840805815981703,0.5845645668365643,0.5850497428532416,0.5855361074885306,0.5860236589350432,0.5865123930819945,0.5870023069793188,0.5874933984350001,0.5879856641184633,0.5884791010829665,0.5889737063846434,0.5894694770825473,0.5899664098629451,0.5904645029198481,0.5909637521916329,0.5914641554374038,0.5919657087972877,0.5924684105629283,0.5929722566640098,0.593477245024253,0.5939833724511252,0.5944906360353509,0.5949990328710513,0.5955085598626342,0.5960192148581146,0.5965309940312975,0.5970438948672141,0.5975579143592266,0.5980730498759531,0.5985892984869771,0.5991066570590501,0.5996251229747172,0.6001446932064092,0.6006653651058922,0.6011871569420064,0.6017115394922604,0.6022408527038137,0.6027750835874243,0.6033142190793906,0.6038582460429461,0.604407151269647,0.6049609214807637,0.6055195433286686,0.6060830033982157,0.6066512882081305,0.6072243842123796,0.6078022778015586,0.6083849553042558,0.608972402988426,0.6095646070627575,0.6101615536780305,0.6107632289284791,0.6113696188531407,0.6119807094372045,0.6125964866133619,0.6132169362631326,0.613842044218209,0.6144717962617782,0.6151061781298415,0.6157451755125362,0.6163887740554387,0.6170369593608707,0.6176897169891922,0.6183470324600961,0.6190088912538864,0.6196752788127511,0.6203461805420398,0.6210215818115106,0.6217014679565938,0.6223858242796303,0.6230746360511121,0.6237678885109068,0.6244655668694814,0.6251676563091129,0.6258741419850922,0.6265850090269155,0.6273002425394739,0.6280198276042286,0.6287437492803774,0.6294719926060145,0.6302045425992769,0.6309413842594899,0.6316825025682894,0.6324278824907483,0.6331775089764837,0.6339313669607606,0.6346894413655788,0.6354517171007567,0.6362181790650031,0.6369888121469761,0.637763601226334,0.6385425311747751,0.6393255868570658,0.6401127531320668,0.6409040148537345,0.6416993568721232,0.6424987640343736,0.6433022211856831,0.6441097131702879,0.6449212248324032,0.6457367410171742,0.6465562465716149,0.647379726345525,0.648207165192408,0.6490385479703705,0.6498738595430167,0.650431421168143,0.6504314211681552,0.6504314211681561,0.6504314211681526,0.6504314211681245,0.6504314211681381,0.6504314211681398,0.6504314211681383,0.6504314211681108,0.650431421168118,0.6504314211680856,0.6504314211682425,0.650431421168151,0.6504314211681762,0.6504314211681986,0.6504314211680794,0.6504314211681685,0.6504314211682178,0.6504314211682288,0.6504314211680734,0.6504314211680396,0.6504314211682417,0.650431421196252,0.650431421168084,0.6504314211683154,0.6504314211679917,0.6504314211682017,0.6504314211681342,0.6504314211682222,0.650431421168131,0.6504314211680873,0.6504314211680358,0.650431421168147,0.6504314211679793,0.6504314211680354,0.650431421168102,0.650431421168133,0.6504314211681815,0.6504314211680918,0.6504314211680909,0.6504314211680826,0.650431421168028,0.6504314211681513,0.6504314211680937,0.6504314212168691,0.6504314211680002,0.650431421168286,0.6504314211685488,0.6504314211681096,0.6504314211682941,0.6504314211685547,0.6504314211680956,0.6504314211683113,0.6504314211684885,0.6504314211681849,0.650431421168326,0.6504314211684297,0.6504314211682155,0.6504314211679184,0.6504314211682105,0.6504314211681317,0.6504314211680611,0.6504314211679451,0.6504314211680983,0.6504314211682588,0.6504314211680085,0.6504314211680232,0.6504314212403407,0.6504314211683315,0.6504314211681826,0.6504314211683471,0.6504314211682738,0.6504314211681698,0.6504314211682698,0.6504314211679041,0.6504314211679395,0.6504314211679528,0.6504314211681336,0.6504314211681436,0.6504314211681338,0.6504314211683457,0.6504314211680795,0.6504314211681019,0.6504314211682705,0.6504314211681456,0.6504314211680374,0.6504314211681864,0.6504314211682373,0.6504314211682757,0.6504314211679336,0.6504314212072408,0.6504314211681433,0.6504314211680498,0.6504314211683573,0.6504314211684686,0.6504314211681391,0.6504314211679796,0.650431421168314,0.6504314211680439,0.6504314211679354,0.6504314211683815,0.6504314211682266,0.6504314211680166,0.6504314211687673,0.6504314211680575,0.6504314211683299,0.6504314211684152,0.6504314211684658,0.6504314211684058,0.6504314211824711,0.650431421168519,0.6504314211683059,0.6504314211680978,0.6504314211680853,0.6504314211679295,0.6504314211681267,0.6504314211679085,0.6504314211684737,0.6504314211678885,0.650431421168656,0.6504314211860333,0.6504314211680513,0.6504314211682494,0.6504314211684301,0.6504314211680586,0.6504314211681571,0.6504314211681723,0.650431421168437,0.6504314211680293,0.6504314211683254,0.6504314211683727,0.6504314211684734,0.6504314211679928,0.6504314211676888,0.6504314211683334,0.6504314211681724,0.6504314211683655,0.6504314211680013,0.6504314211679391,0.6504314211679816,0.6504314211689638,0.6504314211680372],\"y\":[0.040571429402397656,0.04056334121608406,0.040607849582153535,0.04055328984153412,0.04147760044485026,0.042372887286075335,0.04326182052920583,0.04415075377208759,0.0450396869658009,0.04592862012289578,0.04681755332052646,0.047706486486502,0.04859541970132966,0.04948435290358631,0.0503732861006179,0.0512622192926759,0.05215115250238117,0.0530400856825441,0.05392901888242051,0.05481795208973883,0.05570688528210365,0.056595818451530076,0.05744450477350443,0.0583736849264988,0.05926261802891668,0.06015155126722614,0.061040484451946916,0.06192941767481311,0.06281835079599592,0.06370728401125705,0.06459621723679124,0.0654851504306569,0.06637408362642248,0.06726301675595527,0.0681519500887222,0.06904088313334017,0.069929816494148,0.07081874951582978,0.07170768288899795,0.07259661601123868,0.07348554920902428,0.07437448228952633,0.07526341556304163,0.07615234880238123,0.07704128208947596,0.07793021505625795,0.07881914823691501,0.0797080816897488,0.08059701461934823,0.08148594791892363,0.08237488101461508,0.08326381449014453,0.08415274769828174,0.08458839905960192,0.08544941920341939,0.08636148331217619,0.08727354742093286,0.08818561152968965,0.08909767563844648,0.09000973974720332,0.09092180385596012,0.0918338679647168,0.09274593207347363,0.09365799618223042,0.09457006029098729,0.09548212439974393,0.09639418850850069,0.09730625261725756,0.09821831672601436,0.09913038083477119,0.10004244494352785,0.1009545090522847,0.10186631226711967,0.10277499522676428,0.10368366660255414,0.10459232626243295,0.10550097399184778,0.1064096094928307,0.10731823262787267,0.10822684314938823,0.10913544083513217,0.11004402546123691,0.11095259682979998,0.111861154631911,0.11276969893935003,0.11367822887080933,0.1145867447938996,0.11549524638007641,0.11640373309439554,0.1173122051880915,0.11822066196632904,0.119129103431863,0.12003752931139858,0.12094593928847633,0.12185433327595323,0.12276271117906962,0.12367107225265159,0.1245794168787373,0.1254877444862274,0.12639605469867704,0.1273043476877579,0.12816082181410698,0.12859940797655103,0.12948834015243552,0.13037727361339835,0.1312662072805623,0.1321551404966683,0.1330440736964436,0.1339330061112546,0.1348219395679709,0.135710872779182,0.1365998070563885,0.13748873887844082,0.13837767234459733,0.1392666055162619,0.14015553903814845,0.14104447223579591,0.14193340487893177,0.14282233863108762,0.14371127126344746,0.1446002044131708,0.14548913787361503,0.1463780720463831,0.14726700487300698,0.14815593745536515,0.1490448712912315,0.14993380384320767,0.1508227376905131,0.1517116706074723,0.15260060407001627,0.15348953633226584,0.1543784704889921,0.15526740339799128,0.15615633688818997,0.15704527008777872,0.15793420326678945,0.1588231364869358,0.15971206968650453,0.16060100288606663,0.16148993608562223,0.16237886853706715,0.1632678018030797,0.16415673568425193,0.16504566782820027,0.16593460206153152,0.16682353394887386,0.1677124684823427,0.16860140091599152,0.16949033410995168,0.17037926775748702,0.17126820128034992,0.17215713526783863,0.17304606688580743,0.17393499980431548,0.1748239329409707,0.17571286644449424,0.1766017996383349,0.17749073331484946,0.17837966651232146,0.17926859890148514,0.18015753206972876,0.1810464653441955,0.18193539932633007,0.1828243319952458,0.18371326492167306,0.18460219844295325,0.18549113211672635,0.1863800644383716,0.18726899887082726,0.1881579317095219,0.1890468639895246,0.18993579754602335,0.1908247313023181,0.19171366484266136,0.1926025980420197,0.1934915312413831,0.19438046444075122,0.19526939642387559,0.19615832992913929,0.19704726280876123,0.19793619688312458,0.19882512919361878,0.19971406277154355,0.2006029964759381,0.20149193003593144,0.20238086189554977,0.20326979606876014,0.20415872926636977,0.2050476624639807,0.20593659426416813,0.2068255282288673,0.20771446149271905,0.20860339565976752,0.2094923284520541,0.21038126069433016,0.2112701952302001,0.21215912811693505,0.21304806019875244,0.21393699444016318,0.21482592658245733,0.21571486083541783,0.2166037940036326,0.21749272765675517,0.21838165985276206,0.2192705940562853,0.22015952580893366,0.2210484593596907,0.22193739362535547,0.22282632638604533,0.22371526005529707,0.22460419333282264,0.22549312597852358,0.2263820585231492,0.22727099399232284,0.22815992605455804,0.2290488577302033,0.22993779084210267,0.2308267244926313,0.23171565952861892,0.23260459049845583,0.23349352415614016,0.23438245731797847,0.23527139071346762,0.23616032438131326,0.237049257546041,0.23793819077664694,0.23882712442038453,0.239716056431428,0.2406049898857293,0.24149392281916326,0.24238285606520113,0.2432717905400359,0.244160722487672,0.24504965518645086,0.24593858829063586,0.24682752207052527,0.24771645645356785,0.24860538961855974,0.24949432063902188,0.2503832548122956,0.25127218791607037,0.25216112273354924,0.25305005426759886,0.25393898965551015,0.2548279214962241,0.2557168538851648,0.25660578668399586,0.25749472165082865,0.2583836549434679,0.2592725861684892,0.26016152256797104,0.2610504545265247,0.26193938637834274,0.2628283190585486,0.2637172523166324,0.26460618668051245,0.26549511985150503,0.2663840520962007,0.2672729864245669,0.26816191945679246,0.2690508529657926,0.26993978503012045,0.2708287208183517,0.2717176522815169,0.272606586102278,0.27349551958921436,0.27438445109400533,0.2752733859718073,0.27616231638523075,0.27705125067815695,0.2779401825881976,0.27882911927776405,0.2797180524094415,0.2806069832973874,0.28149591767196924,0.28238484830379784,0.28327378655815966,0.2841627170976248,0.2850516519548519,0.2859405836970193,0.2868295141278073,0.2877184468385836,0.2886073882762815,0.28949631841232015,0.29038524622405515,0.2912741793566089,0.2921631146345871,0.2930520478237424,0.2939409846962242,0.29482991794744573,0.2957188473924399,0.29660777930634125,0.29749672142749733,0.29838564741043344,0.2992745878272628,0.30016351741961766,0.3010524517957624,0.3019413768902137,0.30283031024143425,0.30371925037060404,0.30460818045101745,0.30551109842455393,0.3064167882918787,0.3073213943912421,0.30822495835241825,0.3091275297369465,0.31002914247704133,0.3109298373518167,0.3118296465924635,0.3127286016324973,0.31362673124888246,0.3145240581489719,0.31542060559541185,0.31631639619081564,0.31721144736321794,0.3179421784544451,0.318831112500698,0.31972004405512855,0.3206089780964792,0.321497911354498,0.322386843520712,0.32327577769052873,0.32416471002068176,0.32505364321142116,0.3259425764061515,0.32683151042685793,0.32772044279972184,0.3286093759946357,0.32949831001776836,0.3303872423846492,0.3312761764599606,0.33204992443740206,0.33277631694420945,0.3334561179615368,0.33413247606076335,0.33480881279979763,0.3354851688098769,0.33616160580795523,0.3368381491808497,0.33751486333119957,0.3381917973649748,0.3388690149881272,0.339546569909085,0.3402245287969832,0.34090296589432795,0.3415819533555246,0.34226240543431136,0.3429450172367075,0.34362743189962247,0.3443096310658239,0.34499157409814174,0.34567322157865277,0.34635455354042516,0.34703551824741974,0.3477160819268621,0.348396186666068,0.3490757961987488,0.3497548482482685,0.35043327699959714,0.35111101445811366,0.35178799597775867,0.35246412807331423,0.3526532552957043,0.35332356855991537,0.35398935645802654,0.35465450827031153,0.3553196234107302,0.35598471911026663,0.3566497882558724,0.35731485114930456,0.35797992179660176,0.35864499188896554,0.35931009279772735,0.3599752296690156,0.36064041374376105,0.36130565457198155,0.36197096041748994,0.3626363504445934,0.3633018301065923,0.3639674102818384,0.3646330899354607,0.3652988824232337,0.36596479118222836,0.3669988534876609,0.36763747586740536,0.368276590493453,0.3689163661366495,0.3695569470179025,0.37019847334802164,0.3708410826574323,0.371484878854538,0.3721299725943309,0.3727764130271737,0.3734242919233457,0.37407363685790984,0.3747521064635221,0.37547183053592714,0.3761860259402379,0.3768888229935917,0.3772738081619704,0.3779389608010968,0.37860504115612476,0.3792717552478668,0.3799388885176743,0.38086115898750167,0.38150208448858913,0.38214246139258046,0.38278348973181503,0.3834260131444926,0.38407055581223754,0.3847173914808572,0.38536660704005493,0.3860181547086706,0.38667189753904074,0.38732764620664667,0.3879851995004566,0.3886442954166476,0.3893047477348697,0.389966341302875,0.3906288642269505,0.39129219146276895,0.3919561518243638,0.3926206217229096,0.3932855102427901,0.39395072460231595,0.3946161944326189,0.39528185831966783,0.39594766903724116,0.39661358397975083,0.3972795977348393,0.39794530528834726,0.3986106577219876,0.39927627477427924,0.3999482622029416,0.40063562141980263,0.40129903016737095,0.40196270953507024,0.40262710551650255,0.4032916398228465,0.40394651615443233,0.4046204278390448,0.4053135499687467,0.4060130696520282,0.4067096529532626,0.4073980552721816,0.4080764809140238,0.4087455776167781,0.4093290587363054,0.4099020701304504,0.4105704041709825,0.41123638643023547,0.4119020500207411,0.4125676081854227,0.4132331048346439,0.4138985561847015,0.4145639905807548,0.4152294276391523,0.4158948697517752,0.416560417090047,0.4172303427388,0.4179009274687111,0.41857222861700943,0.4192437894434381,0.4199149093882496,0.4205851768027021,0.42125447305584984,0.4219229270931837,0.42259071664528286,0.423258021619052,0.42392499016279905,0.4245915796012456,0.4252576366604026,0.4259235925581899,0.42658943823180306,0.4272551341825712,0.42792069901747315,0.42907595841562673,0.4296542679498325,0.43023057611890986,0.43080670553221334,0.4313825096600155,0.43195784003714804,0.432532569248367,0.4331065768852707,0.43367976814236536,0.4342520396407493,0.4348233033419212,0.4353934826576255,0.4359625065221521,0.4365303055440105,0.4370968216070942,0.4376620047491333,0.4382257873832159,0.438788148062382,0.4393490275005656,0.4399083979557187,0.44046623180079375,0.44102249356122203,0.4415771814230412,0.44213026188858606,0.44268173340718936,0.44323160689483837,0.4437798693515627,0.4443265393571701,0.4448716481761146,0.4454152019597117,0.44595725131552616,0.44649783449426816,0.44703700481208175,0.44757481054626747,0.44811133566480427,0.44864930019289445,0.4491924495490175,0.4497344295452702,0.4496998023118926,0.45023318933998535,0.4507663062838846,0.4512991756115867,0.45183181287577684,0.4518442042354034,0.4523653849790195,0.4528874569055496,0.45340954243339476,0.4539316439593372,0.4544537721511257,0.4549759243170759,0.4554981041248834,0.45602030895726414,0.4565425550937784,0.4570648097626929,0.4575871158718891,0.45810944264800507,0.45863180196076847,0.45915419984456773,0.45967662467400516,0.4601990747248148,0.4607712372552529,0.46142287161562495,0.4620728117434806,0.46272420502334666,0.463377392602108,0.4640327224256768,0.46469049586711214,0.4653509639808238,0.4660141097770378,0.4666796383356395,0.4673469383678577,0.46843694069837155,0.4690828542581571,0.4697287066523438,0.47037459561467615,0.47137206247967295,0.47200395050616717,0.4726391696053527,0.4732770062869835,0.4739167615727693,0.4745578708708105,0.4751998598326687,0.47584171801958436,0.47648353190880605,0.4771252912693181,0.4777669898634033,0.4784086374133072,0.479050232146844,0.4796917711044999,0.48033324161086827,0.48097465539497264,0.4816160059665094,0.48225729025076924,0.4828985030291007,0.4835396487828818,0.4841807243576737,0.48482171994069106,0.4854626362440621,0.48610347404753557,0.4867442224222403,0.4873848881157355,0.4880254641811838,0.48866594219004916,0.4893063214030823,0.48994660286316166,0.4905867728352039,0.4912268375242409,0.49186678791976307,0.49250662124216804,0.49314633096059957,0.49378591029950486,0.49442537387158053,0.4950646868448224,0.49570386245302217,0.4963428855193733,0.4969817570954227,0.4976204756144949,0.4982590299338747,0.4988974139648673,0.4995356309227449,0.5001735304471765,0.5008110917437141,0.5014484450020329,0.5020855914036699,0.502722515995502,0.5033592102027409,0.5039956761446113,0.504631900602832,0.5052678825299146,0.5059036182166,0.506539089558076,0.5071742824316552,0.5078092091592608,0.5084438529785122,0.5090782095095444,0.5097122667547311,0.5103460205119452,0.5109794643139284,0.5116125870069003,0.5122453896115439,0.5128778638500749,0.5135100006509256,0.5141417902554979,0.5147732315046407,0.5154043197881,0.5168440204255434,0.5174248015553047,0.518004716502109,0.5185838689883909,0.5191624082270533,0.5197404806520086,0.5203183086899705,0.5208961410980149,0.5214742475981387,0.5220529709592419,0.5226326643247562,0.5232137378987134,0.5237966104477112,0.5243817051202085,0.5249694577022905,0.525560272137172,0.5261545211353716,0.5267524549949665,0.527354271374428,0.5279600230874006,0.5285695808526564,0.5291827325806809,0.5297990723403654,0.5304180926017299,0.5310391463692026,0.5316615869540134,0.5322847177621765,0.5329213394298843,0.5335407615312429,0.5348371034510346,0.5354728294052773,0.5361088386195884,0.5367448834795868,0.5373803917283648,0.5380145910065139,0.5386410693475375,0.5392531902205565,0.5398578785513632,0.5404526258531348,0.541023714211358,0.5415895726316329,0.5421603350247254,0.5427527338815019,0.5433884949984612,0.5440866316605856,0.5448458785242677,0.5456289976644569,0.5457409105618111,0.5464940902516435,0.5471235553785991,0.547647018127208,0.5488828694824089,0.5494467493767663,0.5500380460171385,0.5506685978795799,0.5513340899932375,0.5520280600832255,0.5527509684554598,0.5527465123584767,0.5535942663777867,0.5543606736302195,0.5549977311550163,0.5556324212395569,0.5562683330527053,0.556905654243372,0.5575446252636466,0.5581854146342116,0.5588282837785709,0.5594734057032016,0.5601211168872865,0.5607715770542245,0.561425090130768,0.5620818916596891,0.562742284143608,0.5634064962127184,0.564074766711844,0.5647473719047913,0.5654245115948043,0.5661063285490666,0.5667929462826595,0.5674843465643199,0.5681802911613962,0.5688803979048282,0.5695838531563294,0.5702894724072923,0.5709954740856017,0.5716995556961875,0.5723988767364218,0.5730905506952352,0.572900374822679,0.5737591974090888,0.5746078173733484,0.5747852116131967,0.5757810460041701,0.5767426444544708,0.5776433385291438,0.5785572003903814,0.579475115210583,0.5803973456337029,0.5806805606646946,0.5814938857288986,0.5823185065409244,0.5823160079436789,0.5830135085022824,0.5837199094323966,0.5844317292183189,0.5851456176618557,0.5858588445027725,0.5865693941288571,0.5872759427295152,0.5879776621400372,0.5886741392430606,0.5893652521692996,0.59005104065851,0.5907316558303689,0.5914072707314223,0.5920781086162091,0.5927443451185332,0.5934061848068841,0.5940637265548684,0.5947171311564288,0.5953664707314685,0.5960118272361636,0.5966532558864155,0.5972907978494654,0.5979245089493275,0.5985544591740668,0.5991807379469598,0.5998034607171076,0.6004228149055093,0.6010390124637499,0.6016523791579661,0.6022632723224731,0.6028721436450001,0.6034795198653834,0.6040859859547045,0.6046921664177838,0.6052987313342665,0.6059063143179871,0.6065155447168719,0.6071269950082654,0.6077410927311246,0.608358211599479,0.6089785672576391,0.6102908009145712,0.6108795265551211,0.6114746835231388,0.6120769267619609,0.6126869799471001,0.6133051305781756,0.6139317246962005,0.6145980313360107,0.6152804111397874,0.6159653872471119,0.6166532313653029,0.6173440856758422,0.6180381332455771,0.6187355739354609,0.6186824427913888,0.6193484163290092,0.6200162553011433,0.6206860395182632,0.621357787362181,0.6220314649900447,0.6227069016343794,0.6233837766266948,0.6240615506477084,0.6247394259234277,0.625416240907187,0.6260904220815393,0.6267599910352617,0.6274225202053282,0.6280752468370873,0.628715325285325,0.6293402554635671,0.6299485255413074,0.6305404595745987,0.6311189943810489,0.6316900881111135,0.6322620946593697,0.6328439079606892,0.6341656145284352,0.6345814402208301,0.6350356148161406,0.6355404563929365,0.6367613600058573,0.6371772101430773,0.6376713508887645,0.6382318308623938,0.638845255118601,0.6394940327145161,0.6401449877501459,0.6407958956745492,0.641446851299036,0.6420978236157515,0.6427488317197216,0.6433998243801804,0.6440508886816124,0.6447019233490044,0.6453529776343412,0.6460040425251101,0.6466551301842218,0.64730624222776,0.647957333979679,0.6486084566193618,0.6492595995245448,0.6499108021740669,0.650561916234717,0.6512130878304623,0.6518642510825423,0.6525154142511331,0.6531666143404794,0.6538178293807826,0.6544690282217515,0.6551202217390847,0.6557714122239121,0.6564226465466488,0.6570738694676216,0.6577250774969435,0.6583762554814295,0.6590274792099662,0.6596786707982213,0.6603298646973504,0.6609810615232842,0.6616322582305807,0.6622834318039038,0.6629345979332055,0.663585766680465,0.6642369212023785,0.6648880804803371,0.6655391865741277,0.6661902907078967,0.6668413991005335,0.6674924790511788,0.6681435487181805,0.6687945930894397,0.6694455959770236,0.6700966193423991,0.6707475902233586,0.6713985206327259,0.6720494230552334,0.6727003187936835,0.6733512023970182,0.6740020550454069,0.6746528233152869,0.6753036054633157,0.6759542685478113,0.6766049636973162,0.6772556505410429,0.6779061970461994,0.678556726784232,0.6792072860141234,0.6798577588128896,0.6805082218625116,0.6811585412450408,0.6818088299859703,0.682459174719201,0.6831093575347961,0.6837595053595221,0.68440957606708,0.685059639658083,0.6857095326215947,0.6863594628698692,0.6870093083867075,0.6876590417271697,0.688308731091631,0.6889583585460883,0.6896079492316298,0.6902574213498858,0.6909068356947474,0.6915561186475707,0.6922054104787213,0.6928545065589813,0.6935036187494055,0.6941526141289335,0.6948015264817965,0.6954564352351988,0.6961112856641335,0.6967643455787571,0.6977629535961658,0.6988378055277776,0.6999130162474853,0.7009888898853923,0.7020661754317397,0.7031453231383622,0.7042269841210163,0.705311784515208,0.7064003045572161,0.707219581448341,0.7085688647805182,0.7098022765783553,0.7109194738176435,0.7113056191558715,0.7128050500058071,0.7141749534733889,0.7154100342818058,0.7165428451014385,0.7176699924011918,0.718797114429576,0.7199243028869402,0.7210514246214906,0.7221786133726878,0.7233057608340905,0.7244329856784394,0.7255600712445726,0.7266872264498144,0.72781438958706,0.7289415102931104,0.7300687084906602,0.7311958553156823,0.7323230374536945,0.7334501658014312,0.7345772925403429,0.7357045135217897,0.7368316689191354,0.7379588874706572,0.7390859420158046,0.7402131143786654,0.7413402525015551,0.7424673993231281,0.7435945629873049,0.7447217182301801,0.7458488824448856,0.7469760201440532,0.7481031469241373,0.7492303092041345,0.7503575710158049,0.7514846409649706,0.7526117961701992,0.7537389891447149,0.7548660774999362,0.7559931727194584,0.7571204259018056,0.7582475811446838,0.7593747363875581,0.760501891630433,0.7616290766095162,0.7627562021161849,0.7638834284196104,0.7650105126057842,0.766137697990758,0.7672647834945847,0.7683919783408816,0.7695191240822769,0.7706462989262258,0.771773474677694,0.7729005993209952,0.7740277222101217,0.7751549204831139,0.7762821389646716,0.7774092212202498,0.7785363343789306,0.7796635117343909,0.7807907173148877,0.7819177769574235,0.7830449547653843,0.7841721517711558,0.7852993070161584,0.7864265488163559,0.7875536175061588,0.7884882871057981,0.7914396862922424,0.7943910854786846,0.7973424846651289,0.8002938838515716,0.8032452830380148,0.8061966822244586,0.809148081410902,0.8120994805973458,0.8150508797837883,0.8180022789702317,0.8209536781566749,0.823905077343118,0.8268564765295627,0.8298078757160052,0.8327592749024486,0.8357106740888922,0.8386620732753356,0.841613472461779,0.8445648716482224,0.847516270834666,0.8504676700211093,0.8534190692075521,0.856370468393995,0.859321867580439,0.862273266766882,0.8652246659533258,0.8681760651397692,0.8711274643262119,0.8740788635126557,0.8770302626990996,0.8799816618855423,0.8829330610719863,0.8858844602584284,0.888835859444872,0.8917872586313158,0.8947386578177599,0.8976900570042026,0.9006414561906455,0.9035928553770891,0.9065442545635327,0.9094956537499748,0.912447052936419,0.9153984521228617,0.9183498513093062,0.9213012504957485,0.9242526496821926,0.9272040488686364,0.9301554480550787,0.9331068472415229,0.9360582464279648,0.9390096456144088,0.941961044800852,0.9449124439872962,0.947863843173739,0.9508152423601819,0.953766641546625,0.95671804073307,0.9596694399195118,0.9626208391059556,0.9655722382923995,0.9685236374788426,0.9714750366652867,0.9744264358517285,0.9773778350381721,0.9803292342246162,0.9832806334110586,0.9862320325975038,0.9891834317839459,0.992134830970389,0.9950862301568328,0.9980376293432769,1.000000000000002,1.0000000000000167,1.0000000000000113,1.000000000000017,0.9999999999999627,0.9999999999999836,0.9999999999999811,0.9999999999999786,0.9999999999999365,0.9999999999999274,0.9999999999998667,1.0000000000001554,0.9999999999999724,1.000000000000036,1.0000000000000833,0.9999999999998556,1.000000000000001,1.000000000000057,1.0000000000000446,0.9999999999996356,0.9999999999997454,1.0000000000000355,1.0000000000431422,0.9999999999998632,1.0000000000001006,0.9999999999996605,0.999999999999988,0.9999999999999258,1.000000000000063,0.9999999999998824,0.9999999999998028,0.9999999999996939,0.9999999999999062,0.9999999999995977,0.9999999999996723,0.9999999999998846,0.9999999999999538,0.9999999999999539,0.9999999999997542,0.9999999999998574,0.9999999999997948,0.9999999999997604,0.9999999999999596,0.9999999999997903,1.0000000000748859,0.9999999999996052,1.000000000000068,1.000000000000338,0.999999999999844,1.0000000000001843,1.0000000000004547,0.9999999999997473,1.0000000000001112,1.0000000000003346,0.9999999999999736,1.0000000000002272,1.000000000000384,1.0000000000000595,0.999999999999468,1.0000000000000273,0.9999999999998432,0.9999999999995437,0.9999999999994073,0.9999999999998473,0.9999999999999598,0.999999999999635,0.9999999999996136,1.0000000001110017,1.0000000000001668,1.000000000000009,1.0000000000002296,0.9999999999998274,0.999999999999937,0.999999999999998,0.9999999999994431,0.9999999999992812,0.9999999999995721,0.9999999999999005,0.9999999999999127,0.9999999999999379,1.000000000000217,0.9999999999997254,0.9999999999998179,0.9999999999999883,0.9999999999997577,0.9999999999996096,0.9999999999999729,1.000000000000019,1.0000000000000153,0.9999999999994279,1.0000000000598201,0.9999999999997365,0.9999999999997031,1.000000000000144,1.0000000000003593,0.9999999999996607,0.9999999999994891,1.000000000000018,0.9999999999997162,0.9999999999995584,1.0000000000002287,0.9999999999999201,0.999999999999649,1.0000000000007314,0.9999999999994451,0.9999999999998819,0.9999999999999943,1.0000000000004337,1.0000000000002238,1.0000000000220313,1.0000000000002645,1.0000000000002351,0.9999999999996707,0.9999999999996321,0.999999999999545,0.9999999999997837,0.9999999999993028,1.0000000000001987,0.99999999999916,1.0000000000004907,1.0000000000272375,0.9999999999996559,1.000000000000043,1.0000000000001281,0.9999999999995709,0.9999999999997228,0.9999999999999039,1.0000000000001346,0.9999999999997297,1.0000000000001261,1.000000000000184,1.0000000000001696,0.9999999999993193,0.9999999999988984,1.0000000000001745,0.9999999999995366,1.0000000000002591,0.9999999999994813,0.9999999999994524,0.9999999999995073,1.0000000000011418,0.9999999999996697]}},\"id\":\"9c35da04-d2a3-4e12-8fa7-72aa15462d25\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[0.3276185208729144,0.32761852455499285,0.3276184988715761,0.32761855767617,0.32761850624705724,0.3276193425099424,0.3276210172813669,0.3276235293231958,0.32762687861596157,0.32763106513388246,0.32763608884523554,0.3276419497111282,0.32764864768745783,0.32765618272196295,0.3276645547572867,0.327673763728768,0.32768380956756465,0.32769469219461383,0.3277064115269136,0.32771896747521423,0.3277323599441557,0.3277465888301686,0.32776170316310044,0.3277775554111653,0.3277942928702391,0.32781186627042086,0.32783027548173077,0.3278495203602329,0.3278696007604206,0.327890516526277,0.32791226750052427,0.32793485351615814,0.3279582744004624,0.32798252997565613,0.3280076200529819,0.3280335444472768,0.32806030295323413,0.3280878953744637,0.3281163214928485,0.3281455810975444,0.32817567396367586,0.32820659986384776,0.32823835855911426,0.3282709498073848,0.32830437336470925,0.3283386289767402,0.32837371637966595,0.3284096353065426,0.328446385490255,0.3284839666462454,0.328522378491068,0.3285616207320121,0.3286016930747113,0.3286488114485297,0.3286913313465059,0.3287332341034497,0.3287759982257872,0.328819623377448,0.32886410921577514,0.3289094553915382,0.3289556615489477,0.3290027273256681,0.3290506523528323,0.32909943625505605,0.3291490786504519,0.32919957915064474,0.3292509373607862,0.32930315287957035,0.32935622529924874,0.3294101542056466,0.32946493917817843,0.32952057978986415,0.3295770766271116,0.3296344357551179,0.329692640466889,0.32975169028233553,0.329811584705585,0.32987232322433635,0.32993390533750516,0.3299963305246728,0.3300595982613782,0.33012370801607366,0.3301886592534524,0.33025445141789733,0.3303210839826195,0.33038855634002484,0.33045686796450413,0.33052601827381783,0.3305960066714396,0.33066683260080204,0.3307384954348778,0.3308109945870268,0.33088432944732427,0.3309584993935369,0.3310335038140434,0.33110934209434983,0.3311860135546626,0.3312635176053262,0.3313418535634944,0.3314210207654918,0.33150101858140035,0.3315803667706755,0.3316553508408586,0.33173722375590725,0.33181990316667603,0.33190338846687845,0.33198767904191984,0.33207277428194365,0.33215867356425693,0.3322453762738716,0.33233288177727727,0.33242118944998655,0.33251029862497045,0.3326002086866098,0.33269091897500536,0.3327824288423031,0.3328747376179746,0.33296784463743345,0.33306174924749865,0.33315645075170885,0.3332519484870249,0.33334824176441596,0.33344532990777176,0.3335432121893467,0.33364188792990374,0.33374135644035235,0.33384161698305814,0.3339426688744463,0.33404451137369423,0.33414714376545673,0.3342505653137495,0.3343547753113757,0.33445977299625357,0.33456555763513846,0.3346721284817986,0.33477948478541014,0.3348876257905814,0.33499655073737855,0.33510625886135037,0.33521674939355334,0.335328021550047,0.3354400745745613,0.3355529076832664,0.33566652005879416,0.3357809109537664,0.33589607952832223,0.3360120250265912,0.3361287465998748,0.3362462434748632,0.3363645148398088,0.3364835598530452,0.3366033777192032,0.33672396756062456,0.3368453286148634,0.336967460019645,0.3370903609404778,0.33721403053504684,0.3373384679725447,0.33746367237465313,0.3375896428872456,0.33771637868294996,0.33784387888677936,0.33797214264623887,0.3381011690479721,0.33823095726683644,0.33836150640806967,0.3384928156081368,0.33862488393439627,0.3387577105660711,0.33889129455994904,0.33902563501993527,0.33916073108287664,0.339296581847061,0.33943318636947506,0.33957054375871737,0.3397086531015482,0.33984751348121683,0.33998712395887415,0.3401274836463812,0.34026859160249673,0.3404104469119095,0.34055304858383517,0.34069639573933225,0.34084048743867745,0.3409853226977668,0.34113090056708545,0.3412772201634511,0.34142428046613843,0.3415720805407974,0.3417206194038998,0.3418698961393813,0.34201990975948887,0.342170659314578,0.34232214378860504,0.3424743622054179,0.3426273136572685,0.34278099709427445,0.34293541152416834,0.3430905560440399,0.3432464295565326,0.34340303117588855,0.343560359825766,0.3437184145347064,0.3438771942752246,0.3440366981224538,0.3441969249637783,0.34435787386787936,0.3445195438299261,0.34468193377423934,0.3448450427130118,0.34500886962863075,0.3451734134923803,0.34533867325428713,0.3455046480115461,0.34567133654383886,0.3458387379159097,0.346006851119397,0.34617567509176655,0.34634520885909625,0.34651545117888133,0.34668640120555644,0.3468580578274571,0.34703042002902734,0.3472034866939096,0.3473772568017567,0.34755172929743916,0.3477269031236846,0.3479027771836269,0.34807935052821976,0.34825662194318135,0.348434590479296,0.3486132550648891,0.34879261451559856,0.34897266787734516,0.3491534140347148,0.34933485192075936,0.349516980488252,0.34969979858444955,0.34988330512721383,0.35006749911190366,0.35025237941220166,0.35043794503481146,0.3506241946278068,0.35081112745133197,0.3509987421054667,0.3511870376293314,0.3513760129769223,0.3515656670436281,0.35175599865312984,0.35194700669233503,0.3521386902562696,0.3523310479624999,0.35252407884255427,0.35271778183700014,0.3529121557987549,0.35310719965202103,0.3533029122123975,0.3534992923813571,0.3536963391280943,0.35389405126192747,0.35409242769130456,0.3542914672601337,0.35449116901698413,0.35469153158750344,0.35489255402796693,0.3550942352304366,0.3552965738426132,0.35549956908640906,0.35570321954152045,0.355907524277048,0.3561124820879324,0.35631809194159836,0.3565243525423899,0.35673126277073197,0.3569388217331018,0.3571470279696804,0.3573558807570205,0.35756537847691244,0.35777552032333076,0.35798630508454377,0.35819773153059903,0.35840979868388484,0.3586225055338194,0.35883585047500877,0.3590498326403999,0.3592644509859948,0.3594797042800513,0.35969559138264817,0.35991211125050965,0.3601292625488342,0.36034704413333357,0.3605654551586172,0.3607844942855715,0.3610041600739574,0.3612244520664634,0.36144536842938096,0.36166690852182837,0.36188907068221443,0.3621118542829124,0.36233525807654265,0.3625592807066436,0.36278392649143454,0.3630092039833127,0.36323510974685336,0.3634616395416308,0.3636887904252584,0.36391655855220706,0.3641449414098956,0.36437393606095553,0.36460354018914765,0.36483375144628316,0.3650645674073248,0.3652959860096139,0.36552800553268555,0.3657606240406229,0.3659931127356883,0.36622688232464823,0.3664612513118711,0.36669621858935414,0.366931782981064,0.36716794333525865,0.3674046985271326,0.36764204737639145,0.36787998875704536,0.36811852151242713,0.3683576445014068,0.3685973565521269,0.3688376565391948,0.36907854331396545,0.36932001570594913,0.3695620725966156,0.3698046709789259,0.3700476912742367,0.37029110201080434,0.3705349118256054,0.3707791212049149,0.37102372941013,0.3712687357436688,0.37151413944478556,0.37175993985213535,0.3720061362490987,0.372252728006767,0.372499714456405,0.3727470949966942,0.3729948690397256,0.37324303604999204,0.3734915964126429,0.3737405505389886,0.37398989531938187,0.3742396300337059,0.3744897539052839,0.37474026614656475,0.3749911660319915,0.37524245272871737,0.3754941254797369,0.3757461834181527,0.37599862575136545,0.3762514516132772,0.37650466008920763,0.3767582502615739,0.3770122212180641,0.37726657192635826,0.3775205907014442,0.3777756610934663,0.37803109975125393,0.37828691309160933,0.37854310139229247,0.3787996639104321,0.37905659988236334,0.37931390855129243,0.37957158919078593,0.3798296410086964,0.3800880632787945,0.38034685526216677,0.3806060162117057,0.38086554535885836,0.3811254419766587,0.3813857053296712,0.3816463346758456,0.38190732926529836,0.38216868834971235,0.3824304112020241,0.3826924970723964,0.3829556130989314,0.38321835863181786,0.38348146764188695,0.3837449397510051,0.38400877452667553,0.3842729714518197,0.3845375300206121,0.38480244954389037,0.3850677293780543,0.3853333686869785,0.38559936671489053,0.38586572259446483,0.38613250025470497,0.38639975401983545,0.38666737096371606,0.38693531541260534,0.3872027928131327,0.3874712894004402,0.38774013384819755,0.38800932531719823,0.38827886323399824,0.3885493927169675,0.3888195387360317,0.38909003069022075,0.38936087242681666,0.38963206597587663,0.38990361183748595,0.39017550947560237,0.39044775776125756,0.39072035507915387,0.39099329972615854,0.3912665899267954,0.39154022401581595,0.3918142003151253,0.3920885173990754,0.3923631738911549,0.392638168472412,0.3929135001109363,0.3931891676635508,0.3934651701743622,0.39374150672489744,0.39401817643987425,0.3942951784963602,0.3945725120793736,0.39485017640484665,0.39512817072557804,0.3954064943163363,0.3956851465702112,0.3959641280481939,0.3962434420144016,0.3965231100110187,0.396803167667493,0.3970834226948424,0.3973640110657166,0.39764493027750564,0.3979261758772389,0.3982077281367434,0.39848960456713367,0.39877181407975226,0.39905435331197625,0.39933721762220664,0.3996204018691251,0.3999039020956996,0.40018771644480094,0.40047202831299067,0.4007563444001012,0.4010411039167187,0.4013261784900671,0.4016115664693754,0.4018972666319537,0.40218327914019414,0.40246960387103914,0.4027562404563842,0.4030431883744242,0.4033304470265281,0.4036180158935932,0.40390588713029724,0.40419405938496805,0.4044825416078352,0.4047713356548185,0.40506043962910454,0.4053498512102704,0.40563956858791955,0.40592959059639533,0.4062199163105409,0.4065105449886759,0.40680147592892063,0.4070927084623936,0.40738424192919775,0.4076760756934266,0.40796820910121956,0.40826064149138797,0.40855337225667737,0.40884728864886416,0.40914060863727403,0.40943420876512804,0.4097280843427481,0.4100222338928219,0.4103166559825014,0.41061134914619585,0.4109063119777112,0.411201543035364,0.4114970409565903,0.4117928043475969,0.4120888318849738,0.41238512224966883,0.4126816741563655,0.41297848635836465,0.4132755576221351,0.41357288672894144,0.41387047255041076,0.4141683138955167,0.41446640968290543,0.414764758824998,0.415063360229828,0.4153622128987402,0.41566131580392895,0.4159606679645471,0.4162602684493768,0.4165601163021296,0.4168602106160261,0.4171605505586886,0.4174611352393533,0.41776196385697745,0.41806303558528807,0.4183643497159781,0.4186659054215974,0.41896770205949435,0.4192697475353904,0.4195720542496474,0.41987460115814584,0.42017647086758025,0.42047943512012087,0.4207826365159078,0.4210860742830144,0.4213897478221484,0.42169231655651285,0.4219963623992954,0.42230064209953017,0.4226051535915755,0.42290989639137566,0.42321487001247626,0.4235200739434664,0.4238255077545718,0.4241311709132678,0.42443706297602224,0.42474318343144324,0.42504953179190025,0.4253561075882796,0.42566291031914405,0.4259699395126862,0.4262771947057729,0.42658467536768724,0.4268924716407696,0.42720073401658143,0.42750939474025657,0.4278185143243341,0.4281280920957425,0.4284381277026951,0.42874862088918747,0.42905957167129716,0.42937098015375263,0.4296828463735681,0.4299951701945951,0.4303095066269367,0.4306227181995988,0.43093637935010476,0.4312504894538105,0.4315660214442515,0.43188099165112115,0.4321964112990264,0.4325122795429912,0.43282859540116675,0.43314535778967783,0.43346256801053495,0.433780228071229,0.4340983286526985,0.43441686880864144,0.4347358476174781,0.4350552641410328,0.4353751174974541,0.43569540673550566,0.43601613090322683,0.4363372891306743,0.4366588804900141,0.43698090403058737,0.43730335885969995,0.43762624406436823,0.43794955873059804,0.43827330192224523,0.43859747275500216,0.4389220703044613,0.43924709365608394,0.4395725419285548,0.4398984142150703,0.44022470957262944,0.4405514271243408,0.4408785660034026,0.4412061252389988,0.4415341039898564,0.441862501340393,0.4421913163985827,0.4425205482696644,0.4428501960664273,0.44318025891206275,0.4435107358756941,0.4438416261127388,0.4441729287061149,0.44450464279961927,0.4448367674994698,0.44516930193072435,0.44550224520947884,0.4458355964793657,0.4461693545130176,0.4465035184576972,0.44683808782605466,0.4471730617690894,0.4475084394011344,0.44784421986095774,0.4481804023015942,0.4485169858546873,0.44885396967078867,0.4491913528992015,0.4495291346719301,0.44986731412322994,0.45020589043699344,0.45054486275190686,0.45088423022366764,0.4512239920046236,0.4515641472518304,0.4519046951332633,0.45224563480179286,0.4525869654295825,0.45292868618654064,0.45327079621755334,0.45361329470879624,0.45395618082086936,0.4542994537257346,0.4546436733313877,0.4549876793982982,0.45533207357892524,0.4556768551798802,0.4560220236675058,0.45636757834788627,0.4567135185709516,0.4570598436863472,0.45740655288936755,0.45775364546193875,0.4581011204306979,0.4584489769319677,0.4587972138782804,0.45914583011308185,0.4594948244296817,0.4598441955317917,0.46019394214345943,0.46054406282282057,0.46089455633507725,0.4612454213709968,0.46159665659526666,0.46194826109500936,0.46230023383496366,0.4626525739489643,0.46300528064888113,0.46335835335922626,0.46371179147499436,0.46406461678341066,0.4644187274418161,0.46477141631397656,0.4651261615125447,0.46548126409327395,0.4658367233006195,0.4661925384011847,0.46654870879963967,0.4669052353267928,0.4672621196292786,0.46761936035172286,0.46797695893529984,0.4683349233884471,0.46869324832403514,0.4690519272723844,0.4694109443201829,0.4697702764144947,0.47012990839036367,0.4704898541838774,0.4708501516647552,0.47121131725775606,0.47157223126890474,0.47193364242440355,0.47229553333374813,0.47265710959724816,0.4730195629050927,0.4733823486517745,0.47374545416030184,0.4741088788678331,0.4744726272628526,0.47483670253625576,0.47520169212191793,0.47556622961206996,0.47593123357753275,0.4762966877483658,0.4766624771421816,0.4770285975900899,0.4773950481892088,0.4777618279528871,0.4781289358243282,0.4784963709132398,0.47886413226007934,0.47923221880355543,0.47960062973119816,0.4799693640898356,0.480338420994994,0.4807077996194145,0.4810774992306132,0.4814475191265742,0.481817858652657,0.4821885172760752,0.4825594945765413,0.4829307902552972,0.4833024040515648,0.48367433603527077,0.48404658614779555,0.48441915459752294,0.48479204156291206,0.4851652471963508,0.4855387713966733,0.485912613770581,0.48628677331398845,0.48666173748561714,0.48703632228749183,0.4874112831159519,0.48778711808791264,0.4881624980804226,0.48853836034878845,0.4889146559384489,0.48929132543687437,0.4896684056257545,0.490045951599564,0.49042317369430743,0.4908011563217118,0.4911795076005428,0.4915576031842891,0.49193639070888534,0.4923154847044879,0.49269488515101184,0.4930745913647547,0.493454602184728,0.4938349159295011,0.4942155308300826,0.494596444951963,0.49497765648316505,0.4953591637704427,0.4957409652311993,0.4961230594731949,0.49650544522701456,0.4968881213183531,0.49727108678864096,0.49765434066972647,0.49803788200397797,0.4984217100963559,0.49880582420459146,0.4991902236614418,0.4995749078387592,0.4999598762744819,0.5003451285414345,0.5007306642925553,0.5011164832643826,0.5015025852652909,0.5018889702097965,0.5022756380268597,0.5026625887313902,0.5030498223275642,0.5034373388499208,0.5038251381973499,0.5042132203367085,0.5046015849638693,0.5049902317952749,0.5053791603470241,0.5057683699827319,0.5061578600254687,0.506547629615227,0.5069376778887179,0.5073280039115786,0.5077191530337897,0.5081099505573895,0.5085010387793968,0.5088924147733859,0.5092840764296084,0.5096760212083846,0.5100682471931943,0.5104607813907877,0.5108536020752311,0.5112466972695389,0.5116400669736914,0.5120337114412281,0.5124276309390629,0.5128218261281751,0.513215676081069,0.5136103425057741,0.5140052751153042,0.5144004734398787,0.514795936994438,0.5151916653298481,0.5155876579315746,0.5159839142234586,0.5163804335029022,0.5167772148905009,0.5171742572221573,0.5175715589869805,0.5179691183190409,0.5183669329875326,0.5187650005638732,0.5191633188199051,0.5195618862623187,0.5199607026980112,0.5203597696505828,0.5207590901665654,0.5211586678785516,0.5215585053609705,0.5219586030362763,0.5223593092866805,0.5227597394802035,0.5231605048205838,0.5235615760105713,0.5239633505645851,0.5243647358048913,0.5247665013039349,0.52516857545494,0.5255709256491867,0.5259735365076305,0.526376395134451,0.5267795006598399,0.527182851826865,0.5275864485498842,0.5279902901148998,0.5283943758913644,0.5287987053860629,0.5292032779637972,0.5296080930296972,0.5300131504115849,0.5304184492257633,0.5308239889264812,0.5312297689351825,0.5316357888816083,0.5320420481205522,0.5324485460529598,0.5328552821875893,0.5332622558710797,0.5336694667004198,0.5340769140751931,0.5344845974725903,0.5348925162988789,0.5353006701539214,0.5357090583432144,0.5361176802853201,0.5365265357921298,0.5369356239151918,0.5373449444015402,0.5377544964461688,0.5381642797489563,0.5385742938852193,0.5389845380618323,0.5393950119132461,0.5398057148115711,0.5402166462599496,0.5406278057575918,0.5410391928586403,0.5414508067199123,0.5418626472021574,0.5422747138693207,0.5426870058897331,0.5430995228015831,0.5435122640761096,0.5439252293356994,0.5443384180006918,0.5447518294338245,0.5451654635262064,0.5455793193020945,0.545993396566334,0.5464076945867465,0.5468222131019972,0.5472369512095709,0.5476519091055221,0.5480670857076768,0.5484824803653235,0.5488980934894478,0.5493139236822627,0.549729970791212,0.550146234099216,0.5505627135471599,0.5509794082232801,0.5513963179092195,0.5518134421702116,0.5522307800720356,0.5526483315658361,0.5530660961061418,0.5534840730606805,0.553902261794857,0.5543206625186338,0.5547392740678021,0.5551580961274324,0.555577128114965,0.55599637014323,0.5564158210677477,0.5568354807733487,0.5572553485698212,0.557675424101996,0.5580957066201168,0.5585161963979011,0.5589368921093465,0.5593577939602252,0.5597789009759845,0.5602002129877574,0.5606217293142193,0.561043449852403,0.5614653767934108,0.5618875068135856,0.5623098385108156,0.5627330202645666,0.5631575815332568,0.5635834791811218,0.5640107107245436,0.564439272793779,0.5648691623636762,0.5653003761520567,0.5657329105185228,0.566166762156415,0.5666019842285378,0.5670384046802042,0.5674761802908647,0.5679152624986603,0.5683559688619614,0.5687974019878185,0.5692403054076047,0.5696845610771832,0.5701301123905335,0.5705769494392532,0.5710250682586746,0.5714744650016355,0.5719251383636904,0.572377083626041,0.5728302994767241,0.5732847807649216,0.5737405275023068,0.5741975340823943,0.5746557979448994,0.5751153173381679,0.5755760871496207,0.5760381069374542,0.576501371971604,0.5769658796884414,0.5774316270889869,0.5778986107461345,0.578366828525399,0.5788362765957427,0.579306953608496,0.5797788536766982,0.5802519771256146,0.580726318888777,0.581201875608689,0.5816786455038442,0.5821566247786081,0.5826358120970041,0.5831162024468157,0.5835977932757404,0.5840805815981703,0.5845645668365643,0.5850497428532416,0.5855361074885306,0.5860236589350432,0.5865123930819945,0.5870023069793188,0.5874933984350001,0.5879856641184633,0.5884791010829665,0.5889737063846434,0.5894694770825473,0.5899664098629451,0.5904645029198481,0.5909637521916329,0.5914641554374038,0.5919657087972877,0.5924684105629283,0.5929722566640098,0.593477245024253,0.5939833724511252,0.5944906360353509,0.5949990328710513,0.5955085598626342,0.5960192148581146,0.5965309940312975,0.5970438948672141,0.5975579143592266,0.5980730498759531,0.5985892984869771,0.5991066570590501,0.5996251229747172,0.6001446932064092,0.6006653651058922,0.6011871569420064,0.6017115394922604,0.6022408527038137,0.6027750835874243,0.6033142190793906,0.6038582460429461,0.604407151269647,0.6049609214807637,0.6055195433286686,0.6060830033982157,0.6066512882081305,0.6072243842123796,0.6078022778015586,0.6083849553042558,0.608972402988426,0.6095646070627575,0.6101615536780305,0.6107632289284791,0.6113696188531407,0.6119807094372045,0.6125964866133619,0.6132169362631326,0.613842044218209,0.6144717962617782,0.6151061781298415,0.6157451755125362,0.6163887740554387,0.6170369593608707,0.6176897169891922,0.6183470324600961,0.6190088912538864,0.6196752788127511,0.6203461805420398,0.6210215818115106,0.6217014679565938,0.6223858242796303,0.6230746360511121,0.6237678885109068,0.6244655668694814,0.6251676563091129,0.6258741419850922,0.6265850090269155,0.6273002425394739,0.6280198276042286,0.6287437492803774,0.6294719926060145,0.6302045425992769,0.6309413842594899,0.6316825025682894,0.6324278824907483,0.6331775089764837,0.6339313669607606,0.6346894413655788,0.6354517171007567,0.6362181790650031,0.6369888121469761,0.637763601226334,0.6385425311747751,0.6393255868570658,0.6401127531320668,0.6409040148537345,0.6416993568721232,0.6424987640343736,0.6433022211856831,0.6441097131702879,0.6449212248324032,0.6457367410171742,0.6465562465716149,0.647379726345525,0.648207165192408,0.6490385479703705,0.6498738595430167,0.650431421168143,0.6504314211681552,0.6504314211681561,0.6504314211681526,0.6504314211681245,0.6504314211681381,0.6504314211681398,0.6504314211681383,0.6504314211681108,0.650431421168118,0.6504314211680856,0.6504314211682425,0.650431421168151,0.6504314211681762,0.6504314211681986,0.6504314211680794,0.6504314211681685,0.6504314211682178,0.6504314211682288,0.6504314211680734,0.6504314211680396,0.6504314211682417,0.650431421196252,0.650431421168084,0.6504314211683154,0.6504314211679917,0.6504314211682017,0.6504314211681342,0.6504314211682222,0.650431421168131,0.6504314211680873,0.6504314211680358,0.650431421168147,0.6504314211679793,0.6504314211680354,0.650431421168102,0.650431421168133,0.6504314211681815,0.6504314211680918,0.6504314211680909,0.6504314211680826,0.650431421168028,0.6504314211681513,0.6504314211680937,0.6504314212168691,0.6504314211680002,0.650431421168286,0.6504314211685488,0.6504314211681096,0.6504314211682941,0.6504314211685547,0.6504314211680956,0.6504314211683113,0.6504314211684885,0.6504314211681849,0.650431421168326,0.6504314211684297,0.6504314211682155,0.6504314211679184,0.6504314211682105,0.6504314211681317,0.6504314211680611,0.6504314211679451,0.6504314211680983,0.6504314211682588,0.6504314211680085,0.6504314211680232,0.6504314212403407,0.6504314211683315,0.6504314211681826,0.6504314211683471,0.6504314211682738,0.6504314211681698,0.6504314211682698,0.6504314211679041,0.6504314211679395,0.6504314211679528,0.6504314211681336,0.6504314211681436,0.6504314211681338,0.6504314211683457,0.6504314211680795,0.6504314211681019,0.6504314211682705,0.6504314211681456,0.6504314211680374,0.6504314211681864,0.6504314211682373,0.6504314211682757,0.6504314211679336,0.6504314212072408,0.6504314211681433,0.6504314211680498,0.6504314211683573,0.6504314211684686,0.6504314211681391,0.6504314211679796,0.650431421168314,0.6504314211680439,0.6504314211679354,0.6504314211683815,0.6504314211682266,0.6504314211680166,0.6504314211687673,0.6504314211680575,0.6504314211683299,0.6504314211684152,0.6504314211684658,0.6504314211684058,0.6504314211824711,0.650431421168519,0.6504314211683059,0.6504314211680978,0.6504314211680853,0.6504314211679295,0.6504314211681267,0.6504314211679085,0.6504314211684737,0.6504314211678885,0.650431421168656,0.6504314211860333,0.6504314211680513,0.6504314211682494,0.6504314211684301,0.6504314211680586,0.6504314211681571,0.6504314211681723,0.650431421168437,0.6504314211680293,0.6504314211683254,0.6504314211683727,0.6504314211684734,0.6504314211679928,0.6504314211676888,0.6504314211683334,0.6504314211681724,0.6504314211683655,0.6504314211680013,0.6504314211679391,0.6504314211679816,0.6504314211689638,0.6504314211680372],\"y\":[0.48172040157716595,0.4817279498349107,0.4818113237950224,0.4824142059988238,0.48180673864173146,0.48161759076978605,0.48152002027035024,0.4814224497422079,0.48132487920827244,0.48122730858802537,0.4811297379201212,0.4810321672554496,0.48093459706140906,0.4808370263743187,0.48073945584563743,0.48064188478312647,0.4805443150952879,0.4804467447403042,0.4803491736152762,0.48025160249345944,0.4801540324107892,0.48005646245290606,0.48053897427368786,0.47986131998187753,0.47976375126662635,0.4796661790333916,0.4795686092279869,0.4794710382864609,0.47937346931711655,0.4792758979416299,0.4791783269624556,0.4790807564750804,0.47898318588960065,0.4788856167468374,0.4787880433274167,0.4786904758932336,0.4785929020484707,0.47849533489854745,0.478397760921951,0.47830019144233316,0.47820262087388016,0.478105052728868,0.47800748110039915,0.47790990916852133,0.4778123373128494,0.4777147707206365,0.4776172004241016,0.47751962550782956,0.47742205943018573,0.4773244873714334,0.47722691821110585,0.4771293431007241,0.47703177238309635,0.48346740117310694,0.48377214571622174,0.48334118679866894,0.4829102278811162,0.48247926896356347,0.4820483100460107,0.4816173511284578,0.48118639221090503,0.48075543329335235,0.4803244743757995,0.4798935154582467,0.4794625565406939,0.4790315976231412,0.47860063870558844,0.47816967978803565,0.47773872087048286,0.47730776195293,0.47687680303537733,0.4764458441178245,0.4760186448693382,0.4756364195044646,0.47525435983355013,0.4748724696580044,0.4744907520851233,0.47410920946672197,0.4737278457275593,0.4733466637885008,0.4729656668527957,0.4725848581470672,0.472204241200439,0.4718238184350672,0.47144359387717777,0.4710635711515459,0.4706837526743854,0.47030414146479804,0.4699247426437506,0.4695455579636634,0.46916659174720166,0.4687878464494648,0.46840932579436134,0.4680310331241558,0.4676529713859887,0.46727514445108603,0.46689755558151785,0.46652020804484134,0.46614310408625914,0.46576624820045615,0.46538964289036205,0.4657599091270679,0.47215323882410903,0.4720556819342759,0.4719581075904234,0.4718605307689936,0.4717629599346804,0.4716653893357257,0.4715678294236013,0.4714702551475359,0.4713726843664894,0.4712750995386856,0.4711775474136134,0.47107997300670174,0.4709824027445557,0.4708848282404283,0.47078725767199103,0.4706896943584114,0.47059211653511546,0.47049455334304663,0.4703969833897067,0.47029940901542844,0.47020182613984385,0.47010426003615813,0.4700066974172283,0.46990911856849876,0.46981155635176036,0.4697139773737999,0.4696164108507465,0.4695188364640983,0.4694212783523301,0.4693236949854012,0.4692261285770029,0.46912855379169627,0.4690309831949647,0.4689334128948066,0.468835842001741,0.4687382714052464,0.46864070080882936,0.46854313021248806,0.4684455691996638,0.46834799771265523,0.46825041842390575,0.4681528617916284,0.468055277545741,0.4679577246669801,0.46786013604008986,0.4677625751642995,0.467665004631561,0.4675674289136147,0.4674698536572442,0.46737227308999235,0.4672747225006069,0.46717715603656274,0.4670795862314045,0.4669820112370338,0.4668844407061644,0.46678686470453135,0.4666892941379656,0.4665917337023671,0.46649416354048073,0.466396591955309,0.46629901152398595,0.4662014469900434,0.46610388042466555,0.4660063051756125,0.46590872925025534,0.46581116965549235,0.4657135829404702,0.4656160175449575,0.4655184585008873,0.46542088274308213,0.4653233058396608,0.4652257303312191,0.4651281597374364,0.46503058914358814,0.4649330185496737,0.46483546379483726,0.46473788864937365,0.464640322775752,0.4645427412921984,0.4644451817570168,0.46434760569143024,0.4642500295868986,0.46415245379534165,0.46405490056099885,0.46395731788159883,0.46385974731316515,0.4637621767447307,0.4636646242993583,0.46356704265780546,0.46346947126000426,0.46337188862891565,0.4632743239025596,0.46317676514574735,0.46307917724680997,0.46298161130758786,0.4628840545172224,0.46278647106038445,0.4626889135118287,0.4625913299235133,0.4624937597790364,0.4623961826455589,0.46229862440924746,0.4622010414472485,0.46210348956799185,0.4620059137327407,0.46190833008560106,0.461810765814993,0.4617131884492051,0.46161561689505504,0.4615180541162452,0.4614204905363448,0.4613228920935843,0.46122533544815936,0.4611277845098775,0.46103021498697155,0.46093263787268807,0.4608350458581992,0.4607375024894713,0.46063992527325126,0.46054235520368497,0.460444784194648,0.46034720684944147,0.4602496367557447,0.4601520657125613,0.4600544887148839,0.4599569325453944,0.4598593609821454,0.4597617914799388,0.4596642203868285,0.4595666341733392,0.45946907882323507,0.45937151542749677,0.45927394599163013,0.4591763672106394,0.4590787822171799,0.4589812121198977,0.4588836702178881,0.45878608556998596,0.45868851613180106,0.45859092814778624,0.4584933755875992,0.4583957794604474,0.45829822543290577,0.4582006634787405,0.4581030988555357,0.45800550562511744,0.4579079338985365,0.4578103884577326,0.45771277792683623,0.45761522231037016,0.45751766813116207,0.45742010491254803,0.4573225335941172,0.45722494866223057,0.4571273783599439,0.45702981966044354,0.4569322344325972,0.4568346663900494,0.45673709147072417,0.4566395348033324,0.456541932447719,0.4564443841125511,0.45634680465836386,0.4562492336458922,0.4561516803316633,0.4560540891944028,0.4559565546151598,0.4558589684647135,0.45576141606399956,0.45566380001497087,0.4555662301152785,0.4554686880456053,0.4553711057105577,0.45527356715171485,0.45517593346715407,0.45507839614903706,0.4549808016808593,0.45488325247538186,0.4547857168296521,0.4546881524963031,0.4545904740329573,0.454492942149882,0.45439544367272566,0.4542978740097206,0.4542002734259596,0.45410270294997856,0.45400508509037535,0.4539075137559904,0.4538099915114617,0.45371244521958876,0.4536147518677075,0.45351727401258324,0.45341961072592035,0.45332208624264464,0.45322450461874436,0.45312703896531076,0.45302946616363576,0.4529318016621398,0.45283427602288356,0.4525351413827815,0.45219604916680833,0.4518725893614236,0.4515641380961212,0.4512700107317986,0.45098968264127615,0.4507225897592551,0.4504682557430013,0.4502262392971687,0.4499961256185668,0.4497775757147213,0.44957025433040043,0.4493738473584761,0.4491880981714863,0.45137071456527794,0.45127313214551207,0.45117558450984474,0.4510780021413703,0.4509804307259897,0.4508828745802408,0.4507852904035108,0.45068773191736944,0.4505901614411671,0.4504925909083322,0.45039500888134504,0.45029744978606606,0.45019987925322297,0.4501022971762549,0.4500047381875168,0.4499071553410979,0.44976894331540873,0.4496140234859774,0.4494501063372919,0.44928694941132025,0.44912533430066914,0.4489653021491044,0.4488068761301405,0.448650172739278,0.4484952260800792,0.44834219248836504,0.448191138850901,0.44804225059877256,0.44789563468401067,0.4477515153341519,0.4476100872339362,0.44747222370718936,0.4473385865057175,0.44720735569249453,0.44707847072978274,0.4469519458181544,0.44682776126868534,0.4467058526258484,0.44658623578202,0.4464688083234776,0.446353557967543,0.44624041039698703,0.4461292591534644,0.44602004877056367,0.44591263105031437,0.44580684444932195,0.4457025131048192,0.4444917561867443,0.4444471950322533,0.44428107577632847,0.44410237306404565,0.44392278027826865,0.44374232194621416,0.4435610076077246,0.44337880506196947,0.4431957663381385,0.44301189764148585,0.44282720043166734,0.4426417534617219,0.4424555817916057,0.4422687173124034,0.44208123723418813,0.44189322671731535,0.44170476840170103,0.44151590239316624,0.44132675636460217,0.4411374086384163,0.44094795736748066,0.4422948010737668,0.44206459840973916,0.44183057554665667,0.44159304038765396,0.4413523155973374,0.4411088345797555,0.4408630402492189,0.44061541052869424,0.4403664690966513,0.4401167216510081,0.4398667698698794,0.439617195151368,0.4395632636273221,0.4397613030024797,0.4398897165584628,0.43993511197869134,0.4380752073084454,0.43793608028426145,0.4377806888303974,0.43761037362507976,0.4374276577937723,0.43889898563791274,0.4386081502356343,0.43830585951012185,0.4379976428604864,0.4376877844769072,0.43737977208487644,0.43707608999844927,0.4367786400700112,0.43648870539022777,0.4362070064035185,0.435933904651042,0.4356694675439517,0.43541355550712535,0.4351656999146311,0.43492555866131294,0.4346925222517687,0.434466062960237,0.43424553303308944,0.4340303771864865,0.43381999798247,0.4336139115845093,0.4334116374697111,0.4332127362736712,0.4330167689562354,0.43282343292408626,0.43263231998526835,0.4324479703608572,0.4323048157376198,0.43224826330771066,0.4323839894929392,0.4326695706950693,0.4323793185146289,0.43211594089711336,0.43187935535530836,0.43165622159411493,0.4313411200518366,0.430988550311904,0.4306682634486956,0.4303803061119492,0.4301212102677398,0.42988509288495397,0.42966520275880105,0.4294548978829832,0.430587323771895,0.4299693017131733,0.4297815187609857,0.42959508417954984,0.42940494149811576,0.4292077091914129,0.4290075571139647,0.4288073343790979,0.4286088412989925,0.42841312008871407,0.4282210241203446,0.42803352000229,0.4278027760032347,0.42750702609935065,0.42720086116075784,0.42691523636750756,0.4266584443026805,0.42642698081814917,0.4262140704657669,0.42601389956731506,0.425821912287048,0.4256354091573637,0.4254522380713735,0.42527227005920293,0.42509605788151017,0.4249206846201001,0.4247461269169662,0.42457254055299226,0.4244001965832923,0.42572284230664015,0.4254685973035019,0.42521375012581175,0.424959249951172,0.4247050347907687,0.42445108920016844,0.4241973410110513,0.4239438054845502,0.423690379442108,0.4234371002827918,0.42318389102844256,0.4229307181693831,0.42267751143969834,0.4224242377546143,0.4221708603077348,0.4219172724064537,0.42166343193127154,0.4214092554567824,0.4211546575269891,0.42089957047701315,0.4206438891117471,0.4203875609640077,0.4201304113086105,0.4198723902999947,0.41961339910201895,0.41935330913226104,0.4190920644303695,0.41882950179080203,0.4185655280909944,0.41830010597497314,0.418033094729908,0.41776446007959833,0.41749405969268294,0.4172218994678486,0.4169479076502977,0.4166695403080306,0.4163837280804531,0.4160969375304441,0.41543840801500836,0.4151746312995657,0.4149110954390882,0.4146478156969889,0.41438478315257515,0.41461250517398407,0.4144025037997811,0.4141911353788833,0.41398028519544927,0.4137699336908508,0.4135600128217546,0.413350462630919,0.4131412391702276,0.41293237456937903,0.412723758323143,0.41251543788996825,0.41230727277779233,0.4120994175582192,0.4118916920750853,0.4116841258411857,0.4114767424291863,0.41126956413365795,0.41061418030305474,0.4094574856147813,0.40836195022914773,0.40726994717108517,0.4061816651989955,0.40509701568838763,0.40401572525707824,0.4029370903597782,0.4018599928305286,0.4007829201651569,0.39970403305758395,0.3975903039038034,0.3964759400686885,0.395362167381848,0.3942488944737364,0.3929451470055362,0.39183136006283825,0.39071933269152825,0.38960843669375456,0.38849811863593486,0.38738797632093824,0.3862766407562527,0.38516198313610345,0.3840476372740981,0.3829335943026692,0.3818198393718063,0.38070638809690643,0.37959322605549,0.37848035712767136,0.37736776849258186,0.3762554626908068,0.3751434254601844,0.3740316728973304,0.37292018435810564,0.37180896254248624,0.3706980051611986,0.36958730759536923,0.36847686307034233,0.3673666729808903,0.3662567317296027,0.36514703151529054,0.3640375723302687,0.36292834882652697,0.3618193644476692,0.3607105936281069,0.359602060068486,0.3584937399660941,0.35738563663688067,0.3562777471169012,0.35517006744952323,0.35406258090912,0.3529553077575262,0.3518482195075411,0.3507413220966246,0.34963460858540646,0.348528069761647,0.34742171432459096,0.34631552466414534,0.3452095015617796,0.3441036421511345,0.3429982334266704,0.3418933980909871,0.3407887080914786,0.33968417029861087,0.3385797724973959,0.3374755059342214,0.3363713783463657,0.33526737388304517,0.3341634885063801,0.33305972700609987,0.3319560714513947,0.33085251035812197,0.32974904997925036,0.32864568343279726,0.3275424049747836,0.3264392041965061,0.32533606873253607,0.3242330062208623,0.323129998260787,0.3220270438564047,0.3209241409793498,0.31982126274460326,0.31871841838667975,0.317615586354055,0.31651276196865447,0.31618585107326475,0.3150556271633019,0.3139248015121329,0.31279344171401646,0.3116616431546646,0.31052949412205144,0.30939715809780216,0.30826480661640376,0.30713262665420454,0.3060008774621711,0.30486980159723087,0.30373971625523116,0.3026109311054229,0.30148376184988096,0.30035854504854365,0.29923558847831966,0.2981151860868019,0.296997526120796,0.2958827920774683,0.2947710270460627,0.2936621541781512,0.2925560428154273,0.2914524169562527,0.29035091381226685,0.289251095262975,0.28815251807665176,0.2870547257278946,0.2855159234730841,0.28440061485447254,0.2821537053395206,0.2810146887957838,0.27987577129308205,0.2787368812266909,0.2775977955824368,0.27645829751538986,0.27531643037554715,0.27417029865501147,0.2730225995738572,0.2718731672211127,0.2707196113544404,0.2695664443342734,0.2684139524878357,0.2672616212392068,0.2661101724442053,0.26496632868454767,0.26384336320195473,0.2627458576679031,0.2617220991463185,0.26055045228335305,0.25941189562464856,0.25830063939109876,0.25706795990656145,0.25589678832324625,0.2547380256033556,0.2535916295743417,0.25245514821719245,0.2513295534872705,0.2502213583202285,0.24910569733290994,0.24793293388367368,0.2467917268950125,0.24564436647746482,0.24450261063252873,0.24336073935307828,0.2422188118566106,0.2410768794467382,0.2399349224044455,0.2387930833700015,0.23765140357751666,0.23650999706741083,0.23536897921401834,0.23422850799809813,0.2330887293485987,0.23194991054559594,0.23081229177983797,0.2296761798123319,0.22854186571318175,0.22740980929435797,0.2262804153059359,0.22515422527327109,0.2240317164596263,0.22291348615937512,0.22179994925585597,0.2206915128693019,0.21958824364863955,0.218489844646951,0.21739532856458343,0.21630285734649857,0.21520964880796742,0.21389362046340085,0.21278282150822403,0.2116929910407905,0.21052505227682144,0.2094085531865363,0.20835383091383375,0.2074594622418287,0.2064415627794289,0.20553564101004115,0.2047610031320295,0.20316170080675094,0.20220150963645067,0.20127585241383458,0.19943944063501556,0.1983225213614383,0.19721480212481748,0.19611543749862506,0.19502263136896214,0.19393436022892735,0.19284849030400816,0.19176328378131474,0.1906772145256175,0.18958912902647254,0.1884982354057655,0.18740390512227453,0.1863057281206525,0.18520345148510478,0.18409686501881228,0.18298593552559494,0.18187060205069677,0.1807507856719086,0.17962656362574667,0.1784979549380012,0.1773650097525161,0.1762277831344381,0.17508638915794272,0.17394097566801298,0.17279172676660937,0.17163886045831495,0.17048263680896464,0.1693234140827449,0.16816157477442503,0.1669975803316915,0.16583192960808324,0.16466519492713128,0.16349791568509386,0.1623307439825611,0.16116419242300348,0.15999882896237066,0.158835145043203,0.15767349000628686,0.15651421324678902,0.1553574623792582,0.1542033635035394,0.1530518953734071,0.1527173424434274,0.15150248001656771,0.15029874496755644,0.14910610750745054,0.14792473661394995,0.1467542720840979,0.14559452255296346,0.14448009717713425,0.14338392480315554,0.14229109054061362,0.14120183870070094,0.14011653132883375,0.1390353946833734,0.1379588037620348,0.13602851535938532,0.13490402095447518,0.13378049611401133,0.13265797359941547,0.13153641047215364,0.13041577826905176,0.12929591471500163,0.12817654817015625,0.12705725179717192,0.12593741784503096,0.12481616620422592,0.12369236524382414,0.12256461737120461,0.12143134603081054,0.12029092630733892,0.1191420015109767,0.11798395116637385,0.11681739906337353,0.11564460919806142,0.11446968525269077,0.11329797157212805,0.11213453464886733,0.11098241197253005,0.1104339784676038,0.10909564089603414,0.10780969141109498,0.10657502936229375,0.10610318285032785,0.10469327473701662,0.10339395589986135,0.10217252567223223,0.10100537426044746,0.09987191091520364,0.09874031196597666,0.09760884623040393,0.0964773043750153,0.09534582081828194,0.09421435644443597,0.09308291028409685,0.09195140976860353,0.09081985531861371,0.08968829158280418,0.0885568157487728,0.08742533618544411,0.08629388916805879,0.08516236274947295,0.08403081662813396,0.08289932744596028,0.08176785973808653,0.08063629981880696,0.079504759988627,0.07837321994774517,0.07724162844863447,0.07611003690973837,0.07497849927571205,0.07384689389143033,0.072715243884852,0.07158361378860591,0.07045202104413663,0.06932035046371787,0.06818866352585438,0.06705700106244267,0.06592521066256374,0.06479347488341179,0.06366174337682108,0.062529982974083,0.061398228739751204,0.06026635514959274,0.05913447525858094,0.05800265880077,0.0568706522073052,0.0557386781143062,0.05460674317526877,0.05347475834665203,0.05234271966567506,0.05121060093011292,0.05007848824357117,0.04894633272480288,0.04781406511956546,0.046681918061536126,0.045549598950446996,0.044417282610431166,0.04328489706203492,0.04215247626698761,0.041019953737581216,0.03988753533101677,0.03875496050160859,0.03762226655339056,0.036489706876508515,0.035356998522593996,0.03422422323726561,0.03309140418944157,0.03195847201572659,0.030825523858169137,0.029692522511737554,0.02855952944664649,0.027426320176486052,0.026293102019366195,0.0251599084480673,0.024026561867723534,0.022893089303722743,0.021759687074792082,0.02062621607991895,0.019492520825411988,0.018358788538452967,0.017225098219239947,0.016091275161932938,0.014957380092335805,0.013823435018417776,0.01268941400677439,0.011555203266801055,0.010421052644344368,0.009286663409386957,0.008152400896825188,0.0070179010598140305,0.0058834548956154635,0.00474877590212495,0.0036141231020582858,0.0024794771186609794,0.001343447792878736,0.00020576827591865451,0.0,0.0,0.0,0.0,0.0,0.0,4.336808689942018e-17,2.3462135012586316e-16,0.0,6.071532165918825e-17,0.0,0.0,1.8344700758454735e-16,1.3791051634015616e-16,8.890457814381136e-17,1.8214596497756474e-17,0.0,0.0,6.071532165918825e-17,9.367506770274758e-17,0.0,0.0,0.0,0.0,0.0,0.0,2.1076890233118206e-16,0.0,1.1796119636642288e-16,6.071532165918825e-17,2.0296264668928643e-16,0.0,0.0,1.46150452851046e-16,1.5829351718288365e-16,3.9898639947466563e-17,3.122502256758253e-17,2.203098814490545e-16,1.9949319973733282e-16,0.0,1.231653667943533e-16,1.231653667943533e-16,0.0,0.0,1.0842021724855044e-16,0.0,2.3418766925686896e-17,0.0,1.9949319973733282e-17,4.5102810375396984e-17,0.0,2.255140518769849e-16,0.0,0.0,2.5847379792054426e-16,2.6020852139652106e-16,2.2898349882893854e-16,0.0,0.0,3.3393426912553537e-17,2.2638141361497333e-16,8.326672684688674e-17,0.0,0.0,1.6479873021779667e-17,1.1882855810441129e-16,1.9949319973733282e-16,1.3660947373317356e-16,0.0,0.0,2.8319360745321376e-16,0.0,0.0,0.0,8.456776945386935e-18,0.0,1.2880321809127793e-16,0.0,1.0169816377914032e-16,0.0,0.0,2.7755575615628914e-17,0.0,0.0,3.0531133177191805e-16,3.3306690738754696e-16,0.0,0.0,2.7755575615628914e-17,0.0,2.7755575615628914e-17,0.0,8.326672684688674e-17,0.0,2.7755575615628914e-17,1.942890293094024e-16,0.0,2.498001805406602e-16,0.0,0.0,3.3306690738754696e-16,0.0,0.0,2.7755575615628914e-17,0.0,7.494005416219807e-16,3.3306690738754696e-16,2.498001805406602e-16,0.0,0.0,0.0,0.0,3.885780586188048e-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.661338147750939e-16,1.3877787807814457e-16,0.0,3.0531133177191805e-16,0.0,1.1102230246251565e-16,0.0,2.7755575615628914e-16,5.551115123125783e-17,4.996003610813204e-16,8.881784197001252e-16,5.828670879282072e-16,0.0,0.0,0.0,1.6653345369377348e-16,1.3877787807814457e-16,5.551115123125783e-17,0.0,4.996003610813204e-16,6.106226635438361e-16,1.0547118733938987e-15,1.1102230246251565e-16,0.0,2.498001805406602e-16,8.326672684688674e-16,0.0,1.942890293094024e-16,2.7755575615628914e-17,0.0,3.3306690738754696e-16,1.1102230246251565e-16,0.0,0.0,2.341921530051214e-17,5.563256820871065e-17,2.7294966128186815e-16,1.0713644929192278e-14,3.561039639277155e-14,3.6070097575179614e-15,1.2570637527162542e-17,1.889027835555439e-14,1.7408584002696056e-15,2.1570361743622425e-14,2.84308858300603e-17,7.883530970683731e-14,1.1034813145842379e-16,2.0755795934100188e-17,3.4829215696209606e-14,1.1246031841466869e-13,1.8154783415894338e-16,9.089333174633615e-19,3.6601435731147585e-13,1.015852116298659e-14,0.0,1.4347566132258842e-17,0.0,2.259655373873538e-18,2.2591180427740007e-13,1.4377388168895777e-14,3.7414515929867775e-14,3.00016469717896e-16,1.3297665351738973e-13,2.073449459947378e-13,1.6779788489976587e-13,2.881975938896805e-13,2.6120806438080015e-13,2.457478249324939e-13,2.2796079127645148e-14,1.0291672215981143e-17,4.2471111244992114e-17,8.262834860772728e-13,9.678668934753039e-14,7.835398996292042e-14,3.157338703414818e-17,7.26111381370192e-14,1.5326302733986744e-13,8.70807576469002e-17,1.9262506195115636e-13,0.0,5.1879529838206406e-17,1.296702042985066e-13,0.0,3.0482706612083e-16,2.4003146269415997e-13,1.097668919498763e-19,0.0,5.483833332332088e-17,2.767479557551764e-13,8.114685313948085e-18,2.651027269729627e-13,1.6814327243730992e-13,6.51893962032883e-19,2.8050879342374055e-13,5.187884281621387e-13,4.667885711713495e-13,1.0702024656980593e-13,1.0527081879514574e-18,2.7638927382265464e-13,6.767416235892743e-13,1.3340731195850113e-15,7.503111896399784e-17,8.12813519342596e-14,4.221914760037119e-13,6.001975651722826e-13,2.1423401856390613e-16,0.0,8.467446149134471e-13,4.3480404575509947e-13,5.059009124161083e-13,3.148843093530157e-13,4.388368141668403e-13,9.542441626562663e-14,0.0,7.284764831002262e-17,4.98559202952968e-13,8.546970270318404e-14,1.8371182725435126e-13,0.0,4.670000225903048e-13,4.207739569262721e-14,9.484272160021012e-14,4.043252890887237e-13,5.528648183446397e-13,2.7166897067771817e-16,1.69129354435251e-14,2.0098277274155067e-16,5.587792120126257e-18,1.2234533421072276e-19,5.0546194848237304e-17,0.0,0.0,1.9553805933886422e-13,6.664775978938856e-13,3.980149543281186e-13,6.51107440853421e-14,1.5060070747891493e-19,1.0300347224637959e-12,7.43560542798168e-17,3.463222179605076e-17,9.294744500787165e-17,8.054464723358238e-17,0.0,2.167992010706565e-13,5.13106194725574e-18,2.0425905041365e-13,4.760341650848746e-14,3.1358249458038815e-13,4.301747978820245e-17,4.1764030331405237e-13,4.338917651269877e-18,7.187306305667107e-13,9.164202662707087e-18,1.0708040974529718e-21,8.337730934444897e-13,2.4768506513356405e-13,8.548685185842274e-17,2.507656119970708e-16,1.565964247092881e-13,4.0377945917897754e-13,2.493995087898125e-17,3.753096231436072e-14,5.489391179547525e-18,6.198047920346867e-17,3.1470905401759826e-18,1.0464583039430445e-16,7.727831404548418e-13,2.0547308119369209e-13,0.0,0.0,6.631096204471572e-13,6.688816166941531e-13,6.783462680459706e-14,0.0,3.69743254340945e-13]}},\"id\":\"390ff66b-8c6d-4ab0-b114-82c2ada646f1\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"format\":\"0.%\"},\"id\":\"841c070f-adc2-419c-9c3f-b03e9542e7c0\",\"type\":\"NumeralTickFormatter\"},{\"attributes\":{\"overlay\":{\"id\":\"9049e0a5-9873-496a-9d4f-610cf53fc992\",\"type\":\"BoxAnnotation\"},\"plot\":{\"id\":\"567b421f-b917-48cd-b652-5aab83e65991\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"a6e15dea-ee7e-40a3-bba4-7590c451416f\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"57d06a41-6f62-4e0d-9820-55d9f291508b\",\"type\":\"Line\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[0.3276185208729144,0.32761852455499285,0.3276184988715761,0.32761855767617,0.32761850624705724,0.3276193425099424,0.3276210172813669,0.3276235293231958,0.32762687861596157,0.32763106513388246,0.32763608884523554,0.3276419497111282,0.32764864768745783,0.32765618272196295,0.3276645547572867,0.327673763728768,0.32768380956756465,0.32769469219461383,0.3277064115269136,0.32771896747521423,0.3277323599441557,0.3277465888301686,0.32776170316310044,0.3277775554111653,0.3277942928702391,0.32781186627042086,0.32783027548173077,0.3278495203602329,0.3278696007604206,0.327890516526277,0.32791226750052427,0.32793485351615814,0.3279582744004624,0.32798252997565613,0.3280076200529819,0.3280335444472768,0.32806030295323413,0.3280878953744637,0.3281163214928485,0.3281455810975444,0.32817567396367586,0.32820659986384776,0.32823835855911426,0.3282709498073848,0.32830437336470925,0.3283386289767402,0.32837371637966595,0.3284096353065426,0.328446385490255,0.3284839666462454,0.328522378491068,0.3285616207320121,0.3286016930747113,0.3286488114485297,0.3286913313465059,0.3287332341034497,0.3287759982257872,0.328819623377448,0.32886410921577514,0.3289094553915382,0.3289556615489477,0.3290027273256681,0.3290506523528323,0.32909943625505605,0.3291490786504519,0.32919957915064474,0.3292509373607862,0.32930315287957035,0.32935622529924874,0.3294101542056466,0.32946493917817843,0.32952057978986415,0.3295770766271116,0.3296344357551179,0.329692640466889,0.32975169028233553,0.329811584705585,0.32987232322433635,0.32993390533750516,0.3299963305246728,0.3300595982613782,0.33012370801607366,0.3301886592534524,0.33025445141789733,0.3303210839826195,0.33038855634002484,0.33045686796450413,0.33052601827381783,0.3305960066714396,0.33066683260080204,0.3307384954348778,0.3308109945870268,0.33088432944732427,0.3309584993935369,0.3310335038140434,0.33110934209434983,0.3311860135546626,0.3312635176053262,0.3313418535634944,0.3314210207654918,0.33150101858140035,0.3315803667706755,0.3316553508408586,0.33173722375590725,0.33181990316667603,0.33190338846687845,0.33198767904191984,0.33207277428194365,0.33215867356425693,0.3322453762738716,0.33233288177727727,0.33242118944998655,0.33251029862497045,0.3326002086866098,0.33269091897500536,0.3327824288423031,0.3328747376179746,0.33296784463743345,0.33306174924749865,0.33315645075170885,0.3332519484870249,0.33334824176441596,0.33344532990777176,0.3335432121893467,0.33364188792990374,0.33374135644035235,0.33384161698305814,0.3339426688744463,0.33404451137369423,0.33414714376545673,0.3342505653137495,0.3343547753113757,0.33445977299625357,0.33456555763513846,0.3346721284817986,0.33477948478541014,0.3348876257905814,0.33499655073737855,0.33510625886135037,0.33521674939355334,0.335328021550047,0.3354400745745613,0.3355529076832664,0.33566652005879416,0.3357809109537664,0.33589607952832223,0.3360120250265912,0.3361287465998748,0.3362462434748632,0.3363645148398088,0.3364835598530452,0.3366033777192032,0.33672396756062456,0.3368453286148634,0.336967460019645,0.3370903609404778,0.33721403053504684,0.3373384679725447,0.33746367237465313,0.3375896428872456,0.33771637868294996,0.33784387888677936,0.33797214264623887,0.3381011690479721,0.33823095726683644,0.33836150640806967,0.3384928156081368,0.33862488393439627,0.3387577105660711,0.33889129455994904,0.33902563501993527,0.33916073108287664,0.339296581847061,0.33943318636947506,0.33957054375871737,0.3397086531015482,0.33984751348121683,0.33998712395887415,0.3401274836463812,0.34026859160249673,0.3404104469119095,0.34055304858383517,0.34069639573933225,0.34084048743867745,0.3409853226977668,0.34113090056708545,0.3412772201634511,0.34142428046613843,0.3415720805407974,0.3417206194038998,0.3418698961393813,0.34201990975948887,0.342170659314578,0.34232214378860504,0.3424743622054179,0.3426273136572685,0.34278099709427445,0.34293541152416834,0.3430905560440399,0.3432464295565326,0.34340303117588855,0.343560359825766,0.3437184145347064,0.3438771942752246,0.3440366981224538,0.3441969249637783,0.34435787386787936,0.3445195438299261,0.34468193377423934,0.3448450427130118,0.34500886962863075,0.3451734134923803,0.34533867325428713,0.3455046480115461,0.34567133654383886,0.3458387379159097,0.346006851119397,0.34617567509176655,0.34634520885909625,0.34651545117888133,0.34668640120555644,0.3468580578274571,0.34703042002902734,0.3472034866939096,0.3473772568017567,0.34755172929743916,0.3477269031236846,0.3479027771836269,0.34807935052821976,0.34825662194318135,0.348434590479296,0.3486132550648891,0.34879261451559856,0.34897266787734516,0.3491534140347148,0.34933485192075936,0.349516980488252,0.34969979858444955,0.34988330512721383,0.35006749911190366,0.35025237941220166,0.35043794503481146,0.3506241946278068,0.35081112745133197,0.3509987421054667,0.3511870376293314,0.3513760129769223,0.3515656670436281,0.35175599865312984,0.35194700669233503,0.3521386902562696,0.3523310479624999,0.35252407884255427,0.35271778183700014,0.3529121557987549,0.35310719965202103,0.3533029122123975,0.3534992923813571,0.3536963391280943,0.35389405126192747,0.35409242769130456,0.3542914672601337,0.35449116901698413,0.35469153158750344,0.35489255402796693,0.3550942352304366,0.3552965738426132,0.35549956908640906,0.35570321954152045,0.355907524277048,0.3561124820879324,0.35631809194159836,0.3565243525423899,0.35673126277073197,0.3569388217331018,0.3571470279696804,0.3573558807570205,0.35756537847691244,0.35777552032333076,0.35798630508454377,0.35819773153059903,0.35840979868388484,0.3586225055338194,0.35883585047500877,0.3590498326403999,0.3592644509859948,0.3594797042800513,0.35969559138264817,0.35991211125050965,0.3601292625488342,0.36034704413333357,0.3605654551586172,0.3607844942855715,0.3610041600739574,0.3612244520664634,0.36144536842938096,0.36166690852182837,0.36188907068221443,0.3621118542829124,0.36233525807654265,0.3625592807066436,0.36278392649143454,0.3630092039833127,0.36323510974685336,0.3634616395416308,0.3636887904252584,0.36391655855220706,0.3641449414098956,0.36437393606095553,0.36460354018914765,0.36483375144628316,0.3650645674073248,0.3652959860096139,0.36552800553268555,0.3657606240406229,0.3659931127356883,0.36622688232464823,0.3664612513118711,0.36669621858935414,0.366931782981064,0.36716794333525865,0.3674046985271326,0.36764204737639145,0.36787998875704536,0.36811852151242713,0.3683576445014068,0.3685973565521269,0.3688376565391948,0.36907854331396545,0.36932001570594913,0.3695620725966156,0.3698046709789259,0.3700476912742367,0.37029110201080434,0.3705349118256054,0.3707791212049149,0.37102372941013,0.3712687357436688,0.37151413944478556,0.37175993985213535,0.3720061362490987,0.372252728006767,0.372499714456405,0.3727470949966942,0.3729948690397256,0.37324303604999204,0.3734915964126429,0.3737405505389886,0.37398989531938187,0.3742396300337059,0.3744897539052839,0.37474026614656475,0.3749911660319915,0.37524245272871737,0.3754941254797369,0.3757461834181527,0.37599862575136545,0.3762514516132772,0.37650466008920763,0.3767582502615739,0.3770122212180641,0.37726657192635826,0.3775205907014442,0.3777756610934663,0.37803109975125393,0.37828691309160933,0.37854310139229247,0.3787996639104321,0.37905659988236334,0.37931390855129243,0.37957158919078593,0.3798296410086964,0.3800880632787945,0.38034685526216677,0.3806060162117057,0.38086554535885836,0.3811254419766587,0.3813857053296712,0.3816463346758456,0.38190732926529836,0.38216868834971235,0.3824304112020241,0.3826924970723964,0.3829556130989314,0.38321835863181786,0.38348146764188695,0.3837449397510051,0.38400877452667553,0.3842729714518197,0.3845375300206121,0.38480244954389037,0.3850677293780543,0.3853333686869785,0.38559936671489053,0.38586572259446483,0.38613250025470497,0.38639975401983545,0.38666737096371606,0.38693531541260534,0.3872027928131327,0.3874712894004402,0.38774013384819755,0.38800932531719823,0.38827886323399824,0.3885493927169675,0.3888195387360317,0.38909003069022075,0.38936087242681666,0.38963206597587663,0.38990361183748595,0.39017550947560237,0.39044775776125756,0.39072035507915387,0.39099329972615854,0.3912665899267954,0.39154022401581595,0.3918142003151253,0.3920885173990754,0.3923631738911549,0.392638168472412,0.3929135001109363,0.3931891676635508,0.3934651701743622,0.39374150672489744,0.39401817643987425,0.3942951784963602,0.3945725120793736,0.39485017640484665,0.39512817072557804,0.3954064943163363,0.3956851465702112,0.3959641280481939,0.3962434420144016,0.3965231100110187,0.396803167667493,0.3970834226948424,0.3973640110657166,0.39764493027750564,0.3979261758772389,0.3982077281367434,0.39848960456713367,0.39877181407975226,0.39905435331197625,0.39933721762220664,0.3996204018691251,0.3999039020956996,0.40018771644480094,0.40047202831299067,0.4007563444001012,0.4010411039167187,0.4013261784900671,0.4016115664693754,0.4018972666319537,0.40218327914019414,0.40246960387103914,0.4027562404563842,0.4030431883744242,0.4033304470265281,0.4036180158935932,0.40390588713029724,0.40419405938496805,0.4044825416078352,0.4047713356548185,0.40506043962910454,0.4053498512102704,0.40563956858791955,0.40592959059639533,0.4062199163105409,0.4065105449886759,0.40680147592892063,0.4070927084623936,0.40738424192919775,0.4076760756934266,0.40796820910121956,0.40826064149138797,0.40855337225667737,0.40884728864886416,0.40914060863727403,0.40943420876512804,0.4097280843427481,0.4100222338928219,0.4103166559825014,0.41061134914619585,0.4109063119777112,0.411201543035364,0.4114970409565903,0.4117928043475969,0.4120888318849738,0.41238512224966883,0.4126816741563655,0.41297848635836465,0.4132755576221351,0.41357288672894144,0.41387047255041076,0.4141683138955167,0.41446640968290543,0.414764758824998,0.415063360229828,0.4153622128987402,0.41566131580392895,0.4159606679645471,0.4162602684493768,0.4165601163021296,0.4168602106160261,0.4171605505586886,0.4174611352393533,0.41776196385697745,0.41806303558528807,0.4183643497159781,0.4186659054215974,0.41896770205949435,0.4192697475353904,0.4195720542496474,0.41987460115814584,0.42017647086758025,0.42047943512012087,0.4207826365159078,0.4210860742830144,0.4213897478221484,0.42169231655651285,0.4219963623992954,0.42230064209953017,0.4226051535915755,0.42290989639137566,0.42321487001247626,0.4235200739434664,0.4238255077545718,0.4241311709132678,0.42443706297602224,0.42474318343144324,0.42504953179190025,0.4253561075882796,0.42566291031914405,0.4259699395126862,0.4262771947057729,0.42658467536768724,0.4268924716407696,0.42720073401658143,0.42750939474025657,0.4278185143243341,0.4281280920957425,0.4284381277026951,0.42874862088918747,0.42905957167129716,0.42937098015375263,0.4296828463735681,0.4299951701945951,0.4303095066269367,0.4306227181995988,0.43093637935010476,0.4312504894538105,0.4315660214442515,0.43188099165112115,0.4321964112990264,0.4325122795429912,0.43282859540116675,0.43314535778967783,0.43346256801053495,0.433780228071229,0.4340983286526985,0.43441686880864144,0.4347358476174781,0.4350552641410328,0.4353751174974541,0.43569540673550566,0.43601613090322683,0.4363372891306743,0.4366588804900141,0.43698090403058737,0.43730335885969995,0.43762624406436823,0.43794955873059804,0.43827330192224523,0.43859747275500216,0.4389220703044613,0.43924709365608394,0.4395725419285548,0.4398984142150703,0.44022470957262944,0.4405514271243408,0.4408785660034026,0.4412061252389988,0.4415341039898564,0.441862501340393,0.4421913163985827,0.4425205482696644,0.4428501960664273,0.44318025891206275,0.4435107358756941,0.4438416261127388,0.4441729287061149,0.44450464279961927,0.4448367674994698,0.44516930193072435,0.44550224520947884,0.4458355964793657,0.4461693545130176,0.4465035184576972,0.44683808782605466,0.4471730617690894,0.4475084394011344,0.44784421986095774,0.4481804023015942,0.4485169858546873,0.44885396967078867,0.4491913528992015,0.4495291346719301,0.44986731412322994,0.45020589043699344,0.45054486275190686,0.45088423022366764,0.4512239920046236,0.4515641472518304,0.4519046951332633,0.45224563480179286,0.4525869654295825,0.45292868618654064,0.45327079621755334,0.45361329470879624,0.45395618082086936,0.4542994537257346,0.4546436733313877,0.4549876793982982,0.45533207357892524,0.4556768551798802,0.4560220236675058,0.45636757834788627,0.4567135185709516,0.4570598436863472,0.45740655288936755,0.45775364546193875,0.4581011204306979,0.4584489769319677,0.4587972138782804,0.45914583011308185,0.4594948244296817,0.4598441955317917,0.46019394214345943,0.46054406282282057,0.46089455633507725,0.4612454213709968,0.46159665659526666,0.46194826109500936,0.46230023383496366,0.4626525739489643,0.46300528064888113,0.46335835335922626,0.46371179147499436,0.46406461678341066,0.4644187274418161,0.46477141631397656,0.4651261615125447,0.46548126409327395,0.4658367233006195,0.4661925384011847,0.46654870879963967,0.4669052353267928,0.4672621196292786,0.46761936035172286,0.46797695893529984,0.4683349233884471,0.46869324832403514,0.4690519272723844,0.4694109443201829,0.4697702764144947,0.47012990839036367,0.4704898541838774,0.4708501516647552,0.47121131725775606,0.47157223126890474,0.47193364242440355,0.47229553333374813,0.47265710959724816,0.4730195629050927,0.4733823486517745,0.47374545416030184,0.4741088788678331,0.4744726272628526,0.47483670253625576,0.47520169212191793,0.47556622961206996,0.47593123357753275,0.4762966877483658,0.4766624771421816,0.4770285975900899,0.4773950481892088,0.4777618279528871,0.4781289358243282,0.4784963709132398,0.47886413226007934,0.47923221880355543,0.47960062973119816,0.4799693640898356,0.480338420994994,0.4807077996194145,0.4810774992306132,0.4814475191265742,0.481817858652657,0.4821885172760752,0.4825594945765413,0.4829307902552972,0.4833024040515648,0.48367433603527077,0.48404658614779555,0.48441915459752294,0.48479204156291206,0.4851652471963508,0.4855387713966733,0.485912613770581,0.48628677331398845,0.48666173748561714,0.48703632228749183,0.4874112831159519,0.48778711808791264,0.4881624980804226,0.48853836034878845,0.4889146559384489,0.48929132543687437,0.4896684056257545,0.490045951599564,0.49042317369430743,0.4908011563217118,0.4911795076005428,0.4915576031842891,0.49193639070888534,0.4923154847044879,0.49269488515101184,0.4930745913647547,0.493454602184728,0.4938349159295011,0.4942155308300826,0.494596444951963,0.49497765648316505,0.4953591637704427,0.4957409652311993,0.4961230594731949,0.49650544522701456,0.4968881213183531,0.49727108678864096,0.49765434066972647,0.49803788200397797,0.4984217100963559,0.49880582420459146,0.4991902236614418,0.4995749078387592,0.4999598762744819,0.5003451285414345,0.5007306642925553,0.5011164832643826,0.5015025852652909,0.5018889702097965,0.5022756380268597,0.5026625887313902,0.5030498223275642,0.5034373388499208,0.5038251381973499,0.5042132203367085,0.5046015849638693,0.5049902317952749,0.5053791603470241,0.5057683699827319,0.5061578600254687,0.506547629615227,0.5069376778887179,0.5073280039115786,0.5077191530337897,0.5081099505573895,0.5085010387793968,0.5088924147733859,0.5092840764296084,0.5096760212083846,0.5100682471931943,0.5104607813907877,0.5108536020752311,0.5112466972695389,0.5116400669736914,0.5120337114412281,0.5124276309390629,0.5128218261281751,0.513215676081069,0.5136103425057741,0.5140052751153042,0.5144004734398787,0.514795936994438,0.5151916653298481,0.5155876579315746,0.5159839142234586,0.5163804335029022,0.5167772148905009,0.5171742572221573,0.5175715589869805,0.5179691183190409,0.5183669329875326,0.5187650005638732,0.5191633188199051,0.5195618862623187,0.5199607026980112,0.5203597696505828,0.5207590901665654,0.5211586678785516,0.5215585053609705,0.5219586030362763,0.5223593092866805,0.5227597394802035,0.5231605048205838,0.5235615760105713,0.5239633505645851,0.5243647358048913,0.5247665013039349,0.52516857545494,0.5255709256491867,0.5259735365076305,0.526376395134451,0.5267795006598399,0.527182851826865,0.5275864485498842,0.5279902901148998,0.5283943758913644,0.5287987053860629,0.5292032779637972,0.5296080930296972,0.5300131504115849,0.5304184492257633,0.5308239889264812,0.5312297689351825,0.5316357888816083,0.5320420481205522,0.5324485460529598,0.5328552821875893,0.5332622558710797,0.5336694667004198,0.5340769140751931,0.5344845974725903,0.5348925162988789,0.5353006701539214,0.5357090583432144,0.5361176802853201,0.5365265357921298,0.5369356239151918,0.5373449444015402,0.5377544964461688,0.5381642797489563,0.5385742938852193,0.5389845380618323,0.5393950119132461,0.5398057148115711,0.5402166462599496,0.5406278057575918,0.5410391928586403,0.5414508067199123,0.5418626472021574,0.5422747138693207,0.5426870058897331,0.5430995228015831,0.5435122640761096,0.5439252293356994,0.5443384180006918,0.5447518294338245,0.5451654635262064,0.5455793193020945,0.545993396566334,0.5464076945867465,0.5468222131019972,0.5472369512095709,0.5476519091055221,0.5480670857076768,0.5484824803653235,0.5488980934894478,0.5493139236822627,0.549729970791212,0.550146234099216,0.5505627135471599,0.5509794082232801,0.5513963179092195,0.5518134421702116,0.5522307800720356,0.5526483315658361,0.5530660961061418,0.5534840730606805,0.553902261794857,0.5543206625186338,0.5547392740678021,0.5551580961274324,0.555577128114965,0.55599637014323,0.5564158210677477,0.5568354807733487,0.5572553485698212,0.557675424101996,0.5580957066201168,0.5585161963979011,0.5589368921093465,0.5593577939602252,0.5597789009759845,0.5602002129877574,0.5606217293142193,0.561043449852403,0.5614653767934108,0.5618875068135856,0.5623098385108156,0.5627330202645666,0.5631575815332568,0.5635834791811218,0.5640107107245436,0.564439272793779,0.5648691623636762,0.5653003761520567,0.5657329105185228,0.566166762156415,0.5666019842285378,0.5670384046802042,0.5674761802908647,0.5679152624986603,0.5683559688619614,0.5687974019878185,0.5692403054076047,0.5696845610771832,0.5701301123905335,0.5705769494392532,0.5710250682586746,0.5714744650016355,0.5719251383636904,0.572377083626041,0.5728302994767241,0.5732847807649216,0.5737405275023068,0.5741975340823943,0.5746557979448994,0.5751153173381679,0.5755760871496207,0.5760381069374542,0.576501371971604,0.5769658796884414,0.5774316270889869,0.5778986107461345,0.578366828525399,0.5788362765957427,0.579306953608496,0.5797788536766982,0.5802519771256146,0.580726318888777,0.581201875608689,0.5816786455038442,0.5821566247786081,0.5826358120970041,0.5831162024468157,0.5835977932757404,0.5840805815981703,0.5845645668365643,0.5850497428532416,0.5855361074885306,0.5860236589350432,0.5865123930819945,0.5870023069793188,0.5874933984350001,0.5879856641184633,0.5884791010829665,0.5889737063846434,0.5894694770825473,0.5899664098629451,0.5904645029198481,0.5909637521916329,0.5914641554374038,0.5919657087972877,0.5924684105629283,0.5929722566640098,0.593477245024253,0.5939833724511252,0.5944906360353509,0.5949990328710513,0.5955085598626342,0.5960192148581146,0.5965309940312975,0.5970438948672141,0.5975579143592266,0.5980730498759531,0.5985892984869771,0.5991066570590501,0.5996251229747172,0.6001446932064092,0.6006653651058922,0.6011871569420064,0.6017115394922604,0.6022408527038137,0.6027750835874243,0.6033142190793906,0.6038582460429461,0.604407151269647,0.6049609214807637,0.6055195433286686,0.6060830033982157,0.6066512882081305,0.6072243842123796,0.6078022778015586,0.6083849553042558,0.608972402988426,0.6095646070627575,0.6101615536780305,0.6107632289284791,0.6113696188531407,0.6119807094372045,0.6125964866133619,0.6132169362631326,0.613842044218209,0.6144717962617782,0.6151061781298415,0.6157451755125362,0.6163887740554387,0.6170369593608707,0.6176897169891922,0.6183470324600961,0.6190088912538864,0.6196752788127511,0.6203461805420398,0.6210215818115106,0.6217014679565938,0.6223858242796303,0.6230746360511121,0.6237678885109068,0.6244655668694814,0.6251676563091129,0.6258741419850922,0.6265850090269155,0.6273002425394739,0.6280198276042286,0.6287437492803774,0.6294719926060145,0.6302045425992769,0.6309413842594899,0.6316825025682894,0.6324278824907483,0.6331775089764837,0.6339313669607606,0.6346894413655788,0.6354517171007567,0.6362181790650031,0.6369888121469761,0.637763601226334,0.6385425311747751,0.6393255868570658,0.6401127531320668,0.6409040148537345,0.6416993568721232,0.6424987640343736,0.6433022211856831,0.6441097131702879,0.6449212248324032,0.6457367410171742,0.6465562465716149,0.647379726345525,0.648207165192408,0.6490385479703705,0.6498738595430167,0.650431421168143,0.6504314211681552,0.6504314211681561,0.6504314211681526,0.6504314211681245,0.6504314211681381,0.6504314211681398,0.6504314211681383,0.6504314211681108,0.650431421168118,0.6504314211680856,0.6504314211682425,0.650431421168151,0.6504314211681762,0.6504314211681986,0.6504314211680794,0.6504314211681685,0.6504314211682178,0.6504314211682288,0.6504314211680734,0.6504314211680396,0.6504314211682417,0.650431421196252,0.650431421168084,0.6504314211683154,0.6504314211679917,0.6504314211682017,0.6504314211681342,0.6504314211682222,0.650431421168131,0.6504314211680873,0.6504314211680358,0.650431421168147,0.6504314211679793,0.6504314211680354,0.650431421168102,0.650431421168133,0.6504314211681815,0.6504314211680918,0.6504314211680909,0.6504314211680826,0.650431421168028,0.6504314211681513,0.6504314211680937,0.6504314212168691,0.6504314211680002,0.650431421168286,0.6504314211685488,0.6504314211681096,0.6504314211682941,0.6504314211685547,0.6504314211680956,0.6504314211683113,0.6504314211684885,0.6504314211681849,0.650431421168326,0.6504314211684297,0.6504314211682155,0.6504314211679184,0.6504314211682105,0.6504314211681317,0.6504314211680611,0.6504314211679451,0.6504314211680983,0.6504314211682588,0.6504314211680085,0.6504314211680232,0.6504314212403407,0.6504314211683315,0.6504314211681826,0.6504314211683471,0.6504314211682738,0.6504314211681698,0.6504314211682698,0.6504314211679041,0.6504314211679395,0.6504314211679528,0.6504314211681336,0.6504314211681436,0.6504314211681338,0.6504314211683457,0.6504314211680795,0.6504314211681019,0.6504314211682705,0.6504314211681456,0.6504314211680374,0.6504314211681864,0.6504314211682373,0.6504314211682757,0.6504314211679336,0.6504314212072408,0.6504314211681433,0.6504314211680498,0.6504314211683573,0.6504314211684686,0.6504314211681391,0.6504314211679796,0.650431421168314,0.6504314211680439,0.6504314211679354,0.6504314211683815,0.6504314211682266,0.6504314211680166,0.6504314211687673,0.6504314211680575,0.6504314211683299,0.6504314211684152,0.6504314211684658,0.6504314211684058,0.6504314211824711,0.650431421168519,0.6504314211683059,0.6504314211680978,0.6504314211680853,0.6504314211679295,0.6504314211681267,0.6504314211679085,0.6504314211684737,0.6504314211678885,0.650431421168656,0.6504314211860333,0.6504314211680513,0.6504314211682494,0.6504314211684301,0.6504314211680586,0.6504314211681571,0.6504314211681723,0.650431421168437,0.6504314211680293,0.6504314211683254,0.6504314211683727,0.6504314211684734,0.6504314211679928,0.6504314211676888,0.6504314211683334,0.6504314211681724,0.6504314211683655,0.6504314211680013,0.6504314211679391,0.6504314211679816,0.6504314211689638,0.6504314211680372],\"y\":[0.4777081690204364,0.4777087089490052,0.477580826622824,0.47703250415964205,0.47671566091341827,0.4760095219441387,0.4752181592004441,0.4744267964857045,0.47363543382592677,0.472844071289079,0.4720527087593525,0.4712613462580485,0.47046998323726136,0.46967862072209504,0.4688872580537447,0.4680958959241976,0.4673045324023311,0.46651316957715194,0.46572180750230346,0.4649304454168018,0.4641390823071071,0.4633477190955638,0.46201652095280793,0.4617649950916238,0.46097363070445696,0.4601822696993823,0.4593909063200662,0.45859954403872616,0.45780817988688755,0.4570168180471132,0.45622545580075324,0.4554340930942628,0.4546427304839769,0.4538513664972073,0.4530600065838611,0.4522686409734263,0.45147728145738136,0.45068591558562277,0.4498945561890511,0.4491031925464282,0.44831182991709556,0.44752046498160575,0.44672910333655935,0.44593774202909764,0.44514638059767475,0.4443550142231055,0.44356365133898346,0.44277229280242164,0.4419809259504661,0.441189564709643,0.44039820077427916,0.43960684240913134,0.438815479918622,0.4319441997672913,0.43077843508035907,0.43029732988915503,0.42981622469795105,0.4293351195067471,0.4288540143155431,0.428372909124339,0.42789180393313503,0.42741069874193105,0.426929593550727,0.42644848835952304,0.42596738316831895,0.4254862779771151,0.42500517278591105,0.424524067594707,0.424042962403503,0.42356185721229894,0.4230807520210951,0.422599646829891,0.4221150428635423,0.42158858526877113,0.4210619735638958,0.42053520407956263,0.420008273923029,0.41948118104044757,0.41895392164456796,0.418426493062111,0.41789889231207217,0.417371116391696,0.4168431619697611,0.41631502693302175,0.41578670718347216,0.41525819997764474,0.414729502531715,0.41420061215512555,0.4136715242618539,0.4131422368482452,0.41261274628646927,0.41208305011867224,0.41155314489424005,0.4110230275873678,0.4104926953380582,0.4099621443698444,0.40943137216583064,0.40890037507642124,0.4083691514275135,0.4078376971008668,0.4073060094218799,0.4060792690588252,0.39924735319934,0.39845597791328874,0.39766461879617826,0.39687326195044403,0.39608189956865125,0.3952905369678307,0.3944991644651441,0.39370780528449334,0.3929164428543285,0.392125093404926,0.3913337137079458,0.39054235464870113,0.3897509917391825,0.3889596327214235,0.3881682700922131,0.3873769007626569,0.3865855448337971,0.38579417539350586,0.3850028121971225,0.3842114531109566,0.3834201018137731,0.38262873509083495,0.38183736512740674,0.3810460101402697,0.38025463980503216,0.37946328493568704,0.3786719185417813,0.37788055946588534,0.3770891853154041,0.37629783452560667,0.37550646802500587,0.3747151093201138,0.37392374671725664,0.3731323838384041,0.3723410215113232,0.37154965890824904,0.3707582963051041,0.3699669337018897,0.3691755622632689,0.368384200484265,0.3675928458918424,0.3668014703801715,0.3660101203927277,0.36521874138414606,0.36442739547756753,0.36363602391970906,0.3628446612584873,0.3620533033288983,0.3612619450624059,0.3604705916421691,0.35967921061358576,0.3588878441591218,0.3580964808276248,0.3573051223184721,0.35651375965550075,0.35572240198061933,0.35493103934971276,0.35413966739614755,0.3533483043897904,0.3525569427004953,0.351765589149684,0.3509742210147107,0.3501828546536614,0.34939149638143435,0.34860013863301836,0.347808765906136,0.3470174181887026,0.34622605074552065,0.34543467750958823,0.34464331971089457,0.34385196285802117,0.3430606048261196,0.3422692422205439,0.34147787961502885,0.3406865170095751,0.33989513978128716,0.33910378142148717,0.3383124144154867,0.33752106182467695,0.33672968904936446,0.33593833153702624,0.3351469739371634,0.33435561616872694,0.33356423754345144,0.332772886049641,0.33198152342046505,0.33119016079128866,0.33039878143647355,0.3296074291133273,0.3288160672472768,0.32802471571131697,0.32723334764538614,0.3264419741599226,0.32565062752298995,0.32485926057547715,0.32406788528402514,0.3232765344994525,0.32248515990571386,0.32169380924106883,0.32090244621733116,0.320111089697686,0.3193197157379904,0.31852836449646627,0.3177369846230744,0.31694562690756867,0.31615427628904363,0.31536290779896164,0.3145715514954978,0.31378018977212246,0.3129888199052312,0.3121974509405058,0.3114061139140929,0.3106147384972827,0.3098233577599194,0.3090319941709257,0.30824063763468074,0.307449294613182,0.3066579070120728,0.3058665505706085,0.30507518747833656,0.30428382509188445,0.3034924687692453,0.3027011056982144,0.30190974351079175,0.3011183868647315,0.3003270110231777,0.2995356491321254,0.29874428570089795,0.2979529235479703,0.29716157528662485,0.296370198689093,0.2955788293860525,0.29478746571773407,0.2939961107188353,0.2932047613292522,0.2924133982615427,0.29162200914309,0.29083065961771853,0.2900392959521288,0.28924794911866447,0.2884565701448019,0.28766523088404244,0.28687385307087016,0.2860824826360948,0.28529111446046845,0.2844997727240541,0.2837084111579956,0.2829170253737782,0.28212569950519295,0.28133432316310525,0.2805429454904951,0.27975157602890344,0.2789602140892504,0.2781688646572571,0.2773775017885512,0.2765861282433557,0.27579477914283584,0.27500341415315815,0.27421205556348327,0.2734206801665471,0.27262934673392947,0.2718379636059321,0.27104660923935825,0.27025524676489343,0.26946386857433136,0.2686725248337899,0.26788112899960953,0.2670897808571296,0.2662984013478027,0.26550708070726503,0.26471571747528,0.2639243286570073,0.26313297661747304,0.26234158454448736,0.26155027997468633,0.26075888675333814,0.259967546364289,0.25917616382759895,0.2583847690425407,0.2575934006651132,0.2568021376907613,0.25601073943779773,0.2552193101032192,0.25442794663367047,0.2536366119394533,0.25284524922627927,0.25205393021340067,0.251262568296564,0.25047116109609846,0.24967977547406994,0.24888852670479508,0.2480970785769832,0.24730580144681702,0.24651439633773775,0.24572304358549335,0.2449315841444756,0.24414022359493015,0.2433489479672561,0.242557543526099,0.24195376019266468,0.2413871625413132,0.24080601624733405,0.24021090355146063,0.23960245953125486,0.23898117488168252,0.23834757288892822,0.23770209766453532,0.23704515907033416,0.2363771431325507,0.2356983661363068,0.23500914007418772,0.23430975645070828,0.23360045446529576,0.23068710698027686,0.22989575535378992,0.22910437143502663,0.22831301976215052,0.22752165791951243,0.22673028189904726,0.22593893190596057,0.22514755806194867,0.22435619534741175,0.22356483268551644,0.2227734806917971,0.2219821074142121,0.22119074475214134,0.22039939280597673,0.21960801942783403,0.21881666819894166,0.21787611554087638,0.21687422644342028,0.21580588403586531,0.21473146130089857,0.21365573951171468,0.2125787492518051,0.21150056908012688,0.2104211439508446,0.20934054761834414,0.20825872992221817,0.20717573662068756,0.20609150090611605,0.20500604051629953,0.20391928921601987,0.20283120146101039,0.20174250947073377,0.20065377168540346,0.19956274678696562,0.1984694551100119,0.19737382071876694,0.1962757974335369,0.1951754061678438,0.19407255226502662,0.19296726584238044,0.19185946560095904,0.19074915484718022,0.18963632216917103,0.1885209091017538,0.18740292942272288,0.18628241296997755,0.1851593560353633,0.1841725087479511,0.18299117903720613,0.18190243607679793,0.18082301178697943,0.17974425990120566,0.17866618749158694,0.17758877552576668,0.1765120826039124,0.1754360880260472,0.17436077388680618,0.17328618849426417,0.17221227532978894,0.17113903164209918,0.17006644659413336,0.16899446978546054,0.16792306164682577,0.16685216300471384,0.16578175823752253,0.16471174101097097,0.16364206808428186,0.16257266443060323,0.16082591948603672,0.15974671619365444,0.15867142798656225,0.1576000698508374,0.1565326053721051,0.1554689013748163,0.15440881189324973,0.15335210978031183,0.15229854027829662,0.15124776664314354,0.1501994403053809,0.14915312776083342,0.14799241392754955,0.14669029573320785,0.1454365551538347,0.14423288094768613,0.1440891577204753,0.14297725645825332,0.141880173026626,0.1407963412768923,0.13972335064346397,0.1376972805636548,0.13667148649118124,0.13565422360166884,0.13464285667797274,0.1336352061868808,0.1326292409909203,0.13162335598665809,0.1306161277893,0.12960642821570909,0.12859344867320707,0.1275765925515301,0.12655548535878638,0.12552982700254617,0.1244997063254878,0.12346506335398374,0.12242606294500942,0.12138293914473522,0.1203359528864899,0.1192853638102773,0.11823151808552354,0.11717466579110694,0.1161150896778859,0.11505305310269259,0.1139888415753566,0.11292263584395043,0.11185476215828617,0.11078085293430123,0.10967257360966273,0.10849364215721291,0.10716701014840974,0.10574175826236704,0.10475111646364753,0.10373884823712913,0.10270572878762141,0.10166178885289694,0.10067801796079993,0.09975516280503727,0.09883625843531903,0.09790096079345918,0.0969373243169958,0.09594186525635336,0.09491727830793138,0.0938700404737928,0.09158518928462953,0.09072027690575239,0.0896533476289706,0.08858158467501571,0.08751235990848828,0.08644878618518824,0.08538751117353115,0.08432622235619333,0.08326348719977596,0.08219848143682859,0.0811305087396535,0.0800589342550234,0.07902978394737344,0.07805502624020469,0.07708995093732701,0.07610843082453315,0.07510255004162143,0.07407453162694322,0.07302974844503622,0.07197317564845468,0.07090883387029201,0.06983922344863829,0.06876634535143299,0.0676902378156395,0.06661020434832556,0.06552932199482012,0.06444759563971529,0.0633648349962862,0.062280846859432096,0.060812903543274316,0.059760627056560524,0.05871095070955828,0.05766260500874223,0.05661551900960406,0.05556959464916921,0.05452478430452677,0.05348096949751563,0.05243813647283524,0.05139616265922676,0.0503550098174929,0.049314634941361124,0.04827502721493285,0.04723611796662635,0.04619788470651773,0.04516034945652106,0.04412349772235687,0.04308734860250142,0.042051928219528176,0.04101724933404673,0.03998337000968137,0.03895031323208129,0.037918205180502026,0.0368870778974952,0.03585699751317501,0.03482808329274397,0.033800380860666134,0.03277405195242728,0.031749187655402904,0.03072583444510448,0.02970415252726326,0.028684214411698584,0.027666161700357135,0.026650046661938386,0.02563597126586157,0.024624639897553296,0.023616745313046056,0.022610505936103073,0.021955558108735874,0.020939969083928735,0.019924925137388208,0.018910449565552673,0.017896515478482117,0.0170577997980976,0.01602690626162292,0.014996044053515387,0.013965133226615824,0.012934157653701515,0.01190315096803705,0.010872185454005819,0.009841219749340586,0.008810241647432484,0.007779322917010809,0.006748391418428344,0.005717610450371013,0.0046867654105893,0.0036560482307050612,0.0026254230246959428,0.001594814398911571,0.0005642448293057053,0.0,0.0,0.0,0.0,6.217899459204368e-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8106176280507924e-17,1.4025510353815607e-16,0.0,0.0,0.0,2.2768245622195593e-18,0.0,3.0335976786144414e-16,0.0,0.0,1.7401444868392346e-16,0.0,0.0,2.8297676701871666e-17,2.424276057677588e-16,0.0,0.0,2.3527187142935446e-17,2.1337098754514727e-16,0.0,0.0,2.168404344971009e-19,0.0,2.364644938190885e-16,0.0,0.0,2.7159264420761886e-16,6.320898665590491e-17,0.0,0.0,0.0,0.0,9.952975943416931e-17,0.0,0.0,0.0,0.0,1.2522535092207576e-16,3.63207727782644e-17,2.512096433648914e-16,0.0,1.6620819304202783e-16,0.0,0.0,0.0,0.0,2.183583175385806e-16,0.0,0.0,0.0,2.2345406774926246e-16,3.892285799222961e-17,0.0,4.618701254788249e-17,0.0,1.1893697832165984e-16,8.922983879555701e-17,1.4116312285761268e-16,1.6761765586625899e-16,0.0,2.708879127955033e-16,0.0,0.0,0.0,7.827939685345342e-17,0.0,4.30970363562988e-17,3.638582490861353e-16,1.0316183671199575e-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7629127324614302e-16,7.827939685345342e-17,1.0061396160665481e-16,0.0,2.218277644905342e-16,1.4354836763708079e-16,6.700369425960417e-17,1.3942839938163587e-16,1.2793585635328952e-16,0.0,6.266688556966216e-17,0.0,0.0,0.0,0.0,0.0,0.0,1.6067876196235176e-16,0.0,0.0,6.7220534694101275e-18,1.8236280541206185e-16,6.245004513516506e-17,6.288372600415926e-18,1.5241002633125528e-16,0.0,0.0,0.0,0.0,4.206704429243757e-17,1.7363497792355354e-16,1.4101595088302724e-16,3.3255191135561635e-16,0.0,0.0,1.349018553115089e-16,0.0,1.1073092312866017e-16,0.0,1.8431436932253575e-16,0.0,1.582257545471033e-16,0.0,0.0,0.0,0.0,0.0,3.2002937626340877e-16,2.0504973587132103e-16,1.3273345096653788e-16,2.482822974991805e-17,0.0,4.082021179407924e-17,2.0126858079477783e-16,4.597017211338539e-17,0.0,0.0,1.8858341537669743e-17,2.303929616531697e-17,6.976840979944221e-17,0.0,0.0,1.9358429789728682e-16,1.4611657153315583e-16,1.9305744340409464e-16,0.0,1.9569849213363355e-17,0.0,0.0,0.0,0.0,0.0,9.64939933512099e-18,3.6700243538634325e-17,4.30970363562988e-17,0.0,0.0,0.0,3.3572320271013645e-16,0.0,0.0,7.860465750519907e-18,0.0,0.0,8.998878031629687e-18,0.0,2.4340338772299575e-17,0.0,2.953095667307393e-17,0.0,0.0,1.842059491052872e-16,0.0,1.1926223897340549e-18,0.0,0.0,0.0,0.0,1.2102406750369443e-16,0.0,0.0,0.0,0.0,0.0,8.407987847625087e-17,9.996344030316351e-17,6.78168458889683e-17,0.0,1.315950386854281e-17,1.235990476633475e-17,1.4522888100443332e-16,0.0,0.0,1.8030282128433939e-16,0.0,1.888138083383506e-16,5.64327230778705e-17,0.0,0.0,0.0,9.25366554216378e-17,0.0,0.0,5.963111948670274e-19,1.5834772729150792e-16,0.0,1.2522535092207576e-16,1.222980050563649e-16,1.0267394573437727e-16,1.1075125191939428e-16,0.0,6.60821224129915e-17,9.763240563231967e-17,1.0538445116559103e-16,1.671297648886405e-16,0.0,6.949735925632083e-17,1.1985855016827252e-16,0.0,0.0,0.0,0.0,4.846383711010205e-17,1.285592726024687e-16,8.380882793312949e-17,0.0,8.120674271916428e-17,0.0,0.0,9.986857261307103e-17,1.4289784633358948e-16,0.0,0.0,0.0,2.3689817468808272e-17,1.6160033380896444e-16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.818099908100338e-17,5.407458335271453e-18,1.3423778148086152e-17,1.4889483960014993e-16,0.0,0.0,0.0,7.508100044462118e-18,6.44287140999511e-17,0.0,0.0,0.0,2.012821333219339e-16,0.0,0.0,0.0,2.561427632497004e-16,3.2195383511957054e-16,0.0,0.0,6.247715018947719e-17,6.0173220572945496e-18,4.523833564695767e-17,0.0,1.2969768488357847e-16,2.303929616531697e-17,8.901299836105991e-17,1.0381235801548705e-17,0.0,0.0,8.286015103220468e-17,0.0,0.0,0.0,1.0188789915932528e-16,7.905189090134934e-17,1.2554383531024338e-16,1.4477487134470501e-16,0.0,0.0,2.587177434093535e-17,1.062247078492673e-16,5.611847385443916e-17,0.0,1.0586048368194795e-16,0.0,0.0,9.998715722568663e-17,9.61416276451521e-17,0.0,4.046784608802145e-17,0.0,0.0,1.4911845629822507e-16,0.0,0.0,3.783594531431289e-16,1.4205758964991322e-16,0.0,2.400423609882907e-16,1.3715157481941631e-17,0.0,0.0,0.0,0.0,1.9816505207603807e-16,1.0486945513366042e-16,5.841139204265655e-17,0.0,0.0,3.0430844476236896e-16,4.8843307870471975e-17,0.0,9.877081791342945e-17,0.0,1.140038584368508e-16,0.0,0.0,0.0,7.491837011874836e-17,0.0,0.0,1.555830117516699e-17,3.6374982886888674e-17,0.0,0.0,0.0,0.0,0.0,0.0,1.9835478745622304e-16,0.0,1.636603179366869e-16,0.0,0.0,1.1600963245594897e-17,4.139483894549656e-16,0.0,2.4069288229178198e-17,0.0,1.354168513434395e-16,0.0,0.0,3.5236570605778894e-17,0.0,0.0,5.854691731421724e-18,0.0,0.0,5.2800645800044066e-17,3.775734065680769e-17,3.838075690598686e-17,6.491660507756958e-17,3.35831622927385e-16,0.0,8.429671891074797e-17,0.0,0.0,0.0,2.1412992906588713e-18,2.241859042156902e-16,2.426537635646757e-17,8.422895627496763e-18,1.3715157481941631e-17,0.0,0.0,3.382710778154774e-16,3.0531133177191805e-16,0.0,0.0,0.0,1.1622647289044608e-16,9.194034422677078e-17,0.0,0.0,0.0,0.0,2.6020852139652106e-17,0.0,2.7885679876327174e-16,0.0,0.0,0.0,9.194034422677078e-17,0.0,3.469446951953614e-18,2.237793284010081e-16,1.6132928326584306e-16,7.025630077706069e-17,0.0,0.0,0.0,0.0,4.0766001685454967e-17,2.411265631607762e-16,0.0,0.0,1.1796119636642288e-16,0.0,3.469446951953614e-17,0.0,0.0,0.0,0.0,5.204170427930421e-17,9.84455572616838e-17,0.0,0.0,1.8735013540549517e-16,1.6479873021779667e-16,4.0332320816460765e-17,4.5102810375396984e-17,0.0,8.847089727481716e-17,2.445960101127298e-16,0.0,2.5153490401663703e-17,0.0,2.8449465006019636e-16,1.700029006457271e-16,0.0,0.0,0.0,8.825405684032006e-17,0.0,0.0,0.0,0.0,2.1608149297636103e-16,0.0,7.600257229123386e-17,1.0148132334464322e-16,0.0,0.0,0.0,0.0,0.0,2.7755575615628914e-17,1.1102230246251565e-16,0.0,0.0,2.7755575615628914e-17,0.0,2.7755575615628914e-17,0.0,1.942890293094024e-16,0.0,0.0,8.326672684688674e-17,0.0,3.608224830031759e-16,0.0,0.0,3.3306690738754696e-16,0.0,0.0,3.608224830031759e-16,0.0,1.942890293094024e-16,3.3306690738754696e-16,2.7755575615628914e-17,0.0,0.0,0.0,0.0,6.106226635438361e-16,0.0,0.0,0.0,7.771561172376096e-16,0.0,0.0,1.3877787807814457e-16,5.551115123125783e-16,2.7755575615628914e-17,0.0,8.326672684688674e-17,0.0,0.0,0.0,5.551115123125783e-17,8.326672684688674e-16,4.996003610813204e-16,7.771561172376096e-16,2.498001805406602e-16,0.0,0.0,0.0,3.885780586188048e-16,1.3877787807814457e-16,2.7755575615628914e-16,0.0,5.551115123125783e-17,3.885780586188048e-16,9.43689570931383e-16,6.661338147750939e-16,0.0,6.938893903907228e-16,9.43689570931383e-16,0.0,0.0,5.828670879282072e-16,0.0,0.0,5.551115123125783e-16,0.0,2.9878589370431814e-18,3.1042073669502357e-17,0.0,3.215518031897646e-16,1.3252954591737351e-14,4.489169290455096e-18,8.121853439145991e-18,7.036279541082936e-17,2.631174941158151e-14,4.1933181849239176e-14,1.5990191702119897e-14,4.865272874812211e-16,1.1022782767749195e-13,6.560566667035743e-14,1.984745789821558e-14,9.089974933645943e-14,7.449588970397456e-14,2.0748540473784645e-13,4.5970742482154994e-18,1.7730082752774365e-13,3.9268581767180216e-13,0.0,5.71097865033931e-17,2.4313884239290928e-14,0.0,6.303290749562498e-14,2.791655795419956e-13,1.2934098236883074e-13,8.670078546148558e-14,1.4750321686102838e-13,7.88971580638642e-14,3.865948727207189e-13,1.821188495250234e-13,3.9501427214486033e-14,3.085997020963967e-13,2.106075832216982e-13,3.4014848718483497e-14,1.753880587317586e-13,0.0,1.0622067233910562e-13,1.50712775592865e-14,2.6182959518037095e-13,0.0,4.409958663555202e-13,1.2725512534884315e-13,1.0691436919954647e-13,5.03171312415902e-17,1.3578420255890748e-17,2.4523045468037125e-17,2.1169177522040172e-13,5.877707277399654e-17,5.58895210182983e-13,2.567915264095377e-13,0.0,5.873110644670981e-14,4.1958713015117216e-17,2.4940038434763796e-13,3.6423757655078033e-17,4.730143601358655e-13,1.319132681378175e-18,1.781831860573652e-17,9.50235930469434e-13,4.808545990527568e-13,1.8384755592441128e-13,4.1197720994058165e-13,4.3625266957784857e-13,2.76280096462818e-13,3.645845607763823e-17,2.355590777843265e-13,2.1845733472026144e-18,1.3660220360939639e-17,1.0467767241541947e-16,1.7203033932085298e-13,3.2643299838208684e-13,7.713740232938702e-14,9.659121611376342e-13,7.360131350715659e-20,3.226963568239963e-16,1.0644592309301061e-16,1.5526264337608923e-14,4.356451504966352e-18,3.1398427846336194e-13,0.0,5.766839353049165e-17,8.844766324507875e-13,6.981082378842984e-13,2.3610231770427704e-15,5.018726222764681e-13,0.0,2.721079263869728e-13,7.537300864376939e-13,5.989651788131342e-13,1.0872067983789892e-13,1.235670487321396e-13,5.532236122840189e-13,7.261150126100003e-13,5.424076236003648e-13,0.0,5.628830734849544e-13,1.3059003762267267e-13,1.5223204481063303e-14,5.154765503334602e-13,1.8594023819779107e-13,1.333284494961964e-17,3.3164345230952196e-16,7.207556484591398e-13,1.0333528124564176e-12,7.434432166970676e-14,3.6680724642348127e-13,1.6357529161252146e-18,7.237989162883669e-18,7.494004225114318e-14,1.6706246553102756e-13,7.860123144155896e-13,2.0563304878476508e-20,6.301231751086582e-13,4.688234329411731e-13,5.822494207619137e-18,8.557043962298394e-14,5.843413115090291e-13,2.8334255486572876e-21,1.4486199418840516e-13,4.234334940508506e-17,2.3383278399001832e-14,9.125676280838508e-13,6.810057218522391e-13,1.0648819958445497e-16,6.865942952601363e-13,3.7747449615378037e-13,6.590087178120468e-13,5.830064798881653e-13,1.1471561465332743e-12,9.82210941901742e-13,2.875041717929576e-13,3.29402817067136e-13,1.1209652021532556e-12,2.6076363290883364e-13,4.320618957668881e-18,4.168609915260406e-13,4.5297099404706387e-13,0.0,6.415897135958411e-17]}},\"id\":\"0c2375a0-ea96-4449-ac69-5256c81e60d1\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"callback\":null},\"id\":\"696806dd-b560-405f-a6d6-d6b21ce8467f\",\"type\":\"DataRange1d\"},{\"attributes\":{\"label\":{\"value\":\"ITUB4\"},\"renderers\":[{\"id\":\"01cf4d2d-1bda-4a0b-a52e-da5bf3d5dd9c\",\"type\":\"GlyphRenderer\"}]},\"id\":\"68d07d33-8a92-43f3-8436-743f55fb85d8\",\"type\":\"LegendItem\"},{\"attributes\":{\"label\":{\"value\":\"VALE5\"},\"renderers\":[{\"id\":\"eb0d8cb7-269c-4f2e-854b-3b57c2f52cb4\",\"type\":\"GlyphRenderer\"}]},\"id\":\"f2d09d54-0c12-4889-a4e0-b78732812951\",\"type\":\"LegendItem\"},{\"attributes\":{\"items\":[{\"id\":\"f2d09d54-0c12-4889-a4e0-b78732812951\",\"type\":\"LegendItem\"},{\"id\":\"544cd373-84cb-423f-8968-f3d57b1e171d\",\"type\":\"LegendItem\"},{\"id\":\"58a3e651-34db-428c-81ca-89893d14a4ea\",\"type\":\"LegendItem\"},{\"id\":\"68d07d33-8a92-43f3-8436-743f55fb85d8\",\"type\":\"LegendItem\"},{\"id\":\"70836e07-2e95-4346-84fd-b063d738e41e\",\"type\":\"LegendItem\"}],\"location\":\"top_left\",\"plot\":{\"id\":\"567b421f-b917-48cd-b652-5aab83e65991\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"18abf210-13b1-43a2-8158-f5fcbd484ab2\",\"type\":\"Legend\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"015863f5-6708-4b1c-9aef-747a93b8ed8e\",\"type\":\"Line\"},{\"attributes\":{\"label\":{\"value\":\"BVMF3\"},\"renderers\":[{\"id\":\"d05e4cb7-a0b3-4eb6-b927-2f60e7c9b0ce\",\"type\":\"GlyphRenderer\"}]},\"id\":\"58a3e651-34db-428c-81ca-89893d14a4ea\",\"type\":\"LegendItem\"},{\"attributes\":{\"data_source\":{\"id\":\"9c35da04-d2a3-4e12-8fa7-72aa15462d25\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"4017736b-a82c-45bc-be38-3d8d7a49b8d6\",\"type\":\"Line\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"42ccf70b-728c-4d2b-ba3d-2141c6a45590\",\"type\":\"Line\"},\"selection_glyph\":null},\"id\":\"eb0d8cb7-269c-4f2e-854b-3b57c2f52cb4\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"b6a72239-52ed-4322-9205-770d1b8624cb\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"f9ed3204-f5f8-4bce-a393-1b5f66d63aef\",\"type\":\"Line\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"57d06a41-6f62-4e0d-9820-55d9f291508b\",\"type\":\"Line\"},\"selection_glyph\":null},\"id\":\"f7143dd8-0d0b-4dbb-9d51-bdfeaf90bc45\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"plot\":{\"id\":\"567b421f-b917-48cd-b652-5aab83e65991\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"a85a0fc3-2d64-4994-8e27-6ae36d1f6496\",\"type\":\"HelpTool\"},{\"attributes\":{\"plot\":{\"id\":\"567b421f-b917-48cd-b652-5aab83e65991\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"e91f5f36-790a-4975-8a1f-5eb55854cb23\",\"type\":\"ResetTool\"},{\"attributes\":{},\"id\":\"3cc79a23-59c9-47ef-9697-8999ca2dd238\",\"type\":\"ToolEvents\"},{\"attributes\":{\"plot\":{\"id\":\"567b421f-b917-48cd-b652-5aab83e65991\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"c2c38a54-4a45-4993-bffc-29a25b30b131\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[0.3276185208729144,0.32761852455499285,0.3276184988715761,0.32761855767617,0.32761850624705724,0.3276193425099424,0.3276210172813669,0.3276235293231958,0.32762687861596157,0.32763106513388246,0.32763608884523554,0.3276419497111282,0.32764864768745783,0.32765618272196295,0.3276645547572867,0.327673763728768,0.32768380956756465,0.32769469219461383,0.3277064115269136,0.32771896747521423,0.3277323599441557,0.3277465888301686,0.32776170316310044,0.3277775554111653,0.3277942928702391,0.32781186627042086,0.32783027548173077,0.3278495203602329,0.3278696007604206,0.327890516526277,0.32791226750052427,0.32793485351615814,0.3279582744004624,0.32798252997565613,0.3280076200529819,0.3280335444472768,0.32806030295323413,0.3280878953744637,0.3281163214928485,0.3281455810975444,0.32817567396367586,0.32820659986384776,0.32823835855911426,0.3282709498073848,0.32830437336470925,0.3283386289767402,0.32837371637966595,0.3284096353065426,0.328446385490255,0.3284839666462454,0.328522378491068,0.3285616207320121,0.3286016930747113,0.3286488114485297,0.3286913313465059,0.3287332341034497,0.3287759982257872,0.328819623377448,0.32886410921577514,0.3289094553915382,0.3289556615489477,0.3290027273256681,0.3290506523528323,0.32909943625505605,0.3291490786504519,0.32919957915064474,0.3292509373607862,0.32930315287957035,0.32935622529924874,0.3294101542056466,0.32946493917817843,0.32952057978986415,0.3295770766271116,0.3296344357551179,0.329692640466889,0.32975169028233553,0.329811584705585,0.32987232322433635,0.32993390533750516,0.3299963305246728,0.3300595982613782,0.33012370801607366,0.3301886592534524,0.33025445141789733,0.3303210839826195,0.33038855634002484,0.33045686796450413,0.33052601827381783,0.3305960066714396,0.33066683260080204,0.3307384954348778,0.3308109945870268,0.33088432944732427,0.3309584993935369,0.3310335038140434,0.33110934209434983,0.3311860135546626,0.3312635176053262,0.3313418535634944,0.3314210207654918,0.33150101858140035,0.3315803667706755,0.3316553508408586,0.33173722375590725,0.33181990316667603,0.33190338846687845,0.33198767904191984,0.33207277428194365,0.33215867356425693,0.3322453762738716,0.33233288177727727,0.33242118944998655,0.33251029862497045,0.3326002086866098,0.33269091897500536,0.3327824288423031,0.3328747376179746,0.33296784463743345,0.33306174924749865,0.33315645075170885,0.3332519484870249,0.33334824176441596,0.33344532990777176,0.3335432121893467,0.33364188792990374,0.33374135644035235,0.33384161698305814,0.3339426688744463,0.33404451137369423,0.33414714376545673,0.3342505653137495,0.3343547753113757,0.33445977299625357,0.33456555763513846,0.3346721284817986,0.33477948478541014,0.3348876257905814,0.33499655073737855,0.33510625886135037,0.33521674939355334,0.335328021550047,0.3354400745745613,0.3355529076832664,0.33566652005879416,0.3357809109537664,0.33589607952832223,0.3360120250265912,0.3361287465998748,0.3362462434748632,0.3363645148398088,0.3364835598530452,0.3366033777192032,0.33672396756062456,0.3368453286148634,0.336967460019645,0.3370903609404778,0.33721403053504684,0.3373384679725447,0.33746367237465313,0.3375896428872456,0.33771637868294996,0.33784387888677936,0.33797214264623887,0.3381011690479721,0.33823095726683644,0.33836150640806967,0.3384928156081368,0.33862488393439627,0.3387577105660711,0.33889129455994904,0.33902563501993527,0.33916073108287664,0.339296581847061,0.33943318636947506,0.33957054375871737,0.3397086531015482,0.33984751348121683,0.33998712395887415,0.3401274836463812,0.34026859160249673,0.3404104469119095,0.34055304858383517,0.34069639573933225,0.34084048743867745,0.3409853226977668,0.34113090056708545,0.3412772201634511,0.34142428046613843,0.3415720805407974,0.3417206194038998,0.3418698961393813,0.34201990975948887,0.342170659314578,0.34232214378860504,0.3424743622054179,0.3426273136572685,0.34278099709427445,0.34293541152416834,0.3430905560440399,0.3432464295565326,0.34340303117588855,0.343560359825766,0.3437184145347064,0.3438771942752246,0.3440366981224538,0.3441969249637783,0.34435787386787936,0.3445195438299261,0.34468193377423934,0.3448450427130118,0.34500886962863075,0.3451734134923803,0.34533867325428713,0.3455046480115461,0.34567133654383886,0.3458387379159097,0.346006851119397,0.34617567509176655,0.34634520885909625,0.34651545117888133,0.34668640120555644,0.3468580578274571,0.34703042002902734,0.3472034866939096,0.3473772568017567,0.34755172929743916,0.3477269031236846,0.3479027771836269,0.34807935052821976,0.34825662194318135,0.348434590479296,0.3486132550648891,0.34879261451559856,0.34897266787734516,0.3491534140347148,0.34933485192075936,0.349516980488252,0.34969979858444955,0.34988330512721383,0.35006749911190366,0.35025237941220166,0.35043794503481146,0.3506241946278068,0.35081112745133197,0.3509987421054667,0.3511870376293314,0.3513760129769223,0.3515656670436281,0.35175599865312984,0.35194700669233503,0.3521386902562696,0.3523310479624999,0.35252407884255427,0.35271778183700014,0.3529121557987549,0.35310719965202103,0.3533029122123975,0.3534992923813571,0.3536963391280943,0.35389405126192747,0.35409242769130456,0.3542914672601337,0.35449116901698413,0.35469153158750344,0.35489255402796693,0.3550942352304366,0.3552965738426132,0.35549956908640906,0.35570321954152045,0.355907524277048,0.3561124820879324,0.35631809194159836,0.3565243525423899,0.35673126277073197,0.3569388217331018,0.3571470279696804,0.3573558807570205,0.35756537847691244,0.35777552032333076,0.35798630508454377,0.35819773153059903,0.35840979868388484,0.3586225055338194,0.35883585047500877,0.3590498326403999,0.3592644509859948,0.3594797042800513,0.35969559138264817,0.35991211125050965,0.3601292625488342,0.36034704413333357,0.3605654551586172,0.3607844942855715,0.3610041600739574,0.3612244520664634,0.36144536842938096,0.36166690852182837,0.36188907068221443,0.3621118542829124,0.36233525807654265,0.3625592807066436,0.36278392649143454,0.3630092039833127,0.36323510974685336,0.3634616395416308,0.3636887904252584,0.36391655855220706,0.3641449414098956,0.36437393606095553,0.36460354018914765,0.36483375144628316,0.3650645674073248,0.3652959860096139,0.36552800553268555,0.3657606240406229,0.3659931127356883,0.36622688232464823,0.3664612513118711,0.36669621858935414,0.366931782981064,0.36716794333525865,0.3674046985271326,0.36764204737639145,0.36787998875704536,0.36811852151242713,0.3683576445014068,0.3685973565521269,0.3688376565391948,0.36907854331396545,0.36932001570594913,0.3695620725966156,0.3698046709789259,0.3700476912742367,0.37029110201080434,0.3705349118256054,0.3707791212049149,0.37102372941013,0.3712687357436688,0.37151413944478556,0.37175993985213535,0.3720061362490987,0.372252728006767,0.372499714456405,0.3727470949966942,0.3729948690397256,0.37324303604999204,0.3734915964126429,0.3737405505389886,0.37398989531938187,0.3742396300337059,0.3744897539052839,0.37474026614656475,0.3749911660319915,0.37524245272871737,0.3754941254797369,0.3757461834181527,0.37599862575136545,0.3762514516132772,0.37650466008920763,0.3767582502615739,0.3770122212180641,0.37726657192635826,0.3775205907014442,0.3777756610934663,0.37803109975125393,0.37828691309160933,0.37854310139229247,0.3787996639104321,0.37905659988236334,0.37931390855129243,0.37957158919078593,0.3798296410086964,0.3800880632787945,0.38034685526216677,0.3806060162117057,0.38086554535885836,0.3811254419766587,0.3813857053296712,0.3816463346758456,0.38190732926529836,0.38216868834971235,0.3824304112020241,0.3826924970723964,0.3829556130989314,0.38321835863181786,0.38348146764188695,0.3837449397510051,0.38400877452667553,0.3842729714518197,0.3845375300206121,0.38480244954389037,0.3850677293780543,0.3853333686869785,0.38559936671489053,0.38586572259446483,0.38613250025470497,0.38639975401983545,0.38666737096371606,0.38693531541260534,0.3872027928131327,0.3874712894004402,0.38774013384819755,0.38800932531719823,0.38827886323399824,0.3885493927169675,0.3888195387360317,0.38909003069022075,0.38936087242681666,0.38963206597587663,0.38990361183748595,0.39017550947560237,0.39044775776125756,0.39072035507915387,0.39099329972615854,0.3912665899267954,0.39154022401581595,0.3918142003151253,0.3920885173990754,0.3923631738911549,0.392638168472412,0.3929135001109363,0.3931891676635508,0.3934651701743622,0.39374150672489744,0.39401817643987425,0.3942951784963602,0.3945725120793736,0.39485017640484665,0.39512817072557804,0.3954064943163363,0.3956851465702112,0.3959641280481939,0.3962434420144016,0.3965231100110187,0.396803167667493,0.3970834226948424,0.3973640110657166,0.39764493027750564,0.3979261758772389,0.3982077281367434,0.39848960456713367,0.39877181407975226,0.39905435331197625,0.39933721762220664,0.3996204018691251,0.3999039020956996,0.40018771644480094,0.40047202831299067,0.4007563444001012,0.4010411039167187,0.4013261784900671,0.4016115664693754,0.4018972666319537,0.40218327914019414,0.40246960387103914,0.4027562404563842,0.4030431883744242,0.4033304470265281,0.4036180158935932,0.40390588713029724,0.40419405938496805,0.4044825416078352,0.4047713356548185,0.40506043962910454,0.4053498512102704,0.40563956858791955,0.40592959059639533,0.4062199163105409,0.4065105449886759,0.40680147592892063,0.4070927084623936,0.40738424192919775,0.4076760756934266,0.40796820910121956,0.40826064149138797,0.40855337225667737,0.40884728864886416,0.40914060863727403,0.40943420876512804,0.4097280843427481,0.4100222338928219,0.4103166559825014,0.41061134914619585,0.4109063119777112,0.411201543035364,0.4114970409565903,0.4117928043475969,0.4120888318849738,0.41238512224966883,0.4126816741563655,0.41297848635836465,0.4132755576221351,0.41357288672894144,0.41387047255041076,0.4141683138955167,0.41446640968290543,0.414764758824998,0.415063360229828,0.4153622128987402,0.41566131580392895,0.4159606679645471,0.4162602684493768,0.4165601163021296,0.4168602106160261,0.4171605505586886,0.4174611352393533,0.41776196385697745,0.41806303558528807,0.4183643497159781,0.4186659054215974,0.41896770205949435,0.4192697475353904,0.4195720542496474,0.41987460115814584,0.42017647086758025,0.42047943512012087,0.4207826365159078,0.4210860742830144,0.4213897478221484,0.42169231655651285,0.4219963623992954,0.42230064209953017,0.4226051535915755,0.42290989639137566,0.42321487001247626,0.4235200739434664,0.4238255077545718,0.4241311709132678,0.42443706297602224,0.42474318343144324,0.42504953179190025,0.4253561075882796,0.42566291031914405,0.4259699395126862,0.4262771947057729,0.42658467536768724,0.4268924716407696,0.42720073401658143,0.42750939474025657,0.4278185143243341,0.4281280920957425,0.4284381277026951,0.42874862088918747,0.42905957167129716,0.42937098015375263,0.4296828463735681,0.4299951701945951,0.4303095066269367,0.4306227181995988,0.43093637935010476,0.4312504894538105,0.4315660214442515,0.43188099165112115,0.4321964112990264,0.4325122795429912,0.43282859540116675,0.43314535778967783,0.43346256801053495,0.433780228071229,0.4340983286526985,0.43441686880864144,0.4347358476174781,0.4350552641410328,0.4353751174974541,0.43569540673550566,0.43601613090322683,0.4363372891306743,0.4366588804900141,0.43698090403058737,0.43730335885969995,0.43762624406436823,0.43794955873059804,0.43827330192224523,0.43859747275500216,0.4389220703044613,0.43924709365608394,0.4395725419285548,0.4398984142150703,0.44022470957262944,0.4405514271243408,0.4408785660034026,0.4412061252389988,0.4415341039898564,0.441862501340393,0.4421913163985827,0.4425205482696644,0.4428501960664273,0.44318025891206275,0.4435107358756941,0.4438416261127388,0.4441729287061149,0.44450464279961927,0.4448367674994698,0.44516930193072435,0.44550224520947884,0.4458355964793657,0.4461693545130176,0.4465035184576972,0.44683808782605466,0.4471730617690894,0.4475084394011344,0.44784421986095774,0.4481804023015942,0.4485169858546873,0.44885396967078867,0.4491913528992015,0.4495291346719301,0.44986731412322994,0.45020589043699344,0.45054486275190686,0.45088423022366764,0.4512239920046236,0.4515641472518304,0.4519046951332633,0.45224563480179286,0.4525869654295825,0.45292868618654064,0.45327079621755334,0.45361329470879624,0.45395618082086936,0.4542994537257346,0.4546436733313877,0.4549876793982982,0.45533207357892524,0.4556768551798802,0.4560220236675058,0.45636757834788627,0.4567135185709516,0.4570598436863472,0.45740655288936755,0.45775364546193875,0.4581011204306979,0.4584489769319677,0.4587972138782804,0.45914583011308185,0.4594948244296817,0.4598441955317917,0.46019394214345943,0.46054406282282057,0.46089455633507725,0.4612454213709968,0.46159665659526666,0.46194826109500936,0.46230023383496366,0.4626525739489643,0.46300528064888113,0.46335835335922626,0.46371179147499436,0.46406461678341066,0.4644187274418161,0.46477141631397656,0.4651261615125447,0.46548126409327395,0.4658367233006195,0.4661925384011847,0.46654870879963967,0.4669052353267928,0.4672621196292786,0.46761936035172286,0.46797695893529984,0.4683349233884471,0.46869324832403514,0.4690519272723844,0.4694109443201829,0.4697702764144947,0.47012990839036367,0.4704898541838774,0.4708501516647552,0.47121131725775606,0.47157223126890474,0.47193364242440355,0.47229553333374813,0.47265710959724816,0.4730195629050927,0.4733823486517745,0.47374545416030184,0.4741088788678331,0.4744726272628526,0.47483670253625576,0.47520169212191793,0.47556622961206996,0.47593123357753275,0.4762966877483658,0.4766624771421816,0.4770285975900899,0.4773950481892088,0.4777618279528871,0.4781289358243282,0.4784963709132398,0.47886413226007934,0.47923221880355543,0.47960062973119816,0.4799693640898356,0.480338420994994,0.4807077996194145,0.4810774992306132,0.4814475191265742,0.481817858652657,0.4821885172760752,0.4825594945765413,0.4829307902552972,0.4833024040515648,0.48367433603527077,0.48404658614779555,0.48441915459752294,0.48479204156291206,0.4851652471963508,0.4855387713966733,0.485912613770581,0.48628677331398845,0.48666173748561714,0.48703632228749183,0.4874112831159519,0.48778711808791264,0.4881624980804226,0.48853836034878845,0.4889146559384489,0.48929132543687437,0.4896684056257545,0.490045951599564,0.49042317369430743,0.4908011563217118,0.4911795076005428,0.4915576031842891,0.49193639070888534,0.4923154847044879,0.49269488515101184,0.4930745913647547,0.493454602184728,0.4938349159295011,0.4942155308300826,0.494596444951963,0.49497765648316505,0.4953591637704427,0.4957409652311993,0.4961230594731949,0.49650544522701456,0.4968881213183531,0.49727108678864096,0.49765434066972647,0.49803788200397797,0.4984217100963559,0.49880582420459146,0.4991902236614418,0.4995749078387592,0.4999598762744819,0.5003451285414345,0.5007306642925553,0.5011164832643826,0.5015025852652909,0.5018889702097965,0.5022756380268597,0.5026625887313902,0.5030498223275642,0.5034373388499208,0.5038251381973499,0.5042132203367085,0.5046015849638693,0.5049902317952749,0.5053791603470241,0.5057683699827319,0.5061578600254687,0.506547629615227,0.5069376778887179,0.5073280039115786,0.5077191530337897,0.5081099505573895,0.5085010387793968,0.5088924147733859,0.5092840764296084,0.5096760212083846,0.5100682471931943,0.5104607813907877,0.5108536020752311,0.5112466972695389,0.5116400669736914,0.5120337114412281,0.5124276309390629,0.5128218261281751,0.513215676081069,0.5136103425057741,0.5140052751153042,0.5144004734398787,0.514795936994438,0.5151916653298481,0.5155876579315746,0.5159839142234586,0.5163804335029022,0.5167772148905009,0.5171742572221573,0.5175715589869805,0.5179691183190409,0.5183669329875326,0.5187650005638732,0.5191633188199051,0.5195618862623187,0.5199607026980112,0.5203597696505828,0.5207590901665654,0.5211586678785516,0.5215585053609705,0.5219586030362763,0.5223593092866805,0.5227597394802035,0.5231605048205838,0.5235615760105713,0.5239633505645851,0.5243647358048913,0.5247665013039349,0.52516857545494,0.5255709256491867,0.5259735365076305,0.526376395134451,0.5267795006598399,0.527182851826865,0.5275864485498842,0.5279902901148998,0.5283943758913644,0.5287987053860629,0.5292032779637972,0.5296080930296972,0.5300131504115849,0.5304184492257633,0.5308239889264812,0.5312297689351825,0.5316357888816083,0.5320420481205522,0.5324485460529598,0.5328552821875893,0.5332622558710797,0.5336694667004198,0.5340769140751931,0.5344845974725903,0.5348925162988789,0.5353006701539214,0.5357090583432144,0.5361176802853201,0.5365265357921298,0.5369356239151918,0.5373449444015402,0.5377544964461688,0.5381642797489563,0.5385742938852193,0.5389845380618323,0.5393950119132461,0.5398057148115711,0.5402166462599496,0.5406278057575918,0.5410391928586403,0.5414508067199123,0.5418626472021574,0.5422747138693207,0.5426870058897331,0.5430995228015831,0.5435122640761096,0.5439252293356994,0.5443384180006918,0.5447518294338245,0.5451654635262064,0.5455793193020945,0.545993396566334,0.5464076945867465,0.5468222131019972,0.5472369512095709,0.5476519091055221,0.5480670857076768,0.5484824803653235,0.5488980934894478,0.5493139236822627,0.549729970791212,0.550146234099216,0.5505627135471599,0.5509794082232801,0.5513963179092195,0.5518134421702116,0.5522307800720356,0.5526483315658361,0.5530660961061418,0.5534840730606805,0.553902261794857,0.5543206625186338,0.5547392740678021,0.5551580961274324,0.555577128114965,0.55599637014323,0.5564158210677477,0.5568354807733487,0.5572553485698212,0.557675424101996,0.5580957066201168,0.5585161963979011,0.5589368921093465,0.5593577939602252,0.5597789009759845,0.5602002129877574,0.5606217293142193,0.561043449852403,0.5614653767934108,0.5618875068135856,0.5623098385108156,0.5627330202645666,0.5631575815332568,0.5635834791811218,0.5640107107245436,0.564439272793779,0.5648691623636762,0.5653003761520567,0.5657329105185228,0.566166762156415,0.5666019842285378,0.5670384046802042,0.5674761802908647,0.5679152624986603,0.5683559688619614,0.5687974019878185,0.5692403054076047,0.5696845610771832,0.5701301123905335,0.5705769494392532,0.5710250682586746,0.5714744650016355,0.5719251383636904,0.572377083626041,0.5728302994767241,0.5732847807649216,0.5737405275023068,0.5741975340823943,0.5746557979448994,0.5751153173381679,0.5755760871496207,0.5760381069374542,0.576501371971604,0.5769658796884414,0.5774316270889869,0.5778986107461345,0.578366828525399,0.5788362765957427,0.579306953608496,0.5797788536766982,0.5802519771256146,0.580726318888777,0.581201875608689,0.5816786455038442,0.5821566247786081,0.5826358120970041,0.5831162024468157,0.5835977932757404,0.5840805815981703,0.5845645668365643,0.5850497428532416,0.5855361074885306,0.5860236589350432,0.5865123930819945,0.5870023069793188,0.5874933984350001,0.5879856641184633,0.5884791010829665,0.5889737063846434,0.5894694770825473,0.5899664098629451,0.5904645029198481,0.5909637521916329,0.5914641554374038,0.5919657087972877,0.5924684105629283,0.5929722566640098,0.593477245024253,0.5939833724511252,0.5944906360353509,0.5949990328710513,0.5955085598626342,0.5960192148581146,0.5965309940312975,0.5970438948672141,0.5975579143592266,0.5980730498759531,0.5985892984869771,0.5991066570590501,0.5996251229747172,0.6001446932064092,0.6006653651058922,0.6011871569420064,0.6017115394922604,0.6022408527038137,0.6027750835874243,0.6033142190793906,0.6038582460429461,0.604407151269647,0.6049609214807637,0.6055195433286686,0.6060830033982157,0.6066512882081305,0.6072243842123796,0.6078022778015586,0.6083849553042558,0.608972402988426,0.6095646070627575,0.6101615536780305,0.6107632289284791,0.6113696188531407,0.6119807094372045,0.6125964866133619,0.6132169362631326,0.613842044218209,0.6144717962617782,0.6151061781298415,0.6157451755125362,0.6163887740554387,0.6170369593608707,0.6176897169891922,0.6183470324600961,0.6190088912538864,0.6196752788127511,0.6203461805420398,0.6210215818115106,0.6217014679565938,0.6223858242796303,0.6230746360511121,0.6237678885109068,0.6244655668694814,0.6251676563091129,0.6258741419850922,0.6265850090269155,0.6273002425394739,0.6280198276042286,0.6287437492803774,0.6294719926060145,0.6302045425992769,0.6309413842594899,0.6316825025682894,0.6324278824907483,0.6331775089764837,0.6339313669607606,0.6346894413655788,0.6354517171007567,0.6362181790650031,0.6369888121469761,0.637763601226334,0.6385425311747751,0.6393255868570658,0.6401127531320668,0.6409040148537345,0.6416993568721232,0.6424987640343736,0.6433022211856831,0.6441097131702879,0.6449212248324032,0.6457367410171742,0.6465562465716149,0.647379726345525,0.648207165192408,0.6490385479703705,0.6498738595430167,0.650431421168143,0.6504314211681552,0.6504314211681561,0.6504314211681526,0.6504314211681245,0.6504314211681381,0.6504314211681398,0.6504314211681383,0.6504314211681108,0.650431421168118,0.6504314211680856,0.6504314211682425,0.650431421168151,0.6504314211681762,0.6504314211681986,0.6504314211680794,0.6504314211681685,0.6504314211682178,0.6504314211682288,0.6504314211680734,0.6504314211680396,0.6504314211682417,0.650431421196252,0.650431421168084,0.6504314211683154,0.6504314211679917,0.6504314211682017,0.6504314211681342,0.6504314211682222,0.650431421168131,0.6504314211680873,0.6504314211680358,0.650431421168147,0.6504314211679793,0.6504314211680354,0.650431421168102,0.650431421168133,0.6504314211681815,0.6504314211680918,0.6504314211680909,0.6504314211680826,0.650431421168028,0.6504314211681513,0.6504314211680937,0.6504314212168691,0.6504314211680002,0.650431421168286,0.6504314211685488,0.6504314211681096,0.6504314211682941,0.6504314211685547,0.6504314211680956,0.6504314211683113,0.6504314211684885,0.6504314211681849,0.650431421168326,0.6504314211684297,0.6504314211682155,0.6504314211679184,0.6504314211682105,0.6504314211681317,0.6504314211680611,0.6504314211679451,0.6504314211680983,0.6504314211682588,0.6504314211680085,0.6504314211680232,0.6504314212403407,0.6504314211683315,0.6504314211681826,0.6504314211683471,0.6504314211682738,0.6504314211681698,0.6504314211682698,0.6504314211679041,0.6504314211679395,0.6504314211679528,0.6504314211681336,0.6504314211681436,0.6504314211681338,0.6504314211683457,0.6504314211680795,0.6504314211681019,0.6504314211682705,0.6504314211681456,0.6504314211680374,0.6504314211681864,0.6504314211682373,0.6504314211682757,0.6504314211679336,0.6504314212072408,0.6504314211681433,0.6504314211680498,0.6504314211683573,0.6504314211684686,0.6504314211681391,0.6504314211679796,0.650431421168314,0.6504314211680439,0.6504314211679354,0.6504314211683815,0.6504314211682266,0.6504314211680166,0.6504314211687673,0.6504314211680575,0.6504314211683299,0.6504314211684152,0.6504314211684658,0.6504314211684058,0.6504314211824711,0.650431421168519,0.6504314211683059,0.6504314211680978,0.6504314211680853,0.6504314211679295,0.6504314211681267,0.6504314211679085,0.6504314211684737,0.6504314211678885,0.650431421168656,0.6504314211860333,0.6504314211680513,0.6504314211682494,0.6504314211684301,0.6504314211680586,0.6504314211681571,0.6504314211681723,0.650431421168437,0.6504314211680293,0.6504314211683254,0.6504314211683727,0.6504314211684734,0.6504314211679928,0.6504314211676888,0.6504314211683334,0.6504314211681724,0.6504314211683655,0.6504314211680013,0.6504314211679391,0.6504314211679816,0.6504314211689638,0.6504314211680372],\"y\":[4.2392304944183223e-17,0.0,1.3010426069826053e-17,0.0,6.581107186987012e-17,4.778621075229861e-17,3.5209465551466756e-17,7.903156211061524e-17,0.0,0.0,0.0,2.3093506273941244e-17,0.0,0.0,3.6483403104137224e-17,8.397145825900232e-17,0.0,4.7460950100552957e-17,0.0,0.0,0.0,6.242294008085292e-17,0.0,5.841139204265655e-17,1.4455125464662988e-16,2.159764608909015e-17,0.0,2.4882439858542327e-17,0.0,1.4040418133687282e-17,0.0,4.9873299934333204e-18,0.0,1.3508481442811582e-17,0.0,3.1712913545201005e-18,2.4970531285056774e-17,7.440337408681774e-17,1.7157499379583108e-17,2.7972416050126014e-17,0.0,0.0,3.5924361358949386e-17,7.757127730954883e-17,1.496198998029996e-17,0.0,0.0,2.0383000842727483e-17,0.0,0.0,1.07742590890747e-17,5.2085749992561436e-17,0.0,6.94905829927428e-18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.71445146547012e-17,0.0,0.0,2.7755575615628914e-17,4.5102810375396984e-17,0.0,5.204170427930421e-17,3.8163916471489756e-17,0.0,3.122502256758253e-17,0.0,1.0408340855860843e-17,6.245004513516506e-17,0.0,1.3877787807814457e-17,0.0,7.632783294297951e-17,2.0816681711721685e-17,1.734723475976807e-17,0.0,2.42861286636753e-17,0.0,5.551115123125783e-17,0.0,0.0,4.5102810375396984e-17,1.0408340855860843e-17,6.938893903907228e-18,0.0,4.6132802439258214e-17,7.167931612844791e-17,2.2836008257975937e-17,2.7416762436727193e-17,0.0,7.562310153086393e-18,0.0,5.71611714125092e-17,3.577867169202165e-18,0.0,2.496375502147874e-17,0.0,0.0,0.0,4.2365199889871086e-17,6.850802477392781e-18,0.0,0.0,3.889575293791747e-18,1.1506095555502416e-17,2.4868887331386258e-17,0.0,0.0,2.3107058801097313e-18,0.0,0.0,0.0,0.0,0.0,2.9110828331235794e-17,6.415088729325169e-17,0.0,0.0,2.9219248548484344e-17,8.782037597132586e-18,0.0,0.0,7.640914810591592e-17,0.0,2.3710146259542375e-17,0.0,0.0,6.735605996566196e-17,8.754932542820448e-18,0.0,0.0,9.023272580510611e-17,0.0,6.06069014419397e-17,2.7850443305721395e-17,0.0,0.0,2.032879073410321e-18,1.219049817688389e-17,0.0,0.0,0.0,1.5395670849294163e-17,6.806079137777754e-17,1.6019087098473328e-17,7.798124125601991e-17,9.730714498057402e-17,5.42643187328995e-17,5.366800753803247e-18,8.483881999699072e-18,1.4826464708739273e-17,3.9329433806911673e-17,1.0482879755219221e-17,0.0,0.0,0.0,0.0,0.0,5.262446294701517e-17,1.360673726469308e-17,4.347650711666873e-17,0.0,0.0,9.302454639925628e-17,5.865533753146579e-17,0.0,9.118140270603092e-17,0.0,5.686640394686471e-17,5.318011656041399e-17,2.065405138584886e-17,0.0,6.087795198506107e-17,1.826880660638075e-17,1.1302807648161384e-17,3.122502256758253e-17,0.0,3.810970636286548e-17,3.903127820947816e-18,7.556889142223966e-17,6.152847328855238e-17,0.0,0.0,4.2161911982530054e-17,4.321900910070342e-17,2.1575623232461538e-17,2.076247160309741e-17,0.0,3.618524750670371e-17,5.0212113113234924e-17,3.9532721714252705e-17,0.0,1.3010426069826053e-17,5.307169634316544e-17,0.0,8.077306185017008e-17,5.767955557622884e-17,0.0,3.695774155459963e-17,0.0,5.0428953547732025e-17,0.0,4.2012834183813297e-17,1.555830117516699e-17,0.0,0.0,4.933119884809045e-18,0.0,6.46455545344482e-18,0.0,3.008661028647275e-17,5.5077470362263625e-17,1.848564704087785e-17,5.421010862427522e-20,0.0,0.0,1.7889335846010823e-17,0.0,0.0,6.342582709040201e-18,1.4365678785432934e-17,0.0,4.6674903525500966e-17,0.0,0.0,4.228388472693467e-18,0.0,0.0,6.646159317336142e-17,0.0,0.0,0.0,1.0462550964485118e-17,2.5912431922403556e-17,1.5178830414797062e-18,0.0,1.940721888749053e-17,6.445581915426324e-17,0.0,7.26415455565288e-18,0.0,0.0,3.366447745567491e-17,1.100465205072787e-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.873135757086587e-17,5.854691731421724e-18,0.0,7.697835424647081e-18,3.436920886779049e-17,0.0,1.4474099002681484e-17,0.0,0.0,0.0,4.83554168928535e-17,0.0,1.702197410802242e-17,0.0,0.0,0.0,4.098284211995207e-17,4.174178364069192e-17,0.0,1.0191500421363742e-17,0.0,1.1302807648161384e-17,1.7672495411513722e-17,1.4203048459560108e-17,1.826880660638075e-17,0.0,0.0,2.656295322589486e-17,2.8866882842426556e-17,0.0,2.8406096919120216e-17,1.2278589603398338e-17,6.01732205729455e-17,8.565197162635485e-18,6.093216209368535e-17,6.581107186987012e-17,4.456070928915423e-17,2.7647155398380363e-17,6.591949208711867e-17,0.0,0.0,0.0,0.0,3.924811864397526e-17,0.0,0.0,4.7921736023859296e-17,2.7308342219478643e-17,3.0222135558033436e-18,2.2321012226045323e-17,1.3992984288641042e-17,0.0,0.0,3.855016349543772e-17,0.0,8.822695178600792e-18,2.522802930102208e-17,2.3351004289906552e-17,1.3925221652860698e-17,3.618524750670371e-18,0.0,0.0,1.1539976873392588e-17,0.00030501670631287296,0.0007354331263929003,0.0012878916653058807,0.0018491132270179226,0.002410113387818493,0.0029707797892136066,0.003530948981777338,0.004090534129027586,0.004649362970377049,0.005207280224442109,0.005764109540284441,0.006319678586026373,0.006873796002706556,0.0074262295555003206,0.007976757949528806,0.00852286138776558,0.009062624572171765,0.009602465620917584,0.010142443094381462,0.010682659364936672,0.011223219719125016,0.011764187665882787,0.012305693705533634,0.012847843907279888,0.013390789765430107,0.01393463855708394,0.014479570429096308,0.0150257651280855,0.01557342506884915,0.016122746602941867,0.01667400278650325,0.01868247976960044,0.019238057370625044,0.019827131688846974,0.020420106878663413,0.021013336409795358,0.021606771451932145,0.02220042861063645,0.022794261184813598,0.02338822383921256,0.02398233658274268,0.024576518276341126,0.025170741539473653,0.02576497282253414,0.026359181521481652,0.026953332562861417,0.027547361191265572,0.028141238486992695,0.028734929087472858,0.029328412688966236,0.02992164085406823,0.030514587019687667,0.02988042595253567,0.030551209529201113,0.031221405973328058,0.03189052362485906,0.032558132012655054,0.03322379069740643,0.03388706520009905,0.034547600836455895,0.03520501803072136,0.03585909867867467,0.036509497901393996,0.03715604022988869,0.03769221598160632,0.03807657072838515,0.038487702347464584,0.03894318408003089,0.04056182680910897,0.0411477024563885,0.041734096986851994,0.042321529850161105,0.04291010304508933,0.04254257481093092,0.04321827878459536,0.043897455495628984,0.04457601072972586,0.04525099619171946,0.04592043111196587,0.0465831625340355,0.04723862510063379,0.047886711685392436,0.04852764738423357,0.04916185659078129,0.049789847596805215,0.0504123220736808,0.05102984602501142,0.05164303668182835,0.0522525505762715,0.052858806432258945,0.05346236225605666,0.05406363728032652,0.05466297368921607,0.055260698022067914,0.05585707841978418,0.05645235230396836,0.05704672043116682,0.057640347252212315,0.058233320121606244,0.05882587141649459,0.059411952930729636,0.059981819760797125,0.06050073815570945,0.06095304962276113,0.06157053485435256,0.062182501330687326,0.06278781034056762,0.06339034973014163,0.06403434583293102,0.06463585904401378,0.06518192814723874,0.06570566344256343,0.06623181246200176,0.06677498658651117,0.06734103801924389,0.06792948402644601,0.0684984282071701,0.06940835125062388,0.06999472943906125,0.07058694471519908,0.07118064857265467,0.07177589643797631,0.07237182687786,0.07296788708000737,0.07356368092047678,0.07415897083530515,0.07475359738822675,0.07534712865263968,0.07593709731059187,0.07653702019173374,0.07713695928490577,0.07773254336452122,0.0783240962674482,0.07891331075220549,0.07950170803334705,0.08008999769104658,0.080678537197377,0.08126734577494601,0.08185642641439445,0.08244591252391177,0.08303610110976165,0.0836264008268899,0.0842168392115154,0.08480749026815022,0.08539825753980235,0.08430596015376828,0.08490762809092754,0.08550280136144169,0.0860941380280602,0.08668178158176572,0.08726584063552507,0.08784644541869495,0.0884237149700618,0.08899779726175296,0.08956879223902872,0.09013685629709514,0.09070207986204534,0.09126456077019722,0.09182445269369109,0.09238182453228641,0.09293679412017615,0.09348941434606291,0.09403978960125034,0.09458797735639153,0.0951340585423249,0.09567808882664422,0.0962200888657032,0.09676012646760258,0.09729819848709671,0.09783435473732117,0.09836859784143823,0.09890092625387159,0.0994313249014683,0.09995980734024679,0.10048635101995414,0.10101092944004196,0.10153348615598828,0.10205404189871366,0.10257251443989537,0.10308890010226492,0.10360932911771724,0.10414198914307943,0.10467181052634758,0.10461669050740653,0.10511293170312343,0.10560721552908932,0.1060994808025458,0.1065898200707627,0.10520771018435217,0.1056183769287439,0.10603256985158176,0.10644584231378995,0.10685827185694571,0.10726993046175125,0.10768077483547991,0.10809098902284495,0.10850053322929246,0.10890948485181337,0.10931787844158165,0.1097256728537011,0.11013300678260157,0.1105398257151823,0.11094615590371316,0.11135210716921223,0.1117575828888443,0.11207095317482148,0.11220880824281583,0.1122220953837918,0.11222966327156837,0.11223145706060972,0.11222798572125059,0.1122200857231393,0.11220941016411301,0.11219819083837758,0.11218918814778772,0.11218551839918324,0.11466440730010054,0.11471171747625783,0.1147577809908154,0.11480287456048377,0.11556533291437178,0.11559814188965421,0.11563058195888883,0.11566323737398017,0.11569655593024267,0.11573080909464596,0.11576829795714168,0.11581234117934837,0.11585571541042311,0.11589842887711815,0.11594050559809312,0.11598192331608487,0.1160227091634179,0.11606285261043055,0.11610236766479652,0.11614125999366784,0.11617955229661886,0.1162172092188946,0.11625426734608545,0.11629072546658159,0.11632658515110687,0.11636184649057213,0.11639652363674745,0.11643061461818674,0.116464120290656,0.11649706269835661,0.11652943516630392,0.11656124073953991,0.11659247150522759,0.11662317988292474,0.11665330533157872,0.11668290146079487,0.11671195306349891,0.11674046343246726,0.11676843430654704,0.1167958929438978,0.11682281228927299,0.11684921686385463,0.11687510699020032,0.11690048240907787,0.11692536249086781,0.11694972826903133,0.11697360457464745,0.11699698404491238,0.11701987536387999,0.11704155896242802,0.11706176785410093,0.11708148675014224,0.11710070277608665,0.11711942644474256,0.11713766719229123,0.1171554113355719,0.1171726782692616,0.11718947505781127,0.11720578848019281,0.11722163749743425,0.11723703188262313,0.11725197051196865,0.11726645138086783,0.11728048186516103,0.11729407151303953,0.11730724119479971,0.11731996934020973,0.11733228240537628,0.11734418329083679,0.1173556681742555,0.11736678261973651,0.11737749867591499,0.11738785859293685,0.1173978673793379,0.11661713162737103,0.11663437175383226,0.11665199745809655,0.11666997215919091,0.11668824539077044,0.11670677919616158,0.11672545663296816,0.11674416910519869,0.11676279765772529,0.11678114666496912,0.11679906496497594,0.11681630450307806,0.11683264132798221,0.11684784335170191,0.1168616484602627,0.1168738221653293,0.11688412764209302,0.11689242505821436,0.11689853303761769,0.11690241519234694,0.11690410414400287,0.11690365945307,0.11690125037988604,0.11689712332747619,0.116891544190502,0.11688478821840241,0.11687711112458002,0.1177688849037045,0.11779289515552765,0.12073580881220532,0.12082299069561961,0.12091024298894959,0.12099747390747319,0.12108458773214222,0.12117128553673936,0.12125540168571022,0.1213344343978396,0.12140954826588123,0.12147869043219203,0.1215336175675945,0.12158278833824777,0.12163526637607344,0.12170800273746013,0.12182021230456415,0.12197646546577573,0.12214887414900318,0.12229280537381207,0.12165000539390482,0.12191451314897947,0.1219948150506669,0.12191939928149964,0.12276573802818418,0.12284922346761332,0.12293384132178045,0.12303093751376329,0.12314133687898439,0.12325693857394915,0.12336508652447921,0.12279635644137687,0.1231530706006285,0.12336896343070049,0.12347418688550038,0.1235658904591274,0.12365898856007193,0.12375354016746759,0.12384967070467355,0.1239475809928823,0.12404723205400242,0.12414870587870862,0.12425209344978022,0.12435731441499298,0.12446434031242128,0.12457310210040184,0.12468334995306422,0.12479481840206927,0.12490711800275299,0.12501992641741844,0.12513250931318254,0.12524418883093696,0.12535399343434805,0.1254609468570344,0.12556362079746208,0.12566081843352123,0.1257509470237105,0.1258327459213506,0.12590511730307785,0.12596785604314922,0.1260219551450248,0.1260702627566927,0.12572769508951234,0.12597036273266282,0.12616116986315207,0.12587052043530245,0.12625497794837573,0.1264826705480524,0.12633004961098068,0.1264383046995403,0.12632529136068366,0.12595244713186013,0.12662968312360312,0.12652628656215748,0.12636420684043986,0.12724635519354283,0.12734787370596087,0.12743936249646007,0.12751920951560453,0.1275878391043096,0.12764672179985279,0.12769823055817842,0.1277445995426289,0.12778810951813835,0.12783068647407728,0.12787380624785627,0.1279187704834534,0.12796654728500817,0.12801780968978513,0.1280731929266763,0.12813293020632216,0.12819733898536997,0.1282666722476482,0.12834092729845015,0.128420134473113,0.12850427106200335,0.1285932791579406,0.12868696821846357,0.12878509414867664,0.1288873534514925,0.12899339290644854,0.1291027994884525,0.1292150311772782,0.12932952067805173,0.1294456501707967,0.12956275663844866,0.12968011892891307,0.1297971540863328,0.12991310700602038,0.13002754171906736,0.13013995344261153,0.1302499568968417,0.13035744864865487,0.13046227054905088,0.13056453271882332,0.13066433703164362,0.13076193138965422,0.12987531003029384,0.13007026662965368,0.1302489696804978,0.13041210331842915,0.13056001475235438,0.13069370242854114,0.13081388028259314,0.13088071188198858,0.13092613756855534,0.13096732115163312,0.13100403091877635,0.1310356740172743,0.1310619698846658,0.13108235359451115,0.1321050715627922,0.13219183011619062,0.13227841382389535,0.13236483275124827,0.13245119084070633,0.13253751299074817,0.13262396304934065,0.13271078210040996,0.1327983152686409,0.13288702550372916,0.13297757733466478,0.13307074906906852,0.13316746847685956,0.133268595926801,0.13337477029290706,0.13348601224807427,0.1336011909780944,0.13371761434314175,0.13383103907344318,0.13393600862786337,0.13402744587098933,0.13410311166063685,0.1341653593588042,0.13371773977502704,0.13399646719945082,0.1342063507536852,0.13436132044040794,0.1336638413553752,0.13408648010612648,0.13436125817453992,0.13454255122459977,0.13466508154613044,0.1347535149482802,0.134840271757251,0.13492671332364103,0.13501335549976953,0.13509989527478,0.13518643050990073,0.13527291481075254,0.13535957654464087,0.13544631887644937,0.135533099281003,0.13561971120236269,0.135706352659063,0.13579295224336005,0.13587969252243504,0.13596650106477384,0.13605321439563497,0.13613994177403307,0.13622676987709265,0.1363136130727934,0.13640044838397283,0.13648738706946556,0.13657436095490794,0.13666124106595925,0.13674824122342052,0.1368353264023905,0.1369223694209009,0.13700937754139164,0.1370965324208226,0.1371837052750674,0.13727080148568768,0.13735819801940718,0.13744545305620487,0.13753270244810478,0.13762001234237697,0.13770731008474346,0.13779482578994212,0.1378823470967892,0.13796974296591116,0.13805750909045045,0.1381452136088069,0.13823278734622113,0.13832046024763534,0.13840824585456418,0.13849616574085094,0.13858406329442663,0.13867202289709907,0.13876016914574207,0.13884809096659503,0.13893630992451622,0.13902448407023887,0.13911277150460713,0.13920112267143167,0.1392896686965347,0.13937797324800383,0.13946651287091227,0.13955530737940322,0.1396437146215482,0.13973245347062874,0.1398213188398125,0.13991013971024288,0.1399991704553933,0.1400882628533665,0.14017737923563167,0.14026646889155847,0.14035585815941698,0.14044523534310813,0.14053461626576216,0.14062415087365437,0.14071390700844122,0.14080344532342348,0.140893116751912,0.14098307663122026,0.1410731478461802,0.1411630512525208,0.14125311623244446,0.14134328344561567,0.14143349301124777,0.14152382026858876,0.14161441769688451,0.14170483626728617,0.14179561178926883,0.1418861394707175,0.14197695900647728,0.14206768584528,0.1421587703504224,0.14224972183128762,0.1423463647678541,0.14244573294137441,0.14254671536981836,0.14110285240627857,0.1393178326280116,0.1375331559781565,0.1357491082643887,0.13396640443563412,0.13218547151933824,0.13040692881310978,0.12863137335665314,0.12685935572666912,0.12483122710966303,0.12330725421169889,0.121673060720072,0.1199283217667344,0.11748819051535674,0.11610703598602048,0.11460267730322768,0.11297007463982692,0.11124019029124829,0.10950491296733722,0.10776961177328806,0.10603437912443625,0.10429907768066662,0.1025638452815334,0.10082856833957747,0.09909337298056276,0.09735803445487443,0.09562276751252644,0.09388751067427781,0.09215220835645628,0.09041698749750152,0.08868170990992258,0.08694646857180294,0.08521117606701914,0.08347588203187839,0.08174068022310228,0.0800054134329087,0.07827020914136226,0.07653484145975857,0.07479959573598785,0.07306430761685445,0.0713290303197309,0.0695937737739486,0.0678585068524972,0.06612325090459502,0.06438796255039222,0.06265266856934548,0.06091741063226381,0.05918224971891086,0.0574468947810667,0.05571162783873716,0.053976399039329284,0.05224106629177078,0.05050574228953289,0.0487705707165149,0.047035303795062794,0.04530003687360902,0.04356476995215487,0.04182953131653326,0.040094236109250586,0.038359038902785476,0.03662370226041627,0.03488846400551052,0.03315312899605333,0.03141790148609363,0.029682623959887407,0.02794737723944462,0.02621212982091986,0.024476833787023998,0.02274153608451586,0.021006310089045094,0.01927110437960327,0.01753576604252579,0.015800459175587693,0.014065213374173758,0.012329995066894077,0.010594637202668978,0.008859391276784447,0.007124164539540841,0.005388897614811144,0.003653713415153347,0.0019183637653641863,0.0,0.0,0.0,1.942890293094024e-16,5.551115123125783e-17,0.0,0.0,0.0,0.0,2.7755575615628914e-17,0.0,2.7755575615628914e-17,1.1102230246251565e-16,0.0,0.0,0.0,0.0,0.0,0.0,1.6653345369377348e-16,0.0,0.0,0.0,0.0,3.0531133177191805e-16,1.1102230246251565e-16,8.326672684688674e-17,0.0,0.0,1.6653345369377348e-16,0.0,1.1102230246251565e-16,0.0,0.0,0.0,0.0,0.0,2.7755575615628914e-17,0.0,1.6653345369377348e-16,2.7755575615628914e-17,0.0,2.7755575615628914e-17,0.0,0.0,0.0,2.7755575615628914e-16,0.0,1.6653345369377348e-16,2.220446049250313e-16,2.498001805406602e-16,0.0,0.0,0.0,5.551115123125783e-17,1.942890293094024e-16,0.0,0.0,2.220446049250313e-16,1.1102230246251565e-16,6.106226635438361e-16,0.0,0.0,2.7755575615628914e-17,2.220446049250313e-16,5.551115123125783e-17,1.942890293094024e-16,3.0531133177191805e-16,0.0,0.0,0.0,0.0,1.2417915097994458e-17,7.990055991349241e-19,7.107011664752371e-18,5.655464100696018e-17,6.9061104704920855e-15,1.2684295519482929e-14,2.4788832200563325e-14,3.570628546214389e-14,1.9438560702725477e-14,8.017939520187076e-14,1.19911676044899e-13,6.552243357291355e-18,3.257574209906004e-16,6.420570121114077e-15,3.0686492244197684e-16,1.1052455598093658e-16,8.982809482765284e-17,3.398972780906543e-14,3.844240206485578e-14,4.334801323637562e-13,8.057044193181769e-15,1.0333059860299646e-16,0.0,8.959499808725013e-14,0.0,1.4635571706768702e-13,1.0774714453987144e-13,7.538414337204813e-14,1.8062620185338636e-17,1.19737662087545e-13,1.610078521127971e-13,5.295763461516566e-14,4.04393660432329e-17,2.7441997173300937e-13,1.2467672703255236e-13,8.587493138126151e-17,5.726071036090168e-14,4.4937496717100064e-14,0.0,6.07043203172202e-14,0.0,3.2196435517661824e-15,1.2467792703862004e-13,6.99278047162709e-17,1.20367762138565e-17,3.4461500564792196e-13,2.276723313188121e-13,1.9796289959874564e-17,1.8445087325829767e-13,0.0,1.0842479456890147e-13,7.031403341706685e-19,2.712253849694953e-13,0.0,2.4187507849021934e-13,8.233244575368573e-18,1.0535263212674339e-17,1.5978018709873085e-17,1.2845345429992945e-13,4.110938504816017e-14,2.5707387807176933e-13,3.586725397105161e-17,2.4502488081804626e-13,6.311421480899666e-14,3.738400457996054e-13,7.568687474420224e-17,2.6302042046735946e-18,4.858448807028896e-16,5.556330956629809e-19,3.62696467210176e-18,9.81384466366343e-18,2.6933003727372233e-17,1.9950495205866391e-13,3.7113030613874217e-13,4.086132089863912e-18,2.7142667819394825e-13,1.0438873738274995e-13,6.973481482002967e-14,1.5904219313549232e-15,8.27467221306837e-14,2.9687627733905575e-13,3.190702324045074e-13,5.867522817615267e-14,2.9452439444484065e-13,8.205425024966559e-19,1.9584334154387761e-13,2.6325098570147888e-18,0.0,5.239217212383739e-13,3.20049201780954e-13,2.573722836036061e-18,6.195394920587043e-17,3.867219642304929e-13,4.829422695997033e-13,3.714636374195192e-14,1.80695739848307e-14,4.056987642443268e-13,2.3425705819590803e-14,0.0,1.6389670433168645e-13,1.032546281033635e-16,2.0095036745715333e-14,1.1012358237517645e-16,1.627208926394948e-15,4.761812766135606e-17,7.203689354107573e-13,5.500628314588152e-13,1.4397638486573615e-13,2.9090610365407903e-13,0.0,4.2203082574380755e-18,5.865506090001622e-19,5.510681443396559e-13,2.5787847748787664e-13,1.2351231783940248e-13,1.3200488917301173e-13,4.3235040660457215e-13,1.3509513142815869e-13,8.643363802463e-13,2.563080855109463e-18,8.240737491327587e-13,1.0709579137528472e-16,4.598741892452588e-17,2.980956343956533e-19,2.5743196076160857e-13,3.2600351583649266e-13,1.8594085888541806e-13,1.3031450960455552e-13,2.3632752833532046e-16,3.2323863102331755e-18,9.973072244006725e-14,2.0549561909472513e-13,6.657462493356224e-13,5.447885648680069e-13,7.675718548488321e-17,7.44377686078886e-13,0.0,5.064052995890212e-13,1.5939507119137184e-21,3.818612093198226e-13,0.0,2.8713049862243863e-13]}},\"id\":\"f87dd1da-57c5-4d48-a2d5-78f1235406e0\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"data_source\":{\"id\":\"f87dd1da-57c5-4d48-a2d5-78f1235406e0\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"512a1f64-61f2-4391-aa6c-794ba363e2b2\",\"type\":\"Line\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"886a962f-23cc-4041-a61d-76abef6185e8\",\"type\":\"Line\"},\"selection_glyph\":null},\"id\":\"7e3cf873-ef68-4388-8eec-ceef61d8a822\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"line_color\":{\"value\":\"#ffffbf\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"c9d6b591-3698-41c0-8175-055a61e60d02\",\"type\":\"Line\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"886a962f-23cc-4041-a61d-76abef6185e8\",\"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\":\"9049e0a5-9873-496a-9d4f-610cf53fc992\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"data_source\":{\"id\":\"390ff66b-8c6d-4ab0-b114-82c2ada646f1\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"c9d6b591-3698-41c0-8175-055a61e60d02\",\"type\":\"Line\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"98e67bf1-5cb5-441a-9a66-92c8a8653a84\",\"type\":\"Line\"},\"selection_glyph\":null},\"id\":\"d05e4cb7-a0b3-4eb6-b927-2f60e7c9b0ce\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"format\":\"0.%\"},\"id\":\"edc94e3a-9a18-4102-89ee-06b1e2c4669c\",\"type\":\"NumeralTickFormatter\"},{\"attributes\":{\"data_source\":{\"id\":\"0c2375a0-ea96-4449-ac69-5256c81e60d1\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"27a9040e-2910-4d8b-9ff0-876d657ee3a3\",\"type\":\"Line\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"015863f5-6708-4b1c-9aef-747a93b8ed8e\",\"type\":\"Line\"},\"selection_glyph\":null},\"id\":\"01cf4d2d-1bda-4a0b-a52e-da5bf3d5dd9c\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"line_color\":{\"value\":\"#abdda4\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"f9ed3204-f5f8-4bce-a393-1b5f66d63aef\",\"type\":\"Line\"},{\"attributes\":{\"plot\":{\"id\":\"567b421f-b917-48cd-b652-5aab83e65991\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"44f3bf70-13cb-4a9a-8ca8-ab5f4ce87614\",\"type\":\"BasicTicker\"}},\"id\":\"64b0f39f-0a96-49a9-b049-2d274c03119c\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"b737bec7-e49c-418f-827c-8842b6476be9\",\"type\":\"BasicTicker\"},{\"attributes\":{\"line_color\":{\"value\":\"#2b83ba\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"4017736b-a82c-45bc-be38-3d8d7a49b8d6\",\"type\":\"Line\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"8efc58b7-a29f-44e8-85a2-84996c27a0e0\",\"type\":\"PanTool\"},{\"id\":\"c2c38a54-4a45-4993-bffc-29a25b30b131\",\"type\":\"WheelZoomTool\"},{\"id\":\"a6e15dea-ee7e-40a3-bba4-7590c451416f\",\"type\":\"BoxZoomTool\"},{\"id\":\"cf3682ab-4603-46ba-9bc1-5463ec196606\",\"type\":\"SaveTool\"},{\"id\":\"e91f5f36-790a-4975-8a1f-5eb55854cb23\",\"type\":\"ResetTool\"},{\"id\":\"a85a0fc3-2d64-4994-8e27-6ae36d1f6496\",\"type\":\"HelpTool\"}]},\"id\":\"72594279-94e8-4103-9bee-f3b84b922aef\",\"type\":\"Toolbar\"},{\"attributes\":{\"below\":[{\"id\":\"d7a28b46-5056-4e53-8a90-8a9dfd1d18bd\",\"type\":\"LinearAxis\"}],\"left\":[{\"id\":\"ace3ec22-79d0-4385-bf31-ce2afd3ac90a\",\"type\":\"LinearAxis\"}],\"plot_width\":900,\"renderers\":[{\"id\":\"d7a28b46-5056-4e53-8a90-8a9dfd1d18bd\",\"type\":\"LinearAxis\"},{\"id\":\"64b0f39f-0a96-49a9-b049-2d274c03119c\",\"type\":\"Grid\"},{\"id\":\"ace3ec22-79d0-4385-bf31-ce2afd3ac90a\",\"type\":\"LinearAxis\"},{\"id\":\"1d142598-e023-42b7-a7e3-29116c68420a\",\"type\":\"Grid\"},{\"id\":\"9049e0a5-9873-496a-9d4f-610cf53fc992\",\"type\":\"BoxAnnotation\"},{\"id\":\"18abf210-13b1-43a2-8158-f5fcbd484ab2\",\"type\":\"Legend\"},{\"id\":\"eb0d8cb7-269c-4f2e-854b-3b57c2f52cb4\",\"type\":\"GlyphRenderer\"},{\"id\":\"f7143dd8-0d0b-4dbb-9d51-bdfeaf90bc45\",\"type\":\"GlyphRenderer\"},{\"id\":\"d05e4cb7-a0b3-4eb6-b927-2f60e7c9b0ce\",\"type\":\"GlyphRenderer\"},{\"id\":\"01cf4d2d-1bda-4a0b-a52e-da5bf3d5dd9c\",\"type\":\"GlyphRenderer\"},{\"id\":\"7e3cf873-ef68-4388-8eec-ceef61d8a822\",\"type\":\"GlyphRenderer\"}],\"title\":{\"id\":\"92264c7c-7efb-40a1-9881-6148933863b6\",\"type\":\"Title\"},\"tool_events\":{\"id\":\"3cc79a23-59c9-47ef-9697-8999ca2dd238\",\"type\":\"ToolEvents\"},\"toolbar\":{\"id\":\"72594279-94e8-4103-9bee-f3b84b922aef\",\"type\":\"Toolbar\"},\"toolbar_location\":\"above\",\"x_range\":{\"id\":\"696806dd-b560-405f-a6d6-d6b21ce8467f\",\"type\":\"DataRange1d\"},\"y_range\":{\"id\":\"1cfaddb5-115c-4638-877d-8753618173c1\",\"type\":\"DataRange1d\"}},\"id\":\"567b421f-b917-48cd-b652-5aab83e65991\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"line_color\":{\"value\":\"#fdae61\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"27a9040e-2910-4d8b-9ff0-876d657ee3a3\",\"type\":\"Line\"},{\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"567b421f-b917-48cd-b652-5aab83e65991\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"b737bec7-e49c-418f-827c-8842b6476be9\",\"type\":\"BasicTicker\"}},\"id\":\"1d142598-e023-42b7-a7e3-29116c68420a\",\"type\":\"Grid\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"98e67bf1-5cb5-441a-9a66-92c8a8653a84\",\"type\":\"Line\"},{\"attributes\":{\"plot\":null,\"text\":\"Efficient Frontier Weights (No Short Sale Allowed)\"},\"id\":\"92264c7c-7efb-40a1-9881-6148933863b6\",\"type\":\"Title\"},{\"attributes\":{\"line_color\":{\"value\":\"#d7191c\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"512a1f64-61f2-4391-aa6c-794ba363e2b2\",\"type\":\"Line\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"x\",\"y\"],\"data\":{\"x\":[0.3276185208729144,0.32761852455499285,0.3276184988715761,0.32761855767617,0.32761850624705724,0.3276193425099424,0.3276210172813669,0.3276235293231958,0.32762687861596157,0.32763106513388246,0.32763608884523554,0.3276419497111282,0.32764864768745783,0.32765618272196295,0.3276645547572867,0.327673763728768,0.32768380956756465,0.32769469219461383,0.3277064115269136,0.32771896747521423,0.3277323599441557,0.3277465888301686,0.32776170316310044,0.3277775554111653,0.3277942928702391,0.32781186627042086,0.32783027548173077,0.3278495203602329,0.3278696007604206,0.327890516526277,0.32791226750052427,0.32793485351615814,0.3279582744004624,0.32798252997565613,0.3280076200529819,0.3280335444472768,0.32806030295323413,0.3280878953744637,0.3281163214928485,0.3281455810975444,0.32817567396367586,0.32820659986384776,0.32823835855911426,0.3282709498073848,0.32830437336470925,0.3283386289767402,0.32837371637966595,0.3284096353065426,0.328446385490255,0.3284839666462454,0.328522378491068,0.3285616207320121,0.3286016930747113,0.3286488114485297,0.3286913313465059,0.3287332341034497,0.3287759982257872,0.328819623377448,0.32886410921577514,0.3289094553915382,0.3289556615489477,0.3290027273256681,0.3290506523528323,0.32909943625505605,0.3291490786504519,0.32919957915064474,0.3292509373607862,0.32930315287957035,0.32935622529924874,0.3294101542056466,0.32946493917817843,0.32952057978986415,0.3295770766271116,0.3296344357551179,0.329692640466889,0.32975169028233553,0.329811584705585,0.32987232322433635,0.32993390533750516,0.3299963305246728,0.3300595982613782,0.33012370801607366,0.3301886592534524,0.33025445141789733,0.3303210839826195,0.33038855634002484,0.33045686796450413,0.33052601827381783,0.3305960066714396,0.33066683260080204,0.3307384954348778,0.3308109945870268,0.33088432944732427,0.3309584993935369,0.3310335038140434,0.33110934209434983,0.3311860135546626,0.3312635176053262,0.3313418535634944,0.3314210207654918,0.33150101858140035,0.3315803667706755,0.3316553508408586,0.33173722375590725,0.33181990316667603,0.33190338846687845,0.33198767904191984,0.33207277428194365,0.33215867356425693,0.3322453762738716,0.33233288177727727,0.33242118944998655,0.33251029862497045,0.3326002086866098,0.33269091897500536,0.3327824288423031,0.3328747376179746,0.33296784463743345,0.33306174924749865,0.33315645075170885,0.3332519484870249,0.33334824176441596,0.33344532990777176,0.3335432121893467,0.33364188792990374,0.33374135644035235,0.33384161698305814,0.3339426688744463,0.33404451137369423,0.33414714376545673,0.3342505653137495,0.3343547753113757,0.33445977299625357,0.33456555763513846,0.3346721284817986,0.33477948478541014,0.3348876257905814,0.33499655073737855,0.33510625886135037,0.33521674939355334,0.335328021550047,0.3354400745745613,0.3355529076832664,0.33566652005879416,0.3357809109537664,0.33589607952832223,0.3360120250265912,0.3361287465998748,0.3362462434748632,0.3363645148398088,0.3364835598530452,0.3366033777192032,0.33672396756062456,0.3368453286148634,0.336967460019645,0.3370903609404778,0.33721403053504684,0.3373384679725447,0.33746367237465313,0.3375896428872456,0.33771637868294996,0.33784387888677936,0.33797214264623887,0.3381011690479721,0.33823095726683644,0.33836150640806967,0.3384928156081368,0.33862488393439627,0.3387577105660711,0.33889129455994904,0.33902563501993527,0.33916073108287664,0.339296581847061,0.33943318636947506,0.33957054375871737,0.3397086531015482,0.33984751348121683,0.33998712395887415,0.3401274836463812,0.34026859160249673,0.3404104469119095,0.34055304858383517,0.34069639573933225,0.34084048743867745,0.3409853226977668,0.34113090056708545,0.3412772201634511,0.34142428046613843,0.3415720805407974,0.3417206194038998,0.3418698961393813,0.34201990975948887,0.342170659314578,0.34232214378860504,0.3424743622054179,0.3426273136572685,0.34278099709427445,0.34293541152416834,0.3430905560440399,0.3432464295565326,0.34340303117588855,0.343560359825766,0.3437184145347064,0.3438771942752246,0.3440366981224538,0.3441969249637783,0.34435787386787936,0.3445195438299261,0.34468193377423934,0.3448450427130118,0.34500886962863075,0.3451734134923803,0.34533867325428713,0.3455046480115461,0.34567133654383886,0.3458387379159097,0.346006851119397,0.34617567509176655,0.34634520885909625,0.34651545117888133,0.34668640120555644,0.3468580578274571,0.34703042002902734,0.3472034866939096,0.3473772568017567,0.34755172929743916,0.3477269031236846,0.3479027771836269,0.34807935052821976,0.34825662194318135,0.348434590479296,0.3486132550648891,0.34879261451559856,0.34897266787734516,0.3491534140347148,0.34933485192075936,0.349516980488252,0.34969979858444955,0.34988330512721383,0.35006749911190366,0.35025237941220166,0.35043794503481146,0.3506241946278068,0.35081112745133197,0.3509987421054667,0.3511870376293314,0.3513760129769223,0.3515656670436281,0.35175599865312984,0.35194700669233503,0.3521386902562696,0.3523310479624999,0.35252407884255427,0.35271778183700014,0.3529121557987549,0.35310719965202103,0.3533029122123975,0.3534992923813571,0.3536963391280943,0.35389405126192747,0.35409242769130456,0.3542914672601337,0.35449116901698413,0.35469153158750344,0.35489255402796693,0.3550942352304366,0.3552965738426132,0.35549956908640906,0.35570321954152045,0.355907524277048,0.3561124820879324,0.35631809194159836,0.3565243525423899,0.35673126277073197,0.3569388217331018,0.3571470279696804,0.3573558807570205,0.35756537847691244,0.35777552032333076,0.35798630508454377,0.35819773153059903,0.35840979868388484,0.3586225055338194,0.35883585047500877,0.3590498326403999,0.3592644509859948,0.3594797042800513,0.35969559138264817,0.35991211125050965,0.3601292625488342,0.36034704413333357,0.3605654551586172,0.3607844942855715,0.3610041600739574,0.3612244520664634,0.36144536842938096,0.36166690852182837,0.36188907068221443,0.3621118542829124,0.36233525807654265,0.3625592807066436,0.36278392649143454,0.3630092039833127,0.36323510974685336,0.3634616395416308,0.3636887904252584,0.36391655855220706,0.3641449414098956,0.36437393606095553,0.36460354018914765,0.36483375144628316,0.3650645674073248,0.3652959860096139,0.36552800553268555,0.3657606240406229,0.3659931127356883,0.36622688232464823,0.3664612513118711,0.36669621858935414,0.366931782981064,0.36716794333525865,0.3674046985271326,0.36764204737639145,0.36787998875704536,0.36811852151242713,0.3683576445014068,0.3685973565521269,0.3688376565391948,0.36907854331396545,0.36932001570594913,0.3695620725966156,0.3698046709789259,0.3700476912742367,0.37029110201080434,0.3705349118256054,0.3707791212049149,0.37102372941013,0.3712687357436688,0.37151413944478556,0.37175993985213535,0.3720061362490987,0.372252728006767,0.372499714456405,0.3727470949966942,0.3729948690397256,0.37324303604999204,0.3734915964126429,0.3737405505389886,0.37398989531938187,0.3742396300337059,0.3744897539052839,0.37474026614656475,0.3749911660319915,0.37524245272871737,0.3754941254797369,0.3757461834181527,0.37599862575136545,0.3762514516132772,0.37650466008920763,0.3767582502615739,0.3770122212180641,0.37726657192635826,0.3775205907014442,0.3777756610934663,0.37803109975125393,0.37828691309160933,0.37854310139229247,0.3787996639104321,0.37905659988236334,0.37931390855129243,0.37957158919078593,0.3798296410086964,0.3800880632787945,0.38034685526216677,0.3806060162117057,0.38086554535885836,0.3811254419766587,0.3813857053296712,0.3816463346758456,0.38190732926529836,0.38216868834971235,0.3824304112020241,0.3826924970723964,0.3829556130989314,0.38321835863181786,0.38348146764188695,0.3837449397510051,0.38400877452667553,0.3842729714518197,0.3845375300206121,0.38480244954389037,0.3850677293780543,0.3853333686869785,0.38559936671489053,0.38586572259446483,0.38613250025470497,0.38639975401983545,0.38666737096371606,0.38693531541260534,0.3872027928131327,0.3874712894004402,0.38774013384819755,0.38800932531719823,0.38827886323399824,0.3885493927169675,0.3888195387360317,0.38909003069022075,0.38936087242681666,0.38963206597587663,0.38990361183748595,0.39017550947560237,0.39044775776125756,0.39072035507915387,0.39099329972615854,0.3912665899267954,0.39154022401581595,0.3918142003151253,0.3920885173990754,0.3923631738911549,0.392638168472412,0.3929135001109363,0.3931891676635508,0.3934651701743622,0.39374150672489744,0.39401817643987425,0.3942951784963602,0.3945725120793736,0.39485017640484665,0.39512817072557804,0.3954064943163363,0.3956851465702112,0.3959641280481939,0.3962434420144016,0.3965231100110187,0.396803167667493,0.3970834226948424,0.3973640110657166,0.39764493027750564,0.3979261758772389,0.3982077281367434,0.39848960456713367,0.39877181407975226,0.39905435331197625,0.39933721762220664,0.3996204018691251,0.3999039020956996,0.40018771644480094,0.40047202831299067,0.4007563444001012,0.4010411039167187,0.4013261784900671,0.4016115664693754,0.4018972666319537,0.40218327914019414,0.40246960387103914,0.4027562404563842,0.4030431883744242,0.4033304470265281,0.4036180158935932,0.40390588713029724,0.40419405938496805,0.4044825416078352,0.4047713356548185,0.40506043962910454,0.4053498512102704,0.40563956858791955,0.40592959059639533,0.4062199163105409,0.4065105449886759,0.40680147592892063,0.4070927084623936,0.40738424192919775,0.4076760756934266,0.40796820910121956,0.40826064149138797,0.40855337225667737,0.40884728864886416,0.40914060863727403,0.40943420876512804,0.4097280843427481,0.4100222338928219,0.4103166559825014,0.41061134914619585,0.4109063119777112,0.411201543035364,0.4114970409565903,0.4117928043475969,0.4120888318849738,0.41238512224966883,0.4126816741563655,0.41297848635836465,0.4132755576221351,0.41357288672894144,0.41387047255041076,0.4141683138955167,0.41446640968290543,0.414764758824998,0.415063360229828,0.4153622128987402,0.41566131580392895,0.4159606679645471,0.4162602684493768,0.4165601163021296,0.4168602106160261,0.4171605505586886,0.4174611352393533,0.41776196385697745,0.41806303558528807,0.4183643497159781,0.4186659054215974,0.41896770205949435,0.4192697475353904,0.4195720542496474,0.41987460115814584,0.42017647086758025,0.42047943512012087,0.4207826365159078,0.4210860742830144,0.4213897478221484,0.42169231655651285,0.4219963623992954,0.42230064209953017,0.4226051535915755,0.42290989639137566,0.42321487001247626,0.4235200739434664,0.4238255077545718,0.4241311709132678,0.42443706297602224,0.42474318343144324,0.42504953179190025,0.4253561075882796,0.42566291031914405,0.4259699395126862,0.4262771947057729,0.42658467536768724,0.4268924716407696,0.42720073401658143,0.42750939474025657,0.4278185143243341,0.4281280920957425,0.4284381277026951,0.42874862088918747,0.42905957167129716,0.42937098015375263,0.4296828463735681,0.4299951701945951,0.4303095066269367,0.4306227181995988,0.43093637935010476,0.4312504894538105,0.4315660214442515,0.43188099165112115,0.4321964112990264,0.4325122795429912,0.43282859540116675,0.43314535778967783,0.43346256801053495,0.433780228071229,0.4340983286526985,0.43441686880864144,0.4347358476174781,0.4350552641410328,0.4353751174974541,0.43569540673550566,0.43601613090322683,0.4363372891306743,0.4366588804900141,0.43698090403058737,0.43730335885969995,0.43762624406436823,0.43794955873059804,0.43827330192224523,0.43859747275500216,0.4389220703044613,0.43924709365608394,0.4395725419285548,0.4398984142150703,0.44022470957262944,0.4405514271243408,0.4408785660034026,0.4412061252389988,0.4415341039898564,0.441862501340393,0.4421913163985827,0.4425205482696644,0.4428501960664273,0.44318025891206275,0.4435107358756941,0.4438416261127388,0.4441729287061149,0.44450464279961927,0.4448367674994698,0.44516930193072435,0.44550224520947884,0.4458355964793657,0.4461693545130176,0.4465035184576972,0.44683808782605466,0.4471730617690894,0.4475084394011344,0.44784421986095774,0.4481804023015942,0.4485169858546873,0.44885396967078867,0.4491913528992015,0.4495291346719301,0.44986731412322994,0.45020589043699344,0.45054486275190686,0.45088423022366764,0.4512239920046236,0.4515641472518304,0.4519046951332633,0.45224563480179286,0.4525869654295825,0.45292868618654064,0.45327079621755334,0.45361329470879624,0.45395618082086936,0.4542994537257346,0.4546436733313877,0.4549876793982982,0.45533207357892524,0.4556768551798802,0.4560220236675058,0.45636757834788627,0.4567135185709516,0.4570598436863472,0.45740655288936755,0.45775364546193875,0.4581011204306979,0.4584489769319677,0.4587972138782804,0.45914583011308185,0.4594948244296817,0.4598441955317917,0.46019394214345943,0.46054406282282057,0.46089455633507725,0.4612454213709968,0.46159665659526666,0.46194826109500936,0.46230023383496366,0.4626525739489643,0.46300528064888113,0.46335835335922626,0.46371179147499436,0.46406461678341066,0.4644187274418161,0.46477141631397656,0.4651261615125447,0.46548126409327395,0.4658367233006195,0.4661925384011847,0.46654870879963967,0.4669052353267928,0.4672621196292786,0.46761936035172286,0.46797695893529984,0.4683349233884471,0.46869324832403514,0.4690519272723844,0.4694109443201829,0.4697702764144947,0.47012990839036367,0.4704898541838774,0.4708501516647552,0.47121131725775606,0.47157223126890474,0.47193364242440355,0.47229553333374813,0.47265710959724816,0.4730195629050927,0.4733823486517745,0.47374545416030184,0.4741088788678331,0.4744726272628526,0.47483670253625576,0.47520169212191793,0.47556622961206996,0.47593123357753275,0.4762966877483658,0.4766624771421816,0.4770285975900899,0.4773950481892088,0.4777618279528871,0.4781289358243282,0.4784963709132398,0.47886413226007934,0.47923221880355543,0.47960062973119816,0.4799693640898356,0.480338420994994,0.4807077996194145,0.4810774992306132,0.4814475191265742,0.481817858652657,0.4821885172760752,0.4825594945765413,0.4829307902552972,0.4833024040515648,0.48367433603527077,0.48404658614779555,0.48441915459752294,0.48479204156291206,0.4851652471963508,0.4855387713966733,0.485912613770581,0.48628677331398845,0.48666173748561714,0.48703632228749183,0.4874112831159519,0.48778711808791264,0.4881624980804226,0.48853836034878845,0.4889146559384489,0.48929132543687437,0.4896684056257545,0.490045951599564,0.49042317369430743,0.4908011563217118,0.4911795076005428,0.4915576031842891,0.49193639070888534,0.4923154847044879,0.49269488515101184,0.4930745913647547,0.493454602184728,0.4938349159295011,0.4942155308300826,0.494596444951963,0.49497765648316505,0.4953591637704427,0.4957409652311993,0.4961230594731949,0.49650544522701456,0.4968881213183531,0.49727108678864096,0.49765434066972647,0.49803788200397797,0.4984217100963559,0.49880582420459146,0.4991902236614418,0.4995749078387592,0.4999598762744819,0.5003451285414345,0.5007306642925553,0.5011164832643826,0.5015025852652909,0.5018889702097965,0.5022756380268597,0.5026625887313902,0.5030498223275642,0.5034373388499208,0.5038251381973499,0.5042132203367085,0.5046015849638693,0.5049902317952749,0.5053791603470241,0.5057683699827319,0.5061578600254687,0.506547629615227,0.5069376778887179,0.5073280039115786,0.5077191530337897,0.5081099505573895,0.5085010387793968,0.5088924147733859,0.5092840764296084,0.5096760212083846,0.5100682471931943,0.5104607813907877,0.5108536020752311,0.5112466972695389,0.5116400669736914,0.5120337114412281,0.5124276309390629,0.5128218261281751,0.513215676081069,0.5136103425057741,0.5140052751153042,0.5144004734398787,0.514795936994438,0.5151916653298481,0.5155876579315746,0.5159839142234586,0.5163804335029022,0.5167772148905009,0.5171742572221573,0.5175715589869805,0.5179691183190409,0.5183669329875326,0.5187650005638732,0.5191633188199051,0.5195618862623187,0.5199607026980112,0.5203597696505828,0.5207590901665654,0.5211586678785516,0.5215585053609705,0.5219586030362763,0.5223593092866805,0.5227597394802035,0.5231605048205838,0.5235615760105713,0.5239633505645851,0.5243647358048913,0.5247665013039349,0.52516857545494,0.5255709256491867,0.5259735365076305,0.526376395134451,0.5267795006598399,0.527182851826865,0.5275864485498842,0.5279902901148998,0.5283943758913644,0.5287987053860629,0.5292032779637972,0.5296080930296972,0.5300131504115849,0.5304184492257633,0.5308239889264812,0.5312297689351825,0.5316357888816083,0.5320420481205522,0.5324485460529598,0.5328552821875893,0.5332622558710797,0.5336694667004198,0.5340769140751931,0.5344845974725903,0.5348925162988789,0.5353006701539214,0.5357090583432144,0.5361176802853201,0.5365265357921298,0.5369356239151918,0.5373449444015402,0.5377544964461688,0.5381642797489563,0.5385742938852193,0.5389845380618323,0.5393950119132461,0.5398057148115711,0.5402166462599496,0.5406278057575918,0.5410391928586403,0.5414508067199123,0.5418626472021574,0.5422747138693207,0.5426870058897331,0.5430995228015831,0.5435122640761096,0.5439252293356994,0.5443384180006918,0.5447518294338245,0.5451654635262064,0.5455793193020945,0.545993396566334,0.5464076945867465,0.5468222131019972,0.5472369512095709,0.5476519091055221,0.5480670857076768,0.5484824803653235,0.5488980934894478,0.5493139236822627,0.549729970791212,0.550146234099216,0.5505627135471599,0.5509794082232801,0.5513963179092195,0.5518134421702116,0.5522307800720356,0.5526483315658361,0.5530660961061418,0.5534840730606805,0.553902261794857,0.5543206625186338,0.5547392740678021,0.5551580961274324,0.555577128114965,0.55599637014323,0.5564158210677477,0.5568354807733487,0.5572553485698212,0.557675424101996,0.5580957066201168,0.5585161963979011,0.5589368921093465,0.5593577939602252,0.5597789009759845,0.5602002129877574,0.5606217293142193,0.561043449852403,0.5614653767934108,0.5618875068135856,0.5623098385108156,0.5627330202645666,0.5631575815332568,0.5635834791811218,0.5640107107245436,0.564439272793779,0.5648691623636762,0.5653003761520567,0.5657329105185228,0.566166762156415,0.5666019842285378,0.5670384046802042,0.5674761802908647,0.5679152624986603,0.5683559688619614,0.5687974019878185,0.5692403054076047,0.5696845610771832,0.5701301123905335,0.5705769494392532,0.5710250682586746,0.5714744650016355,0.5719251383636904,0.572377083626041,0.5728302994767241,0.5732847807649216,0.5737405275023068,0.5741975340823943,0.5746557979448994,0.5751153173381679,0.5755760871496207,0.5760381069374542,0.576501371971604,0.5769658796884414,0.5774316270889869,0.5778986107461345,0.578366828525399,0.5788362765957427,0.579306953608496,0.5797788536766982,0.5802519771256146,0.580726318888777,0.581201875608689,0.5816786455038442,0.5821566247786081,0.5826358120970041,0.5831162024468157,0.5835977932757404,0.5840805815981703,0.5845645668365643,0.5850497428532416,0.5855361074885306,0.5860236589350432,0.5865123930819945,0.5870023069793188,0.5874933984350001,0.5879856641184633,0.5884791010829665,0.5889737063846434,0.5894694770825473,0.5899664098629451,0.5904645029198481,0.5909637521916329,0.5914641554374038,0.5919657087972877,0.5924684105629283,0.5929722566640098,0.593477245024253,0.5939833724511252,0.5944906360353509,0.5949990328710513,0.5955085598626342,0.5960192148581146,0.5965309940312975,0.5970438948672141,0.5975579143592266,0.5980730498759531,0.5985892984869771,0.5991066570590501,0.5996251229747172,0.6001446932064092,0.6006653651058922,0.6011871569420064,0.6017115394922604,0.6022408527038137,0.6027750835874243,0.6033142190793906,0.6038582460429461,0.604407151269647,0.6049609214807637,0.6055195433286686,0.6060830033982157,0.6066512882081305,0.6072243842123796,0.6078022778015586,0.6083849553042558,0.608972402988426,0.6095646070627575,0.6101615536780305,0.6107632289284791,0.6113696188531407,0.6119807094372045,0.6125964866133619,0.6132169362631326,0.613842044218209,0.6144717962617782,0.6151061781298415,0.6157451755125362,0.6163887740554387,0.6170369593608707,0.6176897169891922,0.6183470324600961,0.6190088912538864,0.6196752788127511,0.6203461805420398,0.6210215818115106,0.6217014679565938,0.6223858242796303,0.6230746360511121,0.6237678885109068,0.6244655668694814,0.6251676563091129,0.6258741419850922,0.6265850090269155,0.6273002425394739,0.6280198276042286,0.6287437492803774,0.6294719926060145,0.6302045425992769,0.6309413842594899,0.6316825025682894,0.6324278824907483,0.6331775089764837,0.6339313669607606,0.6346894413655788,0.6354517171007567,0.6362181790650031,0.6369888121469761,0.637763601226334,0.6385425311747751,0.6393255868570658,0.6401127531320668,0.6409040148537345,0.6416993568721232,0.6424987640343736,0.6433022211856831,0.6441097131702879,0.6449212248324032,0.6457367410171742,0.6465562465716149,0.647379726345525,0.648207165192408,0.6490385479703705,0.6498738595430167,0.650431421168143,0.6504314211681552,0.6504314211681561,0.6504314211681526,0.6504314211681245,0.6504314211681381,0.6504314211681398,0.6504314211681383,0.6504314211681108,0.650431421168118,0.6504314211680856,0.6504314211682425,0.650431421168151,0.6504314211681762,0.6504314211681986,0.6504314211680794,0.6504314211681685,0.6504314211682178,0.6504314211682288,0.6504314211680734,0.6504314211680396,0.6504314211682417,0.650431421196252,0.650431421168084,0.6504314211683154,0.6504314211679917,0.6504314211682017,0.6504314211681342,0.6504314211682222,0.650431421168131,0.6504314211680873,0.6504314211680358,0.650431421168147,0.6504314211679793,0.6504314211680354,0.650431421168102,0.650431421168133,0.6504314211681815,0.6504314211680918,0.6504314211680909,0.6504314211680826,0.650431421168028,0.6504314211681513,0.6504314211680937,0.6504314212168691,0.6504314211680002,0.650431421168286,0.6504314211685488,0.6504314211681096,0.6504314211682941,0.6504314211685547,0.6504314211680956,0.6504314211683113,0.6504314211684885,0.6504314211681849,0.650431421168326,0.6504314211684297,0.6504314211682155,0.6504314211679184,0.6504314211682105,0.6504314211681317,0.6504314211680611,0.6504314211679451,0.6504314211680983,0.6504314211682588,0.6504314211680085,0.6504314211680232,0.6504314212403407,0.6504314211683315,0.6504314211681826,0.6504314211683471,0.6504314211682738,0.6504314211681698,0.6504314211682698,0.6504314211679041,0.6504314211679395,0.6504314211679528,0.6504314211681336,0.6504314211681436,0.6504314211681338,0.6504314211683457,0.6504314211680795,0.6504314211681019,0.6504314211682705,0.6504314211681456,0.6504314211680374,0.6504314211681864,0.6504314211682373,0.6504314211682757,0.6504314211679336,0.6504314212072408,0.6504314211681433,0.6504314211680498,0.6504314211683573,0.6504314211684686,0.6504314211681391,0.6504314211679796,0.650431421168314,0.6504314211680439,0.6504314211679354,0.6504314211683815,0.6504314211682266,0.6504314211680166,0.6504314211687673,0.6504314211680575,0.6504314211683299,0.6504314211684152,0.6504314211684658,0.6504314211684058,0.6504314211824711,0.650431421168519,0.6504314211683059,0.6504314211680978,0.6504314211680853,0.6504314211679295,0.6504314211681267,0.6504314211679085,0.6504314211684737,0.6504314211678885,0.650431421168656,0.6504314211860333,0.6504314211680513,0.6504314211682494,0.6504314211684301,0.6504314211680586,0.6504314211681571,0.6504314211681723,0.650431421168437,0.6504314211680293,0.6504314211683254,0.6504314211683727,0.6504314211684734,0.6504314211679928,0.6504314211676888,0.6504314211683334,0.6504314211681724,0.6504314211683655,0.6504314211680013,0.6504314211679391,0.6504314211679816,0.6504314211689638,0.6504314211680372],\"y\":[0.0,0.0,4.672911363412524e-17,5.364090248372033e-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.212831456577696e-17,4.098284211995207e-17,6.8575787409708155e-18,0.0,3.3989738107420564e-17,0.0,0.0,1.1449174941446927e-16,1.0037679238142361e-16,0.0,0.0,0.0,0.0,0.0,4.3747557659790104e-17,0.0,5.690028526475488e-17,0.0,0.0,0.0,2.835188681049594e-17,1.8431436932253575e-18,8.494385208245026e-17,0.0,0.0,0.0,4.8382521947165635e-18,5.595499649561908e-17,0.0,8.229094489164979e-17,0.0,0.0,2.15485181781494e-18,5.46979996018937e-17,2.1873778829895052e-17,7.677506633912978e-18,0.0,6.769487314456368e-17,9.513874063560301e-18,0.0,9.615179204051916e-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.098284211995207e-17,2.0599841277224584e-17,8.673617379884035e-19,0.0,0.0,3.2742905609062234e-17,0.0,1.1058862159352145e-16,0.0,0.0,3.686287386450715e-17,0.0,5.941427905220564e-17,0.0,3.642919299551295e-17,0.0,3.903127820947816e-18,0.0,1.6046192152785466e-17,2.3418766925686896e-17,2.688821387764051e-17,0.0,2.6020852139652106e-17,0.0,5.2475385148298415e-17,0.0,0.0,3.252606517456513e-17,0.0,0.0,0.0,0.0,6.60821224129915e-17,5.277354074573193e-17,2.2453149365816993e-17,0.0,0.0,3.8855095356449265e-17,0.0,9.870305527764911e-17,4.4086370838691824e-17,1.5307579422779716e-16,0.0,2.074891907594134e-17,0.0,1.5395670849294163e-17,0.0,0.0,1.4026865606531214e-17,5.177065373618284e-18,1.0424265075269223e-16,3.479611347320666e-18,1.3582342715812157e-16,0.0,8.754932542820448e-18,0.0,8.665485863590394e-17,0.0,1.3254371558635292e-17,6.426608377407828e-17,6.304635633003208e-17,7.765598060427426e-18,6.1257422745431e-18,9.276704838329097e-18,4.765068548073792e-17,0.0,3.599551212651875e-17,0.0,0.0,2.5939536976715694e-17,0.0,0.0,1.4677386910022516e-17,2.0172936671808417e-17,0.0,6.220609964635582e-17,0.0,2.108773225484306e-17,2.553296116203363e-17,2.7728470561316776e-17,0.0,5.4752209710517974e-18,0.0,1.3871011544236422e-17,1.1926223897340549e-18,7.708677446371937e-17,3.548051609458813e-17,5.0076587841674236e-18,8.757643048251662e-17,0.0,5.838428698834441e-17,0.0,4.6485168145316e-17,4.784042086092288e-18,1.168227840853131e-17,9.947554932554503e-18,0.0,0.0,0.0,0.0,9.0015885370609e-17,9.728003992626189e-17,0.0,0.0,2.156207070530547e-17,9.568084172184577e-18,0.0,2.6291902682773483e-17,0.0,3.382710778154774e-17,8.673617379884035e-18,0.0,0.0,1.1587410718438829e-17,3.789286592836838e-17,0.0,4.027811070783649e-17,3.7947076036992655e-18,0.0,0.0,0.0,0.0,0.0,0.0,4.716279450311944e-18,6.852157730108388e-17,0.0,0.0,0.0,1.7564075194265172e-17,0.0,3.756760527662273e-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.491130995403324e-17,7.589415207398531e-18,0.0,0.0,1.2197274440461925e-17,0.0,6.2341624917916505e-18,0.0,0.0,3.838075690598686e-17,9.63584680796492e-18,0.0,2.4231918555051024e-17,7.92009687000661e-17,0.0,0.0,0.0,0.0,1.096128396382845e-16,0.0,1.1980434005964824e-17,2.721347452938616e-17,0.0,4.4072818311535755e-17,5.285485590866834e-17,2.867714746224159e-17,3.7133924407628527e-17,5.654114329511906e-17,0.0,6.928051882182373e-17,6.445581915426324e-17,2.6020852139652106e-17,4.412702842016003e-17,0.0,1.6940658945086007e-17,0.0,7.074419175467916e-17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.109832250191573e-17,0.0,3.2742905609062234e-17,5.084908188957016e-17,0.0,0.0,0.0,0.0,0.0,3.745918505937418e-17,5.2150124496552763e-17,0.0,9.237402509576498e-17,0.0,1.6371452804531117e-17,0.0,8.174884380540703e-17,0.0,3.252606517456513e-17,7.48099499014998e-17,1.463672932855431e-17,0.0,6.06069014419397e-17,4.537386091851836e-17,7.361732751176575e-17,1.5504091066542713e-17,0.0,0.0,7.697835424647081e-18,6.917209860457518e-17,7.979727989493313e-17,1.4690939437178585e-17,1.9607796289400348e-16,0.0,0.0,0.0,1.8431436932253575e-18,0.0,0.0,0.0,0.0,0.0,6.472686969738461e-17,0.0,0.0,0.0,0.0,0.0,0.0,4.7596475372113645e-17,0.0,4.336808689942018e-19,5.767955557622884e-17,0.0,3.92752236982874e-17,0.0,1.3356015512305808e-16,0.0,2.0755695339519376e-17,0.0,0.0,9.582314325698449e-17,4.438452643612534e-17,0.0,0.0,0.0,9.513874063560301e-18,5.42846475236336e-17,0.0,0.0,0.0,3.3068166260807885e-18,1.2576745200831851e-16,0.0,4.830120678422922e-17,0.0,6.320898665590491e-17,5.624298769768554e-17,2.268693045925918e-17,0.0,0.0,3.9437854024160224e-17,0.0,4.3530717225293e-17,0.0,6.776263578034403e-19,0.0,0.0,1.1259439561261964e-16,1.1709383462843448e-16,0.0,0.0,6.884683795282953e-18,2.5695591487906455e-17,0.0,4.8951728087720525e-17,0.0,0.0,2.1575623232461538e-17,6.418476861114186e-17,6.114900252818245e-17,0.0,2.393376295761751e-17,6.074242671350039e-17,0.0,8.782037597132586e-18,4.3395191953732315e-17,0.0,5.648693318649478e-17,5.870954764009007e-17,0.0,1.3335686721571705e-17,0.0,0.0,1.0568260676302454e-16,0.0,0.0,3.9193908535350985e-17,0.0,0.0,0.0,0.0,0.0,7.047314121155779e-18,0.0,0.0,0.0,1.2761059570154387e-16,1.4582519219930035e-17,1.7520707107365752e-16,0.0,0.0,0.0,1.2479167005308156e-16,0.0,1.481020167615199e-16,0.0,0.0,2.6969529040576923e-18,0.0,0.0,0.0,2.505862271157122e-17,0.0,1.3552527156068805e-17,0.0,1.7780915628762273e-17,0.0,0.0,0.0,1.3010426069826053e-16,7.45931094670027e-17,1.575345756621438e-16,0.0,1.249000902703301e-16,0.0,0.0,0.0,0.0,0.0,1.240327285323417e-16,0.0,1.3053794156725473e-16,1.0299920638612292e-17,0.0,7.85504473965748e-17,0.0,2.1196152472091612e-17,0.0,0.0,1.1909960864753266e-16,0.0,3.65376132127615e-17,0.0,1.0625181290357943e-17,0.0,3.1008182133085427e-17,3.686287386450715e-18,0.0,5.854691731421724e-17,0.0,8.890457814381136e-18,1.0907073855204175e-16,0.0,0.0,0.0,0.0,0.0,1.7862230791698686e-17,0.0,1.625761157642014e-16,0.0,2.0925101928970236e-17,0.0,0.0,0.0,7.399679827213568e-18,0.0,1.3796472644878044e-17,0.0,0.0,0.0,4.3612032388229416e-17,5.285485590866834e-18,0.0,1.0381235801548705e-17,9.055798645685176e-17,0.0,2.902951316829938e-17,1.636603179366869e-16,1.0251131540850444e-16,4.4167686001628237e-17,0.0,0.0,3.699839913606784e-17,8.233558069043346e-05,0.00020887959917740718,0.00034192168427830185,0.0004773014798121648,0.0006151549578460671,0.0007556354779892289,0.0008988600173600966,0.001044933162601716,0.0011939186809384146,0.0013459051782033812,0.001500939515048214,0.0016590843695849348,0.001820394053019486,0.001984886041057658,0.0021526088463668814,0.0023235792677157485,0.002497868617092785,0.0026754582770839204,0.002856409396525527,0.003040723690896516,0.0032284202511335654,0.003419543376985626,0.0036140756202436225,0.0038120714268273554,0.0040135152402955305,0.0042184028387184675,0.004426759103529858,0.00463858199813221,0.004853828737241463,0.005072506600256397,0.005294571987260509,0.005520004858446681,0.005748731896164603,0.0059807288840501415,0.00621588531677169,0.006447190483804231,0.006665087914403823,0.006886316461835145,0.008289541056956626,0.008539278573396888,0.00879045761054974,0.00904307832332596,0.009297068422403186,0.011277780608162835,0.011586828030832491,0.011892793810470037,0.012199196830750311,0.012505992839164648,0.01281313359733151,0.013120652762519421,0.013428447932703385,0.013736541596631985,0.014044878814254348,0.01435348248732875,0.014662328046246544,0.014971367600584703,0.015280632018258935,0.015590095385837534,0.015899711328684594,0.016209533423377248,0.016543629266870863,0.01691083452677797,0.01734314264358014,0.01777618453399995,0.018209485138286824,0.018642276164684966,0.019073693152670265,0.01950253549528496,0.019927706554056165,0.02034825335141594,0.020763510175375293,0.019308348097724536,0.019729488196896405,0.020151344974992647,0.020573635351103743,0.020117457600419157,0.020566547541340467,0.02101091574423031,0.0214513196452819,0.021888563861052746,0.022323343713605445,0.02275520145393697,0.023183957664963586,0.02361311540667287,0.024042685550894557,0.02447266516669731,0.02490305117370107,0.025333832634248113,0.025765019157398324,0.026196622231753376,0.026628621920552598,0.027061016276687378,0.02749382763300588,0.027927045266708177,0.028360663208050446,0.028794685330020494,0.029229125973367676,0.029663977048848125,0.030099238353387025,0.030534925557500963,0.030971017670617555,0.03140752832224362,0.03184446824388407,0.032281842644021105,0.03271962362580654,0.033157861764731664,0.03359652104887041,0.034035622379857675,0.034475168208463816,0.03491516728333004,0.0353556158474773,0.03579650608161997,0.03623787678378183,0.03667970846015265,0.03712202348614246,0.037564810652062464,0.03800808179188308,0.038451840827332585,0.03889610042844053,0.03934085156224069,0.03978667716372514,0.040233742311197834,0.04068136015634613,0.041129535521632545,0.04157828506235984,0.04202761667074639,0.04247753417345148,0.042928047244861184,0.04337915390589393,0.04383086629710714,0.04428320149309492,0.04473617532759994,0.04518977034951994,0.04564401220782292,0.04609890365051114,0.04655445753572343,0.047010669560718754,0.04746756012499995,0.04792513232693642,0.04838338324121423,0.048842326996319727,0.049301953984734644,0.049762292681907516,0.05022332354836764,0.05068505086390784,0.050352996873820874,0.05088519952756131,0.0514184845276615,0.051952717138401605,0.05248770322751164,0.053023246029778356,0.05355907657925936,0.05409488318038247,0.054630328089931256,0.055165004913617935,0.05569846911303674,0.05623024134297726,0.056759817118883824,0.05728668967820841,0.05781034878890326,0.05833031721917912,0.058846165135733756,0.05935759382602319,0.05986440351048634,0.06036653467418983,0.06086416082518934,0.061357565150821705,0.06184726032349599,0.062333870258527053,0.06281821417732038,0.06330110675093226,0.06378344538534887,0.06379385219332705,0.06426572845875708,0.06227338239723968,0.06268949110331955,0.06310514709838005,0.06352076138624885,0.06393722495705594,0.06435582594135665,0.06478709859120493,0.06524207672659238,0.0657099736088983,0.06619551649356036,0.06672305686660723,0.06726119469584568,0.06779044611136548,0.06827764214183098,0.06868112025276943,0.06897057418909099,0.06916188412477448,0.06933233929382812,0.07088698489796579,0.07104094431602408,0.07146973394608556,0.07213294320019321,0.07128343258284527,0.07180723883237408,0.07229008705772558,0.07270883503231515,0.0730694249105856,0.07338544785555479,0.07366258669983246,0.07535143386723656,0.07531972913791118,0.07547863604406765,0.07588371548201847,0.0762990776687868,0.0767119390341446,0.0771219937325499,0.07752882458494145,0.07793208196846052,0.078331400797425,0.07872648484057339,0.0791167925955226,0.07950212931676437,0.07988206155871283,0.08025627689131028,0.08062445535773187,0.08098639360537446,0.08134193547307118,0.08169083596460847,0.08203316979765506,0.08236906731406037,0.08269883500972121,0.08302299011901938,0.08334260188176632,0.08365883440579469,0.08397368695065838,0.08428953802271752,0.08460956396436949,0.08493725969608,0.08527631077205489,0.08562953774010475,0.08747830962440781,0.08748761835002443,0.087538021722709,0.08881921567467946,0.08855542286091794,0.08842085408364292,0.08856714961804686,0.08856293213064946,0.08866395241869227,0.08888920410240753,0.08952805540495133,0.0897783180724933,0.0900414342048011,0.09099819622776284,0.09131609643031846,0.09162592594632596,0.09193362376745141,0.09224391186487259,0.09256007346844732,0.09288388500895628,0.09321617394654083,0.09355701381620707,0.0939060452563895,0.09426270617707866,0.09462628373576198,0.09499606876397053,0.09537146809368797,0.09575183343830211,0.09613678914954978,0.09652587415704905,0.0969188155255747,0.09731537791937465,0.09771543985741746,0.09811889194931721,0.09852568182120586,0.09893584477412846,0.09934942123398294,0.0997664606078314,0.10018700868827668,0.10061110298547545,0.10103873983446753,0.10146989208377313,0.10190439033954551,0.10234204143099473,0.10278254249895577,0.10322541036318994,0.10367016305671405,0.10411609944014524,0.10456248626075113,0.10500858374196845,0.10545351662818643,0.10589652119589454,0.10633691217079393,0.1067740878653381,0.10720760597929962,0.10711654661170775,0.10754772679865736,0.1079776018288069,0.10840486241215931,0.10882826868659558,0.10924689490918525,0.10965987246824294,0.11004115960486646,0.11040952648850175,0.11077620106064125,0.11114089901521991,0.1115037089780499,0.11186450218638391,0.1122232687079932,0.11318397028643351,0.11355573260032505,0.11392483476095015,0.11429115413107328,0.11465461132495909,0.11501524375015539,0.11537322060127826,0.11572889310273912,0.11608288228647862,0.11643613072781217,0.1167900155539224,0.11714646360556794,0.11750792311667418,0.11787753783706031,0.11825905656266693,0.11865666095562385,0.1190746023919646,0.11951646105217736,0.11998389215389688,0.12047531173839708,0.12098449444576895,0.12150025903112642,0.12200832070797667,0.12168266722893391,0.1223264516836847,0.12294834301907906,0.12352319380436187,0.12347161578843971,0.12404303501377956,0.12457343503683413,0.12505309224077407,0.1254842890748211,0.12588054142199984,0.1262744285266263,0.12666854477140577,0.12706248882617932,0.12745646029118668,0.12785038132594165,0.1282443505249702,0.12863812500514343,0.12903190245593263,0.12942563150185174,0.12981943052375422,0.1302131809712711,0.13060691636082103,0.1310006107484128,0.13139422568773035,0.1317878586338599,0.13218139631381343,0.13257501406938324,0.13296853910811737,0.13336208058573973,0.13375557023076662,0.1341489877948745,0.13454243027754614,0.13493583666339765,0.1353292079736728,0.13572260456658114,0.1361159548678228,0.13650924764783828,0.13690255370213483,0.1372959419704401,0.13768911210806303,0.13808240126216229,0.13847568947772332,0.13886894316025555,0.13926220294492472,0.13965538725656113,0.1400485797114242,0.14044183155285414,0.140834917499866,0.14122802779654975,0.14162128290438245,0.14201449069781572,0.14240763537922715,0.1428007542778572,0.1431938997438219,0.14358705128865845,0.14398016975766864,0.14437337162946984,0.14476650090167834,0.14515971268660388,0.14555290837812473,0.14594608226789707,0.14633917516886594,0.1467324363755726,0.14712570331219224,0.14751882060389038,0.14791230995413215,0.14830558430946114,0.14869880738187896,0.14909225905411624,0.14948563074464824,0.1498789272743413,0.15027233943974133,0.15066577979928378,0.1510592804190564,0.15145283265155554,0.15184630056696913,0.15223992972382622,0.15263349832831385,0.1530272915347045,0.15342102751008616,0.15381486992177293,0.15420860074549736,0.154602542141532,0.15499656687845292,0.15539060537041754,0.155784713424246,0.15617881649300702,0.1565729576864289,0.15696727539362187,0.15736160615377368,0.15775604915373614,0.15815063337472754,0.15854524050969945,0.1589398396185195,0.15933462858485753,0.159717722878286,0.16009953360161344,0.16048317077550578,0.16113419399755538,0.1618443618442112,0.16255382777435834,0.16326200185021938,0.16396742013262647,0.16466920534229978,0.16536608706587408,0.16605684212813834,0.16674033971611485,0.16794919144199605,0.168123881007783,0.16852466270157299,0.16915220441562206,0.17120619032877124,0.17108791400817208,0.17122236922338357,0.17161989107836761,0.1722169646073137,0.17282509463147072,0.17343327379713575,0.17404131798862374,0.17464949769784308,0.17525754134577926,0.17586567082633198,0.1764736413409977,0.1770818943005532,0.17769000603765872,0.17829809973866279,0.17890628135043324,0.17951430401183835,0.18012243477439488,0.1807304939745028,0.18133865813154976,0.1819468254277784,0.18255480625510778,0.1831629176479559,0.18377090338798055,0.18437921652443678,0.18498728988534646,0.1855954398815905,0.18620357035714075,0.1868116632387461,0.18741977491732323,0.18802786665051982,0.18863601730555438,0.18924418450651753,0.18985228016360164,0.1904601792652843,0.19106846425396296,0.1916765759910637,0.19228461181595585,0.19289285620829266,0.19350108499100863,0.19410900338167963,0.19471711506025313,0.19532522673883235,0.19593333841741173,0.19654139207395072,0.19714956177456452,0.19775753267760426,0.19836578513379927,0.1989738380037312,0.1995820875093622,0.20019012017302484,0.20079825195783588,0.20140632383432902,0.20201439550138578,0.20262256689198077,0.20323074170536262,0.20383876942784127,0.20444675665572468,0.20505501273722462,0.20566320644548217,0.20627127489143568,0.20687928761821822,0.2074875858399074,0.20809565395783117,0.20870368368930325,0.20931179536903044,0.20991973776849096,0.2105280187284772,0.21151171289420181,0.20856031370775904,0.20560891452131563,0.2026575153348704,0.19970611614842754,0.19675471696198568,0.19380331777554202,0.19085191858909809,0.187900519402655,0.1849491202162116,0.18199772102977,0.17904632184332478,0.1760949226568821,0.17314352347043746,0.1701921242839947,0.16724072509755197,0.16428932591110734,0.16133792672466502,0.15838652753822285,0.15543512835177686,0.1524837291653353,0.1495323299788909,0.14658093079244763,0.143629531606006,0.14067813241955965,0.13772673323311735,0.13477533404667388,0.13182393486023203,0.12887253567378876,0.1259211364873447,0.12296973730090224,0.12001833811445661,0.11706693892801476,0.11411553974157268,0.11116414055512872,0.10821274136868353,0.10526134218224054,0.10230994299579801,0.09935854380935463,0.09640714462290956,0.09345574543646731,0.09050434625002607,0.0875529470635806,0.08460154787713878,0.08165014869069376,0.07869874950425348,0.07574735031780683,0.07279595113136278,0.06984455194492034,0.06689315275847507,0.063941753572034,0.06099035438559178,0.05803895519915031,0.05508755601270432,0.052136156826260494,0.04918475763981747,0.04623335845337467,0.04328195926693104,0.040330560080487354,0.03737916089404314,0.034427761707597926,0.03147636252115632,0.02852496333471563,0.025573564148270417,0.022622164961825952,0.01967076577538429,0.016719366588941215,0.013767967402495557,0.010816568216054617,0.007865169029611152,0.004913769843166604,0.001962370656724305,1.0547118723391868e-15,8.298917042681708e-15,2.0523194855374056e-14,1.747823854867367e-16,6.727946863009439e-15,4.639313014724795e-17,1.368351332497105e-14,9.00191202579163e-15,0.0,1.691420587718675e-16,0.0,7.345490842405314e-18,1.3135456748147152e-18,0.0,5.162316321050296e-18,3.6359778870881246e-14,0.0,3.398550177117616e-17,1.3758438488706285e-13,4.25734234517061e-16,2.1824479222400763e-18,2.1108094147570534e-13,1.355317317926928e-13,2.375877272697835e-14,2.970401665254585e-13,5.7378675063123584e-18,0.0,0.0,7.205285895437568e-14,0.0,3.01026061170537e-16,5.6945727641616975e-18,1.0700209058430528e-17,0.0,1.0184528844079132e-17,4.8808658807646583e-17,1.1629582694073008e-14,9.122110238146947e-14,0.0,4.575478560543198e-19,1.6939227798218326e-13,3.608221221806928e-15,3.383284749599529e-17,6.217040651301182e-17,4.40947711018974e-18,3.850417727674392e-17,1.4190610831490615e-13,5.130014294170935e-13,3.602677864801773e-14,0.0,2.5804304176880653e-13,6.5994568975595486e-18,3.707388724451958e-17,3.5435543388473434e-13,2.8587397410483623e-18,6.452544487842719e-19,0.0,9.7331715589996e-19,0.0,1.165458936567544e-13,1.471576710763275e-18,5.47243699321545e-17,2.6042911692998916e-16,0.0,4.039977079855293e-18,5.6363585482588545e-18,2.7547406841506607e-19,5.58381230885879e-16,1.237371778514667e-13,6.750278125146917e-14,6.769376164733103e-18,4.502722147195609e-13,4.931314477878374e-16,4.8317772247106154e-17,8.556211844666325e-18,3.396363537811436e-17,1.6545850392893896e-20,0.0,1.7115732068071092e-18,1.9719163600821665e-16,0.0,4.083558073404517e-17,6.3347792972166e-18,1.708751650871495e-13,1.4056571010712743e-16,0.0,9.616652003957889e-18,0.0,0.0,0.0,9.841966227189255e-17,2.2016515517343414e-13,9.998248973163826e-18,2.60265618907551e-16,1.5535851918827134e-18,2.789218353986694e-13,2.1421576289021915e-18,4.261035968511351e-13,0.0,1.886519629066859e-21,1.7909861546239076e-17,0.0,1.8032674416596142e-13,4.097829579200209e-13,3.8118742310242384e-13,0.0,1.4569901298687089e-16,5.0754694847635785e-16,4.73437969271814e-18,0.0,4.832727583575031e-13,5.039933652703357e-18,3.19993939587707e-17,6.966442798863344e-18,4.3187675633265045e-14,4.622225367747609e-16,8.815310370166771e-18,4.766051959398747e-13,0.0,2.8691175892313153e-13,0.0,2.233953105968532e-19,1.282304882572357e-13,5.519571016678016e-13,9.043668154692571e-19,2.774311392927987e-16,1.416850892901595e-17,2.0214480072636147e-13,7.000132670182446e-16,3.214697796942893e-18,2.7531424579394856e-19,3.024004376183458e-17,3.473557040511883e-17,1.3602907557605542e-17,1.2421731462684593e-16,0.0,4.160560784782774e-14,2.026886207300306e-15,1.5033937883004842e-22,0.0,2.1843638009499955e-13,1.107380061627075e-16]}},\"id\":\"b6a72239-52ed-4322-9205-770d1b8624cb\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"plot\":{\"id\":\"567b421f-b917-48cd-b652-5aab83e65991\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"cf3682ab-4603-46ba-9bc1-5463ec196606\",\"type\":\"SaveTool\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":2},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"42ccf70b-728c-4d2b-ba3d-2141c6a45590\",\"type\":\"Line\"},{\"attributes\":{\"axis_label\":\"Weight\",\"formatter\":{\"id\":\"841c070f-adc2-419c-9c3f-b03e9542e7c0\",\"type\":\"NumeralTickFormatter\"},\"plot\":{\"id\":\"567b421f-b917-48cd-b652-5aab83e65991\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"b737bec7-e49c-418f-827c-8842b6476be9\",\"type\":\"BasicTicker\"}},\"id\":\"ace3ec22-79d0-4385-bf31-ce2afd3ac90a\",\"type\":\"LinearAxis\"},{\"attributes\":{\"label\":{\"value\":\"BBAS3\"},\"renderers\":[{\"id\":\"7e3cf873-ef68-4388-8eec-ceef61d8a822\",\"type\":\"GlyphRenderer\"}]},\"id\":\"70836e07-2e95-4346-84fd-b063d738e41e\",\"type\":\"LegendItem\"},{\"attributes\":{},\"id\":\"44f3bf70-13cb-4a9a-8ca8-ab5f4ce87614\",\"type\":\"BasicTicker\"},{\"attributes\":{\"axis_label\":\"Risk\",\"formatter\":{\"id\":\"edc94e3a-9a18-4102-89ee-06b1e2c4669c\",\"type\":\"NumeralTickFormatter\"},\"plot\":{\"id\":\"567b421f-b917-48cd-b652-5aab83e65991\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"44f3bf70-13cb-4a9a-8ca8-ab5f4ce87614\",\"type\":\"BasicTicker\"}},\"id\":\"d7a28b46-5056-4e53-8a90-8a9dfd1d18bd\",\"type\":\"LinearAxis\"},{\"attributes\":{\"label\":{\"value\":\"PETR4\"},\"renderers\":[{\"id\":\"f7143dd8-0d0b-4dbb-9d51-bdfeaf90bc45\",\"type\":\"GlyphRenderer\"}]},\"id\":\"544cd373-84cb-423f-8968-f3d57b1e171d\",\"type\":\"LegendItem\"},{\"attributes\":{\"plot\":{\"id\":\"567b421f-b917-48cd-b652-5aab83e65991\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"8efc58b7-a29f-44e8-85a2-84996c27a0e0\",\"type\":\"PanTool\"}],\"root_ids\":[\"567b421f-b917-48cd-b652-5aab83e65991\"]},\"title\":\"Bokeh Application\",\"version\":\"0.12.3\"}};\n",
" var render_items = [{\"docid\":\"c2263dc0-c17b-4258-bc49-bb17a17e806a\",\"elementid\":\"22835ff4-3f15-4157-a807-96c7ad14d50e\",\"modelid\":\"567b421f-b917-48cd-b652-5aab83e65991\"}];\n",
" \n",
" Bokeh.embed.embed_items(docs_json, render_items);\n",
" });\n",
" },\n",
" function(Bokeh) {\n",
" }\n",
" ];\n",
" \n",
" function run_inline_js() {\n",
" \n",
" if ((window.Bokeh !== undefined) || (force === \"1\")) {\n",
" for (var i = 0; i < inline_js.length; i++) {\n",
" inline_js[i](window.Bokeh);\n",
" }if (force === \"1\") {\n",
" display_loaded();\n",
" }} else if (Date.now() < window._bokeh_timeout) {\n",
" setTimeout(run_inline_js, 100);\n",
" } else if (!window._bokeh_failed_load) {\n",
" console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n",
" window._bokeh_failed_load = true;\n",
" } else if (!force) {\n",
" var cell = $(\"#22835ff4-3f15-4157-a807-96c7ad14d50e\").parents('.cell').data().cell;\n",
" cell.output_area.append_execute_result(NB_LOAD_WARNING)\n",
" }\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": [
"p3 = figure(width=900, height=600, title=\"Efficient Frontier Weights (No Short Sale Allowed)\", toolbar_location=\"above\")\n",
"for i, symbol in enumerate(symbols):\n",
" p3.line(weights_ss_false[symbol].index, weights_ss_false[symbol].values, legend=symbol, color=mypalette[i], line_width=2)\n",
"\n",
"p3.legend.location = \"top_left\"\n",
"p3.xaxis.axis_label = 'Risk'\n",
"p3.xaxis.formatter = NumeralTickFormatter(format=\"0.%\")\n",
"p3.yaxis.axis_label = 'Weight'\n",
"p3.yaxis.formatter = NumeralTickFormatter(format=\"0.%\")\n",
"\n",
"show(p3)"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.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