{ "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": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "render(plot_contour(model=model, param_x='x1', param_y='x2', metric_name='hartmann6'))" ] }, { "cell_type": "code", "execution_count": 8, "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": [ [ 1.2379842429665655, 1.2340550894238913, 1.2303349328258402, 1.2268422295774317, 1.2235953708298333, 1.2206125570229442, 1.2179116645895522, 1.2155101056762625, 1.2134246819063095, 1.2116714333774699, 1.2102654842523577, 1.2092208864570313, 1.208550463157009, 1.2082656538274503, 1.2083763628781992, 1.2088908139360104, 1.2098154120269404, 1.2111546160408175, 1.2129108239933133, 1.2150842737203844, 1.2176729617292514, 1.2206725829671488, 1.224076494224192, 1.2278757037266053, 1.2320588891685154, 1.2366124459493777, 1.241520566719474, 1.2467653524994189, 1.2523269546672051, 1.2581837460586425, 1.2643125183813095, 1.270688702182593, 1.2772866048166083, 1.2840796612828553, 1.2910406924956432, 1.2981421654939305, 1.3053564502974953, 1.3126560685190705, 1.3200139294044848, 1.327403549641201, 1.3347992540005844, 1.342176354617232, 1.349511307425662, 1.3567818449445035, 1.3639670852039978, 1.371047617143028, 1.3780055632524115, 1.3848246206106354, 1.3914900817488605, 1.3979888369984415 ], [ 1.2327818059204267, 1.2287586954564207, 1.2249514907992276, 1.221379373473523, 1.2180614581931328, 1.2150166603628245, 1.2122635552193146, 1.2098202295467533, 1.2077041270903943, 1.2059318889778243, 1.2045191906371258, 1.2034805768735735, 1.2028292969297572, 1.2025771415081885, 1.2027342838816975, 1.2033091273564047, 1.2043081614867854, 1.2057358295716067, 1.2075944100809972, 1.2098839147698326, 1.212602006306773, 1.215743938268841, 1.2193025202887258, 1.223268110961655, 1.227628640786148, 1.2323696669015871, 1.2374744606835828, 1.24292412837695, 1.2486977639236756, 1.2547726320430328, 1.2611243785254846, 1.2677272637002919, 1.2745544142113965, 1.2815780876503542, 1.2887699442842289, 1.2961013200862295, 1.3035434955054674, 1.3110679548585877, 1.3186466318367265, 1.3262521373407834, 1.3338579666332242, 1.3414386835804477, 1.348970080519921, 1.3564293129941631, 1.3637950092312616, 1.3710473548078832, 1.378168153400918, 1.385140864916985, 1.391950622587779, 1.3985842308385172 ], [ 1.2276180305244986, 1.223501227651843, 1.2196073494617234, 1.215956321710438, 1.2125680019102192, 1.2094620394086257, 1.2066577265383824, 1.2041738418591812, 1.2020284867226185, 1.2002389165975165, 1.1988213687916602, 1.1977908883943194, 1.1971611544396963, 1.1969443084537847, 1.1971507876961995, 1.1977891655458954, 1.1988660016063941, 1.2003857042229016, 1.2023504082080005, 1.2047598706573601, 1.207611387788115, 1.2108997357286968, 1.214617138100077, 1.218753263020081, 1.2232952517994218, 1.2282277810525184, 1.2335331592057786, 1.2391914574623166, 1.245180674214217, 1.2514769307479583, 1.2580546949514377, 1.26488702869569, 1.2719458537169617, 1.2792022302311339, 1.2866266422085235, 1.2941892832278061, 1.3018603370891757, 1.3096102478544391, 1.3174099746393433, 1.3252312272520343, 1.3330466795956155, 1.3408301585852274, 1.3485568071327456, 1.3562032204980656, 1.3637475559754733, 1.371169616466205, 1.3784509089783747, 1.3855746794924821, 1.3925259259375444, 1.3992913912448455 ], [ 1.222502221597116, 1.218292058997703, 1.2143119331405927, 1.2105825327957067, 1.2071244773206784, 1.2039581689363839, 1.20110363545298, 1.198580364560076, 1.1964071310284283, 1.1946018184001042, 1.1931812369647927, 1.1921609400273114, 1.1915550406623538, 1.1913760313249193, 1.1916346088380827, 1.1923395074146452, 1.1934973424865958, 1.1951124682171859, 1.1971868516527437, 1.199719966529119, 1.2027087097680507, 1.206147343661173, 1.2100274666150919, 1.2143380150860204, 1.2190652989316226, 1.2241930718233187, 1.2297026375821543, 1.2355729923371916, 1.2417810012978125, 1.2483016077487992, 1.2551080707079454, 1.2621722266269535, 1.269464769655635, 1.2769555443944651, 1.2846138447676971, 1.2924087126626114, 1.3003092302741552, 1.308284800621509, 1.3163054114052724, 1.324341878189265, 1.3323660637619856, 1.3403510714102984, 1.3482714106826483, 1.3561031350023525, 1.3638239511935133, 1.3714133015910863, 1.3788524199171293, 1.3861243625162845, 1.39321401685861, 1.4001080894420126 ], [ 1.217444242106747, 1.2131411216506627, 1.2090752234680007, 1.2052680175953545, 1.2017409039175002, 1.198515056263138, 1.1956112562752876, 1.193049718267463, 1.190849906537651, 1.1890303468686079, 1.1876084341888504, 1.1866002385987917, 1.186020312175424, 1.1858814991539295, 1.186194752243423, 1.1869689579665603, 1.1882107740195282, 1.189924481730696, 1.1921118567515174, 1.1947720611369814, 1.1979015599538363, 1.2014940654736155, 1.2055405118375664, 1.2100290627889925, 1.2149451546219292, 1.2202715758664313, 1.2259885844089844, 1.232074061744407, 1.238503702914345, 1.2452512394770419, 1.2522886916629759, 1.2595866447991446, 1.2671145442204645, 1.2748410022978487, 1.2827341109353483, 1.2907617529263462, 1.2988919058845239, 1.3070929330303243, 1.3153338558576606, 1.3235846045651807, 1.3318162430521545, 1.3400011662001972, 1.3481132680479166, 1.3561280802860343, 1.3640228812349953, 1.3717767761027848, 1.3793707498517476, 1.3867876944285344, 1.3940124124341553, 1.401031599537387 ], [ 1.2124545673326423, 1.2080589644825552, 1.2039078202694609, 1.2000234034947979, 1.1964279126834625, 1.1931433116352748, 1.190191154014673, 1.1875923982919734, 1.1853672146408563, 1.1835347856835685, 1.1821131032503969, 1.1811187635759604, 1.1805667635855648, 1.1804703011249376, 1.1808405821529664, 1.1816866380477424, 1.1830151562712339, 1.1848303276974719, 1.1871337139321312, 1.1899241379340746, 1.1931976011813534, 1.1969472304893047, 1.2011632573614406, 1.2058330324053552, 1.2109410768444417, 1.2164691724774594, 1.222396490572562, 1.2286997591440705, 1.2353534668919708, 1.242330100854989, 1.249600413628626, 1.2571337149264072, 1.2648981814051328, 1.272861178099825, 1.2809895845574684, 1.2892501188226553, 1.2976096527855323, 1.3060355130034282, 1.3144957618909296, 1.3229594550742911, 1.3313968716644111, 1.3397797151658084, 1.3480812836651266, 1.3562766088, 1.3643425637760587, 1.3722579413623284, 1.3800035033470959, 1.3875620033757534, 1.3949181854225718, 1.402058760376002 ], [ 1.2075443427418102, 1.2030568150972996, 1.1988210077384216, 1.1948600047228681, 1.1911968205299643, 1.1878542267213559, 1.1848545668382644, 1.1822195609547699, 1.1799701016316997, 1.1781260433366996, 1.1767059877042654, 1.175727067295492, 1.175204730773412, 1.1751525326281773, 1.1755819307621487, 1.1765020953747831, 1.1779197326693065, 1.1798389269377112, 1.182261004566097, 1.1851844234364517, 1.1886046910748875, 1.192514314696563, 1.1969027860024433, 1.2017566031664393, 1.2070593318859395, 1.2127917066334146, 1.2189317723348978, 1.22545506562876, 1.2323348336684523, 1.239542287194775, 1.2470468834055424, 1.2548166330880668, 1.2628184256396402, 1.2710183650483888, 1.2793821096761633, 1.2878752087781262, 1.296463429082793, 1.3051130653918683, 1.31379122997978, 1.3224661165132061, 1.3311072352097026, 1.339685616958406, 1.3481739850909578, 1.356546894384655, 1.3647808376787094, 1.3728543211738693, 1.380747910057823, 1.388444246552033, 1.3959280428130614, 1.4031860513495502 ], [ 1.202725444552139, 1.1981466452840772, 1.1938268248623884, 1.1897898978086037, 1.1860597108164723, 1.1826598602003173, 1.179613496708523, 1.1769431192305018, 1.1746703592880405, 1.172815758561172, 1.1713985420440225, 1.170436389746831, 1.1699452101455183, 1.1699389188206686, 1.1704292259156204, 1.171425436173271, 1.1729342653799895, 1.1749596770514785, 1.1775027431385707, 1.1805615324087504, 1.1841310299656924, 1.188203091093493, 1.1927664322370861, 1.1978066614344938, 1.2033063498770578, 1.2092451454750563, 1.2155999283446364, 1.2223450070267776, 1.2294523530430344, 1.2368918701546203, 1.244631693506324, 1.2526385127963908, 1.2608779128013003, 1.2693147240623246, 1.2779133763420145, 1.286638247584185, 1.295454001532918, 1.3043259078358755, 1.313220139313411, 1.3221040420528727, 1.3309463750251351, 1.3397175169632898, 1.3483896392468973, 1.3569368444645615, 1.3653352711580735, 1.3735631659668792, 1.381600924983646, 1.3894311065978202, 1.3970384184475004, 1.4044096813274298 ], [ 1.1980105416636402, 1.193341238561999, 1.1889381387318974, 1.1848260007807974, 1.1810295185412296, 1.1775731290178595, 1.1744808067537695, 1.171775846254835, 1.169480634514623, 1.1676164160837943, 1.1662030535152765, 1.1652587863762045, 1.1647999923368038, 1.1648409541126346, 1.1653936362394852, 1.1664674757918576, 1.1680691912108996, 1.170202613383694, 1.1728685430114716, 1.1760646381186675, 1.1797853352842949, 1.1840218078144353, 1.1887619636079658, 1.1939904848804541, 1.1996889111883027, 1.2058357663251986, 1.2124067286486082, 1.2193748432558482, 1.2267107732117917, 1.2343830857995899, 1.2423585686031573, 1.2506025692231426, 1.2590793516540444, 1.267752461868037, 1.2765850949910889, 1.2855404566191888, 1.2945821112798732, 1.3036743117487128, 1.3127823038220021, 1.3218726021611567, 1.330913233899523, 1.3398739477830255, 1.3487263876565336, 1.3574442300716774, 1.366003286652867, 1.374381572598853, 1.3825593433077497, 1.3905191015913236, 1.3982455782921672, 1.405725689342701 ], [ 1.1934131573443383, 1.1886542581532178, 1.1841687190211672, 1.1799821543518734, 1.1761201183978738, 1.1726079034579948, 1.1694703234691324, 1.1667314847416304, 1.1644145460358746, 1.1625414706260642, 1.1611327734309922, 1.1602072666956695, 1.1597818080655058, 1.159871055191335, 1.1604872312250358, 1.161639905700527, 1.1633357953366792, 1.165578589241626, 1.1683688028417651, 1.1717036646025023, 1.1755770392508245, 1.1799793907494056, 1.184897787701292, 1.1903159531747927, 1.1962143601209647, 1.2025703726074664, 1.2093584320203643, 1.216550286213959, 1.2241152583624824, 1.2320205510506115, 1.2402315800088535, 1.2487123309355854, 1.2574257321224322, 1.2663340351665402, 1.2753991959399575, 1.284583248191309, 1.2938486626516, 1.3031586852573374, 1.312477649032077, 1.3217712552178833, 1.3310068203602317, 1.3401534871672336, 1.3491823980401714, 1.358066831169091, 1.3667822999771453, 1.3753066174612318, 1.3836199276039278, 1.3917047065191768, 1.3995457363446264, 1.4071300551145989 ], [ 1.1889477287600279, 1.184100313400884, 1.1795333115847833, 1.1752732029583934, 1.1713464134969218, 1.1677791037530931, 1.1645969413919384, 1.161824859868957, 1.159486805606265, 1.1576054765208348, 1.156202055244717, 1.1552959408306942, 1.1549044831390254, 1.1550427244327792, 1.1557231529533363, 1.1569554733891727, 1.1587463991796492, 1.1610994715044445, 1.164014909596646, 1.167489496683762, 1.1715165054085708, 1.1760856660121581, 1.1811831798753627, 1.1867917802107415, 1.19289084077512, 1.199456532436705, 1.2064620262952426, 1.2138777408465122, 1.2216716294493628, 1.22980950315509, 1.2382553828672034, 1.246971873887854, 1.2559205552407158, 1.2650623757861892, 1.274358049086951, 1.2837684392370294, 1.2932549304091232, 1.302779773657383, 1.3123064054787823, 1.321799733724142, 1.3312263875981198, 1.3405549296405836, 1.349756028691748, 1.3588025938711152, 1.367669870516686, 1.3763354998155863, 1.384779544498771, 1.3929844834670775, 1.4009351785661772, 1.4086188169425269 ], [ 1.1846296621430443, 1.1796950223313045, 1.175047708774283, 1.1707150731660199, 1.166724422162531, 1.163102795542335, 1.1598767274560617, 1.1570719927264952, 1.1547133407098389, 1.1528242197844936, 1.151426496076705, 1.1505401705415255, 1.1501830989701707, 1.150370719867796, 1.1511157954174482, 1.152428170897338, 1.1543145579360004, 1.156778346863538, 1.1598194531446613, 1.1634342024615356, 1.1676152584574637, 1.172351596462829, 1.1776285257105348, 1.18342776161701, 1.1897275486661085, 1.1965028333000967, 1.2037254850158763, 1.2113645626183893, 1.2193866213428133, 1.2277560553809452, 1.2364354693009423, 1.2453860709990117, 1.2545680782241824, 1.2639411304132864, 1.2734646975812065, 1.2830984783262585, 1.292802779604545, 1.3025388717562223, 1.3122693132747012, 1.3219582409365762, 1.3315716220951004, 1.34107746712765, 1.350446001169261, 1.3596497953202553, 1.3686638584555124, 1.3774656915649401, 1.3860353072069476, 1.3943552171548583, 1.4024103916632527, 1.4101881939862444 ], [ 1.1804753811097783, 1.1754550677509181, 1.1707288137466862, 1.1663248465924645, 1.1622713598382657, 1.1585962810898878, 1.1553270218098297, 1.1524902109754467, 1.1501114152575658, 1.1482148489991175, 1.1468230778793287, 1.1459567207203896, 1.1456341544033168, 1.145871227280705, 1.146680986779413, 1.1480734270525266, 1.1500552625484952, 1.1526297332042845, 1.1557964466338198, 1.1595512621756292, 1.1638862209927998, 1.1687895255973884, 1.17424557121603, 1.1802350303416982, 1.1867349906478624, 1.1937191451997797, 1.2011580326123066, 1.209019323512939, 1.2172681484195271, 1.2258674609904345, 1.2347784296097433, 1.243960849489583, 1.253373566954077, 1.2629749073471752, 1.2727230980927666, 1.282576678820881, 1.2924948911300507, 1.3024380414389751, 1.3123678314358864, 1.3222476518023814, 1.3320428361106778, 1.3417208730140464, 1.3512515760209478, 1.3606072112236949, 1.3697625843109795, 1.37869508900851, 1.387384719750319, 1.3958140518808062, 1.4039681930276475, 1.41183470947768 ], [ 1.176502365364984, 1.171398243973065, 1.1665946957183062, 1.1621208241609264, 1.1580057127737498, 1.154278182793052, 1.1509665314831128, 1.1480982529569677, 1.145699744361368, 1.1437960009160373, 1.142410303972586, 1.1415639068990138, 1.1412757241708738, 1.1415620295270439, 1.1424361693948621, 1.1439082979766184, 1.1459851403938268, 1.1486697900910527, 1.1519615463010227, 1.1558557967698673, 1.160343950148044, 1.1654134214877923, 1.171047673177184, 1.1772263124126972, 1.1839252449986932, 1.19111688389815, 1.198770409583655, 1.2068520778948821, 1.2153255698477214, 1.2241523767140867, 1.2332922127531416, 1.2427034472734355, 1.252343547279766, 1.2621695218321491, 1.2721383594226132, 1.2822074501452139, 1.2923349851648362, 1.3024803269364122, 1.3126043447349758, 1.3226697112700057, 1.3326411574174173, 1.3424856833547754, 1.3521727255815201, 1.3616742804059816, 1.3709649854530819, 1.3800221615686257, 1.388825818155088, 1.3973586254656878, 1.4056058577119102, 1.4135553110151278 ], [ 1.1727291767788433, 1.1675434909920666, 1.1626646328151218, 1.1581225781717317, 1.1539472998186464, 1.1501685151467902, 1.1468154129100516, 1.1439163610937058, 1.1414985988630093, 1.1395879162853837, 1.1382083262704474, 1.1373817338901917, 1.1371276088908415, 1.1374626677506992, 1.1384005720358121, 1.139951650022151, 1.1421226485595453, 1.144916521927869, 1.148332263970864, 1.152364789089914, 1.1570048667548982, 1.1622391130676715, 1.168050041631077, 1.1744161745738988, 1.1813122131052889, 1.1887092654690092, 1.1965751286885336, 1.2048746190896595, 1.2135699453100026, 1.2226211164050487, 1.2319863767852708, 1.2416226591076, 1.2514860459250017, 1.2615322308835393, 1.2717169705437603, 1.2819965184729956, 1.292328034072889, 1.3026699596262628, 1.312982360216531, 1.3232272224341581, 1.3333687090823625, 1.3433733683750988, 1.3532102973375038, 1.3628512602324827, 1.3722707638160383, 1.3814460920463045, 1.3903573035243282, 1.3989871954249902, 1.407321237988228, 1.415347483795502 ], [ 1.169175469597006, 1.1639109126684002, 1.1589591388906555, 1.1543509883745655, 1.150117318322499, 1.1462887409841247, 1.1428953389516907, 1.1399663600557215, 1.1375298949164985, 1.1356125410350675, 1.1342390581407982, 1.133432020316671, 1.1332114711575234, 1.1335945888365349, 1.1345953684156151, 1.1362243289929432, 1.1384882532986682, 1.1413899671009633, 1.1449281652554029, 1.149097290423776, 1.1538874694212788, 1.1592845108579137, 1.1652699662660104, 1.1718212553070846, 1.178911853988493, 1.1865115431571334, 1.1945867129367609, 1.2031007172978119, 1.2120142716493132, 1.2212858852707367, 1.2308723195973312, 1.2407290628645404, 1.2508108114212944, 1.2610719481390955, 1.271467008760469, 1.281951127718623, 1.2924804558810634, 1.3030125437751578, 1.3135066850904062, 1.3239242165648015, 1.33422877169729, 1.344386487034051, 1.3543661610078779, 1.3641393664295218, 1.373680518707306, 1.3829669026857725, 1.3919786616338412, 1.400698752375016, 1.4091128708419591, 1.4172093524674656 ], [ 1.1658619813529534, 1.1605217752667039, 1.1554999704295996, 1.1508282579421663, 1.1465383698314977, 1.142661807481867, 1.139229545714759, 1.1362717148015995, 1.133817263555358, 1.1318936075549986, 1.1305262674798902, 1.12973850343078, 1.1295509519450389, 1.1299812731250949, 1.1310438158372222, 1.1327493092506464, 1.1351045890288765, 1.1381123662208035, 1.141771046310178, 1.1460746049675714, 1.1510125258303483, 1.1565698041535974, 1.1627270184869505, 1.1694604707101386, 1.1767423928834517, 1.1845412175197991, 1.1928219061415635, 1.2015463294197215, 1.2106736908653368, 1.2201609850021962, 1.2299634802265542, 1.240035216172665, 1.2503295053523302, 1.2607994291094882, 1.2713983185002564, 1.2820802115370622, 1.292800279276796, 1.3035152144361968, 1.3141835775290778, 1.3247660968860997, 1.3352259202869912, 1.345528817259844, 1.3556433323400439, 1.3655408906975381, 1.37519585850714, 1.3845855612338187, 1.3936902636224833, 1.4024931156185028, 1.4109800687069505, 1.4191397672591664 ], [ 1.1628105009071128, 1.1573984825077923, 1.1523101094395278, 1.1475779049962522, 1.1432344609912262, 1.139312157110999, 1.1358428541293755, 1.1328575632545583, 1.1303860948145585, 1.1284566904774134, 1.1270956442219047, 1.1263269182801643, 1.12617176121493, 1.1266483361135262, 1.127771367514953, 1.129551816073689, 1.1319965900469162, 1.135108302425473, 1.138885081886592, 1.1433204447234722, 1.1484032335252286, 1.1541176266888002, 1.1604432209136695, 1.16735518675116, 1.1748244951541527, 1.1828182109040346, 1.1912998468789073, 1.2002297714555692, 1.2095656599760694, 1.2192629802034198, 1.2292755010648402, 1.239555813737114, 1.2500558542514089, 1.2607274172527112, 1.2715226512992719, 1.2823945270799602, 1.2932972711079465, 1.3041867587627853, 1.3150208619452006, 1.325759748028544, 1.3363661281900685, 1.3468054545405865, 1.3570460667049553, 1.3670592896067884, 1.3768194851539457, 1.386304061290326, 1.3954934424657692, 1.4043710059792507, 1.4129229888784989, 1.4211383701664166 ], [ 1.160043809952214, 1.1545645231708037, 1.1494137180667403, 1.1446247251290833, 1.1402309748176533, 1.1362657084278363, 1.1327616609337114, 1.1297507180330746, 1.1272635506185675, 1.1253292309763594, 1.1239748361357085, 1.1232250449149341, 1.1231017362763924, 1.123623597549647, 1.1248057518354506, 1.1266594143885569, 1.1291915879247143, 1.132404806547582, 1.1362969373068506, 1.1408610472680807, 1.1460853424190203, 1.1519531828117202, 1.1584431761313394, 1.1655293495042351, 1.1731813969376086, 1.1813649974530709, 1.1900421968606556, 1.1991718443221073, 1.2087100734497809, 1.218610816725208, 1.2288263415128955, 1.239307795875302, 1.2500057527264243, 1.2608707415404055, 1.2718537577960112, 1.2829067415216235, 1.2939830176452172, 1.3050376922891105, 1.3160280006266492, 1.3269136033883593, 1.3376568305263092, 1.3482228718804286, 1.35857991590674, 1.3686992385994012, 1.3785552456453518, 1.3881254715792002, 1.3973905402505822, 1.4063340912784783, 1.4149426773553242, 1.4232056372936661 ], [ 1.1575855943167968, 1.152044387229365, 1.1468360605726566, 1.1419947202158462, 1.1375546073020237, 1.1335498013592686, 1.130013893428181, 1.126979631333809, 1.1244785402963366, 1.1225405232389742, 1.1211934463809683, 1.1204627169529184, 1.1203708610807175, 1.1209371109807176, 1.122177011508264, 1.1241020567158617, 1.1267193673187688, 1.1300314197588412, 1.1340358368480552, 1.1387252487389183, 1.1440872312274044, 1.1501043262068698, 1.156754146562354, 1.164009565063476, 1.1718389840426922, 1.1802066800017417, 1.1890732149289676, 1.1983959041615098, 1.2081293291783162, 1.2182258828055066, 1.2286363339551505, 1.2393103991635932, 1.2501973087812803, 1.2612463566107484, 1.2724074230066127, 1.2836314628568908, 1.2948709513836405, 1.3060802822679352, 1.3172161141668661, 1.3282376632047057, 1.3391069404518354, 1.3497889347237877, 1.3602517422152478, 1.370466645510207, 1.3804081453649295, 1.3900539493362225, 1.3993849218199075, 1.4083850003774905, 1.4170410833725036, 1.4253428939273736 ], [ 1.1554603214898236, 1.149863446548331, 1.1446033882969222, 1.13971498874617, 1.135233264190209, 1.131193101452307, 1.1276289221238514, 1.1245743167763322, 1.1220616522531883, 1.1201216563972851, 1.1187829859100573, 1.1180717844240475, 1.1180112392387982, 1.118621146440544, 1.1199174952041508, 1.121912082855698, 1.1246121726486284, 1.1280202060773417, 1.1321335808431634, 1.136944504259631, 1.1424399299462629, 1.1486015831780763, 1.1554060773557164, 1.1628251209094878, 1.1708258107554221, 1.1793710053963231, 1.1884197681042652, 1.197927868492705, 1.2078483292896187, 1.218132004298976, 1.2287281733671402, 1.2395851405849316, 1.2506508228540512, 1.2618733172112444, 1.273201436818565, 1.2845852071872734, 1.29597631591925, 1.3073285109544635, 1.318597943956575, 1.3297434570149642, 1.3407268122656166, 1.3515128653165136, 1.3620696844914324, 1.3723686188681172, 1.3823843188744798, 1.3920947138152668, 1.4014809511317081, 1.4105273024530398, 1.4192210415926618, 1.4275522995885699 ], [ 1.153693081003596, 1.148047796331882, 1.1427427833399222, 1.137813572946079, 1.1332959127519124, 1.1292254574627822, 1.1256374252442574, 1.1225662217877777, 1.1200450350387168, 1.1181054048684818, 1.1167767734233804, 1.1160860234122505, 1.1160570131381784, 1.116710118551024, 1.1180617938901873, 1.120124163477957, 1.122904657780501, 1.1264057068492879, 1.1306245035842484, 1.135552847856163, 1.1411770803839998, 1.1474781124495754, 1.154431554191083, 1.1620079405607646, 1.1701730503199963, 1.178888309952921, 1.1881112713620066, 1.1977961498665373, 1.2078944074809184, 1.218355365739138, 1.2291268324088394, 1.2401557271932768, 1.2513886928029136, 1.2627726794287242, 1.274255492512688, 1.2857862956573918, 1.2973160624458924, 1.30879797278571, 1.3201877511034588, 1.3314439452751792, 1.3425281465706784, 1.3534051521129324, 1.3640430724040515, 1.3744133873460727, 1.3844909548869975, 1.3942539769508204, 1.4036839276677717, 1.412765449114318, 1.421486219813343, 1.4298368011482672 ], [ 1.1523093846775874, 1.1466240538298755, 1.141281956954051, 1.1363192581490242, 1.1317723834654083, 1.12767770668547, 1.1240711989820675, 1.1209880439631073, 1.1184622208276365, 1.116526059758604, 1.1152097752345649, 1.1145409846187104, 1.1145442211157324, 1.115240451885434, 1.1166466136499251, 1.11877517938538, 1.1216337704896349, 1.1252248289991629, 1.129545363847183, 1.1345867837056443, 1.1403348266063658, 1.146769593351502, 1.1538656878663722, 1.1615924633799455, 1.1699143689709703, 1.17879138694829, 1.188179548072834, 1.1980315090322637, 1.2082971749945164, 1.2189243495189037, 1.2298593945080125, 1.241047884073032, 1.2524352379464105, 1.2639673221897487, 1.275591007212985, 1.2872546753864977, 1.2989086726796424, 1.3105057007313088, 1.3220011475187339, 1.3333533563334827, 1.3445238341048156, 1.355477401242942, 1.3661822861202628, 1.376610168077422, 1.3867361734398547, 1.3965388294652377, 1.4059999814183415, 1.415104678095286, 1.4238410311050251, 1.4322000530764514 ], [ 1.1513349242726325, 1.145619111312332, 1.140248999078159, 1.1352613202482122, 1.1306931168328105, 1.126581422622679, 1.122962907504846, 1.119873484824564, 1.1173478842152316, 1.115419193772965, 1.1141183771055916, 1.1134737726059512, 1.1135105842287625, 1.1142503749996362, 1.1157105763291075, 1.1179040277817638, 1.1208385630682332, 1.124516658476781, 1.1289351595418535, 1.1340851003019774, 1.1399516269555316, 1.146514034125216, 1.1537459174756461, 1.161615441415644, 1.1700857154821422, 1.179115268213845, 1.1886586033138542, 1.1986668200030919, 1.2090882778566923, 1.2198692861026013, 1.2309547982021545, 1.2422890942786127, 1.2538164363137583, 1.265481683701104, 1.2772308594773476, 1.2890116601654378, 1.3007739045369116, 1.3124699186816402, 1.3240548565485597, 1.335486956608834, 1.3467277365235906, 1.3577421287048823, 1.3684985604697368, 1.3789689831243488, 1.389128854794104, 1.398957082144474, 1.4084359263260955, 1.4175508785320643, 1.4262905104864645, 1.4346463050034062 ], [ 1.1507952848650835, 1.145059841049366, 1.1396720761262653, 1.1346692176700135, 1.1300888510611824, 1.125968600004768, 1.1223457670029564, 1.1192569345756742, 1.1167375292699746, 1.1148213519894885, 1.1135400799068467, 1.1129227471749448, 1.1129952137796884, 1.1137796340942636, 1.1152939388746237, 1.1175513464001658, 1.1205599199851655, 1.1243221899038498, 1.1288348576142766, 1.1340885988014837, 1.1400679790485853, 1.1467514918968764, 1.1541117238723204, 1.1621156451310204, 1.1707250182587245, 1.179896912066807, 1.1895843025376645, 1.1997367398181833, 1.2103010585562222, 1.221222108898766, 1.2324434868939216, 1.2439082455003625, 1.25555957049521, 1.2673414088984702, 1.2791990407891132, 1.2910795883635062, 1.3029324586679745, 1.3147097185883931, 1.3263664024218538, 1.33786075373782, 1.3491544043196537, 1.360212493818724, 1.3710037343989543, 1.381500425133042, 1.3916784212546187, 1.4015170635860603, 1.4109990735582598, 1.4201104192223675, 1.4288401575325758, 1.4371802579629762 ], [ 1.1507156132559522, 1.1449727510249543, 1.1395790750973784, 1.1345722252046526, 1.1299902471573122, 1.1258712728800466, 1.122253158645748, 1.1191730818689665, 1.1166670980482847, 1.1147696609477873, 1.1135131108923444, 1.1129271381157173, 1.1130382304127977, 1.1138691168378922, 1.1154382217370398, 1.1177591458163223, 1.1208401929712783, 1.1246839629120957, 1.129287029857344, 1.1346397263978822, 1.1407260488124693, 1.14752369559397, 1.155004244921785, 1.163133469772438, 1.1718717820076245, 1.1811747899427782, 1.1909939483571284, 1.2012772762314923, 1.211970115953401, 1.22301590823542, 1.2343569591966284, 1.245935179436681, 1.2576927789217565, 1.2695729056009837, 1.2815202195055224, 1.2934813974220978, 1.3054055659825385, 1.3172446631743278, 1.3289537299196357, 1.3404911345848283, 1.3518187341649732, 1.362901976522092, 1.3737099485056568, 1.3842153750935988, 1.3943945748880375, 1.4042273773969407, 1.4136970075374549, 1.422789942712871, 1.431495747647187, 1.4398068919157252 ], [ 1.1511202420096014, 1.1453835914075654, 1.139997193357792, 1.1349990082765842, 1.1304274491596145, 1.1263210625629032, 1.1227181662458192, 1.119656443371732, 1.1171724943480645, 1.1153013488689383, 1.114075942528299, 1.1135265645130952, 1.11368028535636, 1.1145603764807037, 1.1161857361893457, 1.1185703396789703, 1.1217227332744302, 1.125645595034196, 1.1303353846837196, 1.1357821050218544, 1.1419691941242727, 1.148873562671371, 1.1564657837331167, 1.1647104339258145, 1.173566575942858, 1.1829883641666852, 1.1929257484531206, 1.2033252470106421, 1.2141307578917548, 1.2252843798083168, 1.2367272162317164, 1.2484001412923258, 1.260244511083439, 1.272202808962752, 1.2842192178906346, 1.2962401165200552, 1.3082144986040314, 1.3200943173771682, 1.3318347580261518, 1.343394442336707, 1.3547355702282413, 1.3658240032726345, 1.376629295521126, 1.3871246770842216, 1.3972869959529013, 1.407096623528133, 1.4165373292426715, 1.42559612951455, 1.434263116064822, 1.4425312683650138 ], [ 1.1520322712942095, 1.1463169134340536, 1.1409524751107734, 1.1359771378975323, 1.1314295788495852, 1.1273486537625592, 1.1237730358322708, 1.1207408091364337, 1.118289017478566, 1.1164531705663066, 1.1152667112817933, 1.1147604499762276, 1.114961974301844, 1.1158950460677317, 1.1175789998989276, 1.1200281619291728, 1.1232513100785049, 1.1272512002184936, 1.1320241841261853, 1.137559944908766, 1.1438413729379784, 1.1508445999123205, 1.1585392005667563, 1.1668885614484743, 1.1758504052837444, 1.1853774492932017, 1.1954181678355378, 1.2059176250158854, 1.2168183417645342, 1.2280611640641348, 1.239586103647385, 1.2513331285325204, 1.2632428871786154, 1.2752573560263591, 1.2873204052526015, 1.2993782815099313, 1.311380009268977, 1.3232777142848389, 1.3350268738805742, 1.3465864993894832, 1.3579192564043296, 1.3689915285812262, 1.3797734307310017, 1.3902387768562388, 1.4003650086842852, 1.410133090113402, 1.4195273728281708, 1.4285354381452575, 1.4371479199151762, 1.4453583130272774 ], [ 1.1534731125842441, 1.1477955843632177, 1.1424692976553774, 1.1375325486851076, 1.133024166434318, 1.12898319931969, 1.1254485563338583, 1.122458601611414, 1.1200507024166555, 1.1182607319041853, 1.1171225297299934, 1.1166673257439563, 1.1169231346213886, 1.1179141324182231, 1.1196600296397416, 1.1221754593851245, 1.1254694032092813, 1.1295446810613616, 1.134397534311498, 1.1400173315707658, 1.1463864248279945, 1.153480177713959, 1.1612671783907587, 1.1697096374091722, 1.178763957460756, 1.1883814493637777, 1.1985091589108163, 1.209090763802469, 1.2200674992434444, 1.231379074331324, 1.24296454786411, 1.254763140112539, 1.2667149650771725, 1.2787616748072712, 1.2908470129882859, 1.3029172790914647, 1.3149217070694166, 1.326812764155127, 1.3385463760896155, 1.3500820853449989, 1.3613831488463246, 1.3724165814822105, 1.3831531514283062, 1.3935673330403944, 1.4036372228247946, 1.4133444237620547, 1.422673903035061, 1.4316138279807293, 1.4401553848330144, 1.4482925845459984 ], [ 1.1554620004791447, 1.1498402645328798, 1.1445698130784878, 1.1396889450061156, 1.135236521457122, 1.1312516567738866, 1.1277733633247085, 1.1248401487500597, 1.1224895651192912, 1.1207577107447182, 1.1196786870337987, 1.119284014837272, 1.1196020173448136, 1.1206571797592337, 1.1224694997915534, 1.1250538474344183, 1.128419357309307, 1.1325688817004222, 1.1374985363870793, 1.143197373410725, 1.149647213621986, 1.156822666114599, 1.1646913510714012, 1.1732143279093836, 1.1823467139758812, 1.1920384633182495, 1.202235263122565, 1.2128794992767093, 1.2239112426656202, 1.235269213299009, 1.246891688303965, 1.2587173300509549, 1.2706859204380074, 1.2827389955036, 1.2948203806094727, 1.306876630471048, 1.3188573806490784, 1.3307156181918842, 1.3424078793600724, 1.353894382124257, 1.3651391006543605, 1.3761097884816191, 1.3867779565028153, 1.3971188115517816, 1.4071111608917546, 1.4167372876719646, 1.425982802121244, 1.4348364729988357, 1.4432900435687543, 1.4513380360954493 ], [ 1.1580154813617733, 1.1524688552944762, 1.1472733540285995, 1.1424671635521888, 1.1380890516482272, 1.1341780635880525, 1.1307731714566716, 1.1279128753129744, 1.1256347552418082, 1.123974974512895, 1.122967735584922, 1.1226446926517926, 1.1230343269082264, 1.1241612938188945, 1.1260457555273677, 1.1287027162286254, 1.1321413838178866, 1.13636458709405, 1.14136828342482, 1.1471411956528856, 1.1536646172434983, 1.1609124193850795, 1.1688512819664127, 1.1774411527571198, 1.1866359183773867, 1.1963842508218188, 1.2066305785451397, 1.2173161241918085, 1.2283799524843648, 1.2397599799706547, 1.2513939104203649, 1.2632200726888545, 1.2751781495699614, 1.2872097953061536, 1.29925914570443, 1.3112732285225916, 1.3232022835313872, 1.3350000020583896, 1.3466236954254818, 1.358034400911579, 1.369196932977005, 1.380079886633299, 1.3906555991082867, 1.400900075361823, 1.4107928825419964, 1.4203170181074385, 1.429458756046617, 1.4382074753688323, 1.4465554747988154, 1.4544977773594538 ], [ 1.161146890298114, 1.1556959296476033, 1.1505958156524632, 1.1458845044721517, 1.1416005416095119, 1.137782762359365, 1.1344699459524987, 1.1317004213458435, 1.1295116233935507, 1.1279395992104673, 1.127018465962073, 1.1267798231421968, 1.1272521247084573, 1.128460019351545, 1.1304236708528976, 1.1331580751641142, 1.1366723967106407, 1.1409693534170475, 1.146044687403687, 1.1518867646092112, 1.1584763491826033, 1.1657865944331949, 1.1737832794095744, 1.1824252991366238, 1.1916653905811616, 1.2014510512709375, 1.2117255891368555, 1.222429234457626, 1.2335002482053588, 1.2448759729592322, 1.2564937886471448, 1.2682919516449498, 1.2802103094536765, 1.2921908930824335, 1.3041783953996207, 1.316120546769679, 1.3279684001777161, 1.3396765376043847, 1.351203208301937, 1.362510408282359, 1.3735639090253506, 1.3843332422804837, 1.3947916469214419, 1.4049159831051172, 1.414686618462452, 1.4240872906583106, 1.4331049503603965, 1.4417295884144963, 1.4499540508037752, 1.4577738447521824 ], [ 1.1648658303538875, 1.1595321606450224, 1.1545490295408576, 1.1499540475004573, 1.1457854081071979, 1.1420815927801107, 1.1388810294749767, 1.1362217031708688, 1.1341407166852047, 1.132673801397825, 1.131854778833299, 1.1317149757826401, 1.1322825977793152, 1.1335820683583842, 1.1356333448047553, 1.138451225378572, 1.1420446687702441, 1.1464161541625548, 1.15156111951879, 1.157467525012323, 1.1641155945796844, 1.1714777869734447, 1.179519034682182, 1.1881972641758902, 1.1974641784005995, 1.2072662504102096, 1.2175458541547917, 1.2282424501449023, 1.239293750121249, 1.2506368016457936, 1.2622089545237514, 1.2739486907992406, 1.285796315572497, 1.297694516119834, 1.3095888023135462, 1.3214278433508686, 1.3331637155867322, 1.344752074866085, 1.3561522648942266, 1.3673273713094023, 1.3782442294620845, 1.3888733925492873, 1.3991890657081376, 1.4091690109037613, 1.418794426897486, 1.428049808194332, 1.4369227865898284, 1.4454039587208196, 1.453486702838663, 1.4611669878414044 ], [ 1.1691776712055257, 1.1639837659095642, 1.1591401494498152, 1.1546839741675932, 1.1506529541866193, 1.14708507339251, 1.1440182478198895, 1.141489940174511, 1.139536724969925, 1.138193803819174, 1.1374944718220477, 1.1374695377267514, 1.1381467025896603, 1.1395499039859618, 1.141698635528775, 1.1446072548983963, 1.1482842985233925, 1.1527318285026202, 1.1579448479112922, 1.1639108332581016, 1.1706094437138592, 1.1780124693534015, 1.1860840685598577, 1.1947813157407488, 1.2040550398134005, 1.213850893088849, 1.224110561793035, 1.2347730209455987, 1.2457757470608215, 1.2570558252454045, 1.2685509139559081, 1.28020005411349, 1.2919443261203396, 1.3037273682479174, 1.3154957742166231, 1.3271993883980455, 1.3387915155849366, 1.3502290598798021, 1.3614726046924415, 1.3724864435065294, 1.3832385691432456, 1.3937006277486637, 1.4038478426227878, 1.4136589122235685, 1.4231158861425404, 1.43220402248904, 1.4409116298756883, 1.4492298970205826, 1.4571527128344648, 1.4646764797185936 ], [ 1.17408308632449, 1.169051989641327, 1.1643710723577267, 1.1600769218611722, 1.1562066500307997, 1.152797603043604, 1.1498870260057839, 1.1475116801267364, 1.1457074109515302, 1.1445086673224536, 1.1439479722872297, 1.144055349083162, 1.1448577074860744, 1.1463781980295065, 1.1486355437315257, 1.1516433612003378, 1.1554094862125144, 1.1599353248145239, 1.1652152616613556, 1.1712361730143197, 1.17797710876371, 1.185409217115993, 1.193495976455667, 1.2021937660086401, 1.21145275639589, 1.2212180494146685, 1.231430961533354, 1.242030337583496, 1.2529537978293008, 1.2641388523655028, 1.2755238495915568, 1.2870487521215328, 1.29865575087156, 1.3102897369191868, 1.3218986533970936, 1.333433748652369, 1.3448497491042084, 1.356104966917689, 1.3671613544680083, 1.3779845149077543, 1.3885436760541547, 1.3988116332517337, 1.4087646657555515, 1.4183824304236998, 1.4276478360127052, 1.4365469010552019, 1.4450685981003455, 1.4532046869636672, 1.4609495395269552, 1.4682999585254786 ], [ 1.179577649830916, 1.1747326459602554, 1.170237921695274, 1.1661293997802828, 1.1624434739685345, 1.1592167188740843, 1.1564855549459336, 1.1542858662909967, 1.1526525699452854, 1.1516191365032244, 1.1512170638293115, 1.1514753078729367, 1.152419677200711, 1.1540722003519757, 1.1564504769818746, 1.159567024683546, 1.1634286340191347, 1.1680357469657354, 1.1733818825361055, 1.1794531507536512, 1.186227920010818, 1.1936767217602282, 1.2017624735110737, 1.2104410653510715, 1.2196622933523946, 1.2293710585291517, 1.2395087081426948, 1.250014389780328, 1.2608263128460961, 1.2718828513094111, 1.2831234601242807, 1.294489406517119, 1.3059243342127909, 1.3173746857278128, 1.3287900085222095, 1.3401231681000927, 1.351330487173137, 1.3623718259555, 1.3732106151182861, 1.3838138500912445, 1.3941520532550622, 1.4041992090259525, 1.4139326757750708, 1.4233330778298614, 1.4323841803695148, 1.4410727497676297, 1.4493884017852259, 1.4573234399268613, 1.4648726862058343, 1.4720333064968214 ], [ 1.1856515150206866, 1.1810157489215702, 1.1767306218482807, 1.172831300090706, 1.1693533515876045, 1.1663324538476418, 1.163804057076283, 1.1618030002222564, 1.1603630786119559, 1.159516563339337, 1.1592936747543028, 1.1597220152823098, 1.1608259702230468, 1.1626260885366495, 1.1651384579049868, 1.1683740884057827, 1.1723383167190382, 1.1770302402014918, 1.1824421932553446, 1.1885592943626826, 1.1953591223270315, 1.2028116119099543, 1.210879266786005, 1.2195177515607496, 1.2286768508621997, 1.2383017047220681, 1.2483341808188495, 1.2587142406567913, 1.2693811892062603, 1.280274744634464, 1.2913359076733584, 1.3025076396455755, 1.3137353735304864, 1.3249673873154209, 1.336155067567966, 1.3472530870472068, 1.358219515329308, 1.3690158769272134, 1.3796071676643484, 1.3899618371969582, 1.4000517434872053, 1.4098520835689659, 1.4193413039748286, 1.4285009935757869, 1.4373157612169853, 1.445773100329279, 1.453863242592198, 1.461579002672353, 1.4689156160279626, 1.4758705717331448 ], [ 1.1922891962349493, 1.1878852546244192, 1.183832593720648, 1.1801655391258226, 1.1769187336168703, 1.1741268411195698, 1.171824205710242, 1.1700444632950973, 1.1688201046378655, 1.1681819900886428, 1.1681588189398073, 1.1687765599641464, 1.1700578542913072, 1.1720214067128423, 1.174681385270516, 1.178046849288557, 1.182121220928343, 1.1869018059664003, 1.1923793629794404, 1.1985377290675892, 1.205353543364158, 1.212796155842039, 1.2208278331707925, 1.2294043416544518, 1.2384759035272779, 1.2479884309029181, 1.257884887557675, 1.2681066285440161, 1.2785946068903533, 1.2892903890185416, 1.3001369652905599, 1.311079370724343, 1.3220651442643567, 1.333044657842697, 1.343971343669691, 1.354801843179716, 1.365496095782708, 1.376017380940945, 1.386332323398235, 1.3964108686243373, 1.406226233566437, 1.4157548364553154, 1.4249762085392839, 1.43387289008143, 1.4424303126496334, 1.4506366695728146, 1.4584827763701815, 1.4659619229387775, 1.4730697192772046, 1.4798039365096038 ], [ 1.199469473867451, 1.1953189390977137, 1.1915205996950056, 1.1881078625288226, 1.1851143530914512, 1.1825736136085032, 1.1805187557400767, 1.1789820654013654, 1.1779945582871651, 1.1775854865103947, 1.177781799706382, 1.1786075683636423, 1.1800833831658444, 1.1822257512747623, 1.1850465169706956, 1.1885523364031474, 1.1927442300391793, 1.1976172199985387, 1.2031600394644115, 1.2093548957034908, 1.2161772966786852, 1.2235960103930508, 1.231573272817204, 1.2400653417784162, 1.2490234073162698, 1.258394768343191, 1.2681241275738862, 1.2781548575965545, 1.2884301320550005, 1.29889386868067, 1.3094914746124964, 1.3201704113301924, 1.3308806082419145, 1.3415747556786748, 1.352208504641235, 1.362740595422133, 1.3731329319834564, 1.3833506144903183, 1.393361938894964, 1.403138369882439, 1.4126544916717683, 1.4218879399445097, 1.4308193173902894, 1.4394320948888182, 1.4477125000900137, 1.4556493950323934, 1.4632341443985972, 1.470460476005196, 1.4773243351334582, 1.4838237343097005 ], [ 1.2071654386924402, 1.2032884317853263, 1.1997647622874383, 1.1966268441315573, 1.1939071983523395, 1.1916381436164047, 1.1898514406965996, 1.188577888258579, 1.187846868388121, 1.1876858422053571, 1.1881197991492956, 1.1891706686418986, 1.190856710337899, 1.1931919089114031, 1.1961854096105873, 1.1998410371864645, 1.204156936161415, 1.2091253486487719, 1.2147325104173514, 1.2209586176239602, 1.227777828259085, 1.235158326021084, 1.2430625470055467, 1.2514476784564625, 1.2602664643157275, 1.269468252035784, 1.2790001534121664, 1.2888081870869161, 1.2988383045025202, 1.3090372481518209, 1.3193532312612084, 1.3297364534519482, 1.3401394783211071, 1.3505175008405856, 1.3608285295253704, 1.3710335035912204, 1.3810963605242472, 1.3909840653709402, 1.4006666098382412, 1.4101169869229828, 1.4193111451270035, 1.428227925199282, 1.4368489816366734, 1.445158690751769, 1.4531440468884917, 1.4607945482635392, 1.4681020738826351, 1.4750607529879454, 1.481666828510557, 1.4879185160122255 ], [ 1.2153446863058608, 1.2117594183535458, 1.2085287739328459, 1.205684100714988, 1.2032567299975128, 1.2012776581945994, 1.1997771814975704, 1.1987844809116561, 1.1983271559282245, 1.1984307070668876, 1.1991179709848496, 1.2004085175827932, 1.202318027399333, 1.2048576799904884, 1.208033598648285, 1.2118464088214314, 1.2162909673095714, 1.221356295399822, 1.2270256989865098, 1.233277002217151, 1.240082801717797, 1.2474107004533408, 1.2552235763831612, 1.2634799958456095, 1.2721348452433776, 1.2811401676971192, 1.290446121347973, 1.3000019523877493, 1.3097568922987604, 1.3196609247520557, 1.3296654035397084, 1.3397235280974984, 1.349790696023454, 1.3598247556908791, 1.3697861805782592, 1.3796381833009075, 1.3893467832932795, 1.3988808384901086, 1.4082120484729959, 1.4173149343961924, 1.426166799478961, 1.4347476728198738, 1.4430402386261503, 1.451029752553296, 1.4587039466338294, 1.4660529241748945, 1.473069045975588, 1.4797468092213333, 1.4860827204302116, 1.4920751638384586 ], [ 1.2239696654794872, 1.2206920183670604, 1.2177703057818765, 1.2152347336395781, 1.2131153568975308, 1.2114417508356004, 1.2102426347087125, 1.2095454448647758, 1.209375855484853, 1.2097572471434688, 1.2107101270563903, 1.212251511144782, 1.2143942881157925, 1.217146600623604, 1.220511297575524, 1.2244855298984618, 1.2290605680073439, 1.2342218964727185, 1.2399495799615323, 1.2462188087620105, 1.253000470376844, 1.26026161448704, 1.2679657885223674, 1.2760733390485814, 1.2845418063555367, 1.2933264802250837, 1.302381098861818, 1.3116586167042261, 1.321111956153451, 1.3306946797245895, 1.3403615507465687, 1.3500689770496692, 1.3597753478757255, 1.3694412808492036, 1.379029796620916, 1.3885064367089401, 1.3978393370267481, 1.4069992666087368, 1.4159596385347504, 1.4246964981190782, 1.433188492023413, 1.4414168209829847, 1.4493651781998054, 1.4570196750659683, 1.4643687556595562, 1.4714031013480369, 1.4781155267950645, 1.484500868664369, 1.490555868325466, 1.4962790498747764 ], [ 1.2329981760519686, 1.230041333612954, 1.227441611694228, 1.2252279942937703, 1.2234291694925659, 1.2220731896838095, 1.2211870834741878, 1.2207964163453764, 1.220924798288531, 1.221593338793749, 1.2228200535111693, 1.2246192337101498, 1.2270008008459525, 1.2299696855556133, 1.2335252931794918, 1.2376611417775911, 1.2423647707532282, 1.2476179982472209, 1.2533975364048788, 1.2596758619649884, 1.2664221325389182, 1.273602915831286, 1.2811826107360704, 1.2891236263259023, 1.2973865053616145, 1.3059301586147773, 1.314712270447929, 1.3236898386316596, 1.3328197683287344, 1.3420594453022088, 1.3513672405196695, 1.3607029261887302, 1.3700280026121099, 1.3793059453555838, 1.3885023857151366, 1.3975852372562434, 1.406524779363476, 1.4152937064882436, 1.4238671496978514, 1.432222675427933, 1.4403402650551225, 1.4482022779914572, 1.4557934003832882, 1.4631005811034046, 1.4701129564914632, 1.476821765173423, 1.483220254235105, 1.4893035780083101, 1.4950686907278654, 1.5005142343192976 ], [ 1.2423840032762283, 1.2397581523046617, 1.237490310779794, 1.2356081546270168, 1.234138909338428, 1.2331089987135828, 1.2325436448223448, 1.2324664164429802, 1.2328987244975627, 1.2338592654160279, 1.2353634176940436, 1.2374226043849852, 1.2400436465573021, 1.2432281515744854, 1.246972005643878, 1.2512650678316195, 1.2560911790279048, 1.2614285812437749, 1.2672507680679517, 1.2735276556176687, 1.2802268184446735, 1.2873144702993924, 1.2947559754695397, 1.3025159201686791, 1.3105579776577339, 1.3188448249524076, 1.3273382505231417, 1.3359994570992084, 1.3447894883086906, 1.3536696953043381, 1.3626021805752344, 1.371550184425803, 1.3804784019743932, 1.389353232038319, 1.3981429656190614, 1.406817923557334, 1.4153505524677261, 1.4237154866695938, 1.431889582253995, 1.439851928009694, 1.447583836794301, 1.455068820088792, 1.4622925478770308, 1.4692427955952125, 1.4759093796479539, 1.4822840828443171, 1.4883605710320624, 1.4941343021745768, 1.4996024291009662, 1.5047636971512537 ], [ 1.252077667141695, 1.2497897841333903, 1.2478603192346867, 1.2463155484746997, 1.2451811345581623, 1.244481764217451, 1.2442407367757315, 1.2444795015771069, 1.2452171434611536, 1.2464698182530598, 1.2482501451479089, 1.2505665711667344, 1.2534227362738286, 1.2568168879676087, 1.2607414212661032, 1.2651826490662408, 1.2701209247032605, 1.2755312193085988, 1.2813841771376002, 1.2876475282705089, 1.2942875711820867, 1.3012703482237942, 1.3085622358175601, 1.3161299445099572, 1.3239401829696795, 1.3319593053913643, 1.3401531473359123, 1.3484870974520262, 1.356926350767009, 1.3654362582712214, 1.373982699671711, 1.3825324322974761, 1.391053392882612, 1.3995149450959496, 1.4078880746509506, 1.416145537787645, 1.4242619699590657, 1.4322139611532496, 1.4399801033226132, 1.4475410143400975, 1.4548793419668733, 1.4619797505712424, 1.468828892785392, 1.4754153679004693, 1.4817296685450985, 1.4877641170339801, 1.4935127926806377, 1.4989714513178278, 1.5041374382409598, 1.5090095957705134 ], [ 1.2620272579926148, 1.2600809923292728, 1.2584928913878441, 1.2572877359861225, 1.2564895241959737, 1.256121098115814, 1.256203722506524, 1.2567566136520634, 1.2577964186980695, 1.2593366490479314, 1.2613870770333906, 1.2639531143012455, 1.2670352047751756, 1.270628286029935, 1.2747213999211233, 1.2792975607135009, 1.2843340023673036, 1.2898029029660674, 1.2956726005925892, 1.3019091676995125, 1.3084780410755017, 1.3153453112205429, 1.322478368195848, 1.329845873871555, 1.3374173060636934, 1.345162415077494, 1.3530508393047407, 1.3610519680142372, 1.3691350225559966, 1.3772692793879435, 1.3854243588554727, 1.393570524309779, 1.401678958852244, 1.409722004369759, 1.417673358471137, 1.4255082307996296, 1.43320346275578, 1.4407376153518388, 1.448091029686032, 1.4552458639313968, 1.4621861100742928, 1.4688975930476558, 1.4753679544316394, 1.481586622543146, 1.4875447704898868, 1.4932352636015045, 1.4986525975470866, 1.503792828385091, 1.5086534957516815, 1.5132335403642267 ], [ 1.2721793245996136, 1.2705749826409154, 1.2693277222671195, 1.2684607341733034, 1.267996253072958, 1.2679551755788214, 1.2683566314994086, 1.269217507963851, 1.2705519281561033, 1.2723706904068008, 1.2746806798301686, 1.277484274784302, 1.2807787854908952, 1.2845559829384785, 1.288801801273446, 1.2934963198459506, 1.2986141378906098, 1.3041252247359933, 1.3099962425219214, 1.3161921967868848, 1.3226781139326158, 1.3294203637521858, 1.3363873334966643, 1.3435494091943934, 1.3508784801397788, 1.3583472917425299, 1.3659289074127823, 1.3735963994016525, 1.381322769931887, 1.3890810439245267, 1.3968444625921097, 1.4045867196233341, 1.4122822007707676, 1.4199062044923454, 1.4274351332173074, 1.434846652111248, 1.442119816140912, 1.4492351680193074, 1.4561748101726932, 1.4629224538176002, 1.4694634479258775, 1.4757847904814052, 1.4818751240860109, 1.487724717689581, 1.493325436007078, 1.4986706980341158, 1.5037554259703638, 1.5085759857917664, 1.5131301206656378, 1.5174168783668531 ], [ 1.282479778317942, 1.281214406240434, 1.2803040606711729, 1.2797702528225936, 1.2796333645069722, 1.2799122597981565, 1.280623852764295, 1.2817826320830965, 1.2834001462592488, 1.2854844577986566, 1.2880395818640171, 1.2910649356177042, 1.2945548395204713, 1.298498131298203, 1.3028779747312076, 1.3076719619559096, 1.312852606658526, 1.3183882892337788, 1.3242446302954547, 1.3303861407682338, 1.3367778646540027, 1.343386670152092, 1.3501819268673907, 1.3571355197204351, 1.3642213759949908, 1.3714147916697588, 1.378691807974116, 1.3860287767606914, 1.3934021447635991, 1.4007884213369193, 1.4081642713183862, 1.4155066777273162, 1.4227931324805227, 1.4300018278460225, 1.437111833031556, 1.4441032483404657, 1.450957334274138, 1.4576566157062334, 1.4641849625969643, 1.4705276492418458, 1.4766713941435707, 1.482604382491184, 1.4883162730570354, 1.4937981911454739, 1.4990427090762624, 1.5040438155681404, 1.5087968753014556, 1.5132985798765164, 1.5175468913381296, 1.52154097939959 ], [ 1.2928747773487126, 1.2919423343458463, 1.2913617831175324, 1.2911528772822845, 1.2913340718421513, 1.2919221322686087, 1.2929317035346017, 1.294374841593428, 1.2962605132478147, 1.2985940755723635, 1.301376753722481, 1.3046051467640165, 1.3082708054276702, 1.3123599426678474, 1.316853354476017, 1.3217266376738663, 1.3269507822568924, 1.3324931753468228, 1.3383189742956048, 1.3443926968588102, 1.3506797724028816, 1.3571477588111978, 1.3637670035493519, 1.3705107002630592, 1.3773544769911177, 1.3842757529350183, 1.3912530891779264, 1.3982656770853163, 1.4052930169514488, 1.4123147753721161, 1.4193107795809035, 1.4262611013396844, 1.433146189939317, 1.4399470247672728, 1.446645268159798, 1.4532234071955128, 1.4596648785534452, 1.4659541740095585, 1.4720769261611815, 1.4780199750495697, 1.483771416866561, 1.4893206361296834, 1.4946583227452228, 1.4997764753413256, 1.5046683921916517, 1.5093286509881982, 1.5137530786685964, 1.5179387124598915, 1.5218837532650211, 1.525587512486505 ], [ 1.3033115582788113, 1.3027031666171878, 1.3024423848004898, 1.3025471474450294, 1.3030339303320528, 1.3039173613716153, 1.3052097965948222, 1.3069208655386038, 1.3090569942794688, 1.3116209199854705, 1.3146112186691172, 1.3180218781737338, 1.3218419611242105, 1.3260554162449312, 1.3306411076197537, 1.3355731338094148, 1.3408214933718412, 1.3463531115026566, 1.3521331714493727, 1.3581266051678655, 1.3642995206928277, 1.3706203219552187, 1.3770603407417603, 1.383593935965577, 1.390198160550569, 1.3968521835992578, 1.40353666012451, 1.4102331862540842, 1.4169239065321926, 1.42359128240719, 1.430217997725284, 1.436786964778328, 1.4432813952072467, 1.4496849067007387, 1.4559816443965639, 1.4621564029578726, 1.4681947407195657, 1.4740830810992864, 1.4798087989571402, 1.4853602911297978, 1.490727031270126, 1.4958996096263393, 1.5008697586558655, 1.5056303654930376, 1.5101754723399687, 1.5145002658635924, 1.518601056678466, 1.5224752499839882, 1.5261213084096905, 1.5295387081040803 ] ], "zauto": true, "zmax": 1.5295387081040803, "zmin": -1.5295387081040803 }, { "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.11481906508188673, 0.11309066477906353, 0.11134001104932267, 0.10957036612833111, 0.10778547307190162, 0.10598960086082898, 0.10418758970229167, 0.1023848952602439, 0.1005876301450848, 0.09880260050910644, 0.09703733502967106, 0.09530010292991181, 0.09359991701912239, 0.09194651709050566, 0.09035032848545624, 0.08882239035342004, 0.0873742482762326, 0.0860178066856011, 0.08476513808392715, 0.0836282486391041, 0.08261880331106719, 0.08174781814484341, 0.08102533234674851, 0.0804600775930033, 0.08005916583442886, 0.07982781872331958, 0.07976916093174669, 0.07988409570849508, 0.08017127429690672, 0.08062716220847611, 0.08124619618586965, 0.08202101750186358, 0.08294276129530152, 0.08400137867411679, 0.08518596840045156, 0.08648509762304173, 0.08788709548952778, 0.08938030860821175, 0.09095331240089757, 0.09259507680053601, 0.09429508817558827, 0.09604343171977674, 0.09783083991156256, 0.09964871319692867, 0.10148911899025491, 0.10334477462213462, 0.10520901916046455, 0.10707577822395181, 0.10893952508907494, 0.1107952406234984 ], [ 0.1134092529393579, 0.11164416945043083, 0.10985739854639832, 0.10805230625579754, 0.10623274583777198, 0.10440310371408451, 0.10256834567175808, 0.10073406205803284, 0.09890651027684193, 0.0970926523950907, 0.09530018507632029, 0.09353755839024681, 0.09181397933058136, 0.09013939517066655, 0.08852445119489279, 0.08698041700604595, 0.08551907571271669, 0.08415257106858717, 0.08289320929435857, 0.08175321504414738, 0.08074444484167784, 0.07987806616092123, 0.07916421573347228, 0.07861165589757332, 0.07822745188590814, 0.07801669483861562, 0.07798229418356588, 0.07812485850028025, 0.07844267642884374, 0.07893179966785342, 0.07958622019272824, 0.08039812519195108, 0.08135820721445637, 0.08245600435767693, 0.0836802459765622, 0.08501918271868779, 0.08646088469815061, 0.08799349726207117, 0.08960544919719775, 0.09128561277718802, 0.09302341847339891, 0.09480892940328584, 0.0966328817973347, 0.09848669813968015, 0.10036247941288352, 0.10225298226876492, 0.10415158613107801, 0.10605225434404827, 0.10794949260411803, 0.10983830710713169 ], [ 0.11199897086281403, 0.11019878148875005, 0.10837766421525351, 0.10653909961631244, 0.10468706148346939, 0.10282606331235389, 0.10096120506014664, 0.09909821887524523, 0.09724351207985747, 0.09540420517188494, 0.09358816200103943, 0.09180400857538214, 0.09006113619931716, 0.08836968389441915, 0.08674049441341232, 0.08518503777774812, 0.08371529635384581, 0.08234360627521202, 0.08108245176798677, 0.0799442118471451, 0.0789408629875127, 0.07808364657551271, 0.0773827157381057, 0.07684678170879498, 0.07648278414700822, 0.07629561163615994, 0.07628789705285655, 0.07645990730259093, 0.07680953852246862, 0.07733241750719966, 0.07802209958084581, 0.07887034422955828, 0.07986744392474698, 0.08100257935289368, 0.08226417556692416, 0.08364023758623083, 0.08511864957373422, 0.08668742777908374, 0.08833492305380604, 0.09004997334562036, 0.0918220099214542, 0.09364112316397893, 0.09549809480650027, 0.09738440366068267, 0.09929221150422789, 0.10121433505539958, 0.10314420904610194, 0.1050758444441891, 0.10700378495469977, 0.1089230640999411 ], [ 0.11058841642477175, 0.10875465960106342, 0.10690092546453886, 0.10503082012800814, 0.10314844861251592, 0.10125846163346601, 0.09936610257786462, 0.09747725334032141, 0.09559847725868531, 0.0937370568659664, 0.09190102354866506, 0.09009917548138276, 0.08834107942437974, 0.08663705118851495, 0.08499810889902938, 0.08343589278816668, 0.081962545334653, 0.08059054640727507, 0.0793324999308529, 0.07820087169154614, 0.0772076823030362, 0.07636416487930378, 0.07568040307187687, 0.07516497092890216, 0.07482460034235586, 0.07466390344762801, 0.07468517530734524, 0.07488829628422233, 0.07527074429361473, 0.07582771606287739, 0.07655234554808034, 0.07743599868842399, 0.07846861810619993, 0.07963908973498256, 0.08093560536359365, 0.08234599976292846, 0.08385804717875972, 0.08545970834449394, 0.08713932489450028, 0.08888576261133985, 0.09068850813168806, 0.09253772563175089, 0.0944242808271108, 0.0963397396255587, 0.09827634823144711, 0.10022700064402018, 0.10218519849564196, 0.10414500716258358, 0.10610101113080092, 0.10804827075719729 ], [ 0.1091774851704173, 0.10731162395038035, 0.10542692061000072, 0.10352711761332685, 0.10161646184006069, 0.09969975144489188, 0.09778238274476338, 0.09587039575148819, 0.09397051653552128, 0.09209019407582798, 0.09023762861492089, 0.08842178780513262, 0.08665240613343994, 0.08493996231393246, 0.08329562865322714, 0.08173118599635136, 0.08025889798022552, 0.07889133923669749, 0.07764117418274873, 0.07652088633504002, 0.07554246274900085, 0.07471704398837675, 0.07405455638535008, 0.0735633492678915, 0.07324986404599486, 0.0731183632865824, 0.07317074526077817, 0.07340646274810086, 0.0738225549038847, 0.07441378936537306, 0.0751729005723628, 0.07609090148178002, 0.07715744079555047, 0.0783611769052009, 0.07969014249609166, 0.08113207904771419, 0.08267472699049508, 0.08430606383312546, 0.08601448829111707, 0.08778895285614496, 0.08961905022265941, 0.09149506065118254, 0.09340796794584495, 0.09534945154748845, 0.09731186156628761, 0.09928818262518724, 0.10127199132705277, 0.10325741111067542, 0.10523906729629817, 0.10721204427933914 ], [ 0.10776576164314099, 0.10586914726077686, 0.10395500008143886, 0.1020272091019212, 0.10009017314976941, 0.0981488476288609, 0.09620879104669212, 0.09427620987092325, 0.0923579998269998, 0.09046178121404258, 0.0885959251765702, 0.08676956713316612, 0.0849926027624313, 0.08327566115109873, 0.08163004903871773, 0.08006765972858572, 0.07860084041888851, 0.07724221273170075, 0.07600444337512964, 0.0748999653869493, 0.07394065531548236, 0.07313747772920591, 0.07250011494574024, 0.07203660576492428, 0.07175302094598818, 0.07165320388877623, 0.07173860161038653, 0.07200820361840327, 0.07245859563090747, 0.07308412308675283, 0.07387714821667649, 0.07482837607125788, 0.07592722054363461, 0.07716218131358402, 0.07852120610944063, 0.07999201850890965, 0.0815623983046119, 0.08322040806049108, 0.08495456507307048, 0.08675396212916457, 0.08860834316065383, 0.09050814130327166, 0.0924444872468011, 0.0944091954201088, 0.09639473475871578, 0.09839418977431949, 0.1004012165454036, 0.10240999718323578, 0.10441519536306289, 0.10641191467948759 ], [ 0.10635251583189494, 0.10442635227162643, 0.10248412506915572, 0.10052987884839137, 0.09856817344945297, 0.0966041304239047, 0.09464347898677436, 0.09269259988076782, 0.09075856516822974, 0.08884917143027181, 0.08697296321453249, 0.08513924284248693, 0.08335806189891967, 0.08164018895372578, 0.07999704743576118, 0.07844061727948126, 0.07698329425089334, 0.07563770202878774, 0.07441645446630703, 0.07333186919608523, 0.07239563887486135, 0.0716184725668583, 0.07100972629786174, 0.07057704752798227, 0.07032606181019935, 0.07026012994463672, 0.07038019975302953, 0.07068476832553693, 0.07116995939407322, 0.07182970832506706, 0.07265603634308497, 0.07363938788718778, 0.07476900151250454, 0.07603328550599177, 0.07742017354994075, 0.07891744201676933, 0.08051297742649459, 0.08219498911003821, 0.08395216747042832, 0.08577379210496298, 0.087649796451316, 0.08957079675661445, 0.09152809333662977, 0.09351365159655875, 0.0955200693915088, 0.09754053622205121, 0.09956878863722719, 0.10159906515168234, 0.10362606303219331, 0.10564489849920052 ], [ 0.1049367054279364, 0.10298201592859216, 0.10101287399982818, 0.09903348746029013, 0.09704858473071482, 0.09506346100354456, 0.09308402347455043, 0.09111683397522705, 0.08916914689988657, 0.08724893978529681, 0.08536493326928815, 0.08352659643940756, 0.08174413282170333, 0.08002844153166196, 0.07839104754742643, 0.07684399486722436, 0.07539969673986442, 0.07407073851128315, 0.07286963120107619, 0.07180851789574416, 0.07089884037858987, 0.07015097971581055, 0.06957389096173357, 0.06917475751967204, 0.06895869359918207, 0.06892852242659107, 0.06908465279061543, 0.06942506748902794, 0.06994542565180488, 0.070639268838855, 0.07149831048344742, 0.07251278143053498, 0.0736718018324686, 0.07496375131748977, 0.07637661414338022, 0.07789828260465098, 0.07951680891470418, 0.08122060208187365, 0.08299857131258838, 0.08484022097876541, 0.08673570424860373, 0.08867584334078804, 0.09065212432807762, 0.09265667378707257, 0.0946822236205888, 0.0967220692617727, 0.09877002534096146, 0.10082038184415934, 0.10286786286513255, 0.10490758927350886 ], [ 0.10351698422805138, 0.10153458061666633, 0.09953945710957848, 0.09753599036028397, 0.0955290830051685, 0.09352420950456072, 0.09152746059483846, 0.08954558454742591, 0.08758602297884333, 0.08565693842047313, 0.08376723023586173, 0.08192653478199058, 0.0801452049919839, 0.07843426389495661, 0.07680532612474963, 0.07527048140865236, 0.0738421346362527, 0.07253279868766917, 0.07135483902307782, 0.07032017325017974, 0.0694399343900196, 0.06872411287916037, 0.06818119857130267, 0.06781784886590796, 0.06763861120868571, 0.06764572646574862, 0.0678390336619389, 0.06821598688086578, 0.06877178331542233, 0.06949958970545048, 0.07039084487279851, 0.07143561031964704, 0.07262293946771962, 0.07394123866118642, 0.0753785984037623, 0.07692308003924887, 0.07856294991400574, 0.08028685903354316, 0.08208397082756155, 0.08394404272982205, 0.08585746898618997, 0.08781529269176501, 0.08980919483508615, 0.09183146738297163, 0.09387497641145386, 0.09593312015420867, 0.09799978572178203, 0.10006930721884805, 0.10213642709415831, 0.10419626181579249 ], [ 0.10209171697903256, 0.10008217266922927, 0.09806173927466245, 0.09603496565423186, 0.09400693198229199, 0.09198329534136934, 0.08997033343772666, 0.0879749844650614, 0.08600488067997274, 0.08406837271709416, 0.08217454106427119, 0.08033319045843894, 0.07855482229991624, 0.07685057960889931, 0.07523215871175626, 0.07371168195873938, 0.0723015266079933, 0.07101410685528174, 0.06986160909285594, 0.0688556849426401, 0.06800711225011524, 0.06732544047901386, 0.0668186428233472, 0.06649280154685415, 0.0663518542311923, 0.06639742580164706, 0.06662876423116854, 0.0670427875425582, 0.06763423788473055, 0.0683959272629858, 0.06931905099433561, 0.0703935404423331, 0.07160842635309247, 0.0729521875203662, 0.07441306531319061, 0.07597933140281805, 0.0776395026176425, 0.07938250241545482, 0.0811977725939035, 0.08307534151072751, 0.08500585642975476, 0.08698058792977859, 0.08899141391610459, 0.09103078993203853, 0.09309171139869181, 0.09516767227573285, 0.09725262354043017, 0.09934093389260781, 0.10142735424306379, 0.10350698684477477 ], [ 0.10065900092125346, 0.09862262832521092, 0.09657727116763727, 0.09452765134696489, 0.09247902727824717, 0.09043723941129707, 0.08840875337074533, 0.08640069854427593, 0.08442089946877161, 0.08247789682549114, 0.08058095426210908, 0.07874004663723275, 0.07696582468862802, 0.07526955066078019, 0.07366299924807616, 0.07215831853603627, 0.07076784672269122, 0.06950388255355978, 0.06837841081871886, 0.0674027889743387, 0.06658740669613264, 0.06594133628064582, 0.0654719972116897, 0.0651848615794232, 0.0650832271225709, 0.06516808069428287, 0.06543806702977582, 0.06588956692781292, 0.06651687726050669, 0.06731247479569288, 0.06826733850600605, 0.06937130185927824, 0.07061340753051075, 0.07198224119154566, 0.07346622720305208, 0.07505387579401089, 0.07673397757465704, 0.07849574630825794, 0.08032891448781382, 0.08222378845677927, 0.08417127079489382, 0.08616285775491822, 0.08819061897863616, 0.09024716579526547, 0.09232561330989518, 0.0944195403646276, 0.09652295039295618, 0.098630235242953, 0.10073614324395726, 0.10283575214236913 ], [ 0.099216694252116, 0.09715352724860923, 0.09508332872447617, 0.09301099173616081, 0.09094195079951148, 0.08888222760978143, 0.08683847390060029, 0.08481800904013566, 0.08282884946425391, 0.0808797264999197, 0.07898008855115349, 0.07714008303842704, 0.07537051296654095, 0.07368276265711779, 0.07208868718745391, 0.07060046065246409, 0.0692303797758092, 0.06799062189733268, 0.06689296012234845, 0.06594844339252347, 0.06516705505707472, 0.06455736941025754, 0.06412623046856636, 0.06387847966767876, 0.06381675802795592, 0.06394140314030047, 0.06425045246433982, 0.06473975328718255, 0.06540316830956627, 0.06623285634474269, 0.06721960164835701, 0.06835316362844009, 0.06962262080472179, 0.0710166878498748, 0.07252399098530285, 0.07413329363018237, 0.07583367005794917, 0.07761462936393755, 0.07946619513325567, 0.08137894792716831, 0.08334403833147862, 0.0853531781302075, 0.08739861646398424, 0.08947310683773077, 0.09156986973204238, 0.09368255446851155, 0.09580520295861421, 0.09793221707250167, 0.10005833061782318, 0.1021785863231415 ], [ 0.09776245168567606, 0.09567223366279007, 0.0935769608269909, 0.0914816927126874, 0.08939203482062018, 0.08731418492593346, 0.08525497609753442, 0.0832219137699638, 0.08122320367888507, 0.07926776690835707, 0.07736523772405797, 0.07552593932532149, 0.07376083221789563, 0.07208142971261178, 0.0704996752715449, 0.06902777728381364, 0.06767799861701473, 0.06646240118794118, 0.06539254993652037, 0.06447918583740778, 0.06373188345576082, 0.06315871415302933, 0.06276594015399246, 0.06255776599973532, 0.06253617145150477, 0.06270084342638503, 0.06304921476953378, 0.06357660624831125, 0.06427645724068995, 0.06514062221280244, 0.0661597055693876, 0.06732340714770225, 0.0686208538996975, 0.07004089895262981, 0.07157237586710456, 0.07320430232691064, 0.07492603288898739, 0.07672736440849233, 0.07859860029138552, 0.08053058099329541, 0.08251468846096703, 0.08454283179970902, 0.08660742061244509, 0.0887013314031512, 0.09081787132252421, 0.0929507424587934, 0.09509400890451702, 0.09724206799428027, 0.09938962642146615, 0.1015316814037873 ], [ 0.09629376722511805, 0.0941759450769171, 0.092055045014113, 0.0899362855899043, 0.08782543515632388, 0.0857288592598767, 0.08365356442065214, 0.08160723535087058, 0.07959826209380971, 0.0776357529719094, 0.07572952865546566, 0.07389009215624341, 0.07212856920557052, 0.07045661343303906, 0.06888627121251668, 0.06742980222486068, 0.06609945395343483, 0.06490719167709826, 0.06386439009745493, 0.06298149829392334, 0.06226769561966716, 0.06173056141025198, 0.06137578468240514, 0.061206940097887054, 0.06122535256675374, 0.06143006503040558, 0.06181791328562222, 0.06238370010323871, 0.06312045058361423, 0.06401972354962131, 0.0650719508142446, 0.06626677733274985, 0.06759337965119143, 0.06904074632809104, 0.07059791075133078, 0.07225413291435995, 0.07399903160525367, 0.07582267186411723, 0.0777156145482482, 0.07966893565358354, 0.08167422298136791, 0.08372355710590446, 0.08580948263933603, 0.08792497468932216, 0.0900634042947322, 0.09221850558648005, 0.09438434650335568, 0.09655530411941421, 0.09872604501625527, 0.10089151065531829 ], [ 0.0948080241842315, 0.09266174848560997, 0.09051435092438148, 0.08837119896081137, 0.08623821269698831, 0.08412191397099227, 0.08202947165912132, 0.07996873993065694, 0.0779482855619557, 0.07597739977721395, 0.07406608948555325, 0.07222504229840426, 0.07046555944698056, 0.06879945083479516, 0.06723888716478536, 0.06579620562262742, 0.06448366822132776, 0.06331317577832205, 0.06229594556788697, 0.0614421666070319, 0.060760652516270164, 0.06025851678013658, 0.059940897649315844, 0.0598107586835954, 0.0598687854688077, 0.060113389776290715, 0.060540820843087775, 0.06114537172317748, 0.06191965906518379, 0.06285494888627766, 0.06394149957924046, 0.06516889607692568, 0.06652635460466798, 0.0680029842810965, 0.06958799862658485, 0.07127087585361622, 0.07304147116316793, 0.07489008707146486, 0.07680750921988173, 0.07878501547933406, 0.080814365775335, 0.0828877792190677, 0.08499790406002411, 0.08713778483906795, 0.08930083002356136, 0.09148078241289159, 0.09367169374666129, 0.09586790424224827, 0.09806402723254712, 0.100254938659421 ], [ 0.09330255239070463, 0.09112668380167419, 0.0889516110335881, 0.08678283792957478, 0.08462642241601752, 0.08248902800804642, 0.0803779715614921, 0.07830126368182168, 0.07626763747739426, 0.07428656063258281, 0.07236822513321349, 0.07052350849054367, 0.0687639001115344, 0.06710138673441175, 0.06554829182239276, 0.06411706574757124, 0.06282002674007042, 0.061669057045247735, 0.06067526439714877, 0.05984862527404871, 0.059197632496269054, 0.05872897422103646, 0.05844727283481152, 0.05835490952209505, 0.058451953105104704, 0.058736200935191184, 0.05920332707350344, 0.059847121193841654, 0.060659792867631485, 0.06163231158149601, 0.06275475322865383, 0.06401662805733131, 0.06540717165871018, 0.06691558792615725, 0.0685312397128249, 0.0702437883525109, 0.07204328698405996, 0.07392023480125641, 0.07586560021974309, 0.07787082086738031, 0.07992778760488067, 0.0820288187486117, 0.08416662950103354, 0.08633430043309216, 0.08852524778992965, 0.09073319745145618, 0.09295216359165086, 0.09517643244788432, 0.09740055112678017, 0.09961932102287976 ], [ 0.09177469238233231, 0.08956781413830983, 0.08736359808625364, 0.08516766987941461, 0.0829862087602765, 0.08082600227172383, 0.07869449753773118, 0.07659984517456969, 0.07455093105586602, 0.07255739033746592, 0.07062959742409906, 0.06877862503932053, 0.06701616540032815, 0.06535440691325974, 0.06380586105613517, 0.0623831364911983, 0.061098661184948354, 0.05996435849164851, 0.058991289546007936, 0.058189281238392315, 0.057566565339851834, 0.05712945846335505, 0.05688211293899244, 0.05682636431416789, 0.05696169208128739, 0.05728529769697278, 0.057792290370702985, 0.058475959238902496, 0.059328102695455055, 0.060339382957039965, 0.06149967617623073, 0.06279839427797111, 0.06422476239348386, 0.06576804359699591, 0.06741770938580606, 0.06916355934978127, 0.07099579663664975, 0.07290506735940187, 0.0748824723963253, 0.07691955950988855, 0.07900830270906628, 0.08114107456568868, 0.08331061594848849, 0.08551000646792459, 0.08773263788930927, 0.08997219189621482, 0.09222262287509735, 0.09447814583837337, 0.09673322919291581, 0.09898259177734993 ], [ 0.09022186627914196, 0.0879823024034826, 0.08574720843773814, 0.08352231572916881, 0.08131390610145121, 0.07912887061283135, 0.07697476557231034, 0.074859861521085, 0.0727931798988269, 0.07078451114822319, 0.06884440715857011, 0.0669841403452565, 0.0652156214977289, 0.06355126905667295, 0.06200382400855461, 0.06058610743284767, 0.059310722154126194, 0.05818970597778062, 0.05723415128167555, 0.05645381342087034, 0.055856737040546924, 0.05544893318264236, 0.05523413932184529, 0.055213688239829035, 0.05538650033091494, 0.05574919940820432, 0.05629633729833906, 0.05702070059072771, 0.057913666112881984, 0.058965570811350024, 0.06016606596506409, 0.06150443324605463, 0.06296984896748818, 0.06455159113902077, 0.06623919055980645, 0.06802253168469659, 0.06989191148985767, 0.07183806542922781, 0.0738521692992725, 0.07592582486940246, 0.07805103584530569, 0.08022017935834289, 0.08242597686705605, 0.08466146719618091, 0.0869199834569206, 0.08919513479415776, 0.0914807932815892, 0.09377108581695931, 0.09606039053710658, 0.09834333705600938 ], [ 0.0886416549005343, 0.08636749352702544, 0.08409955034764517, 0.08184364541731196, 0.07960614267568843, 0.07739401358760274, 0.07521489918578132, 0.07307716588308241, 0.07098994924126108, 0.06896317871442595, 0.06700757534077571, 0.06513461360125684, 0.06335643843038381, 0.061685728957520974, 0.060135502341646434, 0.05871885441440499, 0.05744863904339742, 0.05633709517992823, 0.05539543899486516, 0.054633447214803885, 0.05405906497389178, 0.053678075051272256, 0.05349386337738671, 0.053507307321516116, 0.053716799353713235, 0.05411840178684618, 0.05470611209725477, 0.05547220631707291, 0.05640762240983152, 0.05750234670339215, 0.058745772955949425, 0.060127013100385325, 0.06163514871307389, 0.06325942094494924, 0.0649893630551639, 0.06681488360068931, 0.06872631008187577, 0.07071440298746874, 0.07277034931143953, 0.0748857432212604, 0.07705255999595247, 0.07926312784295238, 0.0815101008621588, 0.08378643529940474, 0.08608537032468962, 0.08840041386571709, 0.09072533349947075, 0.0930541520270433, 0.09538114710427936, 0.09770085415069325 ], [ 0.08703188062487272, 0.08472100154258799, 0.08241803612947111, 0.08012887617045669, 0.07785994620573373, 0.07561827280665827, 0.0734115539522536, 0.07124822357425209, 0.06913750491675832, 0.06708944491956852, 0.06511492051695857, 0.06322560674685208, 0.06143389617052674, 0.059752759681990744, 0.058195540784288284, 0.056775679284938936, 0.05550636644949663, 0.05440014194963756, 0.05346845284862182, 0.0527212049725577, 0.052166345111937455, 0.05180951597711203, 0.05165382250405119, 0.05169973721141195, 0.05194515523398658, 0.0523855898687035, 0.053014481500817036, 0.053823580653179486, 0.05480336176144221, 0.05594342785565163, 0.05723287542637031, 0.058660600323415885, 0.06021553677977522, 0.061886830704480186, 0.06366395446681705, 0.06553677358949819, 0.06749557666957637, 0.0695310792053889, 0.07163441051571362, 0.07379709111762794, 0.07601100612183473, 0.07826837859311438, 0.08056174548398363, 0.08288393768921061, 0.08522806496157237, 0.08758750583562198, 0.08995590228663222, 0.0923271585706673, 0.09469544351981107, 0.0970551954799524 ], [ 0.08539069549363103, 0.08304080073201013, 0.080700477012039, 0.07837567201364772, 0.07607284923643219, 0.07379906347832592, 0.07156203876967339, 0.06937024361082555, 0.06723295664407168, 0.06516031410824434, 0.06316332873475974, 0.061253868386300786, 0.05944458205559949, 0.05774876128711229, 0.05618012721279131, 0.05475253778213087, 0.05347961685279207, 0.05237431661325257, 0.05144843660107871, 0.050712134597480245, 0.050173474147349226, 0.04983805712203322, 0.04970878496996683, 0.04978577837392662, 0.050066464031508114, 0.050545813825689984, 0.0512167014503633, 0.05207032926954264, 0.05309667582265283, 0.05428492089495274, 0.055623817240159946, 0.05710199200599263, 0.05870817347992365, 0.06043134809804454, 0.06226085824876148, 0.06418645370811192, 0.06619830946631027, 0.0682870212035458, 0.07044358753506864, 0.07265938591263775, 0.07492614705140764, 0.07723593108362728, 0.07958110734635872, 0.08195433875361403, 0.08434857102410057, 0.08675702657241688, 0.08917320257033541, 0.09159087250337998, 0.09400409045455695, 0.09640719731873017 ], [ 0.08371667417928798, 0.08132532015447069, 0.07894517965949759, 0.07658224302425469, 0.07424299218907097, 0.07193448263158095, 0.06966443086003828, 0.06744130223434003, 0.06527439180775403, 0.06317388866773237, 0.061150912072529505, 0.059217505812168, 0.057386576077697274, 0.05567175826077324, 0.05408720022211451, 0.0526472544120921, 0.05136607940176497, 0.05025716299566604, 0.049332793306778915, 0.04860351880491532, 0.048077649886770324, 0.047760858802256896, 0.047655928473889546, 0.04776268312178727, 0.048078107611985305, 0.04859663426669441, 0.04931055278114299, 0.0502104864023119, 0.05128587742219555, 0.05252543520096436, 0.05391751582298794, 0.05545041922227976, 0.057112603577388746, 0.05889282623248904, 0.06078022526310768, 0.0627643569886959, 0.06483520351136539, 0.06698316190984455, 0.06919902391500074, 0.07147395227550948, 0.07379945784727479, 0.07616737977572949, 0.07856986994642877, 0.08099938206981176, 0.08344866524552925, 0.0859107615366384, 0.08837900690878019, 0.09084703480758016, 0.09330878162730613, 0.09575849334495294 ], [ 0.08200891169884454, 0.07957354117236042, 0.07715104358679296, 0.07474744309023892, 0.07236922233344731, 0.0700234105974049, 0.06771768144042561, 0.06546045474303805, 0.0632609955577841, 0.061129499432187505, 0.05907715106177486, 0.05711614056728008, 0.05525961986107773, 0.053521581154435845, 0.05191664153595859, 0.05045972271064094, 0.04916562428921395, 0.04804850275284913, 0.04712128549940502, 0.04639506756502429, 0.04587855322838076, 0.04557761030336855, 0.045494997097297825, 0.04563029982866583, 0.045980085836032566, 0.04653824349396098, 0.04729645284250015, 0.048244718213023834, 0.049371897012394875, 0.05066617367243031, 0.05211544825340639, 0.05370762916088205, 0.05543083484021908, 0.057273518666592214, 0.05922453504718863, 0.06127316451368039, 0.06340911301440519, 0.06562249712710763, 0.0679038234440411, 0.07024396743116425, 0.07263415480689474, 0.07506594690164979, 0.07753123043095547, 0.08002221150012387, 0.08253141332635217, 0.08505167701161519, 0.08757616465310283, 0.09009836409021817, 0.09261209462998153, 0.0951115131511703 ], [ 0.08026712618703587, 0.07778509808927841, 0.07531765925214948, 0.07287086548015007, 0.07045118737820114, 0.06806560373321126, 0.06572170926548408, 0.0634278320387068, 0.06119315290360119, 0.059027815996960054, 0.056943015726517936, 0.054951042198090945, 0.05306526424654818, 0.051300027935929415, 0.04967044969502922, 0.04819208845790381, 0.04688049153118314, 0.04575062505042431, 0.04481622100983112, 0.04408909583812915, 0.04357851463418356, 0.04329068320548698, 0.04322844086847872, 0.043391199147834285, 0.043775130545007174, 0.04437356875150732, 0.045177549647328064, 0.046176409451848505, 0.04735836330725643, 0.04871100854309506, 0.050221723114161815, 0.051877953469307486, 0.05366740293125457, 0.05557814054562881, 0.05759865263038076, 0.059717857216685856, 0.06192509743325529, 0.06421012528303958, 0.06656308315619211, 0.06897448722747265, 0.07143521465199992, 0.07393649506307672, 0.07646990608464242, 0.07902737219764164, 0.08160116618044448, 0.08418391236015316, 0.08676859098888184, 0.08934854315317048, 0.091917475715438, 0.09446946586605426 ], [ 0.07849176765089406, 0.07596038275679583, 0.07344540745267801, 0.07095293643481129, 0.06848942328171367, 0.06606177720682048, 0.06367747992969712, 0.06134471876693732, 0.0590725286716538, 0.0568709319064501, 0.05475105951089289, 0.052725234096915714, 0.05080698940505969, 0.049010999444736456, 0.04735289027772602, 0.04584891229396848, 0.04451546196760258, 0.043368460789365446, 0.042422624869306584, 0.04169068808683228, 0.0411826674014467, 0.040905271194523286, 0.040861541527878166, 0.0410507864539696, 0.04146880623176786, 0.042108363051037836, 0.04295980480935806, 0.044011740265973286, 0.04525167537617142, 0.04666654972673354, 0.04824314554514337, 0.04996836995569938, 0.05182942924351345, 0.05381392172077496, 0.055909875915788276, 0.05810575650574111, 0.0603904544733952, 0.06275327221080612, 0.06518390963196388, 0.06767245404582539, 0.0702093744613925, 0.07278551986757271, 0.07539212054942133, 0.07802079141061391, 0.08066353637909697, 0.08331275315474887, 0.08596123774369542, 0.08860218838040006, 0.09122920855655739, 0.09383630895796426 ], [ 0.07668413438807296, 0.07410065498370748, 0.07153556181730966, 0.0689950083031617, 0.06648543727483547, 0.06401367803414046, 0.06158707008232284, 0.05921361097273624, 0.056902121916695136, 0.05466241999414225, 0.05250548022636082, 0.050443564733082855, 0.048490290400846764, 0.04666060203223615, 0.04497061645463695, 0.04343730673311073, 0.04207800698458412, 0.040909739461995075, 0.03994839682983398, 0.03920785027701708, 0.03869908934273614, 0.03842951867595201, 0.038402527466029575, 0.03861740419339172, 0.03906960189412097, 0.039751288946157884, 0.040652071482810255, 0.041759760070979784, 0.043061073570890215, 0.044542213209725255, 0.04618928280361421, 0.047988564398914406, 0.049926677590204506, 0.05199065672289699, 0.05416797736027029, 0.05644655631256944, 0.05881474157596521, 0.06126130164428902, 0.06377541858752289, 0.06634668604644117, 0.06896511152498232, 0.0716211216261925, 0.07430556877005172, 0.07700973814532051, 0.07972535397771495, 0.08244458452461957, 0.08516004547474842, 0.08786480162297744, 0.09055236681085767, 0.09321670218777484 ], [ 0.07484649960258558, 0.07220816175212534, 0.06959039767002036, 0.06699945549211334, 0.06444178903153348, 0.06192415060481651, 0.059453717713434565, 0.0570382530153167, 0.054686292860188015, 0.05240735415461121, 0.05021214255898603, 0.04811273733592373, 0.046122720262483326, 0.044257209088998724, 0.042532751962438095, 0.04096704074930963, 0.039578411740858986, 0.03838512526014019, 0.03740445287529714, 0.036651649179386396, 0.03613893375920969, 0.03587463990436341, 0.03586268033336128, 0.03610242754832347, 0.03658901854669166, 0.03731400088237203, 0.0382661740026165, 0.03943246599258319, 0.04079871719183977, 0.04235029729983683, 0.04407253753852656, 0.04595099863326077, 0.04797161456081017, 0.05012075488826555, 0.05238524173554558, 0.05475234697049535, 0.057209785147981834, 0.05974570981664727, 0.06234871557051477, 0.06500784527051, 0.06771260057563828, 0.07045295368153752, 0.0732193584715272, 0.07600275980359744, 0.07879460018505882, 0.08158682352470017, 0.08437187596636768, 0.08714270400209054, 0.08989275015953115, 0.0926159465851198 ], [ 0.07298225157380639, 0.07028626950766036, 0.06761331225578136, 0.06496977865681088, 0.06236217545566473, 0.05979719972990971, 0.05728186258371561, 0.0548236563223174, 0.0524307629699267, 0.05011229584922455, 0.04787855798017911, 0.045741291533655526, 0.04371388215016777, 0.04181147185377714, 0.0400509266429036, 0.03845060284193239, 0.03702986443499308, 0.03580832710907058, 0.03480484758680301, 0.03403633770102801, 0.03351654984499174, 0.033255029858461634, 0.03325643561401694, 0.03352035697055802, 0.034041657443451695, 0.034811232732780584, 0.035816997167767636, 0.037044894645408395, 0.03847977778147687, 0.04010607497366472, 0.04190823568058053, 0.043870989952342634, 0.04597947645518543, 0.04821929139409554, 0.05057649877299711, 0.05303762812502438, 0.05558967358158066, 0.05822009950889453, 0.06091685282816755, 0.06366837973081563, 0.06646364385633378, 0.06929214332133568, 0.07214392471457201, 0.07500959296244324, 0.07788031664673177, 0.0807478288543117, 0.08360442395455556, 0.08644295086247503, 0.08925680339378692, 0.09203990829100679 ], [ 0.07109605133395305, 0.06833961496186441, 0.06560896312525462, 0.06291072501528623, 0.060251527631705964, 0.05763805985248266, 0.05507718484191521, 0.052576106670350224, 0.0501425927521158, 0.047785247134395074, 0.04551382059792988, 0.043339532070808345, 0.041275362569141695, 0.03933626898054247, 0.03753925267546118, 0.03590321075544977, 0.034448501203654655, 0.033196174631921906, 0.03216687215259773, 0.03137946358036, 0.030849591856184255, 0.030588367786705643, 0.030601479666716287, 0.030888911964877037, 0.031445315552706424, 0.03226089916118139, 0.03332259535692754, 0.03461523801385268, 0.036122558206937404, 0.03782791074628689, 0.039714734752021655, 0.041766804520369065, 0.043968342292845373, 0.04630405580491738, 0.048759144958465526, 0.05131930331040055, 0.053970725786466195, 0.0567001250189919, 0.0594947540963915, 0.06234243190278671, 0.0652315673388237, 0.06815117961419119, 0.07109091290437182, 0.07404104465773811, 0.0769924875961819, 0.07993678595130445, 0.08286610675129442, 0.08577322707342716, 0.08865151815829266, 0.09149492719116677 ], [ 0.06919401189615088, 0.06637428062635205, 0.06358343308017742, 0.06082843519213365, 0.05811613195236454, 0.05545328342127315, 0.052846654982898054, 0.05030317229273771, 0.047830147603369136, 0.04543557751465706, 0.043128502258720766, 0.04091940328149734, 0.03882059951237361, 0.03684658442546137, 0.03501422792290292, 0.0333427529194735, 0.031853392426822114, 0.030568648330199892, 0.029511119832756616, 0.02870195683025346, 0.02815911543989199, 0.02789571431766363, 0.02791884662501108, 0.028229132411498617, 0.028821097719091984, 0.029684222970040853, 0.030804335122799887, 0.03216499678158488, 0.03374864868908943, 0.03553740947872276, 0.03751355534316633, 0.03965976266313016, 0.041959206335689066, 0.04439558803878443, 0.04695314199960083, 0.04961664250001979, 0.05237142137310367, 0.05520339484394287, 0.058099095330894655, 0.06104570319994169, 0.06403107437413176, 0.06704376112605867, 0.0700730247690067, 0.07310884006667989, 0.07614189194008752, 0.0791635654927246, 0.08216593056833682, 0.08514172207234069, 0.08808431719323047, 0.09098771050524534 ], [ 0.06728390224424394, 0.06439800124308963, 0.06154443103000563, 0.058730629145804, 0.05596379092300773, 0.05325086629516516, 0.050598614470925084, 0.04801373237395834, 0.04550307004853987, 0.04307394010603425, 0.04073451795447323, 0.03849431457256181, 0.03636468409595216, 0.03435930540803488, 0.032494552250658615, 0.030789643612862974, 0.029266451477578444, 0.027948847080165463, 0.026861506261390847, 0.026028188396907216, 0.025469658302837456, 0.025201603440632842, 0.025233020584874786, 0.025565497406349016, 0.026193559989550905, 0.027105906095509794, 0.028287089537641127, 0.02971918685053134, 0.031383130179987014, 0.03325960038819098, 0.035329531366294624, 0.037574344657569876, 0.039976033254545996, 0.04251718131432329, 0.045180969905384456, 0.047951190646635604, 0.050812271874110124, 0.053749313686206175, 0.056748125662591124, 0.05979526150809679, 0.0628780465295887, 0.06598459569467226, 0.06910382157483316, 0.072225432591552, 0.07533992267424151, 0.07843855378286203, 0.08151333284051247, 0.08455698454917308, 0.08756292139434627, 0.0905252119330516 ], [ 0.06537537701155599, 0.06242040575241, 0.05950153770308151, 0.05662684479265082, 0.05380404197164587, 0.051040432854381694, 0.04834291320836435, 0.045718054281138544, 0.04317228709424896, 0.0407122040624715, 0.03834498433748638, 0.036078933201668044, 0.03392410341070362, 0.03189293833158348, 0.03000084489280322, 0.02826657191023776, 0.02671224158295039, 0.025362868943062482, 0.024245225251060567, 0.023385987852738616, 0.022809300577606106, 0.02253413175828982, 0.022572052461385692, 0.02292607815863731, 0.023590906736775573, 0.024554369638129875, 0.02579950736306694, 0.027306614660674425, 0.029054829624043377, 0.031023148445297202, 0.03319095990504004, 0.03553826906214398, 0.03804576255112693, 0.04069481660315719, 0.04346749994048812, 0.04634659026807045, 0.049315605103240845, 0.052358840477844185, 0.05546140988342321, 0.05860927736239416, 0.06178928094140089, 0.0649891447236671, 0.06819747956292739, 0.07140377329162842, 0.07459837205483381, 0.07777245452987229, 0.08091800080400931, 0.08402775753144143, 0.08709520076518983, 0.0901144976071672 ], [ 0.06348022838055128, 0.060453295606255966, 0.05746650238633096, 0.05452874178931828, 0.05164845360587564, 0.04883350714552277, 0.04609113664797568, 0.04342795758173519, 0.04085009405223147, 0.03836344529847262, 0.03597411085983079, 0.03368897777137626, 0.03151644826457276, 0.02946725339778591, 0.027555258759613566, 0.025798125922942543, 0.024217651581574323, 0.022839571988412646, 0.021692610443188987, 0.020806600064313435, 0.020209696948946306, 0.019925049330209766, 0.019967707802519066, 0.02034275226510302, 0.021045276087589472, 0.022062096953505746, 0.023374381251073405, 0.024960228246916155, 0.02679661358877325, 0.028860560561595205, 0.03112970361459837, 0.03358248818003827, 0.03619820442024125, 0.03895697319036181, 0.04183973775851125, 0.04482827585753376, 0.04790522844793763, 0.0510541359114347, 0.054259472803177576, 0.057506674878519425, 0.06078215493999609, 0.06407330635003688, 0.06736849464438624, 0.07065703863168198, 0.07392918282629861, 0.07717606318588065, 0.08038966803665304, 0.0835627958618199, 0.08668901136564457, 0.08976260095085924 ], [ 0.06161264949621462, 0.05851095304427566, 0.055453590374746495, 0.05245047792887505, 0.04951101561089189, 0.0466438969624931, 0.04385695989180951, 0.04115711193438749, 0.03855036992031524, 0.03604205577644471, 0.033637185125854493, 0.03134107053585667, 0.029160134838688945, 0.02710289195061423, 0.025181005466392972, 0.02341028298223977, 0.021811409838439415, 0.020410170780380297, 0.019236857292156965, 0.018324546648036903, 0.017706065425652374, 0.017409858358206895, 0.017455672245943465, 0.01785152204033946, 0.018593161553760652, 0.01966611665201936, 0.0210491253409505, 0.022717519877051975, 0.024645663034666955, 0.02680830483642179, 0.02918115103179923, 0.031741004158224215, 0.03446573715642186, 0.037334237274366334, 0.04032637277205292, 0.04342299041202987, 0.04660593435376103, 0.04985807373604113, 0.05316332857014581, 0.05650668730633657, 0.059874212797967834, 0.06325303584632022, 0.06663133707724612, 0.06999831876511728, 0.07334416858904329, 0.07666001735628761, 0.07993789258796226, 0.08317066962323336, 0.08635202161965284, 0.08947636954634877 ], [ 0.05978948793423513, 0.05661046125369188, 0.05347996889546723, 0.0504091544827222, 0.04740863090475746, 0.044488212122744786, 0.04165666528756158, 0.038921521106980016, 0.03628899141985902, 0.03376405085977608, 0.03135074031021314, 0.02905273901538522, 0.02687422595611574, 0.02482100833080973, 0.022901838794699987, 0.02112978027362343, 0.01952341346857788, 0.018107613895486454, 0.01691353605844445, 0.015977331552785783, 0.015337099992632884, 0.015027923162944264, 0.015075851697245422, 0.015492993573404905, 0.016276019464865125, 0.01740863688424697, 0.01886631517297248, 0.020620874349338136, 0.02264358065680856, 0.024906674783482304, 0.02738386861822173, 0.03005035660147791, 0.032882682097757236, 0.035858611941395814, 0.0389570627920721, 0.04215807510716734, 0.045442816610209893, 0.048793597720488524, 0.05219388642003801, 0.05562831521486221, 0.05908267684224859, 0.06254390803721459, 0.06600006224964057, 0.06944027301434703, 0.07285470998601659, 0.07623452965545126, 0.0795718225972074, 0.08285955884789944, 0.08609153273469623, 0.08926230819721097 ], [ 0.058030453181712176, 0.05477200114473223, 0.05156610008874095, 0.04842530674011752, 0.04536169728060676, 0.042386521508123845, 0.039509848268794834, 0.036740240733851716, 0.03408451716036559, 0.03154766899090517, 0.029133018360504685, 0.02684269434715912, 0.024678484577068956, 0.022643072125677823, 0.020741600006112, 0.018983428440719274, 0.017383878132344183, 0.01596568559496297, 0.014759793181281363, 0.01380487969917519, 0.013144728869537254, 0.012822568960322371, 0.012872794031499752, 0.013313054994787705, 0.014141053736750031, 0.015337726454996786, 0.0168740797808461, 0.018717577562167388, 0.020836018308508588, 0.02319910217571837, 0.025778691719602488, 0.028548583578785067, 0.03148421203915248, 0.03456243129840845, 0.037761393880829414, 0.04106049957699056, 0.044440384076472064, 0.04788292350546156, 0.05137123975701928, 0.05488969843828098, 0.058423895961055676, 0.061960635174910336, 0.0654878905322788, 0.06899476453809761, 0.07247143749582914, 0.0759091125313564, 0.0792999576917861, 0.08263704666071504, 0.08591429935503164, 0.0891264233997296 ], [ 0.05635822422460871, 0.05301906656243324, 0.04973608177031321, 0.046523383979483794, 0.04339473271387932, 0.04036311884752195, 0.03744030475815788, 0.034636352733775244, 0.03195919893048873, 0.029414356666693318, 0.0270048568037515, 0.024731544681859556, 0.022593840324211408, 0.02059102130120515, 0.018724005441944514, 0.01699751004983103, 0.01542237668382775, 0.014017796436648135, 0.012813099975605348, 0.011848504690815536, 0.011173524534511762, 0.010841038098676446, 0.010896148783147513, 0.011363631813882974, 0.012241911879534528, 0.013507591878082563, 0.015125764757002728, 0.01705887697955947, 0.019271279076375495, 0.02173048460074855, 0.02440694205931742, 0.027273451596511525, 0.03030467348968224, 0.03347682006751706, 0.036767497295131214, 0.040155639675822204, 0.04362149267585717, 0.047146612755645696, 0.05071386792760113, 0.05430743037181771, 0.05791275787118321, 0.06151656376899153, 0.0651067766651944, 0.0686724917320925, 0.07220391571216446, 0.07569230758100798, 0.07912991664785003, 0.08250991960069404, 0.08582635772661032, 0.08907407527388328 ], [ 0.05479838442180326, 0.051378512726215964, 0.0480178404717641, 0.0447321173396411, 0.04153694342448296, 0.03844730629515474, 0.03547702991909258, 0.03263815822773648, 0.02994032411113394, 0.027390192118131214, 0.024991105287825714, 0.022743101503231614, 0.020643473378528027, 0.018688006623165537, 0.016872934293344754, 0.015197505477226808, 0.01366694073006967, 0.012295498431195965, 0.011109387470211654, 0.010149051223467733, 0.009469302143364678, 0.009133819336626882, 0.009200631159334751, 0.009702787588989133, 0.010638260325979193, 0.01197721126102085, 0.01367764370007778, 0.015697078345712108, 0.017997163442722793, 0.020544067469768727, 0.02330752326218322, 0.02625985219431935, 0.029375311400645258, 0.03262973803642138, 0.03600038705802614, 0.039465874099850896, 0.04300616567467695, 0.0466025836217808, 0.05023780680134158, 0.05389586250735001, 0.057562105297022, 0.061223183635635246, 0.06486699602035448, 0.0684826387218112, 0.07206034733734772, 0.07559143419384136, 0.07906822338553553, 0.08248398494739756, 0.08583286938139824, 0.08910984348944563 ], [ 0.05337909580403117, 0.04988032662061649, 0.046443041011931946, 0.043084616845786926, 0.03982255798777825, 0.03667401047441488, 0.0336551479423607, 0.0307804304977857, 0.02806177036753563, 0.025507684176791563, 0.0231225746615944, 0.020906353008346205, 0.018854660768322942, 0.01695993867106859, 0.015213484669413264, 0.013608449814019723, 0.012143513812637117, 0.010826896910151939, 0.009680469199739144, 0.008743698825587395, 0.008075938835986651, 0.007751974071453939, 0.007843673137359081, 0.008391845141335022, 0.009391622069879299, 0.010804915570536486, 0.01258287846944706, 0.014679581313224345, 0.017055535262478123, 0.019676736248151777, 0.02251296429060979, 0.025536535231290135, 0.02872159851561651, 0.03204380741313926, 0.03548019552070412, 0.039009150959472355, 0.042610427124140225, 0.04626515878649627, 0.04995586931198301, 0.05366646376244612, 0.05738220719558983, 0.06108968959148036, 0.06477677968856205, 0.06843257021764737, 0.07204731691280317, 0.07561237342562356, 0.07912012396494857, 0.08256391517309768, 0.08593798845581713, 0.08923741371704971 ], [ 0.05213042217883262, 0.04855699336203596, 0.04504654436120276, 0.04161798181787629, 0.038290662418977654, 0.03508392042918047, 0.03201642791607234, 0.029105367364126118, 0.026365420869523506, 0.02380762967709345, 0.02143825961758833, 0.019257918021316954, 0.01726127759872334, 0.01543781210161525, 0.01377386146251985, 0.012256086244769015, 0.010876026924418554, 0.009635276033538219, 0.008550908822543038, 0.007661027106822456, 0.007028991293753933, 0.00673971875213709, 0.00687676478890226, 0.0074849441182705655, 0.008553509374427653, 0.010036443248657882, 0.011880764704790308, 0.014039907676345643, 0.016475160576080297, 0.01915342601443298, 0.022045093980916124, 0.025122766910518454, 0.02836064645024881, 0.03173429769258676, 0.035220595622156105, 0.038797744536600086, 0.042445315616103735, 0.0461442777392179, 0.049877011964701984, 0.05362730753115633, 0.057380340598048835, 0.061122638299186995, 0.06484203104710866, 0.0685275959399873, 0.07216959384090078, 0.07575940235011676, 0.07928944653405567, 0.08275312893780697, 0.08614476010310268, 0.08945949054444308 ], [ 0.051083231387550186, 0.0474423457128509, 0.04386524301185288, 0.040372179672203204, 0.03698420136727695, 0.0337227108771554, 0.030608843445350985, 0.02766260258069432, 0.02490172244254297, 0.022340266102345373, 0.01998706099945837, 0.017844225818486822, 0.01590623775480417, 0.014160146114490348, 0.012587518116596925, 0.011168388616490936, 0.009886939098769535, 0.008738182480744778, 0.007734972700607441, 0.006914973878025494, 0.006345822340527871, 0.006120211025984907, 0.006327137822337002, 0.007008464521182688, 0.008145750233375208, 0.009688573552418422, 0.011584291528565282, 0.013788662940351524, 0.01626523767938246, 0.01898248115268863, 0.021911680167005607, 0.025025864442603272, 0.028299373214133856, 0.031707746083698606, 0.03522774969240496, 0.03883744514474407, 0.0425162531387487, 0.04624499995395488, 0.050005939806386415, 0.053782754513492355, 0.05756053352515679, 0.0613257379576783, 0.06506615217739363, 0.06877082612402949, 0.07243001112645674, 0.07603509152618655, 0.07957851401916641, 0.08305371626529787, 0.08645505599914899, 0.08977774160227014 ], [ 0.05026766290531374, 0.0465698443314838, 0.04293616162990522, 0.03938799320580466, 0.035947823695795564, 0.03263886922618113, 0.029484497869630918, 0.026507373574434445, 0.02372824897899085, 0.021164359568806065, 0.01882746069935348, 0.016721736586584324, 0.014842103339300451, 0.013173740718837533, 0.01169379945765785, 0.010375885338983261, 0.00919710822491512, 0.008146663413981688, 0.007234709496957358, 0.0065004934037995385, 0.006016813099711915, 0.005880771786436316, 0.006178449028132507, 0.006941930257773377, 0.008145655439268736, 0.009739300345367472, 0.01167411217545982, 0.013909896664196324, 0.016413157539761834, 0.019154228112637225, 0.02210548468985349, 0.02524054808726399, 0.028534045479802976, 0.03196162592412074, 0.03550006393140104, 0.03912737364753623, 0.0428229022129583, 0.04656739270340932, 0.050343016590175024, 0.05413337934875834, 0.05792350389695501, 0.06169979648035294, 0.06544999914312909, 0.06916313232910608, 0.07282943057842321, 0.07644027376265063, 0.07998811584658069, 0.08346641277539463, 0.08686955075417609, 0.09019277590578678 ], [ 0.04971124123425715, 0.04597035623517398, 0.0422938579613662, 0.038704008260227754, 0.03522443654129083, 0.031879821899388705, 0.02869536672187427, 0.025695970479436864, 0.0229049927169185, 0.020342500583966652, 0.01802297243410788, 0.0159526394904825, 0.014127037775351256, 0.012529836042556907, 0.011134294114676478, 0.009908345206825136, 0.008823165248847553, 0.007863814726206755, 0.007039999002806276, 0.006394828577874507, 0.006006854272527451, 0.005974080300122126, 0.006373291104683624, 0.007223616764371478, 0.008493845413759287, 0.010135778282531037, 0.012105308643643654, 0.014366365673912198, 0.016888431266827902, 0.019643861034829856, 0.02260638036308868, 0.02575050297325811, 0.029051441096754903, 0.032485220586578455, 0.036028851763626676, 0.03966048946268006, 0.043359557913197816, 0.04710683548790523, 0.05088450234241238, 0.05467615664915044, 0.05846680550860683, 0.062242836105590456, 0.0659919718923568, 0.06970321778150435, 0.07336679761303638, 0.07697408654481432, 0.08051754049934275, 0.08399062436970614, 0.0873877403291835, 0.0907041572906989 ], [ 0.049436834296968345, 0.04566966623371887, 0.04196739100046381, 0.03835292890902098, 0.034850748592535515, 0.03148658657237577, 0.02828695498716151, 0.025278331845645746, 0.02248589571677718, 0.019931657011140837, 0.017631904316321934, 0.015594115005047227, 0.013813954102615933, 0.012273634398433791, 0.01094333924930973, 0.009787000128251669, 0.008772280225195925, 0.007882950587163656, 0.007131010768813148, 0.0065652553033899224, 0.006269640688390888, 0.006340188733891429, 0.006841785261078051, 0.007780807124103288, 0.009121038296799715, 0.010815507501763173, 0.012823216335803404, 0.015111085520907293, 0.017651079366454395, 0.020417557675077844, 0.0233858454099411, 0.026531714318689798, 0.029831349516256343, 0.033261516918028866, 0.03679978124455513, 0.04042470667310412, 0.04411601531792113, 0.04785469898109959, 0.05162308806877253, 0.05540488438118851, 0.05918516480957499, 0.06295036232100965, 0.06668822967186619, 0.07038779034871383, 0.07403928039762186, 0.07763408409336713, 0.08116466581173144, 0.08462449998407803, 0.08800800061575792, 0.09131045152239017 ], [ 0.0494607622421407, 0.04568612004615285, 0.04197737413698082, 0.03835788620148622, 0.03485264735472681, 0.03148800041439945, 0.028291139778072898, 0.02528927355382891, 0.0225082957794105, 0.01997080506491402, 0.017693380819659304, 0.015683289617867767, 0.013935327752816093, 0.012430217576282692, 0.011136402652884573, 0.010016559001526412, 0.009038523334420972, 0.008188555721989461, 0.007483845465445595, 0.006979930712997878, 0.006764886593596342, 0.006930481767717687, 0.007529433347350422, 0.008556795242676121, 0.009971272281044365, 0.011725149221754154, 0.01377825906024947, 0.016098871343097166, 0.0186605484526278, 0.0214393486836682, 0.024412255053504937, 0.027556551792248682, 0.030849735148052476, 0.0342696659515181, 0.03779479855928331, 0.04140440529588435, 0.04507876299288344, 0.04879929225901476, 0.052548651109501264, 0.05631078888374644, 0.060070967479058934, 0.06381575662586146, 0.06753300910645538, 0.07121182088065126, 0.07484248019669017, 0.07841640899383977, 0.08192609925275668, 0.08536504641117301, 0.0887276815191382, 0.09200930344418833 ], [ 0.04979140398136449, 0.04602887660544884, 0.04233377237708075, 0.038729651999981435, 0.03524167020053061, 0.031896258230308075, 0.028720564548183003, 0.02574153531092597, 0.022984486910566388, 0.020471029056646106, 0.01821630287060372, 0.016225795732021, 0.01449253452126199, 0.012996094769248002, 0.011705127443155855, 0.010584448843846395, 0.009606191790595539, 0.008762914178884414, 0.00807942889619328, 0.007618228593167856, 0.007469560653495648, 0.007718954147266957, 0.008407362287313572, 0.009520023004578543, 0.011010546514494072, 0.012828930392133649, 0.014933942682702723, 0.017293639390066992, 0.019882131667524564, 0.022676597989831727, 0.025655460868488553, 0.02879754115146357, 0.032081815268875255, 0.03548748116725435, 0.03899415038603018, 0.04258206714733641, 0.04623230693125233, 0.04992693579154835, 0.053649126437689015, 0.05738323398014405, 0.06111483692531941, 0.06483074961831985, 0.06851901199563588, 0.07216886180549369, 0.07577069366163665, 0.07931600854270222, 0.08279735668189267, 0.0862082762210174, 0.0895432295244264, 0.09279753865055966 ], [ 0.05042858641877351, 0.046697170032224636, 0.04303501059790044, 0.039465564987475554, 0.03601372132194537, 0.03270540332322695, 0.02956691173856808, 0.026623893258099014, 0.02389981744738325, 0.021413881086157258, 0.019178403967662346, 0.01719609161701047, 0.015458012679884526, 0.013943587731943083, 0.012623927305844095, 0.011469163559227884, 0.01045914183025386, 0.009595532433861001, 0.008912124946111936, 0.00847763286960417, 0.008382130307131528, 0.00870322470380303, 0.009470821176852133, 0.010661960056042868, 0.01222568454768119, 0.014109062331659825, 0.016268651870459984, 0.01867111375971898, 0.021290112310500136, 0.024103221407983322, 0.02708985206542513, 0.030230142908141935, 0.03350450553185779, 0.036893546666727305, 0.04037817610863751, 0.04393978536567395, 0.04756043432648131, 0.051223015520690744, 0.054911383970756907, 0.058610450446139974, 0.06230624070596488, 0.06598592529696762, 0.06963782498523047, 0.07325139669364197, 0.07681720430049929, 0.08032687804140962, 0.08377306565017276, 0.0871493778212336, 0.09045033009177084, 0.09367128282731454 ], [ 0.05136387785731126, 0.047680747057152986, 0.04406861956531911, 0.04055047841788825, 0.037150454099433, 0.03389333031020474, 0.03080377706470185, 0.02790522570964081, 0.02521831662629952, 0.022758922461639432, 0.020535916759424268, 0.018549140964565957, 0.016788370553188492, 0.015234319251714519, 0.01386259640700441, 0.012650910362912073, 0.011588842759860305, 0.010688437728719661, 0.009992368593449617, 0.009573809169674562, 0.009520128045521997, 0.009899921348677931, 0.010733370274021598, 0.011991392441393054, 0.013619679706441009, 0.015562569582665399, 0.01777397214805668, 0.020218406963305964, 0.02286827220288053, 0.025700796117530646, 0.02869579488554994, 0.03183432148836313, 0.03509798488134901, 0.038468696611504954, 0.04192865868778069, 0.045460469151835874, 0.0490472705408589, 0.05267289957291095, 0.05632201721593212, 0.0599802106291902, 0.06363406533441578, 0.06727120951164595, 0.07088033390738459, 0.07445119134919458, 0.07797457979560653, 0.08144231251021201, 0.0848471785003552, 0.08818289589248243, 0.09144406047213187, 0.09462609121650527 ], [ 0.052581698359943745, 0.0489613420164548, 0.04541320066385004, 0.04195938018299901, 0.038622760477515984, 0.03542640923656108, 0.0323927357064527, 0.029542335725412466, 0.026892518773777446, 0.0244555993422043, 0.02223719574924307, 0.02023499973436736, 0.01843869313456138, 0.016831764206737296, 0.015395780067571101, 0.014117165506958247, 0.012995803340461015, 0.012053802149364403, 0.011341203953017775, 0.010933026458529756, 0.010911514347488896, 0.011335951147054942, 0.012218793731146609, 0.013527389546887167, 0.015205882882918874, 0.017196749193000186, 0.01945139292800606, 0.02193185844316896, 0.024608691371330815, 0.027458113967908475, 0.030459732887641793, 0.03359501056174522, 0.03684637978728413, 0.04019680934826569, 0.04362965249937495, 0.0471286554731448, 0.05067804451825525, 0.05426264116427375, 0.05786797684820142, 0.06148039190640202, 0.06508711246421152, 0.06867630373236028, 0.07223710093425963, 0.07575962041397961, 0.0792349539808299, 0.0826551495900961, 0.08601318126019901, 0.08930291081435873, 0.09251904368472487, 0.09565708066988486 ], [ 0.05406098730732183, 0.05051481076319585, 0.04704115473894772, 0.043660871257841044, 0.04039517509615404, 0.03726499760711242, 0.03429011804895128, 0.031488064188290865, 0.028872826804897587, 0.02645352512029847, 0.02423329223068407, 0.022208797099655363, 0.02037092437019392, 0.018707114373695762, 0.017205659172044408, 0.01586184499639439, 0.014685231375178688, 0.01370644623934009, 0.012980387959133366, 0.012580977426898485, 0.012583422725536525, 0.013038116976076486, 0.013952084956587672, 0.015291740630746134, 0.01700176656688285, 0.01902411515859637, 0.021308317885269195, 0.023814011785887775, 0.026509583197542763, 0.029369747709754278, 0.032373346443021075, 0.03550172966218651, 0.038737714590651416, 0.04206498734066451, 0.04546781002488852, 0.04893091988890518, 0.05243953852809707, 0.05597943607457631, 0.05953701547978797, 0.0630993962298843, 0.06665448631348787, 0.07019103731540086, 0.07369868120026438, 0.07716794947148681, 0.08059027650489702, 0.08395798934488306, 0.0872642863654484, 0.09050320710190252, 0.0936695953522329, 0.09675905739317517 ] ] }, { "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": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "render(plot_contour(model=model, param_x='x1', param_y='x2', metric_name='l2norm'))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We also plot optimization trace, which shows best hartmann6 objective value seen by each iteration of the optimization:" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "hoverinfo": "none", "legendgroup": "", "line": { "width": 0 }, "mode": "lines", "showlegend": false, "type": "scatter", "x": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30 ], "y": [ -0.014878703267180259, -2.144976004051819, -2.144976004051819, -2.144976004051819, -2.144976004051819, -2.144976004051819, -2.144976004051819, -2.144976004051819, -2.144976004051819, -2.6621906317748856, -2.751105429651811, -2.7525531133395202, -2.7525531133395202, -2.7525531133395202, -2.8495152881667596, -2.8495152881667596, -2.8881405907311417, -3.0374104268450046, -3.0570267973180747, -3.0570267973180747, -3.117550133062027, -3.117550133062027, -3.117550133062027, -3.117550133062027, -3.117550133062027, -3.1325777806538597, -3.1325777806538597, -3.1325777806538597, -3.1325777806538597, -3.1325777806538597 ] }, { "fill": "tonexty", "fillcolor": "rgba(128,177,211,0.3)", "legendgroup": "mean", "line": { "color": "rgba(128,177,211,1)" }, "mode": "lines", "name": "mean", "type": "scatter", "x": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30 ], "y": [ -0.014878703267180259, -2.144976004051819, -2.144976004051819, -2.144976004051819, -2.144976004051819, -2.144976004051819, -2.144976004051819, -2.144976004051819, -2.144976004051819, -2.6621906317748856, -2.751105429651811, -2.7525531133395202, -2.7525531133395202, -2.7525531133395202, -2.8495152881667596, -2.8495152881667596, -2.8881405907311417, -3.0374104268450046, -3.0570267973180747, -3.0570267973180747, -3.117550133062027, -3.117550133062027, -3.117550133062027, -3.117550133062027, -3.117550133062027, -3.1325777806538597, -3.1325777806538597, -3.1325777806538597, -3.1325777806538597, -3.1325777806538597 ] }, { "fill": "tonexty", "fillcolor": "rgba(128,177,211,0.3)", "hoverinfo": "none", "legendgroup": "", "line": { "width": 0 }, "mode": "lines", "showlegend": false, "type": "scatter", "x": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30 ], "y": [ -0.014878703267180259, -2.144976004051819, -2.144976004051819, -2.144976004051819, -2.144976004051819, -2.144976004051819, -2.144976004051819, -2.144976004051819, -2.144976004051819, -2.6621906317748856, -2.751105429651811, -2.7525531133395202, -2.7525531133395202, -2.7525531133395202, -2.8495152881667596, -2.8495152881667596, -2.8881405907311417, -3.0374104268450046, -3.0570267973180747, -3.0570267973180747, -3.117550133062027, -3.117550133062027, -3.117550133062027, -3.117550133062027, -3.117550133062027, -3.1325777806538597, -3.1325777806538597, -3.1325777806538597, -3.1325777806538597, -3.1325777806538597 ] }, { "line": { "color": "rgba(253,180,98,1)", "dash": "dash" }, "mode": "lines", "name": "Optimum", "type": "scatter", "x": [ 1, 30 ], "y": [ -3.32237, -3.32237 ] } ], "layout": { "showlegend": true, "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 } } }, "title": { "text": "Model performance vs. # of iterations" }, "xaxis": { "title": { "text": "Iteration" } }, "yaxis": { "title": { "text": "Hartmann6" } } } }, "text/html": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# `plot_single_method` expects a 2-d array of means, because it expects to average means from multiple \n", "# optimization runs, so we wrap out best objectives array in another array.\n", "best_objectives = np.array([[trial.objective_mean for trial in experiment.trials.values()]])\n", "best_objective_plot = optimization_trace_single_method(\n", " y=np.minimum.accumulate(best_objectives, axis=1),\n", " optimum=hartmann6.fmin,\n", " title=\"Model performance vs. # of iterations\",\n", " ylabel=\"Hartmann6\",\n", ")\n", "render(best_objective_plot)" ] } ], "metadata": { "kernelspec": { "display_name": "python3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.7" } }, "nbformat": 4, "nbformat_minor": 2 }