{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Loop API Example on Hartmann6\n", "\n", "The loop API is the most lightweight way to do optimization in Ax. The user makes one call to `optimize`, which performs all of the optimization under the hood and returns the optimized parameters.\n", "\n", "For more customizability of the optimization procedure, consider the Service or Developer API." ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "data": { "text/html": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 18:16:07] ipy_plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.\n" ] }, { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "import numpy as np\n", "\n", "from ax.plot.contour import plot_contour\n", "from ax.plot.trace import optimization_trace_single_method\n", "from ax.service.managed_loop import optimize\n", "from ax.metrics.branin import branin\n", "from ax.utils.measurement.synthetic_functions import hartmann6\n", "from ax.utils.notebook.plotting import render, init_notebook_plotting\n", "\n", "init_notebook_plotting()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 1. Define evaluation function\n", "\n", "First, we define an evaluation function that is able to compute all the metrics needed for this experiment. This function needs to accept a set of parameter values and can also accept a weight. It should produce a dictionary of metric names to tuples of mean and standard error for those metrics." ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": true }, "outputs": [], "source": [ "def hartmann_evaluation_function(parameterization):\n", " x = np.array([parameterization.get(f\"x{i+1}\") for i in range(6)])\n", " # In our case, standard error is 0, since we are computing a synthetic function.\n", " return {\"hartmann6\": (hartmann6(x), 0.0), \"l2norm\": (np.sqrt((x ** 2).sum()), 0.0)}" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If there is only one metric in the experiment – the objective – then evaluation function can return a single tuple of mean and SEM, in which case Ax will assume that evaluation corresponds to the objective. It can also return only the mean as a float, in which case Ax will treat SEM as unknown and use a model that can infer it. For more details on evaluation function, refer to the \"Trial Evaluation\" section in the docs." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 2. Run optimization\n", "The setup for the loop is fully compatible with JSON. The optimization algorithm is selected based on the properties of the problem search space." ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 18:16:07] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+GPEI', steps=[Sobol for 6 arms, GPEI for subsequent arms], generated 0 arm(s) so far). Iterations after 6 will take longer to generate due to model-fitting.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 18:16:07] ax.service.managed_loop: Started full optimization with 30 steps.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 18:16:07] ax.service.managed_loop: Running optimization trial 1...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 18:16:07] ax.service.managed_loop: Running optimization trial 2...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 18:16:07] ax.service.managed_loop: Running optimization trial 3...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 18:16:07] ax.service.managed_loop: Running optimization trial 4...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 18:16:07] ax.service.managed_loop: Running optimization trial 5...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 18:16:07] ax.service.managed_loop: Running optimization trial 6...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 18:16:07] ax.service.managed_loop: Running optimization trial 7...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 18:16:12] ax.service.managed_loop: Running optimization trial 8...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 18:16:17] ax.service.managed_loop: Running optimization trial 9...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 18:16:22] ax.service.managed_loop: Running optimization trial 10...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 18:16:26] ax.service.managed_loop: Running optimization trial 11...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 18:16:30] ax.service.managed_loop: Running optimization trial 12...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 18:16:35] ax.service.managed_loop: Running optimization trial 13...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 18:16:40] ax.service.managed_loop: Running optimization trial 14...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 18:16:45] ax.service.managed_loop: Running optimization trial 15...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 18:16:50] ax.service.managed_loop: Running optimization trial 16...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 18:16:54] ax.service.managed_loop: Running optimization trial 17...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 18:16:59] ax.service.managed_loop: Running optimization trial 18...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 18:17:04] ax.service.managed_loop: Running optimization trial 19...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 18:17:08] ax.service.managed_loop: Running optimization trial 20...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 18:17:13] ax.service.managed_loop: Running optimization trial 21...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 18:17:17] ax.service.managed_loop: Running optimization trial 22...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 18:17:21] ax.service.managed_loop: Running optimization trial 23...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 18:17:24] ax.service.managed_loop: Running optimization trial 24...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 18:17:28] ax.service.managed_loop: Running optimization trial 25...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 18:17:31] ax.service.managed_loop: Running optimization trial 26...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 18:17:34] ax.service.managed_loop: Running optimization trial 27...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 18:17:36] ax.service.managed_loop: Running optimization trial 28...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 18:17:36] ax.service.managed_loop: Running optimization trial 29...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 18:17:37] ax.service.managed_loop: Running optimization trial 30...\n" ] } ], "source": [ "best_parameters, values, experiment, model = optimize(\n", " parameters=[\n", " {\n", " \"name\": \"x1\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " \"value_type\": \"float\", # Optional, defaults to inference from type of \"bounds\".\n", " \"log_scale\": False, # Optional, defaults to False.\n", " },\n", " {\n", " \"name\": \"x2\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x3\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x4\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x5\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x6\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " ],\n", " experiment_name=\"test\",\n", " objective_name=\"hartmann6\",\n", " evaluation_function=hartmann_evaluation_function,\n", " minimize=True, # Optional, defaults to False.\n", " parameter_constraints=[\"x1 + x2 <= 20\"], # Optional.\n", " outcome_constraints=[\"l2norm <= 1.25\"], # Optional.\n", " total_trials=30, # Optional.\n", ")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "And we can introspect optimization results:" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'x1': 0.40415964754879624,\n", " 'x2': 0.8856697149366803,\n", " 'x3': 0.3058285757403496,\n", " 'x4': 0.5790443556766571,\n", " 'x5': 0.34886708988228604,\n", " 'x6': 0.05001521085937599}" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "best_parameters" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'l2norm': 1.2250672076835718, 'hartmann6': -3.1325732831896707}" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "means, covariances = values\n", "means" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "For comparison, minimum of Hartmann6 is:" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "-3.32237" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "hartmann6.fmin" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 3. Plot results\n", "Here we arbitrarily select \"x1\" and \"x2\" as the two parameters to plot for both metrics, \"hartmann6\" and \"l2norm\"." ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "autocolorscale": false, "autocontour": true, "colorbar": { "tickfont": { "size": 8 }, "ticksuffix": "", "x": 0.45, "y": 0.5 }, "colorscale": [ [ 0.0, "rgb(247,252,253)" ], [ 0.125, "rgb(229,245,249)" ], [ 0.25, "rgb(204,236,230)" ], [ 0.375, "rgb(153,216,201)" ], [ 0.5, "rgb(102,194,164)" ], [ 0.625, "rgb(65,174,118)" ], [ 0.75, "rgb(35,139,69)" ], [ 0.875, "rgb(0,109,44)" ], [ 1.0, "rgb(0,68,27)" ] ], "contours": { "coloring": "heatmap" }, "hoverinfo": "x+y+z", "ncontours": 25, "type": "contour", "x": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "xaxis": "x", "y": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "yaxis": "y", "z": [ [ -0.32296886798999536, -0.3166877327573865, -0.31008908559587667, -0.3031867279491518, -0.2960017344956851, -0.2885632914709573, -0.2809093337420667, -0.27308687580026336, -0.26515192833340095, -0.257168902088615, -0.24920942885009234, -0.24135057838872087, -0.23367251953029045, -0.22625575697720102, -0.21917816059744033, -0.21251207206904432, -0.20632180401717704, -0.20066182166265212, -0.19557581002704771, -0.19109669109313532, -0.1872474926262495, -0.1840428227687434, -0.18149061125698895, -0.17959376546042205, -0.1783514609535659, -0.17775992001189778, -0.17781268552103402, -0.1785005244181903, -0.17981115759668653, -0.18172900191678543, -0.1842350435180249, -0.1873068768967514, -0.19091887670257046, -0.19504243776433206, -0.19964622240485275, -0.2046963789003995, -0.21015672485571746, -0.21598891277928134, -0.22215260733468178, -0.22860570489079013, -0.23530461912033274, -0.2422046452232327, -0.24926040310696274, -0.25642634882965765, -0.2636573351392748, -0.27090919658720214, -0.2781393324675179, -0.28530726138410234, -0.29237512402159216, -0.2993081150444681 ], [ -0.32395469657676945, -0.31779326089995585, -0.3113169498936823, -0.30453789352314065, -0.29747537545134395, -0.2901567522616224, -0.2826181845582534, -0.2749050662256791, -0.26707203065103124, -0.25918241955478916, -0.2513071269566949, -0.24352278196867494, -0.23590931006764748, -0.22854700755752488, -0.22151336433398816, -0.21487995425515916, -0.20870975463461838, -0.2030552340073224, -0.19795745039069534, -0.1934462411950657, -0.18954139318464058, -0.1862545038185961, -0.18359113181678666, -0.18155281701112558, -0.1801386319438596, -0.1793460842699841, -0.17917137085520052, -0.17960913582119886, -0.18065196350360702, -0.18228983103414453, -0.18450967492947923, -0.187295132870839, -0.19062644551432384, -0.1944804648612546, -0.1988307146411965, -0.2036474697617474, -0.20889784918463272, -0.21454593769067132, -0.22055296200243935, -0.2268775461162087, -0.233476062639564, -0.2403030852045558, -0.24731193480089275, -0.2544553023206044, -0.26168592192768814, -0.26895726550385146, -0.27622422728195306, -0.2834437694328553, -0.2905755032008597, -0.29758218549295257 ], [ -0.325440445406427, -0.3194563667939556, -0.31316422213340855, -0.3065742360524444, -0.29970354295189994, -0.2925771804786781, -0.28522891387297133, -0.277701769611012, -0.2700481446255558, -0.26232936002795193, -0.2546145527495771, -0.2469788507662316, -0.2395008596515591, -0.23225959519832395, -0.22533111410354523, -0.21878519742906954, -0.21268249848203147, -0.2070725489847649, -0.2019929103378244, -0.19746957069843107, -0.19351846150557495, -0.190147756182099, -0.187360477312138, -0.18515691549041224, -0.18353645844273792, -0.18249861188376038, -0.1820432065693629, -0.18216996485669457, -0.18287769662017483, -0.18416339431734863, -0.18602142324586057, -0.18844290105378447, -0.19141527427726213, -0.19492205277477748, -0.1989426552571154, -0.20345233572726373, -0.2084221840217113, -0.21381921159365058, -0.2196065412750754, -0.22574371752618694, -0.23218714481636793, -0.2388906499655603, -0.24580615253308302, -0.25288441767594483, -0.260075859357662, -0.26733135868517754, -0.2746030622984983, -0.2818451286359507, -0.289014394878613, -0.2960709437081599 ], [ -0.3274652715780899, -0.3217222815339127, -0.31568292639432705, -0.3093553068856407, -0.30275404437850084, -0.2959013370424375, -0.2888278722170703, -0.2815734671655603, -0.2741872929353979, -0.26672753346206446, -0.2592603528272952, -0.25185809554962724, -0.24459673203360732, -0.237552680200664, -0.23079926970586562, -0.22440323889407443, -0.218421729312527, -0.21290023161152627, -0.20787181950572786, -0.20335779471206572, -0.1993695997702476, -0.19591160630873117, -0.19298422428235562, -0.19058674957019583, -0.18871947851050108, -0.1873848309884556, -0.18658747147212162, -0.1863336263851465, -0.18662991221317915, -0.18748199581870106, -0.1888933315776391, -0.19086410875184856, -0.19339044498053792, -0.196463804292762, -0.2000706015640905, -0.20419196501951764, -0.2088036464732701, -0.2138760831079778, -0.21937461967438443, -0.2252598964377608, -0.23148839901798834, -0.23801315492433983, -0.24478455085898942, -0.25175123654116605, -0.25886107576265305, -0.26606210381425277, -0.2733034520524913, -0.2805362046520288, -0.287714158806591, -0.29479446704056156 ], [ -0.33006764177217573, -0.3246356835633626, -0.3189247353570961, -0.31294058130970703, -0.30669497013582236, -0.30020671640090746, -0.29350269000389884, -0.28661856202620495, -0.2795991518543841, -0.27249821164478627, -0.26537749979409164, -0.2583050450948896, -0.2513525942493027, -0.24459236565693043, -0.23809338674069935, -0.23191783919311093, -0.22611793206892905, -0.22073382098127992, -0.21579296471784315, -0.21131106651135778, -0.20729443748671073, -0.20374332727637, -0.20065557673439982, -0.1980299154448244, -0.19586835730279017, -0.19417739518224453, -0.192967982087086, -0.1922545277219716, -0.1920532761101037, -0.1923804445945161, -0.19325042458211517, -0.19467422329094308, -0.1966582154716292, -0.19920320382995627, -0.202303759220821, -0.20594781240922377, -0.21011648066733746, -0.21478412216907072, -0.2199186137332203, -0.22548184300569973, -0.2314303972860643, -0.237716420972377, -0.24428860447424317, -0.25109326095289086, -0.2580754440821844, -0.2651800602607106, -0.27235293200692867, -0.2795417750466844, -0.2866970591292113, -0.29377273111167224 ], [ -0.3332848032208422, -0.32824010070074294, -0.32294030044414224, -0.317388715511868, -0.31159387823011686, -0.30557066199239746, -0.299341329881601, -0.2929363773015561, -0.2863950063630525, -0.2797650537525058, -0.2731022026945302, -0.26646835572890515, -0.25992913783446947, -0.2535506398106766, -0.24739568535077527, -0.2415200776594819, -0.2359694009873139, -0.23077696286490634, -0.22596332670313113, -0.22153760749047713, -0.21750034509062788, -0.2138474292632424, -0.2105743304983232, -0.2076798562426383, -0.20516880665599313, -0.20305319165658275, -0.2013519999400495, -0.2000897867788014, -0.19929450535217552, -0.19899502854313256, -0.1992187245065089, -0.19998931726850966, -0.20132513881560166, -0.20323779380749873, -0.20573121680757223, -0.20880109172995454, -0.21243460684403903, -0.21661052351641663, -0.22129953715038542, -0.22646490397252594, -0.2320632994404097, -0.2380458656492832, -0.24435939822976427, -0.25094761908007035, -0.2577524803716389, -0.26471544758092436, -0.2717787144531234, -0.2788863101913881, -0.28598506805966384, -0.29302543421704486 ], [ -0.33715220875277274, -0.3325772541821588, -0.32777850977012335, -0.32275671490995017, -0.31751687155659547, -0.3120693536936987, -0.3064309886020773, -0.3006259799254811, -0.2946865068212776, -0.2886528095427512, -0.2825725724612065, -0.2764994555597382, -0.2704907176134277, -0.26460402280117545, -0.2588937145395691, -0.25340703926963837, -0.24818094917913358, -0.24324013815926393, -0.23859682088555578, -0.23425245287282537, -0.2302011780295934, -0.22643439775247787, -0.22294560445366773, -0.21973458857629358, -0.21681031236904258, -0.21419207703855725, -0.21190898531404967, -0.20999801365288784, -0.2085011872335245, -0.20746237949785762, -0.20692416944530945, -0.20692504534061418, -0.20749710218309692, -0.2086642775217713, -0.21044111306804547, -0.21283200664975221, -0.21583091384366804, -0.21942145836751625, -0.22357740862719933, -0.22826347334166575, -0.23343636311280913, -0.23904605902988973, -0.2450372254203761, -0.2513507025788002, -0.2579250170437519, -0.2646978516449079, -0.27160742470987964, -0.27859373691117173, -0.2855996545367798, -0.2925718087293083 ], [ -0.34170290145358995, -0.3376863502870999, -0.33348567922971406, -0.32909901859349233, -0.32452757161939627, -0.3197766694383488, -0.3148568484587979, -0.30978482759924164, -0.3045842210633216, -0.2992857900380108, -0.29392702776640456, -0.2885509040780643, -0.2832036840760066, -0.27793188951215964, -0.27277868018689544, -0.26778015831404, -0.2629622737946544, -0.2583390511627941, -0.2539127073622165, -0.24967588057108658, -0.24561572190284453, -0.241719153843998, -0.23797831711603346, -0.23439519884933357, -0.23098465568788185, -0.2277754309156188, -0.2248091903723719, -0.22213795092559963, -0.2198204738049765, -0.21791822799651395, -0.21649143319188968, -0.215595532590088, -0.2152782857661415, -0.21557754930888873, -0.21651973783300726, -0.21811892085586226, -0.2203764962468464, -0.2232813755999148, -0.2268106137552861, -0.23093041137403358, -0.23559741612924778, -0.24076024574893062, -0.2463611557688703, -0.252337776969904, -0.2586248522288248, -0.2651559097458307, -0.27186481893762915, -0.2786871861499798, -0.2855615590769487, -0.29243042065463154 ], [ -0.346966866366498, -0.3436033273924699, -0.34010468477633493, -0.3364665078376843, -0.3326859961577988, -0.3287629274912911, -0.32470068319745904, -0.3205072414697403, -0.3161959815904605, -0.3117861017042156, -0.30730243300291105, -0.3027744541587887, -0.29823439153909326, -0.293714446101105, -0.2892434103133541, -0.28484318935437236, -0.2805259453543374, -0.27629264570779233, -0.2721336388411788, -0.2680314938371309, -0.26396581201842273, -0.25991921328030276, -0.2558833886326284, -0.2518640927364353, -0.24788421551867157, -0.24398451631817353, -0.24022208328921724, -0.23666696630942652, -0.23339764716130262, -0.23049604445167837, -0.22804264458122248, -0.22611217334565104, -0.2247700413930378, -0.22406965232622533, -0.22405056746583507, -0.2247374688981283, -0.22613983772015378, -0.22825225422014683, -0.23105522289093372, -0.23451642394348027, -0.23859229332945842, -0.24322983526803288, -0.24836857519572364, -0.25394256709035745, -0.259882377245932, -0.2661169766099556, -0.27257548539830956, -0.27918872638811454, -0.28589055645208283, -0.29261895886556055 ], [ -0.35297035858558545, -0.3503600686760848, -0.34767404683982805, -0.34490545013721086, -0.3420473522964904, -0.33909352073047794, -0.3360393289299932, -0.3328827135980936, -0.32962503470413007, -0.3262716479902672, -0.32283196856384144, -0.31931881235741466, -0.31574687338259455, -0.3121303469120127, -0.3084799401286107, -0.3047997846441566, -0.30108499817965284, -0.2973207250989811, -0.29348332273755706, -0.28954393517806154, -0.2854741068320874, -0.281252525992987, -0.2768716523777106, -0.2723429842421774, -0.2677000397249869, -0.2629986372124402, -0.2583145949530272, -0.25373939061664763, -0.2493745498434945, -0.24532556238052017, -0.2416960032638067, -0.2385823385944732, -0.23606969007242085, -0.23422866412813992, -0.23311323579988108, -0.23275960929749795, -0.23318594266330206, -0.23439280957320152, -0.23636426771278707, -0.23906940509452146, -0.24246424073540118, -0.24649386330193956, -0.251094700246965, -0.25619682040866265, -0.2617261848641286, -0.26760677385383613, -0.27376253156100505, -0.28011908505523375, -0.28660520827530633, -0.2931540159283177 ], [ -0.35973521899324945, -0.357983593073143, -0.3562269807860523, -0.3544563938301275, -0.3526607612291308, -0.350827459544218, -0.34894303680201566, -0.34699406552977363, -0.3449680067650087, -0.34285391152874434, -0.34064274406434936, -0.3383271047925005, -0.3359001877945038, -0.3333539511447783, -0.3306767123528669, -0.32785067019144876, -0.3248501116857103, -0.3216411642617343, -0.3181837854927214, -0.3144362200641806, -0.31036150471998813, -0.30593498667028163, -0.30115146756043765, -0.2960306164097415, -0.2906196780146779, -0.28499308584500604, -0.2792491814802416, -0.27350469487186757, -0.2678878750107325, -0.26253117941235593, -0.25756428885029936, -0.2531079902088025, -0.24926923793224876, -0.24613751063505296, -0.24378244214028366, -0.24225262228434907, -0.24157541913088054, -0.24175765670181737, -0.24278698015661426, -0.2446337466520987, -0.2472532909687417, -0.25058842827025263, -0.25457207094823286, -0.25912985182528314, -0.26418266179307004, -0.26964902612267894, -0.2754472600670117, -0.28149736072489073, -0.28772260805092076, -0.2940508628545746 ], [ -0.3672781906785769, -0.3664952393732597, -0.36579043020632707, -0.36515303198275983, -0.36456793488664685, -0.36401584537240983, -0.363473730698574, -0.36291548206575475, -0.36231271192800096, -0.3616355409292893, -0.3608531772844432, -0.3599340695105788, -0.35884545240625965, -0.35755223472521513, -0.35601540519971797, -0.35419043001954575, -0.3520263897729894, -0.34946671968127907, -0.34645224366255656, -0.34292669434501244, -0.3388442074780009, -0.3341776190513024, -0.3289260345568814, -0.32312021411519454, -0.31682477545822896, -0.3101368777084341, -0.3031816993860492, -0.296105502994755, -0.28906731293432464, -0.28223023324111685, -0.2757532615703844, -0.26978420131112024, -0.26445401111427236, -0.25987271022861846, -0.256126799090733, -0.25327805576630147, -0.25136351726552775, -0.25039643553483826, -0.25036799867237236, -0.25124961994348816, -0.25299561496858036, -0.2555461077195247, -0.25883002684896406, -0.2627680744875287, -0.26727556966064214, -0.27226508787290404, -0.2776488372109067, -0.2833407294378858, -0.2892581217306256, -0.29532322052376236 ], [ -0.37561025065547615, -0.3759098604171962, -0.3763841024959289, -0.377021057602293, -0.3778018293031482, -0.37870030220466067, -0.3796831997566543, -0.38071045220210653, -0.38173583514573495, -0.3827077772918208, -0.3835701747003628, -0.384263011277143, -0.3847226031661941, -0.38488139152831335, -0.38466742053739567, -0.38400392927520577, -0.38280976705768643, -0.3810014640115218, -0.378497606789574, -0.3752256383551864, -0.3711304511316864, -0.36618345165784594, -0.3603904273738505, -0.3537966798291805, -0.3464884340869092, -0.33859027856467394, -0.33025909552083577, -0.3216754406572897, -0.31303355374328645, -0.3045311524986287, -0.2963599550091218, -0.28869758426428005, -0.2817012121789888, -0.2755030515883905, -0.2702076247661793, -0.26589062485605375, -0.26259912913979666, -0.2603529041656918, -0.2591465482431019, -0.2589522360901517, -0.25972285635417336, -0.2613953608444237, -0.2638941720929795, -0.26713452210881905, -0.2710256195874787, -0.2754735655102145, -0.28038395824506757, -0.28566414906240833, -0.29122512729673966, -0.2969830309271053 ], [ -0.3847359727877524, -0.386235046095462, -0.3880195284870016, -0.39007703523838555, -0.39238530321891685, -0.3949113981700092, -0.3976112614545071, -0.4004296565981391, -0.403300533248633, -0.4061477664465505, -0.4088861624441851, -0.41142256997692006, -0.41365693037010254, -0.4154831779119348, -0.4167900864761547, -0.4174624299671321, -0.41738309450797084, -0.4164368959313687, -0.41451665981021457, -0.4115315617237929, -0.4074169434200585, -0.4021441189045558, -0.3957283712988511, -0.388233554478258, -0.37977235920001085, -0.3705021354578242, -0.36061692006040036, -0.3503368260991502, -0.339896150775731, -0.32953148637677443, -0.31947086489485166, -0.3099246308379948, -0.30107840336252556, -0.2930882114409832, -0.28607768630960306, -0.2801370724672081, -0.2753237579147749, -0.27166400833398385, -0.26915560230150937, -0.26777109287130973, -0.2674614561721087, -0.2681599244864621, -0.26978583646189214, -0.2722483692603408, -0.2754500463215408, -0.27928994033256016, -0.28366651444739754, -0.2884800661359479, -0.2936347573448672, -0.2990402317612413 ], [ -0.39465293873878915, -0.397470395155638, -0.40069916970031105, -0.4043273164423469, -0.4083298136028424, -0.41266709337690877, -0.417283936120588, -0.42210884724733044, -0.42705400469088484, -0.43201581243254594, -0.43687602803001346, -0.4415033675456521, -0.445755460911073, -0.4494810730611978, -0.45252264933081277, -0.45471947545387525, -0.4559119802414111, -0.45594779891914894, -0.4546899947769514, -0.4520272530410854, -0.4478850650158279, -0.4422362365673993, -0.43510880626237514, -0.4265897757627286, -0.4168238154235777, -0.40600703069344624, -0.3943766768921735, -0.382198214025266, -0.36975125369773987, -0.3573158212060148, -0.3451600419226537, -0.3335299727750929, -0.32264192538304504, -0.31267732145148774, -0.3037799044099643, -0.2960550010046157, -0.28957046649663765, -0.284358937266171, -0.2804210365081139, -0.2777292177872468, -0.2762319772050992, -0.2758582112513446, -0.2765215404382899, -0.27812445705414235, -0.280562188711303, -0.28372619842011093, -0.28750726747544153, -0.291798130120392, -0.29649564904037473, -0.30150253822788553 ], [ -0.4053512142242741, -0.4096068565981601, -0.41441559794958693, -0.41976702820919964, -0.42563418201919356, -0.4319712530943085, -0.438711677439225, -0.44576676969285356, -0.4530250843090198, -0.46035263476609245, -0.467594041735659, -0.47457460866103807, -0.4811032680737637, -0.4869763419478015, -0.49198214611380586, -0.49590663748278585, -0.4985404796854449, -0.4996879409204693, -0.4991777789149514, -0.496875663959796, -0.4926969047143266, -0.48661761143246385, -0.47868228518996414, -0.4690062733801763, -0.4577724234883964, -0.44522228296041155, -0.43164303053851416, -0.4173518083004486, -0.40267922501083664, -0.3879535965233496, -0.3734871007449343, -0.3595645748976024, -0.34643526413565295, -0.33430749682520333, -0.32334603154252495, -0.31367168788647715, -0.3053628182833994, -0.29845817815994624, -0.29296078622120136, -0.2888424185764311, -0.28604843842725347, -0.2845027195954932, -0.2841124733671683, -0.28477283250978647, -0.28637108402852673, -0.28879047422310244, -0.2919135370307353, -0.29562492040956667, -0.2998137061512125, -0.30437523615706263 ], [ -0.41681290780252445, -0.42262616161080646, -0.4291507724807786, -0.43637916431843227, -0.4442834669518463, -0.4528122669942489, -0.46188770563127046, -0.47140318072067244, -0.48122192254232465, -0.49117669570556477, -0.5010708308162182, -0.510680715463079, -0.5197597961433718, -0.5280440946633205, -0.5352592566637928, -0.541129228305014, -0.5453867383490827, -0.5477857156439254, -0.5481154538840767, -0.5462157137960146, -0.5419912037780048, -0.5354233485035389, -0.5265772591489604, -0.5156024425792638, -0.5027268305754795, -0.48824482190519425, -0.4725008913387396, -0.4558707622269693, -0.4387421570568697, -0.4214968369240857, -0.4044951611286667, -0.3880638767113058, -0.37248738125865777, -0.3580023425701482, -0.3447953197236522, -0.3330029003753008, -0.32271382500263224, -0.3139725836896403, -0.3067840212889281, -0.30111855397488885, -0.29691767148657555, -0.2940994668180814, -0.2925639946955736, -0.29219831063776214, -0.2928810842543119, -0.2944867150829036, -0.2968889082418926, -0.29996369172875936, -0.3035918780903333, -0.30766099074481756 ], [ -0.42901182885469114, -0.43650036651847124, -0.44487543950779296, -0.4541338093544547, -0.464247977261814, -0.4751618154137487, -0.48678649032941124, -0.4989970147874174, -0.5116298087036637, -0.5244816634827065, -0.5373104789354399, -0.5498380751064786, -0.5617552849138618, -0.5727294330257564, -0.5824142310674145, -0.5904620764271293, -0.5965386859819644, -0.6003398211989126, -0.6016094555269336, -0.6001580946184226, -0.5958792783042348, -0.5887619129735209, -0.5788962955246597, -0.5664725329304483, -0.5517712838885453, -0.5351479607793335, -0.5170124004010348, -0.49780638629033014, -0.4779813087722584, -0.4579778188684529, -0.43820874058445103, -0.41904590193560765, -0.40081102797618984, -0.38377045659922593, -0.36813319651525456, -0.3540517278062527, -0.3416249189090339, -0.3309024688448352, -0.32189035341915995, -0.31455683885268226, -0.3088387121971927, -0.3046474567842743, -0.30187516897834055, -0.30040006882779324, -0.3000915028695341, -0.3008143742436995, -0.30243296541065323, -0.3048141437325975, -0.30782996101258964, -0.3113596752652126 ], [ -0.44191326027500044, -0.4511915260964965, -0.46154867790924947, -0.47298752413361367, -0.4854824609189612, -0.49897382249538724, -0.513362428842103, -0.5285047506201321, -0.5442091952011607, -0.5602340734505258, -0.5762878173423283, -0.592031970778848, -0.6070873683574787, -0.6210437617522653, -0.6334729717761851, -0.6439454460492704, -0.6520498607357257, -0.6574150507171004, -0.65973302220301, -0.6587811363344942, -0.6544409694604472, -0.6467111872470881, -0.6357122611432542, -0.6216819777826266, -0.6049621286779259, -0.5859780862047821, -0.5652138328175906, -0.5431852823769965, -0.5204144822137902, -0.4974066935499537, -0.47463162042998075, -0.45250935839414796, -0.43140106469684136, -0.41160395179201203, -0.39334997069594113, -0.37680745165829377, -0.3620849686199006, -0.34923675508300467, -0.3382690927365435, -0.3291471989361401, -0.32180224085498943, -0.31613819483222905, -0.3120383457960767, -0.30937128345131026, -0.30799630090220886, -0.30776814003777964, -0.30854105882503524, -0.3101722206178621, -0.31252442598557617, -0.31546822406584196 ], [ -0.45547385971936616, -0.4666515148296748, -0.4791176130120951, -0.49288291935591433, -0.5079255011312744, -0.5241836338268595, -0.5415487628138387, -0.5598590259180807, -0.578893974735122, -0.5983712421337954, -0.6179459644303755, -0.6372137531489885, -0.6557179035594314, -0.6729613184607179, -0.6884233220194633, -0.7015811483356735, -0.7119354071296586, -0.7190382334379506, -0.7225221239874162, -0.7221267573726664, -0.717720640711424, -0.7093145366662961, -0.6970644801996926, -0.6812636725196226, -0.6623242391103956, -0.6407512753750009, -0.6171124324225792, -0.5920064210841853, -0.5660333586269553, -0.5397690881593484, -0.5137447093912848, -0.48843175330243804, -0.4642328115698122, -0.4414770217448485, -0.4204195913673905, -0.4012444759326588, -0.3840693595300744, -0.3689521810951053, -0.3558985711388176, -0.34486969105227994, -0.33579008568798363, -0.32855526262653467, -0.3230387958930485, -0.31909881863506784, -0.31658382094785886, -0.31533770883079404, -0.3152041112064752, -0.3160299464058205, -0.3176682790787313, -0.3199805139771652 ], [ -0.46964170107631875, -0.4828220113350181, -0.4975173178707102, -0.5137484416446787, -0.5314991491788512, -0.550707453124079, -0.5712567727295044, -0.592967543635391, -0.6155900565160348, -0.6387994807821693, -0.6621941584358495, -0.6852982926604947, -0.7075700637483344, -0.7284159480951706, -0.7472115770339822, -0.7633288519715689, -0.7761682469275015, -0.7851943182283667, -0.7899714990772484, -0.7901964833923465, -0.7857232024698595, -0.7765768644617441, -0.762954849781883, -0.7452141887216428, -0.7238473750336487, -0.6994498406557932, -0.6726831851723805, -0.6442381757941171, -0.6148008132549501, -0.5850237088983528, -0.5555039308087322, -0.5267675513922145, -0.4992604576809967, -0.4733445772576017, -0.44929848628247204, -0.4273213419552473, -0.4075391610211341, -0.39001260039892327, -0.37474555066465753, -0.36169400516666017, -0.35077480387330806, -0.3418739656763534, -0.334854414676919, -0.32956297691267444, -0.3258365775743759, -0.32350760897882, -0.322408470012038, -0.32237530120521174, -0.3232509578840441, -0.3248872779539862 ], [ -0.4843564651675518, -0.49963465825693953, -0.5166709183325269, -0.5354983928599311, -0.5561088198544919, -0.5784420689404115, -0.6023752858482434, -0.6277123088296601, -0.6541742818373233, -0.6813926472053948, -0.7089059169273964, -0.7361617373475184, -0.7625257075793126, -0.7872981188268442, -0.8097391989870861, -0.8291025584352887, -0.8446753753157643, -0.8558225425178854, -0.8620307351912979, -0.8629474708313387, -0.8584101038625138, -0.8484606018393139, -0.8333438678438954, -0.8134898900329419, -0.789482442522702, -0.7620187917191896, -0.7318655327316825, -0.6998153249752943, -0.6666482281740818, -0.633099970626513, -0.5998381618024358, -0.5674464058539566, -0.5364155590235447, -0.5071409827569675, -0.4799245069255307, -0.4549798530215676, -0.4324404035556151, -0.412368386470249, -0.3947647352592638, -0.37957906440276856, -0.3667193542750493, -0.356061065819945, -0.34745550371479617, -0.34073732090195374, -0.33573111194384575, -0.33225708247321717, -0.3301358112570112, -0.3291921432431182, -0.3292582684967569, -0.33017605432524033 ], [ -0.4995497856048676, -0.5170114065442399, -0.536489914535599, -0.5580331997842798, -0.5816434716026282, -0.607264898653874, -0.6347705295257169, -0.6639492314094468, -0.6944937152785124, -0.7259910695008385, -0.7579175494022747, -0.7896395900109687, -0.8204230210809078, -0.8494521546733256, -0.8758596880655234, -0.8987671727881286, -0.9173341952909368, -0.9308125874473265, -0.9386002913984797, -0.9402884320241056, -0.9356951954843822, -0.9248815488840498, -0.908146504509604, -0.8860028978750749, -0.8591376242863027, -0.828362198556416, -0.7945600250360669, -0.7586360342308323, -0.721472824342239, -0.6838956809098793, -0.6466472559691558, -0.6103714951758537, -0.5756056580753361, -0.5427789240137537, -0.5122160094482984, -0.4841443353130641, -0.4587034892552484, -0.43595596620866806, -0.415898404076146, -0.3984727387322431, -0.38357687538270424, -0.3710746101919653, -0.36080464001675683, -0.35258857429607615, -0.3462379176383914, -0.3415600301408719, -0.3383630997669864, -0.336460180755646, -0.33567236635452, -0.3358311744645035 ], [ -0.5151457522758116, -0.5348650491792208, -0.556874727364373, -0.5812399470498575, -0.6079760893434758, -0.6370343732836607, -0.6682863588637464, -0.7015081279611586, -0.7363653465211446, -0.7724008745227713, -0.809027048349819, -0.8455251163246518, -0.8810544237180344, -0.9146736510844566, -0.9453755482180988, -0.972135081585844, -0.9939687794064636, -1.0100005931685418, -1.0195273277988557, -1.0220753315249376, -1.0174403426609866, -1.0057044617424598, -0.9872278323182979, -0.962616845054302, -0.9326743407768672, -0.8983394375772811, -0.8606249125372145, -0.8205588335356322, -0.7791350389671039, -0.7372748113698737, -0.6958001859628495, -0.6554180030493, -0.6167130610571505, -0.5801484408686592, -0.5460711020900351, -0.514721062308938, -0.4862427597516965, -0.46069750224683204, -0.4380761838094167, -0.41831168713314515, -0.40129058088084046, -0.38686386705772025, -0.3748566417406427, -0.3650766093176234, -0.3573214435879839, -0.35138502524864146, -0.3470626098322509, -0.34415499698278396, -0.34247178357560326, -0.34183379102323186 ], [ -0.5310615711539064, -0.5530999451899876, -0.5777154738176511, -0.6049931815056537, -0.6349644835616985, -0.6675906830268827, -0.7027448852935232, -0.7401931554340373, -0.779576239783103, -0.8203937586179522, -0.8619933912620681, -0.9035681042613497, -0.9441647393010648, -0.9827070479317555, -1.0180352916465296, -1.0489626514803025, -1.074345946022399, -1.0931649027276276, -1.1046012026212764, -1.1081067145855972, -1.1034506608290133, -1.0907382757991404, -1.0703983284119478, -1.043142356236941, -1.0099030071211808, -0.9717613099431308, -0.9298726874714374, -0.8853996144072815, -0.8394559833797912, -0.7930653974293922, -0.7471333492359571, -0.702431783994014, -0.6595938129905279, -0.619116161407163, -0.581367091297798, -0.5465978705703094, -0.5149562450205456, -0.4865007439911315, -0.46121497654872035, -0.4390213417643669, -0.41979378389308786, -0.4033693774564364, -0.38955863751775066, -0.37815452640298974, -0.36894017869885176, -0.36169539916255555, -0.3562020091498468, -0.35224813053789683, -0.34963150457450887, -0.348161948112494 ], [ -0.5472083750862913, -0.5716129301681254, -0.5988929702080521, -0.6291559910459681, -0.6624524143852344, -0.6987568995646309, -0.7379475307726087, -0.7797837105164169, -0.8238841730098978, -0.8697072482763453, -0.9165363016540409, -0.9634740160464228, -1.0094496574824914, -1.0532433617813215, -1.0935304538509212, -1.128946587998489, -1.1581710598425055, -1.1800214217292406, -1.193548511501572, -1.1981185413837263, -1.1934692561180844, -1.1797308662400618, -1.157408774589746, -1.1273322089248887, -1.0905785672201982, -1.048386038398515, -1.002066600532792, -0.9529286877567065, -0.902215030803118, -0.8510576194999713, -0.8004490897394811, -0.7512282645174202, -0.7040769157005902, -0.6595247772233015, -0.6179601604738794, -0.5796439953261576, -0.5447256165990277, -0.5132590663607612, -0.4852190583244631, -0.46051604613940467, -0.4390100592623243, -0.42052312988990326, -0.40485024493436605, -0.3917688303053344, -0.381046821315429, -0.3724494013754456, -0.36574450773660994, -0.3607072123543389, -0.35712309079399573, -0.3547906940006702 ], [ -0.5634921759632021, -0.5902944045653225, -0.6202799565840871, -0.653581355104619, -0.6902710438105082, -0.7303404867076719, -0.7736765300863189, -0.820035830166506, -0.8690188161494394, -0.9200455127895684, -0.9723365401374984, -1.0249036058078784, -1.07655455180247, -1.1259181258447504, -1.1714926409524844, -1.2117201441130043, -1.24508351413718, -1.270218524403958, -1.2860275825159095, -1.2917784354304156, -1.2871713863215004, -1.2723632781367462, -1.2479447115570599, -1.2148761590041415, -1.1743958165209403, -1.1279151778816727, -1.076917206160562, -1.0228679668865654, -0.967147603431989, -0.9110021347808881, -0.8555145007342873, -0.80159163856795, -0.7499638399397974, -0.7011928030706049, -0.6556853170871657, -0.6137101547209662, -0.5754163680367219, -0.5408517139806859, -0.509980361887933, -0.4826993574362999, -0.4588535512965477, -0.4382488633712871, -0.42066386185867355, -0.40585970507680025, -0.3935885350631272, -0.38360043478410444, -0.3756490722190413, -0.36949615928523594, -0.36491485440899285, -0.36169223604181644 ], [ -0.5798149443011098, -0.609029585798204, -0.6417425297143029, -0.6781137574083929, -0.7182407125874148, -0.7621352051989219, -0.8096969002858942, -0.860684129527785, -0.914683505199535, -0.9710808075116495, -1.0290368244781798, -1.0874731166897358, -1.1450737733643994, -1.2003096496440766, -1.2514907015881607, -1.29684924134056, -1.3346519236629468, -1.3633315040255178, -1.3816224024970785, -1.3886793115597387, -1.384158010684018, -1.3682434090477535, -1.3416204530482991, -1.3053954628361626, -1.2609845706620484, -1.2099895174818283, -1.1540790272935975, -1.0948883722148528, -1.0339432544412857, -0.9726087492535038, -0.912060588995987, -0.8532744266222112, -0.7970283896636416, -0.7439146681396895, -0.6943566456462591, -0.6486289117854154, -0.6068782445694632, -0.5691442670484483, -0.5353789553464747, -0.5054645209725555, -0.47922943226135106, -0.45646250205550376, -0.4369250723253648, -0.42036138856480365, -0.40650729096252114, -0.3950973656149144, -0.38587070459506534, -0.3785754232843419, -0.37297207986009884, -0.36883613668974413 ], [ -0.596075797880999, -0.6276999047295935, -0.6631417654053298, -0.7025910440442791, -0.7461730301956921, -0.7939234097339474, -0.8457588903413886, -0.9014443115045119, -0.9605576736821742, -1.0224556416152504, -1.0862435065776443, -1.1507552164456214, -1.2145506014748122, -1.2759377880238683, -1.3330282045570008, -1.383828660718211, -1.4263691520800839, -1.4588566565203198, -1.479836035317165, -1.488332428486626, -1.483948772227471, -1.4668991994702056, -1.4379727354543075, -1.3984371949079715, -1.3499047999249805, -1.2941851079750395, -1.2331474795534203, -1.1686075950251653, -1.1022441728025802, -1.035545543822262, -0.96978189815215, -0.9059974794795935, -0.845016983716474, -0.7874611900428723, -0.733767905444497, -0.6842153429464153, -0.638945942695605, -0.5979893431546939, -0.5612837260118473, -0.5286951225011838, -0.5000345145550846, -0.4750727224415885, -0.4535531666221204, -0.43520264517750595, -0.4197402940222148, -0.40688490590694837, -0.3963607832569125, -0.3879022939609198, -0.3812572910952703, -0.3761895486124649 ], [ -0.6121722768210436, -0.6461845215509836, -0.6843355039232686, -0.7268465013846315, -0.7738732565377668, -0.8254787258234837, -0.8816009143641408, -0.9420162755207846, -1.0063000027180995, -1.0737857742668797, -1.1435291595432693, -1.214280875108063, -1.2844780988778546, -1.3522634965540277, -1.4155415079308296, -1.4720785760812718, -1.5196474160176523, -1.556205201931307, -1.5800837030945458, -1.590160015336188, -1.5859745561000342, -1.5677714827891323, -1.5364541715394147, -1.49346854831863, -1.4406419306946119, -1.3800096210526145, -1.313656255592838, -1.2435884065578442, -1.1716442764281716, -1.0994385959834325, -1.0283367077233765, -0.9594505198297405, -0.8936494270103403, -0.831580485702516, -0.7736935125773003, -0.7202680408639777, -0.671440098347434, -0.6272275468531003, -0.5875532761474727, -0.5522659213196206, -0.521158016964139, -0.4939816517896958, -0.47046177309678106, -0.4503073337779948, -0.43322049084621406, -0.4189040650018545, -0.4070674627991062, -0.39743125121176925, -0.38973056146461516, -0.3837174861262149 ], [ -0.6280016785201625, -0.6643619306748763, -0.7051802650443197, -0.7507111190436808, -0.8011429423604197, -0.8565690805435466, -0.9169529571783417, -0.9820878394308266, -1.0515523417336996, -1.1246641433135023, -1.200436243567167, -1.2775424255554102, -1.3543011829662952, -1.4286895422117163, -1.4983988223370102, -1.5609418370861543, -1.6138138517938418, -1.6546973928624067, -1.6816858413247644, -1.6934877557041088, -1.6895698964017583, -1.670206770940173, -1.636426796360957, -1.5898714174821107, -1.532602616485593, -1.4668993339329537, -1.3950754423557385, -1.3193377549620897, -1.2416891006823418, -1.163872467258309, -1.0873479430671598, -1.0132933255089578, -0.9426202485530537, -0.8759993748426884, -0.8138899448517658, -0.7565704771192987, -0.704168579391169, -0.6566886755668564, -0.6140370341155608, -0.5760438641785879, -0.5424824826511387, -0.5130856939419055, -0.48755959704243135, -0.46559506568265463, -0.446877153163856, -0.4310926650912683, -0.4179361279397107, -0.40711436361536224, -0.3983498623492665, -0.3913831294371686 ], [ -0.6434624225196928, -0.682111619248984, -0.7255332521117428, -0.7740159931392929, -0.8277827822203401, -0.8869600444360106, -0.951540420962828, -1.021339066606801, -1.0959444310509092, -1.1746658161249794, -1.2564820185842298, -1.3399980695413283, -1.4234202769747282, -1.5045628270479483, -1.5809007958861376, -1.6496825635457717, -1.7081071032515305, -1.7535573382539527, -1.7838616165357049, -1.7975375848790391, -1.7939656697277724, -1.7734504112760245, -1.7371561445052146, -1.6869377015132874, -1.6251114039056482, -1.554217136125426, -1.476810725819493, -1.3953069538073664, -1.311876732102451, -1.2283916542934072, -1.1464049474761109, -1.067157666096036, -0.9916006858602107, -0.9204253305340857, -0.8540976050532547, -0.792892746240039, -0.736928093908366, -0.6861931862703214, -0.6405765806060422, -0.5998892765733721, -0.5638848435562318, -0.5322764761763206, -0.5047512598347046, -0.48098194589051313, -0.4606365306293563, -0.44338591455909016, -0.4289098957802744, -0.4169017273480524, -0.40707144583035304, -0.3991481575302749 ], [ -0.6584554127678262, -0.6993157397011398, -0.7452543979069108, -0.7965948152885356, -0.8535956196484913, -0.9164184223423053, -0.9850883562506307, -1.059447159154896, -1.1390994229698506, -1.2233540188017389, -1.3111648476012638, -1.401078088389814, -1.4911969354032488, -1.5791788574188739, -1.6622832727055425, -1.737486782834239, -1.801675692992062, -1.851909292607031, -1.8857236210965467, -1.9014214776360863, -1.898282727204062, -1.8766407529957305, -1.8378064864752026, -1.7838659362640061, -1.717408863983163, -1.6412520722696309, -1.5582041264175381, -1.4708933280852459, -1.381660077092523, -1.2925032241118672, -1.205066277853318, -1.1206501065133008, -1.0402413924475578, -0.9645490258919482, -0.8940431717017232, -0.8289937061537698, -0.7695061197525033, -0.7155539220886493, -0.6670071850620753, -0.6236572241385003, -0.585237622669466, -0.5514419080585906, -0.5219382293024413, -0.49638138886914596, -0.47442256476247713, -0.4557170316461372, -0.4399301596363656, -0.42674193956581363, -0.4158502560313482, -0.4069731049893974 ], [ -0.6728853633192833, -0.7158607537421091, -0.7642083997689308, -0.8182863838142806, -0.8783895301054847, -0.9447160099735898, -1.0173259908660068, -1.0960918385366705, -1.18064014865086, -1.2702872443510245, -1.3639719805297874, -1.4601929783224699, -1.5569618313508569, -1.6517889362773672, -1.7417229871596016, -1.8234660199953918, -1.8935791741703218, -1.9487764326841677, -1.986274747440723, -2.004137190922309, -2.0015273926744235, -1.9788052195877588, -1.9374380860813714, -1.8797600662077867, -1.8086519260426006, -1.7272210625963103, -1.638536798151213, -1.5454437404395596, -1.45045078605658, -1.3556808660002415, -1.2628636853297877, -1.1733557844066071, -1.088175935044919, -1.0080475151338926, -0.9334424560185894, -0.864623520869475, -0.8016831529270374, -0.7445780913465261, -0.693159542019284, -0.647199032515716, -0.6064102621549126, -0.5704673404900418, -0.5390198301205793, -0.511704998487551, -0.488157654525619, -0.4680179098713819, -0.45093716679992335, -0.43658259949767064, -0.42464036320684584, -0.41481773758058016 ], [ -0.6866620534308447, -0.7316390039380807, -0.7822666879180715, -0.8389370666242868, -0.9019808948247623, -0.9716334124700368, -1.0479914386715663, -1.1309610888299129, -1.220196015492777, -1.3150273617657835, -1.4143888193429428, -1.5167436444368314, -1.62002543260509, -1.721610648368633, -1.8183470280537901, -1.9066649172411003, -1.9827933175611427, -2.04308346921803, -2.084408606301405, -2.10456729598692, -2.1025901112418124, -2.0788595116632465, -2.0350076288161096, -1.9736314068307732, -1.8979173365446262, -1.8112735731304772, -1.7170345055058749, -1.6182604614419556, -1.5176251657066433, -1.4173705865841517, -1.3193074265599336, -1.224843248679219, -1.1350251276279972, -1.0505880694175127, -0.9720037685744145, -0.8995265986003329, -0.8332352622069716, -0.7730694835968974, -0.7188616908320498, -0.67036394923614, -0.6272705615950105, -0.5892368103110832, -0.5558943208459537, -0.5268635000322117, -0.5017634627709668, -0.4802198156794193, -0.4618706218539328, -0.4463708299265492, -0.4333954142079619, -0.4226414410839181 ], [ -0.699701479529889, -0.7465501697094443, -0.7993092700414959, -0.8584031412768314, -0.9241973694698988, -0.9969638036430768, -1.0768364397495653, -1.1637570896407556, -1.2574103480237309, -1.357148548958682, -1.4619095401305757, -1.570133646087351, -1.6796915593912265, -1.7878421183323805, -1.8912469048063487, -1.9860740802744847, -2.0682208438251166, -2.133664811445122, -2.1789152974729697, -2.2014833051935914, -2.2002489896987325, -2.1756115788991424, -2.1293733222168036, -2.0644051232698537, -1.9842093599070965, -1.8925001264418073, -1.7928764477612311, -1.6886098572809265, -1.582532393368664, -1.4769982416259355, -1.373893014256019, -1.2746704110699727, -1.1804022183587657, -1.0918326622098427, -1.009431778573614, -0.9334449025324274, -0.8639369251377946, -0.8008308978396279, -0.7439410952535144, -0.6930009259265946, -0.6476862067420317, -0.6076343529511139, -0.5724600221077081, -0.5417677106969132, -0.5151617516613001, -0.49225410795893687, -0.47267030655850184, -0.4560538112932817, -0.4420690926320381, -0.43040361762191326 ], [ -0.7119268747450789, -0.760502567693607, -0.8152263974568921, -0.8765529379255255, -0.9448806475053539, -1.020516492955726, -1.1036309592614602, -1.1942021213924034, -1.2919479121260893, -1.3962467609395182, -1.5060487911313443, -1.6197832872327782, -1.7352737934258857, -1.8496803152050691, -1.9594979185865924, -2.0606493621684403, -2.148709408201741, -2.219280380280457, -2.2684948529707523, -2.293557274121846, -2.2931805415524336, -2.2677725120060734, -2.219306584785094, -2.150932849955484, -2.0664730191152922, -1.9699456216187998, -1.8652081019189717, -1.7557343232148348, -1.6445052806818872, -1.5339790277128382, -1.4261094510575534, -1.322391608266115, -1.22391890191203, -1.1314430651217067, -1.0454318230832884, -0.9661215922814503, -0.8935641063819086, -0.8276667477559403, -0.7682268517734794, -0.7149604936769829, -0.6675263652262631, -0.625545362804131, -0.5886164784705563, -0.5563295335362244, -0.5282752341930004, -0.5040529684062725, -0.4832767068714623, -0.46557932035422245, -0.45061558176335414, -0.438064083602155 ], [ -0.7232695715572044, -0.7734142619068312, -0.829920003902032, -0.893268715913901, -0.963888920857829, -1.042120164427782, -1.1281674585253545, -1.2220441928700536, -1.3235022984254545, -1.431949333989046, -1.5463540119565247, -1.6651450967297499, -1.7861143890563294, -1.906343321297889, -2.0221842199634277, -2.129338606019531, -2.223078577298006, -2.2986414568532347, -2.351781183854059, -2.3793838999504455, -2.379980611967318, -2.353977095687658, -2.3035126895509066, -2.2320133530474937, -2.1436142851554894, -2.042628414496172, -1.9331586587055507, -1.8188677606838564, -1.7028737017016093, -1.5877289398425203, -1.4754488951458224, -1.3675656977369164, -1.2651920737969056, -1.169086473993394, -1.0797145936100072, -0.9973049325387773, -0.9218975239636831, -0.8533857978050612, -0.7915519878420885, -0.7360966989325104, -0.6866633218497562, -0.6428579783681314, -0.6042656346877251, -0.5704629586649366, -0.5410284281603333, -0.5155501312080384, -0.49363163736544147, -0.4748962651559132, -0.4589900233319606, -0.44558346336843346 ], [ -0.7336696894468526, -0.7852139568806635, -0.8433048771649132, -0.9084482150467965, -0.9810989507647638, -1.061625659727724, -1.150264653141, -1.2470621272534226, -1.3518027985879404, -1.46392423567581, -1.5824177522437266, -1.7057199705265786, -1.8316049368783296, -1.9570959630116094, -2.0784293531185107, -2.1911163442201995, -2.290157222321256, -2.3704489562422015, -2.427379689509152, -2.4575166894373313, -2.459199082739016, -2.432817309622935, -2.3806630845977583, -2.3064232611978666, -2.2145285452318966, -2.1095659012246952, -1.9958633679714033, -1.8772546448331968, -1.7569805859780219, -1.637678031853226, -1.5214175792768074, -1.409765018413625, -1.3038511776795936, -1.2044415387886684, -1.1120010950568122, -1.0267523828254683, -0.948726033256009, -0.8778039731406411, -0.813755803596002, -0.7562690621308163, -0.7049741226093467, -0.6594644668629759, -0.619313005547141, -0.5840850545339829, -0.5533484983321979, -0.5266816002093557, -0.5036788531676688, -0.48395520806397374, -0.4671489651593639, -0.4529235727340264 ], [ -0.7430766367983166, -0.795841656480964, -0.85530953589342, -0.9220058376136706, -0.9964076796404908, -1.0789081975947896, -1.1697705920168984, -1.2690698546915908, -1.3766204004072713, -1.4918884208862684, -1.6138892412059287, -1.7410729945046466, -1.8712075939782378, -2.0012775387808843, -2.1274312055096307, -2.2450259494162443, -2.3488318198344516, -2.4334458650151687, -2.493921427926696, -2.5265218372972087, -2.529392165533114, -2.5028922022562434, -2.449442034009302, -2.37295956720477, -2.278138191546202, -2.169806812416082, -2.052490619217194, -1.9301723295095954, -1.8062000756066205, -1.683285100079758, -1.5635476540338882, -1.448584944021409, -1.3395459265496203, -1.2372046233539051, -1.1420277399481513, -1.0542347605132167, -0.973850043829062, -0.9007471763686736, -0.8346862040367165, -0.7753445168774231, -0.7223421937043215, -0.6752625812066251, -0.6336688173987908, -0.5971169314841389, -0.5651660723084844, -0.5373863416417779, -0.5133646395896794, -0.4927088687042924, -0.4750507909225836, -0.4600477867515922 ], [ -0.7514494242320979, -0.805249081725341, -0.8658767980813007, -0.933873435960979, -1.0097333391307044, -1.0938689524653658, -1.1865649279990063, -1.2879196995467055, -1.3977725624275905, -1.5156147647674647, -1.6404844095135176, -1.7708477934956663, -1.9044753061369224, -2.0383296625215914, -2.1684991418687325, -2.290227159899675, -2.398104292356418, -2.4864837236554145, -2.5501351633844935, -2.5850522205913595, -2.5891950525493295, -2.5628765037233427, -2.508609035015497, -2.430494340032329, -2.3334389778480187, -2.2224694210773235, -2.1022728163890854, -1.9769556911273984, -1.8499570746231928, -1.724053165888911, -1.601409466806961, -1.483653653681304, -1.3719541116611833, -1.2670960775419982, -1.169551412330395, -1.0795403505908454, -0.9970848720255956, -0.9220540361594138, -0.8542019634303588, -0.7931992841656414, -0.7386588997652825, -0.6901568610610358, -0.6472490988471575, -0.6094846595450147, -0.5764160155257463, -0.5476069406324457, -0.5226383698442103, -0.501112598944762, -0.48265612555154336, -0.46692138635231184 ], [ -0.7587567943459839, -0.8133998516930623, -0.8749640426385119, -0.944000701027039, -1.021016037898944, -1.1064359537903965, -1.2005603022358782, -1.303504516350642, -1.415126507532628, -1.534937124751202, -1.6619936207683015, -1.7947782216181556, -1.9310692184926217, -2.067821636068016, -2.201089889242279, -2.326044864960313, -2.43715508809217, -2.5285994077279095, -2.5949347042433906, -2.631940089440784, -2.637414049082289, -2.611606871170781, -2.5570752655968136, -2.478039357911369, -2.379552677557264, -2.2667833679898144, -2.144539112013109, -2.017022583733888, -1.8877470317584966, -1.7595448971050491, -1.6346236448338083, -1.514641656924999, -1.4007891592568842, -1.2938662706512791, -1.1943543147339244, -1.10247882244639, -1.018263923858791, -0.9415785076194956, -0.8721748606328186, -0.8097206344052887, -0.75382500465801, -0.7040598493270664, -0.6599766981088466, -0.621120122674689, -0.5870381512306921, -0.5572902101253905, -0.5314530216764002, -0.5091248224706106, -0.4899282101776641, -0.47351187885919654 ], [ -0.7649771798932481, -0.8202694415855998, -0.8825431796399243, -0.9523551675619373, -1.030217841845057, -1.1165643093511881, -1.2117028240037233, -1.3157586121167104, -1.4286008887763844, -1.5497532306040003, -1.6782865401820413, -1.812696364355231, -1.9507715135889465, -2.089470495349806, -2.2248378236912916, -2.352013008547046, -2.4654035977209774, -2.5590930948273183, -2.6275121297665467, -2.6662994925530756, -2.673129795690037, -2.6481778038211305, -2.5939866477209734, -2.5148141668134265, -2.4157807576803396, -2.302131066271842, -2.1787470497748522, -2.0498980055669467, -1.9191544808879997, -1.7893969335836253, -1.662872253639631, -1.5412705558621589, -1.425807064249834, -1.3173011175531275, -1.2162484016010557, -1.1228848083857867, -1.037241599907478, -0.9591922429811612, -0.8884916236371894, -0.8248084901764874, -0.7677519986880399, -0.7168931961123357, -0.6717822052583584, -0.6319617923781868, -0.5969779119661043, -0.5663877415331755, -0.5397656443724992, -0.5167074320850389, -0.4968332410714811, -0.4797892878412522 ], [ -0.7700985081326746, -0.8258449402338839, -0.8886003568744645, -0.9589218694922299, -1.0373223858342389, -1.1242357953443172, -1.2199716869001538, -1.3246574811880674, -1.4381658118344705, -1.5600252913294184, -1.689313831857638, -1.8245361621548697, -1.9634922904024752, -2.1031531493321713, -2.2395751720852246, -2.3679063554627655, -2.482555107430792, -2.577592833653324, -2.6474192580075027, -2.6876192924117226, -2.6957927113445095, -2.6720301448144297, -2.6187993034209205, -2.5403066379993584, -2.441651210805113, -2.3280832819624755, -2.204509488294067, -2.0752345599506987, -1.943868721800997, -1.813332022760533, -1.6859082799514549, -1.5633205211680472, -1.446812330652112, -1.3372268319784497, -1.2350792063632468, -1.140621002336243, -1.0538958172888044, -0.9747866541789414, -0.9030556242701748, -0.8383768249068781, -0.780363258009666, -0.7285886239100896, -0.6826047590720072, -0.6419554049337339, -0.6061869102346311, -0.574856387410259, -0.5475377684536844, -0.523826138598547, -0.5033406676396448, -0.485726408320845 ], [ -0.7741178730210334, -0.8301246351622951, -0.8931354390371229, -0.9637026921573515, -1.0423340764559978, -1.1294578878482784, -1.2253780123609141, -1.3302164579293088, -1.4438413237907974, -1.5657784054382393, -1.6951056837054206, -1.830332431142204, -1.9692697698442816, -2.1089089227145954, -2.24533866177239, -2.3737536908114567, -2.4886234419342057, -2.584089207500197, -2.654615083069578, -2.695820617303751, -2.7052841564911723, -2.6830088422366547, -2.6313292062152422, -2.5543130840221213, -2.4569498951712867, -2.344423300145164, -2.2216132317798607, -2.092826912530866, -1.9616951407598995, -1.8311679653947759, -1.7035627587076732, -1.5806360095539966, -1.4636625849866092, -1.3535136675058652, -1.2507288881481053, -1.1555806508958897, -1.068130053935712, -0.9882745965062245, -0.9157882697773359, -0.8503548171706448, -0.791595005576476, -0.7390887305387501, -0.6923927204441989, -0.651054528298669, -0.614623417520318, -0.5826586676935925, -0.5547357514079025, -0.530450766046364, -0.509423445288572, -0.491299023967968 ], [ -0.7770410988784526, -0.833117456343138, -0.8961613006675901, -0.9667154757759004, -1.0452769577521719, -1.1322623307712518, -1.227963045651923, -1.3324884502593584, -1.445694576153182, -1.5670970291927913, -1.6957674473367792, -1.8302155488029346, -1.9682639414693355, -2.106932175454229, -2.242361300422368, -2.3698292204717024, -2.483922814623523, -2.578928860247942, -2.649462389265574, -2.6912575624297146, -2.7019211592740895, -2.681370625612085, -2.6317614250321313, -2.556947940398701, -2.461729911064904, -2.3511555768004646, -2.2300267676364407, -2.1026185698942257, -1.9725610663835187, -1.8428226246176171, -1.7157490270119489, -1.5931293572754845, -1.4762716000803224, -1.3660784549990983, -1.2631183573286295, -1.167689332201153, -1.0798748370335536, -0.999591614597406, -0.9266300469117046, -0.8606877269404816, -0.8013970479981076, -0.7483476102543387, -0.7011041973560448, -0.6592210071346829, -0.6222527427332298, -0.5897630925732857, -0.5613310540448277, -0.5365554889813289, -0.5150582397923569, -0.49648608360317037 ], [ -0.7788822191850076, -0.8348423100282572, -0.8977029746939038, -0.9679929262861704, -1.0461933156832244, -1.1327033431723712, -1.2277958448952946, -1.331560947015543, -1.4438359279555897, -1.5641198691666598, -1.6914728954360179, -1.8244024857121992, -1.9607445537518389, -2.097556149987713, -2.2310506675682067, -2.3566236743843167, -2.469030238142896, -2.5627676106710537, -2.632673051093633, -2.6746591429725304, -2.686401630389333, -2.6677383285430456, -2.620616143087949, -2.5486208279441858, -2.4562973861742923, -2.348497676072784, -2.229896224072127, -2.104700320200462, -1.9765156670862676, -1.8483146260360965, -1.7224638229000782, -1.600782035046762, -1.48461056555478, -1.374885811463731, -1.2722083843128167, -1.1769059494617709, -1.0890886196179197, -1.0086967078534212, -0.9355411856773692, -0.869337468622116, -0.809733269009411, -0.7563312782385385, -0.7087074100379853, -0.6664252772223773, -0.6290475033547753, -0.5961443968024831, -0.5673004434508593, -0.5421190087095469, -0.5202255807105671, -0.5012698350718616 ], [ -0.7796628925361331, -0.8353273319142922, -0.8977966957261079, -0.9675813863895326, -1.0451420933325073, -1.1308555651932344, -1.2249706016592663, -1.327552495329837, -1.4384142713027843, -1.5570336129137106, -1.6824557151598412, -1.8131851273774364, -1.9470749179427416, -2.0812303717685317, -2.2119574228056194, -2.3348009708173825, -2.4447275014365886, -2.536496242448525, -2.605219330411137, -2.6470324528206084, -2.659709431052608, -2.643017585089578, -2.59868240753272, -2.529987789154822, -2.4411775406762226, -2.336857559494531, -2.221530586830132, -2.0993008204207437, -1.9737240872720574, -1.847759803148596, -1.7237852162632494, -1.6036435239229938, -1.4887075563567924, -1.3799479727457309, -1.2779996490500005, -1.1832229029716768, -1.0957580154459934, -1.01557259112077, -0.942501923428428, -0.8762828656376598, -0.8165818676260315, -0.7630178891866348, -0.7151808891494198, -0.6726465437338325, -0.6349877850323671, -0.6017836821836395, -0.5726261200396678, -0.5471246665421245, -0.5249099623678086, -0.5056359153333765 ], [ -0.7794117749505198, -0.8346090850511727, -0.8964888720549158, -0.9655395126786666, -1.042197179678282, -1.1268118300042036, -1.219603716986985, -1.3206088274498364, -1.4296118458824436, -1.546065904947014, -1.6689998786112197, -1.7969169252077384, -1.9276932505540807, -2.0584945065374356, -2.1857389081431515, -2.305148464766615, -2.4119353616162136, -2.5011576116634564, -2.5682360863153804, -2.6095562205528577, -2.623008509651714, -2.6083007798593525, -2.566938016415652, -2.501888938818816, -2.4170685999500763, -2.316800695293749, -2.205378741731514, -2.086770781808522, -1.9644566353905861, -1.8413638395225596, -1.7198676194115896, -1.6018279448833974, -1.4886452677903415, -1.3813232828822142, -1.280531744664431, -1.1866654438133897, -1.0998973903416576, -1.020225446669398, -0.94751236474826, -0.8815195821400297, -0.8219353370793205, -0.768397746718172, -0.7205135043245943, -0.6778728212774481, -0.6400611880178226, -0.606668467017228, -0.5772957677939399, -0.5515604933973846, -0.5290998919084264, -0.5095733964094145 ], [ -0.7781638642308393, -0.8327317231508609, -0.8938350138523281, -0.9619368959833758, -1.0374456229617608, -1.1206808333746263, -1.2118307358662823, -1.310898789410036, -1.4176387750687864, -1.5314779347025702, -1.6514294861952923, -1.7759988688598705, -1.903093230629291, -2.0299515041364837, -2.1531225338642432, -2.2685282604673414, -2.371651211192087, -2.457870764239676, -2.522933786145314, -2.563487395670266, -2.577549085463895, -2.564779004763839, -2.5264722669594635, -2.465284732771998, -2.3847918109478683, -2.2890122932782284, -2.182001647978422, -2.06756277938697, -1.9490742580788158, -1.8294118597330873, -1.7109343369379768, -1.5955087243304356, -1.4845571911012867, -1.3791134478832854, -1.2798812021885606, -1.1872902510026218, -1.1015478361246847, -1.02268418387398, -0.9505919474897628, -0.8850597385042915, -0.8258001888638051, -0.772473106513097, -0.7247043251018541, -0.6821008371796609, -0.6442627615638483, -0.6107926433985791, -0.5813025284271214, -0.5554191963672783, -0.5327878849502234, -0.5130747876404638 ] ], "zauto": true, "zmax": 2.7052841564911723, "zmin": -2.7052841564911723 }, { "autocolorscale": false, "autocontour": true, "colorbar": { "tickfont": { "size": 8 }, "ticksuffix": "", "x": 1, "y": 0.5 }, "colorscale": [ [ 0.0, "rgb(255,247,251)" ], [ 0.14285714285714285, "rgb(236,231,242)" ], [ 0.2857142857142857, "rgb(208,209,230)" ], [ 0.42857142857142855, "rgb(166,189,219)" ], [ 0.5714285714285714, "rgb(116,169,207)" ], [ 0.7142857142857143, "rgb(54,144,192)" ], [ 0.8571428571428571, "rgb(5,112,176)" ], [ 1.0, "rgb(3,78,123)" ] ], "contours": { "coloring": "heatmap" }, "hoverinfo": "x+y+z", "ncontours": 25, "type": "contour", "x": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "xaxis": "x2", "y": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "yaxis": "y2", "z": [ [ 0.6591890576377918, 0.6558752547411505, 0.652129146684136, 0.6479241606894308, 0.6432394253815783, 0.6380615319250763, 0.6323862069052562, 0.6262197345223983, 0.6195799541555379, 0.6124966785552162, 0.6050114414704647, 0.597176600829102, 0.5890539928765852, 0.580713532664218, 0.5722323398078989, 0.5636950627862723, 0.5551959939265328, 0.5468432365890391, 0.5387645799406074, 0.5311139134238181, 0.5240761396446088, 0.517867898369549, 0.512731350010485, 0.5089191257990977, 0.5066704919467488, 0.5061815390433972, 0.5075749628515808, 0.5108764967840619, 0.5160042339168052, 0.5227738697504785, 0.5309185237212678, 0.5401181301125438, 0.550031810410487, 0.5603273215931494, 0.5707037698693687, 0.5809061550629959, 0.590732170430416, 0.6000327465931139, 0.6087081903426939, 0.616701671896636, 0.6239914922347661, 0.6305831787511585, 0.6365021022630313, 0.6417870183354886, 0.6464847176389363, 0.6506458164626312, 0.6543216178299105, 0.6575619140660377, 0.6604135728273861, 0.6629197419461847 ], [ 0.6578097042892532, 0.6542567990249577, 0.6502388438278738, 0.6457275209785485, 0.640701038432607, 0.6351462041208898, 0.6290604308479443, 0.622453478125423, 0.6153487117787951, 0.6077836686666177, 0.5998097703914367, 0.591491151753317, 0.5829027611162386, 0.5741281330809583, 0.5652574792219984, 0.5563869058404703, 0.5476195416486391, 0.5390690439432831, 0.5308653036484184, 0.5231612428882947, 0.5161385803200126, 0.5100096471240085, 0.5050121755563222, 0.5013948407437294, 0.49939339875717537, 0.49920025552931224, 0.50093331239752, 0.5046115903536823, 0.5101442761034994, 0.5173363907594078, 0.5259096016077843, 0.5355328220746353, 0.5458556472532666, 0.556538486373742, 0.5672755240231087, 0.5778091484357775, 0.5879364011587308, 0.5975090636866358, 0.6064293271045507, 0.6146428567504838, 0.622130711945389, 0.6289011772958257, 0.6349821951572528, 0.6404147927822794, 0.6452476768635761, 0.6495330138824962, 0.6533233143193534, 0.6566692801453657, 0.6596184475874395, 0.6622144522468533 ], [ 0.6563895080731045, 0.6525900790920784, 0.6482915811564801, 0.6434638035617758, 0.6380839218969626, 0.6321389216114031, 0.6256279836676092, 0.6185646068984385, 0.6109781990755758, 0.6029148579698639, 0.5944371077139277, 0.5856224769386835, 0.5765610158026869, 0.5673521376460746, 0.5581014876027247, 0.5489187892853633, 0.5399176704180862, 0.5312181883353354, 0.5229520945153288, 0.5152698425861537, 0.5083471660879354, 0.5023880965298646, 0.49762102148590154, 0.4942852310875381, 0.4926075697670441, 0.4927719980320284, 0.49488809403135664, 0.4989663120127403, 0.5049069301643204, 0.5125060076529452, 0.5214767785215151, 0.531480904231391, 0.5421624123776883, 0.5531780618779276, 0.5642202608838451, 0.5750312461684625, 0.5854091725779673, 0.5952078101921628, 0.6043318508606396, 0.612729666140976, 0.6203849880440698, 0.6273085691351344, 0.6335305056886134, 0.639093608792688, 0.6440479863765506, 0.6484468445205916, 0.6523434162161943, 0.6557888676878804, 0.6588310059715068, 0.661513607931034 ], [ 0.6549331503873806, 0.6508809135959396, 0.6462944991377211, 0.6411416513084834, 0.6353983841915916, 0.6290517880672284, 0.6221028436433965, 0.6145689877028979, 0.6064861109350552, 0.5979096358622854, 0.5889143477970957, 0.5795927652766572, 0.5700520612990254, 0.5604098810491697, 0.5507897986764604, 0.5413175088540539, 0.5321189997003433, 0.5233217319026715, 0.5150591462640229, 0.5074776751691836, 0.5007440777906843, 0.4950497780325335, 0.4906084872538213, 0.48764422075189673, 0.48636907340166574, 0.4869534671072119, 0.4894949700602124, 0.4939936699046909, 0.5003411899726709, 0.5083267381145039, 0.5176585888002607, 0.5279953485203144, 0.538979779666763, 0.5502689219363811, 0.5615566788875762, 0.5725876350034146, 0.5831628001911111, 0.5931390093275557, 0.6024239910159217, 0.6109689483592781, 0.6187601180697984, 0.6258103574200512, 0.6321514355663373, 0.6378274072704359, 0.6428892252246459, 0.6473905924202663, 0.6513849556328554, 0.6549234831301765, 0.6580538438215289, 0.6608196025662059 ], [ 0.6534456564089971, 0.6491356203724732, 0.6442554422911713, 0.6387706739092172, 0.6326560280751383, 0.625898597287838, 0.6185011411769957, 0.610485157510654, 0.6018933654040305, 0.5927911693419521, 0.5832666713161849, 0.5734288955960241, 0.5634041223197251, 0.5533306041270912, 0.5433524251297474, 0.5336137395816722, 0.5242549098958765, 0.5154119308941927, 0.5072198219769736, 0.49981940713797224, 0.49336534729606607, 0.48803193459600375, 0.4840126127521511, 0.48150997833977527, 0.48071534309792363, 0.481780405461182, 0.4847870761306813, 0.4897234445745944, 0.4964729972132834, 0.5048205067976066, 0.5144730506357417, 0.5250906051107429, 0.5363191157665678, 0.547819899249, 0.5592916254579801, 0.5704836794092093, 0.5812015957984784, 0.5913062685206131, 0.6007089178469436, 0.6093636301408826, 0.6172589159402966, 0.624409322846172, 0.630847772166507, 0.6366189928531883, 0.6417742055409378, 0.6463670545799053, 0.6504506849686376, 0.6540758026520833, 0.6572895307812586, 0.6601348726358008 ], [ 0.6519322384596957, 0.6473608324167744, 0.6421827476581246, 0.636361210861147, 0.6298694930678519, 0.6226945635813361, 0.6148408897410743, 0.6063340715908773, 0.5972238889981469, 0.5875862465663093, 0.577523466141381, 0.5671624474050195, 0.556650445411308, 0.5461486304407153, 0.535824174722324, 0.5258422350608747, 0.5163596496690547, 0.507522162637919, 0.4994663070997856, 0.4923256997846064, 0.48623971631336665, 0.48136090849468444, 0.47785679887399246, 0.47590242368399993, 0.4756623710597119, 0.47726461671728343, 0.4807720191949264, 0.48615931265668516, 0.49330260864620556, 0.5019848330854016, 0.5119157086181844, 0.5227609980998408, 0.5341742022477981, 0.5458247933535819, 0.5574193450566622, 0.5687143649005537, 0.5795214655407799, 0.589706497327315, 0.5991845513798125, 0.6079125931107591, 0.6158811374073325, 0.6231059836443676, 0.6296206719526166, 0.6354700323979524, 0.6407049799340088, 0.6453785528386907, 0.6495430902623494, 0.6532483850302614, 0.6565406214875212, 0.6594619064916045 ], [ 0.6503981055043122, 0.6455632683077045, 0.6400849730248054, 0.6339240161445746, 0.6270520979372415, 0.6194559271082062, 0.6111415637225481, 0.6021386686224425, 0.5925041887801245, 0.5823248791624905, 0.571717983864444, 0.5608294319368283, 0.5498291156304894, 0.5389032649316854, 0.5282446083333113, 0.5180418021085629, 0.5084702669742146, 0.49968674194890206, 0.49182923968901965, 0.48502259330722064, 0.4793877381436273, 0.47505095798702335, 0.47214837460455616, 0.4708216164264736, 0.47120301437532774, 0.4733922934284948, 0.47743032174162586, 0.48327747700321766, 0.49080345023075544, 0.49979191712684473, 0.5099589367015992, 0.5209802168942617, 0.5325208816997505, 0.5442621383278058, 0.5559213391423153, 0.5672642258257716, 0.5781098859863298, 0.5883299166083832, 0.5978435920151358, 0.606610717070332, 0.6146235294710952, 0.6218986463608128, 0.6284697092612603, 0.6343810995257535, 0.6396828804288589, 0.6444269665460441, 0.6486644174568705, 0.6524436917590507, 0.6558096700813413, 0.6588032539575921 ], [ 0.6488482420399486, 0.6437494600536876, 0.6379705670546448, 0.6314698651332722, 0.6242173810514235, 0.616199427731532, 0.6074235105094463, 0.5979232315773371, 0.5877626790040062, 0.5770396175325634, 0.5658866705770321, 0.5544696652707374, 0.5429824935040275, 0.5316383048505373, 0.5206576188107329, 0.5102549237033492, 0.5006262375732913, 0.4919405101748336, 0.48433722027776577, 0.4779309161280202, 0.4728210939785097, 0.46910352143877965, 0.4668778786771422, 0.466247140078971, 0.46730656159790984, 0.47012382155509885, 0.4747154818325842, 0.48102696077172213, 0.48892259417325096, 0.49818923478315924, 0.508552587214291, 0.5197019669670274, 0.5313176736230529, 0.5430957623321193, 0.5547668598697523, 0.566107771927591, 0.5769462671199115, 0.5871603639069642, 0.5966737750540722, 0.6054490903229368, 0.6134800026127071, 0.6207835454149787, 0.6273929879247847, 0.6333517624475505, 0.6387085861297722, 0.643513783275857, 0.6478167090246525, 0.6516641121355243, 0.65509924601441, 0.6581615348470398 ], [ 0.6472871621545361, 0.6419254446319486, 0.6358474877430862, 0.6290090896834175, 0.6213785431151077, 0.6129416490478322, 0.6037071937122297, 0.5937125339804403, 0.5830287416577391, 0.571764544968347, 0.5600681211073035, 0.5481257137628368, 0.536156182527504, 0.5244010541363496, 0.5131105058280807, 0.5025268946984663, 0.4928686519807295, 0.48431806264969696, 0.4770160807687996, 0.4710656203817599, 0.46654205157875456, 0.4635068844761092, 0.4620190344790807, 0.46213847368202726, 0.46391955310435834, 0.4673950448603267, 0.4725556160157664, 0.479331515614259, 0.48758279656290776, 0.4971015735793801, 0.5076259191826349, 0.5188617193343787, 0.530507308123462, 0.5422760962620254, 0.5539140033837072, 0.565210386807775, 0.5760026811711457, 0.5861758784200104, 0.5956583358556659, 0.6044153762476897, 0.6124419169101545, 0.6197550639197954, 0.6263873093375586, 0.632380709601523, 0.6377822149233923, 0.6426401635950888, 0.6470018475796692, 0.6509119904853772, 0.6544119488183976, 0.6575394444930035 ], [ 0.6457186472022696, 0.6400964290849738, 0.6337227803860624, 0.6265510536167104, 0.6185478049026706, 0.6096982445326109, 0.6000122771030877, 0.5895307764087021, 0.5783315179543885, 0.5665339361369713, 0.5543016268945082, 0.5418413630970431, 0.5293974573640259, 0.5172407499825301, 0.5056524363213823, 0.49490434557941365, 0.48523882869978197, 0.47685248281139786, 0.46988778802703457, 0.4644349308670516, 0.46054296461826416, 0.4582361528203914, 0.4575293132859869, 0.45843622441975157, 0.46096769539216004, 0.4651197920717458, 0.47085645609931664, 0.4780928966293316, 0.48668584725092595, 0.4964342764704128, 0.5070905994582667, 0.5183793846467228, 0.5300190363466076, 0.5417421206934956, 0.5533113175859478, 0.5645296338695752, 0.5752449088934837, 0.5853495292665517, 0.5947766582835625, 0.6034943153482606, 0.6114984660744367, 0.6188060233452674, 0.6254483871934696, 0.6314659053420594, 0.6369034330260634, 0.6418070149311424, 0.6462216025211065, 0.6501896523920103, 0.6537504193700313, 0.656939754375008 ], [ 0.6441454781813761, 0.6382664426847968, 0.6316021312453313, 0.6241035875715059, 0.6157357016342931, 0.6064830696174965, 0.5963565741982356, 0.5854003374527464, 0.5736984515981706, 0.56138059378712, 0.5486253201563916, 0.535659598129571, 0.5227531209628683, 0.5102063492149325, 0.49833221853479476, 0.4874330665199061, 0.47777625615964103, 0.46957348188898473, 0.4629688818773466, 0.4580392075917803, 0.45480570628159783, 0.45325340428218897, 0.4533509218228606, 0.45506400392536017, 0.45835859078726043, 0.46319333108368166, 0.4695053231489898, 0.4771951108949971, 0.4861168482464232, 0.4960773408416974, 0.5068444691894417, 0.5181626553257476, 0.5297715111188092, 0.5414237895235304, 0.5528998006284005, 0.5640168764089988, 0.574633733578938, 0.5846504352170114, 0.5940050679127945, 0.6026683340487798, 0.610637137867937, 0.6179280257694005, 0.6245710965439194, 0.6306047662473953, 0.6360715751497548, 0.6410150690038919, 0.6454776754854024, 0.6494994267289063, 0.6531173452539077, 0.6563653060713497 ], [ 0.6425691762913189, 0.6364379930812445, 0.6294894178968623, 0.6216724089027764, 0.6129503449032134, 0.6033072561397704, 0.5927549053430122, 0.5813403856469265, 0.5691536332987065, 0.5563339133633447, 0.5430739604637306, 0.5296201316375376, 0.5162668164357164, 0.5033436850362897, 0.49119538420681863, 0.4801551121507334, 0.4705158334200403, 0.4625049074414881, 0.45626840441894545, 0.45186946691699387, 0.4493009574767903, 0.4485078972666564, 0.4494120292025558, 0.45193068739334524, 0.45598494362313774, 0.4614963450308234, 0.46837563091369777, 0.47650917879443416, 0.4857489756946761, 0.49590996637181667, 0.506775721817386, 0.5181107198717292, 0.5296759984918264, 0.541244741901985, 0.5526151448939032, 0.5636191016495072, 0.5741264001144801, 0.584044914273907, 0.5933177242677222, 0.6019182263338119, 0.6098442257539566, 0.6171118300318363, 0.6237497432795522, 0.6297943477113157, 0.6352857676189266, 0.6402649571639013, 0.6447717404689423, 0.6488436605109477, 0.6525154581119073, 0.6558189970831643 ], [ 0.640989767058192, 0.6346117461811911, 0.6273862813899425, 0.6192605583044534, 0.6101966916391685, 0.6001782777328395, 0.5892179210640307, 0.5773654220294941, 0.564716027060824, 0.5514177658212737, 0.5376764613896348, 0.5237565833995522, 0.5099758945463413, 0.4966920903010892, 0.48428066749439347, 0.4731052669503911, 0.4634844808260867, 0.4556616821836405, 0.44978536747721704, 0.4459055825454179, 0.4439873282947532, 0.44393625190251934, 0.4456280698669277, 0.44893280477648606, 0.45372790986419365, 0.4598990325703431, 0.46733148263545254, 0.47589796265859274, 0.4854482966946442, 0.4958051595327476, 0.506767148961844, 0.5181180591291319, 0.529639682563489, 0.5411251128205099, 0.5523900782703569, 0.5632808348280252, 0.5736781526757846, 0.5834976981889823, 0.5926875636700553, 0.6012238723067576, 0.609105365237484, 0.6163477422660769, 0.6229783397452621, 0.6290315304316947, 0.6345450469631614, 0.639557278333565, 0.6441054749345694, 0.6482247240747558, 0.6519475213676945, 0.6553037575546193 ], [ 0.6394055846199211, 0.6327862514256168, 0.6252917483301443, 0.6168678893835299, 0.6074758664387608, 0.5970990648649871, 0.5857509652397775, 0.5734838441821427, 0.5603976884987738, 0.5466483295834427, 0.532453308848353, 0.518093480206994, 0.5039080230008863, 0.4902806844260884, 0.47761608344036, 0.46630707450045833, 0.4566973186034834, 0.4490463582141306, 0.4435059189474663, 0.4401142865538462, 0.4388103731600435, 0.43946258671367766, 0.4419030171449345, 0.44595687066908296, 0.45146032073215414, 0.45826500757252053, 0.46623200559957256, 0.47522069991412047, 0.48507829070227687, 0.495634071445529, 0.5067001668869658, 0.518078077376565, 0.5295688569676454, 0.5409842738646229, 0.5521566682139812, 0.5629460379000532, 0.5732437696773532, 0.5829731499139703, 0.5920872459873614, 0.6005649588363007, 0.6084060691845133, 0.6156260020334703, 0.6222508729514283, 0.6283131971936747, 0.6338484673199981, 0.6388926550607028, 0.6434805790061527, 0.6476450048452075, 0.6514163074010152, 0.6548225175283816 ], [ 0.6378131330600414, 0.6309577348413754, 0.6232019323750576, 0.6144906498446018, 0.6047845876645928, 0.5940672348212053, 0.5823530620069683, 0.5696966384910466, 0.5562021091371987, 0.542032036904705, 0.527414070755153, 0.5126433119871103, 0.4980778068437583, 0.48412462292374975, 0.47121492723099473, 0.45976876396488725, 0.4501537460517185, 0.4426456028201446, 0.43740048890225786, 0.43444719551113925, 0.43370165006935896, 0.43499867420075966, 0.438130601638918, 0.44288154684818426, 0.4490496112794624, 0.4564547868440976, 0.4649351894159544, 0.4743370001366106, 0.4845038401704602, 0.49526984727651463, 0.5064584208537912, 0.5178863881378426, 0.5293718471728621, 0.5407433725698622, 0.5518484801046609, 0.5625599052732505, 0.5727790266272942, 0.5824364300464575, 0.5914900640322887, 0.5999216712655164, 0.607732239188556, 0.6149371474393482, 0.6215615536172487, 0.6276363918692554, 0.6331951913281924, 0.6382717743952925, 0.6428987809262795, 0.6471068888918418, 0.6509245640727835, 0.6543781650864879 ], [ 0.6362070209324345, 0.629119981528396, 0.6211098440540715, 0.6121211926988966, 0.6021147481408735, 0.5910745035838133, 0.5790161141208173, 0.5659963146912986, 0.5521228334769779, 0.5375638208555787, 0.5225552298632592, 0.5074039260233143, 0.49248375332440053, 0.4782216908901514, 0.4650721144892876, 0.4534795180276871, 0.44383386933390984, 0.43642704351519607, 0.43142129730032736, 0.42883917469699584, 0.428578052245391, 0.43044425405272985, 0.43419553048922904, 0.4395796268478291, 0.44636039635482644, 0.4543287795698037, 0.4633011263494928, 0.4731101971369102, 0.48359457881824813, 0.49459087556323567, 0.5059308581672168, 0.5174436505425303, 0.5289615670261998, 0.540327583568794, 0.5514025141967316, 0.5620704924767941, 0.5722420341054799, 0.5818545699364395, 0.5908707825188441, 0.5992753309810622, 0.6070706343242911, 0.6142723458574079, 0.6209050368426539, 0.6269984546432459, 0.6325845609363518, 0.6376954117783292, 0.6423618282107397, 0.6466127305480707, 0.6504749714040077, 0.6539734964803816 ], [ 0.6345799832734227, 0.6272643270037639, 0.6190053351230994, 0.6097478526952043, 0.5994531975313641, 0.5881063423981012, 0.5757243961902626, 0.5623661929680108, 0.5481424934540681, 0.5332258503807448, 0.5178585786949559, 0.5023565569771836, 0.48710594166559446, 0.47254966176015745, 0.4591613351258042, 0.4474065876641855, 0.4376957901149366, 0.4303369611149299, 0.4255006591678175, 0.42320740072848434, 0.4233416861625434, 0.4256876944990537, 0.42997482881348636, 0.43591991454858614, 0.44325673576662833, 0.4517498038830603, 0.46119466968650397, 0.47141006411905406, 0.48222759629422357, 0.4934834254258852, 0.505014246902197, 0.5166579238561754, 0.5282576707203016, 0.5396680297067147, 0.5507608795697794, 0.5614301389437198, 0.571594416503063, 0.5811974224220869, 0.5902063830823884, 0.5986089606258858, 0.6064092837981413, 0.6136236808039218, 0.6202766082479995, 0.6263971298974615, 0.6320161465163703, 0.6371644377444937, 0.6418714652642883, 0.6461648114637141, 0.6500700901124791, 0.6536111600875809 ], [ 0.6329230024912227, 0.625379773109551, 0.6168751988916654, 0.6073550170133223, 0.596781765545122, 0.5851419316262411, 0.5724544133153098, 0.5587801379000583, 0.544232385687702, 0.5289869186748012, 0.5132903911194631, 0.49746476534298406, 0.481904734200221, 0.4670648214243845, 0.45343347548902857, 0.44149374402326097, 0.43167425301540957, 0.4242993046172863, 0.4195505079399331, 0.41745147141618477, 0.41788056840415566, 0.4206072071429017, 0.42533945954541125, 0.4317691236627047, 0.439604201722705, 0.4485852381262515, 0.45848761338400457, 0.46911498730895274, 0.48028958154870927, 0.4918437365058276, 0.5036151855981993, 0.5154465664684944, 0.5271883101422332, 0.5387033706408921, 0.5498721943420701, 0.5605966697285609, 0.570802314952643, 0.5804384743912313, 0.5894767016573506, 0.5979077659980186, 0.6057378354389484, 0.6129843896279926, 0.6196723326039077, 0.6258306456809635, 0.6314897746533034, 0.6366798088275294, 0.6414293994972516, 0.6457652914844895, 0.6497123045281737, 0.6532935966800771 ], [ 0.6312255356909772, 0.6234532391979276, 0.6147034413950435, 0.6049234105575869, 0.5940775535072956, 0.5821544489758731, 0.5691751749726323, 0.5552028062057398, 0.5403526813269711, 0.5248026046991386, 0.5088015286186686, 0.49267448871444475, 0.47682078558294905, 0.46170196774230465, 0.4478166652957652, 0.4356614540820257, 0.425681044549821, 0.4182163995383821, 0.41346346502509684, 0.41145483566918295, 0.41207036070696984, 0.41507279381370493, 0.42015637682871265, 0.4269939455954836, 0.43527189798931726, 0.4447089605518557, 0.45506054744389585, 0.4661137462229923, 0.4776785392386299, 0.48957967604081026, 0.5016516950281437, 0.5137377466830901, 0.5256915432005221, 0.5373810864203853, 0.5486927259055026, 0.5595343804875785, 0.5698372130848814, 0.5795555170371762, 0.5886649533800739, 0.5971595303988164, 0.6050478370698212, 0.6123490505716102, 0.6190891649598582, 0.6252977660046357, 0.6310055367807182, 0.6362425454589673, 0.6410372590747734, 0.6454161545995953, 0.6494037630613093, 0.6530229789879752 ], [ 0.6294758514531945, 0.6214699533603855, 0.612471730415671, 0.6024306056627092, 0.591313507615724, 0.5791117098608107, 0.5658489076637389, 0.5515904395047925, 0.5364533102365326, 0.5206162640029239, 0.5043285567212109, 0.48791530597823696, 0.47177647925728233, 0.4563760452346903, 0.4422181361991452, 0.4298089842546822, 0.41960735029548174, 0.41197154329933816, 0.4071156248933064, 0.4050876860810916, 0.40577726598791464, 0.4089490409450343, 0.4142911340983351, 0.421463421204834, 0.43013458318957926, 0.44000324337281066, 0.4508045609338561, 0.4623070693062236, 0.4743052358690871, 0.4866121008173802, 0.4990545066098961, 0.5114716553924417, 0.5237164599400052, 0.535658502595492, 0.5471873014537566, 0.5582148239133473, 0.568676595578067, 0.5785311787373402, 0.5877581473082699, 0.5963549227287591, 0.6043329520670717, 0.6117137210213972, 0.6185250267738982, 0.6247978190932361, 0.630563782262463, 0.635853700724719, 0.6406965462275683, 0.6451191537821682, 0.6491463198170326, 0.6528011538376887 ], [ 0.627661474105585, 0.6194139819792479, 0.6101600208136219, 0.5998517546327384, 0.5884592718249532, 0.5759771566700972, 0.5624322010372262, 0.5478921937508743, 0.5324755072488324, 0.5163608321884156, 0.4997958507753305, 0.4831028904377159, 0.4666787655876076, 0.45098538930870335, 0.436527866994321, 0.42381840702995005, 0.41332804418486896, 0.4054334602276226, 0.4003710299966214, 0.3982112974036363, 0.3988620873110284, 0.40209879165379875, 0.40761111118612575, 0.4150517156370057, 0.42407502773510347, 0.43436075258412, 0.44562295560039794, 0.45760912875996645, 0.47009453089615616, 0.48287606332150557, 0.4957681662465033, 0.5086015169931055, 0.5212241008678905, 0.5335036116312395, 0.5453300272672755, 0.5566174234858735, 0.5673044563063646, 0.5773533313438454, 0.5867473981079289, 0.5954877245468799, 0.6035891134938666, 0.611076031142571, 0.6179788513249574, 0.624330706031616, 0.6301651004498853, 0.6355143244816771, 0.6404085904706055, 0.6448757588020683, 0.6489414810881198, 0.6526295901997813 ], [ 0.625769728401528, 0.6172688892865629, 0.6077473460780478, 0.597160532314978, 0.5854823033560784, 0.5727111735274526, 0.5588775545989197, 0.5440519590698734, 0.5283539562142091, 0.5119613537658906, 0.4951185760831584, 0.4781425055052511, 0.4614232223035336, 0.4454163691041956, 0.4306237782405933, 0.4175602565053848, 0.40670765210761933, 0.3984623706095869, 0.3930876188931734, 0.3906836381187036, 0.3911853314922347, 0.39438763647237723, 0.39998935926532886, 0.4076413463140841, 0.4169866955347866, 0.42768677370541075, 0.43943310680916725, 0.4519491163226845, 0.46498672982014266, 0.4783219870257635, 0.49175206175624436, 0.5050944878178338, 0.5181882379671671, 0.5308957439963053, 0.5431048556889397, 0.5547299420860013, 0.5657116752164061, 0.576015383194303, 0.5856281442644274, 0.5945549834169316, 0.6028146229165073, 0.610435238401066, 0.617450603626306, 0.6238968948516869, 0.6298102965875156, 0.6352254274762117, 0.6401745060680207, 0.644687110982485, 0.6487903602879517, 0.6525093362808948 ], [ 0.6237883725087365, 0.6150185123152341, 0.6052127580689426, 0.5943302658098825, 0.5823492207964245, 0.5692726859953054, 0.555135269214079, 0.5400105926983398, 0.5240194253257997, 0.507338091929727, 0.4902063511424462, 0.4729332974476035, 0.45589903339199395, 0.4395490683815668, 0.424378068413308, 0.41090039563932396, 0.3996075486111445, 0.39091725718328235, 0.385124282105079, 0.3823659601908712, 0.3826131425739964, 0.3856890881864331, 0.39130900217035414, 0.399126864179529, 0.4087767985631247, 0.41990174538176134, 0.4321685740495428, 0.4452730104662481, 0.45893906812608226, 0.47291691095169364, 0.4869814609907166, 0.5009325143067586, 0.5145960758471914, 0.5278261330164116, 0.5405060326459834, 0.5525488294574427, 0.5638962813103966, 0.574516471565467, 0.5844002824364092, 0.5935571001952614, 0.6020102003676209, 0.6097922487232783, 0.6169412801316478, 0.6234974050039505, 0.6295003661868654, 0.6349879497413812, 0.6399951576472647, 0.6445539884039355, 0.6486936444159606, 0.652440988344399 ], [ 0.6217063025270961, 0.612647830916293, 0.6025363900249924, 0.5913352201224129, 0.5790273447078591, 0.5656209928112544, 0.551155612007901, 0.535708467528218, 0.5194017605567158, 0.5024100393956719, 0.48496735610578745, 0.46737307958323004, 0.4499945078200464, 0.43326355503105674, 0.4176641837910261, 0.4037075525888849, 0.3918938415999643, 0.38266381694907275, 0.376348577518418, 0.373130003006091, 0.3730237927981005, 0.3758902566546275, 0.3814680880903253, 0.3894189470137917, 0.3993697334654539, 0.410944145774556, 0.42378152771637895, 0.43754561118386703, 0.45192740204433274, 0.46664587279779235, 0.48144861984052933, 0.4961131990607502, 0.5104489107646143, 0.5242984023091689, 0.5375384473974405, 0.5500794647762389, 0.5618636140554732, 0.5728615641334187, 0.5830682256465927, 0.592497856709744, 0.601178991072076, 0.609149609324845, 0.6164528928156436, 0.6231337864068571, 0.6292364716924929, 0.6348027367286715, 0.6398711370471801, 0.6444767842712193, 0.6486515744123241, 0.6524246732767348 ], [ 0.6195143075215612, 0.6101439075478062, 0.5997006122735755, 0.58815200237482, 0.5754863840932399, 0.5617177699348261, 0.5468911762609743, 0.5310882314046681, 0.5144330959391603, 0.4970986409609072, 0.47931263701241056, 0.4613632881556471, 0.44360274257964616, 0.42644627072675245, 0.4103638942673305, 0.3958609641198103, 0.3834453826365579, 0.37358257159604435, 0.3666446445455315, 0.36286543486058565, 0.36231444351184455, 0.36489782007095134, 0.37038476190187747, 0.3784488366989774, 0.38871088050244873, 0.40077374643561464, 0.4142455271931026, 0.4287528852933526, 0.4439481477722749, 0.45951346575177765, 0.47516398698926, 0.49065069400344413, 0.5057627608436439, 0.5203289851439044, 0.5342178914433485, 0.5473362999428738, 0.5596263881537852, 0.5710614740118101, 0.5816408896384822, 0.5913843879340466, 0.6003265327907127, 0.60851147678056, 0.6159884408901445, 0.6228080960081613, 0.6290199240432535, 0.6346705254525568, 0.6398027533688354, 0.6444555001242043, 0.6486639408204808, 0.6524600460836167 ], [ 0.617205850313398, 0.6074968673105541, 0.5966912456285527, 0.5847610429902996, 0.571700218773541, 0.5575291856724808, 0.5422993591890879, 0.5260976774824127, 0.5090511494471862, 0.4913315542296359, 0.4731603785932291, 0.4548138193582297, 0.4366270710819283, 0.4189961158451282, 0.4023739968434474, 0.38725761738905573, 0.37416139423668565, 0.36357666023731405, 0.3559208993859245, 0.35148718787232325, 0.35040790828514706, 0.35264409628464527, 0.3580026249637272, 0.36617304132679523, 0.37677072892834235, 0.38937522762421045, 0.403558659621788, 0.4189046344847872, 0.4350204760637754, 0.4515455675346474, 0.4681574965804748, 0.4845766074681651, 0.500568953279261, 0.5159474630015298, 0.5305712167442893, 0.5443428969888457, 0.5572046579999955, 0.5691327869871213, 0.5801316075922345, 0.5902270997854618, 0.599460685351426, 0.6078835620074198, 0.615551871725388, 0.6225228732205471, 0.628852170248242, 0.6345919415303014, 0.6397900369017845, 0.6444897543910398, 0.6487300951181296, 0.6525463025712908 ], [ 0.6147778459872659, 0.6047008850692536, 0.5934987938862533, 0.5811481094665772, 0.567648726829439, 0.5530280681602167, 0.5373448883068165, 0.5206926411853547, 0.5032024980824408, 0.48504631134450665, 0.4664399679047052, 0.44764752025807025, 0.42898601470466696, 0.41082989324826336, 0.39361226512442105, 0.3778186807241222, 0.36396830142633263, 0.35257892481526937, 0.34411716689476424, 0.3389423992953702, 0.3372591907278956, 0.3390930423514793, 0.3442961613043819, 0.35257822631219865, 0.36354928920798807, 0.37676213786739104, 0.3917470286679214, 0.40803746910237343, 0.4251887327001327, 0.44279120039948744, 0.46047990079207873, 0.47794087676357966, 0.4949146248208201, 0.5111967874279161, 0.5266363660825741, 0.5411318405683194, 0.5546256694913129, 0.5670976935963705, 0.578557969219293, 0.589039530632159, 0.5985915215636525, 0.6072730518357276, 0.6151480307585192, 0.6222811139366078, 0.6287347865415144, 0.6345675065456684, 0.6398327562573807, 0.6445788055663694, 0.6488489759946882, 0.6526822065211277 ], [ 0.6122314071715024, 0.6017551432236014, 0.5901196536376946, 0.5773058061088177, 0.5633196063440455, 0.5481960708956642, 0.5320023383965441, 0.5148398605352835, 0.4968457599403424, 0.47819379435345144, 0.45909573816431626, 0.4398041910689765, 0.4206175559171834, 0.40188688714257376, 0.38402238156291035, 0.36749483056134663, 0.35282546194522824, 0.3405579908766706, 0.3312109799555759, 0.325216730906742, 0.32286161288217974, 0.32424604092671677, 0.3292761299808515, 0.33768623260833747, 0.3490807591194931, 0.36298117656655626, 0.37886856470365604, 0.39621803890279694, 0.41452501368014566, 0.43332443526137704, 0.4522040506602222, 0.4708125199326511, 0.48886306153331494, 0.5061333265041578, 0.5224622321282656, 0.5377444953157114, 0.5519235793332995, 0.5649837136472167, 0.576941576779171, 0.5878381520525906, 0.5977311766897904, 0.6066885050959792, 0.6147825985705605, 0.622086241317496, 0.6286694752463551, 0.6345976538172148, 0.6399304467929199, 0.6447215881631063, 0.6490191488418866, 0.6528661297801933 ], [ 0.6095725225780172, 0.5986647205407506, 0.5865572562512741, 0.5732350103391088, 0.5587101400040447, 0.5430257856491604, 0.5262585921066123, 0.5085197586336253, 0.4899546478499072, 0.47074149164216195, 0.4510903566913993, 0.4312440500058026, 0.41148266119128335, 0.39213247283352776, 0.3735777099694572, 0.35627029390153886, 0.3407295847933447, 0.32752312083379675, 0.3172228322162288, 0.31033987854740996, 0.3072523809872646, 0.3081473575023535, 0.31299484623099383, 0.32155918062066086, 0.3334384240614252, 0.34811677646166744, 0.36501710526005654, 0.38354643045530834, 0.40313177096692887, 0.4232461981526707, 0.4434259840380747, 0.46328014046829774, 0.4824937741845652, 0.5008266567106505, 0.5181082883017638, 0.5342305693812612, 0.5491390167855418, 0.562823297566537, 0.5753077084621454, 0.5866421028583138, 0.5968936523687491, 0.6061397199618699, 0.6144620121482912, 0.6219420703929055, 0.6286580623432596, 0.6346827495572721, 0.6400824473804119, 0.644916758639157, 0.6492388558716784, 0.6530961029380408 ], [ 0.6068126330666692, 0.5954413692824269, 0.5828230928793606, 0.5689461919493397, 0.5538288478813034, 0.5375227520625636, 0.5201152036476403, 0.5017291241429129, 0.48252089136326076, 0.4626765540660893, 0.44240789319238755, 0.42195070463526435, 0.4015680905691445, 0.3815607698217361, 0.3622838794517255, 0.3441655242463092, 0.32771770047859367, 0.3135276619198202, 0.3022201915261459, 0.2943900926868804, 0.290517442338864, 0.2908891645568806, 0.2955512937860735, 0.3043046416588698, 0.3167397861876572, 0.3322959535263332, 0.350326655445086, 0.3701595779692311, 0.3911442520007335, 0.4126857686215075, 0.4342656236435891, 0.45545201814896596, 0.47590217893992376, 0.4953590050087088, 0.5136439258603832, 0.5306474412545884, 0.5463184610389968, 0.5606532883778939, 0.5736848794228152, 0.5854728502792629, 0.5960945706576045, 0.6056375688994786, 0.6141933668113517, 0.6218527628672037, 0.6287024920307567, 0.6348231156814541, 0.6402879418595219, 0.6451627478229007, 0.6495060736513236, 0.6533698736985324 ], [ 0.6039690677867656, 0.5921041347091803, 0.5789375684992066, 0.564460555215945, 0.5486969664123833, 0.5317073068673859, 0.5135906227231571, 0.49448367179307967, 0.4745570438916416, 0.4540087083806324, 0.4330566658724936, 0.4119337571891446, 0.3908886323220676, 0.3701964614339756, 0.3501802581596581, 0.331238517761484, 0.31386860317780096, 0.29867092968922837, 0.286320068036862, 0.27749750285601904, 0.27279546368024715, 0.27261602282599257, 0.27709602453570575, 0.28608088061120607, 0.29915192250268074, 0.3156933586967774, 0.33497566274697577, 0.3562344337281256, 0.3787324742505101, 0.4018016745625513, 0.424866827288582, 0.44745558144449643, 0.4691987331318651, 0.48982423774847106, 0.5091474300755278, 0.5270592085932709, 0.5435134100962649, 0.5585142307668083, 0.5721042929205352, 0.5843537737736368, 0.5953508748575667, 0.6051937981166466, 0.6139842954879627, 0.6218227684907527, 0.628804814375456, 0.6350190502406431, 0.6405460011764708, 0.645457816005699, 0.6498185744942113, 0.6536849697228753 ], [ 0.6010653020954386, 0.588679768276863, 0.5749306255442174, 0.559810935017492, 0.5433496793610847, 0.5256162008620877, 0.5067222209689901, 0.4868204544508481, 0.4660991918742564, 0.44477310315018337, 0.4230720037220377, 0.40123123800801275, 0.3794889913589654, 0.358096010077375, 0.33734050353894335, 0.3175848694413519, 0.2993027434246681, 0.2830983779650277, 0.26968989482505507, 0.25984597862357156, 0.2542807082702513, 0.25352868570478776, 0.2578358084348162, 0.2671021863122602, 0.2808970486600923, 0.29853637815882356, 0.3191909984381123, 0.34199048487073797, 0.36610229648098774, 0.3907815876316756, 0.4153964726317358, 0.4394360289640163, 0.46250736837772444, 0.4843262964933019, 0.5047045363648475, 0.5235354265750086, 0.540779324855935, 0.5564495199398058, 0.5705991786769955, 0.5833096702289033, 0.5946804760505606, 0.6048207899032525, 0.6138428229815716, 0.6218567499443783, 0.6289671624855984, 0.6352708416168683, 0.6408556222682708, 0.6458001068543242, 0.6501739880836644, 0.6540387626317852 ], [ 0.5981309995242137, 0.5852028841872711, 0.5708420724384546, 0.5550423677032765, 0.5378370096111115, 0.5193038877214522, 0.499568033105636, 0.47880006595132224, 0.45720955501459154, 0.4350331480870978, 0.41251907227882606, 0.3899121006057566, 0.367445631974215, 0.3453485975579639, 0.3238724933510557, 0.3033367850035332, 0.28418063844266134, 0.26699994080510736, 0.25254644909523577, 0.2416731859834724, 0.23522451466140473, 0.2338870544157848, 0.23803799326368158, 0.2476442897562536, 0.2622581696608529, 0.28110993183949096, 0.3032510838153, 0.3276909632041032, 0.35349497048936435, 0.37984071866754343, 0.4060422135856181, 0.43155386037716487, 0.4559630758584417, 0.4789770004819902, 0.500406527061817, 0.5201495202449541, 0.5381743453591185, 0.5545043927895698, 0.5692040225622403, 0.5823661842135346, 0.5941018476596408, 0.6045312885977183, 0.6137771945061882, 0.6219594893394386, 0.6291917164676287, 0.635578773219548, 0.6412157601815793, 0.6461876966046242, 0.6505698599244094, 0.6544285300035174 ], [ 0.5952018028228241, 0.5817158095420157, 0.5667215488322682, 0.5502122472593691, 0.5322242607525512, 0.5128433564101204, 0.49220807901230057, 0.4705085159708385, 0.44797890301324156, 0.4248833495090629, 0.40149587146525617, 0.3780790066853, 0.35486891377664176, 0.3320772046600775, 0.30991806795693083, 0.288661416837097, 0.268700017355855, 0.250606538325763, 0.2351525693500558, 0.2232684506558547, 0.21593500888731124, 0.2140120672830144, 0.2180345061874766, 0.22804977138294916, 0.24358444046711342, 0.2637602215250376, 0.2874871789722144, 0.31364176465751936, 0.34118436010953523, 0.3692181309284837, 0.39700853828080035, 0.4239811067972968, 0.449708539900492, 0.4738931753195532, 0.49634786257696556, 0.5169768805745963, 0.5357577944656315, 0.5527247767421524, 0.5679537006016653, 0.5815491730408071, 0.5936335745675426, 0.6043380938864876, 0.61379567991331, 0.6221357760290482, 0.6294806526396951, 0.6359431163626984, 0.6416253506578647, 0.6466186355833405, 0.6510037036766027, 0.6548515125629009 ], [ 0.5923188449356496, 0.5782680826346605, 0.5626280597619562, 0.5453899703603016, 0.5265918783296749, 0.5063263422265053, 0.4847450735703974, 0.462058574088472, 0.43852860876982325, 0.4144520289488305, 0.39013640674137884, 0.36587155269023486, 0.34190583417321563, 0.31844028458032086, 0.29565312730460447, 0.27375907445980235, 0.25309214860580326, 0.23418496654618265, 0.21781158183002522, 0.204968089538525, 0.19677465773953484, 0.1942862618979419, 0.19822532305020768, 0.2087330444057985, 0.2252952639586206, 0.24689594944842358, 0.2722812258851241, 0.3001867080219705, 0.3294708567088197, 0.3591703818680412, 0.38851082304950446, 0.41689613482694166, 0.4438897938748323, 0.46919312980292766, 0.4926233867514449, 0.5140926863586908, 0.5335885063659368, 0.5511560265398768, 0.5668825402526517, 0.5808840231218364, 0.5932938679502927, 0.6042537284253471, 0.6139063574529121, 0.622390277278506, 0.6298360779401335, 0.6363641101867865, 0.6420833213837427, 0.6470909798978616, 0.6514730450747354, 0.655304964280878 ], [ 0.5895279605187695, 0.5749155635150462, 0.5586290180655765, 0.5406559744366167, 0.5210345882870367, 0.4998627177162841, 0.4773042659808108, 0.4535902750351246, 0.4290120097169292, 0.40390362752603126, 0.3786138340595792, 0.35346990262790723, 0.32874355162169977, 0.3046344234502724, 0.2812886662892305, 0.25886201960956523, 0.2376180801289302, 0.2180317628468517, 0.20085971334004346, 0.18714811492986153, 0.17815535428563736, 0.17515267565038767, 0.17908088155437837, 0.19018367464322375, 0.20788093099985502, 0.23098434176884994, 0.25805785892462435, 0.287697447774125, 0.31867102065322916, 0.3499620480579815, 0.38076725183328247, 0.4104770522017168, 0.4386509898465849, 0.46499258581981423, 0.4893252022612411, 0.5115695308716885, 0.5317230411176498, 0.5498415945202682, 0.5660233418231689, 0.5803949406501826, 0.5931000614750183, 0.6042900899858598, 0.6141168833277347, 0.6227273952449531, 0.6302599510195384, 0.6368419287810492, 0.6425885911928855, 0.6476028120495616, 0.651975455900731, 0.6557861937403168 ], [ 0.5868785929027946, 0.5717191373324066, 0.5547987510679853, 0.5361000860149903, 0.5156596726819256, 0.49357884544975733, 0.4700320938302886, 0.44527016583392354, 0.4196145678710496, 0.3934400434610863, 0.3671430633301217, 0.34109844900554626, 0.31561354029803235, 0.29089812503360424, 0.2670731872535187, 0.24423456660767678, 0.22256573537167026, 0.2024670708520803, 0.1846573365307085, 0.17021471454035333, 0.1605309344608482, 0.15711148261867477, 0.16114189003954255, 0.17296489709199117, 0.19189542761765327, 0.21653774232387837, 0.24526756237888067, 0.276556401186918, 0.3091023180316938, 0.34185306790527137, 0.3739887836838849, 0.40489396825788954, 0.43412852376254524, 0.461400262268557, 0.4865393716418476, 0.5094749688098703, 0.5302138687344043, 0.5488216936657054, 0.5654064014842967, 0.5801042452170183, 0.5930681082986661, 0.604458101079324, 0.6144342554269818, 0.6231511154519681, 0.6307539929737164, 0.6373766369289856, 0.6431400576048987, 0.6481522501765457, 0.6525085772948339, 0.6562925958135569 ], [ 0.5844224103617118, 0.5687430149792209, 0.5512164561739086, 0.5318191273517854, 0.5105842694726419, 0.48761468538167674, 0.46309331210921634, 0.43728878691364176, 0.41055213524494677, 0.3833001448898044, 0.35598187232854245, 0.3290285873316329, 0.30279563894232475, 0.2775162821096087, 0.253296429461141, 0.23017484881805497, 0.20824867330144656, 0.1878297191697721, 0.16958041475196284, 0.15459349446278323, 0.14438712976637555, 0.14071276201597993, 0.1450123852430689, 0.15770049985630544, 0.17793399311017918, 0.2040853117565316, 0.23435820611940925, 0.2671319093224384, 0.30106319342895954, 0.33508350083224375, 0.3683677936701693, 0.4003006366611701, 0.43044492070774504, 0.4585134080855678, 0.4843426531485882, 0.5078691294073189, 0.5291076235695156, 0.5481320225964511, 0.5650585832092307, 0.5800316986598327, 0.5932121008425075, 0.6047673709258192, 0.6148645811997416, 0.6236648533168706, 0.631319591907492, 0.6379681370170198, 0.643736574095129, 0.6487374465319262, 0.6530701324799859, 0.6568216733832479 ], [ 0.5822116684976855, 0.5660526669763992, 0.5479636315359343, 0.5279137813823013, 0.5059316427943591, 0.48211950739622406, 0.45666629346766924, 0.4298558586702881, 0.4020665038486742, 0.37375630860517406, 0.34542908187163013, 0.31757896920714795, 0.2906203550795676, 0.2648238868641636, 0.2402933120394855, 0.2170175975841638, 0.19500641275448707, 0.1744740710300209, 0.1560132457293428, 0.14071837801433285, 0.13022811205543425, 0.12654086942830645, 0.1313365964439124, 0.14503801376347603, 0.16658592928581997, 0.1941254517036213, 0.22573449908730528, 0.2597469527868235, 0.29481017689110933, 0.3298571853881981, 0.3640665099331962, 0.3968262755564272, 0.4277030246483679, 0.4564136509069439, 0.4827995163964003, 0.5068025591089345, 0.5284435381396071, 0.5478026256921709, 0.5650024889678951, 0.5801939025962514, 0.5935438361677566, 0.6052258854262611, 0.6154128604434399, 0.624271306141117, 0.6319577063920425, 0.638616110512322, 0.6443769193223207, 0.6493565765823595, 0.6536579296848555, 0.6573710494698897 ], [ 0.5802973808506047, 0.5637124635302476, 0.5451210609296151, 0.5244847885021799, 0.50182646736599, 0.47724617898405697, 0.45093632482604934, 0.42319275091768666, 0.3944174421397891, 0.36510668528365764, 0.33581791867218946, 0.30711082296460623, 0.2794666441097056, 0.2532060816529207, 0.2284453099177705, 0.20513542204701868, 0.18320417234297293, 0.16276698475474813, 0.14434136392671987, 0.1290187432809163, 0.11855538959048403, 0.11517992859597774, 0.12074331230185065, 0.13557394688181737, 0.15835727160198873, 0.18706096368337988, 0.21971011108830663, 0.25464598068347527, 0.29053546511147477, 0.32632664010507295, 0.36120677148195685, 0.39456853789686364, 0.42598111005492695, 0.45516355406932674, 0.4819596891328371, 0.5063144560721968, 0.5282521622226933, 0.5478569581659837, 0.5652557738332133, 0.5806037962519419, 0.5940724486800527, 0.6058397402899968, 0.6160827937145087, 0.6249723182093848, 0.6326687733095726, 0.6393199579600668, 0.6450597611368674, 0.6500078207146888, 0.6542698566305947, 0.6579384706666648 ], [ 0.5787273848143826, 0.5617831325476706, 0.5427654916573872, 0.5216286386407035, 0.49838930237450696, 0.4731441828165445, 0.4460869686932876, 0.4175221020067648, 0.3878707079730281, 0.35766207965748786, 0.32750262822670373, 0.2980154456645724, 0.269751359582344, 0.2430900844954835, 0.21817445794129126, 0.19493365851592326, 0.1732269578758877, 0.15307953138216313, 0.13493881232966098, 0.11989791124575015, 0.10982864299000372, 0.10714445918626712, 0.11374309063273084, 0.12973994735051858, 0.1535749397478153, 0.18313152870715388, 0.2164640795341293, 0.251967543457027, 0.28834967481538226, 0.3245819904676778, 0.3598627464766994, 0.39358860450440397, 0.4253294995980357, 0.4548042382895414, 0.4818564561165327, 0.5064314358954745, 0.5285544567514081, 0.5483112146773377, 0.5658306451267605, 0.5812702812905509, 0.5948041288152779, 0.6066129306468251, 0.6168766260922247, 0.6257687662318655, 0.6334526255364625, 0.6400787416391133, 0.6457836185171815, 0.6506893409333063, 0.6549038683660513, 0.6585218031966035 ], [ 0.5775444110840314, 0.560319182663573, 0.5409662025260858, 0.5194330168860605, 0.4957305816002409, 0.46995175432072844, 0.4422899093084387, 0.41305495141876797, 0.3826821751276569, 0.3517270788683396, 0.32083710105198315, 0.2906913991307829, 0.2619064867931338, 0.2349238016322308, 0.20992389102791037, 0.18683219296255715, 0.16546093546824375, 0.14576545955146114, 0.12814017889503546, 0.11369168098536131, 0.1043968129362533, 0.10277006241247547, 0.11059440714176727, 0.12768676197765583, 0.15231015229361133, 0.18237005457631073, 0.21601705645925007, 0.2517311840199014, 0.2882742731277534, 0.3246463401146139, 0.3600579349496175, 0.39390914286790824, 0.42576911592111, 0.45535432108708235, 0.482505863638507, 0.5071669241687782, 0.5293613236325075, 0.5491739616978819, 0.5667335728740069, 0.5821979927437332, 0.5957419415283436, 0.6075472074658287, 0.6177950342206863, 0.6266604713482538, 0.6343084244175021, 0.640891134851551, 0.6465468246296914, 0.6513992551063373, 0.6555579704817898, 0.6591190231839984 ], [ 0.576784278322578, 0.5593664634918575, 0.5397817048190771, 0.5179723428959383, 0.4939445901231825, 0.4677877751853105, 0.4396941127108905, 0.4099764044891796, 0.37907920567564257, 0.34757647143439613, 0.31614609290421986, 0.28551102428418695, 0.2563423478712716, 0.2291377603727669, 0.20412039415178862, 0.18122935391614875, 0.1602575004624821, 0.1411222346192261, 0.12419345579088956, 0.11060516410208186, 0.10240929882353042, 0.10210422596821782, 0.11121197194157986, 0.12923881261521494, 0.15436825164246534, 0.1846070276620597, 0.21823862160648055, 0.25384371621023744, 0.29024607620098186, 0.32647874213002503, 0.3617670383002015, 0.39551543781289267, 0.42729213542845523, 0.4568102701427239, 0.48390688731427384, 0.5085212120585204, 0.5306735954397941, 0.5504460903404053, 0.5679652238734593, 0.5833872255658407, 0.5968857522762171, 0.6086420071939251, 0.61883706209001, 0.6276461423961209, 0.6352346110929062, 0.6417553813427542, 0.6473474939992843, 0.6521356112841442, 0.656230199807125, 0.6597282028691832 ], [ 0.5764743370847941, 0.5589600440282168, 0.5392568411639329, 0.517303792668051, 0.4931039969367759, 0.466744252098791, 0.43841549336440017, 0.408431505602616, 0.3772415386623273, 0.34542986290182087, 0.3136924648892841, 0.2827798778252848, 0.2534000560540926, 0.22609294231818033, 0.20112105148324855, 0.17845054686205822, 0.15788512291792553, 0.13934432363146523, 0.12321052188140921, 0.11065710149325174, 0.10376121031777953, 0.10488288744102373, 0.11520170705328334, 0.13396576624154927, 0.15935973518201368, 0.18952484296886213, 0.2228844695320481, 0.2581235068311797, 0.2941328199153722, 0.3299841359656922, 0.36492230770792866, 0.39835945997608574, 0.42986460328909915, 0.45914808606335483, 0.4860425126995186, 0.510482145275275, 0.5324824681201131, 0.5521210807108033, 0.569520615361286, 0.5848340158444858, 0.5982322613886585, 0.6098944566036867, 0.6200001081395442, 0.6287233532854855, 0.6362288795559367, 0.6426692676188345, 0.6481834963530791, 0.6528963643951609, 0.6569186046123507, 0.6603474945021952 ], [ 0.5766322760905328, 0.5591225778900574, 0.5394205360769431, 0.5174641874947571, 0.49325553070986144, 0.466880280132908, 0.43852846407165563, 0.4085134127331963, 0.3772848265218453, 0.3454290448165894, 0.3136467977096055, 0.28269745156757603, 0.25330347642622447, 0.2260262706988364, 0.2011569375826487, 0.17869622076119548, 0.15848705720427111, 0.14049376611192388, 0.1251517837877875, 0.11368359660199284, 0.10813622625850772, 0.1106384239511174, 0.12201600752417162, 0.14133231237716062, 0.16681582182631344, 0.19673812703358845, 0.22964974619641002, 0.2643352439252806, 0.29975570604852875, 0.33502799147424894, 0.36942310356543145, 0.40236614622913924, 0.4334305863456654, 0.46232606368989226, 0.488881578177327, 0.5130263553331887, 0.5347703214724853, 0.5541855444847398, 0.5713894685701727, 0.5865303654699648, 0.5997751409736986, 0.6112994503485816, 0.621279963256233, 0.6298885552992686, 0.6372881729641089, 0.6436301100300257, 0.6490524391174418, 0.6536793572602482, 0.6576212261267419, 0.6609751135441111 ], [ 0.5772653795352273, 0.5598632897121781, 0.5402844040929098, 0.5184680695761484, 0.49441730000981077, 0.46821828507144836, 0.4400606362024278, 0.41025589833570963, 0.37925003831699167, 0.34762315354363105, 0.3160670262134557, 0.2853302407611532, 0.25612566964511024, 0.22901238395548948, 0.20429498653244754, 0.18201124021928908, 0.16206692754505106, 0.1445102399687407, 0.12986788479427314, 0.11941997034010346, 0.11513935815095233, 0.11887472630917494, 0.13112833061882462, 0.15083966207316962, 0.1762929290446508, 0.2058680165837805, 0.23822071743927076, 0.27222533979862895, 0.30691344023755973, 0.34145256784149536, 0.37514689421408504, 0.4074408596181583, 0.4379172522915409, 0.4662882640719717, 0.49238115594287707, 0.5161208950798692, 0.5375118418487301, 0.5566199925749007, 0.5735567293325742, 0.5884645902407493, 0.6015052625092239, 0.6128497946056936, 0.6226708963860887, 0.6311371231460935, 0.6384087033307932, 0.6446347575119974, 0.6499516598702787, 0.6544823074035065, 0.6583360828747195, 0.6616093226085934 ], [ 0.5783702884602412, 0.5611776636227364, 0.5418423408447852, 0.5203071614449047, 0.4965780726091835, 0.47074305355023094, 0.4429915023749807, 0.41363154666057156, 0.383100985552148, 0.35196529432602675, 0.32089393113529713, 0.290606009458325, 0.2617822803064731, 0.23495746827815706, 0.21043522414081225, 0.18829059552511232, 0.168510011090244, 0.15125603951331304, 0.13717568418806397, 0.12761136961510197, 0.12443430804296221, 0.12920257809552177, 0.14214021925196973, 0.16210475555356518, 0.18743366615144536, 0.21659023603211675, 0.24831210328489361, 0.28155010284204357, 0.31540294216616555, 0.34909185611189797, 0.38195991239539956, 0.4134769413884462, 0.44324020653611457, 0.4709682824769792, 0.496489211679036, 0.5197251149227646, 0.5406753433055832, 0.5593997618442065, 0.5760032137269306, 0.59062176486834, 0.6034109986060642, 0.614536406818819, 0.6241657820289706, 0.6324634318014138, 0.6395859934091142, 0.6456796099105725, 0.6508782293424944, 0.6553028006227929, 0.6590611589635555, 0.6622484173170685 ], [ 0.5799332766578674, 0.5630478494774825, 0.5440711211171998, 0.522951246852787, 0.49969857410159546, 0.47440364905871923, 0.4472552634112411, 0.4185559166853091, 0.38873041810649545, 0.3583213643982838, 0.32796364960435365, 0.2983309661514815, 0.2700540747467779, 0.24362724558646337, 0.21934368509774044, 0.19731678585038293, 0.17762572711350333, 0.1605658328857276, 0.1469178222072054, 0.1380812518598883, 0.13580958758387693, 0.14138558793198405, 0.15480553172359937, 0.17487598996696438, 0.1999832208143689, 0.22865366053771666, 0.25968597003617316, 0.29209297602208173, 0.32503387004882006, 0.3577831751032282, 0.3897260916190182, 0.42036244253929395, 0.4493084894201352, 0.4762929231423377, 0.5011472892872081, 0.5237926142235318, 0.5442241789587918, 0.5624960299916223, 0.5787063324080498, 0.5929842346912633, 0.6054785794714118, 0.6163485592051697, 0.6257562620368148, 0.6338609597237701, 0.6408149384490726, 0.6467606509363911, 0.6518289648832978, 0.6561382917625692, 0.6597943970613919, 0.6628907149462013 ], [ 0.5819310079329271, 0.5654437353038617, 0.546931922949782, 0.5263503445845306, 0.5037145990947818, 0.4791178770883021, 0.4527472448749167, 0.42489674929909993, 0.3959731559206439, 0.3664885365574471, 0.337033085984633, 0.30822340808173765, 0.28062909486192045, 0.25469596896615754, 0.23070416961159854, 0.20880847941557537, 0.18918725005444326, 0.17227307014162713, 0.15897475778349443, 0.1507298918568893, 0.14916292134581585, 0.15531180085482496, 0.16899876156064295, 0.18900831400117132, 0.21377530431826583, 0.24187624888164816, 0.2721545572651609, 0.30367099191776, 0.33563626488621373, 0.36737455927599233, 0.3983135203435453, 0.427985441304411, 0.4560287994874195, 0.4821854736018182, 0.5062930074886061, 0.5282731214851165, 0.5481181426744497, 0.565876850778438, 0.5816408477426365, 0.5955321632403412, 0.6076924834938148, 0.6182741524847056, 0.6274329329924072, 0.6353224130155118, 0.6420898846357386, 0.6478734940646119, 0.652800453702351, 0.6569861126445129, 0.6605336964157477, 0.6635345464412085 ], [ 0.5843317027945545, 0.5683245755393658, 0.5503726064557134, 0.5304379063048764, 0.5085415081538813, 0.48477861474252776, 0.45933279564075913, 0.43248641939001536, 0.40462334003635136, 0.3762187349146845, 0.34781094850903144, 0.3199530062544891, 0.2931493864986079, 0.26779743211527557, 0.24416766233676518, 0.22246039844647772, 0.20295352037352016, 0.18620786320603178, 0.17323710450855906, 0.16548561950501164, 0.16443965804753166, 0.17093005494913427, 0.18465948602123888, 0.20442065975609885, 0.22870310198223187, 0.25612788078680904, 0.2855722701063853, 0.3161329125801593, 0.34706223472362563, 0.3777281031542088, 0.40759826817549855, 0.4362377105151709, 0.46330871147972336, 0.48856838493357596, 0.5118622178434523, 0.5331141911717624, 0.5523147795514739, 0.5695081512747405, 0.5847796225412465, 0.598244086838339, 0.6100358420134089, 0.6203000062176057, 0.6291855500322783, 0.6368398645485313, 0.6434047204413972, 0.6490134391495775, 0.6537890847126046, 0.6578434866880337, 0.6612769159062168, 0.6641782520749533 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "0_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "1_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.6277294158935547, 0.38052885009160914, 0.3966112121221701, 0.37362273770844395, 0.31025467595655604, 0.4284267996086526, 0.4326465825279912, 0.41671958318646196, 0.40357985579764527, 0.40557763463186536, 0.4027653266538536, 0.45428466796875, 0.3987150642318894, 0.3880407123699347, 0.39839821837874717, 0.40115845606021105, 0.3811014065594791, 0.40415964754879624, 0.43538221112359243, 0.3403099160641432, 0.5331403696909547, 0.5197229385375977, 0.07299105077981949, 0.7812733054161072, 0.7793313264846802, 0.4397096181444693, 0.4508682812595852, 0.4442546837838877, 0.4023253827598402 ], "xaxis": "x", "y": [ 0.4291459918022156, 0.8643108098921908, 0.943004582943365, 0.8513208918328359, 0.8790118206277978, 0.8707049009577401, 0.896337801552094, 0.8619044524953918, 0.835066406749477, 0.8365064659540049, 0.8520593395992158, 0.818475604057312, 0.8750935989592322, 0.8984318135376339, 0.9062973829776372, 0.8989616155930102, 0.8964026814844054, 0.8856697149366803, 0.9386115678251761, 0.34734649676829576, 0.08764340542256832, 0.6147963404655457, 0.45120418071746826, 0.4354522228240967, 0.10448108613491058, 0.7956059181181079, 0.8080156635595822, 0.8074923799911655, 0.8455984607523721 ], "yaxis": "y" }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "showlegend": false, "text": [ "0_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "1_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.6277294158935547, 0.38052885009160914, 0.3966112121221701, 0.37362273770844395, 0.31025467595655604, 0.4284267996086526, 0.4326465825279912, 0.41671958318646196, 0.40357985579764527, 0.40557763463186536, 0.4027653266538536, 0.45428466796875, 0.3987150642318894, 0.3880407123699347, 0.39839821837874717, 0.40115845606021105, 0.3811014065594791, 0.40415964754879624, 0.43538221112359243, 0.3403099160641432, 0.5331403696909547, 0.5197229385375977, 0.07299105077981949, 0.7812733054161072, 0.7793313264846802, 0.4397096181444693, 0.4508682812595852, 0.4442546837838877, 0.4023253827598402 ], "xaxis": "x2", "y": [ 0.4291459918022156, 0.8643108098921908, 0.943004582943365, 0.8513208918328359, 0.8790118206277978, 0.8707049009577401, 0.896337801552094, 0.8619044524953918, 0.835066406749477, 0.8365064659540049, 0.8520593395992158, 0.818475604057312, 0.8750935989592322, 0.8984318135376339, 0.9062973829776372, 0.8989616155930102, 0.8964026814844054, 0.8856697149366803, 0.9386115678251761, 0.34734649676829576, 0.08764340542256832, 0.6147963404655457, 0.45120418071746826, 0.4354522228240967, 0.10448108613491058, 0.7956059181181079, 0.8080156635595822, 0.8074923799911655, 0.8455984607523721 ], "yaxis": "y2" } ], "layout": { "annotations": [ { "font": { "size": 14 }, "showarrow": false, "text": "Mean", "x": 0.25, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 14 }, "showarrow": false, "text": "Standard Error", "x": 0.8, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" } ], "autosize": false, "height": 450, "hovermode": "closest", "legend": { "orientation": "h", "x": 0, "y": -0.25 }, "margin": { "b": 100, "l": 35, "pad": 0, "r": 35, "t": 35 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "width": 950, "xaxis": { "anchor": "y", "autorange": false, "domain": [ 0.05, 0.45 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "xaxis2": { "anchor": "y2", "autorange": false, "domain": [ 0.6, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "yaxis": { "anchor": "x", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x2" }, "type": "linear" }, "yaxis2": { "anchor": "x2", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "type": "linear" } } }, "text/html": [ "