{ "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": [ "