{ "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 01-18 03:35:08] 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 01-18 03:35:08] 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 01-18 03:35:08] ax.service.managed_loop: Started full optimization with 30 steps.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 01-18 03:35:08] ax.service.managed_loop: Running optimization trial 1...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 01-18 03:35:08] ax.service.managed_loop: Running optimization trial 2...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 01-18 03:35:08] ax.service.managed_loop: Running optimization trial 3...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 01-18 03:35:09] ax.service.managed_loop: Running optimization trial 4...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 01-18 03:35:09] ax.service.managed_loop: Running optimization trial 5...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 01-18 03:35:09] ax.service.managed_loop: Running optimization trial 6...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 01-18 03:35:09] ax.service.managed_loop: Running optimization trial 7...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 01-18 03:35:13] ax.service.managed_loop: Running optimization trial 8...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 01-18 03:35:17] ax.service.managed_loop: Running optimization trial 9...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 01-18 03:35:21] ax.service.managed_loop: Running optimization trial 10...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 01-18 03:35:24] ax.service.managed_loop: Running optimization trial 11...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 01-18 03:35:28] ax.service.managed_loop: Running optimization trial 12...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 01-18 03:35:31] ax.service.managed_loop: Running optimization trial 13...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 01-18 03:35:34] ax.service.managed_loop: Running optimization trial 14...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 01-18 03:35:38] ax.service.managed_loop: Running optimization trial 15...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 01-18 03:35:42] ax.service.managed_loop: Running optimization trial 16...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 01-18 03:35:45] ax.service.managed_loop: Running optimization trial 17...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 01-18 03:35:49] ax.service.managed_loop: Running optimization trial 18...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 01-18 03:35:52] ax.service.managed_loop: Running optimization trial 19...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 01-18 03:35:56] ax.service.managed_loop: Running optimization trial 20...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 01-18 03:36:01] ax.service.managed_loop: Running optimization trial 21...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 01-18 03:36:04] ax.service.managed_loop: Running optimization trial 22...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 01-18 03:36:08] ax.service.managed_loop: Running optimization trial 23...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 01-18 03:36:11] ax.service.managed_loop: Running optimization trial 24...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 01-18 03:36:14] ax.service.managed_loop: Running optimization trial 25...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 01-18 03:36:19] ax.service.managed_loop: Running optimization trial 26...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 01-18 03:36:23] ax.service.managed_loop: Running optimization trial 27...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 01-18 03:36:26] ax.service.managed_loop: Running optimization trial 28...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 01-18 03:36:28] ax.service.managed_loop: Running optimization trial 29...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 01-18 03:36:31] 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.20325496472879168,\n", " 'x2': 0.1691135071450467,\n", " 'x3': 0.46842720008893846,\n", " 'x4': 0.2694621324933513,\n", " 'x5': 0.3055411302133114,\n", " 'x6': 0.6509840494723914}" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "best_parameters" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'l2norm': 0.9375942100772846, 'hartmann6': -3.3133831602163664}" ] }, "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": [ [ -1.9017864331585783, -1.9451899891997164, -1.9853402134370821, -2.0219319865385303, -2.0546902478920464, -2.0833749418129583, -2.1077851513316093, -2.1277622992209753, -2.1431923289670967, -2.154006816530583, -2.160183006810624, -2.161742813889384, -2.1587508671505904, -2.1513117220730082, -2.139566381888442, -2.123688292860942, -2.1038789815564662, -2.0803634980593375, -2.0533858163216996, -2.0232043238369166, -1.9900875099356978, -1.9543099374811617, -1.9161485585599056, -1.8758794124541898, -1.833774724741898, -1.7901004103176017, -1.7451139705589136, -1.699062765578138, -1.6521826361167724, -1.6046968456868602, -1.556815311552579, -1.5087340926205275, -1.4606351028706448, -1.4126860202793512, -1.3650403629998036, -1.317837706667769, -1.2712040189473783, -1.2252520897094126, -1.180082037474631, -1.1357818749051338, -1.0924281181597837, -1.0500864268270313, -1.0088122629036507, -0.9686515588982287, -0.9296413866069572, -0.8918106194400734, -0.8551805823773643, -0.8197656847062207, -0.7855740316541024, -0.7526080118758748 ], [ -1.9328880307670562, -1.9769124922862564, -2.017606149676922, -2.0546568165320376, -2.0877833218015747, -2.1167406583830317, -2.141324281275586, -2.16137342386674, -2.1767733381241046, -2.1874564073943428, -2.1934021281904053, -2.1946360063260464, -2.19122745843661, -2.1832868481129744, -2.1709618137262434, -2.1544330612625813, -2.133909800192147, -2.1096249946365697, -2.0818305876683647, -2.0507928357341036, -2.0167878654229234, -1.9800975385243662, -1.941005685638995, -1.8997947451279629, -1.8567428239459574, -1.8121211803863768, -1.7661921160240643, -1.7192072549023973, -1.6714061818254755, -1.623015407950199, -1.574247630191935, -1.5253012507700046, -1.4763601241035422, -1.4275934998800852, -1.3791561331873083, -1.331188534919793, -1.2838173380985625, -1.2371557581670536, -1.1913041276843626, -1.1463504880796755, -1.1023712232359102, -1.0594317216219933, -1.017587055488016, -0.9768826672764322, -0.9373550548908192, -0.8990324488072089, -0.8619354752202437, -0.8260778004947548, -0.7914667531517999, -0.7581039204643389 ], [ -1.9613125592161602, -2.0058790556799875, -2.0470446999652507, -2.084490960986857, -2.117931167236512, -2.1471158495023914, -2.1718371984009184, -2.1919324934891438, -2.2072864024632275, -2.2178320970043774, -2.223551184295472, -2.2244725059855863, -2.2206699045459297, -2.2122590963975157, -2.199393819305505, -2.182261437334608, -2.1610781904235834, -2.1360842685677333, -2.1075388745801424, -2.0757154168074585, -2.0408969466246223, -2.003371927597164, -1.9634303961110509, -1.9213605487134264, -1.8774457704379381, -1.831962101471605, -1.785176126647589, -1.7373432630832932, -1.6887064153081308, -1.6394949638477805, -1.5899240518729763, -1.5401941346563481, -1.4904907577694557, -1.4409845318359462, -1.3918312739617948, -1.3431722884842747, -1.295134762271196, -1.2478322523611487, -1.2013652461973516, -1.155821777032945, -1.1112780792520405, -1.0677992703487944, -1.0254400481354913, -0.9842453934133223, -0.9442512698435636, -0.9054853141101014, -0.8679675106762756, -0.8317108465188179, -0.7967219421786743, -0.7630016563115745 ], [ -1.986867768166032, -2.0318916896982997, -2.07345284367197, -2.111227177505009, -2.1449232167582863, -2.1742875891648437, -2.199109632999875, -2.219224934385012, -2.234517684553568, -2.2449218014345798, -2.2504208171881452, -2.2510465897460725, -2.2468769468631584, -2.2380324116560675, -2.2246721868210053, -2.2069895900004974, -2.1852071356026053, -2.1595714500724785, -2.1303481901271337, -2.097817109249995, -2.0622673895474266, -2.0239933266083643, -1.983290426632732, -1.9404519495622405, -1.8957659103327873, -1.8495125331102447, -1.801962140406259, -1.7533734498980984, -1.7039922460119719, -1.654050390230091, -1.603765133025396, -1.5533386907634663, -1.5029580523777788, -1.4527949827568674, -1.4030061922995096, -1.3537336447937083, -1.3051049785112954, -1.2572340180862813, -1.2102213572995222, -1.1641549952884085, -1.119111010920851, -1.0751542621102401, -1.0323390987052579, -0.9907100792704783, -0.9503026835899732, -0.9111440140866879, -0.8732534805650796, -0.8366434637643844, -0.8013199541645478, -0.7672831633260163 ], [ -2.0093811966981767, -2.0547728058842236, -2.096648481007797, -2.1346795672011294, -2.168570569655395, -2.1980648412207877, -2.222949329155446, -2.243058213480918, -2.2582753204360633, -2.268535253043854, -2.273823242761575, -2.2741737860863465, -2.2696681825142466, -2.2604311315734886, -2.2466265748499743, -2.228452983650949, -2.20613829490562, -2.1799346884766875, -2.150113380252115, -2.1169595797272076, -2.080767731129469, -2.041837126322082, -2.0004679482088554, -1.9569577769778022, -1.9115985693506399, -1.8646741034645358, -1.8164578689838733, -1.7672113730636425, -1.7171828272203702, -1.6666061773209782, -1.6157004381161593, -1.5646692944473435, -1.513700932969324, -1.4629680705804302, -1.4126281484564576, -1.3628236634389885, -1.3136826113918973, -1.2653190199166695, -1.2178335504510878, -1.171314152232512, -1.125836752872772, -1.0814659723626316, -1.038255849203909, -0.9962505690650332, -0.9554851878818077, -0.9159863426901819, -0.8777729446944839, -0.8408568501528597, -0.8052435056137955, -0.7709325648721618 ], [ -2.0287032556742624, -2.074368443513123, -2.11647378890362, -2.154687041015226, -2.1887095460191475, -2.2182820755680814, -2.2431896954008783, -2.2632654948992497, -2.2783930536925063, -2.2885075847808105, -2.2935957599737855, -2.293694286549285, -2.288887358422049, -2.279303147141296, -2.265109526155104, -2.246509235974621, -2.2237346990326508, -2.1970426826331932, -2.166708988456424, -2.1330233201945914, -2.0962844499920306, -2.056795772396626, -2.014861304056563, -1.970782160293809, -1.9248535170554568, -1.8773620489727596, -1.828583821184885, -1.778782603696974, -1.7282085716498083, -1.677097352250123, -1.6256693785587628, -1.5741295112617402, -1.5226668914699868, -1.47145499012609, -1.4206518224568971, -1.370400298895371, -1.3208286868637682, -1.2720511606715286, -1.2241684194806886, -1.177268355798723, -1.131426759261839, -1.0867080425696696, -1.0431659783310656, -1.000844437290727, -0.9597781199392051, -0.9199932748772102, -0.8815083985221036, -0.8443349118208365, -0.8084778105824345, -0.7739362868735766 ], [ -2.044709888304435, -2.0905510628659343, -2.132798135526398, -2.1711163398613067, -2.2052047930700445, -2.234802438008841, -2.2596930131820443, -2.279708860879458, -2.2947334425312684, -2.304702497985111, -2.309603855607678, -2.3094759660614756, -2.30440528862294, -2.2945227015404153, -2.2799991359642364, -2.26104064670926, -2.23788313360663, -2.210786916006142, -2.180031342152338, -2.1459095872873033, -2.108723762443214, -2.0687804230115674, -2.0263865349438213, -1.9818459287712176, -1.9354562486382367, -1.8875063855927228, -1.8382743712680114, -1.7880256992743726, -1.7370120363609316, -1.6854702829512425, -1.6336219422853233, -1.5816727585064105, -1.5298125861141842, -1.478215455883334, -1.4270398053299915, -1.3764288448963438, -1.3265110340761284, -1.2774006446323547, -1.229198390809958, -1.1819921089936285, -1.1358574715933953, -1.0908587220598385, -1.0470494198442908, -1.0044731858382336, -0.9631644403640984, -0.9231491271600247, -0.8844454180172608, -0.8470643938034517, -0.8110106985502572, -0.776283164110076 ], [ -2.0573047118453354, -2.1032218000108305, -2.145520440395872, -2.1838644885877345, -2.217951817872851, -2.2475203435133175, -2.2723530700989953, -2.2922819629811055, -2.3071905064638742, -2.3170148825028476, -2.321743777049966, -2.321416889507255, -2.3161222781490047, -2.305992717533538, -2.291201271913935, -2.271956302028036, -2.2484961226349593, -2.2210835163756455, -2.1900002880365914, -2.1555420147246434, -2.118013114870995, -2.0777223254644688, -2.0349786451456113, -1.9900877727248865, -1.9433490474338293, -1.8950528791316505, -1.845478643549144, -1.7948930088750372, -1.7435486548218033, -1.6916833429650016, -1.6395192969038819, -1.5872628520194991, -1.5351043368048156, -1.4832181505203053, -1.4317630050015104, -1.3808823016069802, -1.3307046174089852, -1.2813442777076278, -1.2329019947391893, -1.1854655550265687, -1.1391105401746673, -1.0939010680482841, -1.049890543194227, -1.0071224070949207, -0.9656308803818832, -0.9254416905086629, -0.8865727795978943, -0.849034988249482, -0.812832712038619, -0.7779645282551066 ], [ -2.0664205629619845, -2.1123120982879695, -2.1545708881509196, -2.1928605851875447, -2.2268788421405485, -2.2563633840179995, -2.2810971058633527, -2.3009119898219237, -2.315691698678367, -2.3253727765564105, -2.3299444632231787, -2.329447198572884, -2.3239699523620185, -2.3136465578962055, -2.2986512563844084, -2.2791936718313206, -2.2555134359987545, -2.2278746708056234, -2.1965605136464452, -2.1618678421382187, -2.124102321828695, -2.0835738665279706, -2.040592568858824, -1.995465130324014, -1.948491796776849, -1.8999637870035482, -1.8501611889492005, -1.799351289347704, -1.7477872973830775, -1.6957074207187772, -1.6433342520475587, -1.590874425607306, -1.5385185053694586, -1.486441069444304, -1.4348009583722567, -1.3837416581778264, -1.3333917922153935, -1.2838656988453765, -1.2352640747952315, -1.1876746666563454, -1.1411729953374574, -1.0958231004407197, -1.0516782934574538, -1.0087819104103408, -0.9671680561117069, -0.9268623335786632, -0.8878825533596818, -0.8502394185970747, -0.8139371825886507, -0.7789742764313535 ], [ -2.072020393632556, -2.117784657637216, -2.159911931362752, -2.198066855165627, -2.2319479040642762, -2.261293471500065, -2.28588698850406, -2.305560866805301, -2.3201991186897746, -2.329738581276615, -2.3341687500427755, -2.333530297720346, -2.3279124139593472, -2.3174491451717834, -2.302314942100721, -2.2827196357572, -2.2589030619023323, -2.23112954195926, -2.1996824062414917, -2.16485871633391, -2.1269643104250906, -2.086309261467129, -2.0432038059223356, -1.9979547725075335, -1.9508625168835751, -1.9022183500114536, -1.8523024346782548, -1.8013821158920618, -1.7497106456897233, -1.6975262605983414, -1.6450515698041759, -1.5924932133795386, -1.5400417521890466, -1.4878717539473894, -1.4361420430403526, -1.3849960849440561, -1.3345624792441864, -1.2849555382802405, -1.2362759312670055, -1.1886113763515431, -1.14203736544111, -1.0966179087879167, -1.0524062882511223, -1.009445809887848, -0.9677705480682263, -0.9274060746798696, -0.8883701681993873, -0.8506734984761897, -0.8143202840102282, -0.7793089193218001 ], [ -2.074097492239643, -2.119633672833376, -2.1615385497036175, -2.199478934582493, -2.2331551670385723, -2.262307172868333, -2.2867195745276727, -2.306225639349364, -2.3207099153242083, -2.33010947928495, -2.334413799903304, -2.333663289649854, -2.327946679526689, -2.317397394698692, -2.3021891374632193, -2.282530897205887, -2.2586616066095226, -2.2308446512097015, -2.1993624175755837, -2.1645110365875646, -2.1265954455156546, -2.085924858931673, -2.042808706571627, -1.9975530680439666, -1.9504576108735305, -1.9018130201411323, -1.8518988947156423, -1.800982076201619, -1.749315371491873, -1.6971366274347786, -1.6446681158705583, -1.5921161885314334, -1.5396711635269935, -1.487507407954163, -1.4357835842882176, -1.3846430314189675, -1.334214254354388, -1.284611499631561, -1.235935396299858, -1.1882736449464217, -1.141701739610637, -1.0962837095849802, -1.0520728700337227, -1.0091125720915537, -0.9674369446466359, -0.9270716213812548, -0.8880344478536614, -0.8503361644704346, -0.8139810621327245, -0.7789676081542586 ], [ -2.0726750339905267, -2.1178843636685944, -2.1594777670771332, -2.1971253816469947, -2.2305304331833016, -2.2594352324569718, -2.283626246674724, -2.3029380312040226, -2.317255869767595, -2.3265170454875204, -2.330710742129049, -2.3298766463310017, -2.3241023812324784, -2.313519946365852, -2.2983013672298087, -2.278653771422684, -2.2548141081322592, -2.227043715975822, -2.195622922844951, -2.1608458331647946, -2.1230154258015688, -2.082439052729849, -2.0394243970984722, -1.9942759214202228, -1.947291813371076, -1.8987614185012045, -1.8489631358529397, -1.7981627435058065, -1.7466121157054473, -1.6945482907160516, -1.642192848150122, -1.5897515556547903, -1.5374142469635754, -1.4853548960628329, -1.4337318552784104, -1.3826882282505337, -1.332352351889167, -1.2828383643962327, -1.234246839248796, -1.1866654676310966, -1.140169774171646, -1.0948238529866208, -1.0506811129607438, -1.0077850229242502, -0.9661698489241147, -0.9258613771542867, -0.886877617317927, -0.8492294822582878, -0.8129214406273165, -0.7779521401737264 ], [ -2.0678049940282723, -2.1125918318673764, -2.1537874624595506, -2.191066453034888, -2.224135897686705, -2.252741317414857, -2.2766716632982975, -2.295763210161532, -2.309902188913171, -2.3190260780045837, -2.323123549870967, -2.3222331386036053, -2.316440754220299, -2.3058762133032, -2.29070898454377, -2.271143361582889, -2.247413275943382, -2.2197769516679293, -2.188511582694211, -2.15390818661994, -2.116266757231011, -2.0758918058708673, -2.0330883509340683, -1.9881583873330038, -1.9413978448254234, -1.8930940260082634, -1.8435235014415214, -1.7929504302676158, -1.7416252691545073, -1.6897838296830123, -1.6376466437256418, -1.585418597319435, -1.5332887955185026, -1.4814306233304808, -1.4300019708006075, -1.3791455933932308, -1.3289895818874866, -1.279647918954464, -1.2312211023598474, -1.1837968173061473, -1.1374506427813034, -1.0922467789132049, -1.0482387842513927, -1.0054703136186451, -0.9639758487100276, -0.9237814149803432, -0.8849052795664969, -0.8473586260530159, -0.8111462028197826, -0.7762669425226062 ], [ -2.059566483368717, -2.103839308611266, -2.1445545415082568, -2.181392214440446, -2.214064215065964, -2.24232005772922, -2.2659517907746136, -2.284797831305455, -2.298745577038557, -2.307732714425034, -2.3117472152116103, -2.3108260822427655, -2.3050529634302817, -2.2945547969081366, -2.2794976793296287, -2.260082163576636, -2.2365381932251442, -2.209119870774138, -2.1781002370841103, -2.1437662132378184, -2.1064138259288363, -2.0663438062712034, -2.023857622019603, -1.9792539764012351, -1.9328257841884309, -1.8848576177214769, -1.8356236022354793, -1.7853857306114562, -1.7343925619293221, -1.682878265257342, -1.631061969303226, -1.5791473792878457, -1.5273226241930975, -1.4757602999915629, -1.4246176772922872, -1.3740370448179466, -1.3241461631134628, -1.275058805774566, -1.2268753682142168, -1.1796835265210432, -1.133558931290698, -1.0885659234260894, -1.0447582608107726, -1.0021798464719471, -0.9608654503777996, -0.9208414183724628, -0.8821263629541864, -0.8447318316618451, -0.8086629497640765, -0.7739190347563937 ], [ -2.0480635900767847, -2.091735880710719, -2.1318925619660822, -2.168220082519501, -2.200435977570166, -2.2282944829607794, -2.2515913215768157, -2.270167459675979, -2.2839116856910167, -2.2927619301381794, -2.296705315136502, -2.29577698826716, -2.290057852153855, -2.2796713446327264, -2.2647794533758545, -2.2455781636435237, -2.222292539715612, -2.195171631261653, -2.164483377601137, -2.130509657964202, -2.0935416071697497, -2.0538752862325134, -2.011807768591436, -1.967633676662081, -1.921642181343252, -1.8741144594190025, -1.8253215904590203, -1.7755228654531214, -1.7249644734489904, -1.6738785292510463, -1.6224824041532648, -1.570978322153417, -1.5195531856532207, -1.4683785969054444, -1.4176110441296241, -1.3673922240655734, -1.3178494756129409, -1.2690963020117918, -1.2212329616866062, -1.1743471103653997, -1.128514479378055, -1.083799577127647, -1.0402564026186065, -0.9979291616245938, -0.9568529775980019, -0.9170545907751303, -0.8785530401290941, -0.8413603238790365, -0.8054820351922166, -0.7709179705254507 ], [ -2.0334228242666206, -2.0764138009106636, -2.11593892458641, -2.1516919152603555, -2.1833967269063086, -2.210812979653631, -2.2337406032700056, -2.252023497368641, -2.2655520650533063, -2.274264538870593, -2.2781470841145315, -2.277232727804752, -2.2715992163824628, -2.261365947737838, -2.24669015207594, -2.2277625114199093, -2.2048024103166997, -2.178053002224737, -2.147776259202052, -2.114248149268623, -2.0777540587416894, -2.038584548431643, -1.997031505019938, -1.9533847238885427, -1.9079289382037534, -1.860941291673178, -1.812689239114932, -1.7634288494942627, -1.713403479885973, -1.6628427853227448, -1.6119620280998468, -1.560961650286848, -1.5100270744867403, -1.4593286999064596, -1.409022063267811, -1.3592481367748668, -1.31013373810498, -1.2617920300964727, -1.214323090395733, -1.1678145337567614, -1.1223421719341036, -1.0779706981671107, -1.0347543851193044, -0.9927377868183598, -0.9519564366490226, -0.9124375347946683, -0.8742006197154931, -0.8372582193044535, -0.8016164782876031, -0.7672757592449387 ], [ -2.015790274642489, -2.0580254975423142, -2.096851751631754, -2.1319707787551367, -2.1631136320099453, -2.1900459055098267, -2.2125722163534456, -2.2305397532199684, -2.2438407535667277, -2.252413829301726, -2.2562441228749064, -2.255362335624677, -2.2498427226092996, -2.239800189488313, -2.2253866556178146, -2.206786863230203, -2.184213816267044, -2.157904025662863, -2.1281127226116765, -2.095109179859981, -2.059172255771803, -2.0205862491479007, -1.979637126607066, -1.9366091603460727, -1.8917819933358269, -1.8454281320078607, -1.7978108533175694, -1.7491825034973638, -1.6997831593960848, -1.6498396195090816, -1.59956469009208, -1.5491567316145058, -1.4987994318032936, -1.4486617732916054, -1.398898166129956, -1.3496487179197931, -1.3010396169312362, -1.2531836061535535, -1.2061805287236445, -1.1601179275362252, -1.1150716840330126, -1.0711066831839589, -1.0282774935094792, -0.9866290526518583, -0.9461973504951512, -0.9070101031649922, -0.8690874124245035, -0.832442406030689, -0.7970818555384994, -0.7630067688480826 ], [ -1.9953285862646446, -2.036740400620713, -2.07480657685384, -2.109237520237698, -2.1397719676031692, -2.166181998662801, -2.1882773414368852, -2.205908796187866, -2.218970645984979, -2.2274019754917997, -2.2311868772809844, -2.230353581174377, -2.224972591835523, -2.215153959648956, -2.2010438380133923, -2.182820496190952, -2.160689961474746, -2.134881459038979, -2.105642804260683, -2.073235882682193, -2.037932329377438, -2.0000094944834537, -1.9597467569875762, -1.9174222260345166, -1.873309849058968, -1.8276769295055033, -1.7807820439000326, -1.7328733384160169, -1.6841871784634284, -1.634947120749598, -1.5853631752238915, -1.5356313238487045, -1.485933263822258, -1.436436344360224, -1.3872936681423855, -1.3386443308279186, -1.290613774475211, -1.2433142331532494, -1.196845251419987, -1.151294258617592, -1.1067371840627522, -1.0632391001770818, -1.0208548824010473, -0.9796298763671035, -0.9396005642785015, -0.9007952237583925, -0.8632345736086152, -0.8269324019593883, -0.7918961732100633, -0.7581276109674944 ], [ -1.9722138646567666, -2.0127416962652136, -2.049992965064698, -2.0836872710022383, -2.113571521736882, -2.139424713733912, -2.1610620496839537, -2.178338227273268, -2.1911497742424957, -2.1994363536828736, -2.203181016754792, -2.2024094323094356, -2.197188169705726, -2.1876221491352354, -2.1738514011413193, -2.1560472932064796, -2.1344083867668333, -2.1091560839942063, -2.0805302118446862, -2.048784673182999, -2.0141832733490315, -1.9769958073694234, -1.937494469932369, -1.8959506286663639, -1.8526319821900152, -1.8078001083908142, -1.761708395628699, -1.7146003399404637, -1.666708184541092, -1.6182518735723932, -1.5694382896910026, -1.520460744284796, -1.4714986894655016, -1.422717622171468, -1.37426915245241, -1.326291210082621, -1.2789083658957516, -1.2322322465330506, -1.1863620235639107, -1.141384960115046, -1.0973770001981262, -1.0544033878340158, -1.0125193048265562, -0.9717705176376865, -0.9321940252619878, -0.8938187012994696, -0.8566659245872968, -0.820750193784909, -0.7860797222203618, -0.7526570101094446 ], [ -1.9466326014877917, -1.9862231103630692, -2.022611167477803, -2.055525990068352, -2.0847230471542972, -2.109988602629756, -2.1311436366342376, -2.1480469911922615, -2.1605976223337455, -2.1687358855369117, -2.1724438300973143, -2.171744526334236, -2.166700493269621, -2.1574113304384697, -2.144010683943535, -2.126662693073529, -2.1055580700594394, -2.0809099628620373, -2.0529497407689417, -2.0219228268342997, -1.9880846817425066, -1.9516970223933279, -1.9130243370599687, -1.872330738708466, -1.8298771799487301, -1.7859190376849345, -1.7407040630728863, -1.694470682829085, -1.647446631035295, -1.599847885998446, -1.5518778840643999, -1.5037269811527272, -1.4555721328132203, -1.407576764486875, -1.359890805120134, -1.3126508591189003, -1.2659804936759422, -1.2199906206384674, -1.1747799542144168, -1.1304355278859655, -1.0870332558665252, -1.044638526279349, -1.0033068149392408, -0.9630843101785841, -0.924008540576098, -0.8861089987254755, -0.849407755327857, -0.8139200589146984, -0.7796549174140935, -0.7466156585731178 ], [ -1.9187787034166401, -1.9573858074397719, -1.9928689028429272, -2.0249671422719677, -2.053444853318116, -2.0780958395041966, -2.098747100743075, -2.1152618303115758, -2.127541578092509, -2.1355275102455176, -2.13920073985337, -2.1385817474146656, -2.1337289506009074, -2.1247365165683685, -2.1117315354727015, -2.0948706898995537, -2.0743365618278213, -2.050333717314083, -2.023084700646559, -1.9928260558861348, -1.9598044762401037, -1.9242731623165144, -1.8864884505260124, -1.8467067539932986, -1.805181841235092, -1.7621624631306307, -1.7178903266177912, -1.6725984041016375, -1.6265095605901518, -1.579835475787764, -1.5327758354392558, -1.485517764771851, -1.4382354765977743, -1.3910901072169597, -1.344229714447002, -1.2977894137002706, -1.2518916298640483, -1.206646444695948, -1.1621520214325665, -1.1184950902606827, -1.0757514801730743, -1.0339866844980756, -0.9932564490364194, -0.9536073732535716, -0.9150775163586212, -0.8776970013535523, -0.8414886112647514, -0.8064683727777383, -0.772646123393377, -0.7400260590176223 ], [ -1.8888506899192017, -1.9264354735542157, -1.960978335988079, -1.9922285849536663, -2.019959615553982, -2.0439729682965497, -2.0641018466357663, -2.0802139620008653, -2.0922136036986494, -2.1000428674848846, -2.103682016781099, -2.103148990938234, -2.098498112303087, -2.089818075465946, -2.077229326184458, -2.060880953248017, -2.0409472239583772, -2.017623893613004, -1.9911244125209857, -1.9616761420974917, -1.9295166760429503, -1.8948903450780719, -1.8580449655895692, -1.8192288750182748, -1.7786882807719437, -1.7366649354421324, -1.6933941394398244, -1.6491030628954975, -1.6040093716798902, -1.5583201374623068, -1.512231008541348, -1.4659256164483616, -1.4195751927325218, -1.3733383706143616, -1.3273611471039437, -1.2817769825222465, -1.2367070159828004, -1.1922603771607743, -1.1485345765075037, -1.1056159578917293, -1.0635801994180354, -1.022492849857, -0.982409889700201, -0.9433783073166955, -0.9054366820305376, -0.8686157671617999, -0.8329390671787941, -0.7984234041019844, -0.7650794691859679, -0.7329123566916937 ], [ -1.8570491095270627, -1.89357963434454, -1.9271533064941575, -1.9575297174808486, -1.9844914569715804, -2.0078479298387446, -2.0274386712852617, -2.0431360386769004, -2.0548471850573247, -2.062515251982625, -2.0661197555155537, -2.0656761758918014, -2.0612347955798116, -2.052878859783268, -2.040722156201828, -2.0249061261973913, -2.0055966272864656, -1.9829804675915594, -1.9572618274928928, -1.9286586734836595, -1.8973992555485348, -1.863718763660164, -1.8278562025135543, -1.7900515274803857, -1.7505430697994298, -1.7095652657892377, -1.6673466936886197, -1.624108412697023, -1.5800625918357898, -1.5354114112046402, -1.4903462148215796, -1.4450468922386759, -1.3996814652487857, -1.354405855989003, -1.3093638133819012, -1.264686975948668, -1.2204950504246654, -1.1768960871870102, -1.133986835171701, -1.0918531606458695, -1.0505705158586258, -1.0102044451875836, -0.9708111179045597, -0.9324378780899419, -0.8951238035234574, -0.8589002665670853, -0.8237914911350462, -0.7898151008187934, -0.7569826541066752, -0.7253001634141415 ], [ -1.8235742081226456, -1.8590252424355986, -1.891606842275272, -1.9210889289743394, -1.9472633392008216, -1.9699474053250194, -1.9889870707563038, -2.0042594291077207, -2.0156745995837486, -2.0231768801832017, -2.026745152794244, -2.0263925473693885, -2.0221654035311016, -2.0141415949945447, -2.002428303537065, -1.9871593440162854, -1.9684921499295056, -1.9466045305724922, -1.9216913067894812, -1.893960923690429, -1.8636321267821883, -1.8309307739708156, -1.7960868410140474, -1.7593316632353846, -1.7208954424413794, -1.6810050355601662, -1.6398820308702147, -1.597741108944978, -1.5547886785806806, -1.511221772871012, -1.467227187044902, -1.4229808374605317, -1.3786473200108376, -1.334379645915627, -1.2903191332471056, -1.2465954333832803, -1.2033266727586247, -1.1606196916660028, -1.118570363364746, -1.0772639782963864, -1.0367756797497947, -0.9971709388145517, -0.9585060578891832, -0.9208286933540982, -0.8841783892672588, -0.8485871150895278, -0.8140798014957142, -0.7806748692773263, -0.7483847471980256, -0.717216375426713 ], [ -1.7886238686419969, -1.822976553218902, -1.854548976805768, -1.8831213628418741, -1.9084947805909422, -1.9304944950617637, -1.9489728869469933, -1.9638118411640044, -1.9749245235537796, -1.9822564913154537, -1.9857861117984836, -1.9855242940486773, -1.9815135657571012, -1.9738265530495944, -1.962563940435318, -1.9478520023467092, -1.9298398057758204, -1.9086961857798381, -1.8846065927357238, -1.85776990309104, -1.828395275061928, -1.7966991183827004, -1.762902233865725, -1.7272271651027913, -1.689895791861633, -1.6511271831365246, -1.6111357177321262, -1.5701294718554946, -1.5283088664767888, -1.4858655621090544, -1.4429815849927907, -1.3998286662583743, -1.3565677742695395, -1.3133488198218892, -1.2703105139929518, -1.2275803590501329, -1.1852747537810773, -1.1434991958005776, -1.1023485647199964, -1.0619074714664127, -1.0222506604565549, -0.9834434527255973, -0.9455422194551872, -0.9085948766199705, -0.8726413926654735, -0.8377143022358611, -0.8038392199848672, -0.7710353494272449, -0.7393159826230944, -0.7086889872368594 ], [ -1.7523918292756129, -1.7856332950853233, -1.8161848751912781, -1.8438370026296926, -1.8683999059584986, -1.8897067364682882, -1.90761629852597, -1.922015290793001, -1.9328199847081473, -1.9399772897584708, -1.943465180952339, -1.9432924905869238, -1.9394980919110174, -1.932149524901928, -1.9213411327856424, -1.907191791310304, -1.8898423208155077, -1.869452673963839, -1.8461989901261453, -1.8202706016126973, -1.7918670681478293, -1.7611953051730365, -1.7284668596741082, -1.6938953750926042, -1.657694275181888, -1.6200746859101816, -1.5812436050323426, -1.5414023209268175, -1.5007450757719574, -1.4594579630666293, -1.4177180457628284, -1.3756926787148627, -1.3335390175799042, -1.291403695550958, -1.2494226491942002, -1.207721075047885, -1.1664134993865996, -1.1256039445540609, -1.085386176429501, -1.0458440188472085, -1.0070517220807964, -0.9690743737929122, -0.9319683421071938, -0.8957817416617346, -0.860554914637879, -0.8263209198163787, -0.7931060236901064, -0.7609301885570345, -0.7298075533294235, -0.6997469035277843 ], [ -1.7150661772712754, -1.7471891297581181, -1.776713263439065, -1.803439072492448, -1.827185820431457, -1.847794453478908, -1.8651301482106666, -1.8790844097643014, -1.88957665346375, -1.896555223234298, -1.899997823202327, -1.899911362706066, -1.896331237891045, -1.8893200936113117, -1.8789661263173278, -1.8653810012066347, -1.8486974648022072, -1.8290667373650877, -1.806655768539209, -1.7816444350081218, -1.7542227515104134, -1.7245881571658228, -1.69294292854069, -1.6594917599808572, -1.624439541088277, -1.5879893512949639, -1.5503406826240782, -1.5116878941153034, -1.4722188951026773, -1.4321140495487483, -1.3915452898733203, -1.3506754260395946, -1.309657633925151, -1.2686351060534684, -1.2277408474425284, -1.187097599501451, -1.1468178754524034, -1.1070040915688424, -1.0677487795163585, -1.0291348661899977, -0.9912360086066234, -0.9541169725914251, -0.9178340451623921, -0.8824354716426328, -0.8479619096025108, -0.8144468927404233, -0.7819172987474434, -0.7503938160624993, -0.7198914052119698, -0.6904197511401198 ], [ -1.6768281077364602, -1.7078303904127956, -1.7363251470888479, -1.7621227371706636, -1.7850512913233423, -1.8049594206933723, -1.8217185895527632, -1.8352250755976158, -1.8454014568113075, -1.852197581978598, -1.855591002362553, -1.8555868632893504, -1.8522172749648087, -1.8455402004418584, -1.835637914207086, -1.8226150966347803, -1.8065966372151898, -1.7877252229996579, -1.7661587884170977, -1.7420678990299012, -1.7156331355850192, -1.6870425366158268, -1.6564891485967295, -1.6241687229180686, -1.5902775893064691, -1.5550107262148587, -1.5185600404685409, -1.4811128612780304, -1.4428506477082068, -1.4039479038347311, -1.364571292064098, -1.3248789323452579, -1.2850198731330762, -1.245133718843145, -1.205350398030386, -1.1657900565056996, -1.1265630599625072, -1.087770091321876, -1.0495023288382148, -1.0118416919702122, -0.9748611430592183, -0.9386250339280608, -0.9031894875841299, -0.8686028062577216, -0.8349058980128296, -0.8021327151204507, -0.7703106982762309, -0.7394612215707179, -0.7096000338789464, -0.6807376930269964 ], [ -1.6378509312539555, -1.6677350795864192, -1.6952027995869359, -1.7200740804926424, -1.7421857159976104, -1.761393819536061, -1.7775760301837522, -1.7906333407309867, -1.8004914924799642, -1.8071018973956234, -1.8104420663301184, -1.810515540918435, -1.8073513451465535, -1.8010029893662747, -1.7915470737262746, -1.7790815489423784, -1.7637236996910381, -1.7456079196302494, -1.7248833473508864, -1.7017114298634735, -1.6762634750943106, -1.6487182479359757, -1.61925965631077, -1.5880745650631318, -1.5553507668151731, -1.5212751306187888, -1.486031941624787, -1.44980143826705, -1.4127585477347486, -1.3750718158062538, -1.3369025234129646, -1.2984039795154916, -1.2597209779080458, -1.2209894043062712, -1.1823359794030672, -1.1438781233844915, -1.105723927581887, -1.0679722194061791, -1.030712707388287, -0.9940261939714707, -0.9579848446135741, -0.922652502718104, -0.8880850408889339, -0.8543307399700532, -0.8214306882695541, -0.789419194263248, -0.7583242069182112, -0.7281677385647104, -0.6989662859728314, -0.6707312459566451 ], [ -1.5982993104055883, -1.6270721051741097, -1.6535189970925253, -1.6774693377203067, -1.6987683499608934, -1.7172794599104697, -1.732886344616009, -1.745494634014906, -1.7550332168330205, -1.7614551144215214, -1.764737902514287, -1.7648836776391912, -1.7619185813378413, -1.755891910432767, -1.7468748544919355, -1.7349589117726585, -1.7202540419393537, -1.702886617661699, -1.6829972379639648, -1.6607384642529328, -1.6362725357688446, -1.6097691153228861, -1.5814031091634313, -1.5513525971808988, -1.5197969018870794, -1.4869148170725122, -1.4528830100491628, -1.4178746051244226, -1.3820579505443211, -1.345595566632812, -1.3086432692300018, -1.2713494597429476, -1.2338545710889322, -1.1962906574392445, -1.1587811148615579, -1.1214405196129318, -1.0843745708613286, -1.047680124928369, -1.011445308677282, -0.9757497003565802, -0.9406645669999121, -0.9062531483350149, -0.8725709780360391, -0.8396662340380917, -0.807580110501184, -0.7763472048479414, -0.7459959140955245, -0.7165488354497028, -0.6880231668241282, -0.6604311035877182 ], [ -1.5583287031426083, -1.5860007307484074, -1.6114364744242002, -1.6344743551385128, -1.6549677675335097, -1.6727872389388023, -1.6878223277496054, -1.6999832055813582, -1.7092018777895321, -1.7154330094821408, -1.7186543382892532, -1.718866669997043, -1.7160934677771573, -1.7103800592739322, -1.701792497515706, -1.6904161209453759, -1.6763538644946312, -1.6597243774518131, -1.640660004997452, -1.61930468896912, -1.5958118400575012, -1.5703422286843502, -1.5430619357535218, -1.5141403977633088, -1.4837485738413014, -1.4520572554638336, -1.4192355332250477, -1.3854494292224893, -1.350860698547916, -1.31562579907285, -1.2798950252037151, -1.243811798518807, -1.2075121061282417, -1.1711240761424424, -1.1347676787100118, -1.0985545406066393, -1.0625878612413557, -1.0269624181192745, -0.9917646501944353, -0.9570728081043784, -0.9229571609504611, -0.8894802500346547, -0.8566971807512055, -0.8246559446345447, -0.793397764362576, -0.7629574552916127, -0.7333637978445389, -0.7046399157791444, -0.6768036560235707, -0.6498679663774912 ], [ -1.518084990037691, -1.5446702156772865, -1.5691075762218938, -1.5912442497547996, -1.61094152697979, -1.6280768079354024, -1.6425453597737238, -1.654261785606746, -1.663161163421425, -1.6691998251275175, -1.672355758280869, -1.6726286261609093, -1.670039414882011, -1.664629728330688, -1.6564607622992698, -1.645611997740667, -1.6321796592930602, -1.6162749890007342, -1.5980223865473613, -1.577557466528039, -1.5550250806320942, -1.5305773484765572, -1.5043717356320254, -1.4765692115267053, -1.4473325137726136, -1.4168245393495993, -1.385206877263877, -1.3526384919560293, -1.3192745619936208, -1.2852654745127372, -1.2507559724910482, -1.2158844492252037, -1.180782382304097, -1.1455738978560455, -1.1103754548321696, -1.0752956384964696, -1.0404350520537147, -1.0058862953913084, -0.9717340201796351, -0.938055051012998, -0.9049185628339149, -0.8723863055281171, -0.8405128672738803, -0.8093459689515556, -0.7789267826463787, -0.7492902679941414, -0.7204655208126645, -0.6924761291238661, -0.6653405322945477, -0.639072379605899 ], [ -1.477704262511152, -1.503219620744739, -1.5266740777787504, -1.5479232424789529, -1.5668360125709933, -1.5832964193996866, -1.597205253788625, -1.6084814280774695, -1.6170630373694568, -1.622908092777991, -1.6259949104692233, -1.6263221519115156, -1.6239085222853684, -1.618792144829276, -1.611029638434057, -1.6006949336132803, -1.5878778677868493, -1.5726826044943092, -1.5552259227327665, -1.5356354222482118, -1.5140476885558636, -1.4906064580463778, -1.4654608191037082, -1.4387634800699478, -1.4106691294722875, -1.3813329084657064, -1.3509090101759256, -1.3195494157315437, -1.2874027723740669, -1.254613415204132, -1.2213205308915913, -1.1876574590428475, -1.1537511248512287, -1.1197215951089068, -1.0856817485741543, -1.05173705100357, -1.0179854248128697, -0.9845172032612549, -0.9514151592082565, -0.9187545988182749, -0.886603511043354, -0.8550227642620917, -0.8240663420605212, -0.7937816107839735, -0.7642096121466273, -0.7353853748409475, -0.7073382397305653, -0.6800921938269766, -0.6536662088364957, -0.6280745806140988 ], [ -1.4373127498857206, -1.4617777559199643, -1.4842671510987933, -1.50464463938584, -1.522786427385868, -1.5385829272058373, -1.5519402588821438, -1.5627815120452242, -1.5710477335246569, -1.576698616200358, -1.5797128741117046, -1.5800882990969118, -1.5778415044717227, -1.5730073709101176, -1.5656382182689312, -1.5558027342153868, -1.5435846959102655, -1.5290815245446308, -1.512402714228262, -1.4936681767013356, -1.473006541793461, -1.4505534507535094, -1.4264498758194604, -1.400840494994505, -1.3738721462344636, -1.3456923803887024, -1.3164481274884274, -1.286284486509772, -1.2553436446758912, -1.223763928778601, -1.1916789879346799, -1.1592171046514297, -1.1265006290432034, -1.0936455294808543, -1.0607610518233748, -1.0279494786234231, -0.9953059792627226, -0.9629185418056331, -0.9308679774104561, -0.8992279883628057, -0.8680652911526533, -0.8374397864723446, -0.8074047685363306, -0.7780071666901149, -0.7492878128653342, -0.7212817290333362, -0.6940184293986665, -0.6675222326453739, -0.6418125800969499, -0.6169043561683505 ], [ -1.3970268643719972, -1.4204632483469206, -1.4420074533207048, -1.4615309373813168, -1.4789169124720474, -1.4940619150502463, -1.5068771933052723, -1.517289874755736, -1.5252438842620875, -1.5307005900753703, -1.5336391640982778, -1.534056651594747, -1.5319677546547061, -1.5274043423206394, -1.520414707985783, -1.5110626011364843, -1.499426065496805, -1.4855961190168376, -1.4696753129151676, -1.4517762072252756, -1.4320197991699744, -1.4105339384186668, -1.3874517601210867, -1.362910162822238, -1.3370483541980027, -1.3100064832405751, -1.281924373260949, -1.2529403660198306, -1.2231902835641235, -1.1928065110117338, -1.1619172006365766, -1.1306455951735392, -1.0991094662828778, -1.0674206625598837, -1.0356847603140835, -1.0040008095293178, -0.9724611669064476, -0.9411514076382985, -0.9101503075270737, -0.8795298871873024, -0.8493555103450336, -0.8196860286138083, -0.7905739655714651, -0.7620657334555122, -0.7342018763178849, -0.7070173340168076, -0.6805417219600823, -0.6547996220413475, -0.6298108807190717, -0.6055909106731743 ], [ -1.3569533446447253, -1.379384710351906, -1.4000053165230337, -1.418694032592728, -1.435340770091768, -1.4498479303864211, -1.4621316845941748, -1.4721230532353005, -1.4797687586758568, -1.4850318301045708, -1.4878919483264847, -1.488345525652815, -1.486405524198099, -1.4821010235488559, -1.4754765556729477, -1.4665912307934923, -1.4555176825402034, -1.4423408638956061, -1.427156727247051, -1.410070822299085, -1.3911968448232535, -1.3706551674057876, -1.348571380710144, -1.325074870525738, -1.3002974522465567, -1.2743720806173213, -1.2474316487753856, -1.219607886948995, -1.1910303677563578, -1.1618256219630188, -1.132116365844605, -1.1020208389892567, -1.071652249460597, -1.0411183217113233, -1.0105209414636382, -0.9799558909207835, -0.9495126671062303, -0.9192743758035862, -0.8893176934526777, -0.8597128894080053, -0.8305239011520339, -0.8018084553462477, -0.7736182279717976, -0.7459990372356006, -0.7189910633774548, -0.6926290899934003, -0.6669427619765768, -0.6419568556588836, -0.6176915572066461, -0.594162745774799 ], [ -1.3171894803984534, -1.338640989149345, -1.358361019945777, -1.376235511941794, -1.3921607710053718, -1.4060448033736055, -1.4178084958204853, -1.427386613261839, -1.4347285895824278, -1.4397990933665148, -1.4425783568586121, -1.4430622635378523, -1.441262196796999, -1.437204659021941, -1.4309306765486132, -1.4224950112662076, -1.4119652038455897, -1.3994204765857485, -1.384950525656024, -1.3686542331066345, -1.3506383285274468, -1.3310160288015411, -1.3099056822047892, -1.2874294403360294, -1.2637119782159685, -1.238879279544791, -1.2130575007166204, -1.1863719238856885, -1.1589460062671217, -1.1309005300109765, -1.1023528544601646, -1.0734162704176433, -1.0441994542126012, -1.0148060178614808, -0.9853341504481463, -0.9558763449714911, -0.926519204296831, -0.8973433194659846, -0.8684232134361585, -0.8398273432969006, -0.8116181541271151, -0.7838521778726056, -0.7565801709239213, -0.7298472844329698, -0.7036932618065229, -0.6781526582390262, -0.6532550775841072, -0.6290254223022095, -0.605484152653121, -0.5826475517201976 ], [ -1.2778234020668129, -1.2983214818580244, -1.317165127718129, -1.334247010517906, -1.349469527991591, -1.3627460326746088, -1.3740019195012216, -1.3831755470109106, -1.3902189704112256, -1.395098469945462, -1.397794863870733, -1.3983036015781878, -1.3966346386751982, -1.3928121018955786, -1.3868737572301642, -1.378870299445147, -1.3688644850055125, -1.3569301332399997, -1.3431510223329455, -1.3276197074322216, -1.3104362878989029, -1.2917071496137411, -1.2715437064457114, -1.2500611626413751, -1.22737731517531, -1.203611412167477, -1.1788830804643584, -1.1533113325163822, -1.1270136598609461, -1.1001052179111088, -1.0726981044038009, -1.044900731808085, -1.0168172922452767, -0.9885473120266148, -0.9601852917576522, -0.9318204270717274, -0.9035364044114816, -0.8754112658500594, -0.8475173367028108, -0.8199212095973593, -0.7926837787176922, -0.7658603180910506, -0.7395005980220424, -0.713649034076312, -0.688344863358822, -0.663622343203798, -0.6395109677827675, -0.6160356985324623, -0.5932172046979398, -0.5710721106710005 ], [ -1.2389344216745877, -1.25850650134519, -1.2764988771944612, -1.292810619475227, -1.3073499199861198, -1.3200352221802396, -1.330796222980946, -1.339574722967777, -1.3463253053994546, -1.3510158291290129, -1.353627725629418, -1.3541560958417433, -1.3526096081196657, -1.3490102039130196, -1.343392622769948, -1.3358037625382726, -1.326301894158589, -1.3149557530648135, -1.3018435309019643, -1.2870517920474662, -1.2706743393418423, -1.2528110525929756, -1.2335667219387647, -1.2130498961726366, -1.1913717637968422, -1.168645082005775, -1.1449831661412784, -1.120498949511045, -1.0953041209097436, -1.0695083447983136, -1.0432185669298026, -1.0165384062903944, -0.9895676325688472, -0.9624017269778343, -0.935131523120219, -0.9078429237065098, -0.8806166882669509, -0.8535282865393209, -0.826647811927062, -0.800039949286566, -0.7737639912934434, -0.7478738977323728, -0.7224183922328223, -0.6974410912148695, -0.6729806600988406, -0.6490709921551796, -0.6257414057146555, -0.6030168558134766, -0.5809181567044329, -0.5594622120173827 ], [ -1.200593412513099, -1.219267680240224, -1.2364346049178672, -1.2519993311754185, -1.2658755532864014, -1.2779865548577827, -1.2882661312575456, -1.2966593738772723, -1.3031232986937957, -1.3076273056429153, -1.3101534598712257, -1.3106965907798043, -1.3092642096921305, -1.305876251744798, -1.3005646520055454, -1.2933727696929023, -1.2843546775670942, -1.2735743359930416, -1.2611046728005813, -1.247026590888155, -1.2314279255789518, -1.214402373119812, -1.196048410515251, -1.176468225226095, -1.155766671256824, -1.1340502659252751, -1.1114262392637355, -1.0880016456381676, -1.0638825448742428, -1.0391732580087933, -1.0139757007918049, -0.9883887962784808, -0.9625079662919725, -0.936424700211212, -0.9102261984421652, -0.88399508705414, -0.8578091993905597, -0.8317414199762078, -0.8058595857205215, -0.7802264392364842, -0.7548996290368445, -0.7299317514124507, -0.7053704289233017, -0.6812584206233564, -0.6576337593808246, -0.6345299119315971, -0.6119759576045024, -0.5899967819719183, -0.5686132820003447, -0.5478425795959911 ], [ -1.1628632169522228, -1.1806684021694884, -1.1970361990193545, -1.2118775101559185, -1.2251112481880282, -1.2366652918866208, -1.2464773352248861, -1.2544956105286418, -1.2606794699961519, -1.2649998134213694, -1.2674393539706221, -1.2679927181413175, -1.2666663803813136, -1.263478437076996, -1.2584582285488133, -1.2516458211696588, -1.243091364623896, -1.2328543415692164, -1.221002728508516, -1.2076120875218006, -1.1927646086810109, -1.1765481225353782, -1.1590551010949288, -1.140381664351659, -1.1206266076651397, -1.0998904634046505, -1.0782746081798869, -1.055880424893744, -1.0328085267874334, -1.009158048680379, -0.9850260087805287, -0.9605067427872249, -0.9356914105482969, -0.9106675742753028, -0.8855188462656556, -0.8603246032223638, -0.8351597635885945, -0.8100946238116299, -0.7851947491001543, -0.7605209140235047, -0.7361290882016307, -0.712070462332964, -0.6883915098865663, -0.6651340799293272, -0.6423355167541656, -0.6200288022083653, -0.5982427168816065, -0.5770020165907972, -0.5563276208857377, -0.5362368105894562 ], [ -1.12579907320407, -1.1427642508390692, -1.1583595685021053, -1.172501380204176, -1.1851135411696272, -1.1961282870382202, -1.2054870151328871, -1.2131409510229483, -1.2190516862544016, -1.2231915762763284, -1.2255439911362727, -1.2261034152945407, -1.2248753967549715, -1.2218763494624834, -1.2171332164222033, -1.2106830041161052, -1.202572201424269, -1.1928560983234135, -1.181598021095252, -1.168868501623211, -1.1547443986121064, -1.1393079882793091, -1.122646041306622, -1.1048489016898204, -1.0860095816661794, -1.0662228852271785, -1.04558457091927, -1.0241905627764667, -1.0021362163822207, -0.9795156452791017, -0.9564211112771948, -0.9329424806869782, -0.9091667471409015, -0.8851776204812772, -0.861055180183426, -0.8368755909498093, -0.8127108774443198, -0.7886287546248426, -0.7646925097622641, -0.7409609319899747, -0.7174882850936609, -0.6943243192108561, -0.671514317148012, -0.6490991711258451, -0.6271154859176108, -0.6055957045387858, -0.5845682528689592, -0.5640576998294158, -0.5440849299943364, -0.5246673257736878 ], [ -1.0894490532244918, -1.1056034690232288, -1.1204531213463305, -1.1339195193534921, -1.1459311943214852, -1.1564245078728181, -1.1653443707109425, -1.1726448568392065, -1.1782897005821946, -1.1822526665184996, -1.1845177855620646, -1.1850794537652605, -1.1839423938201268, -1.1811214825641363, -1.176641450920192, -1.1705364655003154, -1.1628496034841536, -1.1536322342792937, -1.142943322841738, -1.1308486703703358, -1.1174201084057096, -1.102734662198328, -1.0868736986193346, -1.0699220729373997, -1.0519672875508856, -1.0330986743225212, -1.0134066105875403, -0.9929817772643279, -0.9719144658486623, -0.9502939394698954, -0.9282078516699357, -0.9057417251646804, -0.8829784915836029, -0.8599980920693071, -0.8368771376605181, -0.8136886275788283, -0.7905017228859138, -0.7673815724656253, -0.7443891879025901, -0.7215813635631808, -0.6990106380221264, -0.6767252929050348, -0.6547693852198418, -0.6331828093162507, -0.612001384729224, -0.5912569663199471, -0.570977573315328, -0.5511875340567884, -0.5319076434929546, -0.5131553306828573 ], [ -1.0538545051743404, -1.069227420801524, -1.0833582447004337, -1.0961733559870719, -1.1076057051207262, -1.117595556764514, -1.1260911508665639, -1.133049268502319, -1.1384356910944646, -1.1422255440945204, -1.1444035189725867, -1.1449639703090533, -1.143910887793336, -1.1412577458895001, -1.1370272367115375, -1.1312508941609556, -1.123968619532414, -1.1152281205292018, -1.105084276911922, -1.0935984468187496, -1.080837728153975, -1.0668741893721925, -1.051784083534125, -1.0356470587321058, -1.0185453769423438, -1.0005631521216216, -0.9817856169934737, -0.9622984265220064, -0.9421870046050801, -0.9215359390784308, -0.9004284287459438, -0.8789457848683552, -0.8571669883740333, -0.8351683030146982, -0.8130229437832016, -0.7908007991415067, -0.7685682049714558, -0.7463877676530704, -0.7243182332854566, -0.7024143997841807, -0.6807270684038035, -0.6593030311340187, -0.6381850903901414, -0.6174121074522391, -0.597019076191137, -0.5770372187440517, -0.557494099958106, -0.5384137575993828, -0.5198168455199734, -0.5017207871813956 ], [ -1.0190504949655423, -1.0336710515302123, -1.0471097816031718, -1.0592976604492002, -1.0701718108978868, -1.0796761860351838, -1.08776217716342, -1.0943891349682446, -1.0995247936729202, -1.1031455901432072, -1.1052368723470631, -1.1057929941784548, -1.1048172963197376, -1.1023219754391802, -1.0983278464996116, -1.0928640052029084, -1.0859673995396255, -1.0776823209989976, -1.0680598271878072, -1.0571571083929405, -1.045036811007925, -1.0317663307503282, -1.0174170882610991, -1.0020637990456054, -0.9857837488414518, -0.9686560844368013, -0.9507611287701747, -0.9321797278715237, -0.9129926359022574, -0.8932799432616635, -0.8731205514823057, -0.8525916974662522, -0.8317685285373246, -0.810723728816193, -0.7895271965734554, -0.7682457714836914, -0.7469430100902135, -0.7256790072914683, -0.7045102612688908, -0.6834895789843779, -0.6626660191733684, -0.642084869636894, -0.621787655582462, -0.6018121757690114, -0.5821925632659508, -0.5629593677309026, -0.5441396562376013, -0.5257571298361534, -0.5078322531964745, -0.49038239486617696 ], [ -0.985066242392811, -0.9989633410406645, -1.0117364997175486, -1.0233210276249998, -1.0336579834271267, -1.0426948025876381, -1.0503858564128183, -1.056692931989009, -1.0615856238382886, -1.0650416300479097, -1.0670469477875488, -1.0675959654316116, -1.0666914508638132, -1.064344437868491, -1.060574014722032, -1.0554070211117714, -1.0488776612642416, -1.0410270426110937, -1.031902650427852, -1.0215577696330649, -1.0100508653359976, -0.9974449337865862, -0.983806835140882, -0.9692066189472855, -0.9537168525278353, -0.9374119615226085, -0.9203675908316424, -0.9026599930744297, -0.8843654505340645, -0.8655597353996285, -0.8463176119977978, -0.8267123836395318, -0.8068154857190023, -0.7866961258045054, -0.7664209706637847, -0.7460538794728486, -0.7256556818693931, -0.7052839990261957, -0.6849931055315986, -0.6648338295668162, -0.6448534886552166, -0.6250958581183633, -0.6056011692986293, -0.5864061345893606, -0.5675439963426302, -0.5490445967929534, -0.5309344662357198, -0.513236926824131, -0.4959722094925003, -0.4791575816706273 ], [ -0.9519255482079358, -0.9651277464377127, -0.9772615484602124, -0.9882663468746977, -0.9980869100163546, -1.0066739583906044, -1.0139846786922384, -1.0199831657157081, -1.02464078391501, -1.0279364420828068, -1.0298567765275561, -1.0303962401653797, -1.02955709703358, -1.027349323798891, -1.0237904218015814, -1.0189051449795334, -1.0127251505986243, -1.0052885810324652, -0.9966395858584689, -0.9868277942516998, -0.9759077480647628, -0.9639383060920342, -0.9509820298541269, -0.9371045608342763, -0.9223739984907875, -0.9068602875979739, -0.8906346225750468, -0.8737688754875359, -0.8563350533872389, -0.838404789627927, -0.8200488727844044, -0.8013368158358188, -0.78233646736932, -0.7631136657315312, -0.7437319363114366, -0.7242522314854618, -0.70473271219465, -0.685228569654411, -0.665791885315532, -0.6464715268961172, -0.6273130780811248, -0.6083587993323452, -0.5896476171588837, -0.5712151391591618, -0.5530936921520295, -0.5353123807597615, -0.5178971638822809, -0.5008709466038253, -0.48425368519446055, -0.4680625030043015 ], [ -0.9196472092388557, -0.932182631635167, -0.9437029016915309, -0.9541512565058489, -0.9634759582867867, -0.9716308239966646, -0.9785756979471856, -0.9842768586535572, -0.9887073525432184, -0.9918472486316349, -0.9936838099675267, -0.9942115794539064, -0.9934323795034085, -0.9913552268214713, -0.9879961653641605, -0.9833780221318933, -0.9775300918852873, -0.9704877580675231, -0.9622920581611532, -0.9529892023827766, -0.942630055023887, -0.9312695878898419, -0.9189663151891188, -0.9057817189084508, -0.891779673206669, -0.8770258757057473, -0.8615872927877612, -0.8455316251555701, -0.8289267990170975, -0.8118404873378088, -0.7943396646996679, -0.7764901984302214, -0.7583564778396431, -0.7400010826406511, -0.7214844909354791, -0.7028648265413868, -0.6841976448944392, -0.6655357563203455, -0.6469290850888512, -0.6284245623708278, -0.6100660509896353, -0.59189429969422, -0.5739469245749554, -0.5562584151868595, -0.5388601629324796, -0.5217805092812993, -0.5050448114583435, -0.48867552331514097, -0.4726922891969818, -0.4571120487357647 ], [ -0.8882454193005399, -0.9001416814237483, -0.9110737838027252, -0.9209885806507907, -0.9298376225272813, -0.9375776429817743, -0.9441709930519726, -0.9495860158144672, -0.9537973543351643, -0.9567861877104037, -0.9585403913868913, -0.9590546195459304, -0.9583303089798549, -0.9563756055184146, -0.9532052156256581, -0.948840187232489, -0.9433076251537295, -0.9366403475266282, -0.9288764905760183, -0.9200590696461337, -0.9102355048369741, -0.8994571197504595, -0.8877786218025905, -0.8752575723137594, -0.8619538541763436, -0.8479291443457535, -0.8332463977390882, -0.8179693483847458, -0.8021620328762219, -0.7858883403706453, -0.7692115925611076, -0.7521941562621796, -0.7348970904962039, -0.7173798292681612, -0.6996999005769168, -0.6819126816386875, -0.6640711897962986, -0.6462259081572179, -0.6284246446430612, -0.610712422840289, -0.5931314028126566, -0.5757208298650572, -0.5585170091311438, -0.5415533037867819, -0.5248601546627936, -0.5084651190374676, -0.49239292642636623, -0.476665549248777, -0.4613022863320888, -0.44631985731255597 ], [ -0.8577301541979275, -0.8690142984299302, -0.8793830776088364, -0.8887867469980212, -0.8971799500995484, -0.9045221657951242, -0.9107781078147769, -0.9159180695317667, -0.9199182081027563, -0.922760763165387, -0.9244342066317865, -0.9249333215323791, -0.9242592093210897, -0.9224192265015724, -0.9194268528270185, -0.915301494619083, -0.9100682279071408, -0.9037574870763095, -0.8964047055101343, -0.8880499153077054, -0.8787373135420041, -0.868514802709279, -0.8574335130107795, -0.8455473139242322, -0.8329123221856508, -0.819586412836553, -0.8056287394237317, -0.7910992687953129, -0.7760583352428297, -0.7605662180189342, -0.7446827455352871, -0.728466928833675, -0.7119766262411428, -0.6952682404789303, -0.6783964489050714, -0.6614139670373502, -0.6443713450317413, -0.6273167963820913, -0.6102960577602626, -0.5933522786299186, -0.5765259390387321, -0.5598547938190832, -0.5433738413018965, -0.5271153145668164, -0.5111086932099242, -0.4953807336018379, -0.4799555156300619, -0.4648545039644012, -0.45009662194934696, -0.43569833630796384 ] ], "zauto": true, "zmax": 2.334413799903304, "zmin": -2.334413799903304 }, { "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.17380534605312464, 0.16326652988883872, 0.15554610676366373, 0.15099693210899529, 0.14978745079598016, 0.1518440104592634, 0.1568632440972774, 0.16438972303170238, 0.17391585296930204, 0.1849615614589312, 0.1971177664575588, 0.21005946691150523, 0.2235410053625329, 0.2373836752180825, 0.25146156471343384, 0.26568836476535346, 0.28000612852859114, 0.2943761716607538, 0.308771985624711, 0.32317392963630576, 0.33756544002008804, 0.35193049650026387, 0.3662520962723123, 0.3805115045216928, 0.39468807354288293, 0.40875945071261127, 0.4227020264232866, 0.43649150441586476, 0.45010350663791465, 0.46351415118254796, 0.4767005640869004, 0.4896413034566508, 0.5023166876916787, 0.514709028991232, 0.5268027794510509, 0.5385846006113288, 0.5500433689189247, 0.561170129795483, 0.5719580123212907, 0.5824021153181974, 0.5924993741165628, 0.6022484157150242, 0.6116494085178877, 0.6207039114431087, 0.6294147259771242, 0.6377857537274493, 0.6458218611877615, 0.6535287527698203, 0.6609128526516167, 0.6679811956184637 ], [ 0.17123531035135095, 0.16036398043164293, 0.15227464399954774, 0.14734048431560856, 0.1457554383749868, 0.14746800798413517, 0.15218649050376945, 0.1594556878069291, 0.16876121502831656, 0.17961458364426677, 0.19160008151502292, 0.20438899578385344, 0.21773463424942105, 0.23145916891804882, 0.24543865975499807, 0.25958916799334764, 0.2738549917731199, 0.28819920727031717, 0.30259636700432185, 0.3170270967957146, 0.3314743051410207, 0.34592071953351555, 0.36034747665845107, 0.37473351365080215, 0.38905553472534826, 0.4032883599198838, 0.417405497967189, 0.43137982064835434, 0.44518424892762476, 0.45879238999053507, 0.47217908808268966, 0.4853208705747424, 0.49819628428474716, 0.5107861264151063, 0.5230735802912336, 0.5350442692176144, 0.546686242920477, 0.5579899108414315, 0.5689479354781031, 0.5795550974137547, 0.5898081419133453, 0.5997056151781333, 0.6092476966677891, 0.6184360323897451, 0.6272735727550064, 0.6357644175166957, 0.6439136694338489, 0.6517272976197629, 0.6592120110170251, 0.6663751420640045 ], [ 0.1705406894880567, 0.15945969430559295, 0.15109605816799604, 0.14582815692002885, 0.14386580798346096, 0.14518030086669634, 0.14950229144341104, 0.15639258515834606, 0.16534511204049468, 0.1758741719848405, 0.18756423892172627, 0.20008624514051226, 0.21319356050829366, 0.2267090352143294, 0.24050984061484962, 0.25451326611832, 0.26866463920737604, 0.2829276154567636, 0.29727671450506576, 0.3116918454757146, 0.3261545247294963, 0.3406454825854519, 0.3551433654017791, 0.36962426033364276, 0.38406180012688235, 0.39842764185195767, 0.41269215314063784, 0.42682517880674953, 0.44079679687635714, 0.45457800415632554, 0.46814129666278026, 0.48146112946211145, 0.4945142542589806, 0.5072799422209685, 0.5197401049908709, 0.5318793295118069, 0.543684842978234, 0.5551464235897738, 0.566256271342201, 0.5770088512267041, 0.5874007191981729, 0.5974303392993154, 0.6070978985039013, 0.6164051242322623, 0.6253551081216044, 0.6339521385042659, 0.6422015431444094, 0.6501095430841074, 0.6576831179253252, 0.6649298824956005 ], [ 0.171621313835955, 0.16045419006400663, 0.15191775690495765, 0.14638064976630755, 0.14405720344578682, 0.14493897423132818, 0.1487866900259582, 0.15519134832120554, 0.1636701447533751, 0.17375197247971785, 0.1850290437439367, 0.19717587184714874, 0.20994735287226207, 0.22316701397523248, 0.23671236938775814, 0.2505008284178971, 0.2644775416582926, 0.2786055683718218, 0.2928583139984087, 0.3072140124966948, 0.3216519617952717, 0.33615019974114874, 0.3506843108998608, 0.36522707408279165, 0.37974869248890425, 0.3942173885898323, 0.4086001897190419, 0.4228637734664251, 0.43697528115677814, 0.4509030409029316, 0.46461716816650767, 0.4780900315487978, 0.49129658538011417, 0.5042145795843593, 0.5168246623457429, 0.5291103933084538, 0.5410581852665749, 0.5526571912508454, 0.5638991521258983, 0.5747782176655007, 0.5852907518432368, 0.5954351309372656, 0.6052115411044698, 0.6146217803853472, 0.6236690686740113, 0.6323578680223987, 0.6406937147241308, 0.6486830639134251, 0.6563331468866069, 0.6636518409764355 ], [ 0.17432659609875326, 0.16318569270335145, 0.15457345557711177, 0.1488365602964972, 0.1461831748667704, 0.14662036447792248, 0.14994245970125064, 0.15578079195940356, 0.16368827691365925, 0.17321934320621307, 0.18398164192150113, 0.19565774690299087, 0.20800612756651973, 0.2208514702547119, 0.2340712241369263, 0.2475820690979988, 0.26132796079050785, 0.27527033085028807, 0.2893805093330942, 0.30363420476825315, 0.3180077732619969, 0.3324759651092742, 0.3470108292239941, 0.361581471439871, 0.37615439543985535, 0.3906941982941241, 0.40516444013241576, 0.4195285540915635, 0.4337507045964663, 0.4477965371052932, 0.46163378994031823, 0.4752327590230239, 0.48856662014216296, 0.5016116219890823, 0.5143471678132305, 0.5267558052893663, 0.5388231439743515, 0.5505377182963017, 0.561890811908685, 0.5728762568456035, 0.583490218494322, 0.5937309751228315, 0.6035986986583624, 0.6130952416516043, 0.622223933890897, 0.6309893909390712, 0.6393973359277229, 0.6474544352277799, 0.6551681480868934, 0.6625465899499606 ], [ 0.17847602737142698, 0.16745450194792508, 0.15885034813775878, 0.15298013507107638, 0.15003768778528756, 0.1500400421500404, 0.15281467145949357, 0.1580382025574629, 0.16530754888052038, 0.17421133985113274, 0.1843796883520355, 0.19550793741339978, 0.20736075440460802, 0.219765085508842, 0.2325984430036219, 0.24577635583959356, 0.2592408999263765, 0.2729511107171744, 0.2868754960921636, 0.3009865712674364, 0.31525718796193486, 0.32965835889320066, 0.3441582553587851, 0.3587220650790259, 0.3733124292756613, 0.387890223106591, 0.4024154940872039, 0.4168484226536537, 0.43115021324677755, 0.4452838609003355, 0.459214766622153, 0.47291119530896664, 0.48634458362401156, 0.4994897135345989, 0.5123247713951606, 0.5248313137587232, 0.5369941604821166, 0.5488012339114519, 0.5602433605470957, 0.5713140489773302, 0.5820092552907699, 0.5923271447858763, 0.6022678566756179, 0.6118332766725945, 0.6210268208373556, 0.6298532328626906, 0.6383183960199659, 0.6464291602750263, 0.65419318455431, 0.6616187937712847 ], [ 0.18388028202545406, 0.17304896244350995, 0.16451944373594155, 0.1585741946743847, 0.1553877307643059, 0.15498201922897523, 0.15721442836582364, 0.16180706027597422, 0.16840443335547867, 0.17663485979638976, 0.18615643280109628, 0.19668166544033275, 0.20798436567733267, 0.21989538489389196, 0.23229298843854315, 0.24509162854095207, 0.258231228569442, 0.2716679967753375, 0.2853671514604127, 0.2992975828127077, 0.3134282794850112, 0.327726245174135, 0.34215558887843384, 0.35667747320048665, 0.37125063415423765, 0.38583223165377895, 0.40037884231196863, 0.41484745783945737, 0.4291963982958527, 0.4433860871836297, 0.4573796642349215, 0.4711434322980577, 0.4846471482275916, 0.49786417559864393, 0.5107715208456438, 0.5233497753220606, 0.5355829848043638, 0.5474584658892139, 0.5589665861130931, 0.5701005218376565, 0.5808560052378433, 0.5912310692488086, 0.6012257971480565, 0.6108420815983117, 0.6200833964514975, 0.6289545833922224, 0.6374616545472975, 0.6456116114687025, 0.6534122803725586, 0.6608721631496783 ], [ 0.19035845991165853, 0.17976677136113883, 0.17136085403194626, 0.1653884619939786, 0.1620027749321708, 0.16122685390914915, 0.16294338934087096, 0.16691673672504742, 0.17283857560768234, 0.18037904347852424, 0.1892276875380903, 0.19911772166795158, 0.2098349382822843, 0.22121603315093463, 0.23314115199561436, 0.24552419512238288, 0.25830307066589325, 0.27143108448584025, 0.28487000256144096, 0.29858491982625646, 0.3125408292013153, 0.326700650247998, 0.3410244155369127, 0.35546930293455886, 0.3699902266305822, 0.3845407445049257, 0.3990740926052157, 0.41354421037296696, 0.42790666728581794, 0.44211944000707315, 0.45614351827515165, 0.4699433382851739, 0.4834870555692169, 0.4967466769543953, 0.5096980745868824, 0.5223209055594223, 0.5345984594074191, 0.546517453422569, 0.5580677929266363, 0.5692423107247215, 0.5800364971534814, 0.5904482295926036, 0.6004775080848049, 0.6101262018323041, 0.6193978097971898, 0.6282972374035025, 0.6368305903840642, 0.6450049860959334, 0.6528283821051181, 0.6603094214766381 ], [ 0.1977493430111602, 0.1874286611397358, 0.17918000733581216, 0.17321810922826217, 0.16967496459654333, 0.16857223568259833, 0.16981319629143687, 0.17319942319414994, 0.17846649434616502, 0.1853256751962099, 0.19349929426723858, 0.20274354552605575, 0.2128585390586019, 0.2236887202958044, 0.2351174580792803, 0.24705894168931172, 0.2594495371963938, 0.2722398915180175, 0.2853884437600364, 0.2988565788018927, 0.31260538552085937, 0.3265938201095423, 0.34077799442579065, 0.3551112878957172, 0.36954500017891617, 0.3840293041453222, 0.398514311307152, 0.4129511149098691, 0.4272927232585897, 0.4414948344958974, 0.4555164332002352, 0.4693202095306097, 0.4828728146244798, 0.49614497320907835, 0.5091114774792773, 0.5217510865612283, 0.5340463543724566, 0.5459834061867715, 0.5575516812661624, 0.5687436558977426, 0.5795545583002958, 0.5899820842714595, 0.6000261201943352, 0.6096884781272089, 0.6189726461496732, 0.6278835559036209, 0.6364273683106174, 0.6446112777273223, 0.6524433342775516, 0.6599322837355742 ], [ 0.20591671228182065, 0.195884578624608, 0.1878148536173248, 0.1818922332759334, 0.17822904048072394, 0.17684419727755232, 0.1776573293283246, 0.1805016734528362, 0.18515192373094516, 0.19135778160147662, 0.19887382652562768, 0.20748015833341363, 0.21699275430874373, 0.22726538861390697, 0.23818596909712295, 0.24966995416342877, 0.2616528566808767, 0.27408314792095284, 0.2869163023431323, 0.30011030096517943, 0.31362262034032345, 0.3274085515699527, 0.3414205966077768, 0.3556086563181839, 0.3699207365571262, 0.38430393714967787, 0.39870553941123366, 0.41307406010438424, 0.4273601867180718, 0.4415175473508865, 0.4555032973944441, 0.469278525302613, 0.4828084924305962, 0.4960627289049496, 0.5090150103287348, 0.5216432401806347, 0.5339292610889107, 0.5458586155296749, 0.557420273458421, 0.5686063412937322, 0.5794117637541355, 0.5898340274269309, 0.599872872677537, 0.6095300186019508, 0.6188089041679168, 0.6277144474514705, 0.6362528239156474, 0.644431263956048, 0.6522578694127658, 0.6597414483821862 ], [ 0.2147500133644639, 0.20501416401360903, 0.19713632943460357, 0.19127472589584116, 0.18752419028649187, 0.18590040323310492, 0.1863358814554722, 0.18869023568309554, 0.19277200537233058, 0.19836551552953732, 0.20525571372512863, 0.21324632498620258, 0.2221698760865612, 0.2318905402222056, 0.2423018575083407, 0.25332150562084516, 0.2648849163923437, 0.2769390096591506, 0.2894368211020305, 0.3023334002922425, 0.31558306111454676, 0.3291378720858396, 0.34294716426613336, 0.3569577914532434, 0.37111488192273756, 0.3853628548661199, 0.399646522547557, 0.4139121497045706, 0.4281083876621187, 0.4421870383580206, 0.45610363193159614, 0.4698178212726129, 0.48329360935360605, 0.4964994319272232, 0.5094081208399097, 0.5219967731338873, 0.5342465493313158, 0.5461424215911836, 0.5576728893392534, 0.5688296768482708, 0.5796074243065824, 0.5900033812776957, 0.6000171091745773, 0.6096501974606481, 0.6189059967277117, 0.6277893705578097, 0.6363064671116472, 0.6444645106594175, 0.6522716127397097, 0.6597366022612056 ], [ 0.2241620049030259, 0.21472370274316924, 0.20704478066299412, 0.2012605962489495, 0.19745091240189014, 0.19562820985648532, 0.19573521751500605, 0.19765329824037378, 0.20121974256596956, 0.20624927380230984, 0.21255451314954008, 0.21996161646915266, 0.2283195539266992, 0.2375034050021761, 0.2474130990514998, 0.2579693273338331, 0.2691081809612213, 0.2807756963474983, 0.2929230806383536, 0.30550302632518234, 0.31846723982273945, 0.33176511077177845, 0.34534333109172655, 0.359146221489717, 0.37311652066942397, 0.3871964210449737, 0.4013286788672986, 0.415457674644665, 0.4295303440423193, 0.44349693613737934, 0.4573115837136173, 0.4709326896277547, 0.4843231454600753, 0.4974504052713186, 0.5102864398672622, 0.522807596840177, 0.5349943898489105, 0.5468312378812944, 0.5583061721463564, 0.5694105251192032, 0.5801386133229396, 0.5904874227969128, 0.6004563039214172, 0.6100466803551711, 0.619261775276486, 0.6281063568704475, 0.6365865040334862, 0.6447093925322719, 0.6524831013156244, 0.6599164382988529 ], [ 0.2340848335183114, 0.22494137363507968, 0.21746453781743472, 0.21177023703520836, 0.20792552046056084, 0.20594002082882645, 0.2057646751417657, 0.20729875335898765, 0.21040372608241403, 0.21492055538609506, 0.2206864879972521, 0.22754833280362338, 0.2353707841761792, 0.24403982153152362, 0.25346215475843187, 0.26356205932698046, 0.274276913942111, 0.2855525046710569, 0.29733883312968085, 0.3095868481246148, 0.3222462549466475, 0.335264362720891, 0.34858580929110095, 0.362152945756716, 0.37590665391204325, 0.38978739279983554, 0.4037363103119727, 0.41769630057983226, 0.43161293006455204, 0.44543519059699005, 0.4591160646269002, 0.47261290685435303, 0.48588765839072934, 0.4989069161310126, 0.5116418825945427, 0.5240682213888691, 0.5361658416857862, 0.5479186324228787, 0.5593141638849142, 0.5703433712245305, 0.581000231564642, 0.5912814437040009, 0.6011861171753611, 0.6107154754934147, 0.619872576861309, 0.6286620543494305, 0.6370898765802528, 0.6451631292080245, 0.6528898169324553, 0.6602786853946934 ], [ 0.24446559581412516, 0.23561205704092394, 0.2283381042490316, 0.22274327073445435, 0.2188840567201423, 0.21676774728334963, 0.2163520162655381, 0.21755093372008394, 0.2202462290140502, 0.22430128093113882, 0.22957488932977782, 0.23593244846763686, 0.2432532499682852, 0.2514337634148011, 0.26038753965116457, 0.2700427713017733, 0.28033860045684134, 0.2912211089277273, 0.3026396737175596, 0.31454409929649285, 0.32688269824646604, 0.33960130812005834, 0.3526431124041722, 0.36594907239951174, 0.37945876244422433, 0.39311141829328344, 0.4068470434189601, 0.42060745916694375, 0.4343372243343805, 0.4479843834600164, 0.4615010291974828, 0.47484368259549437, 0.48797350691534086, 0.5008563771487453, 0.5134628300548983, 0.5257679195435477, 0.5377510005773871, 0.5493954621902408, 0.5606884272387672, 0.5716204334714914, 0.5821851076248822, 0.5923788416629144, 0.6022004780199195, 0.6116510087995568, 0.6207332923125293, 0.6294517890731501, 0.6378123183839737, 0.6458218358794099, 0.6534882318351662, 0.6608201496448198 ], [ 0.25526206790712996, 0.24669246163926992, 0.2396207895722338, 0.23413288782455435, 0.23027661602726512, 0.22805745617823794, 0.22743874530415908, 0.22834688084972982, 0.2306805767132656, 0.23432226389032898, 0.23914940304136087, 0.24504383955579798, 0.2518981164166609, 0.2596185101267613, 0.26812521318615284, 0.27735045550617127, 0.287235459502429, 0.2977270369410211, 0.30877444452714525, 0.3203268893206217, 0.33233186297570005, 0.34473431409645644, 0.35747655234742587, 0.3704987152930869, 0.38373961006454227, 0.39713775399781065, 0.4106324683953778, 0.4241649167616691, 0.4376790156452619, 0.4511221781053462, 0.4644458748533951, 0.47760601608238007, 0.4905631686645774, 0.5032826299934327, 0.5157343825572178, 0.5278929535262353, 0.5397372021605171, 0.551250055422185, 0.562418209321086, 0.5732318105808367, 0.5836841304037063, 0.5937712395619685, 0.6034916918110488, 0.6128462207232837, 0.6218374534708384, 0.6304696438164662, 0.6387484255675352, 0.6466805869750233, 0.6542738659781379, 0.6615367657721759 ], [ 0.26643898275479055, 0.25814695852807557, 0.25127618422250786, 0.24590109513979722, 0.2420625489480814, 0.23976475076282835, 0.23897591216334785, 0.23963280005502743, 0.24164841989044708, 0.2449213720067443, 0.24934517148066251, 0.25481606288509207, 0.2612384248967999, 0.26852750529316444, 0.27660976169015233, 0.2854214145900021, 0.29490594212242593, 0.3050112056639839, 0.3156867540158242, 0.32688166878486374, 0.3385431298176954, 0.3506157260881839, 0.36304142851798105, 0.37576007878489226, 0.3887102258581187, 0.4018301491164273, 0.41505893196400384, 0.42833748289284995, 0.4416094346381078, 0.45482188192773326, 0.4679259421972151, 0.48087714106639773, 0.49363563591722825, 0.5061662976129843, 0.5184386734303171, 0.5304268547207708, 0.5421092715830393, 0.5534684346104308, 0.5644906410872674, 0.5751656601909764, 0.5854864090365736, 0.5954486289081545, 0.6050505688247562, 0.6142926817082497, 0.6231773368540177, 0.6317085511290811, 0.6398917403064791, 0.6477334911542393, 0.6552413542974119, 0.6624236574290455 ], [ 0.27796502453261496, 0.26994426945370054, 0.2632726013443502, 0.25801499593300664, 0.25420668954069836, 0.2518510835465056, 0.2509206733801386, 0.25136104088459404, 0.2530972829035774, 0.25604173910253997, 0.26010169672699407, 0.26518591580554474, 0.2712092293907953, 0.27809496584063603, 0.2857753707084737, 0.29419049354467636, 0.3032861317219205, 0.3130114135587355, 0.32331650020753383, 0.33415073633782294, 0.3454614228903111, 0.3571932488772891, 0.36928831861375905, 0.3816866500643568, 0.39432699525711695, 0.407147836432967, 0.4200884318622301, 0.43308981405905467, 0.4460956735788233, 0.4590530892478066, 0.4719130882618305, 0.48463103641859845, 0.4971668701493161, 0.5094851888454812, 0.5215552292680679, 0.5333507445738043, 0.5448498095483983, 0.5560345716721214, 0.5668909651565033, 0.5774084024299228, 0.5875794549424013, 0.5973995327443058, 0.6068665701437045, 0.615980722892415, 0.6247440807922479, 0.6331603983333205, 0.6412348449487619, 0.6489737756628492, 0.6563845222899861, 0.6634752048783454 ], [ 0.28981057205485355, 0.28205501002251415, 0.2755804592371963, 0.2704440610821142, 0.26667657649313115, 0.26428100656248016, 0.2632336735852288, 0.263487729259598, 0.2649785652856667, 0.2676302306621881, 0.27136182342729404, 0.2760929429668191, 0.28174759360792506, 0.28825630796244345, 0.29555660344195955, 0.30359213006807656, 0.3123109890421184, 0.3216637105241942, 0.3316013058230648, 0.34207368994534953, 0.35302863854578803, 0.3644113240677517, 0.3761643845120213, 0.38822842044322964, 0.4005427896492071, 0.41304656780144544, 0.4256795592167229, 0.43838326643375186, 0.4511017544472778, 0.46378237078861206, 0.4763763038297034, 0.48883897783535235, 0.5011302945069536, 0.513214737713498, 0.5250613616758184, 0.5366436839520431, 0.547939503956524, 0.5589306660706298, 0.5696027841562257, 0.5799449418072874, 0.589949380204211, 0.5996111831148295, 0.6089279664972438, 0.6178995783398016, 0.6265278128299806, 0.634816141665102, 0.6427694642809275, 0.6503938779511783, 0.657696468071772, 0.6646851184584658 ], [ 0.3019461401938437, 0.29445000733147186, 0.28817049850622584, 0.2831582711967756, 0.27944054986395594, 0.2770202637318596, 0.2758771930823822, 0.27597104892370233, 0.27724604509553163, 0.2796362501882636, 0.28307090690603265, 0.2874789939632371, 0.2927925346079036, 0.2989484474497023, 0.305889011004663, 0.313561218545021, 0.32191541083056097, 0.33090359414372683, 0.34047780000943256, 0.350588748815991, 0.3611849698379208, 0.37221242718383113, 0.3836146194408561, 0.3953330666672165, 0.4073080715982442, 0.41947963774492647, 0.43178843870092315, 0.4441767535607939, 0.4565893071523813, 0.46897397672963603, 0.48128234645182527, 0.49347010634680744, 0.5054973034266371, 0.517328459664581, 0.528932575384513, 0.5402830380423431, 0.5513574561154418, 0.5621374364609657, 0.5726083215238773, 0.5827589005120408, 0.592581106344313, 0.6020697079705924, 0.6112220056498654, 0.6200375349985382, 0.6285177841010695, 0.6366659267025322, 0.6444865734604682, 0.6519855423970055, 0.6591696490345207, 0.666046516192035 ], [ 0.31434142309853375, 0.30709927170536583, 0.30101269367224587, 0.29612697761711704, 0.2924665713776594, 0.2900345872806391, 0.28881395153471956, 0.28877010089221533, 0.28985485546544754, 0.2920108964041727, 0.29517620477410433, 0.2992878845068478, 0.30428496668659594, 0.3101100188469257, 0.31670960315554486, 0.32403379772982355, 0.3320350939191724, 0.3406670077623945, 0.34988270923201176, 0.35963389924772265, 0.3698700741158086, 0.3805382291517667, 0.3915829810336771, 0.40294703858556224, 0.41457192507107443, 0.42639884845472087, 0.4383696240879347, 0.45042757109294795, 0.46251832426663547, 0.47459052382987793, 0.48659636342940454, 0.4984919912955544, 0.5102377700983307, 0.5217984081157284, 0.5331429784111243, 0.5442448444827114, 0.5550815109429275, 0.5656344167653264, 0.5758886869442513, 0.5858328563824887, 0.5954585776903095, 0.6047603225037588, 0.613735084008069, 0.6223820866363848, 0.6307025074264428, 0.6386992122589319, 0.6463765091588145, 0.653739919994552, 0.6607959712365459, 0.6675520039102436 ], [ 0.3269648237170502, 0.31997148890595806, 0.31407571116216393, 0.3093183257159882, 0.3057216110886328, 0.30328904987559935, 0.3020064383133218, 0.30184423920237685, 0.3027608658665119, 0.30470643656273905, 0.3076264865644193, 0.31146517693665055, 0.3161676732743112, 0.32168154439477953, 0.32795720679989226, 0.33494758119822754, 0.3426072132109004, 0.35089113781137277, 0.3597537444596942, 0.36914784285458513, 0.3790240555479388, 0.38933058941132287, 0.4000133749122882, 0.41101651690494123, 0.4222829748233395, 0.4337553817710649, 0.44537691689314846, 0.45709215879570075, 0.4688478652290719, 0.48059364233160046, 0.49228248315365425, 0.5038711687104295, 0.5153205350273284, 0.5265956166696868, 0.5376656815211635, 0.5485041736507185, 0.5590885815515001, 0.5694002483521539, 0.579424139207904, 0.58914857929703, 0.598564973912627, 0.6076675202112904, 0.6164529183635558, 0.6249200882055891, 0.6330698960467647, 0.6409048950504871, 0.6484290815689696, 0.6556476689612184, 0.662566879737045, 0.6691937563267233 ], [ 0.33978335206807897, 0.33303390234665625, 0.3273267733207648, 0.32269909444612127, 0.31917145389627555, 0.3167478317266643, 0.31541664145947484, 0.31515277443333545, 0.3159203843920539, 0.31767603948539824, 0.3203718314255389, 0.32395807257711823, 0.3283853160201293, 0.33360557217228276, 0.33957273595293525, 0.34624235370026213, 0.3535709326872609, 0.36151502338092256, 0.3700302906268661, 0.37907074615909453, 0.3885882552353148, 0.3985323680537137, 0.40885047217593545, 0.41948822164136057, 0.4303901739477465, 0.44150055652279596, 0.45276408664484297, 0.46412677910355216, 0.47553669046013985, 0.4869445644985212, 0.4983043581985728, 0.5095736400488682, 0.520713862217493, 0.5316905150003121, 0.5424731763632323, 0.5530354717354066, 0.5633549599774739, 0.5734129610939565, 0.5831943401659263, 0.5926872604547498, 0.6018829168995319, 0.610775259462936, 0.6193607140810271, 0.6276379074095526, 0.635607400167004, 0.6432714326676451, 0.6506336851138171, 0.657699054365615, 0.6644734482109819, 0.6709635976017986 ], [ 0.35276278357940316, 0.3462524678345325, 0.3407318044718609, 0.3362348245430219, 0.33278079811236133, 0.33037427868637564, 0.32900605982523995, 0.3286549431184982, 0.32929009727196684, 0.3308737056910941, 0.33336357326876787, 0.336715395998826, 0.34088447857497783, 0.34582679414202266, 0.35149939248344664, 0.3578602570645375, 0.36486777381653773, 0.3724800004088071, 0.38065391687673217, 0.3893448051647788, 0.3985058572988024, 0.40808806032990147, 0.4180403596477171, 0.4283100663852073, 0.4388434518015926, 0.4495864613692009, 0.46048548160044966, 0.4714881003575022, 0.4825438133399005, 0.49360464295133155, 0.5046256488191903, 0.5155653206342057, 0.5263858530845245, 0.5370533093482183, 0.5475376840566867, 0.5578128791910758, 0.5678566074274631, 0.5776502373983511, 0.5871785945368366, 0.596429729901366, 0.605394667864473, 0.6140671419503742, 0.6224433265355841, 0.6305215706557493, 0.6383021388325021, 0.645786962665439, 0.6529794059305732, 0.659884045081517, 0.6665064663508542, 0.6728530800810315 ], [ 0.36586798390792624, 0.35959218149803435, 0.3542557555758055, 0.3498901297162269, 0.34651354035925225, 0.34413114814949164, 0.3427359008630217, 0.34231005479497906, 0.34282717024374015, 0.3442543350452819, 0.3465543512332055, 0.34968764652460627, 0.35361373644783833, 0.35829214893369665, 0.363682812726454, 0.36974598761420957, 0.3764418670010728, 0.38373000704445, 0.39156873288582844, 0.3999146473862752, 0.40872232963068444, 0.41794426799093204, 0.42753103309243984, 0.437431664634559, 0.44759422509569924, 0.45796646304031, 0.4684965275312752, 0.4791336806564544, 0.48982896481271887, 0.5005357928349634, 0.5112104405172374, 0.5218124313528846, 0.5323048117710983, 0.5426543215481654, 0.5528314684970043, 0.5628105192356269, 0.5725694191290596, 0.5820896547278981, 0.5913560715001165, 0.6003566586345118, 0.6090823113938021, 0.6175265800712358, 0.6256854131696031, 0.6335569010515795, 0.6411410250519786, 0.6484394159205147, 0.6554551244871221, 0.6621924066091333, 0.668656523762185, 0.6748535600621468 ], [ 0.379063324459416, 0.3730175015142104, 0.36786302558321154, 0.36362910759766287, 0.36033316355014827, 0.35798096108940713, 0.35656738604882054, 0.356077744853147, 0.3564894488655098, 0.3577738804360971, 0.35989822717296566, 0.36282709261443263, 0.3665237421103449, 0.37095091072173697, 0.37607117143917057, 0.3818469242388104, 0.38824011033295613, 0.3952117771750488, 0.4027216188681115, 0.41072759784806906, 0.4191857234829281, 0.4280500284845119, 0.4372727508695787, 0.44680470201622374, 0.45659578248463917, 0.46659559716849996, 0.476754119049812, 0.4870223545434805, 0.4973529710454224, 0.5077008568744628, 0.5180235937329751, 0.5282818309854943, 0.5384395588071288, 0.5484642833004726, 0.5583271110117386, 0.5680027530577932, 0.577469460559262, 0.5867089035431889, 0.5957060052032025, 0.604448742623838, 0.6129279239844893, 0.6211369510093302, 0.6290715741346327, 0.6367296466021585, 0.6441108825071937, 0.6512166227616906, 0.6580496119904206, 0.664613788563748, 0.6709140892798081, 0.6769562696323284 ], [ 0.3923131308197835, 0.3864928037120198, 0.38151791808335395, 0.3774157882424295, 0.3742031656854538, 0.37188639885399827, 0.3704621047644871, 0.36991827794423676, 0.3702357084733072, 0.37138954611994474, 0.37335083837604116, 0.3760878878825516, 0.3795673148403283, 0.38375476385475465, 0.3886152517280168, 0.39411320308803066, 0.4002122570997808, 0.4068749471233214, 0.4140623560367465, 0.42173383602019116, 0.4298468577664273, 0.43835702583097536, 0.44721826916175983, 0.45638319251700543, 0.4658035576763499, 0.4754308537302736, 0.485216912738303, 0.49511452934520556, 0.5050780488735889, 0.5150638963307413, 0.5250310272915195, 0.5349412897234963, 0.5447596928561329, 0.5544545848392144, 0.5639977451129601, 0.5733644002166111, 0.5825331733831333, 0.5914859789350944, 0.6002078724432381, 0.608686867046705, 0.6169137254419417, 0.6248817359698531, 0.6325864800768142, 0.6400255972734445, 0.6471985526185153, 0.6541064107471335, 0.6607516195598416, 0.6671378058991483, 0.6732695848609425, 0.679152383814189 ], [ 0.4055821228327143, 0.39998282862120743, 0.39518508999106133, 0.391214576426431, 0.38808748557165024, 0.38581070120222666, 0.3843823742908617, 0.3837928619096026, 0.38402591747978665, 0.3850599996817387, 0.3868695610669891, 0.3894261918860651, 0.39269952649313594, 0.3966578623850715, 0.4012684874620551, 0.40649775178128456, 0.41231095005745455, 0.4186720972666146, 0.42554368160049766, 0.43288646877537107, 0.440659412996041, 0.44881970701962454, 0.4573229808188196, 0.46612363849379107, 0.4751753083045875, 0.4844313717466538, 0.4938455342055532, 0.5033724009458488, 0.5129680267122141, 0.5225904136994995, 0.5321999398935575, 0.5417597068769787, 0.5512358025150291, 0.5605974791445774, 0.569817251861078, 0.5788709242721681, 0.5877375507942917, 0.5963993453934138, 0.6048415468075461, 0.613052249922799, 0.6210222122682716, 0.6287446436821421, 0.6362149861862475, 0.643430690066938, 0.6503909911505312, 0.6570966933178594, 0.663549959445128, 0.6697541131974118, 0.6757134534386797, 0.6814330824550521 ], [ 0.4188358191706554, 0.4134530922636742, 0.4088299641425675, 0.4049906592825401, 0.4019508967907033, 0.39971803692009505, 0.398291577699364, 0.39766394518191944, 0.3978214890911001, 0.3987455759114201, 0.40041366728556266, 0.40280028343421426, 0.4058777766542095, 0.40961687382798706, 0.41398698318060145, 0.4189562932992175, 0.42449171702706634, 0.430558746593339, 0.4371212887577788, 0.44414154126330757, 0.451579957260309, 0.4593953259549783, 0.4675449788170464, 0.47598511392085086, 0.4846712181396945, 0.49355855874903093, 0.5026027124580139, 0.5117601003142863, 0.5209885003111018, 0.5302475147749147, 0.5394989757188187, 0.5487072775022072, 0.557839631764971, 0.5668662443599992, 0.5757604177381094, 0.5844985849359265, 0.5930602830661128, 0.6014280751505559, 0.6095874294310976, 0.6175265650984282, 0.6252362728422943, 0.6327097178675867, 0.6399422321397348, 0.6469311016944453, 0.6536753539257951, 0.6601755488904573, 0.6664335778576729, 0.672452471607342, 0.6782362203371086, 0.6837896064830532 ], [ 0.4320408905711942, 0.42687024468035095, 0.4224190896015632, 0.4187103628427392, 0.4157593532166838, 0.4135738300810624, 0.4121544626723558, 0.411495481063118, 0.4115855058398637, 0.4124084587489702, 0.4139444638422088, 0.4161706583777543, 0.41906185292054055, 0.4225910069794633, 0.42672951544341053, 0.4314473274243256, 0.4367129391962616, 0.4424933145275945, 0.44875378830150875, 0.4554580038783211, 0.46256792323571966, 0.47004393414250534, 0.47784506310074826, 0.48592928873346486, 0.49425393922225247, 0.5027761500742448, 0.5114533549930251, 0.5202437824969892, 0.5291069334104286, 0.5380040185700956, 0.5468983412025121, 0.5557556137302553, 0.5645442037362052, 0.5732353081173871, 0.581803057923866, 0.590224558960837, 0.5984798749819914, 0.6065519613221535, 0.614426557236255, 0.6220920451644987, 0.6295392847564073, 0.6367614288699525, 0.6437537280075087, 0.6505133288297796, 0.657039071555939, 0.6633312902510768, 0.6693916192458714, 0.6752228082432388, 0.6808285480498748, 0.6862133083289702 ], [ 0.44516545447486616, 0.4402023689569098, 0.4359204423773195, 0.43234145000734014, 0.42948027829703606, 0.42734503379098465, 0.42593739275410736, 0.4252531502413378, 0.42528290852403916, 0.42601283361576564, 0.4274254069614855, 0.42950010733250676, 0.4322139740714081, 0.435542024185997, 0.43945751881604667, 0.4439320957218185, 0.4489358007597695, 0.45443706101166625, 0.46040264478616244, 0.4667976497677086, 0.47358555168592686, 0.48072833404206994, 0.4881867067465003, 0.4959204098001906, 0.5038885886975056, 0.5120502217491071, 0.5203645761781004, 0.5287916693447662, 0.5372927132373793, 0.545830523732877, 0.5543698803873482, 0.562877827058, 0.5713239080184704, 0.5796803380909986, 0.5879221085033929, 0.5960270326208826, 0.6039757374205373, 0.6117516076411308, 0.6193406900552191, 0.6267315653846006, 0.6339151951241961, 0.6408847500511455, 0.647635426559166, 0.6541642562403707, 0.6604699133898849, 0.6665525243707308, 0.672413482073865, 0.6780552680577117, 0.6834812843623798, 0.6886956964699026 ], [ 0.4581793098817965, 0.4534192196925055, 0.44930366550220435, 0.445853358738138, 0.44308279658042626, 0.4410003494490908, 0.4396085485552369, 0.43890453861997075, 0.4388806463658444, 0.43952500699446556, 0.44082218990666067, 0.44275377146814243, 0.44529881547679706, 0.44843423894474305, 0.4521350591176308, 0.4563745345506083, 0.46112422625682636, 0.4663540129740724, 0.4720320969646332, 0.4781250339031173, 0.48459781346361397, 0.49141400775276933, 0.49853599440500646, 0.5059252514331855, 0.5135427129145651, 0.5213491689336536, 0.5293056900995985, 0.5373740562389266, 0.5455171701161946, 0.5536994397096355, 0.5618871160981741, 0.5700485778878889, 0.5781545569091833, 0.5861783033577734, 0.5940956914553122, 0.6018852689889524, 0.6095282557484479, 0.6170084969611185, 0.6243123784064744, 0.6314287100644036, 0.6383485850065073, 0.6450652198656405, 0.6515737826894478, 0.6578712133622084, 0.6639560411150627, 0.6698282029749688, 0.6754888663542696, 0.6809402583734518, 0.6861855039505018, 0.6912284741868411 ], [ 0.4710541152504743, 0.46649240389465285, 0.4625402514797485, 0.45921738335382184, 0.45653791006011263, 0.4545103936215703, 0.45313808042263853, 0.45241927135772453, 0.45234778874898135, 0.4529134932449, 0.45410280344740467, 0.4558991763863697, 0.4582835172257576, 0.46123450004801597, 0.46472879610537393, 0.4687412194069624, 0.47324481013399705, 0.4782108829612406, 0.4836090694728242, 0.48940738177508303, 0.4955723189820619, 0.502069030684778, 0.5088615431208677, 0.5159130457301613, 0.5231862290360658, 0.5306436599041475, 0.5382481774150334, 0.5459632917628633, 0.5537535694499854, 0.5615849901686286, 0.5694252636801861, 0.5772440982926657, 0.5850134158395324, 0.5927075111134891, 0.600303156335464, 0.6077796533539938, 0.6151188378519001, 0.6223050409120429, 0.6293250139189751, 0.6361678230214574, 0.6428247193296891, 0.6492889907456878, 0.6555558008926846, 0.6616220200768879, 0.6674860526288383, 0.673147664367826, 0.6786078133379828, 0.6838684863974086, 0.6889325437140306, 0.6938035727409722 ], [ 0.48376351463690487, 0.47939550965261063, 0.47560367248573465, 0.4724068041883146, 0.46981862430103305, 0.4678478170354271, 0.4664982164855102, 0.4657691063552598, 0.4656556010923722, 0.4661490706135476, 0.46723757067290955, 0.4689062453304043, 0.47113767617762015, 0.4739121636621232, 0.4772079373851448, 0.4810013029725799, 0.4852667416303808, 0.4899769838486781, 0.4951030805359537, 0.5006144933260711, 0.5064792215432445, 0.5126639772605802, 0.5191344130769101, 0.5258554006259994, 0.5327913521866388, 0.5399065735788285, 0.5471656340271733, 0.554533737816949, 0.5619770831451147, 0.569463195249713, 0.57696122331578, 0.584442193446306, 0.5918792128457447, 0.5992476230548752, 0.6065251024384913, 0.6136917200706453, 0.620729944653239, 0.6276246131533331, 0.6343628644931527, 0.6409340439313794, 0.6473295837993092, 0.653542866064961, 0.6595690718513427, 0.6654050225835818, 0.6710490169263561, 0.6765006671321758, 0.6817607378785703, 0.6868309901469315, 0.6917140322005945, 0.69641317926277 ], [ 0.4962832184380661, 0.4921041890821509, 0.4884694648356308, 0.4853969720112162, 0.4829000304807857, 0.4809873813947869, 0.47966333121020477, 0.47892799165019373, 0.4787775886058604, 0.47920480948264804, 0.4801991585733747, 0.4817472936506352, 0.48383332352232444, 0.48643905476692867, 0.48954418499817776, 0.49312644851658316, 0.49716172699027583, 0.5016241421191547, 0.5064861487558676, 0.5117186457996735, 0.5172911188202058, 0.5231718235222372, 0.529328013640167, 0.5357262114240579, 0.5423325141775674, 0.549112926757906, 0.5560337077550201, 0.563061716235833, 0.5701647463185633, 0.5773118381799867, 0.5844735560980662, 0.5916222264980996, 0.5987321314407406, 0.6057796553568167, 0.6127433849489609, 0.6196041639538553, 0.6263451058515299, 0.6329515686188576, 0.6394110962799835, 0.6457133323508083, 0.6518499103602103, 0.6578143265117264, 0.6636017992775081, 0.6692091203376688, 0.6746345008319954, 0.6798774164092605, 0.6849384540672373, 0.6898191632925094, 0.6945219135467391, 0.6990497597140743 ], [ 0.5085910454259389, 0.5045962023243068, 0.501115274507283, 0.49816535389156325, 0.49575934978383474, 0.49390600007418006, 0.49260997999961303, 0.4918720916296281, 0.49168951214341405, 0.4920560763624234, 0.4929625692119673, 0.4943970067421117, 0.4963448895696357, 0.4987894193160789, 0.5017116758351053, 0.5050907597495993, 0.5089039101989696, 0.5131266111366097, 0.5177327007532392, 0.5226944977064484, 0.5279829551670531, 0.5335678498003811, 0.5394180083220083, 0.5455015698208947, 0.5517862781435967, 0.5582397956422687, 0.5648300276944562, 0.571525446630288, 0.5782954039484961, 0.5851104207744519, 0.5919424481746267, 0.5987650909493367, 0.6055537906583509, 0.6122859657104422, 0.6189411082345239, 0.6255008390605358, 0.63194892342921, 0.6382712510120317, 0.6444557844724079, 0.6504924811690356, 0.656373192734954, 0.6620915472061037, 0.6676428181659856, 0.6730237850590962, 0.6782325884406999, 0.6832685835038824, 0.6881321947804679, 0.692824774468477, 0.6973484664088827, 0.7017060773278871 ], [ 0.5206669325340325, 0.5168514291237196, 0.5135208702367241, 0.5106915469217532, 0.508375946352063, 0.5065827485552262, 0.5053169052461955, 0.504579786908604, 0.5043693803673677, 0.5046805171678073, 0.5055051133589219, 0.5068324036961229, 0.5086491574535538, 0.5109398683483425, 0.5136869167712825, 0.5168707078183609, 0.5204697928588093, 0.5244609850910925, 0.52881948051453, 0.5335189950270208, 0.5385319262181648, 0.5438295452883171, 0.5493822208882805, 0.5551596730350024, 0.561131252035553, 0.5672662348475207, 0.5735341296862632, 0.5799049789955477, 0.5863496510579661, 0.5928401113888269, 0.5993496664439828, 0.60585317387934, 0.6123272154417164, 0.6187502303906453, 0.6251026090291146, 0.6313667473775397, 0.6375270652146628, 0.6435699906167462, 0.6494839147603135, 0.6552591211378067, 0.6608876935030839, 0.6663634068523852, 0.6716816055943594, 0.6768390728057316, 0.6818338941391483, 0.6866653195738438, 0.6913336258003169, 0.6958399816247549, 0.7001863183808417, 0.7043752069556037 ], [ 0.5324929183136178, 0.5288518539393933, 0.5256681301205843, 0.5229572656415811, 0.5207313144462385, 0.5189988499727333, 0.5177650188122661, 0.5170316523623211, 0.5167974221530214, 0.517058023105566, 0.5178063692964866, 0.5190327887748926, 0.5207252073075888, 0.5228693151235257, 0.5254487152057666, 0.5284450558374391, 0.5318381534300177, 0.5356061137821346, 0.5397254606636326, 0.5441712800224419, 0.5489173863763033, 0.5539365154081218, 0.5592005438264847, 0.5646807345752749, 0.5703480028189811, 0.5761731960450617, 0.5821273802576598, 0.5881821236304635, 0.5943097690942639, 0.6004836880457686, 0.6066785085293036, 0.6128703126998127, 0.619036799968507, 0.6251574138272324, 0.6312134318384574, 0.6371880195906162, 0.6430662505091644, 0.6488350942635386, 0.6544833771213135, 0.6600017179897842, 0.665382444077906, 0.6706194901390086, 0.675708285149128, 0.6806456300684032, 0.6854295700521186, 0.6900592641483783, 0.694534855161744, 0.6988573419931963, 0.703028456399509, 0.7070505457593604 ], [ 0.544053105275963, 0.5405815298176418, 0.5375410069277909, 0.5349463082804682, 0.5328090447783823, 0.5311376404879431, 0.5299373653259899, 0.5292104172904742, 0.528956042735555, 0.5291706821515875, 0.5298481292305611, 0.5309796926044593, 0.5325543522922901, 0.5345589061994448, 0.5369781055226621, 0.5397947811609348, 0.5429899658151931, 0.5465430180927222, 0.5504317554804404, 0.5546326025348078, 0.5591207592127891, 0.5638703921956554, 0.5688548496456325, 0.5740468973982792, 0.5794189724065797, 0.584943447524138, 0.590592900570241, 0.5963403801016051, 0.6021596603947355, 0.6080254787346608, 0.613913749092058, 0.6198017475190463, 0.6256682659746066, 0.6314937326887935, 0.6372602984982121, 0.6429518897662535, 0.6485542294979225, 0.6540548290501613, 0.6594429534220226, 0.6647095634956547, 0.6698472388087134, 0.6748500844967652, 0.6797136259773904, 0.684434694783144, 0.6890113087132708, 0.6934425491863517, 0.6977284383570476, 0.7018698182254055, 0.7058682336294722, 0.7097258206808758 ], [ 0.5553336055911734, 0.5520265254959794, 0.5491254765584198, 0.5466445061811666, 0.5445947742462556, 0.5429845185206372, 0.5418190700541431, 0.5411009111363771, 0.5408297666257329, 0.541002718705929, 0.5416143354330928, 0.542656804741112, 0.5441200676756722, 0.5459919472276702, 0.5482582718775144, 0.5509029954830976, 0.5539083171346247, 0.5572548058379059, 0.5609215352686048, 0.5648862333782365, 0.5691254504508942, 0.5736147475095271, 0.5783289049968872, 0.5832421496593054, 0.5883283957636481, 0.5935614953503012, 0.5989154912743703, 0.6043648663541809, 0.6098847820120987, 0.6154513002935907, 0.6210415839922919, 0.6266340706837412, 0.6322086176705418, 0.6377466160693156, 0.6432310734444006, 0.6486466654543618, 0.6539797578851281, 0.6592184011765797, 0.6643523001022131, 0.6693727616403791, 0.6742726242956426, 0.6790461722100257, 0.6836890373690667, 0.6881980930797245, 0.692571341698265, 0.6968077993362412, 0.7009073799890567, 0.704870781228896, 0.7086993732941695, 0.712395093100413 ], [ 0.5663224738944876, 0.5631748594777042, 0.5604094733584285, 0.5580396600502284, 0.5560761226074572, 0.5545268812166768, 0.5533972745102299, 0.552689997645987, 0.5524051698573843, 0.5525404236285785, 0.5530910079339176, 0.5540498990361834, 0.5554079140026875, 0.5571538241351246, 0.5592744676394339, 0.5617548628065744, 0.5645783244932214, 0.5677265876123477, 0.5711799415861127, 0.5749173792898004, 0.5789167630219523, 0.5831550086311764, 0.587608287308357, 0.5922522429136735, 0.597062221230564, 0.6020135063633696, 0.6070815587116593, 0.6122422485990787, 0.6174720796970635, 0.6227483968148262, 0.6280495733518952, 0.633355174640066, 0.6386460944482972, 0.6439046630039184, 0.6491147259267975, 0.6542616944259284, 0.6593325679334059, 0.6643159310275885, 0.6692019270178224, 0.6739822109304302, 0.6786498848606919, 0.6831994187542477, 0.6876265596725499, 0.6919282325002785, 0.6961024348872885, 0.700148129001349, 0.7040651324165031, 0.7078540101889138, 0.7115159698888329, 0.7150527610731041 ], [ 0.5770096302974983, 0.5740164241594178, 0.5713828153443327, 0.5691214660375129, 0.567242619009957, 0.5657540509410351, 0.564661062416129, 0.5639664998685412, 0.5636708037118161, 0.5637720765123547, 0.5642661653072472, 0.5651467530217164, 0.5664054552534078, 0.5680319202790761, 0.5700139317855862, 0.5723375153147491, 0.5749870505546772, 0.5779453922778472, 0.5811940028562806, 0.5847130988883242, 0.5884818136259211, 0.5924783757219949, 0.5966803034787128, 0.6010646124284708, 0.6056080328651153, 0.6102872329774002, 0.6150790425947501, 0.619960672269785, 0.6249099224865872, 0.6299053781606478, 0.6349265842259045, 0.6399541989144868, 0.6449701222509726, 0.6499575982350316, 0.6549012901139857, 0.6597873290024473, 0.6646033368559796, 0.6693384254290707, 0.6739831733356334, 0.6785295836833063, 0.6829710249787359, 0.6873021581123059, 0.6915188522429198, 0.6956180923331131, 0.6995978809485459, 0.7034571367496331, 0.7071955918808307, 0.7108136902175103, 0.7143124881719217, 0.7176935594973987 ], [ 0.5873867761334727, 0.584542902525341, 0.5820371218284942, 0.5798814340953848, 0.578085620764392, 0.5766571940845784, 0.5756013781732144, 0.574921117987054, 0.5746171117074037, 0.5746878617542347, 0.5751297398674333, 0.5759370623732555, 0.5771021727842481, 0.5786155301126902, 0.5804658025406878, 0.5826399672166086, 0.5851234177943392, 0.5879000817987833, 0.5909525499420629, 0.5942622191406302, 0.5978094502557199, 0.6015737405986861, 0.6055339101317878, 0.6096682991816759, 0.6139549744836961, 0.618371939583312, 0.6228973450982954, 0.6275096941201957, 0.6321880381028226, 0.6369121589197303, 0.6416627333238729, 0.646421476751838, 0.6511712642201564, 0.6558962269027389, 0.6605818238045866, 0.665214888715583, 0.6697836533088395, 0.6742777478209878, 0.6786881812075078, 0.6830073030032178, 0.6872287493416571, 0.6913473757070139, 0.6953591790210079, 0.6992612116189209, 0.7030514895579848, 0.7067288975415718, 0.7102930925467751, 0.7137444080224623, 0.7170837602896326, 0.7203125585342128 ], [ 0.5974473044875116, 0.5947476794464827, 0.5923657254662082, 0.5903128006101385, 0.5885982263032018, 0.58722923405797, 0.5862109396173284, 0.58554634162629, 0.5852363413493812, 0.5852797797455823, 0.5856734884030329, 0.5864123513760724, 0.5874893757706088, 0.5888957698722417, 0.5906210285719421, 0.592653026686198, 0.5949781213823837, 0.5975812652297804, 0.6004461313683438, 0.603555251931533, 0.6068901702266901, 0.6104316063472779, 0.6141596349643514, 0.6180538731225105, 0.6220936750422857, 0.6262583302821446, 0.630527261190041, 0.6348802154008578, 0.6392974492107241, 0.6437598979590984, 0.6482493300356948, 0.6527484817535008, 0.6572411710392675, 0.6617123886387438, 0.6661483662708191, 0.6705366218558598, 0.6748659825612584, 0.6791265869331835, 0.6833098678078421, 0.6874085180155931, 0.6914164411102348, 0.6953286894810518, 0.6991413922470313, 0.7028516753027989, 0.7064575757966323, 0.7099579531845271, 0.713352398832139, 0.7166411459388761, 0.7198249813446304, 0.7229051605574704 ], [ 0.6071862071693963, 0.6046257492342515, 0.6023635803641655, 0.6004104369271835, 0.5987751839161843, 0.5974647600118772, 0.5964841465252886, 0.5958363580127691, 0.5955224519008314, 0.5955415543109743, 0.5958908994332862, 0.5965658802232316, 0.5975601088175572, 0.5988654857889806, 0.6004722780810469, 0.6023692060834654, 0.6045435407401069, 0.6069812117694082, 0.6096669279960366, 0.6125843104538392, 0.6157160383648987, 0.6190440073933745, 0.6225494987950313, 0.6262133573165473, 0.6300161750189044, 0.633938477667736, 0.6379609099924466, 0.6420644159854465, 0.6462304104925114, 0.6504409386167813, 0.6546788198906397, 0.6589277747216237, 0.6631725312472463, 0.6673989113964408, 0.6715938956139216, 0.6757456663257282, 0.6798436307849787, 0.6838784244192554, 0.687841896195316, 0.6917270778194117, 0.6955281388040874, 0.6992403295604235, 0.7028599147264871, 0.7063840989281185, 0.7098109470976467, 0.7131393013603256, 0.7163686963473579, 0.7194992746177417, 0.7225317036772333, 0.7254670958788928 ], [ 0.6165999794706222, 0.6141736207869807, 0.6120271675856203, 0.6101707550967139, 0.6086127975703021, 0.6073599325584338, 0.6064169860988182, 0.6057869571467255, 0.6054710192527555, 0.6054685373771627, 0.6057770978604962, 0.6063925499017974, 0.6073090573714797, 0.6085191603318217, 0.610013846172181, 0.6117826307106056, 0.613813649904182, 0.6160937629043899, 0.6186086670742641, 0.6213430252617114, 0.6242806051326173, 0.6274044297617263, 0.630696938022908, 0.6341401526800866, 0.6377158535172742, 0.6414057524107756, 0.6451916669730169, 0.6490556893024484, 0.6529803464575626, 0.6569487495205738, 0.6609447285017075, 0.6649529508252319, 0.6689590216968896, 0.6729495652429599, 0.6769122859008432, 0.6808360101014628, 0.6847107087929839, 0.688527501797553, 0.6922786453584955, 0.695957504520507, 0.6995585121903755, 0.7030771168546314, 0.7065097209897991, 0.7098536121987546, 0.7131068890521237, 0.7162683835158685, 0.7193375817142741, 0.72231454461989, 0.7251998300863685, 0.7279944174534116 ], [ 0.6256865237960682, 0.6233892214221644, 0.6213543991482214, 0.6195916119353809, 0.6181088309012054, 0.6169123875626775, 0.6160069364632945, 0.6153954349789762, 0.6150791388290769, 0.6150576117395381, 0.6153287478073867, 0.6158888053702036, 0.6167324515436602, 0.6178528169955663, 0.6192415609121171, 0.6208889464211458, 0.6227839269191351, 0.6249142437719394, 0.6272665357125841, 0.6298264599533594, 0.6325788245930826, 0.63550773137754, 0.6385967273140633, 0.6418289631040326, 0.645187355889688, 0.6486547534546632, 0.6522140967990178, 0.6558485779432849, 0.6595417899021981, 0.6632778659953784, 0.6670416060078809, 0.6708185871504891, 0.6745952582673013, 0.6783590162656606, 0.6820982642723611, 0.6858024515255787, 0.6894620954746019, 0.6930687869646652, 0.6966151797230112, 0.7000949656301636, 0.7035028374569952, 0.7068344408761967, 0.7100863176214139, 0.7132558416753062, 0.7163411503267589, 0.7193410718554718, 0.7222550514871126, 0.7250830771217815, 0.7278256061797356, 0.7304834947375842 ], [ 0.6344450530634369, 0.6322718002949068, 0.6303445214236925, 0.6286722123194111, 0.6272624102924387, 0.6261211389122202, 0.6252528690721371, 0.6246604954558039, 0.6243453273519558, 0.6243070927046013, 0.6245439543631659, 0.6250525376889305, 0.6258279689407998, 0.6268639241581216, 0.6281526885310539, 0.6296852264534141, 0.6314512625520926, 0.6334393739578194, 0.6356370939176073, 0.6380310265595511, 0.6406069722307486, 0.6433500623750683, 0.646244902442109, 0.6492757208659635, 0.6524265217629602, 0.6556812387043844, 0.6590238867462398, 0.6624387098546671, 0.6659103209529553, 0.6694238320241263, 0.6729649720140821, 0.6765201906711119, 0.680076746902162, 0.6836227806985027, 0.6871473681585469, 0.6906405595921491, 0.6940934011112058, 0.6974979404826978, 0.7008472183338448, 0.70413524605015, 0.7073569718947591, 0.7105082370035358, 0.7135857229785622, 0.7165868928189183, 0.7195099268980721, 0.7223536556289287, 0.7251174903575995, 0.7278013539020667, 0.7304056120085569, 0.7329310068425411 ], [ 0.6428759946090442, 0.6408218321528941, 0.6389980187028577, 0.6374130124841741, 0.6360739278244831, 0.6349864810480175, 0.6341549507927569, 0.6335821521926888, 0.6332694242052657, 0.6332166293160082, 0.6334221649090094, 0.6338829857326886, 0.6345946370831475, 0.635551298535459, 0.6367458382371656, 0.6381698779025385, 0.6398138686829247, 0.641667178021224, 0.6437181874235548, 0.6459544008081928, 0.648362562742142, 0.6509287854793812, 0.653638683306969, 0.6564775123218721, 0.6594303134356627, 0.6624820561630537, 0.6656177806122893, 0.668822735069931, 0.672082506659648, 0.6753831427458841, 0.6787112610338801, 0.6820541466679033, 0.6853998350276972, 0.688737179346686, 0.692055902702987, 0.6953466343470499, 0.698600930712159, 0.7018112817942501, 0.7049711038773742, 0.7080747198160698, 0.711117328264319, 0.7140949633637474, 0.717004446474255, 0.7198433315529021, 0.7226098457670098, 0.7253028268711146, 0.7279216587907597, 0.730466206745271, 0.7329367531124277, 0.7353339350958089 ], [ 0.650980895217279, 0.649040922060375, 0.6473165175750755, 0.6458156239946795, 0.6445449447700343, 0.6435098919394737, 0.6427145463580203, 0.642161630455129, 0.6418524930624164, 0.6417871058124202, 0.641964070647968, 0.6423806380810354, 0.6430327359747092, 0.6439150087621872, 0.6450208671322889, 0.646342548274347, 0.6478711867659571, 0.6495968960931101, 0.6515088606125589, 0.6535954375099974, 0.6558442679931251, 0.6582423966111239, 0.6607763972404531, 0.6634325039508029, 0.6661967446915429, 0.669055075540159, 0.6719935131451236, 0.6749982629840109, 0.678055841143295, 0.6811531875021543, 0.684277768456237, 0.6874176676320989, 0.6905616634002887, 0.6936992923755034, 0.6968208984774434, 0.6999176674994964, 0.7029816474803423, 0.7060057554852673, 0.7089837716717825, 0.7119103217335644, 0.7147808489858084, 0.7175915774743373, 0.7203394675624332, 0.7230221654770189, 0.7256379482840701, 0.7281856657171584, 0.7306646802082069, 0.7330748063713325, 0.7354162510743437, 0.7376895551030379 ], [ 0.658762327794795, 0.6569317116299521, 0.6553026926798574, 0.6538827189627274, 0.6526780962264439, 0.6516939371058404, 0.6509341217912876, 0.6504012700555145, 0.6500967243833051, 0.6500205439130385, 0.6501715089218995, 0.6505471356527904, 0.651143701369836, 0.6519562796172729, 0.6529787857197592, 0.6542040325799652, 0.6556237967863305, 0.6572288949322119, 0.659009269867671, 0.6609540863655307, 0.6630518353999666, 0.6652904459299022, 0.6676574027749851, 0.670139868893287, 0.6727248101393193, 0.6753991204165274, 0.6781497450525509, 0.6809638002243328, 0.6838286863433567, 0.6867321934729778, 0.6896625970792891, 0.6926087427002113, 0.6955601184385201, 0.6985069145267649, 0.7014400695595031, 0.7043513033264986, 0.7072331364972875, 0.7100788976930329, 0.7128827187288734, 0.7156395190145304, 0.7183449802607521, 0.7209955127541238, 0.7235882145345637, 0.7261208248412925, 0.7285916731880686, 0.7309996253914408, 0.7333440278114024, 0.7356246509769956, 0.7378416336648872, 0.7399954283812626 ] ] }, { "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.2766467332839966, 0.03852364132214521, 2.184345267097412e-16, 9.760252620570405e-17, 0.005223835268753936, 1.0774675959281709e-16, 3.4938528263188223e-19, 4.521955231347305e-16, 0.0, 0.02217512796722329, 0.0669941051410776, 0.9940979480743408, 0.07038036117476693, 0.1403312437439268, 0.07304461618168541, 0.04003096907670499, 0.13394118136074012, 0.1668182900975896, 0.18681063663899083, 0.17268517552519105, 0.20325496472879168, 0.16709503531455994, 0.5930187106132507, 0.903041660785675, 0.4993301033973694, 0.1345365041060559, 0.14215095534950242, 0.12044766261569127, 0.086718678746971 ], "xaxis": "x", "y": [ 0.43186479806900024, 0.0, 2.5773981531761035e-16, 3.15655550396786e-17, 0.0, 4.0298711749700964e-17, 0.007133882920973962, 0.00964721253484519, 0.055029741815382636, 0.026325377928777437, 0.08659413480946007, 0.6611761450767517, 0.11030987748980928, 0.14945350581523995, 0.21602969950592946, 0.2730351084743125, 0.17993282250512807, 0.17581473139170797, 0.19929384374745185, 0.17345666951559688, 0.1691135071450467, 0.09410719573497772, 0.07430656254291534, 0.26782259345054626, 0.16428275406360626, 0.21935827524158255, 0.11494981445211024, 0.05184078455989443, 1.1268661123934133e-12 ], "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.2766467332839966, 0.03852364132214521, 2.184345267097412e-16, 9.760252620570405e-17, 0.005223835268753936, 1.0774675959281709e-16, 3.4938528263188223e-19, 4.521955231347305e-16, 0.0, 0.02217512796722329, 0.0669941051410776, 0.9940979480743408, 0.07038036117476693, 0.1403312437439268, 0.07304461618168541, 0.04003096907670499, 0.13394118136074012, 0.1668182900975896, 0.18681063663899083, 0.17268517552519105, 0.20325496472879168, 0.16709503531455994, 0.5930187106132507, 0.903041660785675, 0.4993301033973694, 0.1345365041060559, 0.14215095534950242, 0.12044766261569127, 0.086718678746971 ], "xaxis": "x2", "y": [ 0.43186479806900024, 0.0, 2.5773981531761035e-16, 3.15655550396786e-17, 0.0, 4.0298711749700964e-17, 0.007133882920973962, 0.00964721253484519, 0.055029741815382636, 0.026325377928777437, 0.08659413480946007, 0.6611761450767517, 0.11030987748980928, 0.14945350581523995, 0.21602969950592946, 0.2730351084743125, 0.17993282250512807, 0.17581473139170797, 0.19929384374745185, 0.17345666951559688, 0.1691135071450467, 0.09410719573497772, 0.07430656254291534, 0.26782259345054626, 0.16428275406360626, 0.21935827524158255, 0.11494981445211024, 0.05184078455989443, 1.1268661123934133e-12 ], "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": [ [ 0.9792300452306475, 0.9792325614878293, 0.9796253839914842, 0.9804267321817202, 0.9816570702129545, 0.9833382515759579, 0.985492590863242, 0.9881420266096012, 0.9913074281333687, 0.9950080016510399, 0.9992607182278349, 1.004079715830609, 1.0094756822464965, 1.0154552681326765, 1.022020593900955, 1.0291689036907323, 1.0368923960966856, 1.0451782359446822, 1.0540087312595277, 1.0633616471594096, 1.0732106232499985, 1.0835256612967061, 1.0942736534180852, 1.105418926019081, 1.1169237799737184, 1.1287490124773867, 1.1408544102004488, 1.1531992068061103, 1.1657425005951823, 1.1784436301148697, 1.191262507135884, 1.204159907570722, 1.2170977217647532, 1.2300391662097145, 1.2429489591562628, 1.2557934628761367, 1.268540795472783, 1.2811609151846384, 1.2936256800866948, 1.305908885991593, 1.3179862851982775, 1.3298355885484954, 1.3414364530451999, 1.352770457071674, 1.3638210650384266, 1.3745735830812837, 1.3850151072462313, 1.3951344654254223, 1.4049221541571442, 1.4143702712698323 ], [ 0.9795590972672873, 0.9795355359348444, 0.9799054686354759, 0.9806872784830506, 0.9819015311433656, 0.9835701690905536, 0.9857156353439197, 0.9883600756570788, 0.9915246611011533, 0.9952289826412504, 0.9994904441499386, 1.0043236153383488, 1.0097395625570138, 1.0157452166955425, 1.0223428484988888, 1.0295297071250726, 1.0372978506803772, 1.0456341698280087, 1.054520584500368, 1.0639343814834217, 1.0738486562489191, 1.0842328235999898, 1.0950531660848022, 1.1062733948380368, 1.117855203302892, 1.1297587994973781, 1.1419434068502927, 1.154367727110711, 1.1669903615223247, 1.1797701884850267, 1.1926666974374422, 1.2056402798075714, 1.2186524786858701, 1.2316661994496991, 1.2446458839585555, 1.2575576511836613, 1.2703694072594491, 1.2830509279695361, 1.29557391662505, 1.3079120401745423, 1.3200409462200582, 1.3319382634169759, 1.3435835875204574, 1.354958455121102, 1.3660463068948523, 1.3768324419862696, 1.3873039649536139, 1.397449726532345, 1.407260259321687, 1.4167277093662256 ], [ 0.980177936934835, 0.9801310877719768, 0.9804815545957289, 0.981247806919301, 0.9824503765229726, 0.984111125356367, 0.9862524450229283, 0.9888965146889375, 0.992064646616277, 0.9957766701081607, 1.000050288443299, 1.0049003824140863, 1.0103382904528733, 1.0163711339805204, 1.0230012639087909, 1.0302258858572433, 1.038036891421711, 1.0464208932713468, 1.0553594401173025, 1.064829375624866, 1.074803301770008, 1.0852501093025222, 1.0961355432373303, 1.1074227776606784, 1.1190729803619657, 1.1310458532570524, 1.143300139035363, 1.155794087961061, 1.168485881416661, 1.181334010756253, 1.1942976114902215, 1.2073367538810549, 1.220412691790005, 1.2334880721485926, 1.2465271077872566, 1.2594957165717335, 1.272361629900997, 1.2850944736291374, 1.2976658244049344, 1.3100492442938183, 1.3222202963727239, 1.334156543784231, 1.3458375345161375, 1.3572447739474034, 1.36836168698102, 1.3791735713762445, 1.3896675437006643, 1.3998324791503727, 1.4096589463347788, 1.419139137990721 ], [ 0.9810970947263775, 0.9810299890764211, 0.9813645612026103, 0.9821193129759019, 0.9833146365372519, 0.9849721718679088, 0.9871140987442588, 0.9897624630868588, 0.9929385529983505, 0.9966622762242846, 1.000951484244555, 1.0058212302302132, 1.0112830029547006, 1.0173440139412657, 1.0240066185291703, 1.0312679296002916, 1.0391196497445945, 1.0475481164765104, 1.056534532898713, 1.066055344603427, 1.0760827208392896, 1.0865851010386598, 1.0975277738410587, 1.1088734626815662, 1.1205828985933708, 1.1326153665125025, 1.144929215907756, 1.1574823300531396, 1.1702325508783102, 1.1831380582572417, 1.1961577039946623, 1.209251301777094, 1.2223798750729895, 1.235505865466238, 1.248593304238096, 1.261607950209611, 1.2745173969429087, 1.287291152395338, 1.2999006940413635, 1.3123195023399101, 1.3245230752440158, 1.3364889262406159, 1.3481965681841157, 1.359627484959321, 1.3707650927872077, 1.381594692777587, 1.3921034161406936, 1.4022801632976378, 1.4121155379785297, 1.4216017772662772 ], [ 0.9823281526263503, 0.9822440866634623, 0.9825664612061887, 0.9833137819362879, 0.9845062307892174, 0.9861651197262473, 0.9883122834120466, 0.9909694821871817, 0.994157816219311, 0.9978971039219763, 1.0022051809457735, 1.0070971204891144, 1.0125844284210652, 1.0186742982488601, 1.0253690106908664, 1.0326655375260303, 1.0405553740912785, 1.049024592295443, 1.0580540834462138, 1.0676199489456815, 1.0776939948787991, 1.0882442903744034, 1.0992357563175392, 1.1106307583865567, 1.1223896852427768, 1.134471498470358, 1.1468342454339129, 1.1594355296980141, 1.1722329362268569, 1.1851844104558846, 1.1982485916767411, 1.2113851021412823, 1.2245547939726038, 1.2377199564422412, 1.2508444864822859, 1.2638940254809914, 1.2768360654842423, 1.2896400279113007, 1.3022773178069094, 1.3147213565089346, 1.3269475954261347, 1.3389335134084066, 1.3506585999657443, 1.362104326362745, 1.3732541063930155, 1.3840932484281332, 1.3946089001443356, 1.4047899871588765, 1.4146271466578766, 1.4241126569680098 ], [ 0.9838832339083946, 0.9837858016829601, 0.9840998039025731, 0.9848437442890512, 0.9860375583249513, 0.9877021607525798, 0.9898589389318014, 0.9925292357540887, 0.9957338087998177, 0.9994922195098728, 1.0038221184736125, 1.0087384395496959, 1.0142525662687505, 1.020371562217331, 1.0270975536844569, 1.0344273251562994, 1.0423521510379377, 1.050857853391523, 1.0599250526224409, 1.0695295671044296, 1.0796429162926124, 1.09023288635016, 1.10126412451929, 1.1126987362035219, 1.124496865773421, 1.136617247958382, 1.1490177212678279, 1.161655698335177, 1.17448859061057, 1.1874741866576526, 1.2005709846186627, 1.2137384803429754, 1.2269374133286939, 1.2401299730776625, 1.2532799687574079, 1.266352965231761, 1.2793163885871528, 1.29213960426129, 1.3047939707902414, 1.31725287204452, 1.3294917306378444, 1.341488004979815, 1.3532211722165326, 1.3646726990746447, 1.3758260024021904, 1.3866664009907674, 1.3971810600733583, 1.4073589297222258, 1.4171906782226165, 1.4266686213701079 ], [ 0.9857743817805207, 0.9856675089460076, 0.9859771097806473, 0.986721696509671, 0.9879209502540692, 0.9895953527247454, 0.9917657733127743, 0.9944530305842187, 0.9976774016368101, 1.0014580325841629, 1.0058122236497276, 1.0107546109709775, 1.0162963164128405, 1.0224441623841605, 1.0292000428600931, 1.0365605122007662, 1.0445166147441307, 1.0530539437418016, 1.06215289510357, 1.0717890706560902, 1.081933784569945, 1.0925546314969248, 1.103616082491674, 1.115080082738777, 1.1269066322593952, 1.1390543366569963, 1.151480919534511, 1.1641436916369554, 1.1769999742707633, 1.1900074763472506, 1.203124625677276, 1.2163108560517, 1.2295268522789184, 1.2427347557874522, 1.255898333685227, 1.2689831143281465, 1.281956492511328, 1.2947878073728665, 1.3074483960083316, 1.3199116256478092, 1.3321529070614337, 1.344149691647107, 1.3558814544290825, 1.3673296649685436, 1.3784777479671853, 1.3893110351377496, 1.3998167097272292, 1.409983744910077, 1.4198028371222216, 1.4292663352800887 ], [ 0.9880128882583074, 0.9879008558849625, 0.9882101929019178, 0.9889594383034257, 0.9901680304512914, 0.9918560090039961, 0.994043683899322, 0.9967512699784172, 0.9999984491712173, 1.0038038119066448, 1.0081841558366713, 1.0131536702424082, 1.0187230826661666, 1.0248988683190363, 1.0316826155864154, 1.0390706102669178, 1.0470536617810693, 1.0556171596792177, 1.0647413254698783, 1.0744016140566521, 1.0845692181675113, 1.0952116342150917, 1.1062932556868141, 1.1177759681825115, 1.1296197273948423, 1.1417831072062272, 1.154223809627149, 1.1668991316952653, 1.1797663869272275, 1.192783280689994, 1.205908240122016, 1.2191007001298932, 1.2323213476142332, 1.2455323265090246, 1.2586974064984717, 1.2717821184340927, 1.2847538595344268, 1.2975819714268635, 1.310237794000117, 1.32269469789192, 1.334928098252665, 1.3469154522165536, 1.3586362422894531, 1.370071947638271, 1.381206005048981, 1.3920237611165642, 1.4025124170438454, 1.4126609672605004, 1.4224601329288349, 1.431902291278293 ], [ 0.9906086306790343, 0.9904960798828362, 0.9908094701447796, 0.9915673849367127, 0.9927890415561089, 0.9944940474926037, 0.9967021366723604, 0.9994328685336582, 1.0027052426213017, 1.006537178205222, 1.0109448391340365, 1.015941835411965, 1.0215383804140945, 1.0277405057496014, 1.0345494281071348, 1.0419611316222195, 1.0499661898688386, 1.0585498165778793, 1.06769211074287, 1.077368450905314, 1.087549992390892, 1.0982042262244343, 1.1092955660283523, 1.120785937155679, 1.1326353494273866, 1.144802440675087, 1.1572449828072304, 1.1699203454888047, 1.1827859149825635, 1.1957994674673462, 1.2089194974092656, 1.2221055024558722, 1.2353182269519767, 1.248519866608186, 1.2616742371340104, 1.2747469098090036, 1.2877053170272172, 1.3005188308308822, 1.3131588173617992, 1.3255986700191005, 1.3378138239325497, 1.3497817541557877, 1.361481959766007, 1.372895935836161, 1.3840071350320151, 1.3948009203860392, 1.4052645106167185, 1.4153869191990953, 1.425158888249917, 1.4345728181682167 ], [ 0.9935694645117581, 0.9934613759880034, 0.9937833126008644, 0.9945539126348121, 0.9957921957582895, 0.9975173582913659, 0.9997485611445115, 1.0025046824684782, 1.005803981202889, 1.009663619056894, 1.0140990214601229, 1.0191231093129702, 1.0247454799466533, 1.0309716384255354, 1.03780237311898, 1.0452333395876616, 1.0532548781982078, 1.0618520562826397, 1.0710049022089092, 1.0806887875885214, 1.0908749124513062, 1.1015308528104748, 1.1126211373188541, 1.1241078274468757, 1.135951082586017, 1.1481096972256297, 1.1605416018215475, 1.1732043223265076, 1.1860553958072104, 1.199052741344989, 1.2121549866864108, 1.225321752014382, 1.2385138928483002, 1.2516937045221812, 1.2648250909784577, 1.2778737007821777, 1.2908070333292891, 1.3035945182086075, 1.3162075705959497, 1.328619625425144, 1.3408061529073887, 1.3527446577715023, 1.3644146643854276, 1.3757976897043949, 1.386877205782055, 1.3976385933845994, 1.4080690880685398, 1.4181577199227737, 1.427895248036024, 1.4372740906303307 ], [ 0.9969007110388572, 0.9968023577926195, 0.9971374862620521, 0.9979247880217403, 0.9991831039063717, 1.0009312443355036, 1.0031878138967512, 1.0059710055861735, 1.0092983073096584, 1.0131860670939328, 1.0176488969141209, 1.0226989451459076, 1.0283451129359316, 1.0345923123672374, 1.0414408583022132, 1.0488860577835701, 1.0569180239242355, 1.0655217075829775, 1.0746771168599722, 1.0843596829524482, 1.0945407289193263, 1.1051880018868283, 1.1162662360024174, 1.1277377208118995, 1.1395628564772333, 1.1517006828656915, 1.1641093739487123, 1.176746692280788, 1.1895704007875774, 1.2025386308804116, 1.2156102072030253, 1.2287449302403703, 1.2419038186748121, 1.255049313829764, 1.268145448842201, 1.2811579853830453, 1.29405452082255, 1.3068045687322134, 1.3193796155422428, 1.331753156047541, 1.343900710289989, 1.35579982415292, 1.3674300557992698, 1.3787729498753667, 1.3898120011994943, 1.4005326094630424, 1.4109220262964737, 1.4209692958963578, 1.4306651902726735, 1.4400021400578917 ], [ 1.0006047681313717, 1.0005216436819957, 1.0008747182577744, 1.0016827213540163, 1.0029643250009876, 1.0047379777745655, 1.007021752521999, 1.009833170163171, 1.0131889414265782, 1.0171045732610136, 1.0215938190051106, 1.0266679990626761, 1.0323352621318107, 1.0385998794210092, 1.0454616599948159, 1.0529155500771998, 1.0609514446885042, 1.0695542079037585, 1.0787038752086175, 1.088375999579164, 1.098542100168559, 1.1091701756552454, 1.1202252503962637, 1.1316699284010814, 1.1434649365652554, 1.1555696440380598, 1.1679425489222495, 1.1805417268111693, 1.1933252381353525, 1.2062514931013775, 1.2192795743229234, 1.2323695181951595, 1.2454825567432843, 1.2585813221515543, 1.2716300164971126, 1.284594549404988, 1.297442646430848, 1.3101439309837453, 1.3226699825390484, 1.3349943737751664, 1.3470926891121198, 1.358942526947351, 1.3705234876868837, 1.3818171494690095, 1.3928070332806994, 1.4034785589812564, 1.4138189935772387, 1.4238173929403972, 1.43346453802662, 1.442752866538647 ], [ 1.0046808615386804, 1.0046185889704813, 1.0049944122098695, 1.005827069666088, 1.007135063827366, 1.008936500313074, 1.0112489474258008, 1.0140892783672455, 1.0174734397559784, 1.0214160950559723, 1.0259301215469514, 1.0310259835877065, 1.036711045469078, 1.0429889090611972, 1.0498588590886817, 1.0573154768038902, 1.0653484515402722, 1.0739425896334152, 1.0830779981519465, 1.0927304087570644, 1.1028716034448902, 1.113469906143653, 1.1244907093952494, 1.135897011604307, 1.1476499463601944, 1.159709290541572, 1.1720339421257324, 1.1845823618962756, 1.1973129757155516, 1.2101845358652599, 1.2231564413092024, 1.2361890177166674, 1.2492437587943994, 1.2622835309757705, 1.2752727438549523, 1.2881774889635624, 1.3009656495922441, 1.3136069843792675, 1.3260731873380054, 1.3383379268905806, 1.3503768663300248, 1.3621676679606816, 1.3736899829790674, 1.3849254289642976, 1.395857556657953, 1.4064718075336768, 1.4167554634917172, 1.4266975898656924, 1.436288972798346, 1.4455220519310232 ], [ 1.0091249427154145, 1.009089171848987, 1.0094925225229945, 1.0103537012670916, 1.0116910292894994, 1.0135222805382973, 1.0158645442457257, 1.018734076004855, 1.0221460848227302, 1.026114408119145, 1.030651053547394, 1.035765626247346, 1.041464697240226, 1.0477511897031102, 1.0546238593685158, 1.0620769267587524, 1.0700998912945343, 1.0786775298724964, 1.0877900615582214, 1.0974134478094357, 1.1075197932764334, 1.1180778134262843, 1.1290533395608597, 1.1404098373386122, 1.152108920451553, 1.1641108460285006, 1.1763749824037615, 1.188860243107752, 1.2015254834071143, 1.2143298575837225, 1.2272331365279332, 1.2401959862422116, 1.2531802085945658, 1.266148946191033, 1.2790668535995522, 1.2919002373883999, 1.3046171675646399, 1.3171875630333245, 1.3295832536624943, 1.3417780214470696, 1.3537476231326688, 1.365469796498774, 1.3769242523236034, 1.3880926538693208, 1.3989585855450088, 1.4095075122323515, 1.4197267305995889, 1.4296053135860165, 1.4391340491129925, 1.448305373967889 ], [ 1.0139297277317003, 1.0139260283482716, 1.0143615836414779, 1.0152550185270626, 1.0166244512725364, 1.0184873268130519, 1.0208602759533196, 1.0237589677755001, 1.0271979079371043, 1.0311901393874978, 1.0357468254131132, 1.0408767297756132, 1.0465856418525248, 1.0528758144151495, 1.059745482821333, 1.067188519390495, 1.0751942528854601, 1.0837474584511055, 1.0928285038201195, 1.1024136254741048, 1.1124753033836319, 1.1229827031400303, 1.1339021576364008, 1.1451976652124392, 1.1568313861737571, 1.1687641241774223, 1.1809557828618187, 1.193365791237813, 1.2059534938138898, 1.218678503308016, 1.2315010152181018, 1.2443820845808327, 1.2572838660274024, 1.2701698188059933, 1.2830048788309858, 1.295755600072593, 1.3083902677430024, 1.3208789857878809, 1.3331937411723105, 1.3453084473732777, 1.357198969371936, 1.3688431322901626, 1.3802207156501296, 1.3913134350618963, 1.402104912972037, 1.4125806399411558, 1.4227279277651088, 1.432535855616917, 1.441995210263602, 1.4510984213063818 ], [ 1.0190848614205794, 1.0191186200096152, 1.0195908778916971, 1.0205201229337784, 1.0219242407984197, 1.0238203416035838, 1.0262246117534926, 1.0291521623183646, 1.0326168327198428, 1.036630911599557, 1.0412047565249858, 1.0463463240138322, 1.0520606502865282, 1.058349341209674, 1.065210132303146, 1.0726365679641254, 1.0806178290197062, 1.08913871617754, 1.0981797790649375, 1.1077175687791958, 1.1177249862772052, 1.1281716981920558, 1.139024594038235, 1.1502482627097674, 1.1618054705768923, 1.1736576276826787, 1.1857652322056915, 1.1980882863868676, 1.2105866795401519, 1.2232205356535337, 1.2359505245328892, 1.2487381365343375, 1.261545921744259, 1.2743376950602767, 1.2870787090450615, 1.2997357967034164, 1.3122774864973499, 1.3246740919859548, 1.3368977784744496, 1.3489226089961968, 1.360724571847193, 1.3722815917576106, 1.3835735266313565, 1.3945821516221222, 1.405291132151728, 1.4156859873197605, 1.4257540450074273, 1.435484389845875, 1.4448678051014316, 1.4538967094273065 ], [ 1.024577182969157, 1.0246535091504236, 1.0251667160288105, 1.0261350964494618, 1.0275762681373413, 1.0295069931876246, 1.031943020468332, 1.0348989266822564, 1.0383879212110136, 1.042421582326097, 1.0470095086929767, 1.0521588950481089, 1.057874065620824, 1.0641560149922724, 1.0710020093436172, 1.0784052922191332, 1.086354922469025, 1.0948357535275057, 1.1038285471357558, 1.113310203436601, 1.1232540834500397, 1.133630398402127, 1.1444066418429715, 1.155548043621457, 1.167018028565341, 1.1787786664873314, 1.1907911035439247, 1.2030159678686123, 1.2154137447650952, 1.227945118624574, 1.240571280194837, 1.2532541989511012, 1.2659568611652439, 1.2786434748957185, 1.2912796435684704, 1.303832510123605, 1.316270873889783, 1.3285652824414909, 1.3406881007103908, 1.3526135595791593, 1.364317786097355, 1.3757788173390681, 1.3869765997812387, 1.3978929759311898, 1.4085116597792102, 1.4188182025042935, 1.4287999497220547, 1.438445991437514, 1.4477471057520004, 1.4566956972746286 ], [ 1.0303910646592314, 1.0305147116127285, 1.031072799154756, 1.032083367369454, 1.0335637274506797, 1.0355302744971586, 1.0379983199961025, 1.040981924070217, 1.0444936988379496, 1.0485445561550992, 1.0531433862413055, 1.0582966741538555, 1.0640080817134343, 1.070278036542337, 1.0771033735829978, 1.0844770680488427, 1.0923880855170807, 1.1008213592628497, 1.1097578907942862, 1.1191749591465872, 1.129046418465254, 1.1393430612445417, 1.1500330252396507, 1.1610822244316892, 1.1724547875821905, 1.1841134912383107, 1.1960201771661332, 1.208136146917067, 1.2204225285143335, 1.2328406120982855, 1.245352152837678, 1.257919640557748, 1.2705065364107513, 1.283077477570159, 1.295598451405926, 1.3080369409290327, 1.320362043504804, 1.332544564948948, 1.3445570911568396, 1.3563740393915635, 1.3679716912848754, 1.3793282095002948, 1.3904236398812768, 1.401239900769167, 1.4117607610339427, 1.4219718082223554, 1.4318604080968802, 1.4414156567186043, 1.4506283261194124, 1.4594908045133395 ], [ 1.0365087946723013, 1.0366840959715793, 1.0372906295743611, 1.0383461275218908, 1.0398675548546394, 1.0418709168280507, 1.0443710821358614, 1.0473816062634516, 1.0509145321038635, 1.0549801464659563, 1.0595866816501132, 1.0647399677424139, 1.0704430582119793, 1.0766958633770325, 1.0834948301170957, 1.0908327017033266, 1.0986983811545967, 1.107076908575519, 1.1159495506833355, 1.1252939912479702, 1.1350846052295451, 1.1452927967874411, 1.1558873813035833, 1.1668349932198923, 1.1781005040453032, 1.1896474377561346, 1.2014383736175076, 1.213435328987039, 1.22560011683844, 1.2378946745470838, 1.2502813619385167, 1.2627232277558513, 1.275184244598203, 1.2876295130641318, 1.3000254363364563, 1.3123398668015345, 1.324542226531074, 1.3366036035913864, 1.3484968262022883, 1.3601965167618784, 1.3716791276997042, 1.382922961032464, 1.393908173384329, 1.4046167681091397, 1.4150325760216136, 1.425141226115647, 1.4349301075253797, 1.4443883238710273, 1.45350664102883, 1.4622774292737373 ], [ 1.042910977280759, 1.0431418007787627, 1.043799940807455, 1.0449027701759745, 1.0464668690251955, 1.048507827946082, 1.0510400633657255, 1.05407663294892, 1.0576290333007454, 1.0617069634419103, 1.066318045822539, 1.0714675097046589, 1.0771578553993957, 1.0833885278433897, 1.0901556316526755, 1.0974517167305384, 1.1052656553531193, 1.1135826210602644, 1.1223841692258774, 1.1316484106945177, 1.141350264183651, 1.1514617702692016, 1.161952449197164, 1.1727896858063576, 1.1839391268418173, 1.1953650783585539, 1.2070308933949705, 1.2188993424143537, 1.2309329610611015, 1.243094371516555, 1.2553465751726347, 1.2676532154954998, 1.2799788108622112, 1.2922889578547911, 1.304550506023002, 1.3167317055069088, 1.32880232916938, 1.340733771047358, 1.3524991230090497, 1.3640732315179136, 1.3754327363690282, 1.3865560931913852, 1.3974235814134146, 1.4080172992774853, 1.4183211473710478, 1.4283208020234306, 1.4380036798036189, 1.4473588942473974, 1.4563772058460214, 1.4650509662417894 ], [ 1.0495769283233896, 1.0498666463785025, 1.0505791221559182, 1.0517313232238488, 1.0533394084598864, 1.0554185287124294, 1.0579826362101836, 1.0610442936053712, 1.0646144693737978, 1.068702307261195, 1.0733148639242718, 1.0784568191403774, 1.0841301738045037, 1.0903339591133203, 1.0970639836559217, 1.1043126431066341, 1.112068810928741, 1.1203178199218196, 1.129041535638424, 1.1382185152216113, 1.1478242399006844, 1.157831406385276, 1.1682102614188696, 1.1789289642792322, 1.18995396350417, 1.2012503761147353, 1.2127823597627891, 1.2245134703210632, 1.2364069993364164, 1.2484262874203225, 1.2605350110429223, 1.2726974413383287, 1.2848786744436178, 1.2970448336101938, 1.3091632438720588, 1.3212025804572232, 1.3331329924089927, 1.3449262030647589, 1.3565555891387633, 1.3679962401889871, 1.3792250002313153, 1.3902204932097852, 1.400963133950572, 1.4114351261303169, 1.4216204486835424, 1.4315048319658734, 1.4410757248852937, 1.4503222541142355, 1.4592351764049547, 1.467806824948986 ], [ 1.0564850494322862, 1.0568365238499091, 1.0576056195464203, 1.0588088586421975, 1.060461945868542, 1.0625795684225685, 1.0651752014422473, 1.06826091262654, 1.0718471564367706, 1.075942549130057, 1.0805536208720943, 1.085684549093149, 1.0913368857475225, 1.0975092977086276, 1.1041973424177036, 1.1113932995898232, 1.119086074958246, 1.127261185149777, 1.1359008254396237, 1.144984015641464, 1.1544868145255553, 1.164382590171891, 1.1746423324105506, 1.1852349936140831, 1.196127845160264, 1.2072868384850985, 1.2186769614847208, 1.2302625828841607, 1.242007778933537, 1.2538766383465918, 1.2658335427328806, 1.2778434208908254, 1.2898719762388846, 1.3018858873850088, 1.3138529823952856, 1.3257423877420815, 1.337524653213003, 1.34917185426282, 1.3606576734100257, 1.371957462332813, 1.383048286320844, 1.3939089527020316, 1.4045200247988312, 1.4148638228852026, 1.4249244135226937, 1.4346875885570822, 1.4441408349614995, 1.4532732966210813, 1.462075729069445, 1.4705404481113562 ], [ 1.0636131700328504, 1.0640287496033025, 1.0648563006510916, 1.0661118656949433, 1.0678106666381293, 1.069966905377342, 1.072593567380022, 1.0757022239203236, 1.0793028264399112, 1.0834034872103373, 1.0880102443244082, 1.0931268151192153, 1.0987543487100055, 1.1048911935030143, 1.1115326979685445, 1.118671062100912, 1.1262952532895754, 1.1343909948166722, 1.1429408291164231, 1.151924252354391, 1.1613179125103563, 1.171095860270073, 1.1812298406108472, 1.1916896127627505, 1.2024432869127937, 1.2134576672707456, 1.2246985926570468, 1.2361312674017562, 1.2477205769200663, 1.2594313837731355, 1.2712288012907353, 1.2830784429119735, 1.2949466462949595, 1.306800671969647, 1.318608876876751, 1.3303408635703267, 1.3419676061789505, 1.3534615544408668, 1.3647967172667008, 1.3759487273555793, 1.386894888410646, 1.3976142064797576, 1.4080874068985183, 1.4182969382442028, 1.4282269646288537, 1.4378633475747504, 1.4471936186290224, 1.4562069437915666, 1.4648940807527184, 1.4732473298657638 ], [ 1.070938851003232, 1.0714203793530857, 1.0723077777506742, 1.0736165809858318, 1.075361504049662, 1.0775562449065583, 1.0802132880801256, 1.083343706479544, 1.086956957350366, 1.0910606688708109, 1.0956604168794133, 1.1007594958503235, 1.1063586932673328, 1.1124560805785646, 1.1190468358603007, 1.126123112741289, 1.133673967278346, 1.1416853500690478, 1.150140165878081, 1.1590183983023985, 1.1682972931198983, 1.1779515912603231, 1.1879538008421986, 1.198274497286555, 1.2088826409058167, 1.219745902312559, 1.2308309872629262, 1.2421039539561467, 1.253530517220086, 1.265076335337437, 1.276707276456579, 1.2883896625641926, 1.3000904898675079, 1.3117776251494946, 1.3234199782322875, 1.3349876511282983, 1.3464520647904454, 1.3577860646096718, 1.3689640059640897, 1.3799618212142728, 1.3907570695771865, 1.4013289713080548, 1.4116584275865285, 1.421728027449565, 1.4315220430461801, 1.4410264144153875, 1.4502287249123904, 1.4591181683335075, 1.467685508719648, 1.4759230337524256 ], [ 1.0784396477239744, 1.078988479264318, 1.0799366860810713, 1.0812992729116724, 1.0830904284827185, 1.0853233316709805, 1.0880099567987342, 1.0911608768535468, 1.0947850624049067, 1.0988896745725787, 1.103479852688534, 1.1085585008041892, 1.114126081012093, 1.1201804246317189, 1.1267165738252047, 1.1337266657839764, 1.1411998693888228, 1.1491223807130309, 1.1574774796170015, 1.1662456456593087, 1.175404728142981, 1.1849301626218616, 1.1947952246904812, 1.2049713112928433, 1.2154282399386553, 1.226134556904168, 1.2370578465218238, 1.248165034861731, 1.2594226823519636, 1.270797261086835, 1.2822554136765232, 1.29376419146964, 1.305291270819009, 1.3168051467616806, 1.3282753040533124, 1.339672365946326, 1.3509682214444003, 1.362136132016119, 1.3731508189230879, 1.3839885324247183, 1.3946271041765117, 1.405045984152325, 1.4152262634031174, 1.4251506839256323, 1.4348036368598185, 1.4441711501715186, 1.4532408669106895, 1.4620020150694395, 1.4704453700003581, 1.478563210295966 ], [ 1.0860933330186242, 1.0867103549775015, 1.087719918447954, 1.0891364812418218, 1.0909736911351708, 1.0932441964487722, 1.0959594545118994, 1.0991295378477473, 1.102762937296274, 1.1068663618305037, 1.1114445365916532, 1.1165000033203174, 1.1220329302274659, 1.1280409406660505, 1.1345189711005426, 1.14145916851932, 1.148850835650641, 1.156680429491164, 1.164931615262041, 1.1735853745109697, 1.1826201631126454, 1.1920121126557692, 1.2017352672461208, 1.211761847072452, 1.2220625300570345, 1.2326067433889663, 1.2433629575528033, 1.2542989764737786, 1.2653822184875818, 1.2765799839221847, 1.2878597060947494, 1.2991891834428102, 1.310536791309765, 1.3218716725838107, 1.3331639069501326, 1.3443846589664692, 1.3555063055218437, 1.3665025435004905, 1.377348478658543, 1.388020696843682, 1.3984973187582772, 1.4087580394953363, 1.4187841540745265, 1.4285585701793129, 1.4380658092554095, 1.4472919970793345, 1.4562248448498416, 1.4648536217973196, 1.473169120250108, 1.481163614042555 ], [ 1.0938780822928633, 1.0945637410902367, 1.0956348188477707, 1.0971052145968705, 1.0989880249339956, 1.1012953598583435, 1.1040381556121786, 1.1072259851489383, 1.1108668665241062, 1.114967070006763, 1.1195309260872748, 1.1245606385533673, 1.1300561089422025, 1.1360147803869358, 1.1424315096925148, 1.1492984761464735, 1.156605134117791, 1.1643382141720342, 1.1724817746270402, 1.1810173026080406, 1.1899238610920915, 1.199178276399066, 1.2087553592030338, 1.2186281514070152, 1.22876819106976, 1.2391457878775198, 1.249730302287081, 1.2604904223040767, 1.2713944328001916, 1.2824104732336092, 1.2935067805613905, 1.3046519149837914, 1.3158149669172325, 1.3269657442449407, 1.3380749394417706, 1.3491142766158906, 1.360056638863577, 1.3708761766032278, 1.3815483977523677, 1.3920502407470092, 1.4023601314876954, 1.4124580253399883, 1.4223254353290677, 1.4319454476558096, 1.4413027256331539, 1.4503835031013002, 1.4591755683342607, 1.4676682394015685, 1.4758523318994008, 1.483720119918174 ], [ 1.101772624217552, 1.102526954728823, 1.103659338925355, 1.1051831097495803, 1.1071108065406996, 1.1094539967864405, 1.1122230943052154, 1.1154271750592764, 1.1190737916793738, 1.1231687882507395, 1.1277161179890982, 1.1327176679376862, 1.1381730963918897, 1.144079689997046, 1.150432248017874, 1.1572230009475049, 1.1644415694126122, 1.1720749674145206, 1.1801076516158924, 1.1885216159629373, 1.1972965287144044, 1.2064099071382397, 1.2158373238484126, 1.2255526380096153, 1.2355282443931916, 1.2457353334370647, 1.256144155942682, 1.2667242867295316, 1.2774448823729616, 1.2882749289975044, 1.299183476933187, 1.3101398598258944, 1.3211138965017606, 1.332076074507183, 1.342997714775025, 1.3538511173064565, 1.364609688110932, 1.3752480479219178, 1.3857421234128897, 1.396069221785039, 1.406208089695868, 1.4161389575550616, 1.4258435702387366, 1.4353052052744553, 1.444508679532205, 1.4534403454276554, 1.4620880776077252, 1.4704412510479126, 1.4784907114494459, 1.4862287387823456 ], [ 1.1097563607697207, 1.1105790172996763, 1.111772161563091, 1.1133485571670563, 1.1153201839041795, 1.11769806591092, 1.120492095933743, 1.1237108573100854, 1.1273614452981309, 1.1314492898261965, 1.1359779825840852, 1.1409491125082525, 1.1463621148635144, 1.152214140000965, 1.1584999482132894, 1.165211836766824, 1.1723396041557357, 1.1798705550232178, 1.1877895472440265, 1.1960790806136288, 1.2047194246741795, 1.2136887816050008, 1.2229634789192865, 1.232518185975923, 1.2423261480114074, 1.2523594314624573, 1.2625891747036389, 1.2729858388821622, 1.2835194542146307, 1.294159857851962, 1.304876920166173, 1.3156407570290165, 1.326421926311379, 1.3371916074192345, 1.3479217631896407, 1.3585852838973698, 1.369156113472338, 1.3796093583057083, 1.3899213792355398, 1.4000698674595229, 1.4100339052312758, 1.419794012265738, 1.429332178816585, 1.4386318864017622, 1.4476781171475284, 1.4564573527032296, 1.4649575636520895, 1.4731681903113492, 1.4810801157806268, 1.4886856320622361 ], [ 1.1178094605295805, 1.118699748565323, 1.1199527959417128, 1.121580797269382, 1.1235951739017933, 1.1260064088474766, 1.128823877663978, 1.1320556772136265, 1.1357084542878184, 1.1397872365111554, 1.1442952686148442, 1.1492338580168402, 1.154602234478964, 1.1603974292113486, 1.1666141789735123, 1.1732448603649865, 1.1802794585984504, 1.187705573693929, 1.1955084653866088, 1.2036711362978076, 1.2121744512649109, 1.2209972893110719, 1.2301167236554855, 1.2395082244584017, 1.249145878657226, 1.259002621236577, 1.2690504725264988, 1.2792607765693054, 1.2896044361699597, 1.3000521408888517, 1.3105745849005586, 1.321142672292042, 1.3317277079814387, 1.342301572989051, 1.3528368832750473, 1.3633071317709982, 1.3736868135753815, 1.383951534560413, 1.3940781038547336, 1.4040446108303886, 1.4138304873410723, 1.423416556038098, 1.4327850656395746, 1.4419197140521618, 1.450805660250339, 1.4594295258095729, 1.4677793869724827, 1.4758447581030207, 1.4836165673564992, 1.4910871253645055 ], [ 1.1259129289725949, 1.1268698369963068, 1.12818164819941, 1.129859991663676, 1.131915734409448, 1.1343588232838735, 1.137198122854827, 1.1404412513601634, 1.144094416952912, 1.1481622568556602, 1.1526476825818053, 1.1575517350182738, 1.1628734537584795, 1.1686097654675875, 1.174755396117123, 1.181302811559105, 1.1882421901129256, 1.1955614296774504, 1.2032461904803857, 1.2112799730855281, 1.219644229847888, 1.2283185067595013, 1.237280611649979, 1.246506804037621, 1.2559720015709734, 1.2656499979303086, 1.275513687227071, 1.2855352902914656, 1.295686578717677, 1.3059390930918107, 1.3162643524150277, 1.3266340523194984, 1.3370202502325212, 1.3473955361558159, 1.3577331881835935, 1.3680073122785743, 1.378192966158525, 1.3882662674206452, 1.39820448624952, 1.4079861232242252, 1.4175909728656346, 1.4270001736543194, 1.4361962453080794, 1.445163114142473, 1.4538861273529176, 1.4623520570586894, 1.4705490949396038, 1.4784668382808732, 1.4860962682210297, 1.4934297209751526 ], [ 1.1340486592009082, 1.1350708900196083, 1.1364400714617422, 1.1381672732481956, 1.1402628147812108, 1.14273611412476, 1.1455955331252146, 1.148848220812741, 1.1524999574525663, 1.1565550019563033, 1.1610159458048281, 1.1658835771118157, 1.1711567588741274, 1.1768323256951656, 1.1829050032314206, 1.1893673542396774, 1.1962097543883046, 1.2034203999898176, 1.2109853486093103, 1.2188885922206847, 1.2271121613406042, 1.235636257470693, 1.2444394102958503, 1.2534986554608496, 1.2627897283871918, 1.2722872694808545, 1.2819650361847437, 1.2917961176025912, 1.3017531478183826, 1.31180851451079, 1.32193455997893, 1.3321037722190805, 1.3422889642004063, 1.3524634399610773, 1.3626011465743333, 1.3726768114107628, 1.3826660644449817, 1.39254554562436, 1.402292997535609, 1.411887343778031, 1.4213087535837217, 1.4305386933221707, 1.43955996559385, 1.4483567366611516, 1.456914552989252, 1.4652203476801513, 1.4732624375819332, 1.4810305118474838, 1.488515612703252, 1.4957101091716627 ], [ 1.1421994662003951, 1.1432854673932416, 1.1447103985992186, 1.1464847786510193, 1.148618388286121, 1.1511201262468265, 1.153997861734207, 1.1572582853870295, 1.1609067612047936, 1.1649471821447994, 1.1693818324826446, 1.1742112603842985, 1.17943416442355, 1.1850472979065922, 1.1910453947647979, 1.1974211204047152, 1.2041650502580203, 1.2112656778937054, 1.2187094535135499, 1.2264808525418431, 1.234562472938215, 1.2429351588922763, 1.251578147764488, 1.2604692365566363, 1.2695849638398864, 1.2789008029289086, 1.2883913621422334, 1.2980305881969327, 1.3077919691113902, 1.3176487333953308, 1.3275740427572624, 1.3375411760261446, 1.3475237024442734, 1.3574956429236769, 1.3674316182579085, 1.377306983636874, 1.3870979491216153, 1.3967816859975324, 1.4063364191412175, 1.415741505709676, 1.4249775005972494, 1.434026209208185, 1.442870728168066, 1.4514954746485804, 1.4598862050132932, 1.468030023510123, 1.4759153817435562, 1.483532069658496, 1.490871198760487, 1.4979251782862537 ], [ 1.1503491073351193, 1.1514971005333556, 1.152975960643543, 1.154795666026651, 1.1569654696010803, 1.1594937620178054, 1.162387931455625, 1.1656542221943995, 1.169297594377534, 1.1733215876568974, 1.17772819170822, 1.182517726874083, 1.1876887383805523, 1.1932379076209483, 1.1991599838558997, 1.2054477393121121, 1.2120919500748197, 1.219081404391655, 1.2264029390974813, 1.2340415039033457, 1.2419802523459107, 1.2502006573361517, 1.2586826485320377, 1.2674047682234317, 1.2763443420724374, 1.2854776608951888, 1.2947801696826122, 1.3042266602117805, 1.3137914638645976, 1.3234486416133862, 1.3331721685251963, 1.3429361105501867, 1.352714791773964, 1.3624829507122977, 1.3722158845966264, 1.3818895809337735, 1.3914808359174722, 1.4009673595224286, 1.4103278673240434, 1.4195421592604744, 1.4285911856927935, 1.4374571012265767, 1.446123306839485, 1.454574480917898, 1.462796599845967, 1.470776948816349, 1.4785041235457477, 1.4859680235844708, 1.4931598379080862, 1.5000720234737908 ], [ 1.158482291429107, 1.1596903002337189, 1.1612210933867202, 1.1630841208113682, 1.1652881200276393, 1.1678409862996355, 1.1707496397015822, 1.174019891215048, 1.1776563102195783, 1.1816620959931454, 1.1860389560822557, 1.1907869946029133, 1.1959046136516416, 1.2013884309969374, 1.2072332170488052, 1.2134318537478879, 1.2199753174797667, 1.2268526874292691, 1.2340511799924336, 1.2415562090174888, 1.249351470814594, 1.2574190521140838, 1.2657395585110234, 1.2742922604403253, 1.2830552533962263, 1.292005628941826, 1.3011196530353561, 1.3103729483103599, 1.319740677159626, 1.329197722761882, 1.3387188655290785, 1.3482789528170065, 1.357853060113834, 1.3674166422838772, 1.3769456737852213, 1.3864167770930957, 1.3958073388392147, 1.4050956134209092, 1.41426081403999, 1.4232831913038788, 1.4321440996612944, 1.440826052056021, 1.4493127632683191, 1.4575891824781215, 1.4656415156307738, 1.473457238218673, 1.4810250991125289, 1.4883351160883271, 1.4953785637005823, 1.502147954152398 ], [ 1.1665846784511702, 1.1678505548630813, 1.1694311343154933, 1.1713353516530867, 1.17357144270525, 1.1761468212567445, 1.179067953252141, 1.1823402302785844, 1.185967844611053, 1.189953668332928, 1.194299139246158, 1.199004156435481, 1.2040669884180117, 1.2094841967617163, 1.215250577867283, 1.2213591252666902, 1.2278010143008915, 1.234565610423144, 1.2416405016701149, 1.2490115550983543, 1.2566629962499112, 1.2645775100359162, 1.2727363608491544, 1.2811195292641395, 1.2897058623689226, 1.2984732345996077, 1.30739871590691, 1.3164587441582523, 1.3256292988483311, 1.3348860734326902, 1.3442046438902466, 1.353560631441626, 1.3629298576820945, 1.372288490716289, 1.3816131811957468, 1.390881187451188, 1.4000704891742028, 1.4091598893347772, 1.4181291042211899, 1.4269588416579575, 1.4356308675973009, 1.444128061392865, 1.4524344601543164, 1.460535292650884, 1.4684170032840056, 1.4760672666876704, 1.483474993541507, 1.490630328199284, 1.4975246387457832, 1.5041505000996627 ], [ 1.1746428715189816, 1.1759643208101842, 1.177592411703509, 1.1795355783889752, 1.1818015697420352, 1.1843973329329645, 1.1873288945898726, 1.1906012414761624, 1.194218202869698, 1.198182337035111, 1.2024948243485118, 1.2071553697449104, 1.21216211718885, 1.2175115787949498, 1.223198581029416, 1.2292162300986886, 1.2355558981827708, 1.2422072316188737, 1.2491581815157584, 1.2563950566212545, 1.2639025976153218, 1.271664071399999, 1.2796613834369857, 1.2878752057691685, 1.2962851180654291, 1.3048697588540148, 1.313606984050741, 1.3224740299339257, 1.3314476778501898, 1.3405044181361017, 1.349620610990272, 1.358772642311077, 1.3679370728104463, 1.3770907790105555, 1.3862110850171256, 1.3952758842322868, 1.4042637504163156, 1.4131540377274343, 1.4219269695613295, 1.43056371617705, 1.4390464612343274, 1.4473584574817808, 1.4554840719278117, 1.4634088208993785, 1.4711193954506798, 1.478603677627072, 1.485850748121279, 1.4928508858818839, 1.4995955602488922, 1.5060774162010147 ], [ 1.182644402676073, 1.184019006670853, 1.1856922273964217, 1.1876720136464634, 1.1899656428781442, 1.1925796112491431, 1.195519521523536, 1.1987899707143745, 1.202394439540939, 1.206335185960681, 1.2106131451760607, 1.215227838597628, 1.2201772942488072, 1.225457981008225, 1.231064758888768, 1.2369908472463038, 1.243227812401363, 1.2497655756603174, 1.2565924421663643, 1.2636951504262026, 1.2710589417808376, 1.2786676485519741, 1.2865037991259358, 1.2945487378576037, 1.3027827573978668, 1.3111852408756197, 1.3197348112941187, 1.3284094855239819, 1.3371868303763963, 1.3460441184056524, 1.354958481302843, 1.3639070589871134, 1.3728671427621943, 1.3818163111727761, 1.3907325574559304, 1.3995944077316533, 1.4083810293057768, 1.4170723286665337, 1.4256490389401788, 1.4340927967304975, 1.4423862084036407, 1.4505129059937332, 1.4584575929987744, 1.466206080412647, 1.4737453133996348, 1.4810633890654823, 1.488149565815234, 1.4949942648155956, 1.501589064099048, 1.507926685860602 ], [ 1.1905777136683036, 1.1920029524339615, 1.1937188345779877, 1.1957328393876967, 1.198051789033827, 1.2006817448045977, 1.2036279015134208, 1.2068944818489538, 1.2104846326299794, 1.2144003250889746, 1.2186422614255503, 1.2232097899290784, 1.2281008309564752, 1.2333118159514482, 1.2388376414994695, 1.244671640125838, 1.2508055691699047, 1.257229618621305, 1.2639324383071673, 1.2709011842984892, 1.2781215838893902, 1.2855780180218017, 1.2932536196043836, 1.301130385826759, 1.309189302309273, 1.317410476759309, 1.3257732797259514, 1.334256490048382, 1.3428384426689264, 1.351497176617137, 1.360210581151394, 1.368956538256753, 1.3777130599286136, 1.386458418910464, 1.395171271790919, 1.4038307735929874, 1.4124166832021847, 1.4209094591753568, 1.4292903456468844, 1.4375414482032154, 1.4456457997295167, 1.4535874163454896, 1.4613513436422383, 1.4689236935100862, 1.4762916719112373, 1.4834435980018368, 1.490368915048522, 1.4970581936158485, 1.5035031275244277, 1.509696523097388 ], [ 1.1984321327518377, 1.1999054047208313, 1.2016614115955955, 1.2037071795009011, 1.2060490918710711, 1.2086927916373535, 1.211643081878553, 1.2149038266022263, 1.2184778535006537, 1.2223668606686071, 1.2265713293680929, 1.2310904449661584, 1.2359220281457013, 1.2410624783862163, 1.246506731525462, 1.2522482329468587, 1.2582789275952169, 1.264589267620565, 1.2711682380045746, 1.2780034000589733, 1.2850809522254474, 1.2923858071744063, 1.2999016838172324, 1.3076112125276176, 1.31549605162434, 1.3235370130039084, 1.331714194726201, 1.3400071183455602, 1.3483948688339054, 1.3568562350517144, 1.3653698488745742, 1.3739143212666494, 1.3824683737951264, 1.3910109642930755, 1.3995214055919487, 1.4079794764538653, 1.416365524031008, 1.4246605573623472, 1.4328463315837505, 1.4409054226748896, 1.448821292695643, 1.4565783455760348, 1.4641619736183882, 1.4715585949498207, 1.4787556822290249, 1.4857417829651756, 1.4925065318502897, 1.4990406555412967, 1.5053359703551048, 1.5113853733609668 ], [ 1.2061978483993208, 1.2077164889613472, 1.209510032745945, 1.2115850693583008, 1.2139475603094159, 1.2166027469050322, 1.2195550568693403, 1.222808011269315, 1.2263641334660988, 1.230224861945679, 1.2343904689630598, 1.2388599869621246, 1.243631144699037, 1.2487003148928828, 1.254062475051341, 1.259711182871641, 1.2656385673057866, 1.2718353360152699, 1.2782907995406896, 1.284992912095583, 1.2919283284812801, 1.2990824762312487, 1.3064396417464346, 1.3139830688910745, 1.321695068291766, 1.3295571354244484, 1.3375500754857288, 1.3456541330226477, 1.3538491243313215, 1.3621145707221063, 1.3704298308762113, 1.3787742306764583, 1.3871271890729269, 1.3954683387336677, 1.4037776404237547, 1.4120354902458763, 1.420222819058003, 1.4283211835539187, 1.4363128486486036, 1.4441808609514035, 1.4519091132343023, 1.45948239991175, 1.4668864636420578, 1.4741080332405399, 1.481134853161774, 1.487955704864135, 1.4945604204166067, 1.5009398887448238, 1.5070860549443106, 1.5129919131122307 ], [ 1.2138658806311229, 1.2154271792451148, 1.2172556367726484, 1.21935742310705, 1.2217380947779592, 1.224402508285919, 1.227354732423613, 1.2305979610497135, 1.23413442792642, 1.2379653253420582, 1.24209072830891, 1.2465095261440442, 1.2512193632016806, 1.2562165904232423, 1.261496229205454, 1.2670519488586907, 1.2728760586441046, 1.2789595150496793, 1.2852919446060287, 1.2918616821692732, 1.2986558242279773, 1.3056602964412476, 1.3128599343001557, 1.3202385755376114, 1.327779162700075, 1.3354638541437387, 1.343274141627728, 1.351190972645667, 1.3591948756589032, 1.3672660864628527, 1.3753846740238194, 1.3835306642590333, 1.3916841603877155, 1.3998254586494732, 1.4079351583594308, 1.4159942654423041, 1.423984288755072, 1.4318873286661704, 1.4396861575056683, 1.4473642916349134, 1.4549060550032995, 1.4622966341661556, 1.4695221248298007, 1.4765695700696002, 1.483426990435021, 1.4900834062132686, 1.4965288521713371, 1.5027543851366032, 1.5087520848088731, 1.514515048223481 ], [ 1.2214280505804362, 1.2230292664645286, 1.2248899937017363, 1.227015999330151, 1.2294124518532328, 1.232083839763641, 1.2350338892847317, 1.238265482699409, 1.241780578765177, 1.2455801368118888, 1.2496640461753261, 1.2540310626303572, 1.2586787534445587, 1.263603452574938, 1.2688002273750612, 1.2742628579699589, 1.2799838301984428, 1.2859543427256308, 1.2921643286050144, 1.2986024912338288, 1.305256354312299, 1.3121123251014888, 1.3191557699885508, 1.3263711011233454, 1.3337418726937273, 1.3412508852627125, 1.3488802965009627, 1.356611736609714, 1.364426426739548, 1.372305298762402, 1.3802291148419072, 1.3881785853620106, 1.3961344839094545, 1.4040777581540849, 1.4119896356263664, 1.4198517235479857, 1.4276461020246378, 1.4353554100569608, 1.4429629239624013, 1.4504526279275778, 1.4578092765248793, 1.4650184491294413, 1.4720665962630695, 1.478941077970494, 1.4856301944018802, 1.492123208833904, 1.4984103634118253, 1.504482887936911, 1.5103330020587562, 1.5159539112608398 ], [ 1.228876948801693, 1.2305153252645766, 1.2324056705365336, 1.2345533656065615, 1.236963207821689, 1.2396393343453835, 1.242585145044226, 1.2458032260794933, 1.2492952755955242, 1.2530620329823232, 1.2571032132370685, 1.2614174479533213, 1.266002234423324, 1.2708538942446295, 1.2759675426778017, 1.2813370698097866, 1.286955134342853, 1.2928131705610975, 1.2989014087347837, 1.3052089089211536, 1.3117236078196006, 1.318432378054153, 1.3253210989959971, 1.3323747380143673, 1.339577440861328, 1.3469126297594138, 1.354363107671871, 1.3619111671921131, 1.3695387024897172, 1.377227322788586, 1.3849584659247314, 1.3927135106284743, 1.400473886293325, 1.4082211791249688, 1.415937233702121, 1.4236042491228094, 1.4312048690494608, 1.4387222651016263, 1.4461402131730403, 1.4534431623687603, 1.4606162963672702, 1.4676455871105667, 1.4745178408134736, 1.481220736360977, 1.4877428562304602, 1.4940737101349402, 1.5002037516341202, 1.5061243880040356, 1.5118279836925204, 1.517307857718805 ], [ 1.2362059027479528, 1.2378786802280872, 1.2397959962450458, 1.2419628624095296, 1.2443837216126317, 1.247062376168117, 1.2500019155735658, 1.2532046450777397, 1.2566720163449128, 1.2604045615810897, 1.264401832526153, 1.2686623457162545, 1.2731835353762806, 1.2779617152138425, 1.2829920502525367, 1.2882685396656826, 1.2937840113596182, 1.2995301288123957, 1.305497410411615, 1.3116752612625433, 1.3180520171669607, 1.324615000214872, 1.331350585194629, 1.3382442758213484, 1.3452807896134382, 1.3524441501181137, 1.3597177850990336, 1.3670846292526422, 1.3745272300127298, 1.3820278550296474, 1.3895685999686644, 1.3971314953539027, 1.4046986112861028, 1.412252158977111, 1.419774588167854, 1.4272486796239892, 1.4346576320308086, 1.441985142733835, 1.4492154818901541, 1.45633355970764, 1.4633249865522988, 1.4701761257984067, 1.4768741393812408, 1.4834070260882457, 1.4897636526916918, 1.4959337780853588, 1.5019080706389265, 1.5076781190287847, 1.5132364368419973, 1.518576461282596 ], [ 1.2434089437725422, 1.2451133716534653, 1.2470550263993005, 1.2492385667063264, 1.251668097470341, 1.254347102368078, 1.2572783762283242, 1.2604639582956934, 1.263905067582267, 1.2676020415663651, 1.2715542795304633, 1.275760191826569, 1.2802171563141236, 1.2849214831322249, 1.2898683888445404, 1.2950519808343286, 1.300465252634082, 1.306100090654561, 1.3119472925415123, 1.3179965971423422, 1.32423672582071, 1.3306554346225776, 1.3372395765825322, 1.3439751732696448, 1.3508474945151192, 1.3578411451417973, 1.3649401574300368, 1.3721280880062332, 1.3793881178260898, 1.3867031539430685, 1.3940559317979315, 1.401429116834436, 1.4088054043334284, 1.4161676164583508, 1.4234987956149638, 1.4307822933426948, 1.4380018540710624, 1.4451416931886338, 1.45218656898272, 1.4591218481121366, 1.4659335643733882, 1.4726084706104625, 1.4791340837004208, 1.4854987226213328, 1.491691539674727, 1.4977025449942807, 1.5035226245235864, 1.5091435516916283, 1.5145579930535646, 1.519759508198293 ], [ 1.2504807739509354, 1.2522141212210147, 1.2541775077643729, 1.2563752555593866, 1.258811147668699, 1.2614883650218738, 1.2644094231397354, 1.2675761098242861, 1.2709894249190854, 1.2746495233011352, 1.278555662291969, 1.2827061546692275, 1.2870983284183615, 1.2917284942861063, 1.296591922083594, 1.3016828265407905, 1.3069943633379293, 1.3125186357419967, 1.31824671206177, 1.3241686539135809, 1.3302735550685698, 1.336549590439994, 1.342984074573103, 1.3495635288265764, 1.3562737562885778, 1.3630999233555114, 1.3700266468187865, 1.3770380852552395, 1.3841180334977679, 1.3912500189733132, 1.3984173987306059, 1.4056034560375394, 1.4127914955028786, 1.4199649357647992, 1.4271073988861724, 1.4342027956992967, 1.4412354064477184, 1.448189956177825, 1.4550516844343009, 1.4618064089117258, 1.468440582806239, 1.4749413456968772, 1.4812965678650052, 1.4874948880319052, 1.4935257445594532, 1.4993794002169372, 1.5050469606684813, 1.5105203868816164, 1.515792501696985, 1.52085699083417 ], [ 1.2574167329686332, 1.259176297793421, 1.2611588430826033, 1.2633683699757938, 1.265808355517794, 1.2684816934121703, 1.2713906348512363, 1.2745367303716668, 1.2779207737563973, 1.281542749052302, 1.2854017817946881, 1.2894960955214536, 1.2938229746196845, 1.2983787344747322, 1.3031586997876727, 1.3081571917933177, 1.3133675249518855, 1.3187820135081227, 1.324391988118246, 1.3301878225446826, 1.3361589702187602, 1.3422940102783356, 1.3485807025089465, 1.3550060504578183, 1.3615563718545707, 1.3682173753645173, 1.3749742426207916, 1.381811714431084, 1.388714180032161, 1.395665768269206, 1.4026504396038435, 1.4096520779020014, 1.4166545810165314, 1.4236419492558923, 1.430598370916455, 1.4375083041477044, 1.4443565545148145, 1.45112834771877, 1.4578093970279884, 1.464385965066604, 1.470844919690718, 1.4771737837651648, 1.483360778728641, 1.4893948619042587, 1.4952657575756432, 1.5009639819058371, 1.5064808618274237, 1.511808548077843, 1.5169400225943868, 1.5218691005184881 ], [ 1.264212765278648, 1.2659958835524616, 1.2679950562548445, 1.270213979207319, 1.2726558388659315, 1.2753232568239932, 1.2782182345097703, 1.281342098958061, 1.284695450598234, 1.2882781140428907, 1.2920890928791315, 1.2961265294545665, 1.3003876706121251, 1.304868840260025, 1.3095654195680577, 1.3144718354593417, 1.3195815579224297, 1.324887106506562, 1.3303800661878329, 1.336051112612957, 1.3418900465462364, 1.3478858371699713, 1.3540266737259161, 1.360300024838735, 1.3666927047375468, 1.3731909454897995, 1.3797804742854716, 1.3864465947593771, 1.3931742713136517, 1.39994821540118, 1.4067529727502508, 1.4135730105493318, 1.4203928036646092, 1.4271969190296592, 1.4339700974222231, 1.4406973319252694, 1.4473639424552025, 1.453955645827482, 1.4604586209161843, 1.4668595685486732, 1.4731457658573084, 1.4793051148868188, 1.485326185327845, 1.4911982513135151, 1.4969113222772952, 1.5024561679259012, 1.5078243374317344, 1.5130081729946319, 1.5180008179629865, 1.5227962197401317 ], [ 1.2708653876962637, 1.2726694406382923, 1.2746827580839546, 1.2769087456656862, 1.279350314262335, 1.282009828038424, 1.2848890527814083, 1.287989105351059, 1.291310405110087, 1.294852628241935, 1.2986146658750806, 1.3025945869229176, 1.3067896065118072, 1.3111960608075786, 1.3158093889631008, 1.3206241227989155, 1.3256338846977889, 1.3308313940474914, 1.3362084824076197, 1.3417561174127628, 1.3474644352596359, 1.3533227814670825, 1.3593197594488264, 1.3654432863046293, 1.371680655119561, 1.3780186029658301, 1.3844433837288614, 1.3909408448291167, 1.3974965068842635, 1.4040956453498366, 1.410723373190458, 1.4173647236644014, 1.4240047323498675, 1.4306285175986793, 1.4372213586698899, 1.4437687708687559, 1.4502565770939642, 1.456670975275332, 1.462998601263517, 1.4692265868116576, 1.4753426123643614, 1.4813349544416492, 1.4871925274738893, 1.492904920007204, 1.4984624252581011, 1.5038560660503275, 1.5090776142163667, 1.5141196045909726, 1.518975343764347, 1.523638913798273 ] ], "zauto": true, "zmax": 1.523638913798273, "zmin": -1.523638913798273 }, { "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.013989005725466904, 0.012306430179225954, 0.010999253102371284, 0.010154922759742904, 0.009844849354876116, 0.010081970533930921, 0.010804682018366431, 0.011907475300038795, 0.013284267476753658, 0.01485109941150974, 0.016548825359355795, 0.01833797263148715, 0.02019290543171293, 0.02209734365296871, 0.02404127795471137, 0.02601889213744021, 0.028027148344792686, 0.03006480709210298, 0.032131743085289995, 0.034228471150467246, 0.03635582549017853, 0.038514750858329595, 0.04070617325149694, 0.04293092418195661, 0.045189698202122736, 0.04748302857925297, 0.04981127082686788, 0.05217458797616761, 0.05457293483064953, 0.05700604089816439, 0.059473393248978434, 0.06197422130376484, 0.06450748566807463, 0.06707187278344352, 0.06966579654542218, 0.072287407311919, 0.07493460802425289, 0.07760507658016672, 0.08029629318475395, 0.08300557117638763, 0.08573008976862415, 0.08846692723468307, 0.09121309324952531, 0.09396555935499258, 0.09672128678950716, 0.09947725119600713, 0.10223046396889965, 0.10497799020987195, 0.1077169634269348, 0.1104445972305896 ], [ 0.013739727617745529, 0.012044009178207048, 0.010706509938846325, 0.009810937122255264, 0.009430490531401808, 0.009586036353385872, 0.010224740952878815, 0.011245801080532107, 0.012544197520260718, 0.01403580442075304, 0.01566139486957606, 0.01738176469387892, 0.019171795877450347, 0.021015832543187896, 0.02290448636814835, 0.024832484072161726, 0.02679720412788258, 0.02879766915784608, 0.030833851705487164, 0.03290620476834803, 0.03501535691255637, 0.03716192680307008, 0.03934642108889281, 0.04156918658367829, 0.04383039406872926, 0.04613003710855994, 0.04846793481936484, 0.050843732284689504, 0.05325689606746836, 0.05570670494930422, 0.0581922376844254, 0.060712360324331215, 0.06326571574050803, 0.06585071755782303, 0.06846555001527022, 0.07110817447124454, 0.07377634250706248, 0.07646761494862116, 0.07917938567353666, 0.08190890881272322, 0.08465332787690139, 0.08740970540712208, 0.09017505192314057, 0.09294635318230318, 0.09572059502745979, 0.09849478536511032, 0.10126597305347727, 0.10403126368115441, 0.10678783237427354, 0.10953293388309669 ], [ 0.013681931050610783, 0.011990057514928862, 0.010640391228132417, 0.009708995657690601, 0.009265392336476204, 0.009335238110777576, 0.009876759450802098, 0.010799141536478986, 0.012002637088293905, 0.013404915714012443, 0.014947131846451554, 0.016590157101212453, 0.018309003880817104, 0.020088243640247035, 0.02191875780116259, 0.023795516046187726, 0.025716055821685374, 0.027679437212544976, 0.029685531562918234, 0.031734552639001656, 0.03382676589524321, 0.03596232587970709, 0.03814120122947346, 0.04036315455229294, 0.042627751937279634, 0.044934383930947196, 0.04728228621920929, 0.04967055363233974, 0.0520981452408864, 0.05456388120252953, 0.057066433751573865, 0.05960431547960186, 0.06217586806760417, 0.06477925413521302, 0.06741245409455401, 0.07007326902178984, 0.0727593297325161, 0.07546811156240038, 0.07819695386165212, 0.08094308292252905, 0.08370363695638255, 0.08647569178600814, 0.08925628607810206, 0.09204244516614055, 0.09483120276840734, 0.09761962015862646, 0.10040480257637356, 0.10318391285776643, 0.1059541824177375, 0.10871291982264784 ], [ 0.013786667773126727, 0.012110526003102954, 0.010762477331243666, 0.009808832835617823, 0.009311552621714183, 0.009297466177251495, 0.009735740962478886, 0.010548863996883031, 0.011646029930719818, 0.012948877770761246, 0.01439972749686969, 0.01595956716959555, 0.01760329275190095, 0.01931538501805516, 0.021086686554069665, 0.022912132697849127, 0.02478917502658153, 0.02671669494864155, 0.028694271797167825, 0.03072171271184527, 0.03279877522002126, 0.034925027071262445, 0.03709979776114053, 0.039322185130583616, 0.04159108915490947, 0.04390525329664564, 0.04626330111080301, 0.04866376178867278, 0.05110508284198749, 0.053585631190580886, 0.05610368568621959, 0.05865742482312637, 0.06124491332116992, 0.06386409068642662, 0.06651276399205845, 0.06918860617593753, 0.07188916026432854, 0.07461184919827761, 0.07735399040813146, 0.08011281396178171, 0.08288548298465509, 0.08566911507831723, 0.08846080360636709, 0.09125763792740302, 0.09405672189671192, 0.09685519020071653, 0.09965022230909505, 0.10243905401559943, 0.10521898668353676, 0.10798739441474091 ], [ 0.01402821563284044, 0.012374349095617257, 0.011036432801940185, 0.010070524935630046, 0.00952919485471292, 0.009437522201610041, 0.009773719329928187, 0.01047437359827363, 0.011459968707936374, 0.012658131069736449, 0.014013410452174909, 0.015487253625668475, 0.017054407936112962, 0.018699078188627122, 0.020411836798537815, 0.022187351870515067, 0.02402277133281131, 0.025916601183116155, 0.027867955319293498, 0.029876085113074984, 0.031940115531153085, 0.034058926886066584, 0.0362311316267134, 0.038455105750028334, 0.04072904452093149, 0.04305102164730584, 0.045419039257679865, 0.047831062592309355, 0.050285038134738315, 0.05277889708509499, 0.05531054784281761, 0.057877861821282066, 0.060478656766445135, 0.06311068108356016, 0.06577160173741789, 0.06845899728078056, 0.07117035662697328, 0.07390308340816186, 0.07665450519582039, 0.07942188651160399, 0.08220244440511495, 0.0849933653829519, 0.08779182259707925, 0.09059499239586827, 0.09340006956990564, 0.09620428085580551, 0.0990048964732377, 0.10179923964936058, 0.10458469422435768, 0.10735871053066116 ], [ 0.01438686984387933, 0.012757420444856817, 0.01143353892163409, 0.010461610980276493, 0.009884645725102843, 0.009724227489132554, 0.009965060776568212, 0.010556627795012803, 0.011431438294282411, 0.012524557819329906, 0.013783894346412454, 0.01517193389223657, 0.016663457025725564, 0.01824235510219077, 0.019898791431009824, 0.02162699068955393, 0.023423616465353618, 0.02528663076276883, 0.027214533989542843, 0.02920589814112987, 0.03125911756548944, 0.03337231181280789, 0.03554332557946446, 0.0377697820495835, 0.04004915734250288, 0.04237885433516953, 0.044756263104135066, 0.04717880225257434, 0.04964394041657557, 0.052149200469756685, 0.054692150672635054, 0.057270387590164486, 0.05988151536533959, 0.06252312519200727, 0.06519277782804814, 0.06788799092965514, 0.07060623200908307, 0.07334491701170079, 0.07610141391522769, 0.07887305038094453, 0.08165712431181908, 0.08445091615941314, 0.08725170192577991, 0.09005676598508547, 0.09286341306384718, 0.09566897893789462, 0.0984708396065585, 0.10126641887624183, 0.10405319441970651, 0.10682870247256852 ], [ 0.014850126310178754, 0.013244273197045674, 0.011935098700207947, 0.01096045369376252, 0.010354603432181052, 0.010134950225880093, 0.010290339798242447, 0.010780915556301078, 0.011550601249408047, 0.012542561909156907, 0.013708994987961243, 0.015014093094508357, 0.016433000984377538, 0.01794938543412612, 0.019552950728659035, 0.021237362123720394, 0.022998661255177334, 0.024834132389444114, 0.02674154622405341, 0.028718702948285532, 0.030763199227571397, 0.03287235080978805, 0.035043212619993484, 0.03727265028625081, 0.03955742947151283, 0.041894300815676744, 0.044280067849416, 0.046711632574450206, 0.04918601854707743, 0.051700374521004414, 0.05425196336968089, 0.05683814150666627, 0.059456333714737235, 0.06210400749188679, 0.064778649977961, 0.06747774943399691, 0.07019878224374712, 0.07293920557915212, 0.07569645525793524, 0.0784679479273489, 0.08125108651181885, 0.08404326782763766, 0.08684189135212242, 0.0896443682945565, 0.09244813031448128, 0.09525063743880122, 0.09804938492105421, 0.10084190894987495, 0.10362579124222017, 0.10639866264843846 ], [ 0.015412477238936783, 0.01382783682218999, 0.012532224272046685, 0.011556274659027727, 0.010926749276440311, 0.010656894249943084, 0.010737922760178275, 0.011138219494331351, 0.011811699658692389, 0.012709532584154517, 0.01378876410134636, 0.01501588576521705, 0.01636679145798057, 0.01782509411594127, 0.019380061656413487, 0.02102474113760931, 0.02275446045453978, 0.02456573178503716, 0.026455516117687386, 0.028420783811627364, 0.030458299433451484, 0.03256456220308859, 0.03473584252734111, 0.0369682674073897, 0.03925792052275173, 0.04160093474739176, 0.04399356474416221, 0.046432234764110084, 0.04891356193911089, 0.05143435852658866, 0.05399161815903031, 0.056582491583641426, 0.05920425702072374, 0.06185428943554014, 0.06453003195656021, 0.06722897157117608, 0.06994862021967359, 0.0726865015708419, 0.07544014313588046, 0.07820707296582718, 0.08098481996139259, 0.08377091676768009, 0.08656290428889316, 0.08935833699779054, 0.09215478839504783, 0.09494985616455193, 0.09774116675072175, 0.1005263792386715, 0.10330318854023103, 0.10606932797629146 ], [ 0.016074256960610392, 0.014507975747440756, 0.013224066327173201, 0.012247228444267491, 0.011598035634849983, 0.01128599324415791, 0.011303518573295042, 0.011625112885624359, 0.012212968278688752, 0.013025618555489105, 0.014025104808003916, 0.015180623920079987, 0.016469168980546997, 0.01787450122928923, 0.019385524891483232, 0.020994660178261033, 0.02269647514813351, 0.024486656911152344, 0.02636131457400946, 0.028316565214512115, 0.03034833800780992, 0.03245233020744217, 0.03462405608849105, 0.03685894182268241, 0.039152432301650934, 0.04150008799098424, 0.04389765984647981, 0.04634113778895713, 0.048826773335107244, 0.051351080078424476, 0.05391081724536764, 0.05650296194327666, 0.05912467534112612, 0.061773267189332556, 0.06444616203182998, 0.06714086937320185, 0.06985495906179308, 0.07258604231364214, 0.07533175816932704, 0.07808976475062686, 0.08085773444865778, 0.0836333520964578, 0.08641431521843791, 0.08919833556658423, 0.09198314131362706, 0.09476647944752144, 0.09754611807792893, 0.10031984850998993, 0.10308548705550899, 0.10584087663441849 ], [ 0.01683997497636169, 0.015289446753140798, 0.014015386152711534, 0.013037694285990938, 0.012371976782849464, 0.012024581344735344, 0.011988460649853133, 0.01224257576836223, 0.012755741300493227, 0.013492926426810752, 0.014420969991213856, 0.015511955668433799, 0.01674423213067731, 0.018101899813477946, 0.01957359913225317, 0.021151155380333412, 0.022828373273141377, 0.024600102046863016, 0.026461592909750167, 0.028408117738605215, 0.030434793690764822, 0.03253655239817941, 0.03470819747481523, 0.03694450480688633, 0.03924033259118981, 0.04159071984497545, 0.043990961848073426, 0.04643665828027096, 0.04892373479386053, 0.05144844177410454, 0.05400733552588064, 0.05659724750484316, 0.0592152468498257, 0.06185860066714334, 0.06452473549853507, 0.06721120234544342, 0.06991564664327946, 0.07263578375503572, 0.07536937992074368, 0.07811423816402442, 0.08086818840364732, 0.08362908091675816, 0.08639478231520457, 0.08916317328966716, 0.09193214751459321, 0.09469961126202824, 0.09746348342351784, 0.10022169577191264, 0.10297219340137773, 0.10571293536087956 ], [ 0.01771649467949124, 0.016179737191765662, 0.014914056708530164, 0.013935514133298429, 0.013255804348345947, 0.012878737813538287, 0.012797482451835148, 0.012994263882189569, 0.01344310213064614, 0.01411439518096808, 0.014979354969498229, 0.016012929708451043, 0.01719496407726066, 0.018510049846010842, 0.01994667141056502, 0.02149612071529493, 0.023151472049458735, 0.024906759555623027, 0.026756401862013553, 0.028694859568915394, 0.030716481389877634, 0.032815484624637556, 0.034986018031708005, 0.037222264223403474, 0.03951855013404058, 0.04186944517919931, 0.04426983600958563, 0.046714973776799874, 0.04920049463299121, 0.05172241711240581, 0.05427712150385866, 0.05686131672111235, 0.059471999860108066, 0.06210641288150947, 0.06476199989414036, 0.06743636750417323, 0.07012724975146968, 0.07283247835071635, 0.07554995832781282, 0.07827764869973014, 0.08101354757600025, 0.08375568093597129, 0.0865020943249322, 0.08925084677970802, 0.09200000640851984, 0.09474764718411983, 0.09749184664298559, 0.10023068430263878, 0.10296224070567798, 0.1056845970693721 ], [ 0.018711332240434343, 0.017187099561842185, 0.01592884699697693, 0.014949579344657942, 0.014257963580560171, 0.013855861056613848, 0.013736556300031393, 0.013884723683197606, 0.014278461245364787, 0.014892649307110829, 0.0157023391443132, 0.016685172561608563, 0.017822522715019166, 0.019099574869932898, 0.02050475918020373, 0.02202891417200352, 0.023664444392335955, 0.025404619886074075, 0.027243076267306394, 0.029173515462237724, 0.03118957436438719, 0.0332848153312586, 0.03545279216876854, 0.0376871522770309, 0.03998174560432416, 0.04233072112809156, 0.04472860022083328, 0.04717032288052144, 0.049651267398593026, 0.05216724687619169, 0.0547144874529732, 0.05728959355222678, 0.05988950519572674, 0.06251145176798367, 0.06515290572010994, 0.06781153875503051, 0.07048518213818121, 0.07317179200224645, 0.07586941989831746, 0.07857618839966837, 0.08129027127940956, 0.08400987763681682, 0.08673323930978523, 0.08945860095139038, 0.09218421223709791, 0.09490832178071196, 0.09762917245195946, 0.10034499789277093, 0.10305402011452902, 0.10575444812084357 ], [ 0.019831271266332794, 0.018318988836502726, 0.017067698565331645, 0.01608798066885227, 0.015386195369997314, 0.014962777074193944, 0.01481115366444512, 0.014917913121201047, 0.015264376230969436, 0.01582908840592299, 0.016590389422687715, 0.01752835842153318, 0.018625847458829302, 0.019868689374649685, 0.021245347778349983, 0.02274629577961722, 0.024363346878420237, 0.026089077468391494, 0.027916406019642966, 0.02983833980877647, 0.03184786702994719, 0.03393795683436756, 0.036101627209469425, 0.03833204551449254, 0.04062263479046842, 0.04296716783586779, 0.045359838888428934, 0.04779530890282512, 0.050268724760932255, 0.052775715495229754, 0.055312370060846036, 0.057875201688186946, 0.060461103681410854, 0.06306730094570315, 0.06569130072306223, 0.06833084514006899, 0.07098386732796952, 0.07364845213422211, 0.07632280184444576, 0.07900520688719287, 0.08169402119626533, 0.08438764173750544, 0.08708449164371823, 0.08978300641426311, 0.09248162269788335, 0.0951787692648704, 0.09787285986890674, 0.1005622877866228, 0.10324542189525154, 0.1059206042018189 ], [ 0.021081405639185383, 0.019581010620537128, 0.018336590966032254, 0.017356808479264785, 0.0166462972164909, 0.01620450731447704, 0.016025095277672943, 0.01609621938749283, 0.016401792525745668, 0.01692335725372324, 0.017642032141097743, 0.018540046705946462, 0.019601631743834495, 0.02081328356944217, 0.022163570065552154, 0.02364268697122575, 0.025241944331929663, 0.026953306299955578, 0.028769049018319694, 0.030681554381614132, 0.032683226429797416, 0.034766501135012395, 0.0369239159026381, 0.03914820802962387, 0.041432417946475085, 0.04376998064627751, 0.04615479567630518, 0.048581271684601766, 0.05104434558312066, 0.053539479026198836, 0.056062636359591946, 0.05861024875358853, 0.06117916915893572, 0.06376662224138811, 0.06637015274118989, 0.06898757490708396, 0.07161692487160219, 0.07425641713338223, 0.07690440573237443, 0.0795593502608709, 0.08221978654566549, 0.08488430164944384, 0.08755151275135044, 0.09022004945226728, 0.09288853908540506, 0.09555559467550309, 0.09821980526260332, 0.10087972837611968, 0.10353388450322408, 0.1061807534380909 ], [ 0.022464635231710932, 0.02097639026870572, 0.019738988304600164, 0.018759579433600782, 0.018041533781722956, 0.01758367837803942, 0.017379999016394893, 0.01742000315391493, 0.01768973585955607, 0.018173209316975983, 0.01885388052114324, 0.019715849906554183, 0.020744604387885394, 0.021927294260063922, 0.023252646693106928, 0.024710663054687648, 0.02629223931239889, 0.02798881286209769, 0.02979209552381572, 0.031693913877292944, 0.03368615053484323, 0.03576076436042816, 0.03790986205928917, 0.04012579480976982, 0.042401258575251316, 0.04472938301604115, 0.047103799982281015, 0.04951868761646532, 0.05196878985699777, 0.05444941364732163, 0.056956407603269844, 0.05948612650835722, 0.062035386023275726, 0.06460141161435991, 0.06718178509329775, 0.06977439144657409, 0.07237736791518289, 0.07498905662847352, 0.07760796154085653, 0.08023270998477318, 0.08286201883901867, 0.08549466510784769, 0.08812946059488276, 0.09076523031539871, 0.09340079429895749, 0.09603495247202437, 0.09866647236061182, 0.10129407940383206, 0.10391644971240672, 0.1065322051369465 ], [ 0.023981560991149977, 0.022505888172702958, 0.021275770750345615, 0.02029717576728232, 0.019572573621677077, 0.019100452513650813, 0.018875218544885584, 0.018887579644836876, 0.019125375576614215, 0.01957467872513752, 0.020220920210866036, 0.02104982078802313, 0.02204799878817539, 0.0232032354204601, 0.024504459518296193, 0.025941553690385057, 0.02750508639233534, 0.029186053121805035, 0.030975678779413308, 0.032865302892973194, 0.03484634602610855, 0.036910341351895117, 0.039049009289548735, 0.04125435307642154, 0.04351875670370287, 0.04583507171324516, 0.048196684518113354, 0.05059756037404184, 0.05303226356332594, 0.05549595572106263, 0.05798437565765207, 0.060493804696205127, 0.06302102164458555, 0.06556325123831395, 0.06811810937366279, 0.07068354782066398, 0.073257800454687, 0.07583933243623063, 0.07842679324220905, 0.08101897402803859, 0.08361476948291598, 0.08621314412359116, 0.0888131028401723, 0.09141366544260544, 0.09401384493950217, 0.09661262929391046, 0.09920896642858423, 0.10180175228479883, 0.1043898217657585, 0.10697194241372775 ], [ 0.02563067432215515, 0.024168033396839424, 0.022945502757070784, 0.021968133316075226, 0.021237779478251128, 0.020752806424483086, 0.02050810980933085, 0.020495489031238222, 0.020704325200826997, 0.021122433971280125, 0.021736926461917844, 0.022534930103405904, 0.023504079795122076, 0.02463275980939415, 0.025910133998772386, 0.02732603403548444, 0.028870782257448085, 0.030535013851366324, 0.03230954159483496, 0.034185283347383355, 0.03615325343593782, 0.03820460651728744, 0.04033071647056939, 0.042523271996538124, 0.04477437301308759, 0.04707661593282438, 0.0494231602340667, 0.051807772627353546, 0.054224848212776636, 0.05666941022739701, 0.05913709136250478, 0.06162410032687196, 0.06412717750597134, 0.06664354337339293, 0.06917084288508123, 0.07170708853940962, 0.07425060420249241, 0.07679997123886272, 0.07935397799308856, 0.0819115732592664, 0.08447182405966881, 0.08703387782706726, 0.08959692893624373, 0.09216018944350692, 0.09472286385226744, 0.0972841277120218, 0.09984310986402878, 0.10239887815880747, 0.10495042848107598, 0.10749667692223598 ], [ 0.027408718800997132, 0.025959534785740108, 0.02474488147024027, 0.023769110735857222, 0.023033679146583826, 0.022536986431115933, 0.022274461700363752, 0.022238906793687094, 0.022421047169141416, 0.02281019389985958, 0.0233949026365455, 0.024163530331877344, 0.025104628480780405, 0.026207157050393115, 0.027460542221563102, 0.028854625321898142, 0.030379557951820325, 0.032025692158114114, 0.03378350004718302, 0.035643540254282104, 0.03759647369517981, 0.039633120481888495, 0.04174454432074291, 0.04392214937224176, 0.046157776106399526, 0.0484437857858278, 0.05077312678194129, 0.05313937927731229, 0.0555367776580145, 0.05796021192396184, 0.060405210762629905, 0.06286790964133045, 0.06534500750442487, 0.06783371554699576, 0.07033170119422562, 0.07283702994632807, 0.07534810723106315, 0.07786362189713408, 0.08038249252140259, 0.08290381731293732, 0.08542682808628123, 0.08795084854389099, 0.09047525694493284, 0.09299945313210028, 0.09552282982591441, 0.09804474806319584, 0.10056451664115719, 0.10308137542117926, 0.10559448234004247, 0.10810290396688083 ], [ 0.029311115137955927, 0.027875748364966434, 0.026669234959817253, 0.025695403773953043, 0.024955478653791115, 0.02444800381349279, 0.02416896186359021, 0.024112077320893408, 0.02426926045929503, 0.024631120093138486, 0.02518746702175556, 0.02592774222168225, 0.02684132912117549, 0.02791773879214162, 0.029146682894264926, 0.030518066535898534, 0.03202193987669844, 0.03364844427999878, 0.035387779244371045, 0.03723020411754397, 0.03916607714845945, 0.041185925920894734, 0.04328053838067719, 0.04544106218757969, 0.04765910109032028, 0.04992679941063146, 0.052236908650918824, 0.054582833092836805, 0.056958653673841196, 0.05935913126441114, 0.06177969170633158, 0.06421639567687858, 0.06666589671632189, 0.0691253907065254, 0.07159255982040326, 0.07406551356439721, 0.07654272908105578, 0.07902299242028048, 0.0815053420628239, 0.08398901561115686, 0.08647340026081954, 0.08895798743099692, 0.09144233176021868, 0.09392601455211484, 0.09640861167510287, 0.09888966586718459, 0.10136866336194532, 0.10384501472602158, 0.10631803977541339, 0.10878695641440465 ], [ 0.031332370103209974, 0.029911116482324328, 0.028712982292187224, 0.02774141491604466, 0.026997528119367144, 0.026480082916653058, 0.026185615546732464, 0.02610869768720659, 0.02624229023109952, 0.02657813811458467, 0.027107152769602644, 0.02781973910814016, 0.028706041146085107, 0.029756099544606274, 0.030959931297199633, 0.032307553521210064, 0.03378897831741044, 0.035394204135653945, 0.03711322272746241, 0.03893605209922636, 0.040852797367186444, 0.04285373479345208, 0.04492941031612044, 0.04707074250276942, 0.04926912047302231, 0.05151648919416098, 0.05380541695462748, 0.05612914223936295, 0.058481599342676806, 0.06085742370091588, 0.06325193907301403, 0.06566112938016329, 0.06808159831344249, 0.07051051982027445, 0.07294558237581955, 0.07538492961228543, 0.07782709948258681, 0.0802709637242603, 0.08271566900073299, 0.08516058075170058, 0.08760523049412432, 0.09004926708239913, 0.09249241225712801, 0.09493442067873328, 0.09737504454538058, 0.09981400282430906, 0.10225095507259098, 0.10468547978016896, 0.10711705712924376, 0.109545056026378 ], [ 0.03346642349750205, 0.03205953245116789, 0.03087000953919187, 0.02990103317565157, 0.029153695991429404, 0.028627019295118607, 0.028318077864298997, 0.02822221748736125, 0.028333333344474906, 0.028644170980883187, 0.029146613864854853, 0.029831930214177398, 0.030690963763928072, 0.03171426557660286, 0.032892174696157565, 0.034214862862018504, 0.035672361717307956, 0.037254589928643014, 0.038951393289975954, 0.04075260477427908, 0.042648125308451384, 0.04462802108119878, 0.0466826301191125, 0.0488026697377766, 0.05097933692962413, 0.053204395242828516, 0.05547024369449111, 0.05776996531616734, 0.060097354765382395, 0.06244692590234975, 0.06481390127885017, 0.0671941861354893, 0.0695843298119834, 0.07198147751536407, 0.07438331523862793, 0.07678801034545475, 0.07919414999305742, 0.08160067920017869, 0.08400684001368547, 0.08641211290634256, 0.08881616126194852, 0.09121877957574227, 0.0936198458157402, 0.09601927824875693, 0.09841699692532035, 0.1008128899323021, 0.1032067844530676, 0.1055984226159147, 0.10798744205789576, 0.11037336107980657 ], [ 0.03570691524137083, 0.03431461508035654, 0.03313394821393987, 0.03216791208573071, 0.03141764070167291, 0.030882437673953593, 0.03055989046882167, 0.03044604822621841, 0.030535637470852778, 0.030822288190831635, 0.031298746578883714, 0.03195705809488821, 0.03278871306072378, 0.033784755008190115, 0.03493585842648174, 0.03623238675230594, 0.037664443022438814, 0.03922192455721504, 0.04089458987087955, 0.04267214165908362, 0.044544325291505885, 0.046501038650859555, 0.04853244692638298, 0.05062909518277273, 0.05278201195821611, 0.05498279840914628, 0.05722369920406467, 0.05949765312986724, 0.06179832297264684, 0.06412010553416211, 0.06645812359520206, 0.06880820224422438, 0.0711668322973027, 0.07353112360233517, 0.07589875090973827, 0.07826789476290769, 0.08063717956522477, 0.08300561065718587, 0.08537251191748191, 0.08773746510573027, 0.09010025190363259, 0.09246079939011138, 0.09481912950376173, 0.09717531289824878, 0.09952942747712017, 0.10188152179666907, 0.10423158344283441, 0.10657951241495522, 0.10892509948184523, 0.11126800941159969 ], [ 0.03804737370472806, 0.03666989733568166, 0.03549836286028359, 0.0345356542264133, 0.033782988788341746, 0.03323995884972236, 0.032904631711705455, 0.03277369184936524, 0.032842604905644904, 0.033105783993987156, 0.03355674331886068, 0.03418823042008556, 0.03499233460315149, 0.035960574228318304, 0.037083969067094595, 0.038353105799716854, 0.03975820492594981, 0.04128919601318267, 0.04293580564967354, 0.04468765928401051, 0.04653439499636315, 0.048465784755975745, 0.05047185722707394, 0.05254301576680222, 0.054670145760770825, 0.0568447065843781, 0.05905880495168825, 0.061305247949175384, 0.06357757545444706, 0.0658700727941309, 0.06817776535241458, 0.07049639740373959, 0.07282239774193745, 0.07515283476174277, 0.07748536357053593, 0.07981816751890151, 0.0821498962832715, 0.08447960234842714, 0.08680667744962556, 0.08913079026227196, 0.0914518263824721, 0.09376983142962997, 0.09608495792234344, 0.09839741642838647, 0.10070743136336702, 0.10301520170517961, 0.1053208667972746, 0.10762447732846918, 0.1099259714974487, 0.11222515629428112 ], [ 0.040481336804753194, 0.039118943542541876, 0.03795686435601566, 0.03699792013728354, 0.03624343776190547, 0.03569329352498008, 0.03534599763504093, 0.03519880519378795, 0.03524783780335135, 0.03548820224778759, 0.03591409742127883, 0.03651890611485992, 0.03729527297772494, 0.03823517318395533, 0.03932997794961801, 0.04057052327229962, 0.041947187381223466, 0.04344998065185018, 0.04506864945204543, 0.046792792918912675, 0.048611989425803366, 0.050515927837310376, 0.05249453777191953, 0.054538113025123236, 0.0566374229271886, 0.058783807507580256, 0.06096925367633771, 0.06318645100375041, 0.06542882692826889, 0.06769056225509422, 0.06996658858304475, 0.07225256981465718, 0.07454487018991926, 0.0768405113774343, 0.07913712110329416, 0.08143287564160093, 0.08372643827031173, 0.08601689554432271, 0.08830369297880292, 0.09058657148719647, 0.09286550569046888, 0.09514064501213647, 0.09741225829821511, 0.09968068255018203, 0.10194627622845272, 0.10420937746924111, 0.10647026745437867, 0.10872913907826473, 0.11098607096588195, 0.1132410068095538 ], [ 0.043002421299869205, 0.04165541277445225, 0.04050316816445925, 0.03954848175738617, 0.03879280408264256, 0.03823628306091042, 0.037877832966875476, 0.03771521858077601, 0.03774514227810485, 0.03796332490476371, 0.038364575944658266, 0.03894285322957131, 0.039691316082599154, 0.04060237777088293, 0.04166776351050513, 0.0428785793876697, 0.044225395876898284, 0.04569834753045735, 0.047287248195794926, 0.04898171906378533, 0.05077132520090907, 0.05264571515265156, 0.054594757805689814, 0.05660867093528981, 0.05867813662161964, 0.0607943998201425, 0.06294934763184264, 0.06513556807640876, 0.06734638830472758, 0.06957589312280289, 0.07181892540519674, 0.07407107045337641, 0.07632862662504969, 0.07858856465903236, 0.08084847808558845, 0.08310652698255733, 0.08536137714735614, 0.08761213653269113, 0.0898582905614161, 0.09209963770919412, 0.0943362265322252, 0.09656829512631321, 0.09879621383393379, 0.10102043186640122, 0.10324142837547028, 0.10545966838906531, 0.10767556391563693, 0.1098894404180003, 0.11210150875839855, 0.11431184262108945 ], [ 0.04560435555198615, 0.0442730852040864, 0.043131115365174215, 0.042181238812538484, 0.04142503478414491, 0.04086290533527299, 0.040494129577018444, 0.04031692505561319, 0.040328506905921525, 0.04052513886096901, 0.0409021746418223, 0.04145409241822469, 0.04217452793088387, 0.04305631306094514, 0.0440915262206924, 0.045271559354108135, 0.046587204104944054, 0.048028757297845066, 0.04958614363258662, 0.0512490516507074, 0.053007077746432894, 0.05484987232867648, 0.056767282188843006, 0.05874948361140959, 0.060787101648436155, 0.06287131210944416, 0.06499392403998559, 0.06714744164609643, 0.0693251056731394, 0.07152091511031936, 0.07372963074367797, 0.07594676252438579, 0.07816854297641396, 0.0803918889692087, 0.08261435416111194, 0.08483407431181471, 0.08704970749754475, 0.089260371066205, 0.09146557696113232, 0.0936651668355297, 0.09585924818420613, 0.09804813253943717, 0.10023227661511061, 0.10241222713670833, 0.10458856996155912, 0.10676188397117627, 0.10893270010237567, 0.11110146577388554, 0.11326851485881685, 0.11543404325023109 ], [ 0.04828098882054385, 0.04696586539335814, 0.04583467107263668, 0.04489021311303667, 0.044134197763002876, 0.043567260465344475, 0.04318900658958947, 0.042998053680729766, 0.04299206814601019, 0.04316779282674021, 0.04352106604672653, 0.04404683640570417, 0.044739179956721394, 0.045591327101607924, 0.046595705668957176, 0.04774400464193462, 0.04902726043523849, 0.05043596499332081, 0.05196019267650523, 0.05358974115261604, 0.05531428042505912, 0.057123503709280286, 0.059007274048415624, 0.060955761215330834, 0.06295956443465212, 0.06500981762320968, 0.0670982750536917, 0.06921737648543323, 0.071360291802596, 0.07352094601104518, 0.07569402605685108, 0.0778749713482489, 0.08005995011019872, 0.08224582380507273, 0.08443010184554056, 0.08661088873731715, 0.08878682564682151, 0.09095702821506362, 0.09312102225183362, 0.09527867875623566, 0.09743014952925287, 0.09957580447543182, 0.10171617153570539, 0.10385188005081197, 0.10598360822281509, 0.10811203521834178, 0.11023779833887695, 0.11236145556884687, 0.11448345370033747, 0.11660410212387107 ], [ 0.05102628723680703, 0.04972777315389953, 0.04860791120855254, 0.04766953191810758, 0.04691446191425766, 0.04634354739483048, 0.0459566827509416, 0.04575283688809257, 0.045730071971690975, 0.04588555276330057, 0.046215548521686946, 0.04671543269447951, 0.04737968760527295, 0.04820192172515285, 0.04917490600636165, 0.050290633558537245, 0.051540404212313505, 0.052914932766654175, 0.05440447735911907, 0.05599898267593006, 0.057688231725367495, 0.059461999609050666, 0.061310203036901864, 0.06322304009532202, 0.06519111583229453, 0.06720555041494719, 0.06925806781580437, 0.07134106409647378, 0.07344765531874868, 0.07557170589008431, 0.07770783873518634, 0.07985142908802145, 0.08199858394037972, 0.08414610929157704, 0.08629146734833619, 0.0884327257522225, 0.09056850078901137, 0.09269789638080553, 0.09482044049364702, 0.09693602042239566, 0.09904481824837741, 0.10114724760780001, 0.10324389276165245, 0.10533545082017341, 0.10742267784532356, 0.10950633943098892, 0.11158716624067858, 0.11366581486490664, 0.1157428342444416, 0.11781863779139655 ], [ 0.053834323753477846, 0.05255292947016881, 0.05144500525618519, 0.050513408073994986, 0.04976007481476113, 0.04918603891999624, 0.048791448351140077, 0.0485755787642444, 0.04853683804783228, 0.04867276163076181, 0.048980001424266645, 0.049454314137860084, 0.0500905563865872, 0.05088269420152365, 0.051823833344511024, 0.052906274579004264, 0.05412159527487459, 0.055460755942558365, 0.05691422791180812, 0.058472136648841176, 0.06012441423986632, 0.06186095432807725, 0.06367176315708604, 0.06554710118464653, 0.06747761081530738, 0.06945442700334313, 0.07146926867173856, 0.07351450998816811, 0.07558323147797148, 0.07766925171028485, 0.07976714086253195, 0.08187221786269873, 0.0839805330500561, 0.08608883840994698, 0.08819454745482455, 0.09029568676788213, 0.09239084112059102, 0.09447909394020193, 0.09655996475264132, 0.0986333450709371, 0.1006994340463013, 0.10275867505213489, 0.10481169423190907, 0.1068592419096562, 0.10890213763544647, 0.11094121951568603, 0.11297729835787519, 0.11501111704019132, 0.11704331539761346, 0.1190744007985583 ], [ 0.0566992669313383, 0.05543554236712761, 0.05434019988948725, 0.05341612181976244, 0.05266534281626766, 0.05208905991615029, 0.05168764126266219, 0.05146062852938314, 0.051406730325180894, 0.05152380687239077, 0.05180884936011209, 0.0522579599121992, 0.052866339546636824, 0.053628291583259, 0.05453724673702069, 0.055585813932114064, 0.056765858155114146, 0.05806860392165348, 0.05948476056615498, 0.06100466384140575, 0.06261842734217617, 0.06431609702059847, 0.06608780242387627, 0.06792389909317953, 0.06981509764210903, 0.07175257622620633, 0.07372807429594722, 0.07573396660501991, 0.07776331736974054, 0.07980991521932886, 0.08186829013864108, 0.08393371399748326, 0.08600218650603493, 0.08807040856009596, 0.09013574496948543, 0.09219617852286438, 0.0942502572542103, 0.096297036657983, 0.09833601846554654, 0.1003670874547023, 0.10239044762362913, 0.10440655892393386, 0.10641607561610127, 0.10841978718427282, 0.11041856262471281, 0.11241329880203581, 0.11440487344776272, 0.11639410325607283, 0.11838170741153034, 0.12036827676350562 ], [ 0.059615371519991314, 0.05836989559850613, 0.05728780628821041, 0.0563720070205553, 0.05562461624985013, 0.055046971372660826, 0.054639629551790074, 0.05440236144363721, 0.054334135999256926, 0.054433097254056005, 0.054696536794923825, 0.05512086782612373, 0.055701607992420465, 0.05643337813103955, 0.057309922949955155, 0.058324157538409784, 0.059468241021126786, 0.06073367602030585, 0.062111430277598335, 0.06359207507633863, 0.06516593411203479, 0.06682323617593104, 0.06855426533700974, 0.0703495030750202, 0.07219975786007678, 0.07409627883668499, 0.0760308514259155, 0.0779958737198079, 0.07998441345262346, 0.08199024607013726, 0.08400787497805194, 0.08603253544675381, 0.0880601839030525, 0.09008747447554585, 0.09211172470439381, 0.09413087230229507, 0.09614342478206832, 0.09814840366438624, 0.10014528486006335, 0.10213393669421318, 0.10411455691097955, 0.10608760987074488, 0.1080537650281784, 0.11001383765914093, 0.11196873268624259, 0.1139193923354184, 0.11586674823802959, 0.11781167847384444, 0.11975496992978396, 0.12169728622805044 ], [ 0.06257697239195936, 0.06135034158172193, 0.060282192457694825, 0.05937544306158965, 0.05863228089503589, 0.05805416129416877, 0.05764180159055022, 0.05739516789552378, 0.05731345337498676, 0.057395049356321275, 0.057637513066459437, 0.05803753775596345, 0.05859093203070349, 0.059292615186432016, 0.06013663424366655, 0.0611162064357253, 0.06222378847303157, 0.06345117139767921, 0.06478959761691715, 0.06622989502156527, 0.06776262208437141, 0.0693782174992526, 0.07106714817680668, 0.07282005011042689, 0.07462785760875833, 0.07648191750204866, 0.07837408604787768, 0.08029680729598278, 0.08224317256728496, 0.08420696143220517, 0.08618266513440778, 0.08816549380867743, 0.09015136910616517, 0.09213690399015197, 0.0941193715254836, 0.09609666447750796, 0.09806724748170607, 0.10003010345929031, 0.10198467584962355, 0.10393080811644705, 0.10586868186761705, 0.10779875481074892, 0.1097216996515054, 0.11163834492695461, 0.11354961865293393, 0.1154564955503556, 0.11735994849983077, 0.11926090475625911, 0.12116020733506083, 0.1230585818603026 ], [ 0.06557848242022164, 0.06437129901520361, 0.06331778086169862, 0.06242085260639855, 0.06168275582223671, 0.061105042476452785, 0.06068856355961921, 0.06043345042050561, 0.060339088218547575, 0.060404083117107425, 0.06062622700347915, 0.06100246522755491, 0.0615288737691878, 0.06220065219507205, 0.06301213775871317, 0.0639568442174687, 0.06502752669935223, 0.06621627160925189, 0.06751460845198366, 0.06891363881610842, 0.07040417674167272, 0.07197689430785147, 0.07362246645320762, 0.07533170965511896, 0.07709570999655503, 0.07890593719334195, 0.08075434222226355, 0.08263343719020912, 0.08453635695990237, 0.08645690276985908, 0.08838956864833639, 0.0903295518317048, 0.09227274867465751, 0.09421573770505007, 0.09615575155308809, 0.09809063949456855, 0.10001882231010323, 0.10193924109228203, 0.10385130154272688, 0.10575481519996448, 0.10764993893274606, 0.10953711392557842, 0.11141700527511768, 0.11329044320810569, 0.11515836682293605, 0.11702177114677396, 0.11888165818752063, 0.12073899254421025, 0.12259466202083463, 0.12444944356774554 ], [ 0.06861439425675345, 0.06742725497934118, 0.06638905103707632, 0.06550270477525978, 0.06477049706232763, 0.06419405650877283, 0.06377434358391816, 0.0635116277690387, 0.063405457581835, 0.0634546252683704, 0.06365712985149873, 0.06401014370554642, 0.06450998861418628, 0.0651521272057414, 0.06593117474776351, 0.06684093467318437, 0.06787445916753636, 0.0690241339854856, 0.070281784685013, 0.07163879990119482, 0.07308626626384236, 0.07461510912838744, 0.0762162333860534, 0.07788065913990812, 0.07959964784368355, 0.08136481546606934, 0.08316823024861969, 0.08500249358211397, 0.08686080337562614, 0.08873700000297412, 0.09062559547300318, 0.09252178688830598, 0.09442145554688516, 0.0963211532226923, 0.09821807725531058, 0.10011003610687788, 0.10199540702360141, 0.10387308738519108, 0.10574244124984847, 0.10760324251408036, 0.10945561601115697, 0.11129997777335478, 0.11313697558267571, 0.11496743083307048, 0.11679228262373602, 0.1186125348970725, 0.12042920732559892, 0.1222432905390684, 0.12405570616638237, 0.12586727204743667 ], [ 0.07167928558785308, 0.07051277094971038, 0.06949054649135412, 0.06861552293340666, 0.06789000619078638, 0.06731568299071931, 0.06689360138704527, 0.06662414480387821, 0.06650699976884428, 0.0665411192242949, 0.06672468495304006, 0.06705507393391832, 0.06752883411405075, 0.06814167501334456, 0.06888847775761767, 0.06976332769369978, 0.07075957089562109, 0.07186989389785768, 0.07308642415576301, 0.074400847248779, 0.07580453584113972, 0.07728868494183401, 0.07884444802642959, 0.08046306900920468, 0.08213600576742733, 0.08385504179825601, 0.08561238352383857, 0.08740074166573346, 0.08921339592679174, 0.09104424291275563, 0.0928878277840464, 0.09473936055218868, 0.09659471823723056, 0.09845043429965525, 0.10030367687218879, 0.10215221736243509, 0.10399439099383927, 0.10582905081425859, 0.1076555166401192, 0.10947352032822942, 0.11128314868273076, 0.11308478521504589, 0.11487905188195134, 0.1166667518315796, 0.11844881408903757, 0.12022624101178424, 0.12200005923932743, 0.12377127475183988, 0.12554083253817488, 0.12730958125627784 ], [ 0.07476782723939045, 0.07362249196399151, 0.07261688500851109, 0.07175389611052539, 0.0710358427520296, 0.07046445279669546, 0.0700408422059468, 0.06976548687595241, 0.06963818900177451, 0.0696580398895853, 0.06982338256601239, 0.07013177863254084, 0.07057998438207956, 0.07116394111787697, 0.07187878388354473, 0.07271887152777592, 0.07367783937504893, 0.07474867398735437, 0.07592380781593222, 0.07719523014976398, 0.07855460979640201, 0.07999342443127287, 0.08150309150482078, 0.08307509593178991, 0.08470111040265028, 0.08637310494489052, 0.08808344322060493, 0.08982496389486862, 0.09159104618776007, 0.09337565939565617, 0.09517339671803847, 0.09697949415305773, 0.0987898355371787, 0.10060094501601106, 0.1024099683621651, 0.10421464461904331, 0.10601326956302005, 0.10780465245408116, 0.10958806749792814, 0.11136320137913, 0.11313009815102604, 0.11488910268766638, 0.11664080381793507, 0.11838597817323643, 0.12012553568741635, 0.12186046759075345, 0.12359179763826078, 0.1253205372060565, 0.12704764477842365, 0.1287739902331755 ], [ 0.07787479342513695, 0.07675115812270678, 0.07576277144190584, 0.07491249303877802, 0.0742026394258097, 0.0736349642081795, 0.0732106337061813, 0.07293019734129737, 0.07279355337416939, 0.07279991190390206, 0.07294775827019657, 0.07323482093935994, 0.07365804843420064, 0.07421359978686232, 0.07489685234290115, 0.07570242960592691, 0.0766242503406756, 0.07765559854681203, 0.07878921237965661, 0.0800173888009213, 0.08133209981162004, 0.08272511560547427, 0.08418812987705536, 0.08571288277006506, 0.08729127747253358, 0.08891548716193606, 0.0905780497826478, 0.09227194892388675, 0.09399067980091697, 0.09572829998853269, 0.09747946509459658, 0.09923944998792623, 0.10100415651451009, 0.10277010886059196, 0.10453443786557791, 0.10629485566751933, 0.10804962209398082, 0.1097975042043092, 0.11153773035628357, 0.11326994011915441, 0.11499413129188756, 0.11671060521412542, 0.11841991148006038, 0.12012279308309658, 0.12182013293218205, 0.12351290258866493, 0.125202113975199, 0.12688877470553792, 0.12857384757626064, 0.13025821464939047 ], [ 0.08099507343201981, 0.07989361762386389, 0.07892301211004203, 0.07808607784792268, 0.07738511890199504, 0.07682190081103266, 0.07639762472849286, 0.07611289698584175, 0.07596769479736927, 0.07596132997255269, 0.07609241356049339, 0.07635882515035722, 0.07675769095153129, 0.07728537469334261, 0.07793748480621177, 0.07870890034045995, 0.07959381677464057, 0.08058581143060828, 0.08167792682268354, 0.08286276907726806, 0.08413261767695332, 0.08547954226588499, 0.08689552210306796, 0.08837256392681382, 0.08990281442664244, 0.09147866412616132, 0.09309284018000774, 0.09473848630864212, 0.09640922878154232, 0.09809922797462828, 0.09980321555032506, 0.1015165177309002, 0.10323506545994919, 0.10495539248187453, 0.10667462252759115, 0.10839044688999547, 0.1101010937185843, 0.1118052903708032, 0.11350222013852966, 0.11519147462926616, 0.11687300302917507, 0.11854705941285382, 0.12021414919522996, 0.12187497574531024, 0.12353038810025917, 0.12518133063123688, 0.12682879541964845, 0.12847377800374823, 0.13011723705142542, 0.13176005840623586 ], [ 0.0841236840864533, 0.08304484060096794, 0.08209252999707618, 0.08126952655739998, 0.08057811154550651, 0.08002005018425937, 0.0795965648400314, 0.07930830428086272, 0.07915530981578969, 0.0791369801154079, 0.07925203741943133, 0.07949849851391069, 0.0798736541915229, 0.08037406082227777, 0.0809955471492025, 0.08173323853765413, 0.08258159975518828, 0.08353449608286832, 0.08458527130889375, 0.08572684006637772, 0.08695179114925976, 0.08825249792918123, 0.08962123181109301, 0.09105027477746983, 0.0925320274235598, 0.09405910940908357, 0.09562444987310653, 0.09722136601352759, 0.09884362866888181, 0.10048551432076654, 0.10214184343764184, 0.10380800549491538, 0.10547997133167292, 0.10715429374711143, 0.1088280974099533, 0.11049905926341454, 0.11216538066877876, 0.11382575255315666, 0.11547931482112296, 0.11712561126307756, 0.11876454115124695, 0.12039630866108428, 0.12202137119414287, 0.12364038760956525, 0.12525416729590075, 0.12686362093314266, 0.12846971370668403, 0.13007342164048918, 0.13167569161655582, 0.1332774055425855 ], [ 0.08725578242403464, 0.0861999331294208, 0.08526638007160876, 0.08445784363176054, 0.08377657307359318, 0.08322432256031863, 0.082802323830088, 0.08251125557085981, 0.08235121035719013, 0.08232166086752646, 0.08242142787258043, 0.08264865305582285, 0.08300077999801038, 0.08347454657023634, 0.08406599152486768, 0.08477047729473677, 0.08558272999676562, 0.08649689650566313, 0.08750661734459268, 0.08860511315025739, 0.08978528169986391, 0.09103980199026869, 0.09236124164980399, 0.09374216402120315, 0.09517523153493833, 0.09665330243720541, 0.09816951848319803, 0.09971738179579312, 0.1012908196741555, 0.10288423667999583, 0.10449255380817227, 0.1061112349508062, 0.10773630118745785, 0.10936433368141117, 0.11099246614180763, 0.11261836793279417, 0.11424021898461371, 0.11585667769742672, 0.11746684303544336, 0.11907021199362755, 0.12066663358763192, 0.12225626047339574, 0.12383949924900806, 0.12541696042920786, 0.12698940901346137, 0.12855771649196818, 0.13012281505058726, 0.13168565464568802, 0.13324716352386348, 0.1348082126601009 ], [ 0.09038667807593642, 0.08935415087297285, 0.08843976415833246, 0.08764617800026081, 0.08697560161482298, 0.08642976879649944, 0.08600991046131251, 0.0857167244776585, 0.08555034367625958, 0.08551030366617376, 0.08559551273967962, 0.08580422662705432, 0.08613403108182285, 0.08658183518880115, 0.08714387788314783, 0.08781574948424942, 0.08859242915708729, 0.0894683382150988, 0.09043740818151343, 0.09149316163197659, 0.09262880313060252, 0.09383731709456852, 0.09511156919674507, 0.09644440792954007, 0.09782876317143277, 0.09925773897176182, 0.10072469824536497, 0.10222333759506659, 0.10374775101237324, 0.10529248171094677, 0.10685256180009416, 0.10842353989333081, 0.11000149706503824, 0.1115830518177884, 0.11316535490942609, 0.1147460750206014, 0.11632337632886541, 0.1178958891034944, 0.11946267445379627, 0.12102318435940126, 0.12257721808930568, 0.1241248760810946, 0.12566651230556616, 0.12720268608660978, 0.1287341142826469, 0.13026162466481436, 0.13178611124856174, 0.1333084922499691, 0.13482967124628414, 0.13635050202294147 ], [ 0.0935118449789822, 0.09250291194886534, 0.09160804491655662, 0.09082983807273298, 0.0901704536615833, 0.08963159714986181, 0.08921448995031572, 0.08891983997679805, 0.08874781093054183, 0.08869799184711788, 0.08876936898883661, 0.08896030256624184, 0.08926851094798788, 0.0896910649300987, 0.09022439427636537, 0.09086430814056988, 0.09160603019932677, 0.09244424844436812, 0.09337317869738614, 0.09438664010640796, 0.09547814023097254, 0.09664096687098553, 0.09786828356023727, 0.09915322562418188, 0.10048899386624499, 0.10186894325769523, 0.10328666441735436, 0.10473605613375893, 0.10621138766380606, 0.10770735000630423, 0.10921909577340257, 0.11074226765325938, 0.11227301576719116, 0.11380800447314303, 0.11534440935830349, 0.11687990530323646, 0.11841264659526458, 0.1199412401277375, 0.12146471275127434, 0.12298247384911222, 0.1244942741964721, 0.12600016213702855, 0.1275004380709274, 0.12899560820015604, 0.13048633841951598, 0.13197340917572487, 0.13345767204370051, 0.13494000868836195, 0.13642129279295245, 0.13790235544183146 ], [ 0.09662693210634578, 0.09564180869134746, 0.09476675859108977, 0.09400430540493898, 0.09335655855829, 0.09282518848741027, 0.09241139979901265, 0.09211590275724867, 0.09193888398953905, 0.09187997784081763, 0.09193824027407549, 0.09211212754616732, 0.09239948202625568, 0.09279752743647392, 0.09330287547467993, 0.09391154525129759, 0.0946189962867659, 0.09542017504216324, 0.09630957417096035, 0.09728130295941996, 0.09832916682903871, 0.09944675334952031, 0.10062752197485877, 0.10186489466681926, 0.1031523446895283, 0.10448348111404253, 0.10585212692406552, 0.1072523890242466, 0.10867871888476288, 0.11012596298067356, 0.11158940257969324, 0.11306478278306029, 0.11454833102340017, 0.11603676546864324, 0.11752729397400544, 0.11901760436938219, 0.12050584697302895, 0.12199061029068987, 0.12347089089849611, 0.1249460585235962, 0.1264158173330952, 0.12788016442328634, 0.12933934646983627, 0.1307938154575453, 0.1322441843567213, 0.13369118355290263, 0.1351356187682528, 0.13657833113699058, 0.1380201600144151, 0.13946190901040076 ], [ 0.0997277729982004, 0.09876661808452368, 0.09791162630048744, 0.0971652467740715, 0.096529531282212, 0.09600610968480118, 0.09559616372608118, 0.0953003996094945, 0.09511902021710646, 0.09505169830307289, 0.09509755238428848, 0.09525512732457209, 0.09552238171583814, 0.09589668407305965, 0.09637481957480169, 0.09695300861739231, 0.09762693785009648, 0.09839180367887765, 0.09924236753275661, 0.10017302154343409, 0.1011778627499723, 0.10225077354440812, 0.10338550584136226, 0.10457576638635882, 0.10581530069967483, 0.10709797335932195, 0.10841784262635361, 0.10976922777415002, 0.11114676786910538, 0.11254547113613188, 0.11396075440770717, 0.11538847248543048, 0.11682493752955285, 0.11826692883141762, 0.1197116935164118, 0.1211569388740039, 0.12260081712136754, 0.12404190348319337, 0.12547916851804541, 0.12691194564583774, 0.1283398948359173, 0.12976296340433974, 0.1311813448446742, 0.13259543658104578, 0.13400579748641653, 0.1354131059542134, 0.13681811924804563, 0.1382216347831142, 0.13962445391471465, 0.14102734872495237 ], [ 0.10281039394436892, 0.10187331071505651, 0.1010385637136522, 0.10030852451688418, 0.09968518337129487, 0.09917012506955522, 0.09876450355544554, 0.09846901569892803, 0.09828387508308507, 0.09820878703395045, 0.09824292645407193, 0.09838492024470794, 0.09863283618248729, 0.09898418003145996, 0.09943590241691361, 0.09998441657970433, 0.10062562760352937, 0.10135497311100511, 0.10216747481233959, 0.10305779971750256, 0.10402032933595452, 0.10504923482189385, 0.10613855579684371, 0.1072822804990723, 0.10847442496095666, 0.10970910908084205, 0.11098062770874957, 0.11228351517667334, 0.11361260204645453, 0.11496306319691157, 0.11633045670751536, 0.11771075330439532, 0.11910035640679759, 0.12049611304383953, 0.12189531610180712, 0.12329569851289508, 0.12469542011074247, 0.12609304796063794, 0.12748753102724358, 0.12887817007459362, 0.13026458370557079, 0.13164667144431996, 0.1330245747475193, 0.13439863680099676, 0.1357693619181831, 0.13713737530734318, 0.13850338391619657, 0.1398681389961997, 0.1412324009551961, 0.14259690698737845 ], [ 0.10587102073332176, 0.10495805816275966, 0.10414368903793222, 0.103430205059436, 0.10281953193376443, 0.10231320584883694, 0.1019123490061924, 0.1016176446721035, 0.10142931255356089, 0.10134708563474547, 0.10137018988488597, 0.10149732843096919, 0.10172667184797218, 0.10205585613655618, 0.10248198973052713, 0.10300167051766913, 0.10361101339635159, 0.10430568836699217, 0.1050809686180435, 0.10593178755709715, 0.10685280329948056, 0.10783846879020226, 0.1088831055184065, 0.10998097869209822, 0.11112637176810958, 0.1123136583627004, 0.11353736978000877, 0.11479225666457353, 0.11607334358620591, 0.11737597567875513, 0.11869585676095518, 0.12002907865387302, 0.12137214166648932, 0.12272196644347655, 0.12407589755546751, 0.1254316993627117, 0.12678754480032361, 0.12814199782068278, 0.12949399028959588, 0.1308427941713384, 0.13218798985688876, 0.1335294314925163, 0.13486721015461117, 0.1362016156931128, 0.1375330980314411, 0.1388622286664625, 0.1401896630587133, 0.14151610454149208, 0.14284227030855126, 0.14416885996482334 ], [ 0.10890608393379167, 0.10801723880254663, 0.1072233293005339, 0.10652656562900203, 0.1059288067385765, 0.10543153752857912, 0.10503584539725952, 0.1047423966143806, 0.10455141328194055, 0.10446265192721005, 0.10447538500108655, 0.1045883867025291, 0.1047999245910516, 0.10510775836912713, 0.10550914701251696, 0.10600086511048093, 0.10657922887355822, 0.10724013180756427, 0.10797908957756362, 0.10879129313392709, 0.109671668779378, 0.11061494354814823, 0.11161571406307896, 0.1126685169398679, 0.11376789881586076, 0.11490848418171762, 0.11608503937070161, 0.11729253129144182, 0.11852617975540772, 0.11978150253046649, 0.12105435253051515, 0.12234094681551076, 0.12363788731721997, 0.12494217341806117, 0.12625120669108048, 0.1275627882579769, 0.1288751093407368, 0.13018673567320424, 0.1314965865047823, 0.13280390897253883, 0.134108248643122, 0.13540941703467405, 0.13670745692346833, 0.13800260622201474, 0.13929526118618255, 0.14058593966964156, 0.14187524509540725, 0.14316383175742034, 0.14445237200079925, 0.14574152575863936 ], [ 0.11191222271734949, 0.1110474420357153, 0.11027402495163899, 0.10959409918703325, 0.10900945543559369, 0.10852152538195095, 0.10813135933275839, 0.10783960393120681, 0.10764648067786262, 0.10755176621514524, 0.10755477552226068, 0.10765434928582474, 0.10784884673808257, 0.10813614517737824, 0.10851364720268429, 0.1089782964152506, 0.10952660198575392, 0.11015467208271423, 0.11085825574001067, 0.11163279234127646, 0.11247346754691899, 0.11337527420933118, 0.11433307662909095, 0.11534167640630216, 0.11639587813468644, 0.11749055326276628, 0.11862070059214848, 0.119781502080791, 0.12096837285120972, 0.12217700455298894, 0.12340340148103719, 0.12464390909373857, 0.125895234799779, 0.1271544610832479, 0.12841905121038044, 0.12968684790720486, 0.13095606551584443, 0.13222527623012434, 0.13349339108060973, 0.13475963638785687, 0.13602352643285162, 0.13728483310769182, 0.13854355330938095, 0.13979987482677533, 0.14105414144656667, 0.14230681796976036, 0.14355845578632737, 0.14480965960348424, 0.14606105586328397, 0.14731326331891575 ], [ 0.11488628726338915, 0.11404547100304534, 0.1132925328531133, 0.11262951765843043, 0.11205814699156327, 0.11157979806298048, 0.11119548247217159, 0.11090582526421433, 0.11071104497041331, 0.11061093550848627, 0.11060485097390914, 0.11069169444807078, 0.11086991196369017, 0.11113749269388776, 0.11149197626703193, 0.11193046786329136, 0.11244966143744661, 0.11304587105919862, 0.11371506999458238, 0.11445293679804168, 0.11525490737025548, 0.11611623168265549, 0.11703203368998467, 0.11799737285397328, 0.11900730568368977, 0.12005694575487966, 0.12114152079025929, 0.12225642555125306, 0.12339726949395509, 0.12455991836333814, 0.12574052912674502, 0.1269355778696095, 0.12814188048461822, 0.1293566061744898, 0.13057728395459312, 0.13180180248329562, 0.1330284036651162, 0.13425567056552898, 0.13548251024828528, 0.13670813219829622, 0.13793202302762111, 0.1391539181807464, 0.1403737713599055, 0.1415917223831038, 0.14280806416806568, 0.14402320950548586, 0.14523765824576282, 0.14645196547563477, 0.14766671120583788, 0.1488824720290232 ], [ 0.11782533981319523, 0.11700834385791836, 0.11627582774292572, 0.11562975355879451, 0.11507177345436896, 0.11460320948760737, 0.11422503351617079, 0.11393784757983984, 0.11374186540885511, 0.11363689585692494, 0.11362232918577725, 0.11369712720174471, 0.113859818250336, 0.11410849800386677, 0.11444083682959601, 0.1148540943079999, 0.11534514119716076, 0.1159104888291204, 0.11654632560059716, 0.1172485599073895, 0.11801286859137732, 0.11883474973916187, 0.11970957850521735, 0.12063266453627736, 0.12159930954826587, 0.12260486364764404, 0.12364477908659446, 0.1247146602845577, 0.12581030912429864, 0.12692776472630302, 0.12806333710908216, 0.1292136343448931, 0.13037558301266303, 0.1315464419267123, 0.132723809277501, 0.1339056234571804, 0.13509015795754759, 0.13627601082158827, 0.13746208920328515, 0.1386475896452174, 0.13983197472139813, 0.1410149467153656, 0.14219641901229746, 0.14337648588012053, 0.14455539129951991, 0.14573349747724157, 0.14691125364222551, 0.14808916568071698, 0.14926776711547926, 0.15044759187671372 ] ] }, { "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.2766467332839966, 0.03852364132214521, 2.184345267097412e-16, 9.760252620570405e-17, 0.005223835268753936, 1.0774675959281709e-16, 3.4938528263188223e-19, 4.521955231347305e-16, 0.0, 0.02217512796722329, 0.0669941051410776, 0.9940979480743408, 0.07038036117476693, 0.1403312437439268, 0.07304461618168541, 0.04003096907670499, 0.13394118136074012, 0.1668182900975896, 0.18681063663899083, 0.17268517552519105, 0.20325496472879168, 0.16709503531455994, 0.5930187106132507, 0.903041660785675, 0.4993301033973694, 0.1345365041060559, 0.14215095534950242, 0.12044766261569127, 0.086718678746971 ], "xaxis": "x", "y": [ 0.43186479806900024, 0.0, 2.5773981531761035e-16, 3.15655550396786e-17, 0.0, 4.0298711749700964e-17, 0.007133882920973962, 0.00964721253484519, 0.055029741815382636, 0.026325377928777437, 0.08659413480946007, 0.6611761450767517, 0.11030987748980928, 0.14945350581523995, 0.21602969950592946, 0.2730351084743125, 0.17993282250512807, 0.17581473139170797, 0.19929384374745185, 0.17345666951559688, 0.1691135071450467, 0.09410719573497772, 0.07430656254291534, 0.26782259345054626, 0.16428275406360626, 0.21935827524158255, 0.11494981445211024, 0.05184078455989443, 1.1268661123934133e-12 ], "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.2766467332839966, 0.03852364132214521, 2.184345267097412e-16, 9.760252620570405e-17, 0.005223835268753936, 1.0774675959281709e-16, 3.4938528263188223e-19, 4.521955231347305e-16, 0.0, 0.02217512796722329, 0.0669941051410776, 0.9940979480743408, 0.07038036117476693, 0.1403312437439268, 0.07304461618168541, 0.04003096907670499, 0.13394118136074012, 0.1668182900975896, 0.18681063663899083, 0.17268517552519105, 0.20325496472879168, 0.16709503531455994, 0.5930187106132507, 0.903041660785675, 0.4993301033973694, 0.1345365041060559, 0.14215095534950242, 0.12044766261569127, 0.086718678746971 ], "xaxis": "x2", "y": [ 0.43186479806900024, 0.0, 2.5773981531761035e-16, 3.15655550396786e-17, 0.0, 4.0298711749700964e-17, 0.007133882920973962, 0.00964721253484519, 0.055029741815382636, 0.026325377928777437, 0.08659413480946007, 0.6611761450767517, 0.11030987748980928, 0.14945350581523995, 0.21602969950592946, 0.2730351084743125, 0.17993282250512807, 0.17581473139170797, 0.19929384374745185, 0.17345666951559688, 0.1691135071450467, 0.09410719573497772, 0.07430656254291534, 0.26782259345054626, 0.16428275406360626, 0.21935827524158255, 0.11494981445211024, 0.05184078455989443, 1.1268661123934133e-12 ], "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.18026994308991157, -0.18026994308991157, -0.18026994308991157, -0.18026994308991157, -0.18026994308991157, -0.18026994308991157, -0.18026994308991157, -0.46701684865442117, -0.6484751543389431, -0.8831945989886076, -1.135296622613087, -1.1414016310223023, -1.1414016310223023, -1.3744259085144375, -1.5935433389260065, -1.8150070861917678, -1.8150070861917678, -1.8150070861917678, -2.225123906350849, -2.70153223945291, -2.70153223945291, -2.733475867198328, -2.8390580384706783, -2.8390580384706783, -3.2046169250813272, -3.2785618466893576, -3.2785618466893576, -3.2785618466893576, -3.3133842794312645, -3.3133842794312645 ] }, { "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.18026994308991157, -0.18026994308991157, -0.18026994308991157, -0.18026994308991157, -0.18026994308991157, -0.18026994308991157, -0.18026994308991157, -0.46701684865442117, -0.6484751543389431, -0.8831945989886076, -1.135296622613087, -1.1414016310223023, -1.1414016310223023, -1.3744259085144375, -1.5935433389260065, -1.8150070861917678, -1.8150070861917678, -1.8150070861917678, -2.225123906350849, -2.70153223945291, -2.70153223945291, -2.733475867198328, -2.8390580384706783, -2.8390580384706783, -3.2046169250813272, -3.2785618466893576, -3.2785618466893576, -3.2785618466893576, -3.3133842794312645, -3.3133842794312645 ] }, { "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.18026994308991157, -0.18026994308991157, -0.18026994308991157, -0.18026994308991157, -0.18026994308991157, -0.18026994308991157, -0.18026994308991157, -0.46701684865442117, -0.6484751543389431, -0.8831945989886076, -1.135296622613087, -1.1414016310223023, -1.1414016310223023, -1.3744259085144375, -1.5935433389260065, -1.8150070861917678, -1.8150070861917678, -1.8150070861917678, -2.225123906350849, -2.70153223945291, -2.70153223945291, -2.733475867198328, -2.8390580384706783, -2.8390580384706783, -3.2046169250813272, -3.2785618466893576, -3.2785618466893576, -3.2785618466893576, -3.3133842794312645, -3.3133842794312645 ] }, { "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 }