{ "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 06-10 18:24:07] ipy_plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.\n" ] }, { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "import numpy as np\n", "\n", "from ax.plot.contour import plot_contour\n", "from ax.plot.trace import optimization_trace_single_method\n", "from ax.service.managed_loop import optimize\n", "from ax.metrics.branin import branin\n", "from ax.utils.measurement.synthetic_functions import hartmann6\n", "from ax.utils.notebook.plotting import render, init_notebook_plotting\n", "\n", "init_notebook_plotting()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 1. Define evaluation function\n", "\n", "First, we define an evaluation function that is able to compute all the metrics needed for this experiment. This function needs to accept a set of parameter values and can also accept a weight. It should produce a dictionary of metric names to tuples of mean and standard error for those metrics." ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": true }, "outputs": [], "source": [ "def hartmann_evaluation_function(parameterization):\n", " x = np.array([parameterization.get(f\"x{i+1}\") for i in range(6)])\n", " # In our case, standard error is 0, since we are computing a synthetic function.\n", " return {\"hartmann6\": (hartmann6(x), 0.0), \"l2norm\": (np.sqrt((x ** 2).sum()), 0.0)}" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If there is only one metric in the experiment – the objective – then evaluation function can return a single tuple of mean and SEM, in which case Ax will assume that evaluation corresponds to the objective. It can also return only the mean as a float, in which case Ax will treat SEM as unknown and use a model that can infer it. For more details on evaluation function, refer to the \"Trial Evaluation\" section in the docs." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 2. Run optimization\n", "The setup for the loop is fully compatible with JSON. The optimization algorithm is selected based on the properties of the problem search space." ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-10 18:24:07] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+GPEI', steps=[Sobol for 6 trials, GPEI for subsequent trials]). Iterations after 6 will take longer to generate due to model-fitting.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-10 18:24:07] ax.service.managed_loop: Started full optimization with 30 steps.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-10 18:24:07] ax.service.managed_loop: Running optimization trial 1...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-10 18:24:07] ax.service.managed_loop: Running optimization trial 2...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-10 18:24:07] ax.service.managed_loop: Running optimization trial 3...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-10 18:24:07] ax.service.managed_loop: Running optimization trial 4...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-10 18:24:07] ax.service.managed_loop: Running optimization trial 5...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-10 18:24:07] ax.service.managed_loop: Running optimization trial 6...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-10 18:24:07] ax.service.managed_loop: Running optimization trial 7...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-10 18:24:13] ax.service.managed_loop: Running optimization trial 8...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-10 18:24:17] ax.service.managed_loop: Running optimization trial 9...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-10 18:24:21] ax.service.managed_loop: Running optimization trial 10...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-10 18:24:25] ax.service.managed_loop: Running optimization trial 11...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-10 18:24:28] ax.service.managed_loop: Running optimization trial 12...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-10 18:24:31] ax.service.managed_loop: Running optimization trial 13...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-10 18:24:34] ax.service.managed_loop: Running optimization trial 14...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-10 18:24:38] ax.service.managed_loop: Running optimization trial 15...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-10 18:24:41] ax.service.managed_loop: Running optimization trial 16...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-10 18:24:44] ax.service.managed_loop: Running optimization trial 17...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-10 18:24:48] ax.service.managed_loop: Running optimization trial 18...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-10 18:24:50] ax.service.managed_loop: Running optimization trial 19...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-10 18:24:53] ax.service.managed_loop: Running optimization trial 20...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-10 18:24:56] ax.service.managed_loop: Running optimization trial 21...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-10 18:25:00] ax.service.managed_loop: Running optimization trial 22...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-10 18:25:03] ax.service.managed_loop: Running optimization trial 23...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-10 18:25:05] ax.service.managed_loop: Running optimization trial 24...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-10 18:25:07] ax.service.managed_loop: Running optimization trial 25...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-10 18:25:09] ax.service.managed_loop: Running optimization trial 26...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-10 18:25:12] ax.service.managed_loop: Running optimization trial 27...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-10 18:25:15] ax.service.managed_loop: Running optimization trial 28...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-10 18:25:17] ax.service.managed_loop: Running optimization trial 29...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 06-10 18:25:17] 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.19778937811230327,\n", " 'x2': 0.12563648712837994,\n", " 'x3': 0.4501387124022119,\n", " 'x4': 0.27937109556410333,\n", " 'x5': 0.30239524390161626,\n", " 'x6': 0.6583440141426703}" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "best_parameters" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'l2norm': 0.9276001853623751, 'hartmann6': -3.305163644863538}" ] }, "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": [ [ -2.5042958109020548, -2.5484156744443744, -2.589471687972777, -2.6270697020845772, -2.6608119607643497, -2.6903043237501185, -2.7151651926153506, -2.7350359766911017, -2.7495925292668413, -2.7585565386300304, -2.7617055756049407, -2.7588805725050594, -2.7499899759317614, -2.735010511100373, -2.713985143296135, -2.6870191971925648, -2.654275621705745, -2.6159701378626403, -2.572366627484558, -2.52377276056556, -2.4705356222298054, -2.4130370248419273, -2.351688256261815, -2.286924163029321, -2.2191966318077987, -2.1489676649300016, -2.0767023237871243, -2.0028618366255846, -1.9278971467889545, -1.8522431285751992, -1.7763136341157675, -1.7004974665177168, -1.6251553097905227, -1.550617590441782, -1.477183202609771, -1.40511899960172, -1.3346599391342013, -1.266009765349895, -1.199342114947119, -1.1348019445271023, -1.0725071889418747, -1.0125505740287624, -0.955001520323409, -0.8999080863865367, -0.8472989109205236, -0.7971851218265003, -0.7495621878536667, -0.7044116946888097, -0.6617030324146305, -0.6213949854088403 ], [ -2.5356079332405246, -2.580927593604663, -2.6231510049755755, -2.6618702490535657, -2.69667248407284, -2.72714745017071, -2.752896884990462, -2.7735457090973417, -2.7887543626081017, -2.7982311285405492, -2.8017429250033086, -2.799123143244402, -2.7902757002981486, -2.7751753368700136, -2.7538649610697243, -2.726451238215588, -2.6930995862159675, -2.6540293695738812, -2.6095095891816493, -2.5598549248857814, -2.505421725640863, -2.4466034969835784, -2.3838255676179756, -2.3175388381010036, -2.24821273395972, -2.1763276434806667, -2.1023671977523097, -2.0268107573370626, -1.9501264281185438, -1.8727648597635929, -1.7951539997703752, -1.717694895031348, -1.6407585587584355, -1.564683858933321, -1.4897763385681264, -1.4163078490558378, -1.3445168645112597, -1.274609344302743, -1.2067600192310963, -1.1411139903804388, -1.0777885455501561, -1.0168751142413819, -0.9584412971066287, -0.9025329189293319, -0.8491760653834493, -0.7983790731094387, -0.7501344502409344, -0.7044207106822329, -0.6612041104178716, -0.620440278150709 ], [ -2.5628143433016417, -2.6092005840072128, -2.652463578847966, -2.692183222052884, -2.7279333225835822, -2.759289381444406, -2.785838464136262, -2.8071910410239633, -2.822994120771272, -2.832944362939821, -2.836799442854347, -2.83438607264837, -2.825603811027247, -2.8104248249528663, -2.7888906445357393, -2.7611073516841502, -2.7272405112042595, -2.6875106561189805, -2.6421895211088122, -2.591596697860104, -2.536096107769128, -2.476091692452015, -2.4120219461033323, -2.3443532269506764, -2.2735720641922756, -2.2001768528669428, -2.1246693932083653, -2.047546710245406, -1.9692935190726681, -1.8903756089821968, -1.8112343222689011, -1.7322822104197617, -1.6538998679004688, -1.5764338769142334, -1.5001957487335527, -1.4254617192850945, -1.3524732466010687, -1.2814380615433474, -1.2125316361442393, -1.1458989516458362, -1.0816564675091764, -1.0198942110977345, -0.9606779242148544, -0.9040512167228314, -0.8500376890850248, -0.798642995090677, -0.7498568235777827, -0.703654784001932, -0.6600001855121593, -0.6188457030357681 ], [ -2.5856184505321327, -2.632918469309833, -2.677073402119799, -2.7176528382608995, -2.754219357623838, -2.78633657451831, -2.8135794257997757, -2.8355465678822305, -2.8518741387831694, -2.8622494307618616, -2.8664225734256794, -2.8642145130075947, -2.8555204403790633, -2.8403090010890013, -2.8186185746364334, -2.7905522773421576, -2.7562731024758387, -2.7159999818412275, -2.670004817023978, -2.618609932280897, -2.5621851167509204, -2.5011435018609083, -2.4359358634397066, -2.36704336148557, -2.2949690692704947, -2.220228823687789, -2.143341962186376, -2.0648224503114916, -1.9851707990293566, -1.9048670550240558, -1.8243650346860307, -1.7440878694018644, -1.6644248402877664, -1.5857294095357855, -1.508318306868245, -1.4324715039070348, -1.3584329036564242, -1.2864115815068875, -1.2165834323435294, -1.149093100444085, -1.0840560912614592, -1.0215609847501728, -0.9616716876157076, -0.904429676520031, -0.8498561960813202, -0.797954384874149, -0.7487113100191451, -0.7020998967658061, -0.6580807440634562, -0.6166038207534681 ], [ -2.6037551965392507, -2.6517981406098423, -2.6966790728650376, -2.7379594604593773, -2.7751931537030607, -2.8079346890371517, -2.835749933750906, -2.858228899537048, -2.8749998979113833, -2.8857434642273767, -2.890204039201656, -2.888197657881623, -2.879614887117807, -2.8644195420757184, -2.842644693683574, -2.814387780327646, -2.7798062800242005, -2.7391146489364804, -2.692582390785672, -2.640532455766157, -2.5833388887732647, -2.5214228246589716, -2.455246422478306, -2.3853048788369833, -2.3121170504754582, -2.2362153791402197, -2.158135793729361, -2.078408150604915, -1.997547630581458, -1.9160473739277961, -1.8343725112071514, -1.7529556376903033, -1.6721936842087053, -1.5924460630471888, -1.514033918791773, -1.437240291709236, -1.3623110011974142, -1.2894560722612645, -1.218851551732615, -1.150641587371835, -1.084940668337398, -1.0218359478214802, -0.9613895872361582, -0.9036410762769951, -0.8486094949473404, -0.7962956927774887, -0.7466843675784511, -0.6997460316059865, -0.6554388573493224, -0.6137103985838652 ], [ -2.616999249249944, -2.665598699842792, -2.71102395093931, -2.7528308126221437, -2.7905672515518023, -2.823781931879908, -2.852035126963907, -2.8749117614341686, -2.892035666151565, -2.9030833916498064, -2.9077955413530336, -2.905983936671272, -2.897534011220265, -2.8824031706237783, -2.860616807254213, -2.8322638668084306, -2.797493394039267, -2.7565126346841224, -2.7095863419565727, -2.657036210103627, -2.599239099990336, -2.5366230292513388, -2.4696605724945995, -2.3988599952405076, -2.3247548678733723, -2.247893024044827, -2.1688256373933896, -2.088097014893, -2.0062355266579437, -1.9237459397586518, -1.841103294935639, -1.758748351438385, -1.6770845261411376, -1.596476175939726, -1.517248024407621, -1.4396855157483246, -1.3640358856041792, -1.290509760464266, -1.2192831268199267, -1.1504995416450088, -1.0842724835835358, -1.0206877677926587, -0.9598059664218566, -0.9016647916238754, -0.8462814094872904, -0.7936546620855243, -0.7437671815951976, -0.6965873856642366, -0.6520713472915285, -0.6101645356987542 ], [ -2.625172717638386, -2.674130117337899, -2.7199058149336834, -2.7620526635804863, -2.800115861415673, -2.8336416829218796, -2.862188528295935, -2.8853399608577845, -2.902718732009157, -2.914000112005275, -2.9189225532267966, -2.917294155304038, -2.9089945365598453, -2.8939730391196647, -2.8722450689144363, -2.843888470307455, -2.809041265583912, -2.767901160390171, -2.7207262178545095, -2.66783533531126, -2.6096069469001257, -2.5464748436753837, -2.4789208715949274, -2.4074650660423194, -2.332654208020849, -2.2550498318256507, -2.1752165345291763, -2.0937111981402134, -2.011073527090195, -1.9278181451743222, -1.8444283689681469, -1.7613516605406607, -1.6789966594571575, -1.597731613919925, -1.517883983987046, -1.4397409771777419, -1.3635507905970996, -1.2895243628705861, -1.2178374739276756, -1.1486330645403018, -1.082023677156274, -1.0180939438418186, -0.9569030662161124, -0.898487246875056, -0.8428620428740798, -0.7900246202181489, -0.7399558946909734, -0.6926225492766593, -0.6479789222690473, -0.6059687631997916 ], [ -2.628151663623878, -2.677260528869753, -2.7231849717051535, -2.765477738707509, -2.803684514803303, -2.837352763413779, -2.866042745388599, -2.889340290381233, -2.906870262866905, -2.9183090785974137, -2.9233944518313213, -2.921931074048774, -2.913792058019809, -2.8989172269413634, -2.8773100892110155, -2.849035330424828, -2.8142180015420557, -2.7730445873453573, -2.725765085531357, -2.6726944435522055, -2.6142115748124644, -2.5507548303421297, -2.4828138625729266, -2.4109187078152656, -2.335627310672776, -2.2575126620311448, -2.1771504470240437, -2.0951078009921216, -2.0119335436820918, -1.9281501068890792, -1.8442472513408221, -1.7606775559558054, -1.6778535557583076, -1.5961463211480194, -1.5158852257431332, -1.4373586433323555, -1.3608153358935589, -1.286466330491617, -1.214487122298275, -1.145020077508598, -1.078176940707231, -1.0140413757012212, -0.952671487599166, -0.8941022880352036, -0.8383480759948969, -0.7854047146291394, -0.7352517904647402, -0.6878546460655006, -0.6431662808358931, -0.6011291175481819 ], [ -2.6258706953001125, -2.6749213009846504, -2.720789773681442, -2.7630316333253635, -2.801196276846955, -2.8348358121367916, -2.863515853644669, -2.8868277677026475, -2.9044012932550043, -2.9159159974575863, -2.9211099699653937, -2.919784729605454, -2.9118063970333936, -2.897104309959863, -2.875668891277447, -2.8475504790769794, -2.8128601097321297, -2.77177219179124, -2.724527913535131, -2.6714374689971367, -2.6128791898404184, -2.549294519742664, -2.4811789895652776, -2.409070290156629, -2.333534876314048, -2.2551543781197254, -2.1745127304526886, -2.092184585753003, -2.0087253390155912, -1.9246629505092612, -1.8404916442313513, -1.756667450018497, -1.6736054459448162, -1.5916784703200995, -1.5112170287326836, -1.4325101209534195, -1.3558067411296455, -1.281317846406735, -1.209218632257251, -1.1396509911429553, -1.0727260624226627, -1.008526805660494, -0.9471105477169777, -0.8885114675293797, -0.8327429925153909, -0.7798000880416867, -0.7296614271049764, -0.6822914317941611, -0.6376421815835547, -0.5956551862874615 ], [ -2.6183251236116893, -2.667109251706542, -2.712718836452256, -2.7547149394377257, -2.792653681913732, -2.8260949351181526, -2.854612698448725, -2.877806593938943, -2.8953134338352657, -2.9068174805910907, -2.9120580688798077, -2.910833843498594, -2.9030038516592906, -2.888486700973771, -2.867259501638313, -2.839358137791426, -2.8048796493110175, -2.7639864058495167, -2.7169106428470466, -2.663957239038621, -2.6055027746911055, -2.5419899347491954, -2.4739176498663653, -2.4018283081037133, -2.3262936296239287, -2.2479005419738702, -2.167237955699578, -2.084884962293575, -2.0014007411455306, -1.9173163343229884, -1.833128353882178, -1.7492945793965515, -1.6662312880672234, -1.5843120691291963, -1.503867831978849, -1.4251877221028328, -1.3485206933720693, -1.2740775314270725, -1.2020331685845314, -1.1325291700521725, -1.0656763025497673, -1.0015571202005313, -0.9402285201564358, -0.8817242333493196, -0.8260572253057084, -0.7732219891145871, -0.7231967180965564, -0.6759453499789985, -0.631419477757281, -0.5895601251353799 ], [ -2.605570506663232, -2.6538858579477997, -2.6990398180854775, -2.7406015101275996, -2.7781364207359105, -2.8112148048566166, -2.8394214771661437, -2.8623663938010786, -2.8796950570624946, -2.8910975599602002, -2.8963152184781404, -2.8951443045094565, -2.8874372543636886, -2.873102539630648, -2.8521047745986774, -2.824466406262574, -2.790271545736629, -2.7496713838161977, -2.702889544222897, -2.650225141236266, -2.5920516234491284, -2.5288106349085058, -2.4610014931192508, -2.389167784477296, -2.313882761699931, -2.235734901289504, -2.1553144954234305, -2.073201758721631, -1.9899567005282672, -1.90611090007982, -1.8221612396891962, -1.7385655477681776, -1.655739986204866, -1.574057924067307, -1.4938499985158424, -1.4154050718938604, -1.3389718320751745, -1.264760831918228, -1.1929468107367325, -1.1236711804046375, -1.0570445897502496, -0.9931495041076654, -0.9320427538980216, -0.8737580185321556, -0.818308221088798, -0.765687816108823, -0.7158749581374493, -0.6688335427988639, -0.6245151155071591, -0.5828606456001686 ], [ -2.5877197775647116, -2.6353737470897163, -2.6798851930063576, -2.7208334645766694, -2.7577955805170475, -2.7903542210752588, -2.8181068089117436, -2.840675093166491, -2.8577143795094098, -2.868921436494461, -2.8740402911368754, -2.872865646318215, -2.8652443795748814, -2.8510762349854417, -2.8303150953409277, -2.8029719521067524, -2.7691199065374814, -2.7289004487411272, -2.6825292466137642, -2.6302992149334155, -2.5725790711687866, -2.509806782653711, -2.4424786467350184, -2.3711355816140682, -2.2963483330455112, -2.218702941338596, -2.1387873145664624, -2.0571793580377693, -1.9744368861693606, -1.8910894387342012, -1.807632049312283, -1.724520915181168, -1.6421708022785162, -1.5609539268074735, -1.4812000144796156, -1.4031972472015375, -1.3271938458318, -1.2534000868954536, -1.1819905983595043, -1.1131068191053224, -1.0468595373632104, -0.9833314460974305, -0.9225796698761755, -0.8646382298180184, -0.8095204221152867, -0.7572210923620384, -0.7077187931150397, -0.6609778162267439, -0.6169500947937241, -0.5755769722498223 ], [ -2.5649384359655105, -2.6117511010106376, -2.6554458235029226, -2.6956139296633745, -2.731845627821348, -2.7637374917315514, -2.7909007629980134, -2.8129699283423797, -2.829610844428884, -2.840527649948454, -2.8454679115860495, -2.8442259080105172, -2.8366445476464826, -2.8226169175041713, -2.8020886327454084, -2.77506185719496, -2.741601113145925, -2.7018399930868897, -2.655986994263338, -2.604328366479264, -2.54722636825847, -2.4851124906266113, -2.4184764506145533, -2.3478525138520836, -2.2738048039542136, -2.196912902102924, -2.117758557359126, -2.0369139430427468, -1.9549316747194723, -1.87233670280367, -1.789620121807488, -1.707234845360347, -1.6255929864563774, -1.5450646936102126, -1.4659781528772307, -1.388620472355461, -1.3132392022333104, -1.2400442909800784, -1.1692103244311225, -1.1008789333880995, -1.0351612855186971, -0.9721405997067727, -0.9118746372850715, -0.8543981364586819, -0.7997251650282493, -0.7478513731970873, -0.6987561334345798, -0.652404558489085, -0.6087493919719003, -0.5677327686486326 ], [ -2.5374384175069875, -2.5832447257574174, -2.6259632292854946, -2.6651985604585176, -2.7005552938639346, -2.731644863815425, -2.7580930758019004, -2.7795477303262786, -2.7956857671468796, -2.8062193598986305, -2.810900600169779, -2.809524797202754, -2.8019328834982096, -2.7880137820707955, -2.7677076726192613, -2.7410107782304904, -2.7079816024681778, -2.6687476641392722, -2.623511040556214, -2.572550821678142, -2.51622109703871, -2.454944159470384, -2.3891997127642686, -2.31951154246301, -2.2464332024811196, -2.170533956325101, -2.0923857706498565, -2.012551795813623, -1.9315765514769592, -1.8499779280681794, -1.7682410424887502, -1.6868138994379076, -1.6061047092615084, -1.5264806302173173, -1.4482676619689858, -1.3717514194219653, -1.2971785474203252, -1.2247585805174288, -1.1546660958489992, -1.0870430447818356, -1.0220011786014342, -0.9596245056305124, -0.8999717333774893, -0.8430786611884695, -0.788960497715335, -0.73761408423932, -0.689020010137976, -0.6431446109634524, -0.5999418429851988, -0.5593550308184116 ], [ -2.5054712448493444, -2.550122484402832, -2.5917213370430296, -2.6298866839420927, -2.6642382333511243, -2.6944028547008108, -2.72002133270822, -2.7407551338533205, -2.756292722076134, -2.7663550156691565, -2.770699772593345, -2.7691250065497526, -2.76147188568548, -2.7476278140287786, -2.7275304029957894, -2.701172724440447, -2.6686096267428145, -2.6299641601369963, -2.585432585237737, -2.5352863321365766, -2.4798697699488956, -2.4195935658313332, -2.354924352554451, -2.2863720082200865, -2.2144759540112897, -2.139791623032919, -2.0628778725116867, -1.9842857809980867, -1.904549060669606, -1.8241762000553472, -1.74364437549591, -1.663395087789408, -1.5838313904671877, -1.5053165004393212, -1.4281735406870948, -1.3526861615999783, -1.2790998121463737, -1.2076234701612387, -1.1384316812345023, -1.0716667914003715, -1.007441287591479, -0.9458401817270945, -0.8869233905575551, -0.8307280754076658, -0.7772709149611183, -0.7265502911022701, -0.6785483732058644, -0.633233090550017, -0.5905599860009416, -0.550473946959918 ], [ -2.469320958498175, -2.512685632233962, -2.5530382714071793, -2.5900126237475067, -2.623243980610277, -2.652374943599095, -2.6770614871512133, -2.696978985499473, -2.7118278550957298, -2.72133853434006, -2.7252756937262412, -2.7234418159656877, -2.7156805366767887, -2.7018802887574456, -2.681978746367765, -2.655968264330602, -2.623901992914533, -2.58589976414792, -2.54215242641772, -2.4929232738543905, -2.4385456570683193, -2.3794166248706454, -2.3159872211989705, -2.248750559287323, -2.178228908725606, -2.1049608454486335, -2.0294892030455087, -1.9523502736646072, -1.8740645049704066, -1.7951288184690477, -1.7160105920757036, -1.6371432717217642, -1.5589234966231111, -1.4817095548058585, -1.4058209451443626, -1.3315388138487028, -1.2591070504322397, -1.1887338595298829, -1.120593660399733, -1.054829198930581, -0.9915537844890776, -0.9308535854677449, -0.8727899336993161, -0.8174016001392499, -0.7647070134589247, -0.7147064002879409, -0.6673838313979383, -0.6227091625513381, -0.5806398623278428, -0.541122722177686 ], [ -2.4292971846201303, -2.4712614116240403, -2.5102585265930677, -2.5459375078287185, -2.5779494513087347, -2.605952809832511, -2.629618847223126, -2.6486370473090286, -2.662720224005792, -2.671609152394475, -2.675076682897944, -2.6729314852332564, -2.6650217388818156, -2.6512391660847943, -2.6315237219694834, -2.6058689850682764, -2.574327872078444, -2.537017856868209, -2.494124583261879, -2.4459027821795107, -2.3926737806523817, -2.3348195046192277, -2.2727734991831947, -2.2070099054490373, -2.1380314533805653, -2.066357406508631, -1.9925121516690978, -1.91701488182319, -1.8403706336972825, -1.763062818652788, -1.6855472985845088, -1.608247983203676, -1.5315538530092065, -1.4558172513090677, -1.381353249676672, -1.3084398785621816, -1.2373190246552883, -1.1681978207574026, -1.1012503838682701, -1.0366197866978937, -0.9744201735222011, -0.9147389521333851, -0.8576390098548139, -0.8031609140062621, -0.7513250667101934, -0.7021337912799299, -0.6555733332032379, -0.6116157633430053, -0.5702207747061558, -0.5313373671821757 ], [ -2.385728564884637, -2.4261961102832412, -2.4637456891469625, -2.4980416877488762, -2.528751075429242, -2.5555481700819955, -2.578119571453051, -2.5961690641928463, -2.6094223119868984, -2.6176312320788364, -2.6205780515856523, -2.6180791786383972, -2.6099891281016525, -2.596204768790237, -2.576670061316406, -2.551381221260306, -2.5203919133613275, -2.4838177578945166, -2.4418392406039646, -2.3947021690103734, -2.342715131459309, -2.2862438995796253, -2.225703204551306, -2.16154665805829, -2.0942557088696443, -2.024328452905588, -1.952268934193124, -1.8785773743760132, -1.8037416025750665, -1.7282298372267553, -1.6524848834735058, -1.5769197364592082, -1.5019145151299496, -1.4278145961790891, -1.3549297805369167, -1.2835343089283184, -1.213867546600222, -1.1461351745509587, -1.0805107487102692, -1.017137513972406, -0.9561303833295149, -0.8975780120687, -0.841544912860962, -0.7880735700304347, -0.737186521000389, -0.6888883805054462, -0.6431677891592606, -0.5999992727659291, -0.5593450026516849, -0.5211564504701762 ], [ -2.3389566722099433, -2.377848680405579, -2.4138757787395195, -2.446717807129738, -2.4760575785835655, -2.501585229582918, -2.5230027147304575, -2.5400282986790317, -2.5524009225415463, -2.559884379695036, -2.5622713197000326, -2.5593871876179315, -2.551094265745484, -2.5372959780694266, -2.5179415172532913, -2.493030659399083, -2.4626183819269247, -2.426818670946659, -2.3858067886304757, -2.3398193375013383, -2.289151714310912, -2.2341529228474037, -2.175218095867377, -2.1127793513210023, -2.0472957216751455, -1.979242859405561, -1.9091030931217656, -1.8373562513191017, -1.7644715282029402, -1.6909005538866237, -1.6170717450429097, -1.54338594149589, -1.4702132734487774, -1.3978911539315948, -1.3267232556514472, -1.256979313400402, -1.1888955916415036, -1.1226758679182245, -1.0584928011513126, -0.9964895750098293, -0.9367817270745988, -0.8794590926720003, -0.82458780743081, -0.772212324890764, -0.7223574152729919, -0.6750301192910231, -0.6302216370785358, -0.5879091372948169, -0.5480574755162038, -0.5106208143345323 ], [ -2.2893304698655355, -2.326584954502479, -2.36103122292407, -2.392364522305323, -2.420283414945997, -2.444493770028452, -2.4647128908276934, -2.4806736700936183, -2.4921286900992436, -2.4988542294530807, -2.500654197942606, -2.4973640759168205, -2.488854961594066, -2.4750378034538625, -2.455867800764736, -2.4313487993826977, -2.4015373255529098, -2.366545744391929, -2.326543965435566, -2.2817591886669635, -2.2324733905191096, -2.179018540137641, -2.1217698301624077, -2.0611374259575648, -1.9975573403229614, -1.9314820303566094, -1.8633712251459411, -1.79368337237616, -1.7228679732448255, -1.6513589743926498, -1.5795693041758359, -1.507886573580429, -1.4366699055721703, -1.366247810544623, -1.2969169919293513, -1.228941946708806, -1.162555220114646, -1.0979581795798434, -1.0353221862117277, -0.9747900588639036, -0.9164777433378382, -0.8604761154834684, -0.8068528611045036, -0.7556543873973318, -0.7069077303207465, -0.6606224301218715, -0.616792353573556, -0.5753974466139036, -0.5364054052714988, -0.49977325620273394 ], [ -2.2372013331900336, -2.2727724635404014, -2.305595462833013, -2.335380872330477, -2.3618428616177165, -2.3847029118306984, -2.403693633133438, -2.418562638455109, -2.429076415926195, -2.435024176075937, -2.4362216888586143, -2.4325151563283156, -2.423785172194597, -2.4099507841645225, -2.390973592288497, -2.366861695338537, -2.3376731647718607, -2.303518623299605, -2.264562475159262, -2.2210224045463973, -2.1731669235773547, -2.121310975022763, -2.0658098212116247, -2.0070516247284953, -1.9454492171303697, -1.8814315573753664, -1.815435323932974, -1.7478969944806004, -1.6792456708759225, -1.6098968196355539, -1.5402470238384407, -1.4706697799965291, -1.4015123210611213, -1.3330934040720206, -1.2657019691209117, -1.1995965563338649, -1.1350053592587122, -1.072126794604191, -1.0111304769378027, -0.9521584997121035, -0.8953269383051641, -0.8407275048379634, -0.7884292973373508, -0.7384805969149462, -0.6909106759771915, -0.6457315882208008, -0.6029399175318093, -0.5625184681337563, -0.524437882633626, -0.4886581781694541 ], [ -2.182918633596606, -2.2167758506418838, -2.2479481823571636, -2.2761612980093107, -2.3011447904351536, -2.3226355924335587, -2.3403815287134933, -2.354144945938123, -2.363706379196257, -2.3688682361903313, -2.3694585038373823, -2.36533449568692, -2.3563866511242693, -2.3425423598135136, -2.323769715535294, -2.3000810118887287, -2.2715356996103435, -2.2382424607907443, -2.200360047233079, -2.158096594456563, -2.1117072544383126, -2.0614901626414013, -2.007780928854371, -1.9509459789858752, -1.8913751527342113, -1.8294739764146808, -1.7656559941567997, -1.700335474839708, -1.633920735854315, -1.5668082508320886, -1.4993776425411616, -1.4319876053224467, -1.3649727533309965, -1.2986413514472495, -1.2332738556680627, -1.1691221696908671, -1.1064095141052706, -1.045330802900718, -0.986053426870634, -0.9287183526384588, -0.8734414573292304, -0.8203150307313158, -0.7694093880657702, -0.7207745466346773, -0.6744419284372292, -0.6304260583309731, -0.5887262335975243, -0.5493281460098254, -0.5122054418607995, -0.4773212090475656 ], [ -2.1268258750327496, -2.158952868799994, -2.188461152334988, -2.215091310039928, -2.2385881311773916, -2.258703792400742, -2.2752011764533417, -2.287857283214404, -2.296466700239948, -2.3008451141160413, -2.300832855920002, -2.2962984766441825, -2.2871423342734953, -2.2733001386562615, -2.254746344344987, -2.2314972139151186, -2.203613311150254, -2.1712011453406737, -2.134413693123684, -2.093449581907418, -2.048550823910344, -1.9999991231079592, -1.9481109115337731, -1.8932313799323734, -1.8357278334204052, -1.7759827213956716, -1.7143866698063022, -1.6513317966445906, -1.5872055321165213, -1.5223851037560694, -1.4572327896242423, -1.392091991999858, -1.3272841403278275, -1.263106396022356, -1.1998301035321355, -1.137699912260988, -1.0769334823799521, -1.0177216834286567, -0.9602291964290384, -0.9045954362708948, -0.8509357196590315, -0.7993426135123072, -0.7498874083467106, -0.7026216702180348, -0.6575788329190484, -0.6147757992120888, -0.5742145259551596, -0.5358835731376779, -0.4997596011988743, -0.46580880467178254 ], [ -2.069257367816002, -2.099650947864616, -2.1274946785499993, -2.152543801554832, -2.174558029817939, -2.19330452126184, -2.208560986925694, -2.2201188982359406, -2.2277867647553617, -2.2313934611335116, -2.2307915860465872, -2.2258608317362896, -2.2165113259473324, -2.202686876627328, -2.184368005923697, -2.1615746112549443, -2.13436804963351, -2.102852421028608, -2.067174839153904, -2.0275245286342773, -1.9841306714311513, -1.9372590288769769, -1.8872074695496055, -1.8343006188991102, -1.7788839013331603, -1.721317265317691, -1.661968870901461, -1.6012089857324854, -1.5394042899967806, -1.4769127409472962, -1.414079099146078, -1.3512311740691008, -1.2886768076680521, -1.2267015815825544, -1.1655672074866401, -1.1055105408633223, -1.0467431462642407, -0.9894513362459987, -0.9337966056307387, -0.8799163861931303, -0.827925052965339, -0.7779151208687054, -0.7299585783874212, -0.6841083128455723, -0.6403995891452963, -0.5988515503805825, -0.5594687144999257, -0.5222424461780331, -0.48715238733637145, -0.4541678334062118 ], [ -2.0105354206319745, -2.039204312018649, -2.065394636780227, -2.088875991165877, -2.109422690315543, -2.1268165517013093, -2.14084980826343, -2.1513281210026727, -2.1580736638096853, -2.1609282557655125, -2.1597565150783224, -2.1544490010367934, -2.144925293434078, -2.1311369324251324, -2.113070108359884, -2.0907479568794565, -2.064232288286751, -2.0336245714692294, -1.999066008905803, -1.960736583060366, -1.9188530217702553, -1.8736657110596748, -1.8254546646809144, -1.7745247274722056, -1.721200235004166, -1.6658193713663154, -1.608728462243512, -1.5502764172780772, -1.4908095010318694, -1.4306665719153162, -1.3701748878352489, -1.3096465389295597, -1.2493755332668486, -1.189635531773539, -1.1306782045275157, -1.072732162268581, -1.016002404520102, -0.9606702187041716, -0.9068934623100513, -0.8548071615521136, -0.8045243639597122, -0.7561371879800143, -0.7097180191177102, -0.6653208087651639, -0.6229824382794202, -0.5827241167957282, -0.5445527866153512, -0.5084625147353516, -0.47443585322245796, -0.44244515471510737 ], [ -1.9509680272431973, -1.9779316237373834, -2.002490070650303, -2.0244269714543353, -2.0435308722895495, -2.0595978686458993, -2.072434334221341, -2.081859744470119, -2.087709567641429, -2.0898381952076046, -2.0881218794624217, -2.082461636780327, -2.0727860594112397, -2.059053957160436, -2.041256725451641, -2.0194203128902255, -1.9936066458755186, -1.9639143664913694, -1.9304787574661626, -1.8934707655374683, -1.8530950887556497, -1.8095873568131497, -1.763210496838193, -1.714250430904985, -1.6630112889334745, -1.609810338630457, -1.5549728334317998, -1.4988269635886273, -1.441699069401638, -1.3839092438518255, -1.325767418306725, -1.267569992278812, -1.2095970381212893, -1.1521100851697037, -1.0953504658692566, -1.0395381892503301, -0.9848712948011842, -0.9315256320952545, -0.8796550079293732, -0.8293916424832153, -0.7808468782915217, -0.7341120898182754, -0.6892597464278232, -0.6463445869988562, -0.6054048699136092, -0.566463667410094, -0.5295301781519632, -0.4946010362768505, -0.46166159910819804, -0.4306871991744514 ], [ -1.8908470200293623, -1.9161341244534835, -1.9390913200916093, -1.9595158269758888, -1.9772100026630353, -1.9919837821602095, -2.0036572302332476, -2.0120631800198328, -2.01704993022575, -2.018483970178189, -2.0162526963245715, -2.0102670742987065, -2.0004641870516497, -1.9868095925741864, -1.969299396718859, -1.9479619312514418, -1.9228589190285783, -1.8940860114007823, -1.8617726004021242, -1.8260808403047537, -1.787203856965919, -1.7453631737166178, -1.700805432500598, -1.6537985318752608, -1.6046273342734152, -1.5535891110869953, -1.5009888958134736, -1.4471349049029203, -1.3923341663650772, -1.336888471135174, -1.2810907347053044, -1.22522182895881, -1.1695479181655402, -1.1143183098386467, -1.0597638113528594, -1.0060955673038081, -0.9535043406897921, -0.9021601929954013, -0.8522125137898056, -0.8037903489812808, -0.7570029777613192, -0.7119406908773209, -0.6686757266000136, -0.627263325101798, -0.5877428665525302, -0.5501390627957992, -0.5144631768135215, -0.48071424821649034, -0.4488803066634439, -0.4189395583980544 ], [ -1.8304466582442265, -1.8540942366988904, -1.875488641121743, -1.8944402768748874, -1.9107648485707855, -1.9242856409610631, -1.934835900834925, -1.9422612945640692, -1.946422413042753, -1.9471972916026334, -1.9444839062297266, -1.9382025985421458, -1.9282983705690084, -1.9147429773438989, -1.8975367326246286, -1.8767099334583044, -1.8523238059937732, -1.8244708807316092, -1.793274721969069, -1.758888963406871, -1.7214956375347958, -1.681302826540676, -1.6385417021557938, -1.5934630562187109, -1.5463334490565157, -1.4974311170189167, -1.4470417834788876, -1.3954545106728586, -1.3429577151597067, -1.2898354500005738, -1.2363640344024658, -1.1828090885182583, -1.1294230088642072, -1.076442899493823, -1.024088956389828, -0.9725632879564596, -0.9220491432067475, -0.872710511213002, -0.8246920503879804, -0.7781193038057279, -0.7330991565749376, -0.6897204927330911, -0.6480550117498958, -0.6081581680839361, -0.5700702009800787, -0.5338172255635505, -0.49941236009155343, -0.4668568678467149, -0.4361412955231678, -0.40724659303372657 ], [ -1.7700226152949, -1.792074588062473, -1.8119512722517852, -1.8294757909124748, -1.8444766920130418, -1.8567900766932937, -1.8662618162782134, -1.872749833136898, -1.8761264168817113, -1.8762805427375229, -1.8731201527281776, -1.866574352451956, -1.8565954669475575, -1.8431608894064067, -1.8262746478402043, -1.8059686093292007, -1.7823032413647217, -1.7553678569031446, -1.7252802850147795, -1.6921859320929036, -1.6562562277166126, -1.6176864814827647, -1.576693208835409, -1.5335110115950812, -1.488389119724238, -1.4415877132402235, -1.3933741467776228, -1.3440191949076374, -1.2937934254861552, -1.242963792904174, -1.1917905250214365, -1.1405243584134261, -1.0894041576765887, -1.0386549369166296, -0.988486285898446, -0.9390911901243464, -0.89064522356216, -0.843306084904395, -0.7972134429689719, -0.75248905388355, -0.7092371116749305, -0.6675447944140451, -0.627482969752831, -0.5891070261694407, -0.5524577992071791, -0.5175625652044196, -0.48443607828499347, -0.45308162957975084, -0.4234921106971534, -0.3956510662992787 ], [ -1.7098113267663158, -1.730317414293046, -1.7487268994715062, -1.7648751242609668, -1.7786029436505189, -1.7897587070517407, -1.7982003159536255, -1.8037973333588013, -1.8064331166365892, -1.8060069407167565, -1.8024360728073496, -1.795657753089951, -1.785631028519129, -1.7723383797613925, -1.7557870756951055, -1.7360101872744786, -1.7130671944613096, -1.6870441275306158, -1.6580531978574689, -1.6262318928593442, -1.5917415336856302, -1.5547653202922813, -1.5155059140638747, -1.4741826305451544, -1.4310283320192418, -1.3862861203319445, -1.3402059341431494, -1.293041152141376, -1.2450452957407085, -1.1964689127561043, -1.147556708961269, -1.098544978600127, -1.0496593689720157, -1.0011129990335692, -0.9531049382153727, -0.9058190397876884, -0.8594231133832464, -0.8140684137820287, -0.7698894177236546, -0.7270038571603827, -0.6855129757413161, -0.6455019751207987, -0.60704061860023, -0.5701839613401185, -0.5349731786572092, -0.5014364665266151, -0.4695899911689436, -0.43943886738673177, -0.4109781480287191, -0.38419380954472215 ], [ -1.6500296594883246, -1.6690442974104585, -1.6860414704330713, -1.7008682155354011, -1.713377133149665, -1.7234282273026944, -1.7308908097771276, -1.7356454443672664, -1.7375859034152294, -1.7366211043359587, -1.7326769887329876, -1.725698301124036, -1.7156502186493412, -1.7025197781395909, -1.6863170435370436, -1.6670759559987745, -1.6448548121017224, -1.6197363231638708, -1.5918272210106574, -1.5612573921059063, -1.5281785416983698, -1.4927624108241782, -1.455198589682282, -1.4156919891260684, -1.3744600462078091, -1.331729748848598, -1.2877345684262584, -1.2427113876200455, -1.1968975049389858, -1.1505277879841478, -1.103832035753805, -1.0570325972539483, -1.010342280265347, -0.9639625711155597, -0.9180821743060126, -0.872875870275345, -0.8285036807038417, -0.7851103236997559, -0.742824935950219, -0.7017610353612045, -0.6620166956707336, -0.6236749037698794, -0.5868040707620248, -0.5514586688867837, -0.5176799681099364, -0.485496848238568, -0.4549266647036778, -0.4259761485329814, -0.3986423234219163, -0.37291342513031145 ], [ -1.5908748616769857, -1.6084561946723874, -1.6240993089004128, -1.6376623937457144, -1.6490092158426157, -1.6580108236778952, -1.6645473046019283, -1.6685095710569038, -1.6698011491222582, -1.6683399383968016, -1.6640599078351452, -1.656912687638575, -1.6468690130601082, -1.6339199726081628, -1.6180780113632625, -1.5993776407479228, -1.5778758098182037, -1.5536519004264662, -1.5268073194962586, -1.497464675727025, -1.4657665443969998, -1.4318738412774712, -1.3959638435220358, -1.3582279103051267, -1.318868967744581, -1.2780988304480898, -1.2361354355402971, -1.1932000643727982, -1.1495146227762143, -1.1052990434060952, -1.0607688642972442, -1.0161330270167568, -0.9715919265681408, -0.9273357341062523, -0.8835430031054485, -0.8403795602698265, -0.797997674446767, -0.7565354902401875, -0.7161167079512194, -0.6768504878473653, -0.6388315544525105, -0.6021404753963793, -0.566844089169763, -0.5329960567097414, -0.5006375128976346, -0.4697977956284394, -0.4404952319570885, -0.4127379628303147, -0.3865247899771971, -0.3618460305890734 ], [ -1.5325247549551813, -1.5487337154614966, -1.5630834823971096, -1.5754428426187734, -1.5856861394234028, -1.5936948475561354, -1.599359189902849, -1.6025797735906953, -1.6032692198057483, -1.6013537580284878, -1.5967747516868631, -1.589490118653594, -1.5794756069181877, -1.5667258836230222, -1.5512553950224233, -1.5330989563707114, -1.5123120347387982, -1.4889706945599175, -1.463171185277849, -1.4350291624264093, -1.4046785470787504, -1.3722700428806287, -1.337969343696733, -1.3019550771586461, -1.2644165391784272, -1.2255512811506206, -1.1855626148086182, -1.1446570995732552, -1.103042074057821, -1.0609232876979748, -1.0185026808949122, -0.9759763532572072, -0.9335327501321697, -0.8913510881877236, -0.8496000317982193, -0.8084366237575382, -0.7680054666359235, -0.728438145061193, -0.6898528743995544, -0.6523543577174109, -0.6160338304495949, -0.580969270761218, -0.5472257530277538, -0.5148559220168039, -0.4839005660834055, -0.45438926884711917, -0.4263411202783056, -0.3997654697759305, -0.3746627055819223, -0.3510250466785505 ], [ -1.4751381306887104, -1.4900376053341695, -1.5031563788780367, -1.5143732745489387, -1.52357261933017, -1.5306456955812804, -1.5354922246597864, -1.5380218613385974, -1.5381556747531646, -1.5358275884957666, -1.5309857494274337, -1.5235937920131817, -1.513631962804495, -1.501098068472336, -1.4860082109511066, -1.4683972751892753, -1.4483191390202048, -1.4258465809086083, -1.4010708697038405, -1.3741010307002455, -1.345062793677665, -1.3140972404077873, -1.2813591805004156, -1.2470152945930253, -1.2112420920408713, -1.1742237359427152, -1.136149791280534, -1.097212952162621, -1.057606801854326, -1.0175236548413518, -0.977152524082519, -0.9366772493867463, -0.8962748150104867, -0.8561138765733367, -0.8163535096298009, -0.7771421850259042, -0.7386169697393214, -0.7009029464020842, -0.6641128402063294, -0.6283468384095732, -0.593692585142817, -0.5602253326028948, -0.5280082288743648, -0.4970927224563704, -0.46751906394457743, -0.4393168861182499, -0.41250584480170827, -0.38709630421026353, -0.36309005197436206, -0.3404810305931578 ], [ -1.4188553153525185, -1.4325093993267317, -1.4444604518168687, -1.4545967708532324, -1.4628120768637027, -1.4690068473517859, -1.4730896749987248, -1.474978629177893, -1.4746025981815942, -1.4719025868192468, -1.466832941583874, -1.459362473495044, -1.4494754472601437, -1.4371724048504801, -1.4224707922723616, -1.405405360503588, -1.3860283154591087, -1.3644091975059176, -1.3406344783547512, -1.3148068718177792, -1.2870443644624996, -1.2574789820137897, -1.2262553167931969, -1.1935288498934185, -1.1594641086113566, -1.124232704506646, -1.0880113000954676, -1.05097955261018, -1.0133180815953569, -0.9752065036520197, -0.9368215727471354, -0.898335458584649, -0.859914188997813, -0.8217162755519398, -0.7838915348793354, -0.7465801119761508, -0.7099117059849205, -0.6740049940097219, -0.6389672443458458, -0.604894107181587, -0.5718695683297881, -0.5399660498205479, -0.5092446401578132, -0.4797554366215784, -0.4515379820867993, -0.4246217793333904, -0.39902686664641585, -0.37476443956930017, -0.3518375049016911, -0.33024155436432934 ], [ -1.3637988723629242, -1.3762722098945988, -1.3871190970357836, -1.3962367496885997, -1.4035276995962032, -1.408901018689578, -1.412273559396077, -1.4135711921723026, -1.412730019201922, -1.4096975409975787, -1.4044337506925137, -1.3969121292705813, -1.3871205140696854, -1.3750618128322039, -1.360754536593772, -1.3442331269905807, -1.3255480572435094, -1.3047656911572574, -1.2819678908361865, -1.2572513712073354, -1.2307268074744444, -1.2025177098303563, -1.1727590876136267, -1.141595932107247, -1.1091815529114974, -1.0756758069585537, -1.0412432615940803, -1.0060513336917987, -0.9702684455881154, -0.9340622359270867, -0.8975978595701104, -0.8610364058679698, -0.8245334591445048, -0.7882378195181956, -0.7522903964685799, -0.7168232820814184, -0.6819590058626994, -0.6478099685361622, -0.6144780484145405, -0.5820543708044861, -0.5506192284693194, -0.5202421394045251, -0.4909820270265264, -0.4628875072681653, -0.4359972669396732, -0.410340517972714, -0.3859375127410283, -0.36280010647241423, -0.34093235376733455, -0.32033112736294855 ], [ -1.3100744107947855, -1.3214316183527188, -1.3312376286688399, -1.3393980276801614, -1.345823588976991, -1.3504313945178716, -1.3531459649200042, -1.353900381904118, -1.3526373834954528, -1.349310410774688, -1.3438845834506106, -1.336337580432965, -1.3266604010890748, -1.314857983143934, -1.3009496543980572, -1.284969397717738, -1.2669659121682528, -1.247002457692909, -1.2251564762747742, -1.2015189888319378, -1.1761937738837467, -1.1492963409063082, -1.1209527178694645, -1.091298078319996, -1.0604752382096043, -1.0286330562042285, -0.9959247733024559, -0.962506328194425, -0.9285346839690862, -0.8941661996767933, -0.8595550770852893, -0.8248519089814255, -0.7902023508303082, -0.7557459327672011, -0.7216150240013541, -0.6879339569587111, -0.654818314049284, -0.6223743759386191, -0.5906987267173243, -0.5598780084441073, -0.5299888152031726, -0.5010977150513527, -0.4732613870034421, -0.44652685946554116, -0.4209318362194854, -0.3965050961236827, -0.3732669530633901, -0.35122976329605216, -0.3303984681372807, -0.31077116086792866 ], [ -1.2577714744944868, -1.2680766422206728, -1.276904325668177, -1.284167945834548, -1.2897859650806562, -1.2936829109161114, -1.2957904039814265, -1.2960481741309495, -1.2944050468577273, -1.2908198808374456, -1.2852624362051919, -1.2777141524381626, -1.2681688145328414, -1.2566330866690338, -1.2431268938653846, -1.2276836343363606, -1.210350208391636, -1.1911868537453736, -1.1702667819097727, -1.1476756157543235, -1.1235106340613976, -1.0978798347050596, -1.0709008336008417, -1.0426996215144342, -1.0134092049048444, -0.9831681600102693, -0.9521191312351693, -0.9204073055221207, -0.8881788938333941, -0.8555796492302419, -0.8227534484849357, -0.7898409608863406, -0.7569784241140851, -0.724296542971461, -0.6919195225780046, -0.6599642435051882, -0.6285395824377495, -0.5977458783723351, -0.5676745412056203, -0.5384077968678591, -0.5100185609460046, -0.48257043101619823, -0.4561177866457664, -0.4307059852006323, -0.4063716411585785, -0.3831429765362624, -0.36104023023444665, -0.3400761145415374, -0.32025630766021895, -0.3015799718897505 ], [ -1.2069644881826103, -1.2162807543332668, -1.2241915241096712, -1.230617534555499, -1.23548440307458, -1.2387235609119251, -1.2402731863744745, -1.24007912300157, -1.2380957665129193, -1.2342869031914403, -1.2286264814905925, -1.2210992981891515, -1.2117015804583224, -1.2004414458546524, -1.1873392235937565, -1.1724276225478811, -1.1557517342549208, -1.1373688627895087, -1.1173481775225538, -1.0957701894324376, -1.0727260565170682, -1.048316728755727, -1.022651947725294, -0.9958491201464466, -0.9680320881050495, -0.9393298212979284, -0.909875058285813, -0.8798029243587269, -0.8492495532542523, -0.8183507386962807, -0.7872406396623153, -0.7560505605947405, -0.7249078246139913, -0.6939347543395284, -0.6632477713432987, -0.6329566216970568, -0.6031637316557459, -0.573963694346938, -0.5454428854868982, -0.5176792036686475, -0.49074192869545863, -0.4646916897721458, -0.4395805341091308, -0.4154520856177959, -0.39234178285025956, -0.3702771851236897, -0.34927833582809376, -0.32935817220402996, -0.3105229713504598, -0.2927728228438451 ], [ -1.1577137401249424, -1.16610293286649, -1.1731567341525093, -1.178802696478832, -1.1829730801629728, -1.1856057029987475, -1.1866447860204357, -1.1860417818524898, -1.1837561709831996, -1.1797562103790322, -1.1740196182269873, -1.1665341783373822, -1.1572982479402318, -1.146321153342507, -1.133623459236441, -1.1192370993967398, -1.1032053590719664, -1.085582702518355, -1.066434442753989, -1.0458362545922564, -1.0238735361795817, -1.0006406284161942, -0.9762399055816613, -0.9507807540197954, -0.9243784586925452, -0.8971530196537292, -0.8692279219335928, -0.8407288829287258, -0.8117826011697786, -0.7825155293506452, -0.7530526928403563, -0.7235165726818171, -0.6940260694449487, -0.6646955613844914, -0.635634067291317, -0.60694452134465, -0.578723164281574, -0.551059052389252, -0.5240336832653685, -0.497720735034215, -0.47218591377938823, -0.44748690237522126, -0.42367340266636266, -0.4007872620460595, -0.3788626748973454, -0.3579264490590248, -0.33799832742751335, -0.3190913549706613, -0.30121228177628745, -0.2843619932493846 ], [ -1.110066383778186, -1.1175887244962994, -1.1238437638093601, -1.128765389366388, -1.132292015485197, -1.1343673552532463, -1.1349411858378142, -1.1339700946917297, -1.1314181934134706, -1.1272577853065042, -1.1214699722436898, -1.1140451863473781, -1.1049836323059479, -1.0942956269207502, -1.0820018237530655, -1.0681333125364931, -1.0527315853244614, -1.035848364112173, -1.0175452878251647, -0.997893459993414, -0.9769728619884108, -0.954871640236304, -0.9316852791682715, -0.907515674674503, -0.8824701253510208, -0.8566602607625378, -0.8302009272135447, -0.8032090520941002, -0.7758025077487225, -0.7480989950509715, -0.7202149655226826, -0.692264599008898, -0.6643588517158632, -0.6366045869524428, -0.6091037982974341, -0.5819529322528671, -0.5552423148293033, -0.5290556840240281, -0.5034698278614029, -0.47855432561303735, -0.4543713880381868, -0.43097579099768635, -0.408414895604857, -0.38672874717709105, -0.3659502446296288, -0.34610537158580756, -0.32721348034259257, -0.3092876198959993, -0.2923348994700754, -0.2763568793736111 ], [ -1.0640574434443002, -1.0707713057211365, -1.076283834671437, -1.0805347944420274, -1.0834682887196871, -1.0850334612993922, -1.085185187597792, -1.083884745940507, -1.0811004567051106, -1.0768082768574037, -1.0709923371309995, -1.063645409122546, -1.0547692899560883, -1.0443750929514808, -1.0324834339395375, -1.0191245045096307, -1.0043380255352572, -0.988173076759332, -0.9706878009630582, -0.951948984194172, -0.9320315165797495, -0.9110177412656502, -0.888996701878066, -0.8660633014658858, -0.8423173880446262, -0.8178627835331826, -0.7928062739946198, -0.7672565796299573, -0.7413233229321441, -0.7151160128155201, -0.6887430614493515, -0.6623108490150842, -0.6359228497626135, -0.6096788306526115, -0.5836741316335119, -0.5579990343009593, -0.5327382234054356, -0.5079703434807843, -0.48376765081961426, -0.4601957591662531, -0.4373134758664483, -0.4151727238245482, -0.3938185434835417, -0.3732891681598418, -0.3536161654253216, -0.3348246368185914, -0.31693346796776645, -0.2999556211933465, -0.2838984628098369, -0.2687641176313047 ], [ -1.0197108113771338, -1.0256725299254537, -1.030496677402285, -1.0341284583269106, -1.0365172259995479, -1.0376171172733553, -1.0373876765539543, -1.035794458924191, -1.0328096016967498, -1.0284123532921121, -1.0225895481693508, -1.0153360166448793, -1.0066549188569491, -0.9965579929015254, -0.9850657082947156, -0.9722073174096357, -0.9580207993717289, -0.9425526930382933, -0.9258578180724093, -0.9079988856708803, -0.8890460031231433, -0.8690760789604146, -0.8481721378931839, -0.8264225569285713, -0.803920235916068, -0.7807617172175383, -0.7570462701844964, -0.7328749566258757, -0.7083496934608251, -0.6835723282967407, -0.658643742791863, -0.6336629974152979, -0.6087265296709474, -0.5839274160832653, -0.5593547063266617, -0.5350928358926335, -0.5112211216981437, -0.4878133431049283, -0.46493740899668645, -0.44265510988836376, -0.42102195255116515, -0.40008707334974236, -0.37989322541488146, -0.36047683391968044, -0.3418681130864918, -0.32409123811439544, -0.3071645649705721, -0.2911008909130808, -0.2759077486899295, -0.261587727565733 ], [ -0.977040225964771, -0.9823039500399791, -0.9864915971759785, -0.989553399157105, -0.9914435442145035, -0.9921207514304182, -0.9915488331163025, -0.9896972360552043, -0.9865415520298391, -0.9820639877651229, -0.9762537843344166, -0.9691075762461683, -0.9606296808700936, -0.9508323096017954, -0.9397356932105585, -0.9273681151647775, -0.9137658483625841, -0.8989729925761658, -0.8830412119947606, -0.8660293744546201, -0.8480030961974148, -0.8290341982138303, -0.8092000823193133, -0.7885830369919924, -0.7672694846011254, -0.7453491829116319, -0.7229143946202969, -0.7000590391409462, -0.6768778409050404, -0.653465488096072, -0.6299158150229751, -0.6063210203054283, -0.5827709317463181, -0.5593523272665537, -0.5361483196364794, -0.5132378110206612, -0.49069502161611367, -0.46858909496213275, -0.446983780878333, -0.4259371954839759, -0.40550165639591307, -0.3857235900148963, -0.3666435068044893, -0.34829603964828837, -0.3307100397402625, -0.313908724012544, -0.2979098678257348, -0.28272603652402384, -0.26836484947545425, -0.2548292703579651 ], [ -0.9360502225638134, -0.9406678086732254, -0.9442685013061323, -0.9468071695725051, -0.9482424468948916, -0.9485372501517364, -0.9476592859307436, -0.9455815356982735, -0.9422827113254637, -0.9377476722094871, -0.9319677952173966, -0.9249412888868316, -0.916673443765305, -0.907176811471236, -0.8964713060215033, -0.8845842221859945, -0.8715501670788905, -0.8574109028491785, -0.8422151001411116, -0.8260180039040004, -0.8088810150730605, -0.7908711935487036, -0.7720606896984616, -0.7525261132249732, -0.7323478496244964, -0.7116093355527886, -0.6903963051834543, -0.6687960200675711, -0.6468964950772633, -0.6247857327518846, -0.602550977787609, -0.5802780025542711, -0.5580504334337271, -0.5359491264992242, -0.5140515996496213, -0.49243152682676206, -0.47115829843065193, -0.45029665054909884, -0.4299063641789669, -0.41004203426781505, -0.39075290717524136, -0.3720827840637124, -0.35406998679184887, -0.3367473821079805, -0.32014245932878493, -0.304277456235176, -0.28916952761747394, -0.2748309507438622, -0.2612693619979043, -0.24848801901565354 ], [ -0.896737050292846, -0.9007579893621713, -0.9038188831131237, -0.9058788710791972, -0.906900666683012, -0.9068510258976363, -0.9057012024786764, -0.9034273824117101, -0.9000110899404132, -0.8954395574097627, -0.8897060511983432, -0.8828101462457172, -0.874757942120924, -0.8655622142367216, -0.8552424946928996, -0.843825078323281, -0.8313429508063468, -0.817835637150699, -0.8033489704430632, -0.7879347824022385, -0.7716505189601905, -0.7545587857345952, -0.7367268298049765, -0.7182259656014844, -0.6991309539100246, -0.679519343949399, -0.6594707891545122, -0.6390663476860088, -0.6183877787778416, -0.5975168458347158, -0.5765346367229278, -0.5555209109865327, -0.5345534828033747, -0.5137076474114495, -0.4930556575304137, -0.4726662550181282, -0.4526042616818564, -0.4329302318468726, -0.41370016800860343, -0.39496529968722505, -0.37677192449257424, -0.35916130941110613, -0.3421696494593456, -0.32582808011924325, -0.3101627393825628, -0.2951948747844819, -0.28094099049509547, -0.26741302935473854, -0.2546185846739617, -0.24256113665981727 ], [ -0.8590895496151523, -0.8625609241344856, -0.8651267576317971, -0.8667501158393256, -0.8673974509319302, -0.8670390241588202, -0.8656493147729356, -0.863207408667392, -0.8596973599196811, -0.8551085183687832, -0.849435816427218, -0.8426800085746731, -0.8348478574059499, -0.8259522607180771, -0.8160123149213063, -0.8050533110354323, -0.7931066606722854, -0.7802097506791847, -0.7664057264945305, -0.7517432057041782, -0.7362759247400008, -0.720062323081404, -0.7031650706570434, -0.6856505453517618, -0.6675882685595815, -0.6490503075545027, -0.6301106540496053, -0.6108445886674618, -0.5913280411438868, -0.5716369559403751, -0.5518466725586784, -0.532031329260279, -0.5122632981191926, -0.49261265841413504, -0.4731467143298984, -0.4539295618266719, -0.4350217083834578, -0.4164797481653777, -0.3983560940325066, -0.3806987667299935, -0.36355124059681376, -0.34695234422333243, -0.3309362136886662, -0.3155322953275208, -0.30076539441730454, -0.28665576574056906, -0.27321924166308076, -0.26046739316823286, -0.2484077191959475, -0.23704385963888241 ], [ -0.8230899868678934, -0.8260564539102995, -0.8281695460944376, -0.8293959332602574, -0.8297054882644985, -0.8290716677138408, -0.8274718789387512, -0.8248878273118811, -0.8213058378635667, -0.8167171451145261, -0.8111181451484102, -0.804510604196101, -0.7969018184100847, -0.7883047200730204, -0.7787379262088858, -0.7682257264392984, -0.756798007935034, -0.7444901164333468, -0.7313426534926515, -0.7174012114075112, -0.702716048465478, -0.6873417084571698, -0.6713365895064645, -0.6547624683347257, -0.6376839869724855, -0.6201681096583695, -0.6022835581943025, -0.5841002343454735, -0.5656886379776751, -0.5471192895167472, -0.5284621650054631, -0.5097861515402129, -0.49115853021662215, -0.472644492925957, -0.45430669845422167, -0.4362048723725096, -0.4183954542026287, -0.40093129432503005, -0.3838614020943807, -0.36723074566580927, -0.351080103133238, -0.3354459637569369, -0.32036047732440354, -0.3058514490553561, -0.2919423769344822, -0.2786525279362497, -0.26599704929321777, -0.25398711075005864, -0.2426300736326812, -0.23192968253804058 ], [ -0.7887148430425766, -0.7912186394159497, -0.7929189072558178, -0.7937856198663573, -0.7937917750063606, -0.7929137375436401, -0.7911315684654325, -0.7884293349779494, -0.7847953963220742, -0.780222659932936, -0.7747088026905622, -0.7682564522570265, -0.7608733238781751, -0.7525723085489064, -0.7433715090946271, -0.7332942215024274, -0.7223688597269937, -0.710628823180756, -0.6981123071683375, -0.6848620576143605, -0.6709250725281664, -0.6563522537138049, -0.6411980132376165, -0.6255198400724788, -0.6093778331225024, -0.5928342074662811, -0.575952781125592, -0.5587984499550942, -0.5414366583537475, -0.5239328734214261, -0.5063520699327091, -0.4887582330886031, -0.47121388545394294, -0.4537796438165198, -0.4365138109371687, -0.4194720063259554, -0.4027068393022233, -0.3862676267028924, -0.3702001567172273, -0.35454649946843175, -0.33934486415240994, -0.32462950179791683, -0.31043065204122855, -0.2967745317234314, -0.28368336262403226, -0.2711754352446678, -0.2592652052507356, -0.24796341896461915, -0.237277264177862, -0.2272105425032358 ], [ -0.7559355551057005, -0.7580165212555932, -0.7593415145830582, -0.7598835318659682, -0.7596184213034503, -0.758525190611899, -0.7565863017284755, -0.7537879474225364, -0.7501203050463399, -0.7455777626811602, -0.7401591130652592, -0.7338677109321423, -0.7267115897458711, -0.7187035342964236, -0.7098611062078084, -0.70020662010762, -0.6897670689958069, -0.678573998215698, -0.6666633283498886, -0.6540751283134607, -0.6408533408682922, -0.6270454637085747, -0.612702190138537, -0.5978770141526719, -0.5826258054122759, -0.5670063601685225, -0.5510779345962111, -0.5349007672638446, -0.5185355975682859, -0.5020431869091448, -0.4854838491735929, -0.4689169967580482, -0.45240070788514175, -0.4359913203993617, -0.4197430565644129, -0.4037076826614374, -0.38793420642138643, -0.3724686145398588, -0.3573536517386713, -0.34262864207494625, -0.3283293524718902, -0.31448789777083674, -0.3011326859926966, -0.2882884019577383, -0.27597602695217494, -0.26421289175121654, -0.25301276001246276, -0.24238593883936077, -0.23233941317844464, -0.2228770006517391 ] ], "zauto": true, "zmax": 2.9233944518313213, "zmin": -2.9233944518313213 }, { "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.18671837269794125, 0.17363399192466128, 0.1620738788979525, 0.15219707793279, 0.14410384633855264, 0.1378142944963516, 0.13325774239801205, 0.13027988546760777, 0.12866870626529595, 0.12819216673511924, 0.12863633950370876, 0.1298340821809601, 0.1316793043403225, 0.13412665294238527, 0.13717932888015932, 0.14086912419510128, 0.14523348748280698, 0.1502946642294636, 0.156045291509261, 0.16244298347203265, 0.16941388871305652, 0.17686293673749864, 0.18468734287361718, 0.19279004845690464, 0.2010906899414084, 0.20953282741350807, 0.218087124274657, 0.22675082180494494, 0.2355442258299721, 0.24450509893697173, 0.25368189763678944, 0.26312674714717443, 0.27288892537569237, 0.2830094466831308, 0.2935171160344973, 0.30442619437272433, 0.3157356086661451, 0.3274294819658576, 0.3394786646792204, 0.3518429182921219, 0.36447342510047903, 0.37731535381267844, 0.3903102822729941, 0.40339834981191, 0.4165200731252169, 0.42961780668684857, 0.44263686105172473, 0.45552631191000337, 0.468239542317809, 0.48073456313161145 ], [ 0.17829795141601718, 0.16465581425044468, 0.15253051508962134, 0.1420971603997479, 0.13347432225520625, 0.12669836758324396, 0.12170759243489664, 0.11834590256196796, 0.11638931573848627, 0.11558837191315936, 0.1157128222154344, 0.11658593235932865, 0.1181018072690926, 0.12022517817162852, 0.12297663058552462, 0.12640797748762275, 0.1305736913843612, 0.13550507379257426, 0.14119318710604825, 0.1475839141549073, 0.15458468926623883, 0.16207925085505578, 0.16994548914355528, 0.17807207478695275, 0.18637112950197296, 0.19478580064166365, 0.20329275852044335, 0.2119003046740615, 0.22064310374803844, 0.22957467805721077, 0.23875881585230313, 0.24826096931027178, 0.258140558672527, 0.26844486112704163, 0.27920487204011557, 0.2904332249415744, 0.302123993790878, 0.3142540148429489, 0.3267852729144586, 0.33966789179842616, 0.35284332798729756, 0.3662474612987795, 0.37981337877885596, 0.39347374070724767, 0.4071626900273544, 0.4208173167797029, 0.4343787194555337, 0.44779272001136033, 0.4610102933263939, 0.47398776923902447 ], [ 0.1719299311908707, 0.1578227415230296, 0.1452059422147366, 0.13426397361652298, 0.1251287645786178, 0.11785146941319022, 0.11238218938163262, 0.10856940475601927, 0.10618506449282118, 0.10496959175743821, 0.10468186058446535, 0.10513896200891662, 0.10623720795975344, 0.10795289385645422, 0.11032551283454557, 0.11342835786627975, 0.11733356469282213, 0.12208044304714888, 0.1276554780276536, 0.13398851071470377, 0.1409638763814255, 0.1484408383678856, 0.15627644010683933, 0.164345408018159, 0.17255422766096362, 0.1808486145379713, 0.18921486731109446, 0.19767618575329407, 0.2062852636554731, 0.2151145393985137, 0.22424548276909823, 0.23375821036291877, 0.24372252564015057, 0.25419116812057374, 0.265195665343917, 0.27674478028847793, 0.28882521229202535, 0.3014039959247395, 0.31443196622820974, 0.3278476999444524, 0.341581458687716, 0.3555588059300905, 0.36970370955414084, 0.3839410549879401, 0.3981985736389598, 0.41240823968616486, 0.42650721191367114, 0.4404384037971851, 0.45415076117569775, 0.46759931758946083 ], [ 0.16766055673601682, 0.1531994133214515, 0.14018744369500225, 0.1288103799806408, 0.11920605716927905, 0.11143586209447702, 0.10546208176565286, 0.10114350958157141, 0.09825736317991929, 0.09654386370979312, 0.09575887305630588, 0.09571797445065998, 0.09632151486908619, 0.09755754575252998, 0.09948420114456095, 0.10219598237087685, 0.10578198088342607, 0.11028761448782973, 0.11569148910786001, 0.1219034271883643, 0.12878124676980984, 0.1361578714443851, 0.14386954021266796, 0.15177878366765268, 0.15978944944604034, 0.1678535937197206, 0.1759712825297003, 0.1841847645816803, 0.19256858280751843, 0.20121723747653625, 0.21023203722350964, 0.21970870781194307, 0.22972709576238903, 0.2403438870344989, 0.251588721413074, 0.26346353924070837, 0.2759445710034199, 0.28898614792808924, 0.3025254804698689, 0.3164876722940193, 0.3307904367198344, 0.3453481937175493, 0.36007540484749384, 0.374889132664153, 0.3897108902060488, 0.40446788502422915, 0.4190937732258012, 0.43352903339608234, 0.4477210563665634, 0.4616240300832834 ], [ 0.1654472610233915, 0.1507475213483872, 0.13744584655250247, 0.12572181414235326, 0.11571131464249934, 0.10747985651573164, 0.10100010416786691, 0.09614517000492097, 0.09270649386845405, 0.09043493890728187, 0.08909256149045133, 0.08849877828598657, 0.08855914702390714, 0.08927164943057171, 0.09070991300195057, 0.09298644004621098, 0.09620437494403261, 0.10041240959257024, 0.10557845049258838, 0.11159002843881863, 0.11827747704875381, 0.12544811089110414, 0.1329196386398499, 0.14054575125951244, 0.14823163215729382, 0.15593993935571165, 0.16368883181537436, 0.17154378451831598, 0.17960494001104793, 0.18799182996732217, 0.19682742572814985, 0.20622347477621714, 0.21626880351548416, 0.2270216859959707, 0.2385066089201594, 0.2507150123123978, 0.2636090483830585, 0.2771271760693471, 0.2911904724480642, 0.30570879108865157, 0.32058621061549736, 0.33572550311738186, 0.3510315658397281, 0.36641389282414993, 0.38178822927105005, 0.39707757096291135, 0.412212663210899, 0.4271321327228582, 0.44178236064713194, 0.45611718086594083 ], [ 0.16516818336850933, 0.1503341432199683, 0.13684089915507178, 0.12485656897786059, 0.11450911789111126, 0.10586296277595728, 0.09889882122293542, 0.09350648810410289, 0.08949875507080508, 0.08664683424429559, 0.08472783188932696, 0.08357009693413522, 0.0830845042241, 0.0832746163325028, 0.08422250652353044, 0.08605110048216817, 0.08887127758761136, 0.09273094625851117, 0.09758583769058958, 0.10330219922435055, 0.10968593162825323, 0.11652310510391851, 0.12361778900112605, 0.13081968504745867, 0.13803988503028033, 0.1452559533773668, 0.15250825816554042, 0.15988940914718994, 0.16752863566613024, 0.175573171678776, 0.18416904975214687, 0.19344382947312827, 0.20349344275024986, 0.21437449139963594, 0.22610220298290024, 0.2386532041434945, 0.2519716146277573, 0.2659768066487647, 0.2805714154600193, 0.2956486287190495, 0.3110982389266802, 0.3268113042687347, 0.3426834947757186, 0.3586173179152303, 0.3745234544568562, 0.3903214252079938, 0.4059397770930006, 0.4213159387263841, 0.4363958594276223, 0.45113351504827764 ], [ 0.16664736918647624, 0.15176137648328347, 0.13815474911084907, 0.12598155920114237, 0.1153589563332016, 0.10634771846106537, 0.09893555084931725, 0.09303061747432405, 0.08847203912793819, 0.08505865001443591, 0.08258973461239175, 0.08090671033815035, 0.07992485333473547, 0.07964678676416598, 0.08015209872817021, 0.08156155928594648, 0.0839830946026326, 0.08745796656760982, 0.09192977976880416, 0.09724847032774561, 0.10320320465560832, 0.10956703339109243, 0.116137715514513, 0.12276689562379743, 0.12937626942228625, 0.1359622214033726, 0.14259089357845053, 0.14938543766765827, 0.1565072639042362, 0.16413362563815165, 0.1724345725927644, 0.1815526424680184, 0.19158820836082718, 0.20259211638730992, 0.2145655574244869, 0.2274656605248013, 0.2412145424580041, 0.25570956979083076, 0.2708331312488282, 0.28646092702796844, 0.3024683988045694, 0.3187353399243994, 0.33514894286879315, 0.35160561464873297, 0.3680118802218746, 0.3842846451142249, 0.4003510293046941, 0.4161479294024267, 0.43162142077065263, 0.4467260763966288 ], [ 0.1696876534870014, 0.15480703480029648, 0.14114114979606027, 0.12882985484094805, 0.1179795248912884, 0.10864757836029065, 0.1008294292192905, 0.0944532627950831, 0.08938765720230943, 0.08546363406526854, 0.08250748856662604, 0.08037663962013689, 0.07898942921889174, 0.07834037930761174, 0.07849381361035122, 0.07955256019830986, 0.08160742254623259, 0.08468512954819492, 0.08871767267419896, 0.09354614925847544, 0.09895384761609734, 0.10471161805379553, 0.11061973835609516, 0.11653817678074245, 0.12240362935061369, 0.12823451685933004, 0.13412552374805134, 0.1402330590519983, 0.14675329514912794, 0.15389543085817667, 0.161854089107035, 0.17078544778088547, 0.18079107903021616, 0.19191149232712512, 0.20412883292613382, 0.21737619151567925, 0.23155021296803271, 0.24652408348397084, 0.2621589763508477, 0.27831307921936754, 0.29484809154531805, 0.31163350543556056, 0.32854914141297287, 0.3454864100950497, 0.36234869797246205, 0.3790511834980935, 0.3955203046947759, 0.41169303091529486, 0.4275160401905636, 0.4429448672549869 ], [ 0.17410105460939695, 0.159262397799192, 0.14557162342574997, 0.13315587168596058, 0.12211271020338503, 0.11249825982486363, 0.10431740180794416, 0.09751971904829267, 0.09200465145904552, 0.08763737041983292, 0.08427359340322359, 0.08178838865445805, 0.08010202438369622, 0.0791950893997206, 0.07910553227354897, 0.07990360600048571, 0.08164897856603759, 0.08434526415651138, 0.08791238840156913, 0.09218936199020365, 0.09696411299701177, 0.10201598092157063, 0.10715641509996852, 0.11225967743388802, 0.11728114332702169, 0.12226350651414844, 0.12733165989724604, 0.1326769426433669, 0.13853203409771137, 0.14513941733878452, 0.15271845429092495, 0.16143737545828968, 0.17139563194574986, 0.18261902303189895, 0.19506622921472813, 0.20864272031667902, 0.2232173930956416, 0.23863831710791295, 0.2547455992418548, 0.2713807862121646, 0.28839308721113543, 0.30564306392960505, 0.3230044842321075, 0.3403649360940753, 0.35762565604943375, 0.37470089318916194, 0.3915170238429388, 0.4080115550076938, 0.4241321015652512, 0.43983538727017674 ], [ 0.17972928823296438, 0.16495689479461176, 0.15126487783953751, 0.13877002167228134, 0.12756382909599354, 0.1177036549175289, 0.10920549800108911, 0.1020407691216737, 0.09613929737351146, 0.09139983536206736, 0.08770746619209216, 0.08495509708432927, 0.08306415809482136, 0.08199808988152549, 0.08176198083418819, 0.08238443294116694, 0.08388464163872711, 0.0862365892556833, 0.08934662985129148, 0.09305528522887221, 0.09716200853093922, 0.10146232963560547, 0.10578544198946872, 0.11002439789751657, 0.11415561816151751, 0.11824683088775606, 0.12245307688915849, 0.12700045995799142, 0.13215823914168043, 0.13820229384537122, 0.1453762854284695, 0.15385898730296646, 0.16374516279966891, 0.17504289095368777, 0.18768478679585457, 0.2015471416300391, 0.21647078107838297, 0.232279382471809, 0.24879338944919915, 0.2658394156154267, 0.28325590633401665, 0.30089606102804806, 0.3186289195898777, 0.3363393061702226, 0.3539271143769733, 0.3713062507564237, 0.3884034337251559, 0.40515696489220315, 0.42151553833709915, 0.43743712166931964 ], [ 0.18645202161510813, 0.17176684691532154, 0.15809594290145426, 0.14554828907350637, 0.13421195759116364, 0.12414757794014553, 0.11538299074865996, 0.10791045326373257, 0.10168777794364953, 0.09664438331465383, 0.09269233526876003, 0.08974106473880873, 0.0877126850466852, 0.0865531277230178, 0.08623369647153577, 0.08673959153449771, 0.08804721224203207, 0.09009871177143246, 0.09278574172661042, 0.09595100487294468, 0.09940797290714491, 0.10297189715303473, 0.1064931000295397, 0.10988562019277771, 0.11314735894102705, 0.11636973551097425, 0.11973528198169858, 0.12350165658158785, 0.12797169189169946, 0.13345230483697854, 0.14020976103162427, 0.14843214835349489, 0.15820871895900696, 0.16952960957440688, 0.182302006162943, 0.19637457498062014, 0.21156233063890162, 0.22766716270427473, 0.2444924450894488, 0.26185218870252985, 0.2795760127121099, 0.2975112668299565, 0.3155233784854148, 0.33349518339961687, 0.3513257325195, 0.3689288765210509, 0.3862318020074407, 0.40317361388745815, 0.4197040105825563, 0.43578207106319233 ], [ 0.1941846583338982, 0.1796111361490537, 0.16598926763860825, 0.15342250448559772, 0.14199750106339376, 0.1317792494642674, 0.12280693893644944, 0.11509126352628458, 0.10861397091554788, 0.10333039289466274, 0.09917539503028187, 0.09607242749980414, 0.09394403798636349, 0.09272063538564512, 0.09234344117159737, 0.09275872003754451, 0.09390405583933684, 0.095692204335477, 0.09800078397933004, 0.1006743529039687, 0.10354013673341551, 0.10643339961977857, 0.10922610774438676, 0.11185318030810819, 0.11433239341050627, 0.11677519974195123, 0.11938590572606138, 0.1224465762249305, 0.12628621353652877, 0.1312365065771781, 0.13758234072682335, 0.14551994976301652, 0.15513459685520478, 0.16640209262437275, 0.17920908459765594, 0.1933819508429683, 0.20871500171905624, 0.2249927777866559, 0.24200515689637558, 0.25955624250578585, 0.27746873978699677, 0.2955854187215944, 0.31376886739000354, 0.3319003382782576, 0.34987818203508436, 0.3676161541639906, 0.3850417489328246, 0.4020946366516074, 0.4187252359656785, 0.43489342862625796 ], [ 0.20286947377628586, 0.18843912634470117, 0.17490294613932938, 0.16236059144933646, 0.15089848663736616, 0.14058604824379126, 0.13147221977528878, 0.1235826457336753, 0.11691792488223639, 0.11145352446565357, 0.10714197904032767, 0.10391767304429132, 0.10170359202641731, 0.10041809766369555, 0.09997882530488568, 0.10030129151790083, 0.10129218865976582, 0.10284067681286051, 0.10481316035554589, 0.1070563690500676, 0.10941033696136167, 0.11172916841319434, 0.11390531953974294, 0.11589293802030014, 0.11772660709585929, 0.11953243231785049, 0.12152832049930654, 0.12401008791066516, 0.12732112442061283, 0.1318072437413044, 0.13776489754154564, 0.14539661037188562, 0.1547870294045152, 0.165904824591907, 0.17862505304502008, 0.1927606917978814, 0.2080930243879096, 0.22439524600610475, 0.2414480767555016, 0.25904863173564874, 0.2770145189295438, 0.29518494132121875, 0.3134201007039519, 0.33159974501642336, 0.3496213626447657, 0.3673983045831592, 0.3848579794790798, 0.40194018800701337, 0.4185956197228889, 0.43478451301443377 ], [ 0.21246409571739822, 0.19821604049901217, 0.18481068616578186, 0.1723449820342577, 0.1609054919363649, 0.15056525177964022, 0.1413806003682824, 0.1333881019890747, 0.12660182331961858, 0.12101146752554712, 0.11658208078226227, 0.11325596637133248, 0.1109568209973859, 0.10959502530689141, 0.10907207450132902, 0.10928218460459314, 0.11011057951702258, 0.11143026349226409, 0.1131008020496428, 0.11497255171706675, 0.1168978761950828, 0.11874835292632722, 0.1204351703204644, 0.12192934051170946, 0.1232785301120734, 0.12461745399012406, 0.12616850543625402, 0.12822903367962396, 0.13114267310458455, 0.13525582796911495, 0.1408668232393123, 0.14818114220102369, 0.15728635014273887, 0.16815271255037495, 0.1806548626623166, 0.19460343212671644, 0.20977605449042044, 0.22594170681352987, 0.24287691696950503, 0.2603750028893671, 0.2782503416957034, 0.29633950806486314, 0.3145006379193655, 0.3326119008827848, 0.3505696100760075, 0.36828626342635745, 0.3856886674242444, 0.4027162115588242, 0.41931931629445796, 0.4354580540069914 ], [ 0.22293046377819362, 0.20890962647111155, 0.1956861111326872, 0.18335460941951418, 0.17200151289643947, 0.1617020772590049, 0.1525173222719853, 0.14449069906865247, 0.13764472637373917, 0.13197807330630218, 0.12746383269816267, 0.12404975188986557, 0.12166074783704636, 0.12020316764748319, 0.11956940882391293, 0.11964134353116715, 0.12029186107631487, 0.12138540349540487, 0.12277967864933761, 0.12433091675721311, 0.12590394713218508, 0.12738667739453666, 0.1287071451373028, 0.12985061560126948, 0.13087402119961328, 0.13191490527944258, 0.13319169781823714, 0.13499195644059012, 0.13764615398688626, 0.141487864581864, 0.14680681297003742, 0.15380659670644478, 0.16257952880470022, 0.17310488167563978, 0.18526736855222117, 0.1988862764577251, 0.21374528982550767, 0.2296167669114285, 0.2462784763846653, 0.2635235214449698, 0.28116521156828933, 0.2990386427580138, 0.3170003480294022, 0.33492693702828674, 0.35271329129812884, 0.37027063984062863, 0.3875246873775799, 0.4044138775246874, 0.4208878223236311, 0.4369059025483351 ], [ 0.23422619737891864, 0.22048027694904868, 0.20749176414669795, 0.19535301831065857, 0.1841494743415248, 0.17395691868364724, 0.16483836446617728, 0.15684054780711412, 0.1499902490359443, 0.14429091129496122, 0.139720278215905, 0.13622981223393474, 0.13374631839735168, 0.13217551698471483, 0.1314066093124113, 0.13131664390332265, 0.13177399291609643, 0.13264128537267258, 0.13377909537406663, 0.1350519386675195, 0.13633752237828378, 0.13753908015646846, 0.13859956636686233, 0.1395158093784788, 0.1403503824767328, 0.14123868881506688, 0.14238845506917655, 0.14406877127464732, 0.14658674473125916, 0.15025258250840362, 0.15533842320105412, 0.1620405456795846, 0.1704553797472902, 0.18057525379904923, 0.19230230892624536, 0.20547322370541896, 0.21988619945166846, 0.23532416201243755, 0.251571656103501, 0.26842550949990135, 0.28570056709269553, 0.30323202483244, 0.3208756522527022, 0.3385068292904845, 0.35601899954629146, 0.37332190358846745, 0.39033979727714607, 0.40700976147138634, 0.42328015129469193, 0.4391092004492566 ], [ 0.24629916781910843, 0.23287530971314707, 0.22017334755476634, 0.20828286876987467, 0.19728732521389025, 0.1872613346118955, 0.1782675347832317, 0.1703530414078679, 0.16354573736365832, 0.15785085559674383, 0.15324851506677678, 0.14969288730160776, 0.14711339812297783, 0.1454178427229715, 0.14449675073622728, 0.14422811319975568, 0.14448186880724698, 0.14512421793430766, 0.14602249130608644, 0.1470515350840348, 0.1481022381454524, 0.14909210549502477, 0.14997701174372097, 0.15076268481551441, 0.15151408879818767, 0.15236058822351456, 0.15349455804182757, 0.15516118669118475, 0.15763811445105907, 0.1612057626699056, 0.16611260342361023, 0.17254280567840283, 0.18059442488079896, 0.190273275310973, 0.20150214811045888, 0.21414029499824017, 0.22800644245844734, 0.24289992461216844, 0.25861710734614946, 0.2749625348428661, 0.2917555281985403, 0.3088334118309823, 0.3260524930678359, 0.34328767633972695, 0.36043132748173606, 0.3773917852019699, 0.3940917597439871, 0.4104667546071137, 0.42646358189596384, 0.44203900280705305 ], [ 0.2590852080607021, 0.24602707482886466, 0.23365850431957505, 0.22206568372318622, 0.21132902319263247, 0.20152047391140965, 0.1927004218014717, 0.18491424690928657, 0.1781887973960278, 0.1725292131964405, 0.1679166717686914, 0.16430761666654464, 0.16163480388481374, 0.15981010280800656, 0.1587285877716615, 0.15827327280303058, 0.15832000053297848, 0.15874241851150186, 0.159417411049184, 0.1602315354550143, 0.16108882395787047, 0.1619198457693309, 0.16269137517772478, 0.16341553997121055, 0.16415697473446766, 0.16503625267955982, 0.16622774604262872, 0.1679502500297753, 0.17044952474460473, 0.17397363260926196, 0.17874439587549576, 0.1849305241955462, 0.1926285317292263, 0.2018556121718652, 0.21255487337195442, 0.22460972644777616, 0.23786249906267823, 0.252132784707257, 0.267232716398777, 0.2829781250628412, 0.29919576692140726, 0.31572738563437475, 0.332431498450542, 0.3491836850104121, 0.3658759707333505, 0.38241571613678743, 0.3987242795259504, 0.41473561712397944, 0.43039491526673324, 0.4456573048735997 ], [ 0.27250836817234936, 0.25985398196121007, 0.2478588472882758, 0.23660509131490656, 0.22616914974971897, 0.21661913736077, 0.20801186119959336, 0.2003895998695388, 0.19377690424811203, 0.18817781193512859, 0.18357395144487373, 0.1799239775532346, 0.1771645938265354, 0.1752131228075236, 0.1739712962704169, 0.17332979813830748, 0.1731731765489502, 0.17338499898840276, 0.1738533994784674, 0.17447729071214688, 0.17517340465129938, 0.17588402154638, 0.17658486228635764, 0.17729225758648837, 0.17806842181018365, 0.1790234691496085, 0.18031276685249217, 0.18212845753856494, 0.18468469406571608, 0.18819743442896564, 0.19286136013339802, 0.19882798194577841, 0.20618940054432736, 0.21497095756949658, 0.22513351237576104, 0.2365834793334599, 0.24918722093415338, 0.26278630918381923, 0.27721112085725097, 0.29229149490812906, 0.30786421534754077, 0.3237776972512854, 0.3398944969537533, 0.35609227639949825, 0.37226375070491896, 0.38831601766555324, 0.4041695483583828, 0.4197570233408363, 0.4350221301971309, 0.4499183910426295 ], [ 0.2864829089112201, 0.27426336859804296, 0.26267384941499117, 0.25179184367692165, 0.24168910014260814, 0.23242909976895562, 0.22406426222017448, 0.21663302680421145, 0.21015705423597, 0.2046388890513863, 0.20006046538107097, 0.1963827916647173, 0.19354700036655706, 0.1914767322179332, 0.19008162050760655, 0.18926153706492244, 0.18891130159449224, 0.18892570720469393, 0.1892048815891728, 0.18966008046287436, 0.1902199411637507, 0.19083702468215677, 0.1914942073252026, 0.19221021812779585, 0.19304340378569207, 0.1940926757270102, 0.1954946083593684, 0.1974159061760292, 0.2000410470831822, 0.203555875033923, 0.20812909919730313, 0.21389465008888348, 0.22093811375943265, 0.22928968959107163, 0.23892448630328378, 0.24976915811013625, 0.26171263217173174, 0.2746183517302039, 0.2883359164607138, 0.3027108250544442, 0.31759182289689186, 0.3328359218857164, 0.3483114579242573, 0.3638996469440633, 0.3794950760651218, 0.39500548969237603, 0.4103511423209145, 0.42546391089933533, 0.44028629685282344, 0.45477040151310133 ], [ 0.3009162404668347, 0.2891552315780895, 0.27799543066837873, 0.2675092740502975, 0.2577633663203005, 0.2488161121291894, 0.2407151698616834, 0.23349487771990826, 0.22717387798162017, 0.2217532242253617, 0.21721527144196096, 0.2135235980713132, 0.2106240905132854, 0.20844716300237817, 0.20691094154823164, 0.20592516342941922, 0.20539555806051782, 0.20522855951014285, 0.2053362970936388, 0.20564185378926875, 0.20608473527384616, 0.20662635933799403, 0.2072551923883715, 0.20799097279341325, 0.2088873112671097, 0.2100318846015817, 0.2115434882510847, 0.21356544664562632, 0.21625535155889486, 0.21977180311070954, 0.22425963894727383, 0.22983579009514307, 0.2365780781351741, 0.24451877655664947, 0.2536437001510349, 0.26389634598530237, 0.2751856502819955, 0.28739552935974677, 0.3003945300113511, 0.31404440730123573, 0.32820701696712123, 0.3427493775062848, 0.3575470564638415, 0.37248617859237154, 0.38746438660492094, 0.4023910563497944, 0.41718701339779474, 0.4317839390367083, 0.44612360123697153, 0.460157004048127 ], [ 0.3157121606280106, 0.30442608238431546, 0.2937124273580929, 0.2836383342671125, 0.27426505231262394, 0.2656457674865803, 0.2578233336203717, 0.25082805467214425, 0.24467571690428083, 0.2393661034994404, 0.23488222227539649, 0.23119042820311636, 0.22824152971306338, 0.22597285289248334, 0.22431113493285615, 0.22317605990114237, 0.22248424959305863, 0.22215356589359833, 0.22210763313078669, 0.22228050991581652, 0.2226214056036328, 0.22309924694700875, 0.22370677675198256, 0.22446373946452636, 0.2254186114200492, 0.226648299412126, 0.22825529734017608, 0.23036199540969474, 0.23310220345925342, 0.23661045848056472, 0.24101024079439456, 0.24640265297604388, 0.2528572287358367, 0.2604062231418069, 0.26904304548994346, 0.27872465390048284, 0.2893770201649639, 0.3009023967693139, 0.31318711453033643, 0.3261089066459654, 0.33954313496144345, 0.3533676534068504, 0.3674663097535111, 0.38173124477192316, 0.39606421594003033, 0.41037718072609314, 0.42459234945102164, 0.43864187946771915, 0.4524673427028955, 0.46601906337957255 ], [ 0.3307739415467232, 0.3199724522532086, 0.30971447280117037, 0.30006177669736067, 0.2910702564655839, 0.28278796734552464, 0.27525314446738763, 0.268492328839411, 0.262518771593743, 0.2573313026639834, 0.25291383887576135, 0.24923566233253405, 0.2462525278974417, 0.24390857428964205, 0.24213893897541375, 0.2408729320947144, 0.24003761647518415, 0.23956166027400336, 0.23937935427682014, 0.23943469331421963, 0.23968539515505438, 0.24010666970082578, 0.2406944690914265, 0.24146786670496886, 0.24247015492074897, 0.2437682443842774, 0.2454500183368527, 0.24761946741369986, 0.2503897109721931, 0.25387437613465336, 0.2581781855244582, 0.26338788896586035, 0.26956474687604587, 0.27673956725989035, 0.28491084476024264, 0.294045978515933, 0.30408502945601157, 0.31494615604603926, 0.3265317900816698, 0.3387347401097153, 0.3514436486911991, 0.3645474890919175, 0.3779390047765635, 0.3915171451913192, 0.4051886348406833, 0.4188688445303397, 0.43248213201838503, 0.4459617997334815, 0.45924979063914284, 0.472296216362082 ], [ 0.3460069994333779, 0.3356938015040756, 0.3258950869677381, 0.3166673458957424, 0.3080612753083246, 0.3001200483068155, 0.2928776096406254, 0.2863571180582657, 0.2805696766188703, 0.2755134978170893, 0.271173634910347, 0.2675223726487302, 0.2645203146279712, 0.2621181419576611, 0.2602589631125293, 0.25888113946375224, 0.25792145907947617, 0.25731853710455416, 0.257016331164391, 0.2569676601386064, 0.2571375946491825, 0.2575065468724478, 0.258072833969315, 0.25885443824259635, 0.259889656409686, 0.2612363397984039, 0.2629694954578668, 0.26517715826627175, 0.26795465612711156, 0.27139765198109295, 0.27559460774683014, 0.2806195050231283, 0.2865257040250075, 0.2933416860788217, 0.30106912378009437, 0.3096833332032352, 0.3191357913239802, 0.32935814237168576, 0.3402670142516676, 0.35176900966114466, 0.36376537704931977, 0.3761560446305639, 0.38884286827247766, 0.40173207415030926, 0.4147359618499857, 0.427773977989243, 0.44077328481631484, 0.45366894359222126, 0.46640381783635937, 0.4789282829778039 ], [ 0.36132102822306694, 0.3514947534356787, 0.342153950908629, 0.3333500253997411, 0.3251287537975532, 0.31752877583230055, 0.3105801492382645, 0.3043030734123572, 0.29870689712533866, 0.29378952483122145, 0.2895373194141027, 0.2859255669084772, 0.2829195251167769, 0.28047603101892593, 0.2785456006192693, 0.2770749265742623, 0.2760096658170447, 0.2752974077339792, 0.2748907151957584, 0.27475012700545676, 0.2748469951759993, 0.27516600343444425, 0.27570717994152655, 0.27648718765328706, 0.277539663176202, 0.2789143933669008, 0.2806751806300766, 0.2828963598704004, 0.28565808906201945, 0.2890407229848951, 0.29311876069452186, 0.29795498517060093, 0.3035954438934169, 0.3100658277449932, 0.31736960314446055, 0.32548798481917207, 0.3343815705322757, 0.34399325646672124, 0.35425194897941953, 0.3650765874191286, 0.3763800689527674, 0.3880727831324618, 0.4000655869255115, 0.41227215662446587, 0.424610730518292, 0.4370053044038827, 0.44938636567662704, 0.4616912577085344, 0.47386426112031493, 0.4858564676510169 ], [ 0.3766315793330251, 0.36728667728873954, 0.3583984417779192, 0.350013472608265, 0.342172973261031, 0.33491145091097607, 0.3282555060613389, 0.32222279986381425, 0.31682129244442836, 0.3120488408008668, 0.30789322856762047, 0.3043326729855824, 0.30133682023678565, 0.2988682044183678, 0.29688411381188573, 0.29533878520065965, 0.29418583408585536, 0.2933808234307288, 0.2928838711180337, 0.2926621912605692, 0.2926924533151131, 0.29296282551543085, 0.2934745492720473, 0.29424287602470445, 0.29529719679236927, 0.296680216955761, 0.29844608248647975, 0.30065745224645646, 0.3033816298146009, 0.30668600313232774, 0.31063316652989786, 0.3152761868176494, 0.3206544950556011, 0.32679082350265115, 0.3336894694779787, 0.3413359826980793, 0.3496981818304308, 0.3587282506812224, 0.36836557196469133, 0.3785399340653719, 0.3891747823841199, 0.40019025999975943, 0.41150586913124726, 0.4230426667643672, 0.4347249738489582, 0.4464816237685585, 0.45824680339005264, 0.46996055257891234, 0.4815689900285578, 0.49302432863539813 ], [ 0.3918611302081599, 0.3829886998292414, 0.37454454828803735, 0.36657080226043937, 0.35910447515211985, 0.35217635895496113, 0.3458100205366434, 0.3400209757280947, 0.3348161157927755, 0.33019345425731034, 0.3261422470855134, 0.32264351683711917, 0.3196709844789786, 0.3171923847506809, 0.3151711163649747, 0.31356815966518586, 0.31234418246046847, 0.3114617481932227, 0.31088753639417593, 0.31059448032557135, 0.31056371874078664, 0.3107862479412247, 0.31126414950335984, 0.31201126314503497, 0.31305317954046, 0.31442645089481286, 0.31617696257315403, 0.31835747830539984, 0.32102446022195047, 0.32423436228041475, 0.3280396844202623, 0.33248513478897745, 0.33760426067126503, 0.3434168660026701, 0.34992743850363645, 0.3571246801315447, 0.36498209727387165, 0.37345948926103406, 0.38250509541129846, 0.39205812989420114, 0.4020514460986445, 0.41241411556255375, 0.42307376558414034, 0.43395858071956084, 0.44499892695464666, 0.45612859856314364, 0.4672857155107197, 0.47841331518232777, 0.4894596888156819, 0.5003785131438959 ], [ 0.40693971435133913, 0.3985282464560091, 0.3905172956986127, 0.38294487346518613, 0.3758441968090666, 0.36924275205840523, 0.3631614697702151, 0.3576140713987324, 0.35260664679542303, 0.34813751437370005, 0.34419740238363156, 0.340769971288073, 0.3378326757837562, 0.33535794326235063, 0.33331462609044876, 0.3316696698421938, 0.3303899290739964, 0.3294440555446745, 0.3288043791799471, 0.32844869765035467, 0.3283618850228014, 0.3285372238271814, 0.32897736000266053, 0.3296947799840649, 0.3307117179436096, 0.3320594230901525, 0.33377675477819124, 0.33590812713298374, 0.33850089123049915, 0.34160231345091563, 0.34525637155752364, 0.34950063183686714, 0.3543634796262011, 0.3598619457985821, 0.36600030574112824, 0.3727695361840961, 0.3801476160258838, 0.3881005683445322, 0.39658407654087896, 0.40554547528046486, 0.4149259159948737, 0.4246625304991102, 0.4346904550986984, 0.44494462171504195, 0.45536126442160746, 0.4658791246200387, 0.47644036390681377, 0.4869912105560586, 0.49748237476601653, 0.507869271188283 ], [ 0.4218051951134239, 0.4138412136945559, 0.40625080005396025, 0.3990682145649603, 0.3923232635527903, 0.3860405138540936, 0.380238619870721, 0.3749298123149312, 0.37011959518274035, 0.3658066902161889, 0.36198325640025625, 0.3586353968107139, 0.35574394795534053, 0.3532855295381628, 0.3512338171204941, 0.349560987689545, 0.3482392790619951, 0.3472425978709607, 0.3465481065665892, 0.3461377162968847, 0.3459994091151711, 0.3461283099950217, 0.3465274280248082, 0.34720798925164603, 0.34818929379533886, 0.34949804969973264, 0.35116716709700785, 0.3532340382189165, 0.3557383785057458, 0.35871975556042174, 0.3622149776895837, 0.366255543184742, 0.37086535767251294, 0.3760589059371381, 0.381840018150064, 0.38820130557650867, 0.39512426872525547, 0.4025800138765326, 0.41053046229412354, 0.41892990625321075, 0.427726758280248, 0.43686535136516597, 0.4462876724173426, 0.45593494225618353, 0.4657489871564954, 0.47567337528605197, 0.4856543140101191, 0.4956413203048069, 0.5055876868244883, 0.5154507715203149 ], [ 0.4364032629688893, 0.42887186522850085, 0.421688053927253, 0.4148826949922843, 0.40848254945073914, 0.40250961871066426, 0.39698059947487485, 0.39190648807317074, 0.38729237062575605, 0.38313742856410893, 0.37943517891410217, 0.3761739561739238, 0.3733376287824759, 0.3709065294369202, 0.36885856613141194, 0.3671704706118306, 0.3658191332761643, 0.3647829681526212, 0.3640432478622082, 0.3635853457966596, 0.3633998208198778, 0.36348327893141713, 0.3638389475141235, 0.3644769026140994, 0.3654139000256928, 0.3666727783995603, 0.3682814279438475, 0.3702713509061476, 0.372675877426116, 0.3755281381658743, 0.3788589275753695, 0.3826946125751725, 0.38705524574946853, 0.3919530272861284, 0.39739122687160794, 0.4033636301917638, 0.40985452196914784, 0.41683916693035933, 0.42428470910573435, 0.43215138323320473, 0.44039392133098587, 0.4489630412650474, 0.4578069188252605, 0.46687256600735605, 0.47610706163024535, 0.48545860274698505, 0.4948773643644738, 0.5043161697429902, 0.5137309838677597, 0.5230812490216494 ], [ 0.45068722724690646, 0.4435725295309403, 0.4367805265646549, 0.430339029164886, 0.424272091167538, 0.41859946655736563, 0.4133361707382831, 0.40849217791456194, 0.4040722829149145, 0.4000761494836815, 0.3964985583920295, 0.39332985833408035, 0.3905566113663909, 0.38816241361465714, 0.3861288619988463, 0.3844366294340528, 0.3830666045975732, 0.3820010478100971, 0.381224711536725, 0.3807258721372469, 0.3804972186631744, 0.38053654497333517, 0.3808471939242556, 0.38143820794504807, 0.3823241501127418, 0.38352457485984703, 0.3850631479926431, 0.38696644108056966, 0.3892624535431157, 0.3919789437256477, 0.39514167386660404, 0.39877268890594575, 0.4028887521437558, 0.4075000501198384, 0.4126092553866475, 0.4182110021451671, 0.4242917909209276, 0.43083030027998287, 0.4377980512689991, 0.44516034754131656, 0.45287740264955834, 0.4609055653150212, 0.4691985616023444, 0.477708686947665, 0.4863878978874762, 0.4951887705064022, 0.5040653081739886, 0.5129735939642122, 0.5218722928231231, 0.5307230151518562 ], [ 0.46461766213475825, 0.45790316234667655, 0.45148764320172413, 0.44539617667960163, 0.4396504167388457, 0.4342681512059826, 0.42926295072444354, 0.42464394031518327, 0.42041571547231893, 0.4165784190618115, 0.41312798790459376, 0.4100565693328438, 0.407353098893295, 0.405004021463866, 0.4029941299966184, 0.4013074893573304, 0.39992840750962594, 0.39884241256978714, 0.39803719187603576, 0.39750344800627774, 0.3972356266115395, 0.397232472222045, 0.39749737131545915, 0.3980384476051209, 0.3988683834434845, 0.40000395397474364, 0.40146527726723685, 0.4032748034482505, 0.4054560873360965, 0.4080324098952951, 0.41102533117548373, 0.41445326833186946, 0.41833019453507514, 0.42266454690116245, 0.4274584144183683, 0.43270705224882566, 0.43839874005565926, 0.44451497307864685, 0.45103094930123866, 0.45791629706631776, 0.4651359764207795, 0.4726512843947167, 0.4804208982628497, 0.4884018997588075, 0.4965507351152642, 0.5048240787226995, 0.5131795805780149, 0.5215764884857813, 0.5299761446330528, 0.5383423625450064 ], [ 0.4781619554406535, 0.47183082361434264, 0.465776192762948, 0.4600206862008193, 0.4545838336256515, 0.4494817026312656, 0.4447266193755945, 0.4403269987290928, 0.43628730077135985, 0.43260812550757494, 0.42928645140864763, 0.42631601626359533, 0.4236878313938943, 0.42139081306222886, 0.4194125083925557, 0.41773988765075903, 0.41636017049471663, 0.4152616508159586, 0.4144344829956393, 0.4138713917135409, 0.41356826789418893, 0.41352461511391947, 0.4137438141555888, 0.4142331788254459, 0.4150037840766118, 0.41607005818276566, 0.41744914408913514, 0.41916005054572736, 0.4212226300315344, 0.42365643611336506, 0.426479525726684, 0.42970727990213553, 0.43335131808905575, 0.4374185756488774, 0.44191060157155637, 0.4468231153737117, 0.45214584072536523, 0.4578626113527222, 0.46395172486049113, 0.47038650446362446, 0.4771360185148633, 0.4841659034971532, 0.4914392372944822, 0.49891741492708963, 0.5065609871061053, 0.5143304314885735, 0.5221868361613843, 0.5300924837369072, 0.5380113319377932, 0.5459093924294834 ], [ 0.49129379824044095, 0.4853291066832624, 0.4796197004578329, 0.47418601726381987, 0.4690457072559012, 0.464213331001752, 0.4597001384101206, 0.4555139447266269, 0.4516591164959007, 0.44813667602047164, 0.44494452754337555, 0.4420778024834658, 0.43952931496504877, 0.4372901130196011, 0.4353501055599013, 0.43369874080418297, 0.43232570841326323, 0.4312216352471649, 0.4303787433356394, 0.42979143836878975, 0.4294567977807281, 0.4293749294420552, 0.4295491753122215, 0.4299861394022886, 0.43069552630754, 0.43168978549417614, 0.43298356731299603, 0.434593008859696, 0.43653488040895183, 0.43882563497644944, 0.4414804131680941, 0.4445120614458557, 0.44793022316356523, 0.45174055764830795, 0.45594413339556955, 0.46053702803591473, 0.46551015167011267, 0.47084929336851183, 0.4765353750192894, 0.48254488391123124, 0.4888504465253633, 0.49542150140841745, 0.5022250285130827, 0.5092262953403688, 0.5163895856532075, 0.5236788834128704, 0.5310584919699558, 0.5384935756568868, 0.5459506172499622, 0.5533977899964296 ], [ 0.5039926446139386, 0.49837754803892736, 0.49299779176391195, 0.4878718641727814, 0.4830157515479337, 0.4784426911530874, 0.4741629971930428, 0.4701839723475883, 0.4665099146755251, 0.4631422258947175, 0.4600796225653057, 0.45731844681003275, 0.45485306821347, 0.4526763637677185, 0.4507802584547086, 0.4491563054856125, 0.44779628248728354, 0.44669277809316427, 0.44583974247565555, 0.44523297535380396, 0.44487052595819543, 0.44475298141928715, 0.44488362320267794, 0.44526843570365204, 0.44591595705706605, 0.4468369696299124, 0.44804403636671647, 0.44955089872908427, 0.4513717617219376, 0.45352050051738585, 0.45600983043837817, 0.4588504865499054, 0.46205046004605677, 0.46561433562607807, 0.46954276723252225, 0.4738321195146261, 0.4784742902566241, 0.4834567161215079, 0.4887625518003146, 0.4943710022447879, 0.5002577799666124, 0.5063956548378574, 0.5127550624108163, 0.5193047381111605, 0.5260123481231118, 0.5328450926494239, 0.5397702627764354, 0.5467557377910406, 0.5537704150174513, 0.5607845687647867 ], [ 0.5162431632969153, 0.5109610380625057, 0.5058955665520251, 0.5010634986499809, 0.4964793458233476, 0.4921551797103817, 0.4881004958292722, 0.4843221523815691, 0.480824391531627, 0.4776089472733112, 0.47467524021838065, 0.4720206555780419, 0.46964089650806795, 0.4675304010944525, 0.4656828077881, 0.46409145122151757, 0.4627498681694955, 0.46165229200925373, 0.4607941134201211, 0.4601722852550578, 0.45978565054618525, 0.4596351745307108, 0.45972406448370406, 0.4600577651043396, 0.46064382227074163, 0.4614916141161824, 0.46261195541028316, 0.464016588804112, 0.4657175840896655, 0.4677266735572391, 0.4700545570611297, 0.4727102138132461, 0.4757002586635852, 0.47902837841807877, 0.48269487865937166, 0.4866963640130106, 0.4910255655934989, 0.4956713194291541, 0.5006186900148748, 0.5058492246939479, 0.5113413180174673, 0.5170706609682311, 0.5230107480468754, 0.5291334155069761, 0.535409386097572, 0.5418087990202036, 0.5483017079047242, 0.554858533971271, 0.5614504657835341, 0.568049800830072 ], [ 0.5280346971342227, 0.5230692473473874, 0.5183029962359971, 0.5137511423225458, 0.5094268873873536, 0.5053412724632718, 0.5015030716786774, 0.4979187517533042, 0.49459250265710303, 0.4915263421329808, 0.4887202936025513, 0.4861726335980648, 0.4838802014895525, 0.4818387610968852, 0.48004340096285736, 0.47848895775067785, 0.47717044551147586, 0.47608347250114796, 0.4752246268416575, 0.47459181263972783, 0.4741845192193067, 0.4740040079286336, 0.4740534035919051, 0.47433768112657504, 0.47486354214305393, 0.47563918141964134, 0.47667394883795355, 0.47797791838832376, 0.47956138180465696, 0.4814342897622841, 0.48360566782598097, 0.48608303695683935, 0.4888718689811773, 0.49197510579192805, 0.49539276723867803, 0.4991216669714448, 0.5031552484668179, 0.507483545768509, 0.5120932658575769, 0.516967982720155, 0.5220884276507248, 0.5274328564641396, 0.5329774722152757, 0.5386968816608, 0.5445645648013396, 0.55055333907062, 0.5566358027070398, 0.5627847451816662, 0.5689735159446662, 0.575176345942085 ], [ 0.5393607415340024, 0.5346960784839145, 0.5302143524235606, 0.5259293760456667, 0.5218531853626669, 0.5179959063369813, 0.5143656726549122, 0.5109686007248853, 0.5078088259670949, 0.5048886020559101, 0.5022084620977891, 0.49976743792029144, 0.497563330868129, 0.4955930249028768, 0.49385283051968837, 0.4923388461364513, 0.49104732225719394, 0.4899750129129535, 0.4891194986699429, 0.4884794658857483, 0.4880549279066608, 0.4878473755525994, 0.4878598465494463, 0.4880969065495571, 0.48856453800719607, 0.48926993737254926, 0.49022122568912324, 0.4914270824941347, 0.49289631761678016, 0.4946373996696042, 0.49665796333393103, 0.49896431958002085, 0.5015609934510525, 0.5044503128312741, 0.5076320687414762, 0.511103263372806, 0.5148579566606719, 0.5188872162080304, 0.5231791693352006, 0.5277191504817639, 0.5324899325462767, 0.5374720273176898, 0.5426440380680428, 0.5479830466264587, 0.5534650176998437, 0.5590652046177045, 0.5647585427827363, 0.5705200196248985, 0.5763250125285833, 0.5821495888197062 ], [ 0.5502184494866594, 0.5458391497259776, 0.5416276722748912, 0.5375965900843452, 0.5337568987183926, 0.5301179079967239, 0.5266871786766171, 0.5234705088905485, 0.5204719732990992, 0.5176940158637408, 0.5151375948899907, 0.5128023766554686, 0.5106869716447678, 0.5087892052854657, 0.5071064132257297, 0.505635749702639, 0.5043744964872384, 0.5033203593018352, 0.502471738514464, 0.5018279613413577, 0.501389463741965, 0.5011579116810921, 0.501136253462126, 0.5013286973941843, 0.5017406121088988, 0.5023783503143978, 0.5032490005372185, 0.504360075270988, 0.5057191476813786, 0.5073334523270892, 0.5092094679507488, 0.5113525019993638, 0.513766296943219, 0.5164526775671833, 0.5194112562269244, 0.5226392097450966, 0.5261311374396537, 0.5298790050867612, 0.5338721748258975, 0.5380975165082248, 0.5425395921098048, 0.5471809018263181, 0.5520021784733539, 0.556982715861226, 0.562100716822696, 0.5673336473982541, 0.572658585134081, 0.5780525513135433, 0.5834928190233298, 0.588957191075442 ], [ 0.5606081679294509, 0.5564993143316592, 0.5525442633704194, 0.5487544770244832, 0.5451400195512084, 0.54170946949576, 0.538469871236806, 0.535426729708512, 0.5325840504133625, 0.5299444250880672, 0.5275091614882566, 0.525278453812384, 0.5232515883920053, 0.5214271775321658, 0.519803412879434, 0.5183783284984079, 0.5171500630050307, 0.5161171096744561, 0.5152785434362489, 0.5146342141038704, 0.5141848960652406, 0.5139323859876826, 0.5138795418571122, 0.5140302588583708, 0.5143893801704225, 0.5149625436255266, 0.5157559682565807, 0.5167761878807223, 0.518029741851842, 0.5195228357449412, 0.5212609867905137, 0.5232486701559284, 0.5254889825195463, 0.5279833387216901, 0.5307312156148115, 0.5337299546801565, 0.5369746317249221, 0.5404579982847275, 0.5441704955295573, 0.5481003378062113, 0.5522336597123327, 0.5565547179909599, 0.5610461376876527, 0.565689190969675, 0.5704640967378135, 0.57535032957463, 0.5803269275353751, 0.5853727896460674, 0.5904669555723394, 0.5955888616204821 ], [ 0.5705330081363406, 0.5666802174287194, 0.5629682491406707, 0.5594075677442076, 0.5560074013445867, 0.552775670235902, 0.5497189500709672, 0.5468424724387662, 0.5441501643231511, 0.5416447264243754, 0.53932774872927, 0.5371998600945541, 0.535260907042487, 0.5335101555376583, 0.5319465082889411, 0.5305687291603912, 0.5293756656245019, 0.5283664598822868, 0.5275407393272108, 0.5268987774544013, 0.5264416171158157, 0.5261711491923313, 0.5260901412828117, 0.5262022128740702, 0.526511755612639, 0.5270237996849091, 0.527743829833962, 0.5286775570778528, 0.5298306545978441, 0.5312084683719608, 0.5328157147728049, 0.534656178378308, 0.5367324235455517, 0.5390455328100958, 0.5415948839019283, 0.544377975190289, 0.5473903068250103, 0.5506253219247399, 0.5540744090956546, 0.5577269645761925, 0.5615705096024125, 0.5655908563427725, 0.5697723140740878, 0.5740979262156997, 0.578549728402171, 0.5831090179026732, 0.5877566252981692, 0.5924731802944926, 0.5972393647623331, 0.6020361474403955 ], [ 0.5799984512487402, 0.5763878908378115, 0.5729061546560384, 0.5695628096889993, 0.5663663310029927, 0.5633240437178669, 0.5604420952187283, 0.5577254597362826, 0.555177976287036, 0.5528024196952595, 0.5506006030756148, 0.5485735088028451, 0.5467214436991739, 0.5450442129949463, 0.543541306621099, 0.5422120906213109, 0.5410559959645697, 0.5400726968216848, 0.5392622704583839, 0.5386253313008785, 0.5381631324474255, 0.5378776289248941, 0.5377714983075721, 0.5378481159009819, 0.5381114835065833, 0.5385661127665663, 0.5392168661638949, 0.5400687608230086, 0.5411267422053582, 0.5423954364947767, 0.5438788917938007, 0.5455803190900623, 0.5475018442152585, 0.5496442816614703, 0.5520069401430773, 0.5545874682516765, 0.5573817465499703, 0.5603838301317353, 0.5635859432065803, 0.5669785248252335, 0.570550322607483, 0.5742885294077714, 0.5781789563520013, 0.5822062346585453, 0.586354038128126, 0.5906053181232397, 0.5949425431997141, 0.5993479362216745, 0.6038037026977688, 0.6082922451313756 ], [ 0.5890119889184035, 0.5856303852691825, 0.5823665316913585, 0.5792291859421177, 0.5762261428243864, 0.573364187022488, 0.5706490723068054, 0.5680855287187515, 0.5656772983672353, 0.5634271993885706, 0.5613372164911626, 0.559408615376909, 0.5576420772572297, 0.5560378487149595, 0.5545959013508145, 0.5533160950341546, 0.5521983381830632, 0.5512427383499827, 0.5504497364997074, 0.5498202187418538, 0.549355599918757, 0.5490578743437347, 0.5489296301179577, 0.5489740248016601, 0.5491947217406286, 0.5495957880017186, 0.5501815565866256, 0.5509564572917017, 0.5519248221715968, 0.553090672947743, 0.5544574987818778, 0.5560280335233507, 0.5578040417709994, 0.5597861228297841, 0.5619735408894807, 0.5643640885466298, 0.5669539892081618, 0.5697378420623296, 0.5727086113070963, 0.5758576593226568, 0.5791748215925653, 0.582648519528791, 0.5862659060250447, 0.5900130376031236, 0.5938750664487217, 0.5978364454450544, 0.6018811394682061, 0.6059928366519771, 0.6101551539960895, 0.614351832510102 ], [ 0.5975827982147949, 0.5944174385970115, 0.5913596213763216, 0.5884173730789167, 0.5855978721584243, 0.5829074106152795, 0.5803513785760793, 0.5779342730405789, 0.5756597311615483, 0.5735305875054593, 0.5715489537895968, 0.5697163186471865, 0.5680336640806438, 0.5665015944666828, 0.5651204733139077, 0.5638905624759883, 0.5628121582167678, 0.5618857184255239, 0.5611119754017448, 0.5604920289729796, 0.5600274152741771, 0.5597201472934014, 0.5595727242613696, 0.5595881081071199, 0.5597696664866707, 0.5601210832724154, 0.5606462388141136, 0.5613490636828596, 0.5622333709146894, 0.5633026729032968, 0.5645599899765466, 0.5660076582622374, 0.5676471446541009, 0.5694788765010148, 0.5715020930598208, 0.573714724803284, 0.5761133054162092, 0.5786929198248315, 0.581447189984268, 0.5843682985004202, 0.5874470485885248, 0.590672957461459, 0.5940343790694153, 0.5975186512277707, 0.6011122615958856, 0.6048010267058657, 0.6085702782655912, 0.6124050512368197, 0.616290268668335, 0.6202109188920801 ], [ 0.6057214493811977, 0.6027601784360035, 0.5998970523485831, 0.5971394354760189, 0.5944939462432661, 0.5919664258581607, 0.5895619269930871, 0.5872847233278145, 0.5851383401248077, 0.583125605228768, 0.5812487190795262, 0.5795093415373744, 0.5779086925790198, 0.5764476632652287, 0.5751269328392736, 0.5739470874149865, 0.5729087354752189, 0.5720126153404487, 0.5712596898915118, 0.5706512241426338, 0.5701888417577821, 0.5698745572760763, 0.569710781645644, 0.5697002996383095, 0.5698462188009589, 0.570151890756242, 0.5706208068502575, 0.5712564713053401, 0.5720622561136078, 0.5730412428408941, 0.5741960572420077, 0.5755287030651095, 0.5770404016056815, 0.5787314434366374, 0.5806010582887591, 0.5826473083053841, 0.5848670088893122, 0.5872556801589675, 0.5898075307093859, 0.5925154740128126, 0.5953711764747966, 0.5983651349586449, 0.6014867805652283, 0.6047246046505664, 0.6080663025057053, 0.6114989298182626, 0.6150090669717987, 0.6185829863927551, 0.6222068184899874, 0.6258667122077867 ], [ 0.6134396446480345, 0.6106708569410121, 0.6079915720892928, 0.6054085535668566, 0.6029279095796174, 0.6005550675083908, 0.5982947656969962, 0.5961510632380476, 0.5941273677886505, 0.592226480785719, 0.5904506587535869, 0.5888016887347821, 0.5872809752581115, 0.5858896357151708, 0.5846286005727904, 0.5834987145264662, 0.5825008345155149, 0.5816359204864097, 0.5809051149131809, 0.580309807364464, 0.57985168084223, 0.5795327371989712, 0.5793552996543965, 0.579321991260137, 0.579435689076394, 0.579699454796174, 0.5801164435431364, 0.5806897935349529, 0.581422500198485, 0.5823172790976427, 0.5833764226430082, 0.5846016559533564, 0.5859939974018447, 0.5875536292858565, 0.5892797837070407, 0.5911706481518847, 0.5932232944548701, 0.5954336338522066, 0.5977963997517023, 0.600305158717219, 0.6029523490589628, 0.6057293453940048, 0.6086265466463371, 0.6116334842315985, 0.6147389466431811, 0.6179311163336815, 0.621197714664668, 0.624526150762557, 0.6279036703440667, 0.6313175009301281 ], [ 0.6207499860824129, 0.6181626155787433, 0.615656809000895, 0.6132387834582244, 0.6109141811559552, 0.6086880484599797, 0.6065648300156014, 0.6045483783866784, 0.6026419791498341, 0.6008483908151852, 0.599169898373596, 0.59760837871534, 0.5961653756509985, 0.5948421818159805, 0.5936399243763633, 0.5925596511937187, 0.5916024139641687, 0.5907693448317707, 0.5900617230937357, 0.5894810288657573, 0.5890289809563359, 0.5887075567014927, 0.5885189921232507, 0.5884657614796308, 0.5885505360487766, 0.588776122808262, 0.5891453845012838, 0.589661143388787, 0.590326071732588, 0.5911425727004715, 0.5921126558929916, 0.5932378120309266, 0.5945188914871857, 0.5959559912827922, 0.5975483548909821, 0.5992942887173616, 0.6011910984712454, 0.6032350478494642, 0.6054213410635528, 0.6077441298044906, 0.6101965443078392, 0.6127707473053701, 0.6154580088704033, 0.6182487995171881, 0.621132898423204, 0.624099513319064, 0.6271374084343307, 0.6302350368896201, 0.6333806740684629, 0.6365625487631857 ], [ 0.6276657703338573, 0.6252492775476189, 0.622907062754053, 0.620644845321569, 0.6184678408606962, 0.616380744017418, 0.6143877243212363, 0.612492435412021, 0.6106980375139657, 0.609007232546048, 0.6074223107756255, 0.6059452074556393, 0.604577567456835, 0.6033208155338139, 0.6021762295651522, 0.6011450138978883, 0.6002283698169638, 0.5994275601584872, 0.5987439651961852, 0.5981791271533745, 0.5977347810248159, 0.597412869826626, 0.5972155429169791, 0.5971451366306091, 0.5972041371272464, 0.5973951260453332, 0.5977207102512981, 0.5981834376521957, 0.598785701664528, 0.599529637473327, 0.6004170136432712, 0.6014491229319073, 0.602626676283897, 0.6039497039427365, 0.6054174674001258, 0.6070283855210328, 0.608779977652655, 0.6106688258754719, 0.6126905578191326, 0.6148398506849448, 0.6171104563315701, 0.6194952465316517, 0.6219862768305726, 0.6245748668640493, 0.6272516945402662, 0.630006901177248, 0.6328302045105398, 0.6357110164452004, 0.6386385625077633, 0.6416020001409442 ], [ 0.6342008080994492, 0.6319451655217087, 0.6297571204612215, 0.627641938027237, 0.6256044424876337, 0.6236490030702337, 0.6217795310766357, 0.619999488524303, 0.618311908142193, 0.6167194241377865, 0.6152243127451836, 0.6138285411720485, 0.612533823204545, 0.611341679420109, 0.6102534997123944, 0.6092706056631222, 0.6083943102113484, 0.6076259720782156, 0.6069670425078235, 0.6064191020824038, 0.6059838856592775, 0.6056632938515345, 0.6054593899242646, 0.6053743814904048, 0.6054105869486505, 0.6055703871910441, 0.605856163697856, 0.606270224707915, 0.6068147216783384, 0.6074915587030626, 0.6083022979207313, 0.6092480641883766, 0.6103294524118013, 0.6115464408967884, 0.6128983139148545, 0.6143835963690415, 0.6160000030130961, 0.6177444041426713, 0.6196128090674132, 0.6216003680194897, 0.623701392490872, 0.6259093933515324, 0.6282171355138944, 0.6306167074009233, 0.6330996030655542, 0.6356568145100242, 0.6382789315702032, 0.6409562466605098, 0.6436788617116145, 0.646436794763389 ], [ 0.6403692661552406, 0.638264942447184, 0.6362220963107349, 0.6342455775840729, 0.6323398508466176, 0.6305089836476699, 0.6287566445308163, 0.6270861109880794, 0.6255002871432733, 0.6240017306172748, 0.6225926876825046, 0.6212751354840879, 0.6200508298050333, 0.6189213565956505, 0.6178881852853075, 0.6169527217575241, 0.6161163588051094, 0.61538052189577, 0.6147467081729211, 0.6142165167909991, 0.6137916689364522, 0.6134740162088759, 0.6132655364229351, 0.613168316329419, 0.6131845212291531, 0.6133163519500684, 0.613565990157168, 0.6139355334471476, 0.6144269221233027, 0.6150418599310213, 0.6157817313402111, 0.616647518171349, 0.6176397184632658, 0.618758270465208, 0.6200024845008635, 0.6213709852021734, 0.622861666256579, 0.6244716593696091, 0.6261973186371531, 0.6280342209736535, 0.629977182681021, 0.6320202916953991, 0.6341569545403792, 0.6363799565677248, 0.6386815336973729, 0.6410534535891574, 0.6434871039953033, 0.645973585955604, 0.6485038095014787, 0.6510685896218923 ] ] }, { "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.6812134459614754, 0.5420206301126602, 0.481989775310219, 0.43490825075042255, 0.4294530750721063, 0.35169347765535436, 0.2848240375186043, 0.31888125370690584, 0.24555704646877394, 0.22594834549524367, 0.20412838596556385, 0.9442206844687462, 0.21141803184236083, 0.19778937811230327, 0.12205787447004411, 0.2283751785039119, 0.20244628577254878, 0.16901030579270507, 0.21986070197049082, 0.19152799693430256, 0.6363071789965034, 0.6954489517956972, 0.17105222307145596, 0.5824828818440437, 0.7675672266632318, 0.7198191495154507, 0.6142755277730161, 0.5635748691353333, 0.4959002909226369 ], "xaxis": "x", "y": [ 0.23042279295623302, 0.14328543229679108, 0.2677125589496134, 0.2441966506004462, 0.23549225381591674, 0.21506588987521602, 0.21556910599839152, 0.15511350583393388, 0.19467781041897733, 0.1377335638928265, 0.17700697133540397, 0.8885254897177219, 0.13877304473521782, 0.12563648712837994, 0.07242997354209486, 0.15940259740206295, 0.10037931129241129, 0.16644205733610976, 0.1275033358067479, 0.1394784870430306, 0.7524318182840943, 0.21243747044354677, 0.5383051820099354, 0.6731708012521267, 0.5592310205101967, 0.14211261198542888, 0.24516245004989468, 0.2245089911323921, 0.2190733503066961 ], "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.6812134459614754, 0.5420206301126602, 0.481989775310219, 0.43490825075042255, 0.4294530750721063, 0.35169347765535436, 0.2848240375186043, 0.31888125370690584, 0.24555704646877394, 0.22594834549524367, 0.20412838596556385, 0.9442206844687462, 0.21141803184236083, 0.19778937811230327, 0.12205787447004411, 0.2283751785039119, 0.20244628577254878, 0.16901030579270507, 0.21986070197049082, 0.19152799693430256, 0.6363071789965034, 0.6954489517956972, 0.17105222307145596, 0.5824828818440437, 0.7675672266632318, 0.7198191495154507, 0.6142755277730161, 0.5635748691353333, 0.4959002909226369 ], "xaxis": "x2", "y": [ 0.23042279295623302, 0.14328543229679108, 0.2677125589496134, 0.2441966506004462, 0.23549225381591674, 0.21506588987521602, 0.21556910599839152, 0.15511350583393388, 0.19467781041897733, 0.1377335638928265, 0.17700697133540397, 0.8885254897177219, 0.13877304473521782, 0.12563648712837994, 0.07242997354209486, 0.15940259740206295, 0.10037931129241129, 0.16644205733610976, 0.1275033358067479, 0.1394784870430306, 0.7524318182840943, 0.21243747044354677, 0.5383051820099354, 0.6731708012521267, 0.5592310205101967, 0.14211261198542888, 0.24516245004989468, 0.2245089911323921, 0.2190733503066961 ], "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.8651481826328471, 0.8655506633949513, 0.8663577341695583, 0.8675746205235317, 0.8692053692250155, 0.8712528212008398, 0.8737186131646659, 0.8766032099361926, 0.8799059645284003, 0.8836251958492423, 0.8877582657020467, 0.8923016307624096, 0.8972508453843765, 0.9026005001243443, 0.9083440975849373, 0.9144738860915409, 0.9209806856209983, 0.9278537442346259, 0.9350806563968791, 0.9426473604551261, 0.9505382165920476, 0.9587361535382186, 0.9672228648234766, 0.9759790334409107, 0.9849845659378552, 0.9942188211158788, 1.0036608231088884, 1.0132894527095933, 1.02308361411238, 1.0330223767352127, 1.043085093573627, 1.0532514987102508, 1.0635017872116805, 1.0738166807482006, 1.0841774819635197, 1.094566120035346, 1.1049651891591454, 1.1153579810067806, 1.125728511667593, 1.1360615432263865, 1.1463425999732437, 1.156557979235781, 1.1666947569194164, 1.1767407879807807, 1.1866847021959666, 1.1965158956951283, 1.2062245188006702, 1.215801460732278, 1.2252383317312538, 1.2345274431212103 ], [ 0.8639796691107733, 0.8643893481792159, 0.8652079052076186, 0.8664406126834101, 0.8680914879916322, 0.8701632607158969, 0.8726573768563618, 0.875574046048212, 0.8789123319217024, 0.8826702751516873, 0.8868450246985493, 0.891432940134307, 0.8964296246765368, 0.9018298609781972, 0.907627448655527, 0.9138149737910766, 0.9203835628317366, 0.927322677923552, 0.9346199979587236, 0.9422614064659387, 0.9502310833411758, 0.958511679785532, 0.967084547795529, 0.9759299959458961, 0.9850275485531348, 0.9943561921674409, 1.0038945995615074, 1.0136213261868463, 1.0235149775219194, 1.0335543481863882, 1.0437185354237184, 1.0539870306769277, 1.064339793511879, 1.0747573120866085, 1.0852206538044191, 1.0957115088896794, 1.1062122286070857, 1.1167058589161967, 1.1271761696587683, 1.1376076789787744, 1.1479856725536577, 1.1582962173031484, 1.1685261694458917, 1.1786631770165628, 1.1886956771750905, 1.1986128888036733, 1.2084048009866424, 1.2180621580054798, 1.2275764414724517, 1.2369398501836981 ], [ 0.8634006196647221, 0.8638203669186776, 0.8646528702900941, 0.8659034448731415, 0.8675760651184568, 0.8696733203463864, 0.8721964154592697, 0.8751452293069893, 0.8785184372377871, 0.8823136901519184, 0.8865278196374496, 0.8911570144009605, 0.8961969020944025, 0.9016424871061999, 0.9074879384959659, 0.9137262736471701, 0.920349017571807, 0.9273459218850162, 0.9347048042778715, 0.9424115321057682, 0.9504501380658364, 0.9588030331865693, 0.9674512756734108, 0.9763748594360354, 0.9855529965243626, 0.9949643778684336, 1.004587404280887, 1.014400384558167, 1.0243817005839015, 1.0345099414564543, 1.0447640102752214, 1.0551232083727833, 1.0655673023227086, 1.0760765788733158, 1.0866318921056781, 1.097214705818538, 1.1078071327247836, 1.1183919708104715, 1.1289527363527387, 1.139473692680003, 1.1499398737291835, 1.1603371016879982, 1.170651998371825, 1.1808719903591796, 1.1909853082261963, 1.20098098044424, 1.210848822631329, 1.2205794228926388, 1.230164123968868, 1.2395950028549803 ], [ 0.8634269352215767, 0.8638596754952361, 0.8647085973830424, 0.8659790635816254, 0.8676750059912217, 0.8697988624807899, 0.8723515655770017, 0.8753326041005033, 0.8787401749398576, 0.8825714253754502, 0.8868227523362606, 0.8914900814527683, 0.8965690219755992, 0.9020548140014345, 0.9079420543914904, 0.9142242704383434, 0.9208934609915898, 0.9279397253407511, 0.9353510605328091, 0.9431133503005671, 0.9512105176407528, 0.9596247854456359, 0.9683369878137659, 0.9773268886843054, 0.9865734818463772, 0.996055259786021, 1.0057504466677585, 1.015637194572353, 1.0256937440907878, 1.0358985519478976, 1.0462303899537067, 1.0566684210161248, 1.067192258714538, 1.0777820167033836, 1.0884183530095564, 1.0990825124584929, 1.1097563685166714, 1.1204224642273473, 1.1310640509037582, 1.1416651228708523, 1.1522104466874061, 1.1626855837326868, 1.1730769056097108, 1.1833716023534722, 1.1935576838531725, 1.2036239751762763, 1.2135601066273667, 1.223356499413228, 1.2330043477523598, 1.2424955981890116 ], [ 0.8640721603694523, 0.86452078053979, 0.8653884888786552, 0.8666807068296207, 0.868401337494122, 0.8705526778468051, 0.873135386478424, 0.8761485375309307, 0.8795897925102109, 0.8834557052562535, 0.8877421293923828, 0.8924446269136689, 0.8975587227157734, 0.903079872007109, 0.9090031155834337, 0.9153225246080472, 0.9220306060632601, 0.9291178333452554, 0.9365724053995321, 0.9443802535693928, 0.9525252437272562, 0.9609894899220012, 0.9697537047020144, 0.9787975388675296, 0.9880998889972779, 0.9976391663495295, 1.0073935268222332, 1.0173410629592483, 1.027459959250834, 1.03772861305685, 1.0481257255387635, 1.0586303691905152, 1.0692220398759966, 1.0798807010782339, 1.0905868263761853, 1.1013214435791707, 1.1120661812866957, 1.1228033165743505, 1.133515821366268, 1.144187404817341, 1.1548025494460938, 1.165346539515597, 1.1758054809840606, 1.1861663130598472, 1.196416811917325, 1.2065455874486248, 1.2165420740714756, 1.2263965166319282, 1.2360999523772689, 1.2456441898674788 ], [ 0.8653473520109329, 0.8658146295670357, 0.8667032937470163, 0.8680188352885745, 0.869765149903952, 0.8719444238111792, 0.8745570748361251, 0.8776017884905288, 0.8810756963111104, 0.8849747315338066, 0.8892941422205349, 0.8940290404956438, 0.899174775161153, 0.9047269336863615, 0.910680933053563, 0.9170313371703485, 0.9237711265948712, 0.9308911322176507, 0.938379762963713, 0.9462230410934462, 0.9544048598484708, 0.9629073454814115, 0.9717112332258873, 0.9807962122887172, 0.990141227810379, 0.999724741821657, 1.0095249569962765, 1.0195200044491088, 1.029688095137876, 1.0400076354766707, 1.0504573110172517, 1.0610161457302072, 1.0716635466955038, 1.0823793438665827, 1.0931438321379456, 1.1039378192605966, 1.1147426795261968, 1.125540410557553, 1.1363136893627588, 1.1470459238615487, 1.1577212969261097, 1.168324801127373, 1.1788422634914475, 1.1892603604575385, 1.1995666238290854, 1.2097494388401853, 1.2197980355831282, 1.2297024750223098, 1.2394536307166486, 1.2490431672288078 ], [ 0.8672609959276858, 0.8677495718613563, 0.8686611236122896, 0.8700012135033881, 0.8717737500004538, 0.873980849733409, 0.8766227529161255, 0.879697837579308, 0.8832027922114954, 0.8871330001216227, 0.8914831304047048, 0.8962478049958232, 0.901422083806227, 0.907001518397105, 0.9129817131620255, 0.9193575542467911, 0.9261223723517825, 0.933267294144145, 0.9407809446820622, 0.9486495113497068, 0.9568570472011534, 0.9653858612547606, 0.974216896294444, 0.9833300589416835, 0.992704503269149, 1.002318878492033, 1.0121515466656876, 1.0221807692905442, 1.0323848584036506, 1.0427422895965142, 1.0532317798340924, 1.0638323389351916, 1.074523307229253, 1.0852843917300006, 1.0960957095524306, 1.1069378420324143, 1.1177918981511537, 1.1286395827693703, 1.1394632641384568, 1.1502460357116222, 1.1609717686847445, 1.1716251533052102, 1.1821917283923569, 1.192657899540433, 1.2030109471106447, 1.2132390254276921, 1.2233311546705754, 1.233277206874586, 1.2430678873098695, 1.2526947123188976 ], [ 0.8698189419502004, 0.8703313499572374, 0.8712675207079092, 0.8726330780553928, 0.8744319552523387, 0.8766662415023805, 0.879336079770411, 0.882439663666442, 0.8859733982275381, 0.8899322866849598, 0.894310548387933, 0.8991023418184962, 0.9043023239709875, 0.9099057710672138, 0.91590817347843, 0.9223044535370053, 0.9290880828313142, 0.9362503848953001, 0.9437802178969639, 0.9516640493186671, 0.9598862720682817, 0.9684295867495621, 0.9772753514256476, 0.986403877553048, 0.995794686372139, 1.0054267422578478, 1.015278667924636, 1.025328935133654, 1.035556020339833, 1.0459385183696757, 1.0564552158751281, 1.0670851354356437, 1.0778075665666058, 1.0886020994540853, 1.0994486718256482, 1.1103276319370141, 1.1212198143324335, 1.1321066215549953, 1.1429701043848222, 1.1537930345069012, 1.1645589656242914, 1.175252281122042, 1.1858582280360568, 1.1963629381867955, 1.2067534379528284, 1.2170176484083963, 1.2271443775546766, 1.2371233062393974, 1.2469449691582375, 1.2566007321113415 ], [ 0.8730243182049129, 0.8735630606432634, 0.8745254866268979, 0.8759172610409794, 0.8777423449787878, 0.8800028372610665, 0.8826988663413886, 0.885828579054094, 0.889388287923047, 0.8933728352818603, 0.8977761808105982, 0.9025921030813553, 0.9078147766149538, 0.9134389642807823, 0.9194597106363485, 0.9258716384715352, 0.9326681040897806, 0.9398405068283705, 0.9473779620559054, 0.9552673531368043, 0.9634936087950786, 0.9720400325442583, 0.9808885955386719, 0.9900201841388414, 0.9994148251741694, 1.009051907208759, 1.0189103983630123, 1.0289690467043568, 1.039206544993879, 1.0496016478537877, 1.0601332421024126, 1.0707803839293666, 1.0815223239345788, 1.092338539994625, 1.1032087900010674, 1.1141131863634155, 1.1250322862968967, 1.1359471883506864, 1.146839625858356, 1.1576920503259924, 1.1684877006569556, 1.1792106566243366, 1.1898458768036706, 1.2003792222769016, 1.2107974679606757, 1.2210883035720597, 1.2312403261716804, 1.2412430260280436, 1.2510867673007136, 1.2607627647891793 ], [ 0.87687739622585, 0.8774450360657544, 0.878435389952287, 0.8798541381776007, 0.8817052665628442, 0.8839909124515452, 0.8867112607952247, 0.8898645320187067, 0.8934471138397393, 0.8974538830622145, 0.9018787205445027, 0.9067151343342577, 0.9119568060842058, 0.9175978417742229, 0.923632595437607, 0.9300551119260267, 0.9368584011281058, 0.9440338179212999, 0.9515707426918821, 0.9594565804825039, 0.9676769510475063, 0.9762159255682923, 0.9850562397899332, 0.9941794841458296, 1.0035662968503833, 1.0131965756775014, 1.0230497020124714, 1.033104754251805, 1.0433406841773394, 1.0537364392783664, 1.0642710310245724, 1.0749235660923702, 1.0856732669084732, 1.0964995058247946, 1.1073818662306234, 1.1183002307114205, 1.1292348871054148, 1.1401666400985726, 1.1510769174029367, 1.161947863029052, 1.1727624137523511, 1.1835043576780369, 1.1941583756460434, 1.20471006723298, 1.2151459635404145, 1.2254535290201034, 1.2356211544393403, 1.2456381428420327, 1.2554946900808623, 1.2651818612239678 ], [ 0.8813754111705641, 0.88197464302255, 0.8829947401615931, 0.8844413713530045, 0.8863185390804685, 0.8886284360632588, 0.89137135065304, 0.8945456558820042, 0.8981479224775105, 0.902173188560164, 0.9066153865734006, 0.9114678670987564, 0.9167238871950623, 0.9223768918275866, 0.9284204602723369, 0.9348479228760403, 0.9416518062094034, 0.948823330034888, 0.9563521147343721, 0.9642261188095832, 0.9724317186548562, 0.9809538310813491, 0.9897760340693191, 0.9988806946082993, 1.0082491286384918, 1.0178618031220454, 1.0276985656263786, 1.0377388696845473, 1.0479619620796556, 1.0583470105182815, 1.0688731711494945, 1.0795196161007317, 1.0902655523337175, 1.1010902599008499, 1.1119731635067196, 1.122893935234301, 1.133832616088796, 1.1447697415504228, 1.155686459049258, 1.1665646297761718, 1.1773869113530668, 1.188136820822981, 1.1987987791944288, 1.2093581396673976, 1.2198012019846827, 1.2301152153265376, 1.240288371961956, 1.2503097935864236, 1.260169511976158, 1.2698584453047528 ], [ 0.8865123772975638, 0.8871460543832079, 0.8881979017387295, 0.8896735488405598, 0.8915770004062815, 0.8939105056346728, 0.8966744735856871, 0.8998674623154875, 0.9034862716139263, 0.907526162010387, 0.9119811997967167, 0.9168446864617902, 0.9221095794569684, 0.9277687761415678, 0.9338151535588455, 0.9402413501110698, 0.9470393925045806, 0.9542003261177228, 0.9617139636648012, 0.9695687724231256, 0.9777518508945099, 0.9862489405425866, 0.9950444558873518, 1.0041215506362615, 1.013462242909733, 1.0230476033611773, 1.0328579841914427, 1.0428732503225724, 1.0530729733211064, 1.0634365632563647, 1.073943337447305, 1.0845725483104873, 1.0953034048045571, 1.106115117757372, 1.116986982815316, 1.1278984967780694, 1.1388294925178675, 1.1497602760680063, 1.1606717532653623, 1.1715455385418132, 1.1823640428431554, 1.1931105405959126, 1.2037692173141705, 1.2143252002163833, 1.2247645744491809, 1.2350743874304662, 1.2452426435854311, 1.2552582914496573, 1.265111204805835, 1.2747921592339806 ], [ 0.8922789554007444, 0.8929500724796613, 0.89403586179571, 0.8955418843015194, 0.8974721255850673, 0.8998288776510908, 0.902612663166265, 0.9058222237641448, 0.909454594519737, 0.9135052805758646, 0.9179685352571201, 0.9228377099158454, 0.9281056092614968, 0.9337647599575642, 0.9398075119829065, 0.9462259528728301, 0.9530116927705243, 0.9601556175049762, 0.9676476840741409, 0.9754767779258285, 0.9836306129431773, 0.9920956558273515, 1.0008570814624338, 1.0098987847662453, 1.0192034707135158, 1.0287528218626427, 1.0385277168448726, 1.048508457428666, 1.0586749621746738, 1.0690069003483518, 1.0794837644576598, 1.0900849037074662, 1.1007895531314786, 1.111576888554297, 1.1224261203121966, 1.1333166203078449, 1.1442280666091231, 1.1551405887163615, 1.1660349008931417, 1.1768924164043622, 1.187695339931555, 1.1984267383214249, 1.2090705914163635, 1.219611825428401, 1.2300363315023957, 1.2403309720079887, 1.2504835768540767, 1.260482931820476, 1.2703187605983768, 1.2799817019489577 ], [ 0.8986624171326791, 0.8993740661319314, 0.9004961349062539, 0.902034085964397, 0.9039918600581707, 0.9063717696778477, 0.9091744312759615, 0.9123987532206053, 0.9160419960927916, 0.9200999166354605, 0.9245669939461479, 0.9294367154960039, 0.9347018754460592, 0.9403548207700121, 0.9463875880189743, 0.9527919100056217, 0.9595591181945605, 0.9666799922644913, 0.9741445999590116, 0.9819421443439704, 0.9900608191052592, 0.9984876775712446, 1.0072085373452053, 1.0162079508161588, 1.0254692622347177, 1.034974748720703, 1.0447058178660917, 1.0546432199736717, 1.0647672338256922, 1.075057800096906, 1.0854946000646686, 1.0960570997728492, 1.1067245914303594, 1.1174762595926466, 1.1282912837937307, 1.1391489722917107, 1.1500289118740241, 1.16091111756955, 1.1717761701047409, 1.1826053341300649, 1.1933806545137446, 1.2040850308140023, 1.21470227161121, 1.2252171310965847, 1.2356153305109694, 1.245883566939497, 1.2560095117404753, 1.265981800605016, 1.275790016954974, 1.2854246701149246 ], [ 0.9056467218331314, 0.9064020399546462, 0.9075628252205312, 0.9091344135525095, 0.911120675358924, 0.9135239201352033, 0.9163448364427995, 0.9195824807561827, 0.9232343276977453, 0.9272963894313706, 0.9317634020119621, 0.936629061334854, 0.9418862745381507, 0.9475273821185995, 0.9535443102155028, 0.9599286329076385, 0.9666715504649808, 0.9737638058401878, 0.981195561814585, 0.9889562531661872, 0.9970344253016568, 1.0054175780988797, 1.0140920441794314, 1.0230429329408968, 1.0322541597347474, 1.0417085575470595, 1.0513880463130165, 1.0612738219611866, 1.0713465280161514, 1.0815863860209722, 1.0919732816282013, 1.1024868226551432, 1.1131063954492186, 1.1238112426726765, 1.13458057258672, 1.1453936955640456, 1.156230174874363, 1.1670699772905773, 1.1778936121817867, 1.1886822522638798, 1.1994178331069723, 1.2100831312143663, 1.2206618220785261, 1.2311385203956264, 1.241498804881347, 1.2517292300987592, 1.2618173275248057, 1.2717515978337057, 1.2815214961102157, 1.291117411450175 ], [ 0.913212693142078, 0.9140148163686763, 0.9152168152415989, 0.9168238754647408, 0.9188397757902965, 0.9212668033691596, 0.924105701518385, 0.9273556605882951, 0.9310143612491631, 0.9350780752744079, 0.9395418210891932, 0.9443995605194434, 0.9496444120069201, 0.9552688487257155, 0.961264851857748, 0.9676239999996032, 0.9743374899994051, 0.9813960953108883, 0.988790072306998, 0.9965090264313335, 1.0045417541050343, 1.0128760841572406, 1.021498749306946, 1.0303953170999625, 1.0395501978308135, 1.0489467278351865, 1.0585673077266107, 1.0683935640198523, 1.0784065028534704, 1.088586635304028, 1.0989140703749871, 1.1093685873326278, 1.1199297072595826, 1.1305767816952226, 1.1412891066009287, 1.1520460587474792, 1.1628272442830356, 1.1736126473262, 1.1843827684368786, 1.1951187463759996, 1.205802459974555, 1.2164166094775875, 1.2269447783361769, 1.2373714772847821, 1.2476821729011174, 1.2578633028991024, 1.2679022802880222, 1.277787488331173, 1.2875082680063756, 1.297054899439103 ], [ 0.9213382671384673, 0.9221902930960203, 0.9234360323719271, 0.9250805030427331, 0.9271273771009307, 0.9295789061922745, 0.9324358770360397, 0.9356976048938312, 0.9393619718812299, 0.943425513212195, 0.9478835484088679, 0.9527303467547635, 0.957959308676837, 0.9635631400015604, 0.9695339963203264, 0.9758635800797931, 0.9825431810848, 0.9895636587717328, 0.9969153705971547, 1.0045880563999978, 1.0125706952907692, 1.0208513588747725, 1.0294170889825118, 1.0382538256429334, 1.047346400592059, 1.0566785960426388, 1.0662332533627696, 1.075992407196138, 1.0859374202706107, 1.0960491020257892, 1.1063078065877243, 1.116693517343396, 1.1271859317692292, 1.1377645592752483, 1.1484088383204418, 1.1590982710050795, 1.1698125675144186, 1.180531790700569, 1.1912364920954324, 1.2019078332034399, 1.212527688694972, 1.2230787303961, 1.233544492541634, 1.2439094196966756, 1.2541588992186, 1.2642792802855463, 1.274257881483657, 1.2840829888073866, 1.293743845742332, 1.3032306368983908 ], [ 0.929998781858521, 0.930903739993138, 0.9321957507346498, 0.9338796536129409, 0.9359590049855784, 0.9384360135888462, 0.9413115031286643, 0.9445849083534665, 0.9482543094310991, 0.9523165062931181, 0.9567671299252097, 0.961600781956637, 0.9668111885556816, 0.972391351130715, 0.9783336758520791, 0.984630066695297, 0.9912719716132021, 0.9982503773050131, 1.0055557542195166, 1.0131779600184387, 1.0211061166928939, 1.0293284826286522, 1.037832343743515, 1.0466039451539673, 1.0556284763486157, 1.064890110821234, 1.0743720895491382, 1.0840568304862905, 1.0939260454750688, 1.1039608512356802, 1.1141418697402374, 1.1244493216287945, 1.1348631211399198, 1.1453629809197337, 1.155928531013267, 1.166539450870573, 1.1771756088409393, 1.1878172016592168, 1.1984448867265916, 1.2090399016660347, 1.2195841677462433, 1.230060375691333, 1.2404520538537054, 1.250743619693579, 1.260920416061788, 1.2709687340356444, 1.2808758241121259, 1.2906298974970898, 1.3002201190974372, 1.3096365936607721 ], [ 0.9391672843390255, 0.9401281093291594, 0.9414689012842744, 0.9431943158767636, 0.9453077899113925, 0.9478114858520201, 0.9507062607729226, 0.9539916645965443, 0.9576659709204015, 0.9617262410848263, 0.9661684184997108, 0.970987446087652, 0.9761773958187713, 0.9817315966435, 0.9876427464042119, 0.9939029947468008, 1.0005039873700812, 1.0074368666310862, 1.0146922291470661, 1.0222600472501615, 1.0301295673066808, 1.0382892027450614, 1.0467264414852875, 1.0554277850922487, 1.0643787304675378, 1.0735637959591948, 1.082966585173164, 1.09256987619001, 1.102355722802439, 1.112305557551284, 1.1224002919925258, 1.132620415288426, 1.1429460957035584, 1.153357289910657, 1.1638338626567413, 1.174355715815186, 1.1849029227701708, 1.195455862427201, 1.2059953470481806, 1.2165027391289482, 1.2269600540617296, 1.2373500468699492, 1.2476562825889241, 1.257863190802233, 1.2679561054450634, 1.277921291318343, 1.2877459588944098, 1.2974182690020208, 1.3069273289050192, 1.3162631811713876 ], [ 0.9488148398744309, 0.9498343448487847, 0.9512263773037939, 0.9529954078630872, 0.9551447530402193, 0.9576765276881023, 0.9605916192831252, 0.9638896876273564, 0.9675691921156481, 0.9716274465138031, 0.9760606983583113, 0.980864226965653, 0.986032451167288, 0.9915590358685802, 0.9974369858578751, 1.0036587162092463, 1.0102160910927762, 1.0171004266034092, 1.0243024580022992, 1.0318122770424112, 1.0396192500604327, 1.047711931198742, 1.056077986356537, 1.0647041415806742, 1.0735761648142168, 1.082678883463182, 1.0919962339910323, 1.101511335493136, 1.1112065779585922, 1.1210637175862674, 1.1310639749788431, 1.1411881356912617, 1.1514166550307028, 1.1617297694847908, 1.1721076158863015, 1.1825303572567571, 1.1929783122073618, 1.203432083512972, 1.2138726812268976, 1.2242816362890698, 1.2346411016415932, 1.2449339390548466, 1.2551437909513692, 1.2652551373727032, 1.2752533388422784, 1.2851246662598839, 1.2948563191664364, 1.304436433790402, 1.3138540822712454, 1.323099264383784 ], [ 0.9589108353821401, 0.9599916832303106, 0.9614373313336501, 0.9632520665911918, 0.9654390859506586, 0.968000455608829, 0.9709370895150307, 0.9742487497429368, 0.9779340700144428, 0.9819906018455221, 0.9864148805648806, 0.9912025060950684, 0.9963482312548085, 1.0018460488522243, 1.007689268342868, 1.0138705735384284, 1.020382054811336, 1.0272152123146328, 1.0343609306310972, 1.0418094294983684, 1.0495501991503036, 1.0575719315581968, 1.0658624597113489, 1.0744087156744113, 1.0831967147349284, 1.09221156837553, 1.101437524314254, 1.110858028631027, 1.1204558037301584, 1.1302129365575355, 1.1401109734375223, 1.1501310201218093, 1.1602538472382966, 1.1704600017893618, 1.1807299247153396, 1.1910440732636791, 1.2013830455863257, 1.2117277040969463, 1.222059293863408, 1.232359552643262, 1.2426108098974158, 1.252796073013764, 1.262899099853588, 1.2729044574883892, 1.2827975675737526, 1.2925647392096546, 1.302193190383981, 1.3116710592219616, 1.320987406299083, 1.330132209248165 ], [ 0.9694232734453447, 0.970567946182601, 0.9720694637148098, 0.9739319316609472, 0.9761584282466466, 0.9787509690674163, 0.9817104887265383, 0.9850368411192517, 0.9887288190171738, 0.992784192125286, 0.9971997610492845, 1.0019714228262018, 1.0070942421025333, 1.0125625209817082, 1.018369860261937, 1.024509205411833, 1.0309728722289375, 1.0377525495921336, 1.0448392797992512, 1.0522234202650536, 1.0598945933006025, 1.0678416327192939, 1.0760525366335256, 1.0845144348178262, 1.0932135766195832, 1.102135342188957, 1.1112642765896, 1.1205841439117088, 1.130077997308316, 1.1397282609424315, 1.1495168207957318, 1.159425122547285, 1.1694342757137717, 1.1795251636007955, 1.1896785583185934, 1.1998752393928735, 1.2100961136963653, 1.2203223338423093, 1.2305354119842211, 1.2407173261682785, 1.2508506168914104, 1.2609184721897655, 1.2709048002867762, 1.2807942894738689, 1.2905724554262787, 1.3002256765542313, 1.3097412182609285, 1.3191072471417167, 1.3283128362356724, 1.3373479624529143 ], [ 0.9803190559660997, 0.981529823253421, 0.9830893039024066, 0.9850014247834923, 0.9872691454891626, 0.9898944275395422, 0.9928782181828759, 0.9962204499570715, 0.9999200562247194, 1.0039750016937705, 1.0083823255888003, 1.013138193796768, 1.0182379551727387, 1.023676196462766, 1.0294467901647595, 1.0355429302226133, 1.0419571517592097, 1.0486813330108151, 1.0557066800157984, 1.06302369710821, 1.070622148465754, 1.0784910174518942, 1.086618470957169, 1.094991835277356, 1.1035975884141092, 1.1124213714452749, 1.121448019317543, 1.1306616095640556, 1.1400455263662788, 1.1495825371138835, 1.1592548789695636, 1.169044353571246, 1.1789324285485043, 1.1889003447599977, 1.1989292280218915, 1.2090002036971903, 1.219094512044756, 1.2291936218712223, 1.239279339907598, 1.249333913477725, 1.259340124393769, 1.2692813725236243, 1.2791417480368685, 1.2889060918767894, 1.2985600444765144, 1.308090083114027, 1.3174835485781355, 1.326728662003384, 1.3358145328384032, 1.3447311589573903 ], [ 0.9915642571451049, 0.9928431455932843, 0.9944624851053548, 0.9964260257762731, 0.998736607468997, 1.001396132467339, 1.0044055506282497, 1.0077648577512408, 1.0114731070827259, 1.0155284329118568, 1.0199280841763887, 1.0246684650004099, 1.0297451782738245, 1.0351530679069954, 1.040886255377751, 1.0469381667117472, 1.0533015471086884, 1.0599684619641112, 1.0669302848698856, 1.0741776750566316, 1.081700548372374, 1.0894880469915513, 1.0975285134117272, 1.1058094738574995, 1.1143176350812443, 1.123038896988547, 1.131958381867661, 1.1410604795939598, 1.1503289072339105, 1.1597467810474398, 1.1692966988840456, 1.1789608311962123, 1.1887210191369675, 1.1985588783196144, 1.208455906740328, 1.2183935951424227, 1.2283535378353958, 1.2383175417830876, 1.2482677317222919, 1.25818664919785, 1.2680573436842841, 1.2778634543621272, 1.2875892815686145, 1.297219847395539, 1.306740945319012, 1.3161391790929797, 1.325401991409806, 1.3345176830267018, 1.343475423184132, 1.3522652522115344 ], [ 1.0031243854375684, 1.0044731503647504, 1.0061540117240362, 1.0081705439436779, 1.0105254647939148, 1.013220610647674, 1.0162569223531932, 1.0196344421146002, 1.0233523211161273, 1.027408836865656, 1.0318014184410003, 1.0365266770909864, 1.0415804390763916, 1.0469577773411867, 1.0526530386668447, 1.058659863431228, 1.0649711959624735, 1.0715792846787242, 1.0784756726008289, 1.0856511802333415, 1.0930958840185445, 1.1007990943847128, 1.1087493376974347, 1.1169343461450212, 1.1253410588161146, 1.1339556361333338, 1.142763488611568, 1.1517493198311275, 1.1608971827068364, 1.1701905476509058, 1.1796123810320183, 1.1891452323201601, 1.1987713283549648, 1.2084726731883968, 1.2182311518874451, 1.2280286365505328, 1.2378470926458625, 1.2476686836803996, 1.2574758722068708, 1.2672515152949955, 1.2769789528263331, 1.2866420872936963, 1.29622545415625, 1.3057142821825805, 1.3150945435734087, 1.3243529939700567, 1.333477202712842, 1.3424555739104984, 1.3512773590200815, 1.359932661722961 ], [ 1.0149646337539622, 1.0163847347982375, 1.0181285180885282, 1.0201993825830513, 1.022599920485044, 1.0253318944358751, 1.0283962236505002, 1.0317929791694849, 1.0355213878649294, 1.0395798442436102, 1.0439659284932459, 1.048676428688011, 1.0537073646833384, 1.0590540110621411, 1.0647109166025812, 1.0706719181469668, 1.076930147453402, 1.0834780305428975, 1.0903072801164684, 1.097408882670377, 1.10477308283632, 1.112389368082999, 1.1202464571463935, 1.128332295381754, 1.1366340597014042, 1.1451381749865932, 1.153830342986104, 1.1626955838814483, 1.1717182900160772, 1.180882290804176, 1.1901709275459156, 1.1995671367279575, 1.2090535403143912, 1.2186125414746396, 1.2282264241207308, 1.2378774545367721, 1.2475479833014937, 1.2572205456655943, 1.266877958576185, 1.2765034126583332, 1.2860805576641758, 1.2955935801688856, 1.3050272726030574, 1.3143670930354014, 1.3235992154335563, 1.3327105704142692, 1.3416888767347075, 1.3505226639692935, 1.3592012869588719, 1.3677149327167135 ], [ 1.0270501167970714, 1.0285426983728776, 1.0303505163876352, 1.0324767937378616, 1.034923992765367, 1.0376937938630681, 1.0407870815702285, 1.0442039381853823, 1.0479436444955392, 1.052004686761178, 1.0563847686513146, 1.061080826445181, 1.0660890455615843, 1.0714048763950035, 1.077023047566428, 1.0829375750497114, 1.0891417661965777, 1.0956282184062676, 1.1023888129917103, 1.1094147055846804, 1.1166963150924798, 1.1242233136769422, 1.1319846204104904, 1.1399684011575417, 1.1481620768618834, 1.1565523418640515, 1.1651251932221252, 1.1738659713594375, 1.1827594117920992, 1.191789707237853, 1.2009405790850993, 1.2101953569842583, 1.2195370651786541, 1.22894851408583, 1.2384123955517254, 1.2479113801266788, 1.2574282146620366, 1.2669458185185531, 1.2764473767264797, 1.2859164285520013, 1.2953369501025211, 1.3046934298341268, 1.313970936090404, 1.3231551760816522, 1.332232545989664, 1.3411901721378752, 1.3500159433894179, 1.35869853511963, 1.3672274252523293, 1.375592902952059 ], [ 1.039346094201727, 1.0409119713480506, 1.042784631457974, 1.044967120205859, 1.0474617653028357, 1.0502701561337437, 1.0533931296362524, 1.056830762361387, 1.0605823683152638, 1.0646465018306854, 1.0690209643903097, 1.0737028140578466, 1.078688376011437, 1.0839732526471801, 1.0895523318553493, 1.0954197923711473, 1.1015691055517003, 1.1079930334912016, 1.1146836239999218, 1.1216322035675852, 1.1288293699334053, 1.1362649862315135, 1.14392817882588, 1.1518073408834468, 1.1598901434746893, 1.1681635555840595, 1.1766138739207792, 1.1852267629093345, 1.1939873047610228, 1.2028800591215043, 1.211889131464946, 1.2209982491607854, 1.230190843956781, 1.2394501394876187, 1.2487592423165499, 1.2581012349478253, 1.2674592692114057, 1.2768166584278247, 1.2861569668173063, 1.295464094726225, 1.3047223584042893, 1.3139165632683705, 1.3230320698199038, 1.3320548516288349, 1.3409715450408013, 1.3497694904943516, 1.3584367655397915, 1.3669622098255827, 1.3753354424572275, 1.3835468722391329 ], [ 1.0518181781095441, 1.0534578278814397, 1.055395820207052, 1.0576350220662498, 1.0601776216393122, 1.0630251087081537, 1.066178260242566, 1.069637131061614, 1.073401049196113, 1.0774686153129194, 1.0818377053245802, 1.0865054751258545, 1.0914683663009008, 1.0967221116542805, 1.1022617395489538, 1.1080815762866192, 1.1141752461244725, 1.1205356689580377, 1.1271550561684058, 1.134024905581198, 1.1411359968632477, 1.148478388944093, 1.15604142116452, 1.1638137198116412, 1.1717832115133062, 1.1799371446600602, 1.1882621196453076, 1.1967441283057703, 1.205368602545568, 1.2141204717662781, 1.222984228418555, 1.2319440007408438, 1.2409836315542049, 1.2500867618325082, 1.25923691765712, 1.2684175990944881, 1.277612369502281, 1.2868049437812168, 1.2959792741451144, 1.305119632084188, 1.3142106853406768, 1.3232375688958575, 1.3321859491719357, 1.3410420808700128, 1.349792856083033, 1.3584258455309166, 1.366929331953486, 1.375292335860077, 1.3835046339693815, 1.3915567707775367 ], [ 1.0644325239475791, 1.0661460821843256, 1.0681495737753999, 1.0704456854765434, 1.0730364612128802, 1.0759232830702563, 1.0791068565837394, 1.082587200193221, 1.0863636385317657, 1.0904347990154608, 1.0947986110332715, 1.0994523069147777, 1.1043924237996954, 1.1096148055637174, 1.1151146040758562, 1.1208862792732617, 1.1269235978261039, 1.1332196305043944, 1.1397667487179002, 1.1465566210412232, 1.1535802108226008, 1.1608277761724952, 1.1682888737168036, 1.1759523674707435, 1.183806444049345, 1.191838635198139, 1.2000358483315883, 1.208384405436068, 1.2168700903602403, 1.2254782041985637, 1.234193628191709, 1.2430008933257988, 1.2518842556151775, 1.2608277758977342, 1.2698154028585624, 1.2788310579237345, 1.2878587206339889, 1.2968825131176889, 1.3058867823343538, 1.314856178853673, 1.3237757310644032, 1.3326309138691994, 1.341407711102904, 1.3500926711073333, 1.3586729550909025, 1.3671363780908592, 1.3754714425291668, 1.3836673645058557, 1.3917140931023941, 1.3996023230694414 ], [ 1.0771560034402454, 1.0789432665132372, 1.081012101005181, 1.0833650120867786, 1.086003895132616, 1.0889300171984222, 1.0921440020565805, 1.095645818657989, 1.0994347727325682, 1.103509501095903, 1.107867968110735, 1.1125074636738492, 1.1174246020760763, 1.1226153211240204, 1.1280748810221195, 1.133797862688535, 1.139778165408229, 1.146009003991348, 1.1524829058823685, 1.1591917089249204, 1.1661265607048157, 1.1732779205432706, 1.180635565279419, 1.188188599958955, 1.1959254744374932, 1.203834006725014, 1.211901413660553, 1.220114349236093, 1.2284589506054906, 1.2369208915387275, 1.2454854428254474, 1.2541375389060117, 1.2628618498170374, 1.2716428573848744, 1.2804649344859658, 1.289312426118455, 1.2981697309948224, 1.3070213823718533, 1.3158521268803631, 1.3246470002006894, 1.3333913985470784, 1.3420711450682736, 1.3506725504354038, 1.3591824670633452, 1.3675883365891737, 1.3758782304033936, 1.3840408831898128, 1.3920657195719643, 1.3999428740866726, 1.4076632048036892 ], [ 1.0899563592177026, 1.0918167902143037, 1.0939504922963987, 1.0963597880425129, 1.0990464206027304, 1.1020115356085256, 1.1052556660307933, 1.1087787198633496, 1.1125799703922332, 1.1166580487067048, 1.1210109380263853, 1.1256359693723346, 1.1305298181060939, 1.1356885009071516, 1.1411073728574812, 1.1467811244463209, 1.152703778493605, 1.158868687197991, 1.1652685297299712, 1.1718953109895647, 1.1787403623134658, 1.1857943450288215, 1.193047257801326, 1.2004884487046668, 1.2081066328521026, 1.2158899162840764, 1.2238258266121713, 1.2319013506950416, 1.2401029793814626, 1.2484167591148032, 1.256828349963728, 1.2653230894360579, 1.2738860612519451, 1.2825021681052546, 1.2911562073294538, 1.2998329483095261, 1.3085172104450469, 1.3171939404721487, 1.3258482879909568, 1.3344656781200248, 1.3430318803036256, 1.3515330724273835, 1.3599558995454852, 1.3682875266805001, 1.3765156853184863, 1.3846287133791388, 1.3926155885882368, 1.4004659553128724, 1.4081701450346906, 1.4157191907323294 ], [ 1.102802340746361, 1.1047350794689992, 1.1069328634413573, 1.1093978321369673, 1.1121315735625577, 1.1151351065832356, 1.1184088656948563, 1.1219526881367252, 1.1257658031512383, 1.12984682312341, 1.134193736279308, 1.13880390059737, 1.1436740385959718, 1.1488002327079694, 1.1541779210389669, 1.1598018934271512, 1.1656662878707826, 1.1717645875534104, 1.1780896188639542, 1.184633550961605, 1.1913878975609586, 1.198343521698105, 1.2054906442731528, 1.2128188571457448, 1.2203171414879956, 1.227973891977685, 1.2357769472539748, 1.2437136268681759, 1.2517707747561881, 1.2599348090483118, 1.2681917778275968, 1.2765274202581405, 1.2849272323370475, 1.293376536384401, 1.3018605532771188, 1.3103644763591902, 1.3188735459229222, 1.3273731231540786, 1.3358487624668975, 1.3442862812201537, 1.3526718258990056, 1.3609919339637109, 1.3692335906991429, 1.3773842805429375, 1.3854320325163287, 1.3933654595261915, 1.4011737914430364, 1.4088469019832826, 1.4163753295332242, 1.4237502921427996 ], [ 1.115663821663277, 1.1176676977997968, 1.1199284794956303, 1.1224481231964134, 1.125228059683303, 1.1282691768195534, 1.1315718043348528, 1.135135700559888, 1.1389600409605767, 1.1430434082703096, 1.147383783985548, 1.1519785409797385, 1.156824437007767, 1.1619176089193022, 1.1672535674749038, 1.1728271927591334, 1.178632730305, 1.1846637881739726, 1.190913335366189, 1.1973737020532786, 1.2040365822221808, 1.2108930393808486, 1.2179335160010298, 1.225147847353506, 1.2325252803289923, 1.2400544977353203, 1.2477236484253083, 1.255520383447788, 1.2634318982362858, 1.2714449806644654, 1.2795460646154677, 1.2877212885398799, 1.2959565583233257, 1.3042376136539053, 1.312550096977164, 1.320879624054903, 1.3292118551058087, 1.337532565500302, 1.3458277150096987, 1.3540835146663248, 1.3622864903745096, 1.3704235425169118, 1.378482000920517, 1.3864496746769792, 1.3943148964457772, 1.4020665610007295, 1.4096941579063804, 1.417187798326248, 1.4245382360666086, 1.4317368830473027 ], [ 1.1285118989200869, 1.1305854477593713, 1.132907859145737, 1.135480907220291, 1.1383058643303248, 1.1413834842167405, 1.144713986906927, 1.1482970452450083, 1.1521317729471872, 1.1562167140359791, 1.1605498334888027, 1.1651285089360526, 1.1699495232656938, 1.1750090580350536, 1.1803026876561353, 1.1858253744046905, 1.1915714644002944, 1.197534684808862, 1.2037081426203724, 1.210084325446257, 1.2166551048536147, 1.2234117427990612, 1.2303449017401054, 1.2374446589816541, 1.2447005257597084, 1.2521014714760095, 1.2596359533800638, 1.267291951854998, 1.2750570113083066, 1.2829182865055424, 1.2908625940221656, 1.2988764683334517, 1.3069462219213552, 1.315058008656572, 1.3231978896172167, 1.3313519004375773, 1.339506119241722, 1.3476467342090257, 1.3557601098404015, 1.3638328510437774, 1.3718518642307869, 1.3798044147104784, 1.3876781797742526, 1.3954612969841835, 1.4031424072990881, 1.410710692794169, 1.4181559088460174, 1.4254684107623616, 1.4326391749319134, 1.4396598146524497 ], [ 1.1413189744202938, 1.1434604545305305, 1.145842860362834, 1.1484677851464877, 1.1513363424617746, 1.1544491498954035, 1.1578063141319628, 1.161407417432911, 1.1652515054239545, 1.169337076091002, 1.1736620698764137, 1.178223860774326, 1.1830192483475361, 1.1880444506289993, 1.193295097928312, 1.198766227633094, 1.2044522801750819, 1.2103470964131322, 1.2164439167658416, 1.2227353824970149, 1.229213539612042, 1.235869845856478, 1.2426951813153626, 1.2496798630907324, 1.2568136644847545, 1.2640858390380023, 1.2714851496698336, 1.2789999030457093, 1.2866179891597942, 1.294326925976179, 1.3021139088276494, 1.3099658641295293, 1.3178695068389368, 1.3258114009775601, 1.3337780224466287, 1.3417558232978855, 1.3497312965865575, 1.3576910409223917, 1.3656218238522893, 1.3735106432509498, 1.3813447859609047, 1.3891118830075075, 1.396799960811986, 1.404397487932745, 1.4118934169768562, 1.4192772214344902, 1.4265389272969746, 1.4336691394185972, 1.4406590626725848, 1.44750051803027 ], [ 1.1540588200572746, 1.1562662324035904, 1.1587067483831504, 1.161381782370996, 1.1642922896971042, 1.1674387507986799, 1.170821156591511, 1.1744389950296499, 1.1782912388027895, 1.1823763341095443, 1.186692190443772, 1.1912361713422943, 1.196005086066788, 1.200995182230029, 1.206202139426177, 1.2116210639831564, 1.2172464850205773, 1.223072352062813, 1.2290920345201584, 1.2352983234059023, 1.2416834356977164, 1.2482390217753403, 1.2549561763678607, 1.2618254534219895, 1.268836885256734, 1.2759800063001219, 1.2832438816134606, 1.2906171403000783, 1.2980880137751827, 1.3056443787446466, 1.3132738046102308, 1.3209636048928395, 1.3287008921481893, 1.3364726357473828, 1.3442657218118117, 1.3520670145305016, 1.3598634180516616, 1.367641938128854, 1.3753897427156958, 1.383094220739813, 1.390743038344774, 1.3983241919631562, 1.405826057672346, 1.4132374363816338, 1.4205475945007022, 1.427746299841932, 1.4348238526076584, 1.441771111406918, 1.4485795143299702, 1.455241095184158 ], [ 1.1667066272270437, 1.1689777352725776, 1.1714742472343795, 1.174197401331172, 1.1771479959635411, 1.180326374391338, 1.1837324104556854, 1.187365495330912, 1.1912245252800617, 1.1953078903829804, 1.1996134642101752, 1.2041385944293874, 1.2088800943560338, 1.2138342354926772, 1.218996741145339, 1.2243627812539637, 1.229926968627833, 1.2356833568298635, 1.2416254400040752, 1.2477461549823914, 1.2540378860375823, 1.260492472663965, 1.2671012207651087, 1.2738549176048184, 1.280743850834838, 1.287757831849993, 1.2948862236405745, 1.3021179732153187, 1.3094416485613087, 1.3168454799916547, 1.3243174056154998, 1.331845120550681, 1.3394161293935092, 1.3470178013668834, 1.3546374274910855, 1.3622622790646541, 1.369879666707865, 1.3774769992087792, 1.3850418414222827, 1.3925619705044432, 1.4000254298150852, 1.4074205798883095, 1.4147361459501853, 1.4219612615504922, 1.4290855079679594, 1.4360989491421765, 1.4429921619766302, 1.449756261943449, 1.4563829239997532, 1.4628643988956762 ], [ 1.1792390420039567, 1.181571392405909, 1.184121576140373, 1.18689065856813, 1.189879283226892, 1.1930876570589144, 1.1965155365434947, 1.2001622147339923, 1.2040265091929574, 1.2081067508194236, 1.2124007735698576, 1.216905905089421, 1.2216189582936545, 1.2265362239710333, 1.2316534645144577, 1.2369659089308034, 1.2424682493220973, 1.2481546390747178, 1.254018693032629, 1.2600534899632017, 1.2662515776455574, 1.272604980921296, 1.279105213040393, 1.285743290612582, 1.2925097524337963, 1.299394682400235, 1.3063877366496757, 1.313478174983376, 1.3206548965254616, 1.3279064794742137, 1.3352212246941824, 1.3425872027953312, 1.349992304249823, 1.3574242920114303, 1.3648708560322003, 1.3723196690184865, 1.379758442734369, 1.3871749841483836, 1.3945572507268482, 1.4018934042041145, 1.4091718622052076, 1.416381347155254, 1.4235109319818948, 1.4305500821957677, 1.4374886940187377, 1.4443171283150944, 1.4510262401649934, 1.4576074039996354, 1.4640525342914297, 1.4703541018588522 ], [ 1.1916341872309275, 1.1940251308087924, 1.196626472191799, 1.1994391077319446, 1.2024635288493037, 1.2056998078306147, 1.2091475844216124, 1.212806053224665, 1.216673951911994, 1.2207495502681835, 1.2250306400858406, 1.22951452595344, 1.2341980169970133, 1.2390774196643615, 1.244148531673021, 1.2494066372783383, 1.2548465040540366, 1.260462381412863, 1.266248001125916, 1.2721965801236286, 1.278300825877226, 1.2845529446633697, 1.2909446530059783, 1.2974671925658432, 1.3041113487108187, 1.3108674729463075, 1.3177255093201712, 1.3246750248380685, 1.3317052438387864, 1.3388050861866783, 1.345963209043426, 1.3531680518890943, 1.3604078843750393, 1.367670856514012, 1.3749450506481056, 1.3822185345865834, 1.3894794152735501, 1.3967158923329894, 1.4039163108438553, 1.4110692127212632, 1.418163386118938, 1.4251879123209428, 1.4321322096547715, 1.4389860740293203, 1.4457397157779437, 1.4523837925650493, 1.4589094381921053, 1.465308287213088, 1.4715724953385514, 1.4776947556697788 ], [ 1.2038716727984307, 1.20631838551048, 1.208968200678898, 1.2118218499912046, 1.2148796761026865, 1.2181416190222303, 1.2216072032037297, 1.2252755253647236, 1.229145243055867, 1.2332145640109269, 1.237481236317787, 1.2419425394667014, 1.2465952763527803, 1.2514357663341944, 1.2564598394754265, 1.2616628321350412, 1.2670395840868882, 1.2725844373922364, 1.278291237264738, 1.2841533351882903, 1.2901635945582672, 1.2963143991174433, 1.302597664446169, 1.3090048527441136, 1.3155269911040586, 1.3221546934300268, 1.3288781860915915, 1.3356873373359, 1.3425716904008302, 1.34952050018913, 1.3565227732783587, 1.3635673109576265, 1.3706427549034392, 1.3777376350364952, 1.3848404190425587, 1.3919395629951954, 1.3990235624886678, 1.4060810036763887, 1.4131006136139508, 1.4200713093254382, 1.4269822450461844, 1.4338228571419065, 1.4405829062615059, 1.4472525163451078, 1.4538222101787652, 1.4602829412583311, 1.4666261217964855, 1.4728436467751713, 1.4789279140105014, 1.4848718402557075 ], [ 1.2159325953736508, 1.2184320990902096, 1.2211275544541556, 1.2240195332694812, 1.2271082333152945, 1.230393465330475, 1.2338746406341916, 1.2375507594125108, 1.24142039970535, 1.2454817071357085, 1.2497323854343432, 1.2541696878288686, 1.2587904093848696, 1.2635908804087281, 1.268566961046306, 1.273714037236407, 1.2790270182030952, 1.2845003356935, 1.2901279451867325, 1.2959033293132034, 1.3018195037294769, 1.3078690256919294, 1.314044005559412, 1.3203361214326983, 1.326736637103693, 1.3332364234428766, 1.3398259832978154, 1.3464954799120634, 1.3532347688025204, 1.3600334329587183, 1.3668808211499197, 1.3737660890506724, 1.3806782428244044, 1.3876061847403645, 1.394538760345948, 1.401464806674682, 1.408373200942805, 1.415252909174184, 1.422093034196206, 1.4288828624653023, 1.4356119092111874, 1.442269961430176, 1.4488471183093177, 1.4553338287208888, 1.461720925489922, 1.4679996562024604, 1.4741617103875866, 1.480199242969717, 1.4861048939475845, 1.4918718043115222 ], [ 1.2277995288008194, 1.2303487117070528, 1.2330868436351516, 1.2360143416642801, 1.2391312630511848, 1.2424372928205165, 1.2459317319365963, 1.2496134860932195, 1.253481055164795, 1.2575325233694064, 1.2617655502071397, 1.266177362250879, 1.2707647458848057, 1.2755240411049469, 1.2804511365175435, 1.2855414656917694, 1.2907900050444272, 1.2961912734519674, 1.301739333800139, 1.307427796690935, 1.3132498265295074, 1.3191981502090364, 1.3252650685981942, 1.3314424710128976, 1.3377218528216712, 1.344094336292217, 1.3505506947359367, 1.3570813799489823, 1.363676552884404, 1.3703261174216679, 1.3770197570305294, 1.3837469740580934, 1.3904971313031722, 1.3972594954846465, 1.4040232821614136, 1.4107777016235665, 1.417512005248811, 1.4242155318055947, 1.4308777531857746, 1.4374883190632914, 1.4440371000017902, 1.4505142285706727, 1.4569101380747922, 1.4632155985549844, 1.4694217497737334, 1.4755201309595551, 1.4815027071434337, 1.4873618919791034, 1.4930905669951087, 1.4986820972778216 ], [ 1.2394565063341683, 1.2420521428321536, 1.244829876882679, 1.2477899763190672, 1.2509323626269353, 1.2542565991430734, 1.257761879793014, 1.261447018409806, 1.2653104386833123, 1.2693501647979075, 1.2735638128285194, 1.2779485829782844, 1.2825012527574002, 1.2872181712197603, 1.2920952543923097, 1.2971279820500317, 1.3023113960063006, 1.3076401001028355, 1.3131082620946404, 1.3187096176315976, 1.3244374765386815, 1.3302847315905613, 1.3362438699619994, 1.3423069875132643, 1.348465806038952, 1.3547116935696804, 1.3610356877694927, 1.367428522418754, 1.3738806569139668, 1.380382308654401, 1.3869234881227694, 1.393494036405319, 1.4000836648388966, 1.4066819964199226, 1.4132786085659927, 1.419863076785961, 1.426425018790673, 1.4329541385645528, 1.4394402699182107, 1.4458734190542695, 1.4522438057010327, 1.458541902401396, 1.4647584715846151, 1.470884600095717, 1.476911730908467, 1.4828316918019933, 1.4886367208355789, 1.494319488510583, 1.499873116559586, 1.5052911933519906 ], [ 1.2508889957905283, 1.2535277658000128, 1.256341935399828, 1.259331628921856, 1.2624966371655457, 1.2658364062042724, 1.2693500266975195, 1.2730362237555208, 1.2768933474106667, 1.2809193637585854, 1.2851118468433098, 1.2894679713736763, 1.293984506372479, 1.2986578098753887, 1.3034838248120746, 1.308458076217297, 1.313575669933511, 1.3188312929779664, 1.3242192157553687, 1.3297332963009885, 1.3353669867374125, 1.3411133421204016, 1.3469650318348894, 1.3529143536800508, 1.3589532507537885, 1.3650733312099714, 1.3712658909195663, 1.3775219390178182, 1.3838322262667426, 1.390187276106624, 1.3965774182131647, 1.4029928243217902, 1.409423546027453, 1.4158595542216714, 1.4222907797876785, 1.428707155143208, 1.435098656198282, 1.4414553442839988, 1.4477674076077984, 1.4540252018001953, 1.4602192891379977, 1.4663404760575685, 1.4723798486075639, 1.4783288055329074, 1.4841790887278075, 1.489922810844754, 1.495552479896468, 1.5010610207374486, 1.5064417933596799, 1.5116886079823468 ], [ 1.2620838686270455, 1.2647623762079778, 1.2676097407038918, 1.2706259489034284, 1.2738106662791717, 1.2771632263971726, 1.2806826208070232, 1.2843674894624657, 1.2882161117300333, 1.2922263980524535, 1.296395882343804, 1.300721715205498, 1.3052006580652125, 1.3098290783541002, 1.3146029458515005, 1.3195178303385555, 1.3245689007138604, 1.3297509257328337, 1.335058276538401, 1.340484931152027, 1.3460244810910529, 1.3516701402697044, 1.3574147563260508, 1.3632508244963701, 1.3691705041307305, 1.375165637909606, 1.3812277737822105, 1.3873481896024213, 1.3935179203902004, 1.3997277880959356, 1.405968433693628, 1.412230351379102, 1.4185039246012536, 1.4247794636125062, 1.43104724418738, 1.4372975471297003, 1.4435206981683082, 1.4497071078307833, 1.4558473108829013, 1.4619320049301048, 1.4679520877942842, 1.4738986933042675, 1.4797632251704633, 1.485537388651804, 1.4912132197648718, 1.4967831118294457, 1.5022398391904381, 1.507576578001956, 1.512786924003381, 1.5178649072599302 ], [ 1.2730293638636654, 1.2757441551019004, 1.2786214171261312, 1.2816610053059083, 1.284862465365947, 1.2882250233916723, 1.2917475762959785, 1.2954286827997636, 1.2992665549860012, 1.3032590504961261, 1.3074036654472247, 1.3116975281596737, 1.3161373937961744, 1.3207196400253804, 1.3254402638342737, 1.3302948796245841, 1.3352787187372834, 1.3403866305559125, 1.3456130853433512, 1.3509521789664096, 1.3563976396584634, 1.3619428369604447, 1.3675807929664998, 1.3733041959793293, 1.3791054166549235, 1.3849765266846072, 1.3909093200257878, 1.3968953366523982, 1.402925888752066, 1.408992089251209, 1.4150848825030526, 1.4211950769279906, 1.4273133793532873, 1.4334304307601444, 1.4395368431133913, 1.445623236922644, 1.4516802791651093, 1.457698721190137, 1.4636694362238334, 1.469583456098672, 1.4754320068482514, 1.4812065428290024, 1.48689877905946, 1.4925007215012671, 1.4980046950435222, 1.5034033689926185, 1.5086897799111938, 1.5138573516917921, 1.518899912791916, 1.5238117105965014 ], [ 1.2837150476843449, 1.2864626277962703, 1.2893664499008637, 1.292426244194828, 1.2956414424038605, 1.2990111683744983, 1.3025342291127655, 1.3062091063235854, 1.3100339485123729, 1.314006563718446, 1.3181244129591838, 1.3223846044737326, 1.3267838888656207, 1.3313186552535483, 1.3359849285498666, 1.3407783679946084, 1.3456942670804337, 1.350727555008519, 1.3558727998176503, 1.3611242133271317, 1.3664756580291488, 1.3719206560559736, 1.3774524003327695, 1.3830637680075357, 1.3887473362247549, 1.3944954002800878, 1.4002999941601908, 1.4061529134340276, 1.4120457404226956, 1.4179698715327167, 1.423916546596344, 1.429876880021136, 1.4358418935127224, 1.4418025500996117, 1.4477497891592948, 1.4536745621206293, 1.4595678685007167, 1.4654207919248532, 1.4712245357757745, 1.4769704581245247, 1.4826501056076695, 1.4882552459352167, 1.4937778987388382, 1.499210364500167, 1.5045452513325297, 1.5097754994261963, 1.514894403005179, 1.5198956296817958, 1.5247732371335103, 1.5295216870628896 ], [ 1.2941317694682275, 1.2969086190904677, 1.2998356396153523, 1.3029124423950313, 1.3061383510294575, 1.3095123925328647, 1.313033288936165, 1.316699449380281, 1.3205089627622981, 1.3244595910044463, 1.3285487630241282, 1.3327735694922507, 1.3371307584766285, 1.3416167320754977, 1.3462275441550726, 1.350958899311859, 1.3558061531861345, 1.3607643142563843, 1.3658280472451318, 1.3709916782641454, 1.376249201821028, 1.3815942897987128, 1.3870203025053849, 1.3925203018734253, 1.3980870668626182, 1.403713111096178, 1.409390702726499, 1.4151118864940921, 1.420868507906523, 1.4266522394265877, 1.4324546085210716, 1.438267027384533, 1.4440808241177283, 1.4498872751088467, 1.4556776383386105, 1.4614431873088944, 1.4671752452784197, 1.4728652194806102, 1.4785046349959294, 1.4840851679561098, 1.489598677768408, 1.4950372380652728, 1.500393166107245, 1.5056590503938199, 1.5108277762672655, 1.5158925493277189, 1.5208469165120986, 1.5256847847249198, 1.5304004369438502, 1.5349885457569643 ], [ 1.3042716149229692, 1.3070742055620057, 1.3100210537088859, 1.3131116582451594, 1.3163452406017764, 1.3197207364866181, 1.323236788039953, 1.3268917364732078, 1.3306836152528612, 1.3346101438988696, 1.3386687224745808, 1.3428564268534233, 1.3471700048553685, 1.3516058733540677, 1.3561601164625376, 1.3608284849106436, 1.365606396732448, 1.3704889393829047, 1.3754708734034882, 1.380546637752838, 1.3857103569116203, 1.390955849861116, 1.3962766410204257, 1.4016659732095353, 1.4071168226837856, 1.4126219162599165, 1.4181737505253142, 1.4237646130909336, 1.429386605815347, 1.4350316698932215, 1.4406916126672105, 1.4463581359888331, 1.4520228659228633, 1.4576773835608616, 1.463313256685516, 1.4689220720075506, 1.4744954676827442, 1.48002516580814, 1.4855030045943058, 1.4909209699141468, 1.4962712259383921, 1.50154614458295, 1.5067383335132907, 1.5118406624748342, 1.5168462877460598, 1.5217486745405173, 1.5265416172158093, 1.531219257179414, 1.5357760984139526, 1.540207020575555 ] ], "zauto": true, "zmax": 1.540207020575555, "zmin": -1.540207020575555 }, { "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.020346924670836996, 0.01872600785895634, 0.01730622767471982, 0.01609293224411041, 0.01508669097020759, 0.014282270416198076, 0.013668357146259821, 0.013228380053929057, 0.012942437713206226, 0.012789906008614378, 0.012752045916132382, 0.012813983969582164, 0.012965709382726327, 0.013202036060802868, 0.013521698214579245, 0.01392587420565291, 0.014416493641299821, 0.014994686950616763, 0.015659672785392178, 0.016408247621365453, 0.017234880060671722, 0.01813227597069724, 0.019092210951884233, 0.02010642833923492, 0.021167449287611224, 0.022269204412653523, 0.02340745136342134, 0.02457998063333296, 0.02578663348996225, 0.027029165678202897, 0.028310993283315093, 0.02963685629082455, 0.031012432958425176, 0.03244393503337687, 0.033937710347286265, 0.035499875322497154, 0.03713599530762881, 0.0388508254359467, 0.04064811909789198, 0.042530505560132464, 0.044499433259308566, 0.04655517131169077, 0.048696859107322674, 0.05092259257464818, 0.05322953567433942, 0.055614046628116205, 0.05807180996405656, 0.06059796732998044, 0.06318724191842756, 0.06583405307117332 ], [ 0.018810511375264884, 0.017128816338336822, 0.015646578784573782, 0.014370462419767012, 0.013302601734215025, 0.012439224753994135, 0.011769929022482218, 0.011278173820119626, 0.010943210111759308, 0.010743079842433487, 0.010657846900108726, 0.010672171560317247, 0.010776659777741214, 0.010967836580832885, 0.011246914810920508, 0.011617738791673079, 0.012084418966830723, 0.012649223382011856, 0.01331119713336875, 0.014065736139044183, 0.014905042785214583, 0.01581917306802539, 0.016797319627523004, 0.017829037676532176, 0.0189052370918609, 0.020018871113286735, 0.021165323346562487, 0.0223425309141787, 0.023550894282280965, 0.024793024895646252, 0.02607337767187942, 0.02739781031424747, 0.028773106605619384, 0.030206496437112894, 0.031705200906116844, 0.03327602591752185, 0.034925022050957766, 0.03665722205622893, 0.038476460597317574, 0.0403852744134148, 0.042384875583120776, 0.04447518659684131, 0.04665492371295784, 0.0489217145366723, 0.051272236611070804, 0.05370236560877892, 0.056207324003021, 0.0587818234891713, 0.061420196643413194, 0.06411651518198333 ], [ 0.01761834710639794, 0.015885262286105727, 0.014348039627631287, 0.013013966929658932, 0.011886204954690269, 0.010962213482690712, 0.010232647443454519, 0.009681437767256783, 0.009287537245915035, 0.009028145431999408, 0.008882522089868167, 0.008835248546888747, 0.008878080961359183, 0.009010037558377645, 0.009235795399645086, 0.00956282571509491, 0.009998024720505455, 0.010544791568054757, 0.011201359652141989, 0.0119606816866052, 0.01281158413987597, 0.01374057736631508, 0.01473372697219211, 0.01577821132460591, 0.01686342156172961, 0.017981610305132376, 0.019128160659354798, 0.020301560578635667, 0.021503159413370117, 0.022736770475913323, 0.02400817242752492, 0.025324554379368692, 0.02669394395539406, 0.028124652876913167, 0.029624769751566343, 0.03120172392008518, 0.03286193717501332, 0.034610572205429506, 0.03645137848450348, 0.03838662895744842, 0.04041713517152405, 0.0425423249427741, 0.04476036536069943, 0.04706831458248104, 0.04946228790987679, 0.05193762645289394, 0.05448905971316507, 0.05711085626234477, 0.0597969591069704, 0.06254110422347825 ], [ 0.016759171216024212, 0.01498575599529953, 0.013403631273472862, 0.012019973734516574, 0.01083820270601329, 0.009856391350287465, 0.00906596457952434, 0.008451435639631522, 0.00799185879476055, 0.0076640674047183735, 0.007446916964831835, 0.007325260278728628, 0.0072925018743414454, 0.007351023379288322, 0.0075102384922104, 0.007782596873102665, 0.008178632805205178, 0.00870277685223537, 0.009351424519502619, 0.01011360919790437, 0.010973430390227383, 0.011912983241277436, 0.01291488615516838, 0.01396405534975844, 0.015048745379437886, 0.016161013816979843, 0.017296774165176765, 0.018455563577554828, 0.019640114908055666, 0.020855797997229027, 0.022109981632903914, 0.023411360831977746, 0.02476929006365351, 0.02619315913551514, 0.02769184315128161, 0.029273250580221098, 0.030943984232875428, 0.03270911972022287, 0.034572096134200266, 0.036534705589357966, 0.038597162867845376, 0.040758234035350754, 0.04301540324728798, 0.04536505932929186, 0.04780268723193846, 0.05032305334037212, 0.052920377283753484, 0.05558848599364246, 0.05832094816748266, 0.06111118901156533 ], [ 0.016207726341091445, 0.01440388309772776, 0.0127866088720951, 0.01136249930079828, 0.010134636020119079, 0.009101095106733913, 0.008253619498292284, 0.007577152344734954, 0.0070509863840942984, 0.006651828018262047, 0.006358240519000464, 0.0061552726564806, 0.006037950268825603, 0.0060124829040280395, 0.00609426491744932, 0.006302424588856072, 0.006652338761705572, 0.00714934211597496, 0.007786616101950522, 0.008547522640992209, 0.009410155262502088, 0.010351704938361678, 0.01135151378100212, 0.012392785258346247, 0.013463326374313795, 0.014555684531998068, 0.015666916966103023, 0.016798127605036236, 0.017953848571494735, 0.019141318930124065, 0.020369706079496154, 0.0216493144847704, 0.02299082609644228, 0.024404613751255334, 0.025900161944263162, 0.027485618760382795, 0.029167489718242748, 0.03095047083627648, 0.032837406581470115, 0.03482935019547011, 0.03692569993755858, 0.03912438475740106, 0.041422075824358036, 0.04381440493379073, 0.04629617592877798, 0.048861560075715106, 0.051504270336472174, 0.054217712516916775, 0.05699511337754689, 0.05982962711334399 ], [ 0.015929865707601003, 0.014101667798767707, 0.012455416148612442, 0.010997026060843138, 0.009729084361202435, 0.00864950020506278, 0.007750244429645932, 0.007016771989667116, 0.006428859144240838, 0.005963307423601135, 0.0055982802980486706, 0.005318363774785627, 0.00511911558113679, 0.005009646497261337, 0.005011356188179072, 0.005151190152700508, 0.005450583302624441, 0.005915771787681163, 0.00653551604392698, 0.007286246647919929, 0.008139607830150719, 0.009068288043857673, 0.010049208416613746, 0.011064809872473073, 0.01210330916900435, 0.013158451371540307, 0.014229001170042685, 0.015318069807379457, 0.016432321320401636, 0.017581093178946423, 0.018775473645879746, 0.020027386824875978, 0.021348739815936928, 0.022750682270199902, 0.024243017052800624, 0.025833783665694495, 0.02752901688602576, 0.02933266554311796, 0.031246643587749277, 0.033270979106391145, 0.03540402643342802, 0.03764271048444163, 0.039982778867592, 0.042419044419806116, 0.044945607303302625, 0.04755605103530237, 0.050243610636108056, 0.05300131359194594, 0.055822095797324035, 0.05869889535295312 ], [ 0.015890639132875098, 0.014039243027919224, 0.01236495061427542, 0.010873137568483609, 0.009566108422854932, 0.008441928231931642, 0.007493283904799596, 0.006706838301698536, 0.006063714316500112, 0.0055416347971839145, 0.0051187733298377995, 0.004778793735568526, 0.0045161441908612805, 0.004340159632097131, 0.004275385576497838, 0.004354699114567777, 0.0046049962272960675, 0.0050334138474090505, 0.005624565954796627, 0.006348826545004402, 0.007172868380447688, 0.008066519854087396, 0.009005703514068458, 0.009973169572701572, 0.010958304731995348, 0.01195659116216524, 0.01296889891467957, 0.014000649952495422, 0.01506086436196729, 0.016161115175075354, 0.01731444316155088, 0.01853430128740321, 0.01983360350079843, 0.021223942630607225, 0.022715020045611253, 0.024314301003626887, 0.02602688145282091, 0.027855530663233336, 0.029800862797600483, 0.031861589238978444, 0.03403480952546372, 0.03631630855212153, 0.03870083819958372, 0.04118237075153415, 0.04375431849432351, 0.04640971867376248, 0.049141385865516043, 0.051942035287680224, 0.0548043811149471, 0.05772121381613515 ], [ 0.01606235025033176, 0.014185030799297461, 0.01247929796108386, 0.010950181343174218, 0.009600033057791151, 0.008427593809333993, 0.007427044104799096, 0.006587354101880826, 0.005892419491450081, 0.00532249916578341, 0.004857236828502438, 0.004480124343852706, 0.004183802577822739, 0.00397490257723255, 0.003875684603785045, 0.003918255807428702, 0.0041298827362697904, 0.004517551165696673, 0.005064456439592839, 0.005739194079569632, 0.006507324748192353, 0.007338510440806226, 0.008209298739449292, 0.009103656796355148, 0.010012649827482225, 0.010933814915723523, 0.011870366328015655, 0.012830238170009181, 0.013824964511113305, 0.014868434611945572, 0.015975603330449808, 0.01716126395449111, 0.01843899246133832, 0.019820347619217984, 0.02131436826886101, 0.022927361145071684, 0.024662933495191393, 0.026522202994600556, 0.028504113963179884, 0.030605798753201248, 0.03282293944698136, 0.03515010179861237, 0.03758102724263047, 0.040108878606589286, 0.04272644117642245, 0.04542628386432159, 0.04820088638982462, 0.05104273840556504, 0.053944415941632934, 0.05689863976017264 ], [ 0.01642974773478742, 0.014522453390765034, 0.012780415770890818, 0.011208470649184154, 0.009809275392250485, 0.008582652062253664, 0.007524900488756074, 0.0066282511848131, 0.005880760503267167, 0.005267054128831842, 0.00477030136720928, 0.004375575875900654, 0.004074289836422723, 0.0038685533903911828, 0.00377296509585897, 0.0038103303696619384, 0.004000245030328762, 0.004346777811225354, 0.004834926747875904, 0.00543717152458845, 0.006122812943031313, 0.006864428614027014, 0.007640857833130399, 0.008438121373688802, 0.00924939902470988, 0.010074564400101215, 0.010919418339837806, 0.011794638381537178, 0.012714463352549134, 0.013695187505147454, 0.014753601470337427, 0.015905553491867758, 0.017164793834488844, 0.018542208494336403, 0.020045466418661565, 0.021679027814379002, 0.02344441354090901, 0.02534062396793, 0.0273646116341796, 0.02951174084388098, 0.031776196422548884, 0.03415132644128402, 0.03662991817912709, 0.03920441419032769, 0.04186707825068934, 0.04461012115318106, 0.0474257952184104, 0.0503064648360511, 0.053244658808792866, 0.05623310892558561 ], [ 0.01699104372010834, 0.015051283242493663, 0.013270000630408526, 0.011651968404092697, 0.010200307981628715, 0.00891610859885732, 0.007798031467635601, 0.006841958642587601, 0.0060408080803297645, 0.005384726369087057, 0.004861957035448909, 0.004460665897157976, 0.004171710370815888, 0.003991612359328406, 0.003923985879059584, 0.0039772892172134, 0.004158543477743433, 0.004466375441421236, 0.004888262824434206, 0.005403314140788411, 0.005987659611100322, 0.006619233582779021, 0.007280792653741078, 0.007961428128124611, 0.008657100051360292, 0.00937052388248297, 0.010110535232250275, 0.010890966886221393, 0.01172909037044352, 0.012643761194325826, 0.013653505167764077, 0.014774830724350211, 0.016021009792017978, 0.017401446815683924, 0.018921606482367178, 0.020583358899307205, 0.0223855595264979, 0.02432470198961183, 0.026395534040303044, 0.028591580908753335, 0.030905560309559786, 0.033329696428354996, 0.0358559500387739, 0.038476183678700614, 0.041182278721605126, 0.0439662177975944, 0.046820142660885376, 0.04973639478564615, 0.05270754381029568, 0.055726407374262696 ], [ 0.017755102490651632, 0.015784043558958297, 0.01396496346366297, 0.012302741223505208, 0.010801094787149591, 0.009462422047645067, 0.008287646744875265, 0.007276056295256403, 0.006425111628162475, 0.0057302336244824436, 0.00518466537977266, 0.004779667587416239, 0.004505373909287672, 0.004352333000866633, 0.004313030878454209, 0.004382127933681721, 0.00455471020378529, 0.004823479912395293, 0.0051768862958501095, 0.005599473023723315, 0.0060740867997081645, 0.006584730093045765, 0.00711907789246751, 0.007670259135989326, 0.008237861433884221, 0.00882820007788205, 0.009453855433690041, 0.010132467487241384, 0.010884853296233003, 0.011732677198097714, 0.01269607537702519, 0.013791699429009997, 0.01503152783677967, 0.016422543838337654, 0.01796712559258413, 0.01966385717844556, 0.02150847178670576, 0.023494727127606044, 0.025615117104836084, 0.02786140101777614, 0.030224972829476265, 0.03269710706833003, 0.03526911692557978, 0.03793245318629671, 0.040678764811714355, 0.04349993536147269, 0.04638810450714094, 0.04933568047388058, 0.05233534699582915, 0.055380066936072836 ], [ 0.01873622115900215, 0.01673934361039595, 0.01488895736867477, 0.013190254900907304, 0.01164767680906897, 0.01026488349113346, 0.009044723322902775, 0.00798913470233299, 0.007098872251667642, 0.006372931815759287, 0.005807650118763568, 0.005395747798536491, 0.005125951061274749, 0.00498382865495022, 0.004953751425017162, 0.005020894642266254, 0.005172062403925996, 0.0053951102470327535, 0.005677859651213156, 0.006007617648272887, 0.006371794072302045, 0.00675938911361888, 0.007162811667893447, 0.007579550149076737, 0.00801338292182709, 0.008474910979461413, 0.008981218557329862, 0.009554515905349161, 0.010219794292582421, 0.011001838030017815, 0.01192225151691056, 0.012997240536549071, 0.014236618450084112, 0.01564403347783955, 0.017218026321113404, 0.018953410344424097, 0.020842580949705196, 0.02287655597977938, 0.025045707396697446, 0.02734022925975024, 0.029750413035801337, 0.032266795960455945, 0.034880232101363595, 0.037581919554411175, 0.04036340458154092, 0.04321657485997523, 0.04613364854987197, 0.049107162622719816, 0.052129962031553956, 0.05519519029258032 ], [ 0.019948352256794134, 0.017934629493184997, 0.016063284140831018, 0.014339967231667396, 0.012769861150842093, 0.011357676485710488, 0.010107601908141205, 0.009023114565716661, 0.00810651372730731, 0.007358047019473679, 0.006774646161474753, 0.0063486299163270105, 0.006067101675784326, 0.0059127281890089586, 0.005865858131511295, 0.005907014639634536, 0.0060185874872958805, 0.0061852616621393955, 0.006393621459570553, 0.006631739997753698, 0.006889333957124984, 0.0071586072072119394, 0.007435570874911821, 0.007721502689987863, 0.008024197653854988, 0.008358649858673937, 0.008746773492252105, 0.009215819317378547, 0.009795420442866753, 0.010513741548712404, 0.011393754412906187, 0.012450768959360705, 0.013691814628467223, 0.015116647770098926, 0.016719630633114383, 0.018491714450309626, 0.020422062880235046, 0.022499175640725858, 0.024711567641228446, 0.027048126947203432, 0.02949827022223154, 0.03205198394996919, 0.03469980846210827, 0.03743279806938003, 0.040242475065556116, 0.04312078613359722, 0.04606006457857831, 0.04905299919172588, 0.05209260932682907, 0.05517222528986433 ], [ 0.02140044115753962, 0.019380591409462022, 0.017500221374985032, 0.015765413863429837, 0.014181900387854213, 0.012754996469630646, 0.011489438090964378, 0.010389028732955347, 0.009455994987691852, 0.00869000210728146, 0.008086949172799934, 0.007637929873686232, 0.007328936089159814, 0.0071417266885680794, 0.007055724061090051, 0.007050218096754033, 0.007106056832808296, 0.007206448201581269, 0.007337075585387119, 0.007486030947467156, 0.007644011393130422, 0.007804979015225395, 0.00796724503306137, 0.008134786995526928, 0.008318506842472309, 0.008537022164931801, 0.008816453107418737, 0.009188653123198682, 0.00968766356047305, 0.01034495201878306, 0.011184854763098948, 0.012221821726592436, 0.013460207578571816, 0.014896106525700135, 0.016520052372030622, 0.018319553723369318, 0.020280965453088287, 0.02239064505230128, 0.02463555419207042, 0.0270035025678374, 0.029483191476628406, 0.03206416069867536, 0.03473669867533667, 0.03749174709660697, 0.04032081400604173, 0.04321590038953693, 0.046169440736551326, 0.04917425613766715, 0.05222351785811353, 0.055310719310483876 ], [ 0.02309385994702111, 0.021078453634826553, 0.019200308302911414, 0.01746572526798025, 0.015880609149483534, 0.014450304471913039, 0.01317930677391193, 0.012070788655352839, 0.011125902505677094, 0.010342895705416202, 0.009716207718993229, 0.009235863051923091, 0.008887513070237885, 0.008653305073114355, 0.008513409497924887, 0.00844773864104248, 0.008437364321090097, 0.008465392327232974, 0.00851737872407916, 0.008581572663939094, 0.008649279385494825, 0.008715520990688057, 0.008780027053777294, 0.008848458797286156, 0.00893364193046114, 0.009056413601813706, 0.009245488375102083, 0.009535660095521148, 0.009963967771592015, 0.01056435509732984, 0.01136246346545952, 0.012372527173093294, 0.013597318943026111, 0.015030508506871307, 0.016659948413448047, 0.01847063572209562, 0.020446799323665107, 0.022573112989485083, 0.024835266136289173, 0.027220142312385884, 0.029715792141875426, 0.032311317080140414, 0.034996727799321094, 0.03776280810021388, 0.04060099678931216, 0.043503290551664506, 0.04646216656936107, 0.049470522039772605, 0.052521627447306915, 0.05560909069800429 ], [ 0.025022018928145675, 0.023020063555914603, 0.021153196982137554, 0.019427626330379557, 0.017849008838110695, 0.01642220461348046, 0.01515091275079088, 0.01403717000919776, 0.013080725574638212, 0.012278368313348182, 0.011623361394584522, 0.011105192260283262, 0.010709817906276495, 0.010420451105104039, 0.01021874262758889, 0.010086077740356554, 0.010004709094485075, 0.009958583769263432, 0.009933898439307136, 0.00991953710890089, 0.009907571206328283, 0.00989395221742223, 0.009879443006481272, 0.009870736158009836, 0.009881583483411347, 0.009933585329437654, 0.010056077284624933, 0.010284436423654512, 0.010656381811464976, 0.011206682473451114, 0.011961814260225918, 0.012936576054007599, 0.014133792125865038, 0.01554661418537466, 0.017161936765386254, 0.01896356941418106, 0.020934515567196943, 0.023058314038653573, 0.02531967526657966, 0.02770468018061748, 0.030200747138304458, 0.0327964969517937, 0.035481588188445164, 0.038246558133193984, 0.04108268393127213, 0.04398186766636836, 0.046936544155575737, 0.04993960833642997, 0.052984358715992726, 0.05606445360366653 ], [ 0.027171554151787673, 0.025189793835953864, 0.02334050225312392, 0.02162949287000188, 0.020061842523042082, 0.0186416023355421, 0.017371423600212526, 0.01625210648202765, 0.015282110061951504, 0.014457102254210484, 0.013769663189332355, 0.013209262511323505, 0.012762589756285194, 0.01241423002501376, 0.012147578754708939, 0.011945829729846006, 0.011792881892713662, 0.0116740842687217, 0.011576832526136623, 0.011491100383182375, 0.011410011715548429, 0.011330538230045942, 0.011254357002952511, 0.011188827984245526, 0.011147944440531049, 0.011152957367921618, 0.011232199621441005, 0.011419543883164036, 0.011751129608577014, 0.012260658578911907, 0.012974488086004423, 0.013908237391943447, 0.015066047114227007, 0.016442317991695692, 0.018024751926806828, 0.01979742800471996, 0.021743175983686837, 0.023845079849812517, 0.026087263763789934, 0.028455198465930174, 0.03093573305802992, 0.03351699242717971, 0.036188223782334446, 0.03893963656841883, 0.0417622562770431, 0.044647799591291955, 0.04758857172895461, 0.05057738393376576, 0.05360748806369912, 0.05667252514734512 ], [ 0.029524261925884927, 0.027567098451307257, 0.02573907205321225, 0.024045389367027006, 0.022490358234793492, 0.0210770989382161, 0.0198072071435043, 0.018680390452584707, 0.017694121302528523, 0.016843369320329652, 0.016120486661762346, 0.015515310024541071, 0.015015508390713347, 0.014607153663714576, 0.01427544172977718, 0.014005466306053727, 0.013782958907578325, 0.013594949157901449, 0.013430350619137265, 0.013280516811112647, 0.0131398273897982, 0.013006353645537967, 0.012882618465968727, 0.012776408517815894, 0.012701510117020573, 0.012678123205167932, 0.012732584577594155, 0.01289598256799651, 0.013201408915356106, 0.013680071868686347, 0.014357157398201842, 0.015248723543932918, 0.016360608496823158, 0.017689436309039686, 0.019224965877742587, 0.020952773721462665, 0.022856541898367104, 0.024919662801096133, 0.0271261904489505, 0.029461302867035865, 0.03191145229302231, 0.03446434110649531, 0.03710881476120426, 0.039834725603502055, 0.04263279622022868, 0.045494495638724805, 0.048411933143790976, 0.05137777008735006, 0.054385148066856674, 0.057427631133062366 ], [ 0.03205910145102274, 0.030128899963161006, 0.02832373802663743, 0.026648108221926203, 0.025105495809116824, 0.023698118956798717, 0.02242665154182267, 0.021289953610933325, 0.020284846308320056, 0.01940597606730877, 0.018645812221489633, 0.01799480933052859, 0.01744174101290659, 0.01697418218042946, 0.016579091611001098, 0.016243436534794892, 0.01595480935141767, 0.015702009723113808, 0.015475593210591183, 0.015268409526538105, 0.015076161940515953, 0.014898011311407559, 0.01473722271987269, 0.014601808123414812, 0.014505052892065088, 0.014465731634086305, 0.014507742828364928, 0.014658878802227389, 0.014948579844275108, 0.015404848423082193, 0.016050934848220913, 0.016902687172616025, 0.01796731758176126, 0.019243789755456084, 0.020724425347798028, 0.022397028639829966, 0.024246910051706205, 0.026258466413952526, 0.028416238583879466, 0.030705520515154454, 0.0331126453853795, 0.03562506710791249, 0.0382313266774647, 0.040920962737184034, 0.04368440214115048, 0.046512850154478425, 0.049398189870868865, 0.05233289459383991, 0.055309953786573884, 0.0583228116604182 ], [ 0.03475388171026816, 0.03285143478209619, 0.031069249150478633, 0.029411086657120847, 0.02787965207404487, 0.02647637610779718, 0.025201202425820874, 0.024052401353014036, 0.023026438320465966, 0.022117926723336456, 0.021319690440386393, 0.02062295016137195, 0.020017631522261273, 0.019492775981031538, 0.019037022691991628, 0.018639125636387283, 0.018288476149660976, 0.017975614202447195, 0.017692727121844186, 0.017434146095850842, 0.01719685424844491, 0.016981012536865705, 0.016790489549477313, 0.01663334732663063, 0.016522188150723975, 0.016474213432004163, 0.01651080480858173, 0.01665644632294573, 0.01693691048790135, 0.017376849467690143, 0.017997207672231886, 0.018813055875357507, 0.019832386965446026, 0.021056096787346185, 0.022478972835816277, 0.024091251530605748, 0.025880277344282047, 0.027831938452225306, 0.02993173725472818, 0.03216549283781848, 0.034519743198281126, 0.03698193351018646, 0.03954046727999219, 0.04218467827390631, 0.044904762387323945, 0.04769169384018623, 0.05053713971173322, 0.05343338011409249, 0.05637323722706487, 0.059350014089822316 ], [ 0.03758650500318095, 0.03571150441997468, 0.03395146034082469, 0.032309449518056435, 0.030787492512668, 0.02938638238473045, 0.028105530234900214, 0.026942845843210186, 0.02589467344800713, 0.024955801497077306, 0.024119560273079415, 0.02337801291045154, 0.022722234977141313, 0.022142667981154232, 0.021629525580139156, 0.021173229791235395, 0.020764858326713, 0.02039659168471486, 0.020062156867016994, 0.019757270273683267, 0.019480082582395326, 0.01923162118993583, 0.01901620978261267, 0.01884181951431404, 0.018720274023102272, 0.01866719782429618, 0.01870157908508717, 0.018844836355718302, 0.019119358090047233, 0.019546628315779056, 0.020145223459834456, 0.020929081012825042, 0.021906416048214406, 0.02307948133006305, 0.024445113924795366, 0.025995812103407717, 0.02772101893782214, 0.029608343285998394, 0.03164456039315777, 0.0338163407132211, 0.03611072594512631, 0.03851540369843882, 0.04101883819621906, 0.04361030687672705, 0.046279880759629806, 0.04901837484416611, 0.05181728549509167, 0.05466872503871815, 0.05756535925764237, 0.06050035058782287 ], [ 0.04053579159805666, 0.03868723297701896, 0.036947972050540234, 0.03532048137258686, 0.03380621596542993, 0.03240548442271834, 0.03111734331028069, 0.029939528661452705, 0.02886843832100324, 0.027899176773817546, 0.027025669799882093, 0.02624085031106141, 0.025536910130587474, 0.02490560671828188, 0.024338610291810798, 0.02382787623929403, 0.023366030040273926, 0.022946756035766416, 0.02256518556417621, 0.022218282224197035, 0.021905220530390093, 0.02162774762526791, 0.021390505289483008, 0.02120127161269793, 0.021071060713688992, 0.021014000573484865, 0.021046903584471865, 0.02118846546995447, 0.021458087292632346, 0.021874410958353265, 0.02245376598101062, 0.023208797166622715, 0.02414753273432226, 0.02527304873414671, 0.026583728635127576, 0.02807397615302649, 0.02973516851442638, 0.03155664571866896, 0.033526590870284055, 0.035632729073085685, 0.037862831062363544, 0.04020504330183257, 0.04264808122869989, 0.04518132375422601, 0.0477948417534422, 0.05047938571485728, 0.05322635046120274, 0.05602772891330403, 0.05887606244352833, 0.06176439227293663 ], [ 0.0435819714830093, 0.04175846838713257, 0.040038411585202154, 0.03842376502781146, 0.03691553891108734, 0.0355136972117901, 0.03421709079891024, 0.03302342616570073, 0.03192927899030146, 0.030930159554880623, 0.030020633649696014, 0.029194498403457357, 0.028445008232580858, 0.02776514261281601, 0.027147905334905506, 0.026586644623414327, 0.026075384767059943, 0.02560916200726358, 0.025184359269384064, 0.024799034672328087, 0.02445323649248993, 0.024149291581223777, 0.023892044903910076, 0.023689015601386303, 0.02355042203629317, 0.023489019131351957, 0.023519692728696476, 0.023658775528754603, 0.0239230925701904, 0.024328807958005072, 0.02489021238389651, 0.025618635697984577, 0.026521664384618993, 0.027602782730974953, 0.028861458698721296, 0.030293599215672644, 0.03189223920401561, 0.033648317070156905, 0.03555141664303647, 0.03759040056162614, 0.039753903819902354, 0.042030688152482426, 0.04440987606225369, 0.04688109022094636, 0.04943452380329068, 0.05206096361364011, 0.054751783038709465, 0.05749891723730165, 0.06029482912784251, 0.06313247178542 ], [ 0.046706937156102024, 0.044906948655464206, 0.043204499282891565, 0.04160114123089108, 0.040097551379380786, 0.038693468653213804, 0.03738765676043788, 0.036177899448358676, 0.03506103433149203, 0.03403302942544558, 0.03308910393013866, 0.03222389188382772, 0.03143164451124247, 0.03070646487898756, 0.0300425671884793, 0.029434552779296255, 0.028877695479103044, 0.028368229826076355, 0.027903636211364737, 0.02748291638039218, 0.027106850320443646, 0.02677822093916819, 0.026501986172284133, 0.02628537007782136, 0.02613783700117812, 0.026070909275878348, 0.0260977935151127, 0.026232797686854346, 0.026490552847911908, 0.026885096284940836, 0.027428916275893882, 0.028132086705161513, 0.029001617552043227, 0.03004111014034772, 0.03125074426119777, 0.03262755914659968, 0.03416594316894307, 0.035858229278731446, 0.03769530256628479, 0.03966715221471178, 0.04176333023947697, 0.04397330508273309, 0.04628671560789749, 0.048693540387609896, 0.05118420035499737, 0.05374961223755461, 0.056381207649289194, 0.05907092957856309, 0.06181121500485412, 0.06459496983537796 ], [ 0.049894336415588166, 0.048116322956393925, 0.04642999421340829, 0.04483658094651917, 0.043336523893905646, 0.04192943476021542, 0.040614081056520146, 0.03938839977654906, 0.038249543818998206, 0.03719396348014058, 0.036217523396870406, 0.03531565325698231, 0.034483528693321296, 0.033716277299628235, 0.03300920381016879, 0.03235802817948405, 0.031759130408510014, 0.031209796151213554, 0.03070845695522247, 0.03025491797479989, 0.029850563768883155, 0.029498529206577598, 0.029203817775228895, 0.028973344513152983, 0.028815876887294995, 0.028741846473399443, 0.028763009984123386, 0.028891952337253, 0.029141447552866316, 0.029523722432585043, 0.030049696254787296, 0.03072828745853367, 0.03156587689124388, 0.03256599381405461, 0.0337292510226109, 0.03505351128741627, 0.03653423206197329, 0.03816491748576708, 0.03993760711466576, 0.04184334451540201, 0.04387258848460801, 0.04601554882270374, 0.04826244356930046, 0.050603684245639394, 0.05303000051706602, 0.055532517083524614, 0.05810279488207658, 0.06073284691953369, 0.06341513696640973, 0.06614256734826612 ], [ 0.05312956373297805, 0.05137208821476535, 0.04970057742395904, 0.04811602067055485, 0.046618703924737326, 0.045208189083352335, 0.04388331493712129, 0.04264222326655049, 0.04148241253051628, 0.04040082033897464, 0.03939393444113897, 0.038457930474586656, 0.03758883338159464, 0.03678269834841057, 0.03603580643266607, 0.03534486968543846, 0.03470724041155402, 0.03412111901397702, 0.03358575435361832, 0.033101629449024804, 0.03267062345405469, 0.03229613818126456, 0.03198317427105078, 0.0317383391253498, 0.03156976707043775, 0.03148693342315035, 0.031500349852120274, 0.03162113980844598, 0.03186050967818356, 0.03222915139204281, 0.03273663091502801, 0.033390828388742196, 0.03419749460354594, 0.03515997322208657, 0.03627911187582139, 0.03755335502815206, 0.03897898556345312, 0.040550466408555016, 0.04226082994409993, 0.044102069414396546, 0.046065498754690064, 0.04814206088507874, 0.05032257646421338, 0.052597933850214065, 0.05495922638237859, 0.05739784563523936, 0.059905539839019195, 0.062474446001127774, 0.06509710301792465, 0.0677664516463596 ], [ 0.056399690614322234, 0.05466147971457047, 0.053003706487707775, 0.05142718710346628, 0.04993211886934426, 0.048518073352842694, 0.04718400884821264, 0.04592830450321863, 0.04474881759580123, 0.043642964439168055, 0.04260782428616263, 0.04164026450665415, 0.040737084329492225, 0.03989517364959585, 0.039111682827826365, 0.038384199019782905, 0.03771092425754904, 0.03709085012295405, 0.036523923217605274, 0.03601119460236704, 0.03555494487463136, 0.035158774649323175, 0.03482764819616758, 0.03456787641643887, 0.03438702504673634, 0.034293735971051495, 0.034297454774455755, 0.034408066703622106, 0.03463545559299942, 0.03498901431681352, 0.035477147859752575, 0.036106817429240184, 0.03688317305955155, 0.037809311851794064, 0.03888618119571025, 0.04011262532812284, 0.04148555458666302, 0.04300020386690181, 0.044650441892119905, 0.04642909527017774, 0.048328258589610616, 0.050339571170167366, 0.052454450177067, 0.05466427719544123, 0.056960540505183295, 0.05933493830288382, 0.06177944942510672, 0.06428637826455175, 0.06684838001196758, 0.06945847146304451 ], [ 0.059693361530046264, 0.05797333924644868, 0.0563284601641962, 0.05475942406868785, 0.05326639193502627, 0.051848989350183, 0.050506326948649725, 0.04923703938536695, 0.04803934367761396, 0.04691111694263585, 0.04584999270445869, 0.04485347411072012, 0.043919061651269714, 0.043044392344631095, 0.04222738686236472, 0.041466400660657356, 0.04076037481048484, 0.04010898176427632, 0.03951276066556482, 0.03897323592543034, 0.03849301164947374, 0.03807583320844415, 0.037726606062344244, 0.03745136130407292, 0.037257157872390825, 0.03715191365229109, 0.037144162283094785, 0.03724273961269585, 0.03745641289436896, 0.03779347570339242, 0.03826134007085945, 0.03886616209914684, 0.039612536417915636, 0.040503287642710994, 0.04153937465109607, 0.04271990866991681, 0.04404227220730087, 0.04550231562164074, 0.047094603121003616, 0.0488126801798182, 0.05064933848755368, 0.05259686081246178, 0.05464723487917574, 0.056792331311069144, 0.05902404525179739, 0.06133440431740215, 0.06371564721598809, 0.06616027802192699, 0.06866110104278796, 0.07121124075836004 ], [ 0.0630006723285388, 0.06129797467332633, 0.05966538320492565, 0.05810352741091295, 0.05661257234291078, 0.055192229529222564, 0.053841782712727354, 0.05256012937462932, 0.051345838428737, 0.05019722382581122, 0.049112433137738526, 0.04808954954208021, 0.047126705035823946, 0.046222202193871936, 0.04537464134981506, 0.044583049687070185, 0.04384700833785146, 0.04316677313586341, 0.04254338410098999, 0.04197875802490626, 0.0414757577048505, 0.04103823055232849, 0.040671008701557834, 0.04037986268600569, 0.04017140164769431, 0.04005291530854033, 0.040032156860484024, 0.04011707152683464, 0.04031548236394021, 0.04063475192591045, 0.04108144427842267, 0.041661014958683795, 0.04237755562714735, 0.04323361497367212, 0.04423010866459779, 0.04536632046523965, 0.04663998633267117, 0.048047445219713256, 0.049583835765495764, 0.051243317175817885, 0.05301929477489008, 0.05490463482008811, 0.05689185803024486, 0.05897330593400133, 0.06114127800532859, 0.06338814037507731, 0.06570640870483105, 0.06808880874634222, 0.07052831840695854, 0.07301819501467838 ], [ 0.06631304163127838, 0.06462701886807398, 0.0630063363756349, 0.06145158998668924, 0.05996297920383117, 0.058540323409216444, 0.05718309090615294, 0.05589044135192702, 0.054661281661959896, 0.05349433494248712, 0.052388221473297754, 0.051341550242909526, 0.05035301905776718, 0.049421520815194436, 0.048546253141890414, 0.04772682823581703, 0.04696337937832219, 0.04625666017140409, 0.04560813207774746, 0.04502003530042352, 0.04449543748089828, 0.04403825422414786, 0.04365323525455327, 0.04334591030655946, 0.04312248993718794, 0.04298971856832119, 0.042954680366636175, 0.043024562970750406, 0.04320638918716635, 0.04350673186714257, 0.043931431253837326, 0.04448533611693428, 0.04517208919426708, 0.04599397362006618, 0.04695183063448434, 0.04804505107419555, 0.04927163540476555, 0.05062831074779583, 0.052110689398804554, 0.05371345200885583, 0.05543053960780081, 0.05725534128961203, 0.05918086784894268, 0.06119990523144188, 0.06330514482947798, 0.0654892901482377, 0.06774514111302085, 0.07006565835006917, 0.07244401028239589, 0.07487360599092618 ], [ 0.06962308159216549, 0.06795329244402738, 0.06634435406442117, 0.06479685714997119, 0.06331105775056929, 0.061886897078649396, 0.06052403236742927, 0.05922187905110724, 0.057979664139275765, 0.056796490228900945, 0.055671409160985647, 0.054603503904732086, 0.05359197685296999, 0.052636242344109026, 0.05173602088343276, 0.05089143220746315, 0.05010308400117068, 0.04937215272321719, 0.0487004526135198, 0.04809048856731819, 0.04754548821087306, 0.04706940829918673, 0.046666910613435704, 0.046343303039744696, 0.046104442645884, 0.04595659948810996, 0.04590628262967037, 0.045960033322517004, 0.04612419416734857, 0.04640466677730886, 0.04680667333078732, 0.047334538709990555, 0.047991509180299506, 0.04877962064627269, 0.04969962477174187, 0.050750975444290226, 0.05193187220239058, 0.05323935229561061, 0.05466941970978724, 0.056217198041858145, 0.05787709442777145, 0.059642963389688726, 0.06150826192275652, 0.06346618985265838, 0.06550981204724546, 0.06763216120012126, 0.06982632151011428, 0.07208549465943871, 0.07440305011440278, 0.07677256203626337 ], [ 0.07292447183142874, 0.07127067265091398, 0.06967351043951588, 0.06813359242845783, 0.06665124658784731, 0.06522654373160396, 0.06385932909481808, 0.0625492634520095, 0.06129587350759725, 0.06009861093355613, 0.0589569190682722, 0.057870305937845326, 0.056838421924801444, 0.05586114009256784, 0.05493863687444225, 0.054071470545724115, 0.05326065460904916, 0.05250772293107428, 0.051814783179231605, 0.051184554844527, 0.050620387948642646, 0.05012625849932364, 0.049706736982580456, 0.04936692678738662, 0.04911237056808266, 0.04894892424329614, 0.04888260061015489, 0.048919387297900116, 0.04906504672696389, 0.04932490846816386, 0.049703666416517286, 0.05020519402727619, 0.05083239017704888, 0.0515870659422984, 0.052469878982683814, 0.05348031781515435, 0.054616733767504665, 0.05587641450019986, 0.05725569020555556, 0.0587500621858116, 0.06035434344374341, 0.062062801936290685, 0.0638692988670761, 0.06576741643727026, 0.06775057150538175, 0.06981211339763042, 0.07194540553863672, 0.07414389160404346, 0.07640114755994983, 0.07871092131024246 ], [ 0.07621183877908257, 0.07457396965483555, 0.07298879443745107, 0.07145695287980229, 0.0699788548551763, 0.06855470376332268, 0.06718452802503733, 0.06586822058804674, 0.06460558608129298, 0.0633963949550987, 0.06224044364217312, 0.061137619477029566, 0.060087968825473986, 0.05909176660336094, 0.058149585104152475, 0.05726235980514203, 0.05643144958067301, 0.05565868851994764, 0.054946426338955405, 0.05429755421683121, 0.053715512820479, 0.05320427937080871, 0.052768330929105225, 0.05241258172828445, 0.05214229341637244, 0.051962958557188944, 0.05188015962033665, 0.05189940787376317, 0.052025968848375535, 0.052264683067175764, 0.05261979216422623, 0.05309478103103405, 0.053692245999567484, 0.054413797269004846, 0.05526000099454131, 0.056230363064754915, 0.05732335309941393, 0.05853646410409139, 0.05986630091643561, 0.061308689284456576, 0.06285879714381254, 0.06451126025565715, 0.06626030557428943, 0.06809986724932672, 0.07002369177343978, 0.07202543027062068, 0.07409871716243396, 0.07623723540043198, 0.07843476911297068, 0.08068524491805618 ], [ 0.07948064171329995, 0.07785881079092301, 0.07628599356510733, 0.07476287363823256, 0.0732899484988005, 0.07186755347592438, 0.07049589257313935, 0.0691750760014862, 0.06790516398761473, 0.0666862161785645, 0.06551834570825835, 0.06440177673805524, 0.06333690403908836, 0.06232435295026118, 0.06136503782314447, 0.06046021685466093, 0.05961154101213745, 0.05882109458060972, 0.05809142472335889, 0.057425557369240154, 0.05682699676244033, 0.056299706181623686, 0.05584806771513385, 0.05547681962442749, 0.05519097078386487, 0.05499569296348802, 0.054896193283361344, 0.05489757090840423, 0.055004663795061436, 0.05522189281125178, 0.05555311157003203, 0.05600147061359026, 0.05656930401056411, 0.05725804497423827, 0.05806817491418419, 0.05899920767973429, 0.060049708003270655, 0.061217340674500624, 0.06249894507249917, 0.06389062852700503, 0.06538787160826591, 0.06698563876599109, 0.06867848857899364, 0.07046067903002723, 0.07232626448698184, 0.07426918229178452, 0.07628332792457244, 0.0783626185656988, 0.08050104550787739, 0.08269271628971125 ], [ 0.08272706621265032, 0.08112153304394228, 0.07956158639539668, 0.07804796126697654, 0.07658124512784384, 0.07516190185476798, 0.07379030149661438, 0.07246675561319015, 0.07119155772663835, 0.06996502820626134, 0.06878756268832532, 0.06765968291622629, 0.06658208867696372, 0.06555570930974437, 0.06458175307418325, 0.0636617524916364, 0.06279760361864321, 0.0619915970857395, 0.06124643865298535, 0.060565257019221275, 0.05995159670660387, 0.059409394064578, 0.058942934840326304, 0.05855679238358411, 0.05825574641650757, 0.05804468339954556, 0.057928480818373075, 0.05791187911184217, 0.05799934631486787, 0.058194941624314975, 0.05850218482052186, 0.058923938627802395, 0.05946231057619124, 0.06011857973353728, 0.0608931519226948, 0.06178554493171839, 0.06279440303407066, 0.06391753813647148, 0.06515199329315237, 0.06649412331042513, 0.06793968675644738, 0.06948394383676344, 0.07112175517788444, 0.0728476774273685, 0.07465605257684202, 0.07654108891403166, 0.07849693241662921, 0.08051772815790117, 0.08259767187842494, 0.08473105229262964 ], [ 0.08594792540307274, 0.08435908383906253, 0.08281264361783791, 0.08130939564701371, 0.0798500171494566, 0.07843509516727325, 0.07706515497626024, 0.07574069311045793, 0.0744622145147601, 0.0732302731563346, 0.07204551523724138, 0.07090872396511462, 0.06982086465944692, 0.06878312880100457, 0.06779697547435662, 0.0668641685127864, 0.06598680753735828, 0.06516735099770836, 0.06440862928615292, 0.06371384602943118, 0.0630865657895791, 0.0625306866569785, 0.06205039662383923, 0.06165011320931754, 0.06133440657749011, 0.06110790733349227, 0.06097520125681277, 0.06094071435360261, 0.06100859266801699, 0.06118258214883131, 0.06146591438087623, 0.061861204044827645, 0.06237036349704601, 0.06299453887101561, 0.06373407068052263, 0.06458848021069394, 0.06555648121763188, 0.06663601482932266, 0.0678243042262898, 0.06911792479627757, 0.07051288504614488, 0.07200471358803034, 0.07358854791496758, 0.07525922133237295, 0.0770113451986145, 0.0788393844454706, 0.08073772511636633, 0.08270073332373529, 0.08472280555969701, 0.08679841069100601 ], [ 0.08914056917413239, 0.08756893013254016, 0.0860367375140526, 0.08454484022354464, 0.08309400302789749, 0.08168492932039671, 0.08031828800074013, 0.07899474413879252, 0.07771499293237355, 0.07647979630747495, 0.07529002134686844, 0.07414667957374212, 0.0730509659639201, 0.07200429641675504, 0.07100834228500484, 0.07006506045266536, 0.06917671736431275, 0.06834590535993465, 0.06757554966904354, 0.06686890448487026, 0.06622953669397989, 0.06566129610113486, 0.06516827138359095, 0.06475473154692749, 0.06442505333676676, 0.06418363586909498, 0.06403480463423877, 0.06398270793717935, 0.06403120966817857, 0.06418378294648182, 0.0644434095413919, 0.06481248996506161, 0.06529276870588072, 0.06588527824111325, 0.0665903043023361, 0.06740737348920225, 0.06833526288967039, 0.06937203002769299, 0.0705150603600452, 0.07176112877650681, 0.0731064711627157, 0.07454686204877836, 0.07607769463453296, 0.07769405997182867, 0.07939082270533596, 0.0811626914418123, 0.08300428246481788, 0.08491017608910757, 0.08687496542898125, 0.0888932977268381 ], [ 0.09230280140572207, 0.09074897573475085, 0.08923185973465285, 0.08775236048601096, 0.08631132659638473, 0.08490957000758247, 0.08354789122917261, 0.08222710764777237, 0.08094808442405814, 0.07971176734894188, 0.07851921689020418, 0.07737164252407396, 0.07627043631620403, 0.07521720459654539, 0.0742137964672365, 0.07326232779721806, 0.07236519929891391, 0.07152510726087533, 0.07074504553752506, 0.07002829748802655, 0.06937841672668905, 0.0687991958136043, 0.06829462238934683, 0.06786882274796806, 0.06752599344360717, 0.06727032221735332, 0.06710590027393705, 0.0670366286742018, 0.06706612226530821, 0.06719761506377757, 0.06743387125821425, 0.06777710594776927, 0.06822891934992693, 0.06879024750942249, 0.06946133157546648, 0.07024170658214376, 0.07113020948526365, 0.0721250051020329, 0.0732236276752729, 0.07442303511850519, 0.07571967262818206, 0.07710954227052089, 0.0785882753249095, 0.08015120453325059, 0.0817934338955563, 0.08350990419855764, 0.0852954530089564, 0.08714486836308076, 0.08905293581319725, 0.09101447883459694 ], [ 0.09543280515142413, 0.093897486752028, 0.09239634724603002, 0.09093035057402626, 0.08950042437754947, 0.08810748069931347, 0.08675243951240091, 0.08543625471906555, 0.08415994213953505, 0.08292460888922153, 0.08173148342176557, 0.08058194539823507, 0.07947755443291372, 0.07842007666696722, 0.07741150803732921, 0.07645409304485962, 0.07555033779025348, 0.07470301604696779, 0.07391516718806893, 0.07319008489052305, 0.07253129571805332, 0.07194252694424856, 0.07142766332847658, 0.07099069300029519, 0.07063564313533428, 0.07036650669638163, 0.07018716213294565, 0.07010128853202575, 0.07011227923241162, 0.07022315729058588, 0.0704364963583857, 0.07075435045700533, 0.07117819578911316, 0.07170888713382041, 0.07234663056399049, 0.07309097328666272, 0.07394081042807399, 0.07489440766146188, 0.0759494377942377, 0.07710302885333431, 0.0783518208664201, 0.07969202843252922, 0.0811195062834485, 0.08262981531180699, 0.0842182869298683, 0.08588008406996964, 0.08761025759579875, 0.08940379732553738, 0.09125567724808803, 0.09316089482812084 ], [ 0.0985290756488151, 0.0970130249876293, 0.09552881628959144, 0.09407746788545675, 0.09265998085082543, 0.0912773585017364, 0.08993062820221366, 0.08862086512291294, 0.08734921748474084, 0.08611693271548707, 0.08492538384314309, 0.08377609534985507, 0.0826707676182529, 0.08161129902098004, 0.08059980463891178, 0.07963863054913914, 0.07873036260677432, 0.0778778286628332, 0.07708409322264169, 0.07635244366506203, 0.07568636732164133, 0.07508951896422289, 0.07456567857392761, 0.0741186996618689, 0.07375244887295018, 0.07347073810861263, 0.07327725092184298, 0.07317546542698194, 0.07316857637992927, 0.0732594193707512, 0.07345040018533938, 0.07374343230316341, 0.07413988519197091, 0.07464054554983059, 0.07524559296803232, 0.07595459070443054, 0.07676649143924198, 0.07767965711014962, 0.07869189125940801, 0.07980048182335094, 0.08100225198275326, 0.08229361657498505, 0.08367064162832986, 0.08512910478269878, 0.08666455466730492, 0.08827236767133027, 0.08994780092857267, 0.09168604070902418, 0.09348224574601734, 0.09533158531284815 ], [ 0.10159036096018473, 0.10009438909187775, 0.0986281041545499, 0.09719257552151385, 0.09578887155540662, 0.09441807784184517, 0.09308131728814256, 0.0917797717302473, 0.09051470459898522, 0.0892874841049409, 0.08809960631159691, 0.08695271738184646, 0.08584863420636592, 0.08478936255729051, 0.08377711186136258, 0.08281430565804408, 0.08190358680617407, 0.08104781653396537, 0.08025006649926456, 0.0795136031472226, 0.07884186382787707, 0.07823842437145528, 0.07770695811593904, 0.07725118673605778, 0.07687482362460034, 0.07658151100773337, 0.07637475240843672, 0.07625784247265216, 0.0762337965016925, 0.07630528225298672, 0.0764745566441716, 0.0767434098996845, 0.07711311940619726, 0.07758441510521265, 0.07815745767904671, 0.07883183012769568, 0.07960654264729507, 0.08048005006635153, 0.08145028052906308, 0.08251467367736544, 0.0836702262998928, 0.08491354329234893, 0.08624089179867571, 0.08764825655159733, 0.08913139467239686, 0.09068588848821366, 0.09230719524818057, 0.0939906929392601, 0.09573172169786177, 0.0975256205704088 ], [ 0.10461560998529196, 0.10314056319736341, 0.10169321851236958, 0.10027469234546135, 0.09888611384733287, 0.09752864184976352, 0.09620348329060366, 0.09491191276952747, 0.09365529280555113, 0.092435094287855, 0.09125291653478942, 0.09011050630469379, 0.08900977503928569, 0.08795281356910213, 0.08694190347478319, 0.08597952428249882, 0.08506835568165376, 0.08421127399393641, 0.0834113422008897, 0.08267179295814286, 0.08199600419320033, 0.08138746710293407, 0.08084974663633511, 0.08038643486278614, 0.08000109797558168, 0.0796972180477262, 0.07947813101905686, 0.07934696272187002, 0.07930656501499003, 0.07935945426249903, 0.07950775443655439, 0.07975314702655044, 0.08009682969451175, 0.08053948523983391, 0.08108126195067404, 0.08172176586314689, 0.08246006486945115, 0.08329470406084119, 0.08422373120545146, 0.08524473087901288, 0.08635486550979034, 0.08755092147420371, 0.08882935837967995, 0.09018635977821989, 0.09161788374321583, 0.09311971198536348, 0.09468749645386149, 0.09631680264306036, 0.09800314908327042, 0.09974204272488195 ], [ 0.10760392752964673, 0.10615067271908504, 0.1047232940019909, 0.1033229503643337, 0.10195082504899669, 0.10060814121103694, 0.09929617872037608, 0.09801629177457398, 0.09676992691441257, 0.09555864096647529, 0.09438411837170334, 0.09324818729944499, 0.09215283389550782, 0.09110021397341617, 0.09009266143381624, 0.08913269269220789, 0.08822300641411147, 0.0873664779044725, 0.0865661475792301, 0.0858252030658978, 0.08514695464009187, 0.0845348039071671, 0.08399220588116403, 0.08352262489138575, 0.08312948505018135, 0.08281611632853574, 0.082585697589237, 0.0824411981966618, 0.08238532003234779, 0.08242044187174145, 0.08254856809948277, 0.08277128364555701, 0.08308971680991191, 0.08350451131836453, 0.08401580853878937, 0.08462324031504015, 0.08532593238421755, 0.08612251786996536, 0.08701115992669575, 0.08798958227558558, 0.08905510614138434, 0.09020469197634656, 0.09143498433986785, 0.0927423583767372, 0.09412296648389348, 0.09557278395317152, 0.09708765260335983, 0.09866332164889606, 0.10029548527823337, 0.1019798166203549 ], [ 0.11055453605845765, 0.10912394694469231, 0.10771755569498812, 0.10633655907398595, 0.10498218764758069, 0.10365572016418625, 0.10235849879843266, 0.10109194493358226, 0.09985757509833214, 0.09865701661479886, 0.09749202245937356, 0.09636448478901859, 0.09527644654497448, 0.09423011051658098, 0.0932278452334247, 0.09227218705762953, 0.09136583787406467, 0.09051165782810505, 0.08971265264252394, 0.08897195515992964, 0.08829280090724738, 0.08767849766373008, 0.0871323892320695, 0.08665781385697169, 0.08625805799816978, 0.08593630643148367, 0.08569558990535628, 0.08553873180155333, 0.08546829541685909, 0.0854865335779619, 0.08559534230881131, 0.08579622017897, 0.08609023477170258, 0.08647799743029652, 0.08695964708765071, 0.08753484358309772, 0.0882027704519811, 0.08896214676936304, 0.08981124726906867, 0.09074792966673867, 0.09176966790668623, 0.0928735899338159, 0.09405651856182007, 0.09531501405775256, 0.09664541717622661, 0.0980438915361184, 0.09950646442064473, 0.10102906528088937, 0.10260756141909544, 0.10423779051022701 ], [ 0.113466743718774, 0.11205968798959313, 0.1106752890134172, 0.10931477634252702, 0.10797942112222103, 0.106670549228553, 0.10538955502473044, 0.1041379154278667, 0.10291720392531066, 0.1017291041295667, 0.1005754224146245, 0.09945809913642169, 0.09837921790851997, 0.09734101238345286, 0.09634586998355255, 0.09539633203547403, 0.09449508979339172, 0.09364497589022255, 0.09284895083699271, 0.09211008429994158, 0.09143153102420869, 0.09081650144114249, 0.09026822719078316, 0.08978992200601117, 0.08938473863169771, 0.08905572267910458, 0.08880576452829964, 0.0886375505732893, 0.08855351523900203, 0.08855579527102878, 0.0886461877956931, 0.08882611356288639, 0.08909658661684969, 0.08945819139794076, 0.0899110679760685, 0.09045490577449695, 0.09108894578569907, 0.09181199093484733, 0.09262242393524955, 0.09351823172374879, 0.09449703537613013, 0.09555612428974772, 0.09669249338206229, 0.09790288208314929, 0.09918381398595413, 0.1005316361462503, 0.10194255718000712, 0.10341268347479017, 0.1049380530016763, 0.10651466637498853 ], [ 0.11633991817247175, 0.11495724564819439, 0.11359581562390789, 0.1122568853501876, 0.11094175991316786, 0.10965180416995042, 0.10838845509521255, 0.10715323424724249, 0.10594776001647857, 0.10477375927704606, 0.10363307802348024, 0.10252769054255655, 0.10145970664623484, 0.10043137647828233, 0.09944509240693952, 0.09850338753150684, 0.09760893036484532, 0.09676451530893455, 0.0959730486190559, 0.09523752965527885, 0.09456102734805803, 0.09394665195679845, 0.09339752237295404, 0.09291672940733953, 0.0925072956969739, 0.09217213305958481, 0.0919139983018816, 0.09173544863721779, 0.09163879797584008, 0.09162607540427073, 0.09169898716026384, 0.09185888333081191, 0.09210673035361781, 0.09244309019321953, 0.09286810680386455, 0.0933815001991408, 0.09398256814321951, 0.09467019518142687, 0.09544286845870537, 0.0962986995495947, 0.0972354513547721, 0.09825056901263911, 0.09934121373077945, 0.10050429845625777, 0.10173652436744604, 0.1030344172721462, 0.10439436312503293, 0.10581264202004831, 0.10728546015975125, 0.10880897944473929 ], [ 0.11917346575141476, 0.11781599763809596, 0.11647847479218082, 0.1151621770580121, 0.11386843699306017, 0.11259865065028947, 0.11135428859622264, 0.11013690689014992, 0.108948157711384, 0.10778979928557848, 0.10666370472972815, 0.1055718694100355, 0.10451641638942596, 0.10349959953407543, 0.10252380385317353, 0.10159154266551022, 0.1007054512225351, 0.09986827647232159, 0.09908286272395957, 0.09835213306803355, 0.09767906652606252, 0.09706667103828309, 0.09651795255211312, 0.09603588063765633, 0.09562335122505791, 0.09528314722219525, 0.09501789792011554, 0.09483003821652683, 0.09472176877352588, 0.09469501826512973, 0.09475140885544901, 0.09489222597610393, 0.09511839334229992, 0.09543045396618033, 0.09582855770394481, 0.09631245562327777, 0.09688150121648734, 0.09753465822933495, 0.09827051464245833, 0.09908730214500164, 0.09998292028896599, 0.10095496441325781, 0.10200075637965757, 0.10311737716567342, 0.10430170040526646, 0.10555042604874627, 0.10686011341820448, 0.10822721305456973, 0.10964809687776343, 0.11111908630477782 ], [ 0.12196681542464807, 0.12063533470987224, 0.11932260965430647, 0.11802993764521218, 0.11675867246261105, 0.1155102339638276, 0.1142861178563458, 0.11308790530204078, 0.11191727206312296, 0.11077599687022008, 0.1096659686676484, 0.10858919237129101, 0.10754779276270035, 0.10654401614045195, 0.10558022935866761, 0.10465891590459116, 0.10378266870413436, 0.10295417939775932, 0.1021762239001193, 0.1014516441458644, 0.10078332603046498, 0.10017417367704494, 0.09962708029499366, 0.09914489603897103, 0.09873039342148913, 0.09838623097118979, 0.09811491595336719, 0.0979187670702472, 0.09779987812709216, 0.09776008367859365, 0.09780092765277025, 0.09792363588383388, 0.0981290933723096, 0.09841782693444355, 0.09878999371237157, 0.09924537580244903, 0.09978338103538649, 0.10040304972213183, 0.10110306697738113, 0.10188178005967789, 0.10273722003187667, 0.10366712695339975, 0.10466897776769514, 0.10574001604250219, 0.10687728275238807, 0.10807764735541504, 0.10933783850114111, 0.1106544738070969, 0.11202408824774458, 0.11344316080701006 ], [ 0.12471940705594357, 0.12341465008185831, 0.1221275578453347, 0.12085944033645195, 0.11961166657118201, 0.11838567323753592, 0.11718297330734209, 0.1160051643744722, 0.11485393645269584, 0.11373107894172328, 0.11263848644976328, 0.11157816314640344, 0.1105522253123025, 0.10956290175361671, 0.10861253176094463, 0.1077035603162799, 0.1068385302885076, 0.1060200714094739, 0.10525088588924364, 0.10453373061093224, 0.10387139594162256, 0.1032666813047036, 0.10272236777740561, 0.10224118810121624, 0.10182579461696446, 0.10147872575389141, 0.1012023718060837, 0.10099894081246341, 0.10087042541106182, 0.10081857155841747, 0.10084484998630854, 0.10095043120866162, 0.10113616479239672, 0.10140256347107625, 0.1017497925165634, 0.10217766460049954, 0.10268564018551771, 0.1032728332969815, 0.10393802235089326, 0.10467966556204182, 0.10549592033579636, 0.10638466596181581, 0.10734352887998994, 0.10836990977688749, 0.10946101179159405, 0.11061386915752053, 0.11182537567544652, 0.11309231249589978, 0.11441137477955211, 0.11577919689677023 ], [ 0.1274306834284891, 0.12615333265710504, 0.1248926459225216, 0.12364994103542508, 0.12242659655631975, 0.1212240594654239, 0.12004385269726521, 0.1188875823183802, 0.11775694410337655, 0.11665372924465237, 0.11557982891525469, 0.11453723739412544, 0.11352805345941841, 0.11255447976015438, 0.11161881989046554, 0.1107234729153705, 0.10987092513343813, 0.10906373891068162, 0.10830453848194989, 0.10759599269069188, 0.106940794724489, 0.1063416390001721, 0.10580119545618226, 0.10532208161713819, 0.10490683290172943, 0.10455787174458858, 0.10427747618952729, 0.10406774867948376, 0.10393058581177238, 0.10386764984097796, 0.10388034269279792, 0.10396978319873015, 0.10413678817500743, 0.10438185785268672, 0.10470516602518007, 0.10510655512242166, 0.10558553625611876, 0.1061412941177251, 0.10677269645891779, 0.10747830775160465, 0.10825640651700079, 0.1091050057352747, 0.11002187570030603, 0.11100456866776655, 0.11205044465642126, 0.11315669779828542, 0.11432038268791685, 0.1155384402493149, 0.11680772271517188, 0.1181250173925184 ] ] }, { "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.6812134459614754, 0.5420206301126602, 0.481989775310219, 0.43490825075042255, 0.4294530750721063, 0.35169347765535436, 0.2848240375186043, 0.31888125370690584, 0.24555704646877394, 0.22594834549524367, 0.20412838596556385, 0.9442206844687462, 0.21141803184236083, 0.19778937811230327, 0.12205787447004411, 0.2283751785039119, 0.20244628577254878, 0.16901030579270507, 0.21986070197049082, 0.19152799693430256, 0.6363071789965034, 0.6954489517956972, 0.17105222307145596, 0.5824828818440437, 0.7675672266632318, 0.7198191495154507, 0.6142755277730161, 0.5635748691353333, 0.4959002909226369 ], "xaxis": "x", "y": [ 0.23042279295623302, 0.14328543229679108, 0.2677125589496134, 0.2441966506004462, 0.23549225381591674, 0.21506588987521602, 0.21556910599839152, 0.15511350583393388, 0.19467781041897733, 0.1377335638928265, 0.17700697133540397, 0.8885254897177219, 0.13877304473521782, 0.12563648712837994, 0.07242997354209486, 0.15940259740206295, 0.10037931129241129, 0.16644205733610976, 0.1275033358067479, 0.1394784870430306, 0.7524318182840943, 0.21243747044354677, 0.5383051820099354, 0.6731708012521267, 0.5592310205101967, 0.14211261198542888, 0.24516245004989468, 0.2245089911323921, 0.2190733503066961 ], "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.6812134459614754, 0.5420206301126602, 0.481989775310219, 0.43490825075042255, 0.4294530750721063, 0.35169347765535436, 0.2848240375186043, 0.31888125370690584, 0.24555704646877394, 0.22594834549524367, 0.20412838596556385, 0.9442206844687462, 0.21141803184236083, 0.19778937811230327, 0.12205787447004411, 0.2283751785039119, 0.20244628577254878, 0.16901030579270507, 0.21986070197049082, 0.19152799693430256, 0.6363071789965034, 0.6954489517956972, 0.17105222307145596, 0.5824828818440437, 0.7675672266632318, 0.7198191495154507, 0.6142755277730161, 0.5635748691353333, 0.4959002909226369 ], "xaxis": "x2", "y": [ 0.23042279295623302, 0.14328543229679108, 0.2677125589496134, 0.2441966506004462, 0.23549225381591674, 0.21506588987521602, 0.21556910599839152, 0.15511350583393388, 0.19467781041897733, 0.1377335638928265, 0.17700697133540397, 0.8885254897177219, 0.13877304473521782, 0.12563648712837994, 0.07242997354209486, 0.15940259740206295, 0.10037931129241129, 0.16644205733610976, 0.1275033358067479, 0.1394784870430306, 0.7524318182840943, 0.21243747044354677, 0.5383051820099354, 0.6731708012521267, 0.5592310205101967, 0.14211261198542888, 0.24516245004989468, 0.2245089911323921, 0.2190733503066961 ], "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.9240089025828887, -0.9240089025828887, -0.9240089025828887, -0.9240089025828887, -0.9240089025828887, -0.9240089025828887, -0.9240089025828887, -1.554707776560665, -2.01097704393786, -2.2010977651105375, -2.2010977651105375, -2.2010977651105375, -2.505484978801873, -2.505484978801873, -2.8126108684760474, -2.8126108684760474, -2.963984107610403, -3.0033873446955983, -3.044403981080336, -3.0487442511529372, -3.2059507187952296, -3.305179472527306, -3.305179472527306, -3.305179472527306, -3.305179472527306, -3.305179472527306, -3.305179472527306, -3.305179472527306, -3.305179472527306, -3.305179472527306 ] }, { "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.9240089025828887, -0.9240089025828887, -0.9240089025828887, -0.9240089025828887, -0.9240089025828887, -0.9240089025828887, -0.9240089025828887, -1.554707776560665, -2.01097704393786, -2.2010977651105375, -2.2010977651105375, -2.2010977651105375, -2.505484978801873, -2.505484978801873, -2.8126108684760474, -2.8126108684760474, -2.963984107610403, -3.0033873446955983, -3.044403981080336, -3.0487442511529372, -3.2059507187952296, -3.305179472527306, -3.305179472527306, -3.305179472527306, -3.305179472527306, -3.305179472527306, -3.305179472527306, -3.305179472527306, -3.305179472527306, -3.305179472527306 ] }, { "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.9240089025828887, -0.9240089025828887, -0.9240089025828887, -0.9240089025828887, -0.9240089025828887, -0.9240089025828887, -0.9240089025828887, -1.554707776560665, -2.01097704393786, -2.2010977651105375, -2.2010977651105375, -2.2010977651105375, -2.505484978801873, -2.505484978801873, -2.8126108684760474, -2.8126108684760474, -2.963984107610403, -3.0033873446955983, -3.044403981080336, -3.0487442511529372, -3.2059507187952296, -3.305179472527306, -3.305179472527306, -3.305179472527306, -3.305179472527306, -3.305179472527306, -3.305179472527306, -3.305179472527306, -3.305179472527306, -3.305179472527306 ] }, { "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.7.1" } }, "nbformat": 4, "nbformat_minor": 2 }