{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Loop API Example on Hartmann6\n", "\n", "The loop API is the most lightweight way to do optimization in Ax. The user makes one call to `optimize`, which performs all of the optimization under the hood and returns the optimized parameters.\n", "\n", "For more customizability of the optimization procedure, consider the Service or Developer API." ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "data": { "text/html": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:39:14] ax.utils.notebook.plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.\n" ] }, { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "import numpy as np\n", "\n", "from ax.plot.contour import plot_contour\n", "from ax.plot.trace import optimization_trace_single_method\n", "from ax.service.managed_loop import optimize\n", "from ax.metrics.branin import branin\n", "from ax.utils.measurement.synthetic_functions import hartmann6\n", "from ax.utils.notebook.plotting import render, init_notebook_plotting\n", "\n", "init_notebook_plotting()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 1. Define evaluation function\n", "\n", "First, we define an evaluation function that is able to compute all the metrics needed for this experiment. This function needs to accept a set of parameter values and can also accept a weight. It should produce a dictionary of metric names to tuples of mean and standard error for those metrics." ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": true }, "outputs": [], "source": [ "def hartmann_evaluation_function(parameterization):\n", " x = np.array([parameterization.get(f\"x{i+1}\") for i in range(6)])\n", " # In our case, standard error is 0, since we are computing a synthetic function.\n", " return {\"hartmann6\": (hartmann6(x), 0.0), \"l2norm\": (np.sqrt((x ** 2).sum()), 0.0)}" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If there is only one metric in the experiment – the objective – then evaluation function can return a single tuple of mean and SEM, in which case Ax will assume that evaluation corresponds to the objective. It can also return only the mean as a float, in which case Ax will treat SEM as unknown and use a model that can infer it. For more details on evaluation function, refer to the \"Trial Evaluation\" section in the docs." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 2. Run optimization\n", "The setup for the loop is fully compatible with JSON. The optimization algorithm is selected based on the properties of the problem search space." ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:39:14] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x2. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:39:14] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x3. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:39:14] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x4. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:39:14] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x5. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:39:14] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x6. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:39:14] ax.service.utils.instantiation: Created search space: SearchSpace(parameters=[RangeParameter(name='x1', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x2', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x3', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x4', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x5', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x6', parameter_type=FLOAT, range=[0.0, 1.0])], parameter_constraints=[ParameterConstraint(1.0*x1 + 1.0*x2 <= 20.0)]).\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:39:14] ax.modelbridge.dispatch_utils: Using Bayesian optimization since there are more ordered parameters than there are categories for the unordered categorical parameters.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:39:14] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+GPEI', steps=[Sobol for 12 trials, GPEI for subsequent trials]). Iterations after 12 will take longer to generate due to model-fitting.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:39:14] ax.service.managed_loop: Started full optimization with 30 steps.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:39:14] ax.service.managed_loop: Running optimization trial 1...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:39:14] ax.service.managed_loop: Running optimization trial 2...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:39:14] ax.service.managed_loop: Running optimization trial 3...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:39:14] ax.service.managed_loop: Running optimization trial 4...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:39:14] ax.service.managed_loop: Running optimization trial 5...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:39:14] ax.service.managed_loop: Running optimization trial 6...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:39:14] ax.service.managed_loop: Running optimization trial 7...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:39:14] ax.service.managed_loop: Running optimization trial 8...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:39:14] ax.service.managed_loop: Running optimization trial 9...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:39:14] ax.service.managed_loop: Running optimization trial 10...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:39:14] ax.service.managed_loop: Running optimization trial 11...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:39:14] ax.service.managed_loop: Running optimization trial 12...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:39:14] ax.service.managed_loop: Running optimization trial 13...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:39:20] ax.service.managed_loop: Running optimization trial 14...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:39:26] ax.service.managed_loop: Running optimization trial 15...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:39:32] ax.service.managed_loop: Running optimization trial 16...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:39:37] ax.service.managed_loop: Running optimization trial 17...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:39:43] ax.service.managed_loop: Running optimization trial 18...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:39:49] ax.service.managed_loop: Running optimization trial 19...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:39:55] ax.service.managed_loop: Running optimization trial 20...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:40:02] ax.service.managed_loop: Running optimization trial 21...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:40:08] ax.service.managed_loop: Running optimization trial 22...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:40:14] ax.service.managed_loop: Running optimization trial 23...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:40:20] ax.service.managed_loop: Running optimization trial 24...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:40:26] ax.service.managed_loop: Running optimization trial 25...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:40:32] ax.service.managed_loop: Running optimization trial 26...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:40:38] ax.service.managed_loop: Running optimization trial 27...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:40:44] ax.service.managed_loop: Running optimization trial 28...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:40:50] ax.service.managed_loop: Running optimization trial 29...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-16 16:40:55] 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.40515050898441496,\n", " 'x2': 0.8764179218174042,\n", " 'x3': 0.43999128612860505,\n", " 'x4': 0.526927536356219,\n", " 'x5': 0.33013261711814934,\n", " 'x6': 0.0}" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "best_parameters" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'l2norm': 1.2298333498022433, 'hartmann6': -3.029742536290433}" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "means, covariances = values\n", "means" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "For comparison, minimum of Hartmann6 is:" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "-3.32237" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "hartmann6.fmin" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 3. Plot results\n", "Here we arbitrarily select \"x1\" and \"x2\" as the two parameters to plot for both metrics, \"hartmann6\" and \"l2norm\"." ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "autocolorscale": false, "autocontour": true, "colorbar": { "tickfont": { "size": 8 }, "ticksuffix": "", "x": 0.45, "y": 0.5 }, "colorscale": [ [ 0.0, "rgb(247,252,253)" ], [ 0.125, "rgb(229,245,249)" ], [ 0.25, "rgb(204,236,230)" ], [ 0.375, "rgb(153,216,201)" ], [ 0.5, "rgb(102,194,164)" ], [ 0.625, "rgb(65,174,118)" ], [ 0.75, "rgb(35,139,69)" ], [ 0.875, "rgb(0,109,44)" ], [ 1.0, "rgb(0,68,27)" ] ], "contours": { "coloring": "heatmap" }, "hoverinfo": "x+y+z", "ncontours": 25, "type": "contour", "x": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "xaxis": "x", "y": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "yaxis": "y", "z": [ [ -0.07851770466540653, -0.07476885637331387, -0.07119736905796292, -0.06781107495585947, -0.06461581614360312, -0.061615308085778975, -0.05881104364368617, -0.056202244329062956, -0.053785864999391975, -0.05155665731435033, -0.049507296082573315, -0.047628571104735395, -0.045909645251984155, -0.04433837730713852, -0.042901705558769265, -0.04158608532224306, -0.04037797054677894, -0.0392643265789383, -0.03823315815904871, -0.03727403404140861, -0.03637858749873357, -0.035540970656810944, -0.0347582403577541, -0.034030654276939964, -0.03336185844840989, -0.03275895121112171, -0.032232413764495815, -0.03179590377407271, -0.031465915419052304, -0.03126131644508712, -0.031202779634877942, -0.03131213208491468, -0.031611650281335946, -0.03212333181097604, -0.032868175394917154, -0.03386549974428266, -0.0351323286589692, -0.03668286513639263, -0.03852807147905091, -0.04067536600649091, -0.04312844052100995, -0.04588719662688956, -0.048947793745849455, -0.05230279746751343, -0.05594141385410056, -0.0598497934918224, -0.06401138836051057, -0.06840734481938626, -0.07301691698710533, -0.07781788632135933 ], [ -0.08383564514128317, -0.08031912067284519, -0.07698266732280934, -0.07383305266328655, -0.07087488671358644, -0.06811047760345701, -0.06553973053211848, -0.06316009757504326, -0.060966585337509094, -0.05895182658483711, -0.057106220762381255, -0.05541814672644996, -0.05387424901777749, -0.05245979661157851, -0.05115911028249864, -0.04995605156875438, -0.04883456288772059, -0.047779244778594965, -0.04677595271530299, -0.04581239269225401, -0.044878692128758835, -0.04396792088447643, -0.04307653663940447, -0.042204729833139054, -0.04135664595722044, -0.04054046729902905, -0.03976834213860658, -0.039056156621778304, -0.03842315263511664, -0.03789140341871411, -0.037485166720914065, -0.03723014235909139, -0.03715266649932525, -0.03727887833147825, -0.037633895815586293, -0.03824103575609861, -0.039121109802382814, -0.040291822468524474, -0.041767290456841355, -0.04355769509063123, -0.04566907214778637, -0.04810323640835945, -0.05085783223232743, -0.05392649676201866, -0.05729911903007645, -0.060962176336790685, -0.06489912861534675, -0.06909085193021247, -0.07351609351202837, -0.07815193257841402 ], [ -0.09025559054028132, -0.08701784559182346, -0.08396307111666879, -0.0810967857934154, -0.07842216560902182, -0.07593989107317789, -0.07364804075190856, -0.07154203951494242, -0.06961466938362704, -0.06785615001444056, -0.06625429461829346, -0.06479474545933162, -0.06346129096532727, -0.0622362638921834, -0.06110101691502334, -0.06003646849792199, -0.0590237080017052, -0.05804464486299865, -0.05708268252861182, -0.05612339394081034, -0.055155172087562154, -0.054169826843573854, -0.053163098418421484, -0.05213505853626821, -0.05109037323278576, -0.050038405952504306, -0.048993146356235306, -0.047972958588257675, -0.04700015218972631, -0.04610038870019517, -0.045301946480271416, -0.0446348746152736, -0.044130073190772445, -0.04381834119548389, -0.043729434467218, -0.04389117439042001, -0.04432864370457357, -0.04506349926694764, -0.046113423597065384, -0.047491728275919964, -0.04920711354234775, -0.051263580395539354, -0.05366048469163576, -0.05639271744052465, -0.0594509918959909, -0.0628222160486509, -0.06648992860413883, -0.07043477720750813, -0.07463501926495897, -0.07906702792873221 ], [ -0.09784396577830434, -0.09493536484590925, -0.0922129016373261, -0.08968064544127319, -0.0873401177512515, -0.08519013040029944, -0.08322667325541655, -0.08144286079148044, -0.07982894641246185, -0.0783724125635541, -0.077058143432015, -0.07586868531803848, -0.07478459752402855, -0.07378489382269371, -0.07284757120447771, -0.07195021868976548, -0.07107069459185167, -0.07018785587534582, -0.06928231840306709, -0.06833722222426997, -0.06733897203843653, -0.0662779200344148, -0.06514895693271006, -0.06395197767451144, -0.06269219111493551, -0.06138024841841139, -0.06003217251615811, -0.05866908061171838, -0.0573167027060264, -0.056004710647290956, -0.05476588336049404, -0.053635143709611977, -0.05264851001492976, -0.05184200989883381, -0.051250605462511256, -0.05090717673244449, -0.05084160513816982, -0.051079991074769904, -0.05164403017343033, -0.052550562671467405, -0.05381130014799451, -0.05543272466671623, -0.05741614763449521, -0.05975790980251239, -0.0624496999266535, -0.06547896758536476, -0.06882940529717685, -0.07248147606942101, -0.07641296449268187, -0.08059953213305437 ], [ -0.10666637557769465, -0.10414129992389332, -0.10180588748744346, -0.0996625407606605, -0.09771088687710894, -0.09594760595265339, -0.0943663124795937, -0.09295750011092119, -0.09170855978761683, -0.09060388037344858, -0.08962503971173286, -0.0887510922457746, -0.08795895698919065, -0.08722390664021706, -0.08652015496824106, -0.08582153526204839, -0.08510225767568724, -0.0843377278818993, -0.08350540379462157, -0.08258566161657, -0.0815626375830284, -0.08042500806659814, -0.07916666876398337, -0.07778727404105679, -0.07629260056650389, -0.07469470530353983, -0.07301185665592591, -0.0712682286717945, -0.06949336098513592, -0.06772140065785126, -0.0659901551560329, -0.06433999719576056, -0.06281267107061539, -0.06145005550114002, -0.0602929395443752, -0.05937986559467212, -0.058746087339700215, -0.058422681423318745, -0.058435840487808255, -0.05880636333073752, -0.05954934619699559, -0.060674068664180125, -0.062184058845614065, -0.0640773161188537, -0.06634666539022005, -0.06898021489633, -0.07196188941953785, -0.07527201216334023, -0.07888791097549563, -0.08278452772551892 ], [ -0.116787007435326, -0.1147039375602803, -0.11281451705532586, -0.11111924673977536, -0.10961559925624875, -0.10829783679900462, -0.10715688568473747, -0.10618027922580764, -0.10535218005964431, -0.10465349234421717, -0.10406207297897141, -0.103553049183155, -0.10309924728297581, -0.10267173435380084, -0.10224047037604189, -0.10177506377069467, -0.10124561762375928, -0.10062364772490529, -0.09988304699953388, -0.09900106441556034, -0.09795926055210658, -0.09674439739385177, -0.09534921727586143, -0.09377306591744838, -0.09202231766438729, -0.0901105676615157, -0.08805856561954217, -0.08589387865247256, -0.08365028550929643, -0.08136692026095405, -0.07908719879284754, -0.07685757491309508, -0.0747261832541467, -0.07274143244106712, -0.07095061365523014, -0.06939858666154264, -0.06812659802025889, -0.06717127544238866, -0.06656382925457305, -0.06632947804395017, -0.06648710203729702, -0.0670491157152453, -0.06802154133901006, -0.06940425788807791, -0.07119139544454145, -0.07337184311302536, -0.07592983874551196, -0.07884561056593975, -0.08209604376168922, -0.08565534877107794 ], [ -0.12826797544324253, -0.12668954263337906, -0.12530932067769196, -0.12412565592334224, -0.12313358535527297, -0.12232464275954857, -0.12168672586643514, -0.12120403717747985, -0.12085711096409535, -0.12062293823105752, -0.12047520018990876, -0.12038461890183494, -0.12031943113730414, -0.12024598807066422, -0.12012947909881033, -0.11993477279570264, -0.11962736180386602, -0.11917439144488229, -0.11854574427910503, -0.11771514521562054, -0.11666124471039596, -0.11536863188707325, -0.11382872593914628, -0.11204049375475, -0.11001094499715425, -0.10775536322067625, -0.10529724293249143, -0.10266791728961111, -0.09990587835877807, -0.09705581020340104, -0.0941673728998983, -0.09129379128073234, -0.08849031425175602, -0.0858126177801708, -0.08331522643259226, -0.08105002459207089, -0.07906491973121366, -0.07740270742710731, -0.07610017260061952, -0.0751874453317789, -0.07468761405960234, -0.0746165852713242, -0.07498316778950831, -0.075789351905581, -0.07703074891396855, -0.0786971547842581, -0.08077320227605134, -0.08323906816765747, -0.08607120584935402, -0.08924307780146268 ], [ -0.14116860414549293, -0.14016160510968867, -0.13935808057862742, -0.1387539513866517, -0.1383415160065785, -0.13810924402733282, -0.13804163515632883, -0.13811915783770257, -0.13831828146063485, -0.13861161549259537, -0.13896816762285025, -0.13935373105016835, -0.1397314082918797, -0.1400622752206535, -0.14030618434203523, -0.14042270052918604, -0.140372155513677, -0.14011679949654265, -0.13962201957050113, -0.13885758573353935, -0.1377988768655809, -0.13642803207306764, -0.13473496833701037, -0.13271820445030247, -0.13038543462279806, -0.12775380331955388, -0.12484984582539815, -0.12170907607692127, -0.11837522329913075, -0.11489914030596926, -0.11133742707436112, -0.1077508314260377, -0.1042025025788762, -0.10075618160369504, -0.09747441467916473, -0.0944168704255578, -0.09163883218006852, -0.08918992113994828, -0.0871130885594874, -0.08544389652288586, -0.0842100890066122, -0.08343143943495468, -0.0831198486848066, -0.08327965895022216, -0.08390814399945556, -0.08499613474980117, -0.0865287401329714, -0.08848612622204077, -0.09084432085857286, -0.0935760159616601 ], [ -0.15554465238372917, -0.1551800204322331, -0.15502496735364557, -0.15507269902933674, -0.15531245037966457, -0.15572926482417015, -0.15630384428674282, -0.15701248539206658, -0.15782711749467415, -0.15871545759870986, -0.1596412959690252, -0.16056492420042512, -0.16144371458860962, -0.1622328557077275, -0.16288624401100382, -0.16335752491519362, -0.16360126914883188, -0.1635742612087978, -0.16323686685302496, -0.16255443620251753, -0.16149868907755693, -0.1600490207627009, -0.15819366075628982, -0.15593061547227383, -0.1532683293527468, -0.15022600799878882, -0.1468335617014721, -0.14313114742561184, -0.13916831047048417, -0.13500275177136734, -0.13069877085979476, -0.12632545556090125, -0.12195470549815146, -0.1176591858230509, -0.11351030942999873, -0.10957634023001894, -0.10592069767068035, -0.10260052515629337, -0.09966556438931995, -0.09715735614338494, -0.0951087676626976, -0.09354382941294359, -0.09247785034588085, -0.0919177716192473, -0.09186271371503596, -0.09230467059454661, -0.09322930615780589, -0.09461681200175032, -0.09644279050991411, -0.09867913298950792 ], [ -0.1714474780552161, -0.17180020375236893, -0.17236960279277458, -0.17314585829419193, -0.17411479409045416, -0.175257638581223, -0.17655086469581371, -0.17796612337338036, -0.17947028808147836, -0.18102562736915995, -0.18259012117147866, -0.1841179344401953, -0.18556005855155921, -0.1868651266956327, -0.18798040392546067, -0.1888529455813045, -0.18943090929764306, -0.18966499577499263, -0.18950998220845006, -0.18892630029254387, -0.1878815990235313, -0.1863522224062888, -0.1843245251755009, -0.18179594730604376, -0.17877577168666436, -0.17528549960222728, -0.17135879559066303, -0.16704097594950484, -0.16238804199029888, -0.15746528777296165, -0.1523455398256519, -0.14710711055936054, -0.1418315653063995, -0.13660141334603382, -0.13149783497025436, -0.12659854962339823, -0.12197591544650455, -0.11769533004077082, -0.11381397836158513, -0.1103799489734204, -0.1074317168349549, -0.10499797121243348, -0.10309775239490437, -0.10174085101735253, -0.1009284187580678, -0.10065373827952673, -0.10090310260194191, -0.10165675865427148, -0.10288987564003804, -0.10457350534393528 ], [ -0.18892314591203085, -0.19007213967195902, -0.19144605015847227, -0.19303171178433276, -0.19481116718742997, -0.19676141355923726, -0.19885423128321422, -0.201056114280311, -0.2033283217209534, -0.20562707029372662, -0.2079038849002266, -0.21010612335844192, -0.21217768732052766, -0.21405992699960996, -0.21569274127581717, -0.2170158671179897, -0.217970342850906, -0.21850011858336682, -0.21855377431233491, -0.21808629244158007, -0.21706081777972241, -0.21545032604637637, -0.21323911336086399, -0.21042401599847238, -0.20701527344684678, -0.20303695939236777, -0.1985269247033148, -0.19353622270915405, -0.18812801809262147, -0.18237601375912704, -0.17636246197253802, -0.17017585368434618, -0.16390840055846667, -0.1576534356684397, -0.15150286018524117, -0.14554475470355455, -0.1398612564427858, -0.1345267796417473, -0.1296066289022677, -0.12515602706320128, -0.12121955315313027, -0.11783096417766725, -0.11501335818567493, -0.11277962559413834, -0.11113313076540465, -0.1100685654562702, -0.10957291888342868, -0.10962651463482698, -0.11020407148543476, -0.11127575253403776 ], [ -0.20801148199852937, -0.21003937073139078, -0.21230173470005775, -0.21478171600829743, -0.2174571835909861, -0.22030045973142176, -0.22327813578984745, -0.22635099882027554, -0.2294740911797465, -0.23259692482345662, -0.2356638705920704, -0.2386147403135661, -0.24138557584344633, -0.24390965410690146, -0.24611871060033308, -0.24794437541930225, -0.24931980548549482, -0.2501814841324428, -0.25047114475190635, -0.2501377594243781, -0.24913951756749952, -0.24744570542742683, -0.24503838692128266, -0.24191378220263582, -0.2380832442939812, -0.2335737473257804, -0.22842782232458214, -0.22270290682313476, -0.2164701103873813, -0.2098124361785776, -0.20282253517731152, -0.1956001010257905, -0.1882490364371805, -0.18087453451526447, -0.17358021904495868, -0.16646547711120385, -0.1596230968442398, -0.1531372953307666, -0.14708219011304746, -0.14152073572313717, -0.1365041174948487, -0.1320715707901856, -0.12825057608263346, -0.1250573693489745, -0.12249770239991098, -0.12056778805057289, -0.11925536907803491, -0.11854085642713841, -0.11839848996968116, -0.1187974834094736 ], [ -0.22874508008136119, -0.23173792978318564, -0.23497629923815988, -0.23843927768079876, -0.24210014590199735, -0.24592608022354712, -0.2498779533677209, -0.2539102565145607, -0.2579711674655579, -0.26200278948440525, -0.26594158390362077, -0.2697190168407758, -0.27326243625125224, -0.2764961899237365, -0.27934298771500543, -0.2817255020605395, -0.28356818929816385, -0.2847993004047684, -0.2853530334686455, -0.2851717622306642, -0.2842082566676345, -0.2824277949507641, -0.2798100538298399, -0.2763506593464228, -0.2720622841082605, -0.2669751925097813, -0.2611371612064066, -0.254612737251539, -0.2474818376186304, -0.23983773742283243, -0.23178453566605617, -0.22343422254634293, -0.21490349775319062, -0.2063105022596452, -0.1977716258469875, -0.18939853940414697, -0.1812955768566239, -0.17355755952602459, -0.16626811967050492, -0.15949854390534568, -0.15330712466486984, -0.14773898139805708, -0.14282629414832082, -0.13858888074719777, -0.1350350443172833, -0.1321626188225663, -0.12996014548606616, -0.12840812053088735, -0.127480263634147, -0.1271447657541781 ], [ -0.25114826748794905, -0.2551952236523183, -0.2595004021223527, -0.26403846269005016, -0.26877766239387635, -0.27367953371804754, -0.2786986682240373, -0.28378263291565087, -0.2888720475102241, -0.29390085051797843, -0.2987967804239877, -0.30348209518428126, -0.30787454859038044, -0.31188863572363246, -0.315437111544732, -0.3184327763738093, -0.3207905092612834, -0.3224295147328028, -0.32327573011393274, -0.3232643202156388, -0.32234216506914215, -0.3204702270634151, -0.31762566940722614, -0.31380359165753113, -0.3090182529575868, -0.30330367120816015, -0.2967135165175646, -0.2893202579361317, -0.2812135700487399, -0.2724980557728005, -0.26329038859410026, -0.25371601667966426, -0.24390559892134378, -0.2339913563931495, -0.22410352095251085, -0.21436704649926508, -0.20489872006901488, -0.19580477313969524, -0.18717905269939017, -0.17910177127072902, -0.17163881911286027, -0.16484159298838674, -0.1587472755691114, -0.1533794878211323, -0.1487492325961982, -0.1448560495975001, -0.14168930811294378, -0.13922957275442527, -0.13744998752887472, -0.13631763387126428 ], [ -0.2752360401377749, -0.28042887811270967, -0.28589446776953253, -0.29160264803755, -0.2975161965001575, -0.3035904780357268, -0.30977320834292466, -0.316004363114499, -0.32221626480359566, -0.3283338787615756, -0.3342753487679615, -0.33995279846257487, -0.345273419843957, -0.350140862755677, -0.35445693002140677, -0.35812357135120954, -0.36104515492663136, -0.36313097827858964, -0.3642979595861908, -0.3644734274222664, -0.3635979028765892, -0.36162774570484313, -0.3585375194191006, -0.3543219230738396, -0.3489971433026735, -0.3426015007810874, -0.33519530044427426, -0.3268598419222213, -0.3176956013122144, -0.3078196519765556, -0.2973624446149684, -0.28646411002563577, -0.27527047750177336, -0.2639290150617488, -0.252584893868539, -0.24137735933559412, -0.2304365583844391, -0.2198809303470618, -0.2098152231054473, -0.20032915125552742, -0.19149667364122502, -0.18337583646678657, -0.17600910672751546, -0.1694241087941032, -0.1636346734320554, -0.15864211149876517, -0.1544366320270737, -0.15099883453307972, -0.14830121668217755, -0.14630964982788575 ], [ -0.30101297921338244, -0.30744555719294264, -0.31416740332257287, -0.32114313076364176, -0.3283295632171863, -0.33567534963832557, -0.3431207042545703, -0.35059730662810273, -0.35802839808018794, -0.36532911078259966, -0.37240706389665534, -0.37916325710849785, -0.38549328569642316, -0.3912888928687336, -0.3964398644784285, -0.40083625814063806, -0.40437094282795294, -0.40694240569313556, -0.4084577599236555, -0.408835861388683, -0.4080104144682313, -0.4059329219941237, -0.4025753151057797, -0.3979320908361871, -0.39202179241962154, -0.38488769176613913, -0.37659757474135946, -0.36724258454582304, -0.3569351411342727, -0.3458060185580156, -0.3340007205362213, -0.32167534147656207, -0.3089921310954358, -0.29611499315767487, -0.2832051421643289, -0.27041711761932374, -0.25789531721985204, -0.24577116278313826, -0.23416096154405586, -0.22316447614533907, -0.21286417379428801, -0.20332509175032665, -0.19459523384697575, -0.1867064008379351, -0.1796753545033245, -0.1735052195454173, -0.168187036093563, -0.16370138711009152, -0.1600200375374322, -0.15710753451632042 ], [ -0.3284721648386637, -0.33623977312803377, -0.34431529869471067, -0.3526577120605652, -0.3612173915322884, -0.3699356990274433, -0.378744692630818, -0.3875670151712757, -0.3963160001980556, -0.40489603694823717, -0.41320323381017476, -0.42112641513941884, -0.4285484790045775, -0.4353481335886161, -0.4414020176036514, -0.4465871950671046, -0.45078399672969705, -0.4538791587499623, -0.45576918349658035, -0.4563638180782175, -0.45558951528333236, -0.453392712784662, -0.4497427449417217, -0.4446341930214634, -0.43808848888071433, -0.43015461645262, -0.4209088038206761, -0.4104531620316858, -0.3989132983675584, -0.3864350036265597, -0.3731801772652954, -0.3593222044817178, -0.3450410308851074, -0.33051819096759993, -0.3159320361424385, -0.30145337880911793, -0.287241724811534, -0.27344221324959195, -0.2601833260485522, -0.24757537593561352, -0.23570973538565754, -0.22465873382732304, -0.21447612715813758, -0.2051980318728196, -0.19684421409513553, -0.18941962912540522, -0.1829161172952587, -0.1773141747771355, -0.17258473182618683, -0.16869088455276526 ], [ -0.3575941052518635, -0.366792706833296, -0.3763201313141845, -0.38612927936806485, -0.3961635771853128, -0.40635650787546285, -0.41663129206711236, -0.4269007621717862, -0.4370674775218796, -0.4470241281363278, -0.45665427264680336, -0.4658334505702438, -0.47443070054885794, -0.48231050452196056, -0.4893351632398301, -0.49536759109119305, -0.5002744975592046, -0.5039298981096515, -0.5062188684394275, -0.5070414231581954, -0.5063163652466515, -0.5039849203157794, -0.5000139459052965, -0.494398497520637, -0.4871635452994074, -0.47836467061381666, -0.46808762903537393, -0.4564467394824373, -0.4435821408022941, -0.4296560371452737, -0.4148481234585897, -0.3993504352584428, -0.3833618979994702, -0.36708285898155657, -0.35070986946870264, -0.3344309494586153, -0.3184215171205137, -0.30284110542279363, -0.287830926573744, -0.2735122869055594, -0.25998580579039676, -0.24733135524281225, -0.23560861309431724, -0.22485811124764143, -0.2151026594742973, -0.20634903184875808, -0.19858981452199653, -0.1918053277978543, -0.18596555059917497, -0.18103199017164573 ], [ -0.3883457031958505, -0.39907106249669444, -0.41014850115007606, -0.4215244141286687, -0.4331347556426086, -0.44490452006732095, -0.4567473856092313, -0.4685655710244182, -0.48024995927485387, -0.49168054302406905, -0.5027272445808492, -0.5132511567909219, -0.5231062412996881, -0.5321415067497792, -0.5402036721932477, -0.5471403005042856, -0.5528033626849312, -0.5570531660413718, -0.5597625466716434, -0.560821189880627, -0.5601399033463805, -0.5576546320210134, -0.5533299780099621, -0.5471619808697561, -0.5391799301532516, -0.5294470251367814, -0.5180597641221363, -0.5051460305468478, -0.4908619353193157, -0.47538756337174454, -0.4589218475669541, -0.441676847483148, -0.42387174001548833, -0.4057268320231022, -0.3874578839812779, -0.3692709915797945, -0.35135821500457, -0.3338940799662681, -0.3170330074913603, -0.3009076676183352, -0.28562820056135607, -0.2712822106874201, -0.25793541466337233, -0.24563281432293127, -0.23440026485223653, -0.22424631688433005, -0.21516422414933467, -0.20713402398942438, -0.20012461445582053, -0.19409576760317127 ], [ -0.42067928448452196, -0.4330259836382754, -0.44575042593735553, -0.4587920578794169, -0.47207883091644354, -0.48552662543844904, -0.4990388521525402, -0.5125062877255665, -0.5258072061574572, -0.5388078690179633, -0.5513634354171298, -0.56331934567525, -0.5745132208451025, -0.5847773037416684, -0.5939414464859396, -0.6018366252550474, -0.6082989349923951, -0.6131739847537778, -0.6163215775292321, -0.6176205171202676, -0.6169733415647296, -0.6143107433403503, -0.6095954094378235, -0.6028250084158167, -0.5940340737352423, -0.5832945853747664, -0.5707151314127743, -0.5564386290262819, -0.5406386880624494, -0.5235147973100014, -0.5052865930571375, -0.4861875240553645, -0.46645825301386995, -0.4463401321111907, -0.42606906144517376, -0.4058699897020266, -0.38595225198359384, -0.36650586794922635, -0.34769885159932834, -0.32967551879689694, -0.31255572504718043, -0.2964349270262153, -0.28138493748290183, -0.26745523312200337, -0.2546746763211978, -0.2430535209214686, -0.2325855868204485, -0.2232505051330521, -0.21501595334780965, -0.2078398169195571 ], [ -0.45453171680567145, -0.46859206161218553, -0.483058230743026, -0.49786227426257207, -0.5129236015468008, -0.528148341572162, -0.5434288964400308, -0.5586437522896083, -0.5736576176002641, -0.5883219614096405, -0.6024760218843144, -0.6159483479800127, -0.6285589231724392, -0.6401219006373849, -0.6504489545299396, -0.6593532229659848, -0.6666537853300012, -0.6721805793352376, -0.6757796213212732, -0.6773183470266857, -0.6766908424907818, -0.6738226923286288, -0.6686751449411064, -0.6612482915635713, -0.6515829860615279, -0.6397612969546522, -0.6259053771409493, -0.6101747489581582, -0.5927621180046697, -0.5738879340753812, -0.5537940000628143, -0.5327364825365157, -0.5109786983361283, -0.48878404116336405, -0.4664093749515706, -0.4440991627504853, -0.4220805281694988, -0.40055936878082565, -0.37971756482753094, -0.3597112586797171, -0.3406701255747667, -0.3226975168821363, -0.30587133377132014, -0.29024548015326856, -0.2758517462977187, -0.26270198531377453, -0.25079046056305243, -0.24009626042516485, -0.2305856957015351, -0.222214613029313 ], [ -0.48982364962229996, -0.5056864708407335, -0.5219855699105849, -0.5386451490947798, -0.55557553038009, -0.5726724452108911, -0.5898165345881421, -0.6068731317176921, -0.6236924067239165, -0.6401099565643159, -0.6559479215401565, -0.6710167013435884, -0.685117327695415, -0.698044527441819, -0.709590480378878, -0.7195492412449593, -0.7277217561091773, -0.7339213598907679, -0.7379795937071099, -0.7397521288658512, -0.7391245320848897, -0.7360175614546609, -0.7303916556670472, -0.7222502816657359, -0.7116418461937833, -0.6986599557771308, -0.6834419202155249, -0.6661655225894247, -0.647044206902603, -0.6263209464899357, -0.6042611400908666, -0.5811449314552777, -0.5572593613322429, -0.5328907407167682, -0.5083175870509795, -0.4838043979729555, -0.45959645812612476, -0.4359157914915343, -0.41295829216607627, -0.39089199677456, -0.36985640624133764, -0.3499627256945167, -0.33129486882699066, -0.31391106525515666, -0.29784591330704735, -0.28311273282962834, -0.269706089807224, -0.25760438416329934, -0.24677241210802925, -0.23716383349046977 ], [ -0.5264589083533493, -0.5442082678598736, -0.5624266227409617, -0.5810298745580702, -0.5999187093889667, -0.6189778102377472, -0.6380752983882733, -0.6570624846773547, -0.6757740207127394, -0.6940285450197612, -0.711629917910308, -0.7283691297256429, -0.7440269489271191, -0.7583773492553431, -0.7711917198598128, -0.7822438205155305, -0.7913153972152032, -0.7982023222425016, -0.8027210675158409, -0.8047152617355168, -0.8040620249128444, -0.8006777268884891, -0.7945227918280263, -0.7856051810982061, -0.7739822405523604, -0.7597606947516437, -0.7430947000162418, -0.7241820130721284, -0.7032584723076148, -0.6805911063235814, -0.6564702672350543, -0.6312012286282584, -0.605095690945667, -0.5784636055072512, -0.5516056699871172, -0.5248067715210205, -0.49833056733967407, -0.47241530502874945, -0.44727090241580547, -0.4230772364886759, -0.3999835355926177, -0.37810873119869437, -0.35754260441995867, -0.33834755610327394, -0.3205608346226507, -0.3041970689790279, -0.2892509732316849, -0.2757001089832235, -0.26350761364914, -0.2526248222662931 ], [ -0.564324077643326, -0.5840378932886883, -0.6042555067520337, -0.6248840665602454, -0.6458140743244827, -0.6669185133678629, -0.6880522265489575, -0.7090516338253166, -0.7297348910887135, -0.7499025983395115, -0.7693391648291722, -0.7878149290556924, -0.805089110878574, -0.8209136412152933, -0.8350378728526091, -0.8472141258832958, -0.8572039652872179, -0.8647850477053235, -0.8697583105058628, -0.8719552108108787, -0.8712446605125552, -0.8675392555249019, -0.8608003774415731, -0.8510417670271561, -0.8383312393598141, -0.8227903275607881, -0.8045917924860067, -0.7839550983670913, -0.7611401060440984, -0.7364393567442165, -0.7101693983451419, -0.682661639024212, -0.6542532033317066, -0.6252782206649339, -0.5960599054636081, -0.5669037020341171, -0.5380916738661158, -0.509878225647225, -0.482487162602418, -0.45611002140101503, -0.4309055529372744, -0.40700020100676326, -0.384489401534417, -0.36343952228842014, -0.3438902697431264, -0.32585740447552225, -0.3093356259879254, -0.2943015095215791, -0.28071639932556136, -0.26852918368959033 ], [ -0.6032883092493131, -0.6250369168619521, -0.6473259537199464, -0.6700533660360182, -0.6930989261033258, -0.71632327122251, -0.7395672140428478, -0.7626514252340397, -0.7853766025236553, -0.807524248458058, -0.8288581797381608, -0.8491268807030246, -0.8680667903251492, -0.885406575228353, -0.9008723917791133, -0.9141940806832769, -0.9251121706890992, -0.933385496491164, -0.9387991618729801, -0.9411725057140532, -0.9403666623880431, -0.9362912609552029, -0.9289097947312485, -0.9182432285188769, -0.904371501797721, -0.8874327272099838, -0.867620057199589, -0.8451763723247481, -0.8203871064441133, -0.7935716462780934, -0.7650738147711746, -0.7352519679398238, -0.7044692096664832, -0.6730841686012372, -0.6414426976331454, -0.6098707602882772, -0.5786686693151761, -0.5481067482808524, -0.5184224031516427, -0.489818521797973, -0.4624630675737074, -0.436489699171397, -0.41199923173112063, -0.3890617512503022, -0.3677192025008854, -0.3479882865169671, -0.32986352415839415, -0.31332036473825675, -0.29831824134208873, -0.28480349600537147 ], [ -0.6432033896436333, -0.6670480654180713, -0.6914712936509677, -0.7163613750922024, -0.7415868161397581, -0.7669952729179854, -0.7924127913105565, -0.8176434550826469, -0.8424695696333917, -0.8666525191901376, -0.8899344368076149, -0.9120408157433721, -0.932684164787191, -0.9515687676967909, -0.9683965489415901, -0.9828739773340504, -0.994719859708902, -1.0036737924437027, -1.0095049529496782, -1.012020831160099, -1.0110754309774435, -1.0065764271038513, -0.9984907603616997, -0.9868482088497278, -0.9717425880237689, -0.9533304009761325, -0.9318269583884902, -0.90750018599382, -0.8806625069850443, -0.8516613068228338, -0.8208685490915206, -0.7886701152699651, -0.75545539819589, -0.7216076020257828, -0.6874951043448911, -0.6534641307148938, -0.6198328877895742, -0.5868872051731846, -0.5548776533709581, -0.5240180386421824, -0.49448512682902734, -0.4664194172352722, -0.4399267728983008, -0.4150807125862437, -0.3919251794088616, -0.37047761779399224, -0.35073221178339176, -0.3326631607111523, -0.3162278915402119, -0.3013701292227996 ], [ -0.6839041006077764, -0.7098955719373443, -0.7365047900468397, -0.7636099770982001, -0.791067850957239, -0.8187124702764427, -0.8463544027961257, -0.873780341122777, -0.9007533080512882, -0.9270136058102842, -0.9522806662623666, -0.976255947714793, -0.998626994943123, -1.0190727304367033, -1.0372699774300136, -1.052901132219535, -1.0656628095009442, -1.0752751854392864, -1.0814916645227293, -1.084108404988066, -1.0829731644642009, -1.0779928879652585, -1.0691394723159322, -1.056453218301801, -1.0400436264713973, -1.0200873907430432, -0.9968236678051576, -0.9705469152155024, -0.9415977657586401, -0.9103525195204718, -0.8772118816838071, -0.8425895589405115, -0.8069012642586502, -0.7705545850760062, -0.7339400594399759, -0.6974236907994257, -0.6613410241879139, -0.625992810465096, -0.5916422048029042, -0.5585133826693188, -0.5267914117016438, -0.4966231903542539, -0.4681192522495228, -0.4413562361488374, -0.4163798323513044, -0.3932080340489623, -0.3718345439380609, -0.35223220992871584, -0.3343563873978993, -0.3181481479202337 ], [ -0.725208902633744, -0.7533858800948527, -0.7822203659967849, -0.8115800857344831, -0.8413094669779031, -0.8712283828476718, -0.9011312487125547, -0.9307866099740661, -0.9599373784809718, -0.9883018895863555, -1.0155759555481012, -1.041436078813134, -1.0655439562011362, -1.0875523495347104, -1.1071123202396906, -1.1238817284776148, -1.1375347875589026, -1.1477723490686367, -1.1543324813671552, -1.1570008036580877, -1.155619963032646, -1.1500976104127605, -1.1404122617440464, -1.1266165355623459, -1.1088374354959702, -1.0872735768038744, -1.0621895056057, -1.0339074888719597, -1.0027973293367358, -0.969264863021535, -0.9337398249679573, -0.8966637313196416, -0.8584783409316177, -0.8196151468661302, -0.7804862247278415, -0.741476643724861, -0.7029385360481964, -0.6651868254491546, -0.6284965390523585, -0.5931015681224141, -0.5591947032281643, -0.5269287456632756, -0.49641848800051785, -0.4677433596679649, -0.44095054556677427, -0.4160584041616189, -0.39306003361886377, -0.3719268583419847, -0.35261213206319064, -0.33505427637699514 ], [ -0.7669209656288505, -0.7973087330629947, -0.8283937544398865, -0.8600328612854364, -0.892057719003958, -0.924273466714111, -0.9564577446446295, -0.9883602606247173, -1.0197030699757441, -1.0501817594733462, -1.0794677305817606, -1.1072117638547103, -1.1330490098133779, -1.1566054883899384, -1.1775060892296318, -1.195383952806131, -1.2098909848575838, -1.22070912368273, -1.227561852322072, -1.2302253385605748, -1.2285385114038005, -1.2224113628484994, -1.2118308172187142, -1.196863647160682, -1.177656128962304, -1.1544303940298954, -1.127477707611597, -1.0971491467157222, -1.0638443224295342, -1.0279988805008327, -0.9900715195133396, -0.9505312036471893, -0.9098451391578916, -0.8684679529180842, -0.8268323761861862, -0.7853416099946805, -0.7443634375738819, -0.7042260573612232, -0.6652155381341016, -0.6275747449607731, -0.5915035495291957, -0.5571601190463282, -0.5246630719960277, -0.49409429404238964, -0.4655022206093083, -0.43890541159404434, -0.4142962659909255, -0.39164474800999904, -0.3709020201092481, -0.3520039011624472 ], [ -0.8088295640698062, -0.8414386672475354, -0.8747840971236328, -0.9087114227790805, -0.9430391152112435, -0.9775570841423855, -1.0120256401892864, -1.0461750492286002, -1.0797058710483758, -1.112290292588104, -1.1435746711279244, -1.1731834877945964, -1.2007248703078188, -1.2257977718337751, -1.248000789894087, -1.2669424800581475, -1.2822528726358067, -1.2935957490178456, -1.300681092071451, -1.303277008724824, -1.3012203520986585, -1.2944252666464011, -1.28288896097387, -1.266694185967225, -1.2460081479401681, -1.221077884334257, -1.1922224261446308, -1.159822319488102, -1.1243072443500468, -1.0861425378475988, -1.0458154090231044, -1.0038215431466082, -0.9606526624586269, -0.9167854624151335, -0.872672197135951, -0.8287330571196866, -0.7853503723550215, -0.7428645863546897, -0.7015718804865813, -0.6617232812736724, -0.6235250537063834, -0.5871401686087365, -0.5526906292701494, -0.5202604494438514, -0.4898990890169757, -0.46162517291739363, -0.4354303411236356, -0.41128310130087464, -0.38913257926936995, -0.3689120852385267 ], [ -0.8507118442888651, -0.8855369211458317, -0.921136005160668, -0.957343071703855, -0.9939630171936367, -1.030770095232286, -1.06750681998483, -1.1038835200968053, -1.1395787541462756, -1.1742408184784308, -1.2074905834189777, -1.2389258764733653, -1.2681275838000374, -1.2946675590450254, -1.318118311059382, -1.3380642943669052, -1.354114459436059, -1.3659155491779096, -1.3731654719553104, -1.3756259603829233, -1.3731336619394114, -1.3656088243816873, -1.3530608526907444, -1.3355902267476436, -1.3133865605877704, -1.2867229140024339, -1.2559467825074286, -1.221468442306624, -1.1837474797379812, -1.143278380444415, -1.1005760047791429, -1.0561616593459426, -1.0105503209503033, -0.9642394058949547, -0.917699324065929, -0.8713659247811251, -0.8256348341986192, -0.7808576020011604, -0.7373395155916329, -0.6953388999080676, -0.655067697008835, -0.6166931089351224, -0.5803400874982261, -0.5460944632641416, -0.5140065209988629, -0.4840948482488731, -0.45635030583805564, -0.43073999239595784, -0.4072110984072561, -0.38569456777913547 ], [ -0.8923349600641226, -0.9293537566044647, -0.9671820796488956, -1.0056420269232447, -1.0445246056360564, -1.08358807267228, -1.122556788057323, -1.1611207825775987, -1.1989362705214393, -1.2356273597381509, -1.2707892159221357, -1.3039929173940055, -1.3347921822562192, -1.3627320559387945, -1.3873595132450367, -1.408235761324955, -1.4249498418449962, -1.437132941003801, -1.444472647727808, -1.4467262782192605, -1.4437323343515778, -1.435419206794906, -1.421810384644906, -1.4030256876937965, -1.3792783681291003, -1.3508682870910145, -1.3181717001099444, -1.2816284325507978, -1.2417273611063704, -1.1989911360014378, -1.1539609998078182, -1.1071824148072933, -1.0591920362070812, -1.0105063919801265, -0.9616124708962273, -0.9129602881137435, -0.8649573948808866, -0.8179652233719328, -0.7722971054201203, -0.7282177705453277, -0.6859441103485298, -0.6456469899052695, -0.6074538897008153, -0.571452171811375, -0.5376927796222482, -0.5061941997643551, -0.47694653670240267, -0.44991557326974396, -0.4250467133728697, -0.4022687252483955 ], [ -0.9334585593768546, -0.9726311746791234, -1.0126458738136317, -1.0533126512955064, -1.0944083907774695, -1.1356751167651553, -1.1768188096607082, -1.217509003613034, -1.2573794190222134, -1.2960299038603595, -1.333029961661729, -1.3679241192142755, -1.4002393241990168, -1.4294944558445457, -1.4552118796063414, -1.4769307875599487, -1.494221855846522, -1.5067025424997877, -1.5140521710853747, -1.5160258269463234, -1.5124660608441878, -1.5033114706624484, -1.4886014241867342, -1.4684764833971884, -1.4431744579445511, -1.4130223975554914, -1.3784251683162887, -1.339851494885029, -1.297818462705746, -1.252875463083176, -1.2055884547764573, -1.1565252458607267, -1.1062423064619076, -1.055273436101794, -1.0041204470944836, -0.9532458955822842, -0.9030677947152366, -0.853956176264759, -0.8062313221752507, -0.760163460897731, -0.7159737104263284, -0.6738360474354683, -0.6338800873221424, -0.596194471416308, -0.5608306736125195, -0.5278070578846078, -0.49711303940447854, -0.46871322425170736, -0.4425514250657494, -0.4185544716952756 ], [ -0.973837590569435, -1.0151059915833307, -1.0572452591242658, -1.10005312900263, -1.1432922226192, -1.1866882207657867, -1.2299286545244599, -1.2726625521036792, -1.3145012149837485, -1.355020419820159, -1.3937643446230923, -1.430251487780885, -1.463982775980884, -1.494451934914533, -1.5211580246165677, -1.543619828770294, -1.5613915541202283, -1.5740790707835224, -1.581355740122194, -1.5829767673604636, -1.5787910097520395, -1.568749285894904, -1.552908469412563, -1.5314309904875656, -1.5045797682356192, -1.4727089952402883, -1.4362515293961404, -1.395703868461084, -1.3516097674502972, -1.3045435163968926, -1.2550937572848586, -1.2038485256836438, -1.1513819942763728, -1.098243201527875, -1.0449468860475442, -0.9919664215853065, -0.9397287573462384, -0.8886112078409456, -0.8389398991565692, -0.7909896582882647, -0.7449851242602137, -0.7011028607681893, -0.659474257645319, -0.6201890209504464, -0.5832990676797232, -0.5488226599865915, -0.5167486344482992, -0.48704060348747896, -0.45964102776696103, -0.4344750795309743 ], [ -1.013225380896216, -1.0565132226665201, -1.1006961377525137, -1.145559529744824, -1.1908517300181316, -1.2362821076107133, -1.2815198531677936, -1.3261936955510203, -1.369892846243602, -1.4121694901735882, -1.4525431414520429, -1.49050714656412, -1.5255375340920643, -1.5571042713617413, -1.5846847947190108, -1.6077794430290129, -1.6259281675325967, -1.6387276498967247, -1.6458477738094246, -1.6470463014391123, -1.6421806328243693, -1.631215686490553, -1.6142272256495107, -1.5914003358244664, -1.5630231853661094, -1.5294766061074188, -1.4912203549440526, -1.4487771137221426, -1.4027153387065143, -1.3536319966487163, -1.3021360584852377, -1.248833408681861, -1.1943136086415818, -1.1391387550409808, -1.0838345134623097, -1.028883287926742, -0.9747194042709905, -0.9217261327040083, -0.8702343447171408, -0.8205225852155195, -0.7728183373210131, -0.7273002613638625, -0.684101198945772, -0.6433117462287533, -0.604984216834831, -0.5691368331797099, -0.5357580050202997, -0.5048105747977341, -0.4762359303395348, -0.4499579060213314 ], [ -1.051376925522574, -1.0965897050590123, -1.142716423826604, -1.1895301732135803, -1.2367650920497508, -1.2841144302367746, -1.3312293458942226, -1.3777187143107357, -1.4231502652633101, -1.4670533888120643, -1.508923946831414, -1.5482313848468952, -1.5844283433790294, -1.6169628115880603, -1.6452926493735516, -1.6689020413139193, -1.6873191659468172, -1.700134108260145, -1.7070158585061903, -1.7077271683589386, -1.7021361028940416, -1.6902233387964438, -1.672084596041966, -1.6479280100238438, -1.6180666951549103, -1.5829071541994113, -1.542934491504678, -1.4986955548841945, -1.4507811515197222, -1.3998083784434807, -1.3464039183520071, -1.2911889231829567, -1.2347658813190128, -1.177707666575147, -1.1205488111652566, -1.063778932203496, -1.00783816663336, -0.9531144245599517, -0.8999422474681049, -0.8486030488236052, -0.7993265150316229, -0.752292951354854, -0.7076363681770564, -0.6654481167839892, -0.6257808999298093, -0.5886530003452137, -0.5540525895396051, -0.5219419992287043, -0.49226185792377714, -0.46493501508122703 ], [ -1.0880523114462666, -1.135077873812182, -1.1830301976744535, -1.2316701863526494, -1.2807180213559874, -1.329851201219474, -1.3787033749247748, -1.4268642672210894, -1.4738810328389937, -1.5192613997849354, -1.5624789558823715, -1.602980882789578, -1.6401983338610076, -1.673559477418208, -1.7025049866935085, -1.7265054687775194, -1.74508002181514, -1.75781484146265, -1.7643806185329525, -1.7645474257441567, -1.758195906723413, -1.7453238495592616, -1.7260476161576852, -1.7005983524587927, -1.6693133583118562, -1.6326233859098012, -1.5910369108390165, -1.545122550916359, -1.4954907941690365, -1.44277606430766, -1.3876199427897338, -1.3306561278536497, -1.2724974817156378, -1.2137253224863942, -1.1548809679134568, -1.096459433424421, -1.0389051203659017, -0.982609292689416, -0.9279091228577746, -0.8750880833757642, -0.824377464082718, -0.7759588040248722, -0.7299670385570929, -0.6864941763835721, -0.6455933370621938, -0.6072829967565366, -0.5715513084072419, -0.5383603816180618, -0.5076504269448926, -0.47934368842460906 ], [ -1.123020189674812, -1.1717295933510896, -1.22137192219027, -1.27169612868303, -1.3224088197371409, -1.3731722958636465, -1.4236034466394818, -1.473273817474014, -1.521711203331396, -1.5684031474551985, -1.6128027135607184, -1.6543368425188962, -1.6924174840789123, -1.7264555009958422, -1.755877079078246, -1.7801420618670585, -1.7987633031309314, -1.8113258513447235, -1.8175046103692183, -1.8170791098049226, -1.8099441873253077, -1.7961157158570582, -1.775730949691534, -1.7490435464094174, -1.7164137757580882, -1.6782947932937344, -1.635216094759469, -1.587765358670993, -1.536569836505138, -1.4822782920623823, -1.4255442678118073, -1.367011211915906, -1.3072997719401886, -1.2469973725028622, -1.186650052719281, -1.1267564431805237, -1.067763703512944, -1.01006521060442, -0.9539997753753058, -0.8998521654794591, -0.8478547176787725, -0.7981898338763245, -0.7509931673311386, -0.7063573196942166, -0.6643358849183976, -0.6249476926630686, -0.5881811213649073, -0.5539983693963304, -0.5223395912929265, -0.49312682443710615 ], [ -1.156061201295213, -1.206309937046247, -1.2574906000351744, -1.3093405490850323, -1.3615533529509949, -1.4137768583522006, -1.46561217551602, -1.5166139119883917, -1.56629202644974, -1.6141156953572628, -1.6595195717705993, -1.7019127507584948, -1.7406906230875583, -1.775249588127451, -1.8050043106281706, -1.829406866667321, -1.8479667776174218, -1.8602706431161846, -1.8659999259510793, -1.864945467935825, -1.8570175420904445, -1.842250640653635, -1.8208026906251238, -1.7929488946752548, -1.7590708412397251, -1.719641861713106, -1.6752098071931327, -1.626378466566533, -1.5737887668038342, -1.5181007177429438, -1.4599768304307306, -1.4000674933165609, -1.33899856801489, -1.2773612857774488, -1.2157043935383804, -1.1545284109604748, -1.0942818086984656, -1.035358893117456, -0.9780991749916219, -0.9227880023699364, -0.8696582461810518, -0.81889283850453, -0.7706279763763222, -0.7249568179826011, -0.6819335130092962, -0.6415774247487845, -0.603877418262946, -0.5687961062710798, -0.5362739621483101, -0.5062332270632777 ], [ -1.1869712596114814, -1.2386008036558427, -1.2911537457220024, -1.3443563322088168, -1.397889786030467, -1.4513884347345245, -1.504438815793941, -1.5565801029229456, -1.6073062379076222, -1.6560701716267634, -1.702290600308344, -1.7453615108050273, -1.784664704632136, -1.819585243763779, -1.8495294546851357, -1.873944765816728, -1.8923402885426457, -1.9043067575585733, -1.9095343019609479, -1.9078265832145982, -1.899110120847184, -1.8834380841879017, -1.8609883686132647, -1.8320562983812252, -1.797042728244512, -1.756438610484473, -1.7108072405195276, -1.6607654006522656, -1.6069645101761243, -1.5500726950355501, -1.4907584523458461, -1.4296763437713873, -1.3674549372569602, -1.3046870458895412, -1.2419221901394797, -1.1796611308550746, -1.1183522760941913, -1.0583897451416986, -1.0001128690853702, -0.9438069124691415, -0.8897048104198345, -0.8379897277210193, -0.788798259392128, -0.7422241060372613, -0.6983220715649683, -0.6571122459543421, -0.6185842515828989, -0.5827014481232515, -0.5494050078856099, -0.5186177903525631 ], [ -1.215564591795029, -1.2684042608749568, -1.3221510484178938, -1.376520694893839, -1.4311829232556361, -1.4857596602610135, -1.5398242919318847, -1.5929023069056067, -1.6444737209194957, -1.6939776923109688, -1.740819716358443, -1.7843817071141963, -1.824035121291838, -1.8591570383790657, -1.8891487877118633, -1.9134563336504669, -1.9315912503035022, -1.943150818734285, -1.9478356501655316, -1.945463341348045, -1.9359770092515172, -1.9194480693563958, -1.8960732050766447, -1.86616601119889, -1.8301442028074384, -1.7885135317440495, -1.7418496494099747, -1.6907791192175052, -1.6359606433880802, -1.5780673615135572, -1.5177708398602334, -1.4557271358786221, -1.3925651181362142, -1.3288770621203947, -1.2652114297984434, -1.2020676701589734, -1.1398928399461474, -1.0790798285684309, -1.0199669702221055, -0.962838833308097, -0.9079279881283654, -0.8554175663241533, -0.8054444385388202, -0.7581028500970233, -0.7134483682032768, -0.6715020084617949, -0.6322544235105428, -0.5956700521818157, -0.5616911436300038, -0.5302415869546961 ], [ -1.241676449625336, -1.2955455134040184, -1.3502976096848562, -1.4056387027652815, -1.4612280083263325, -1.5166763418600053, -1.5715455544016828, -1.625349415596749, -1.6775563415858872, -1.727594378601445, -1.774858826436765, -1.8187228003772176, -1.8585508676493188, -1.893715643334248, -1.9236168945358467, -1.9477023088040148, -1.965488693138755, -1.9765820706688557, -1.9806950280434235, -1.9776598043053917, -1.9674360036159642, -1.9501123838560606, -1.925902792577484, -1.895136863462072, -1.8582464702878276, -1.8157491412066409, -1.7682296842993965, -1.7163212006671023, -1.6606864990144246, -1.6020007098761586, -1.54093566191045, -1.478146357350659, -1.4142596911254581, -1.3498654098566012, -1.285509204224358, -1.221687765221137, -1.1588456023921523, -1.0973734107336115, -1.0376077743871768, -0.9798320036915987, -0.9242779137143333, -0.8711283650022658, -0.8205204000899373, -0.7725488221353611, -0.7272700751089425, -0.6847062984879291, -0.644849443562037, -0.6076653532202343, -0.5730977222807585, -0.541071870731441 ], [ -1.2651654096476204, -1.3198754055118551, -1.3754366549914734, -1.431546194075996, -1.4878538596921946, -1.5439607986695119, -1.5994191123357255, -1.6537329991283152, -1.7063617921323697, -1.7567252979380226, -1.8042118115781793, -1.8481890909269625, -1.8880184047590158, -1.9230715101669684, -1.952750071058801, -1.9765066294842022, -1.993865847798162, -2.004444443704243, -2.007968141647626, -2.0042841320710334, -1.9933679633223655, -1.9753244026423467, -1.9503824493616277, -1.9188852264316245, -1.8812758348324055, -1.8380804189215314, -1.7898896943347786, -1.73734008034044, -1.6810953963301385, -1.6218298608918298, -1.560212901194899, -1.4968960657279513, -1.4325021531795334, -1.3676165334429071, -1.302780543432203, -1.2384867844798093, -1.1751761205522697, -1.1132361682433844, -1.0530010728365589, -0.9947523741142807, -0.9387207775111202, -0.8850886587712882, -0.8339931427396732, -0.7855296092238737, -0.7397554912553547, -0.6966942438473345, -0.6563393746847437, -0.6186584421100542, -0.583596940137068, -0.5510820047495402 ], [ -1.2859151978456598, -1.341272385302506, -1.397441637815859, -1.4541120208696525, -1.5109252422409707, -1.567474353144923, -1.6233036275156605, -1.6779099801194208, -1.730746314929534, -1.7812272000955418, -1.8287372291226414, -1.8726423313293914, -1.9123041207124563, -1.947097109964528, -1.976428269883888, -1.9997580138953053, -2.0166212963060803, -2.0266472248186993, -2.029575504733437, -2.025268224487444, -2.013715955629584, -1.9950377805224706, -1.9694755242823963, -1.93738300702443, -1.8992114669888263, -1.8554924318339208, -1.806819280782229, -1.7538286010847184, -1.6971822440161857, -1.6375507613990496, -1.5755986793356156, -1.5119718623868366, -1.4472870535288442, -1.3821235494967468, -1.3170168866102472, -1.2524543625802138, -1.188872196451445, -1.1266541231119809, -1.0661312235264149, -1.0075828018628183, -0.9512381327286744, -0.8972789141108393, -0.8458422736859311, -0.7970241879333195, -0.7508831852232019, -0.7074442160887954, -0.6667025864446388, -0.6286278626300821, -0.5931676707194267, -0.5602513262902034 ], [ -1.3038359918308298, -1.3596438787413387, -1.4162176792777248, -1.473239545221508, -1.5303444080046296, -1.587118900590545, -1.643101493287245, -1.6977841984858026, -1.7506162254874271, -1.8010099663433394, -1.848349651727102, -1.8920029148326798, -1.9313353244906049, -1.9657276859536243, -1.99459556410463, -2.0174100896010945, -2.0337187270591577, -2.0431644090829546, -2.045501372353127, -2.040606241538123, -2.028483387416076, -2.0092642390648656, -1.9832008977034876, -1.9506549311988874, -1.9120825418145417, -1.8680173972792917, -1.8190523508720988, -1.7658211140169489, -1.7089807346120685, -1.6491955090836212, -1.5871227388794886, -1.5234005498135856, -1.458637836574702, -1.393406279326573, -1.3282343027616852, -1.2636028039027052, -1.199942455102041, -1.1376323849685137, -1.0770000456685245, -1.0183220854102166, -0.9618260569271373, -0.9076928048825561, -0.8560593867615974, -0.8070223930499412, -0.7606415436144461, -0.7169434485447639, -0.6759254335183624, -0.6375593420898882, -0.6017952400825256, -0.5685649602479967 ], [ -1.3188651734857462, -1.3749270446545894, -1.4317023129682651, -1.4888673589275663, -1.5460517732744785, -1.602837523910809, -1.6587593650507138, -1.7133068340616384, -1.7659282024174192, -1.8160367413874305, -1.86301961600718, -1.906249616120364, -1.945099755487627, -1.978960510229708, -2.0072591320858697, -2.0294800905586414, -2.0451853331166485, -2.0540327949900945, -2.055791538029148, -2.0503521181152142, -2.0377312651528925, -2.0180706106428916, -1.9916298575551687, -1.958775305721581, -1.9199649420440186, -1.8757313817129768, -1.8266638619080537, -1.773390311557918, -1.7165603026809921, -1.6568294642878918, -1.5948457297457672, -1.5312376067004791, -1.4666045134156258, -1.4015091193110387, -1.3364715579051187, -1.2719653409842562, -1.208414785803548, -1.1461937648963667, -1.0856255944246922, -1.0269838874877821, -0.9704942106523181, -0.9163363937431257, -0.8646473541534051, -0.8155243076549041, -0.7690282482264823, -0.7251875901146727, -0.6840018764403557, -0.6454454702604238, -0.609471156013496, -0.5760135915230244 ], [ -1.3309675257589018, -1.3870889059543343, -1.4438655323210021, -1.5009692266521122, -1.558025735381312, -1.6146141606202136, -1.670267653580435, -1.7244757027610906, -1.776688364583979, -1.8263227725615856, -1.8727722090000367, -1.9154179155886522, -1.9536436422493062, -1.9868526800278863, -2.0144868005474383, -2.0360461618205914, -2.051108897904805, -2.0593488741967145, -2.0605500535587558, -2.0546161426041674, -2.041574663598925, -2.0215752310566875, -1.994882451730334, -1.9618643673153926, -1.922977640829421, -1.878750752329505, -1.8297663741761534, -1.776643910120318, -1.720022961149501, -1.6605482589115197, -1.5988564045862628, -1.5355645788360333, -1.47126125286281, -1.4064988326274868, -1.341788104634979, -1.2775943161324355, -1.2143347077099813, -1.1523773150838872, -1.0920408635135659, -1.033595588722801, -0.9772648297786007, -0.9232272508026715, -0.8716195591930229, -0.8225395982874771, -0.7760497024083124, -0.7321802123306298, -0.6909330596623099, -0.6522853395190851, -0.6161928021736476, -0.5825932058796979 ], [ -1.340134887652416, -1.3961258758039214, -1.4527091647871675, -1.509553283246138, -1.5662816671724653, -1.6224723682204818, -1.6776590359040051, -1.7313334898424317, -1.7829502075900727, -1.8319330361551578, -1.8776843785811117, -1.919596997347754, -1.9570684019380842, -1.9895175432572123, -2.016403230798509, -2.0372433492658253, -2.051633636510455, -2.0592645742011575, -2.059934921175867, -2.0535606421702326, -2.04017844190243, -2.019943718017449, -1.9931233552001935, -1.9600842605444067, -1.9212788095209312, -1.8772284315606742, -1.8285064669643591, -1.7757212404147742, -1.71950007645782, -1.6604747645597668, -1.599268785531236, -1.5364864474258793, -1.4727039517156233, -1.408462319378692, -1.344262047709712, -1.2805593360616196, -1.217763705386628, -1.156236835797823, -1.0962924530661828, -1.038197105144467, -0.9821716810493383, -0.9283935354758988, -0.8769990929272693, -0.8280868149695956, -0.7817204237577503, -0.7379322845431939, -0.6967268597221001, -0.658084157224019, -0.6219631066502054, -0.5883048074001129 ], [ -1.3463853002297888, -1.4020627189682604, -1.4582656216496046, -1.5146605438588692, -1.570870158752785, -1.6264732694839932, -1.6810060780246996, -1.7339650276768888, -1.7848115199218149, -1.8329787831901254, -1.8778811102892146, -1.9189255706833621, -1.955526133646146, -1.9871199050022348, -2.0131848930207528, -2.033258407006186, -2.046954908153288, -2.0539819490601343, -2.054152831221296, -2.0473948267124586, -2.033752240684712, -2.013384154906314, -1.9865572619364547, -1.953634649862804, -1.9150616551750432, -1.8713499612909792, -1.82306102849759, -1.770789761009814, -1.7151491030928259, -1.6567560450047814, -1.5962193310860862, -1.5341290063285198, -1.4710478174642514, -1.4075043989742078, -1.343988119327648, -1.280945432274475, -1.2187775655650732, -1.1578393789576078, -1.098439229806026, -1.040839694290377, -0.9852590031639831, -0.9318730615361938, -0.8808179322384919, -0.8321926717662859, -0.7860624169024668, -0.7424616292167674, -0.7013974139378518, -0.6628528393338051, -0.626790192701955, -0.5931541192377143 ], [ -1.3497616927032707, -1.4049510070220586, -1.4605960931544217, -1.5163628089569996, -1.571874602442511, -1.626712788715952, -1.680418096724985, -1.7324937620839047, -1.782410439734102, -1.829613181878845, -1.873530662400292, -1.9135867186199014, -1.9492141168972204, -1.9798702286285481, -2.005054038019322, -2.0243236205003927, -2.0373129793872664, -2.0437469731266176, -2.043453071596084, -2.0363688875248656, -2.022544827173139, -2.002141721557929, -1.9754238232955137, -1.9427479731921182, -1.9045499863912831, -1.861329371303599, -1.813633413781769, -1.7620414910595978, -1.7071502767826305, -1.6495602962469167, -1.5898641105181728, -1.528636259233223, -1.4664249775203546, -1.4037456212041661, -1.3410756821030116, -1.278851246056651, -1.217464734185727, -1.15726376709382, -1.0985509976231889, -1.0415847669692684, -0.9865804492567871, -0.9337123598926872, -0.8831161126686069, -0.8348913196782175, -0.789104536854084, -0.7457923665924868, -0.7049646377467271, -0.6666075923570878, -0.6306870178512725, -0.5971512729954513 ] ], "zauto": true, "zmax": 2.0605500535587558, "zmin": -2.0605500535587558 }, { "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.5697049414200269, 0.5657046549960358, 0.5617542445296045, 0.5578772932482388, 0.5540973937420004, 0.550437753244829, 0.5469207844642844, 0.543567695704963, 0.5403980961166069, 0.5374296333380926, 0.5346776813277445, 0.5321550955256098, 0.5298720505148171, 0.5278359719808529, 0.5260515700963905, 0.5245209757266716, 0.5232439744412655, 0.5222183267260688, 0.5214401565654762, 0.5209043852553807, 0.5206051833980296, 0.5205364118968937, 0.5206920226550733, 0.5210663916799292, 0.52165456136029, 0.5224523746239673, 0.5234564911824892, 0.5246642846760934, 0.5260736286654086, 0.5276825883814185, 0.529489043164104, 0.5314902707951763, 0.5336825287370337, 0.5360606680880606, 0.5386178136060916, 0.5413451375613589, 0.5442317469771063, 0.5472646938685597, 0.5504291075013071, 0.5537084376310166, 0.557084789223614, 0.5605393230923967, 0.5640526936681242, 0.5676054947899217, 0.5711786866657865, 0.5747539814360338, 0.5783141703705232, 0.5818433819028663, 0.5853272657846628, 0.5887531040996575 ], [ 0.5656253388759926, 0.5613884827138024, 0.5572001650602644, 0.5530853076944834, 0.5490688843008894, 0.5451754972143227, 0.5414289367541383, 0.5378517381624605, 0.5344647536300876, 0.5312867586562303, 0.528334112715947, 0.5256204936056982, 0.5231567226914703, 0.5209506945179428, 0.519007418945502, 0.5173291774450789, 0.5159157878520844, 0.5147649643426684, 0.5138727522945525, 0.5132340116660822, 0.5128429181249622, 0.5126934488028887, 0.5127798195036057, 0.5130968425429029, 0.5136401790862536, 0.5144064666650093, 0.51539331114796, 0.5165991423313392, 0.5180229428455481, 0.5196638704713173, 0.5215208033032114, 0.5235918445375293, 0.525873828102852, 0.5283618672113553, 0.5310489848576462, 0.533925858462272, 0.5369807008818581, 0.5401992879634022, 0.5435651300779544, 0.5470597730827712, 0.5506632042373562, 0.5543543316986154, 0.5581115028373392, 0.5619130267499769, 0.5657376695492753, 0.5695650965583888, 0.5733762425041322, 0.5771535982986916, 0.5808814102198991, 0.5845457936394057 ], [ 0.5614995711073286, 0.5570204328412482, 0.5525882096489398, 0.5482291887585521, 0.543969753908928, 0.5398359319225682, 0.5358529186338782, 0.5320446005703291, 0.5284330916860404, 0.5250383065783294, 0.5218775925855555, 0.5189654426106778, 0.5163133081782221, 0.5139295280102515, 0.5118193814030951, 0.5099852682296374, 0.5084270090177048, 0.5071422499525109, 0.506126949579061, 0.5053759171746898, 0.5048833678502875, 0.5046434568821194, 0.5046507558431915, 0.5049006358744642, 0.5053895288265994, 0.506115044781504, 0.5070759342603633, 0.5082718947197268, 0.509703233033106, 0.5113704076662978, 0.5132734851257916, 0.5154115538445995, 0.5177821438694308, 0.5203807016603417, 0.5232001655680648, 0.526230679251224, 0.5294594682045393, 0.5328708900237185, 0.5364466537393549, 0.5401661893127072, 0.5440071367988573, 0.547945916891013, 0.5519583411039645, 0.5560202206502362, 0.5601079374925627, 0.5641989481444084, 0.5682721994014284, 0.5723084442144103, 0.5762904544203101, 0.5802031343443876 ], [ 0.5573368861282024, 0.5526104000746417, 0.5479289554826735, 0.5433202314537915, 0.5388120491967577, 0.5344318865474297, 0.530206368346714, 0.5261607505918331, 0.5223184196671808, 0.5187004305096226, 0.5153251088028964, 0.5122077417953382, 0.5093603797744424, 0.506791765479398, 0.5045074019049899, 0.502509760434978, 0.5007986216778393, 0.4993715315792898, 0.4982243462463165, 0.49735183128597105, 0.49674827604375305, 0.4964080804147364, 0.49632627215859704, 0.4964989159296046, 0.4969233814157476, 0.49759844681273413, 0.4985242249554206, 0.49970191225414134, 0.5011333743977959, 0.5028205966098191, 0.5047650388610732, 0.5069669464842699, 0.5094246727413841, 0.5121340709666266, 0.5150880093538571, 0.5182760514089974, 0.5216843304783512, 0.525295629245141, 0.5290896567818637, 0.5330434988859722, 0.5371322039615594, 0.5413294579923669, 0.5456082987576965, 0.5499418211636843, 0.5543038315431232, 0.5586694177508582, 0.5630154124311966, 0.567320737621654, 0.5715666287906227, 0.5757367447210284 ], [ 0.5531464204534952, 0.5481682153515661, 0.5432329770891176, 0.5383698039292826, 0.5336079815392012, 0.5289764632420492, 0.5245033223799545, 0.520215196385393, 0.5161367461006472, 0.5122901569036302, 0.5086947097417776, 0.5053664497262015, 0.5023179771070476, 0.4995583800735136, 0.4970933210322348, 0.49492527827836397, 0.4930539340473999, 0.49147668879533957, 0.4901892712496274, 0.489186405282202, 0.48846248876136855, 0.48801223675446387, 0.48783124201272854, 0.4879164095726922, 0.4882662293861651, 0.48888086086258614, 0.48976201568875455, 0.4909126397519666, 0.492336410675214, 0.4940370833132337, 0.49601773016455125, 0.4982799353905756, 0.5008230083246505, 0.5036432835991955, 0.5067335695317892, 0.5100827943032458, 0.5136758818632443, 0.5174938684592967, 0.5215142488419156, 0.525711521310571, 0.530057885204551, 0.5345240347971552, 0.5390799904117524, 0.5436959105547039, 0.5483428367863765, 0.5529933342990705, 0.5576220039846778, 0.5622058545562035, 0.5667245347794263, 0.5711604352432821 ], [ 0.5489370385584924, 0.5437034712559704, 0.5385106580280612, 0.5333891461680542, 0.528369713887936, 0.5234828136489424, 0.5187579836182172, 0.5142232487352547, 0.5099045374335294, 0.5058251436084215, 0.5020052652998955, 0.49846165114863356, 0.495207382518335, 0.49225181305271715, 0.48960067851261935, 0.48725637857389004, 0.4852184197791506, 0.4834839961898388, 0.4820486727171806, 0.4809071267467534, 0.4800538973696954, 0.4794840888060737, 0.4791939756241997, 0.47918146203492157, 0.4794463556300697, 0.4799904271277223, 0.48081724161745465, 0.4819317629768366, 0.48333975081313346, 0.48504698734197765, 0.48705838846928673, 0.4893770670459276, 0.49200342475108866, 0.4949343505458216, 0.4981625970779355, 0.5016763918902233, 0.5054593191555152, 0.5094904824700811, 0.5137449332598285, 0.5181943259932095, 0.5228077435264816, 0.5275526253753261, 0.5323957290841641, 0.5373040595057434, 0.5422457111394584, 0.5471905826338485, 0.5521109379851107, 0.5569818039689344, 0.5617812065058336, 0.566490259100578 ], [ 0.544717170804019, 0.5392253422364554, 0.533771993084761, 0.5283891542179839, 0.5231091275346867, 0.5179638891586628, 0.5129844565459352, 0.5082002431254335, 0.5036384293553082, 0.4993233832115857, 0.49527616536576513, 0.4915141539157536, 0.488050819947059, 0.484895678175189, 0.4820544266502999, 0.4795292766696998, 0.47731945975690665, 0.4754218842273045, 0.47383190093445615, 0.4725441275693668, 0.4715532742962755, 0.470854911031377, 0.470446118366796, 0.4703259697844997, 0.470495802044382, 0.4709592431200405, 0.47172198247107555, 0.47279128638003076, 0.47417528086793037, 0.47588204517010296, 0.47791857813150285, 0.48028971585545466, 0.48299708896503635, 0.4860382096453977, 0.4894057708471653, 0.49308722266545857, 0.49706466562513574, 0.5013150705400166, 0.5058108038380129, 0.5105204099391971, 0.5154095819058905, 0.5204422402712268, 0.5255816381969256, 0.5307914179144532, 0.5360365566839103, 0.5412841576486827, 0.5465040593612039, 0.5516692552006747, 0.5567561288176537, 0.5617445232213948 ], [ 0.5404946554015035, 0.5347424051748941, 0.5290263862992739, 0.5233801548942891, 0.5178375731323944, 0.5124321683943832, 0.5071964518880903, 0.5021612228042404, 0.49735489013087236, 0.49280284904022725, 0.4885269513911236, 0.4845451094793229, 0.48087106804495433, 0.47751437142182795, 0.4744805408316827, 0.4717714620206433, 0.46938596706481117, 0.4673205779290685, 0.4655703649866132, 0.4641298626781872, 0.46299397779819973, 0.46215882394141294, 0.4616224183136334, 0.46138518397136435, 0.461450211106021, 0.46182324483621245, 0.4625123838687791, 0.46352749408413935, 0.4648793630510838, 0.46657864452736325, 0.46863466418702854, 0.471054176397084, 0.47384017370938536, 0.476990852966724, 0.48049883273230165, 0.4843506960759141, 0.48852690259944914, 0.4930020778424255, 0.49774565190662606, 0.5027227874034135, 0.5078955138078448, 0.5132239733975633, 0.5186676835167631, 0.5241867294626308, 0.5297428191175555, 0.535300151288325, 0.5408260714356462, 0.5462915085483485, 0.5516712036185878, 0.5569437526222112 ], [ 0.5362765910094012, 0.5302624670812047, 0.5242824516370693, 0.5183716776000302, 0.5125656122424839, 0.5068993675657457, 0.5014069654407229, 0.4961205864201483, 0.49106983807369115, 0.4862810842247416, 0.4817768795109983, 0.47757555320970396, 0.47369098146156274, 0.4701325775582119, 0.4669055161375132, 0.4640111899896547, 0.4614478793837899, 0.4592115954341698, 0.4572970431094611, 0.4556986377487902, 0.45441150241610745, 0.4534323723657643, 0.4527603369269827, 0.4523973575178828, 0.45234851255308295, 0.452621935264427, 0.45322842878219305, 0.4541807642053858, 0.45549269150794364, 0.45717771890522285, 0.45924774158353143, 0.4617116222464464, 0.4645738399052651, 0.4678333261117216, 0.471482597042213, 0.4755072653178297, 0.4798859796256696, 0.4845907978922346, 0.48958795715587794, 0.49483896664060983, 0.500301924776148, 0.5059329487014155, 0.5116876062343095, 0.5175222532874566, 0.523395200738742, 0.5292676598172381, 0.5351044404410138, 0.5408743997771185, 0.5465506567640447, 0.5521106016254886 ], [ 0.5320692075500759, 0.5257924079725949, 0.5195478247007248, 0.5133722318399018, 0.5073027579550298, 0.5013761419713024, 0.49562793883413725, 0.49009170714426253, 0.48479821894320424, 0.47977473817567856, 0.4750444178361445, 0.4706258651835032, 0.4665329187308274, 0.46277466959803143, 0.4593557436555845, 0.4562768409693852, 0.4535355074359862, 0.4511270926787669, 0.4490458307386902, 0.4472859677893111, 0.4458428550899394, 0.44471392571359525, 0.44389947949016173, 0.4434032109545673, 0.443232428873142, 0.4433979326169802, 0.4439135303009268, 0.44479520652898813, 0.4460599738092143, 0.4477244703062068, 0.4498033952511137, 0.45230789823224316, 0.45524405503097676, 0.45861156609613923, 0.4624028011320048, 0.4666022842919391, 0.4711866720923528, 0.4761252263067198, 0.48138073439113654, 0.4869107879988174, 0.49266930165544603, 0.49860814157703415, 0.5046787386283434, 0.510833576629838, 0.5170274731472403, 0.5232185996697305, 0.529369217391638, 0.5354461304788192, 0.5414208788512034, 0.5472697064596406 ], [ 0.5278777637474943, 0.5213380482510317, 0.5148289955287686, 0.5083891010833459, 0.5020572256830533, 0.49587178998939696, 0.4898699135621549, 0.48408653432840093, 0.4785535537289191, 0.47329906003377287, 0.4683466862590058, 0.4637151582580161, 0.4594180817818032, 0.45546400416050525, 0.45185676727630963, 0.4485961452745741, 0.44567873553389603, 0.44309904784882603, 0.4408507175444997, 0.4389277555831861, 0.43732574368597943, 0.4360428848157205, 0.4350808277712673, 0.4344451974382923, 0.4341457780219394, 0.4341963147367999, 0.43461392022797385, 0.43541809622829636, 0.43662940913825904, 0.4382678896962735, 0.44035125919408924, 0.4428931133389697, 0.44590121412395195, 0.4493760442651059, 0.4533097640435818, 0.45768567626398166, 0.4624782551330369, 0.46765373644916397, 0.47317120888818215, 0.47898409846663, 0.48504190719223206, 0.49129205550442673, 0.49768168550477665, 0.5041593042418443, 0.5106761778381456, 0.5171874221987263, 0.5236527694838212, 0.5300370180103661, 0.5363101949135662, 0.542447475265969 ], [ 0.5237064806218266, 0.5169040510202362, 0.5101311741141783, 0.5034281657459095, 0.49683570793706316, 0.4903939742558875, 0.4841416936782558, 0.4781151935704217, 0.47234747289568574, 0.4668673650741214, 0.46169885434562763, 0.4568606082746934, 0.4523657808695608, 0.44822212517471877, 0.44443243181393993, 0.44099528280908934, 0.43790608121243574, 0.43515829041206694, 0.4327447959728312, 0.4306592901374876, 0.4288975756351239, 0.4274586905294653, 0.42634576751289543, 0.4255665568926558, 0.4251335606017876, 0.425063744166038, 0.42537781526296137, 0.4260990827264978, 0.427251939760126, 0.4288600494664254, 0.4309443469561639, 0.43352100507251085, 0.436599533184873, 0.4401811835536638, 0.4442578226079707, 0.4488113844451493, 0.4538139653873517, 0.45922855042592203, 0.46501029615083406, 0.47110824111970234, 0.47746728127431115, 0.4840302380173099, 0.49073985825909483, 0.4975406139426808, 0.5043802063388713, 0.5112107209095834, 0.51798941620798, 0.5246791614632661, 0.5312485604365822, 0.5376718136314544 ], [ 0.5195585206254859, 0.512493870650557, 0.5054582016475524, 0.49849377002628253, 0.4916431895431617, 0.48494847816522985, 0.4784500368677388, 0.4721856063200828, 0.46618925945296813, 0.4604904974194473, 0.45511352138565525, 0.4500767508745529, 0.4453926494906771, 0.44106790023306, 0.4371039461448439, 0.4334978802432428, 0.4302436353888188, 0.4273333945623309, 0.42475911920851844, 0.4225140808421979, 0.42059427989838694, 0.4189996445669618, 0.4177349182043183, 0.41681016350010697, 0.4162408323193366, 0.4160473711602232, 0.4162543544705896, 0.4168891638568271, 0.4179802625422904, 0.4195551515641743, 0.4216381344112411, 0.4242480540523668, 0.4273961921826978, 0.4310845264266606, 0.4353045212208599, 0.4400365813185639, 0.44525022874478365, 0.45090498544522795, 0.45695186840677327, 0.46333534440923096, 0.4699955564656523, 0.47687062631715, 0.48389885434849145, 0.4910206732885562, 0.49818025668249766, 0.5053267294257738, 0.5124149695072593, 0.5194060237527487, 0.5262671842500928, 0.5329717864377408 ], [ 0.5154360221354215, 0.5081097593452966, 0.5008125214529684, 0.4935886489279111, 0.4864828221042877, 0.47953901903268253, 0.47279939779257635, 0.4663031554518038, 0.46008542972281524, 0.45417632025000804, 0.44860011190945237, 0.44337478010828024, 0.438511846035111, 0.4340166275553011, 0.4298889001241112, 0.4261239448078202, 0.4227139220110733, 0.4196494753743115, 0.4169214456622594, 0.41452256270900617, 0.4124489853657385, 0.41070157288368214, 0.40928679223489406, 0.4082171899935143, 0.4075113811812305, 0.40719352987411156, 0.40729231889910883, 0.407839431827686, 0.408867602823334, 0.4104083296824145, 0.41248938981342914, 0.41513234090696594, 0.4183502175957139, 0.4221456420895983, 0.42650954336990665, 0.4314206250821619, 0.4368456434526864, 0.4427404665105322, 0.44905180080710616, 0.4557194064557064, 0.46267858521079214, 0.4698627219649698, 0.47720568338325103, 0.4846439199848158, 0.49211816987269147, 0.4995747144834028, 0.5069661825731198, 0.5142519344181615, 0.5213980826627075, 0.5283772200025969 ], [ 0.5113401984853613, 0.5037528433025327, 0.4961952239097155, 0.4887139327277709, 0.48135587817959535, 0.4741671418129101, 0.4671917511908616, 0.4604704279917256, 0.45403938676450134, 0.44792927224293366, 0.4421643291146943, 0.4367618948477288, 0.43173229151065223, 0.42707916589577255, 0.4228002901729737, 0.4188887916195371, 0.41533473550060673, 0.412126946654646, 0.409254928881087, 0.4067107307055123, 0.4044906120227011, 0.402596385512684, 0.40103633415843665, 0.39982563570285223, 0.39898625210387195, 0.39854626574432267, 0.3985386665016722, 0.39899961921600563, 0.3999662740388712, 0.4014742243926872, 0.40355476593376577, 0.4062321568582842, 0.4095211131759215, 0.4134247797790238, 0.41793339068126145, 0.42302376872129827, 0.4286597245173128, 0.4347933122906603, 0.4413668053795529, 0.4483151836898658, 0.45556888923833194, 0.46305660611605826, 0.47070785189099745, 0.47845521829470744, 0.4862361584146816, 0.4939942755120698, 0.5016801180477329, 0.5092515229227694, 0.5166735735271766, 0.5239182520559252 ], [ 0.5072715094847644, 0.49942327911131573, 0.49160617909449533, 0.48386924612077203, 0.47626180628629816, 0.4688322187117183, 0.4616265246224723, 0.45468706972608747, 0.4480511862480823, 0.441750035265879, 0.4358077165498591, 0.430240748662517, 0.4250580041961299, 0.4202611531805608, 0.4158456238396824, 0.41180203878094634, 0.40811803344237785, 0.40478032028810473, 0.40177683405747033, 0.3990987847068379, 0.3967424557110282, 0.39471061196935164, 0.39301341656741634, 0.3916687914246518, 0.3907021879153984, 0.3901457584645902, 0.3900369418577657, 0.3904164994528191, 0.39132607258413415, 0.39280537594670384, 0.39488919465183353, 0.3976044045575694, 0.4009672723555008, 0.40498129913284453, 0.40963583878756715, 0.41490564995976903, 0.42075143709740703, 0.42712132163563915, 0.4339530800878751, 0.44117691099998557, 0.4487184578985693, 0.45650182127920264, 0.46445233161371313, 0.47249891482954687, 0.4805759485247813, 0.4886245704268083, 0.4965934531465921, 0.5044390978211305, 0.5121257235045648, 0.5196248408256952 ], [ 0.503229911298186, 0.4951204990900913, 0.4870442691964071, 0.47905291795502225, 0.4711984070160707, 0.46353157985737836, 0.4561006713728805, 0.4489497879835806, 0.4421174572391727, 0.435635362286437, 0.429527383766131, 0.4238090657705314, 0.4184876007427055, 0.4135623901526721, 0.40902618602609764, 0.40486675880923756, 0.40106897817991755, 0.3976171448934548, 0.3944973820175711, 0.3916998878296721, 0.38922086992646476, 0.3870640151807643, 0.385241393972534, 0.383773740022345, 0.38269008241019975, 0.382026732386195, 0.3818256483009801, 0.3821322249579167, 0.38299258656451424, 0.384450508992321, 0.3865441540857059, 0.3893028554542961, 0.3927442352194736, 0.3968719376805299, 0.40167422761565696, 0.4071236175940277, 0.41317757250558057, 0.4197802124973513, 0.42686482276816495, 0.4343569009026112, 0.442177440355028, 0.45024616156186265, 0.4584844500191972, 0.46681782888360845, 0.4751778675324985, 0.48350349547977056, 0.4917417459759152, 0.4998479926759484, 0.5077857662658664, 0.5155262481234725 ], [ 0.4992151875521732, 0.4908435512218688, 0.48250772974531625, 0.4742623146045389, 0.4661621479434694, 0.45826079795495117, 0.45060891227669975, 0.4432525377502524, 0.43623151996589465, 0.4295781149395064, 0.42331595313554576, 0.4174594882990512, 0.41201403714727364, 0.40697647061165965, 0.4023365563961612, 0.39807888337491054, 0.3941852310599666, 0.3906371933796969, 0.38741883503527214, 0.3845191560530892, 0.38193416488403814, 0.3796684053053642, 0.37773583610128636, 0.37616001327876386, 0.374973564312709, 0.37421697093297496, 0.3739366963282987, 0.3741827137739811, 0.37500552606506127, 0.3764528135186575, 0.3785659092417891, 0.3813763613871342, 0.38490288450704097, 0.38914900674102704, 0.39410167419850745, 0.3997309790239192, 0.40599104811101866, 0.412821990684975, 0.4201526830824602, 0.4279040901337162, 0.435992794863967, 0.44433442914476645, 0.45284675508542205, 0.4614522236462067, 0.4700799171937522, 0.4786668545239105, 0.48715869338632145, 0.49550990448610277, 0.5036835132875649, 0.5116505144708453 ], [ 0.49522736055290306, 0.4865915350784309, 0.4779946042146058, 0.4694943054013176, 0.46114863031313946, 0.45301414517052174, 0.4451441706374992, 0.43758692185365283, 0.43038373844672206, 0.42356755629804343, 0.41716178150178945, 0.41117971700800204, 0.40562466047876544, 0.40049073794641166, 0.39576446637920654, 0.3914269581545569, 0.38745660397074727, 0.3838320111229766, 0.3805349423351887, 0.37755300209273446, 0.3748818508493996, 0.372526783442239, 0.3705035726822211, 0.3688385383333426, 0.3675678460872667, 0.3667360690353317, 0.36639406192188206, 0.3665962175775313, 0.3673972067116854, 0.36884835235165975, 0.3709938546917222, 0.37386714669419, 0.3774877042810543, 0.38185863619036947, 0.3869653246905278, 0.39277528118461313, 0.3992392381182296, 0.4062933494261639, 0.4138622467287189, 0.4218626205542631, 0.43020697425285737, 0.43880722809089084, 0.4475779174613885, 0.45643881361311, 0.4653168808584486, 0.47414755879437975, 0.4828754152634306, 0.49145425400020254, 0.4998467817761128, 0.5080239466278422 ], [ 0.4912671765672307, 0.4823641296541896, 0.4735033105725994, 0.46474586208353147, 0.45615321358944727, 0.4477852331874196, 0.4396982167382945, 0.4319428279012257, 0.42456213742751675, 0.4175899355618134, 0.41104950107657323, 0.40495299794140405, 0.3993016321410499, 0.39408663721381215, 0.38929107350148523, 0.3848923338603139, 0.38086516224133404, 0.3771849263497741, 0.37383085377261777, 0.3707889482254974, 0.3680543459322329, 0.36563294025333776, 0.36354217897164437, 0.3618110066928372, 0.36047897389431605, 0.3595945628224037, 0.3592127965917308, 0.3593922150305271, 0.36019133214482935, 0.3616647418645471, 0.3638591062379548, 0.36680932721168064, 0.37053524600909843, 0.375039210051407, 0.3803047834782519, 0.3862967573896052, 0.39296246104888727, 0.40023421768819945, 0.4080326609996336, 0.4162705538876782, 0.4248567371482122, 0.43369987501000073, 0.44271173973989775, 0.4518098686452879, 0.4609195163415725, 0.46997490126862407, 0.4789198023984111, 0.4877075990183211, 0.49630086562912606, 0.5046706390227126 ], [ 0.48733665336722587, 0.47816220245824187, 0.4690333109522582, 0.4600147859776452, 0.45117179488056447, 0.44256783746674855, 0.43426252766487716, 0.42630931297039176, 0.4187533003880407, 0.4116293875779888, 0.40496090895450426, 0.39875899107635976, 0.39302276562036687, 0.38774051272225696, 0.38289171009458123, 0.3784498576006188, 0.37438585011037645, 0.37067160087126205, 0.3672835866069558, 0.3642059995673575, 0.361433246255393, 0.3589716136821769, 0.35684001237733526, 0.3550697822710619, 0.35370360117445054, 0.35279356495098013, 0.3523985231770126, 0.35258076977005615, 0.3534022193581533, 0.35492025367084645, 0.35718349205894795, 0.36022780803192406, 0.3640729537321304, 0.3687201426257085, 0.37415086527978353, 0.3803270802757735, 0.3871927566600761, 0.39467658102641434, 0.4026955153365773, 0.4111588230805088, 0.4199721765948475, 0.42904150718974615, 0.4382763428881979, 0.4475924748851268, 0.45691388577411096, 0.4661739489388644, 0.47531596434026463, 0.4842931311296761, 0.49306807483656684, 0.5016120502621678 ], [ 0.48343967189683673, 0.4739884817780321, 0.46458586702551397, 0.45530054686206256, 0.4462017292613473, 0.4373568945041399, 0.42882935461530464, 0.4206757320994033, 0.4129435488938675, 0.4056691519049314, 0.3988762144850195, 0.39257503475307776, 0.38676279703989835, 0.38142487399753516, 0.3765371338834873, 0.37206909684272393, 0.3679876760213959, 0.3642611637051054, 0.36086309354277646, 0.35777563203307094, 0.3549922192438448, 0.35251927351249884, 0.35037687539609336, 0.34859843156709136, 0.34722937717333513, 0.3463250052343688, 0.34594752534763396, 0.34616246891978586, 0.34703459009026455, 0.3486234668271471, 0.35097907789574506, 0.35413769798050565, 0.35811848774741145, 0.3629211339103475, 0.36852480603685506, 0.3748885515062389, 0.3819530758051565, 0.389643689670874, 0.3978740816113789, 0.4065505143688807, 0.41557604932679687, 0.4248544608956151, 0.43429359258784034, 0.4438080061732258, 0.4533208679451245, 0.46276509139997246, 0.4720838095289395, 0.48123028302143445, 0.4901673661417169, 0.4988666539708945 ], [ 0.4795825873391307, 0.46984826610667485, 0.4601648543090208, 0.4506052065897628, 0.44124286458598766, 0.43214964683274676, 0.4233929741621103, 0.41503308916716003, 0.4071203842140005, 0.3996930946801275, 0.3927756299415043, 0.38637779324208693, 0.3804950775191321, 0.37511012057967347, 0.3701952723287109, 0.36571608947187195, 0.3616354532973463, 0.35791792586612825, 0.35453393391829174, 0.35146340146928556, 0.34869853222643454, 0.3462455517512602, 0.3441253316534538, 0.3423729114362708, 0.3410359951766775, 0.3401725310411803, 0.3398474950650643, 0.34012901593652695, 0.3410840110604261, 0.34277356137956383, 0.34524832385588866, 0.348544343473385, 0.35267965258097606, 0.3576520109948934, 0.3634380379331211, 0.3699938300027386, 0.37725697950235, 0.3851497430659408, 0.39358299524716134, 0.4024605525198014, 0.41168346945277506, 0.4211539752234396, 0.4307788130995031, 0.44047184660076105, 0.45015588765679, 0.45976377503448795, 0.46923878257707874, 0.4785344675595019, 0.48761408314795485, 0.49644967968497283 ], [ 0.4757748285106461, 0.46575013683521727, 0.45577759905797177, 0.44593438919455314, 0.43629865118135264, 0.42694689544185455, 0.4179510829514346, 0.40937556983098217, 0.4012741511912063, 0.3936874934637609, 0.38664126446918073, 0.38014524670725053, 0.37419364530849825, 0.3687666818817798, 0.36383341501299216, 0.3593555724479704, 0.35529204745596266, 0.35160362728795197, 0.34825749997002925, 0.3452311283452792, 0.3425151747746434, 0.3401152828491679, 0.338052646043664, 0.33636339358856127, 0.33509688857635456, 0.334313065097746, 0.3340789453515517, 0.334464494747618, 0.33553800919766996, 0.33736128787791364, 0.3399849149006462, 0.34344402991844447, 0.34775498189322657, 0.3529132107470712, 0.35889258463047574, 0.3656462537899519, 0.3731088997330273, 0.3812000996318913, 0.3898284214202713, 0.39889582860289785, 0.408302001026834, 0.41794825136725655, 0.42774081436549577, 0.43759338631083766, 0.4474288811797211, 0.4571804394014547, 0.4667917733134609, 0.47621696167436456, 0.4854198176611857, 0.49437295460951114 ], [ 0.47202944895642773, 0.4617066330975054, 0.45143569234239306, 0.44129824815811364, 0.4313772737071113, 0.4217543041120644, 0.4125062781382166, 0.40370219706202504, 0.39539986333755167, 0.3876430223375156, 0.3804592564521008, 0.3738589558740228, 0.3678356063857702, 0.3623674964691784, 0.3574207736745726, 0.352953603905619, 0.34892104076682684, 0.345280123251393, 0.3419947037685277, 0.3390395635379399, 0.3364034820795211, 0.3340910645705111, 0.3321232648160136, 0.3305366479036728, 0.32938150396312477, 0.3287189575308426, 0.3286172331041736, 0.32914725785215687, 0.33037782232543095, 0.33237058078639203, 0.33517523990091624, 0.3388253317927902, 0.343334966793669, 0.34869689456642017, 0.35488207071456673, 0.36184075162355106, 0.369504959453218, 0.37779200990504214, 0.3866087047849236, 0.3958557688594023, 0.4054321482109669, 0.4152388662736014, 0.4251822317580315, 0.4351762905663902, 0.4451444985758182, 0.45502065743730546, 0.4647492000750624, 0.47428493840510927, 0.48359239643240537, 0.4926448511291406 ], [ 0.46836358901491776, 0.4577348418692555, 0.4471557281904126, 0.43671237170198524, 0.4264927404643825, 0.4165836859931404, 0.4070675496413965, 0.3980185317791211, 0.38949910852540104, 0.3815568536187663, 0.37422205737922626, 0.3675065105770648, 0.36140372793294295, 0.355890729552426, 0.35093130239484427, 0.3464804646689906, 0.3424896937686934, 0.33891238462233064, 0.33570899501799933, 0.33285140290187226, 0.33032612625789776, 0.3281362072007043, 0.3263017054351246, 0.3248588575434145, 0.3238580280702125, 0.32336061325687104, 0.32343507762529133, 0.3241523288438388, 0.3255806807600373, 0.3277807164679789, 0.3308004253552406, 0.33467102304358487, 0.339403844822722, 0.3449886180534684, 0.3513932737233977, 0.358565278240586, 0.36643429109520204, 0.37491581778932975, 0.3839154529542755, 0.39333330043988507, 0.4030682043304272, 0.4130215074285306, 0.4231001504910574, 0.43321901910949695, 0.4433025245775543, 0.4532854654188312, 0.4631132570173162, 0.4727416402309358, 0.4821359893291499, 0.4912703385527356 ], [ 0.4647988061504321, 0.4538568528765297, 0.442959907255655, 0.4321985594186699, 0.4216658556317861, 0.41145419071716544, 0.40165169623604086, 0.3923383253470171, 0.38358193773385285, 0.3754347750130086, 0.36793076264135804, 0.36108405400226895, 0.3548891322652286, 0.34932261117313407, 0.34434665449447427, 0.33991370923281744, 0.3359720671431854, 0.3324716689775484, 0.3293695612542675, 0.326634497676414, 0.3242503193127292, 0.32221791255576143, 0.32055569627324537, 0.3192987051185193, 0.3184964074310293, 0.3182094335018596, 0.31850541392336107, 0.31945415916143194, 0.3211224610470742, 0.3235688592275444, 0.3268387704872366, 0.3309603987990024, 0.33594180590406014, 0.3417694182372314, 0.34840808871604106, 0.35580265140818923, 0.3638807407549928, 0.37255652678600987, 0.3817349607282329, 0.3913161313415449, 0.4011993874577171, 0.4112869664403969, 0.4214869618957609, 0.4317155518931537, 0.44189848221428, 0.4519718541511682, 0.46188230331784086, 0.47158667712913066, 0.4810513271264273, 0.49025113127629477 ], [ 0.4613612316727012, 0.4501000273750957, 0.43887644527712505, 0.4277853993410312, 0.4169249934495724, 0.4063933016036746, 0.39628456668914397, 0.3866850182845994, 0.37766862598123846, 0.3692932076509732, 0.36159737217365273, 0.35459876359687353, 0.34829397022246605, 0.34266027158583234, 0.33765914927263657, 0.33324123504450465, 0.32935216769975484, 0.3259387207968047, 0.32295456285428026, 0.32036510742757973, 0.31815106889910366, 0.3163105185737364, 0.31485939666422086, 0.31383055527223497, 0.31327148106958297, 0.3132408870062714, 0.3138043921130384, 0.31502954703400055, 0.3169805176325639, 0.31971280051232187, 0.3232683897984316, 0.3276718172407078, 0.3329274287458683, 0.3390181383140679, 0.3459057335951379, 0.3535326288997064, 0.361824807550814, 0.37069559318411305, 0.38004985032159433, 0.38978823343865737, 0.3998111650266672, 0.4100223071329767, 0.42033137979589547, 0.4306562610315803, 0.4409243695880285, 0.45107338121416224, 0.46105136239768, 0.470816424662957, 0.48033601034812146, 0.4895859199494879 ], [ 0.4580815161355994, 0.44649703315417183, 0.43493972755456556, 0.4235085747160508, 0.41230659138698345, 0.40143754819351724, 0.391002020587634, 0.3810929711756135, 0.37179118523020616, 0.36316100122721423, 0.3552468560177164, 0.3480711644315679, 0.34163395154956255, 0.3359144532474519, 0.3308746292372642, 0.32646425075208513, 0.32262699762328034, 0.31930687674800295, 0.3164542742242753, 0.31403106085305965, 0.3120143449917707, 0.3103986593643498, 0.3091965382330207, 0.3084375652011504, 0.30816604831476474, 0.3084375240025531, 0.30931432791363506, 0.3108605169019094, 0.3131364857774618, 0.31619368161893247, 0.3200698526425477, 0.3247852526806708, 0.33034014249986865, 0.3367137907453188, 0.3438650042663674, 0.35173404475443587, 0.3602456495555392, 0.36931279106841114, 0.37884078686621986, 0.38873140278070495, 0.3988866565687286, 0.4092121117610959, 0.41961953438130856, 0.4300288591736821, 0.44036947167118373, 0.45058085658772407, 0.46061269269153454, 0.47042449163393746, 0.4799848855514899, 0.48927066783632384 ], [ 0.45499453359540554, 0.4430856057509183, 0.4311901575167756, 0.4194108352354053, 0.4078552828704142, 0.3966328405013304, 0.38585050209505134, 0.3756083100195798, 0.36599450365412106, 0.3570808765824367, 0.34891889504136236, 0.34153714865198204, 0.33494061186018204, 0.3291119862519221, 0.3240151018360106, 0.3196000433020746, 0.315809410499494, 0.3125849803692461, 0.30987403315950207, 0.3076347210784008, 0.305840045962207, 0.30448021885309456, 0.3035633536797, 0.3031145765247653, 0.30317371238982177, 0.30379176164460786, 0.3050264224051136, 0.30693696889400707, 0.3095788589519167, 0.31299849915505623, 0.3172286174434395, 0.322284658156973, 0.3281625149535771, 0.33483776516958347, 0.34226639341525555, 0.35038682792801923, 0.35912299049908714, 0.3683879958517226, 0.3780881294082523, 0.3881267714425046, 0.398408003023115, 0.40883970767354477, 0.4193360591573144, 0.429819352265648, 0.44022118645270464, 0.4504830512252847, 0.460556388629168, 0.4704022239197845, 0.479990462549789, 0.48929895172474036 ], [ 0.452138826587514, 0.43990800810199493, 0.4276736597092844, 0.4155415790110847, 0.40362360014045046, 0.39203433899759255, 0.38088712447975726, 0.3702892695822503, 0.36033698396700603, 0.351110382284868, 0.34266916265182285, 0.3350495715030464, 0.3282631958026628, 0.32229791890621834, 0.3171210704798118, 0.31268446083173557, 0.30893070057060534, 0.3058000382253411, 0.3032369315227364, 0.30119568501000377, 0.2996446858265709, 0.29856898860733694, 0.29797119020155555, 0.29787067131954453, 0.29830136848581956, 0.2993082967853086, 0.3009430961534845, 0.3032589351110162, 0.30630517160446336, 0.31012222067213724, 0.3147370866435575, 0.32015996424163456, 0.3263821963478786, 0.3333757143416525, 0.34109391190925814, 0.3494737497367101, 0.3584387824888123, 0.36790275163594194, 0.3777733936628399, 0.38795615869872957, 0.3983576021021889, 0.40888828548843625, 0.4194650932186685, 0.43001292951997505, 0.4404658080504117, 0.45076738012850426, 0.4608709714051541, 0.47073921118015216, 0.48034334546432667, 0.48966232563489015 ], [ 0.449555788843196, 0.4370101775696326, 0.4244408152783329, 0.41195600957481515, 0.3996711949570178, 0.38770578936779154, 0.37617917488109065, 0.3652059254459579, 0.3548905556185391, 0.34532222900481246, 0.33657000672954396, 0.32867928568678234, 0.32167002736556904, 0.31553718866932023, 0.3102534571571026, 0.30577403088552957, 0.3020428596569059, 0.29899956261785593, 0.2965861975470921, 0.29475316656919154, 0.29346374681412973, 0.29269696427511227, 0.29244872976148795, 0.29273130145147314, 0.293571233023345, 0.2950060321501623, 0.2970798155192556, 0.29983831487991847, 0.3033236561915745, 0.3075693780176478, 0.3125961500798382, 0.31840858303711256, 0.32499339001547106, 0.33231899240218715, 0.3403364911545942, 0.34898178339826524, 0.3581785139525607, 0.3678415183472118, 0.377880429895587, 0.3882031727989124, 0.39871912915929586, 0.4093418364487917, 0.41999113459199244, 0.43059473410338417, 0.44108921763542036, 0.45142051757621215, 0.4615439334118449, 0.47142376591280316, 0.481032652077214, 0.4903506861812911 ], [ 0.44728860065933695, 0.43444056982070184, 0.42154563086839253, 0.4087138565671855, 0.3960635495818208, 0.3837182744366056, 0.37180296871115903, 0.3604392198557607, 0.3497399426812671, 0.33980386400738105, 0.33071038095222693, 0.3225154582133576, 0.315249215124291, 0.30891569256813073, 0.3034949924697893, 0.29894760887931066, 0.29522041500732604, 0.2922535290788156, 0.2899872078934697, 0.28836800617552455, 0.28735363864474883, 0.286916217077693, 0.28704374543229066, 0.2877399127345363, 0.2890223289335121, 0.29091942602643134, 0.2934663189085553, 0.2966999965500678, 0.3006542834721006, 0.3053550497893166, 0.31081613089532506, 0.3170363341607303, 0.3239977691535452, 0.33166556717561724, 0.33998889050737324, 0.34890300235385124, 0.35833209238375685, 0.368192531495964, 0.37839625243554803, 0.38885400384290914, 0.3994782883215941, 0.4101858581592624, 0.42089969836375485, 0.4315504727592661, 0.4420774447785645, 0.4524289113337999, 0.46256220714188134, 0.4724433493681077, 0.48204639938877464, 0.4913526205700473 ], [ 0.4453809512222327, 0.4322487321902241, 0.41904396872590743, 0.4058776788766126, 0.39287018264290086, 0.3801483680059133, 0.36784201297295804, 0.3560792106144342, 0.3449810842622511, 0.3346561509236972, 0.32519486336824116, 0.31666498798677356, 0.3091085008955452, 0.30254056604684226, 0.29695089139362313, 0.29230739051969495, 0.2885616998453596, 0.28565581795527695, 0.2835290134980282, 0.2821242013283695, 0.2813931663391833, 0.2813002462905503, 0.28182430244814183, 0.28295897529575437, 0.28471134224150546, 0.28709918631468634, 0.2901471709198837, 0.29388230183000197, 0.29832913022004126, 0.3035051845167522, 0.3094170918461283, 0.31605775533325087, 0.3234048056698846, 0.3314203745573216, 0.3400520790328919, 0.34923498731929997, 0.3588942721770967, 0.36894824508095536, 0.3793114916069522, 0.3898978789483468, 0.40062326567867773, 0.4114078013147899, 0.42217775324487505, 0.4328668392554058, 0.4434170755141492, 0.45377917366556264, 0.4639125379880594, 0.4737849253903686, 0.4833718380861051, 0.49265572154110754 ], [ 0.4438756013990691, 0.4304836631137308, 0.41699169492075167, 0.4035108032780256, 0.390162393261664, 0.3770757169583782, 0.3643844793619102, 0.3522225097969321, 0.34071863274373415, 0.3299910341339983, 0.3201415953411464, 0.3112508157144646, 0.3033740109950539, 0.29653940908537646, 0.2907485459574311, 0.2859790229815681, 0.28218930334804326, 0.2793249037095924, 0.27732516176202526, 0.276129759912815, 0.27568432664718945, 0.2759446507760883, 0.27687926011351516, 0.2784702950662552, 0.2807127445258165, 0.28361222372669515, 0.2871815791458157, 0.29143670613653055, 0.29639204430432736, 0.302056248080962, 0.3084284958874806, 0.31549579874704475, 0.32323151686069584, 0.33159512311770295, 0.34053310040262486, 0.34998075026140013, 0.3598646342796382, 0.37010536232319285, 0.3806204704114623, 0.3913271795789711, 0.4021448819887506, 0.4129972526568165, 0.423813929849301, 0.43453174329627703, 0.4450954974645577, 0.4554583385382918, 0.46558174969487126, 0.4754352305970026, 0.4849957242444373, 0.49424685770261145 ], [ 0.44281285755108046, 0.42919203662956984, 0.4154426314039614, 0.4016749875934711, 0.3880106301746435, 0.3745801279421558, 0.3615200423905018, 0.34896893384861416, 0.33706250455452547, 0.325928103893334, 0.3156789906075652, 0.3064089076423297, 0.2981876284464266, 0.2910581262127445, 0.2850358654736769, 0.2801104267167468, 0.2762493093114689, 0.27340341193296985, 0.2715134558738833, 0.27051654490008314, 0.27035213454245516, 0.27096685722448677, 0.2723178507858467, 0.27437442246990845, 0.27711803719295924, 0.2805407584266719, 0.2846424031915108, 0.28942679533853655, 0.2948975930222344, 0.301054201171204, 0.3078882414280726, 0.31538094351309864, 0.3235016662581919, 0.33220758823340657, 0.341444460846856, 0.3511482140340708, 0.3612471538773777, 0.37166448698079396, 0.38232093460856914, 0.3931372452203249, 0.4040364645086384, 0.41494586926260163, 0.4257985115279657, 0.43653435182856093, 0.44710098546841404, 0.45745398544030036, 0.4675569003469589, 0.47738095671160335, 0.48690452245206656, 0.49611239223038467 ], [ 0.4422290396769277, 0.4284163891581095, 0.4144464228979646, 0.400427931455089, 0.386481616932715, 0.3727382904438177, 0.35933620395380594, 0.3464174610226732, 0.33412353571210873, 0.32259005125183043, 0.31194112269048685, 0.30228372837053724, 0.29370270475291244, 0.2862570086951863, 0.2799778177722588, 0.2748688284798449, 0.2709087959733208, 0.2680560125658613, 0.26625413698952166, 0.26543863060704326, 0.2655430474123894, 0.26650452925902696, 0.2682680219696438, 0.2707889080342232, 0.2740339294186178, 0.27798044953128104, 0.28261427598490413, 0.28792642129078494, 0.29390929062734145, 0.30055282792843957, 0.30784111130516373, 0.31574977513025965, 0.3242444767477895, 0.33328045736292106, 0.3428031025203143, 0.35274930864605, 0.3630494140782489, 0.3736294489743589, 0.38441348481999116, 0.3953259063638684, 0.4062934749607119, 0.41724709519231407, 0.42812323295644883, 0.43886496243373724, 0.4494226423405514, 0.45975423989465874, 0.4698253349821601, 0.4796088477190076, 0.4890845401693236, 0.49823834742060014 ], [ 0.4421550337243249, 0.42819337706700106, 0.4140464477752228, 0.3998207853592034, 0.38563540428407467, 0.37162032348498414, 0.3579142989501378, 0.3446616838575903, 0.3320084027429766, 0.32009712121910217, 0.30906181980315073, 0.2990221277924652, 0.29007791500964886, 0.28230473625869174, 0.2757507312574695, 0.2704354696156491, 0.2663509960911994, 0.26346501830795316, 0.26172586219955224, 0.26106857718293924, 0.2614214508408077, 0.26271219484808583, 0.2648731615516162, 0.26784510976311876, 0.27157923573187925, 0.27603740637883645, 0.28119075815972927, 0.28701702661470013, 0.2934971133449439, 0.3006114514467972, 0.30833668994631974, 0.3166430985604555, 0.3254929296286402, 0.33483980348006487, 0.3446290398074675, 0.3547987600288735, 0.36528153811272773, 0.37600637219187266, 0.38690077290474567, 0.397892802758986, 0.40891294292572195, 0.4198957029822497, 0.4307809222531872, 0.44151473814284825, 0.45205021806712575, 0.46234766844875963, 0.4723746476648713, 0.48210572033918797, 0.4915219980931403, 0.5006105167405068 ], [ 0.4426150167881402, 0.42855221566214435, 0.4142779096827639, 0.3998958248975017, 0.3855225497845762, 0.371286379959765, 0.3573254468739427, 0.34378504360251466, 0.3308141013847317, 0.31856083722580586, 0.3071676889184524, 0.29676577702779455, 0.2874692718183392, 0.27937017187580776, 0.27253408293955556, 0.26699757853659956, 0.2627675988675123, 0.2598231026145692, 0.25811886979662074, 0.2575910337621565, 0.25816366971393856, 0.25975563316859274, 0.262286837795332, 0.26568327714004397, 0.26988030580596933, 0.2748239705816552, 0.28047047684925763, 0.2867841378453484, 0.293734335587896, 0.3012920935511948, 0.30942682146813677, 0.31810366686004893, 0.3272817363771229, 0.3369132750708478, 0.34694374626889685, 0.35731265648728205, 0.36795492127632456, 0.37880256060022066, 0.3897865327634785, 0.4008385505064817, 0.41189276127687874, 0.4228872094950854, 0.43376502909176073, 0.4444753393202829, 0.4549738366370086, 0.46522309137283924, 0.47519257083435207, 0.4848584208103593, 0.4942030453044509, 0.5032145295482402 ], [ 0.44362543456537923, 0.42951340185934495, 0.41516624113599276, 0.40068445738449526, 0.38618163540950023, 0.3717835701399895, 0.35762676694591544, 0.343856221275987, 0.3306224089078549, 0.3180774580745417, 0.30637053834889716, 0.29564259329140247, 0.2860206653255204, 0.2776122035250308, 0.27049988403322794, 0.264737567257818, 0.2603480147669801, 0.2573228517135923, 0.2556249836582946, 0.25519330599042805, 0.25594916504614207, 0.2578037356608932, 0.26066533959538396, 0.26444577203366376, 0.26906491593645443, 0.2744532561280171, 0.2805522802529415, 0.2873130892121864, 0.29469376949092035, 0.3026561724799362, 0.3111627080530553, 0.32017362660740356, 0.32964508378757174, 0.3395281011525328, 0.34976838727226095, 0.3603068835048326, 0.3710808481132151, 0.38202528231525834, 0.39307451883899464, 0.40416382448846117, 0.4152309031521861, 0.42621721856241346, 0.4370690842708601, 0.44773849133652377, 0.458183662830383, 0.46836933942629355, 0.47826681282898165, 0.48785373397203835, 0.49711373084776417, 0.5060358763604722 ], [ 0.4451942933607184, 0.43108780391378976, 0.41672593068361247, 0.4022057098525501, 0.38763732080413044, 0.3731434638943136, 0.35885819257930407, 0.34492511104671325, 0.33149485556635055, 0.31872179486800484, 0.30675991833124694, 0.2957579400155439, 0.28585374236244515, 0.2771684224744035, 0.26980037883327496, 0.263820054550191, 0.25926607347932334, 0.2561434926409559, 0.2544246938988732, 0.25405305429627634, 0.25494904695961496, 0.25701796369170965, 0.2601581485789578, 0.26426857376470614, 0.269254783600172, 0.2750326171384275, 0.281529578772864, 0.2886841431171115, 0.29644356521752163, 0.3047608854903512, 0.3135917848906682, 0.3228918062599757, 0.33261426937130345, 0.3427090198100235, 0.35312199907927827, 0.36379552037403795, 0.37466908122817383, 0.3856805310221171, 0.39676742473182414, 0.40786842159754166, 0.41892461902480554, 0.4298807421915387, 0.44068613591668737, 0.45129552687549646, 0.46166954182128433, 0.4717749819613022, 0.4815848657181831, 0.49107826212408684, 0.50023994506302, 0.5090599043357076 ], [ 0.44732080575862376, 0.43327617383202216, 0.41895985278244585, 0.4044653107404197, 0.3898990907251917, 0.375380393408272, 0.36104019141410654, 0.3470197914449583, 0.33346875647676466, 0.32054209941062073, 0.3083966679184841, 0.2971866694345385, 0.28705835271578767, 0.2781439868511201, 0.2705554685587618, 0.2643781250937916, 0.2596655024933006, 0.2564360397231281, 0.2546724291729333, 0.25432410799777744, 0.25531276731290375, 0.2575401579159275, 0.2608970022448822, 0.26527164143857257, 0.2705571996594968, 0.27665646598330845, 0.2834842306012357, 0.2909673082179922, 0.2990428244145676, 0.3076554886509072, 0.31675455160171606, 0.32629100168343983, 0.3362153609661923, 0.34647624804217175, 0.3570197190612026, 0.36778929237072633, 0.37872650600748053, 0.38977184063682113, 0.40086585016906207, 0.41195036588809614, 0.42296966829920907, 0.4338715484295765, 0.444608204414281, 0.45513693931622323, 0.46542064273096734, 0.47542805257108467, 0.4851338051116308, 0.49451829120000257, 0.5035673444912154, 0.5122717934934019 ], [ 0.44999540237740515, 0.43606910457864373, 0.4218591377829666, 0.40745542626070325, 0.39296079327894695, 0.37849070562463266, 0.3641726159393926, 0.3501448254992086, 0.3365547783730814, 0.32355668424058137, 0.31130835682406655, 0.2999671602129977, 0.2896849972020198, 0.280602378579038, 0.27284180088625914, 0.2665009275390762, 0.2616463618423198, 0.25830901459780997, 0.2564820733631525, 0.25612228443241025, 0.25715467983109985, 0.2594801690609981, 0.2629847993006794, 0.2675491773614657, 0.2730566336401253, 0.2793991323200851, 0.286480522882175, 0.29421729194459606, 0.30253737249839646, 0.31137774845359684, 0.3206815803074103, 0.3303954376550699, 0.3404670280172251, 0.3508436164934688, 0.3614711721803508, 0.3722941691051268, 0.38325591020031097, 0.39429922250817706, 0.4053673774381588, 0.41640510964556254, 0.4273596331133203, 0.43818157786546075, 0.44882579284392576, 0.4592519791786442, 0.46942513370756217, 0.47931579578944056, 0.48890010171550885, 0.49815966061216593, 0.5070812736199743, 0.5156565241597797 ], [ 0.4532000950217072, 0.43944741905420853, 0.42540357381520594, 0.4111550532851595, 0.39680098919607587, 0.3824530159014151, 0.3682347865501284, 0.3542810692334548, 0.3407363353058316, 0.3277527304073466, 0.3154872963931033, 0.30409830148063005, 0.29374055836533686, 0.2845596957880098, 0.2766855260983149, 0.2702249256148387, 0.26525497460564035, 0.26181738712914776, 0.2599153542318344, 0.25951370454905404, 0.26054273359567554, 0.26290529518372563, 0.26648602977786773, 0.2711611775862647, 0.2768074268020573, 0.2833086425481319, 0.29055993269974767, 0.29846911522887803, 0.30695609558873915, 0.31595087794438353, 0.3253909429332058, 0.33521859554059513, 0.3453786956396972, 0.3558169909149437, 0.36647911349257345, 0.3773101919421942, 0.3882549681951466, 0.39925828471106084, 0.4102658085825735, 0.42122487490619215, 0.4320853532132667, 0.4428004627874607, 0.45332748270626183, 0.46362831965627305, 0.47366991116869844, 0.4834244544014828, 0.49286946138521076, 0.5019876509472988, 0.5107666952990048, 0.5191988453346845 ], [ 0.4569091521873308, 0.44338294546649387, 0.42956248908567385, 0.4155310123598529, 0.40138405377207187, 0.3872294082201895, 0.37318676606277323, 0.3593869775637842, 0.3459708574180904, 0.33308741841521183, 0.32089139504143666, 0.3095398983428512, 0.29918805391897363, 0.28998354551009764, 0.282060147554279, 0.27553059334998065, 0.2704794600053094, 0.2669570656964739, 0.2649755283183253, 0.2645079911876328, 0.265491530352719, 0.2678335155349113, 0.27142043462620713, 0.2761276798441737, 0.2818287067329946, 0.28840231087710666, 0.29573735707615373, 0.30373491682881415, 0.3123082435690453, 0.32138126285787194, 0.33088629098686295, 0.3407615863818836, 0.3509491604212649, 0.36139308922476454, 0.37203841299133494, 0.3828305998280806, 0.39371548646105775, 0.40463958008341927, 0.4155506024540012, 0.42639816863536906, 0.43713451045333496, 0.44771517379495573, 0.45809963663775016, 0.46825181031687396, 0.4781404000141931, 0.48773911215299204, 0.4970267066339572, 0.5059869007941599, 0.514608139555237, 0.5228832522679979 ], [ 0.4610900288446939, 0.44783960797438477, 0.43429602785413096, 0.42053943571442615, 0.40666190512124617, 0.39276743198523145, 0.37897165095059826, 0.3654012094486741, 0.3521927171692618, 0.3394911623961158, 0.3274476574262334, 0.3162163537185062, 0.30595037300389905, 0.29679666096109764, 0.2888898137785727, 0.28234516865988585, 0.2772517639142961, 0.2736660854631887, 0.2716076983867647, 0.271057781736102, 0.27196117447232554, 0.2742318624160251, 0.27776109021802825, 0.2824267290820186, 0.2881023642620503, 0.2946648164112875, 0.3019993422071139, 0.31000235840044066, 0.3185820153316522, 0.3276572195666753, 0.3371557724798764, 0.3470122104606292, 0.3571657759122399, 0.36755877703938095, 0.3781354467182351, 0.38884130317672516, 0.3996229491006617, 0.4104282139584785, 0.42120653663129165, 0.43190949217658214, 0.44249138027986024, 0.45290980880450815, 0.4631262212329931, 0.47310633067646113, 0.48282043537870434, 0.49224360146923823, 0.5013557083555252, 0.5101413606688607, 0.5185896780112053, 0.5266939797029283 ], [ 0.4657044803869241, 0.45277474491695235, 0.4395567101916435, 0.42612761227573276, 0.4125761852837144, 0.39900267738993017, 0.38551860584804293, 0.37224619106190254, 0.3593173910548867, 0.34687243317605815, 0.3350577133614932, 0.32402291436115366, 0.3139172001675496, 0.3048843981690363, 0.2970572076138663, 0.2905506848981824, 0.28545553509201715, 0.28183202246066275, 0.2797054952556348, 0.2790644842929995, 0.2798620088335866, 0.2820201403473254, 0.28543719294450676, 0.28999635899422066, 0.2955743836530552, 0.3020490312662476, 0.309304542240423, 0.31723482380076856, 0.3257445846767448, 0.3347489120527198, 0.34417188638642354, 0.3539447813701777, 0.3640042675867454, 0.37429088684529005, 0.3847479278267637, 0.3953207306586846, 0.4059563816980063, 0.4166037248955339, 0.42721360404916026, 0.43773925246043754, 0.4481367561736688, 0.45836552952400217, 0.4683887545753815, 0.4781737480556722, 0.4876922303045157, 0.4969204806104162, 0.5058393722478826, 0.5144342885540197, 0.5226949283959422, 0.5306150151789422 ], [ 0.4707097860962688, 0.4581405604906709, 0.44529115621261856, 0.4322360377183703, 0.41906069970947785, 0.405861679522526, 0.39274631964458273, 0.379832222765218, 0.3672463250396271, 0.3551234922643326, 0.34360452223320276, 0.332833423200654, 0.322953847511191, 0.31410461019350944, 0.30641433358474934, 0.29999543969081727, 0.29493794751871094, 0.29130377412610853, 0.28912240262221445, 0.28838877159050486, 0.2890639916037288, 0.29107901791484825, 0.2943408201247165, 0.2987400788192108, 0.3041591835149011, 0.3104793817906304, 0.31758627693409475, 0.32537333977720384, 0.3337435301308993, 0.34260941214445556, 0.3518922698593962, 0.3615207145488945, 0.3714291783455792, 0.38155656113441017, 0.3918451764224783, 0.402240046129495, 0.41268852938922923, 0.4231402334671149, 0.4335471390019909, 0.4438638696881529, 0.45404804218089295, 0.4640606412144013, 0.47386637516623414, 0.483433977373571, 0.49273642797468015, 0.5017510798496037, 0.5104596803850255, 0.518848288245433, 0.5269070909550303, 0.5346301346730203 ], [ 0.476060009909892, 0.4638856187598787, 0.4514418591146299, 0.4388005218009659, 0.42604392526600615, 0.4132649060166978, 0.40056656533789675, 0.38806171722987265, 0.3758719685357813, 0.36412634583929027, 0.3529593685626412, 0.34250846113585026, 0.3329106106530821, 0.32429822455737145, 0.31679423906401766, 0.3105066785297582, 0.30552305672491425, 0.3019052059241068, 0.2996852566220761, 0.29886349533644163, 0.29940864381824356, 0.3012607291621429, 0.3043362305400109, 0.3085347404170146, 0.31374611757021675, 0.31985711784410364, 0.32675673954520323, 0.3343399013351183, 0.34250944718748283, 0.3511767482218554, 0.36026130901316494, 0.36968980168607407, 0.3793948862462793, 0.38931407456892747, 0.399388792157271, 0.40956370577797435, 0.41978632363055335, 0.4300068369693909, 0.44017815321452447, 0.4502560646916332, 0.4601994990638713, 0.46997080347888837, 0.4795360220933782, 0.48886513470538895, 0.4979322321829524, 0.5067156120423318, 0.5151977848224473, 0.5233653887183063, 0.5312090161022449, 0.5387229608556867 ], [ 0.48170723429478945, 0.4699562995134676, 0.4579489054674413, 0.4457542240393734, 0.4334514220925247, 0.42112961691276884, 0.40888759148415643, 0.39683321764101803, 0.38508252442334473, 0.3737583375802088, 0.36298840751096134, 0.35290294304695535, 0.3436314860836519, 0.33529910737512814, 0.3280219854633818, 0.3219025509798638, 0.31702452738782533, 0.31344834949902406, 0.3112075480898919, 0.3103066982606075, 0.31072139593838455, 0.31240044333525446, 0.3152700417048075, 0.3192394150511507, 0.32420704309583515, 0.33006664401650204, 0.33671221394470996, 0.3440417239594197, 0.35195939026053585, 0.3603766828838416, 0.36921238169983395, 0.37839202818597034, 0.38784708633005327, 0.3975140516631676, 0.4073336636330809, 0.4172503022630278, 0.4272115938474293, 0.4371682134342147, 0.4470738510623849, 0.4568852997508742, 0.4665626218553642, 0.47606935336456296, 0.4853727108425727, 0.4944437718080931, 0.5032576057632548, 0.5117933395654284, 0.5200341472143192, 0.5279671602430274, 0.5355833005522644, 0.542877042476897 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "Arm 0_0
hartmann6: -0.00198612 (SEM: 0)
x1: 0.889652
x2: 0.428703
x3: 0.0620403
x4: 0.477204
x5: 0.860003
x6: 0.721345", "Arm 10_0
hartmann6: -0.0167531 (SEM: 0)
x1: 0.10483
x2: 0.210858
x3: 0.868591
x4: 0.831949
x5: 0.233748
x6: 0.0911825", "Arm 11_0
hartmann6: -0.0218554 (SEM: 0)
x1: 0.987825
x2: 0.589285
x3: 0.458667
x4: 0.608483
x5: 0.609408
x6: 0.65044", "Arm 12_0
hartmann6: -0.273918 (SEM: 0)
x1: 0.385464
x2: 0.455468
x3: 0.459117
x4: 0.250578
x5: 0.778737
x6: 0.138175", "Arm 13_0
hartmann6: -0.462499 (SEM: 0)
x1: 0.401178
x2: 0.514379
x3: 0.556813
x4: 0.284481
x5: 0.814183
x6: 0.0889996", "Arm 14_0
hartmann6: -0.767672 (SEM: 0)
x1: 0.335496
x2: 0.585843
x3: 0.690025
x4: 0.327102
x5: 0.704439
x6: 0.00724161", "Arm 15_0
hartmann6: -0.965303 (SEM: 0)
x1: 0.265306
x2: 0.662688
x3: 0.790957
x4: 0.369588
x5: 0.800351
x6: 3.42291e-18", "Arm 16_0
hartmann6: -0.952352 (SEM: 0)
x1: 0.386881
x2: 0.609455
x3: 0.796518
x4: 0.335159
x5: 0.620741
x6: 0", "Arm 17_0
hartmann6: -0.790919 (SEM: 0)
x1: 0.365473
x2: 0.584339
x3: 0.750171
x4: 0.323595
x5: 0.621966
x6: 0", "Arm 18_0
hartmann6: -1.04434 (SEM: 0)
x1: 0.378463
x2: 0.651943
x3: 0.693635
x4: 0.317981
x5: 0.582421
x6: 0.00419118", "Arm 19_0
hartmann6: -1.16621 (SEM: 0)
x1: 0.395947
x2: 0.675556
x3: 0.698173
x4: 0.321622
x5: 0.580696
x6: 0.00601455", "Arm 1_0
hartmann6: -0.000851153 (SEM: 0)
x1: 0.642945
x2: 0.955892
x3: 0.121558
x4: 0.813211
x5: 0.637652
x6: 0.952821", "Arm 20_0
hartmann6: -1.29132 (SEM: 0)
x1: 0.410966
x2: 0.719219
x3: 0.647227
x4: 0.316184
x5: 0.564306
x6: 0.00619903", "Arm 21_0
hartmann6: -1.38608 (SEM: 0)
x1: 0.433214
x2: 0.762062
x3: 0.609672
x4: 0.313902
x5: 0.552675
x6: 0.00639606", "Arm 22_0
hartmann6: -1.43805 (SEM: 0)
x1: 0.443549
x2: 0.792513
x3: 0.578673
x4: 0.313974
x5: 0.540079
x6: 0.00398552", "Arm 23_0
hartmann6: -1.79343 (SEM: 0)
x1: 0.424673
x2: 0.843107
x3: 0.51404
x4: 0.34521
x5: 0.486941
x6: 3.32876e-12", "Arm 24_0
hartmann6: -2.14874 (SEM: 0)
x1: 0.41128
x2: 0.869695
x3: 0.49797
x4: 0.381492
x5: 0.451377
x6: 0.00979608", "Arm 25_0
hartmann6: -2.49969 (SEM: 0)
x1: 0.397336
x2: 0.886032
x3: 0.480676
x4: 0.422592
x5: 0.413807
x6: 0.0212643", "Arm 26_0
hartmann6: -2.86378 (SEM: 0)
x1: 0.371223
x2: 0.903814
x3: 0.436524
x4: 0.488533
x5: 0.353269
x6: 0.022968", "Arm 27_0
hartmann6: -2.88611 (SEM: 0)
x1: 0.356998
x2: 0.929707
x3: 0.410984
x4: 0.526385
x5: 0.316892
x6: 0.00940525", "Arm 28_0
hartmann6: -2.80937 (SEM: 0)
x1: 0.3424
x2: 0.909796
x3: 0.400853
x4: 0.517529
x5: 0.310354
x6: 0.0725171", "Arm 2_0
hartmann6: -1.14588 (SEM: 0)
x1: 0.505535
x2: 0.656055
x3: 0.81197
x4: 0.379333
x5: 0.877803
x6: 0.0189884", "Arm 3_0
hartmann6: -0.0450205 (SEM: 0)
x1: 0.757186
x2: 0.781214
x3: 0.882771
x4: 0.598411
x5: 0.517964
x6: 0.569161", "Arm 4_0
hartmann6: -0.0370313 (SEM: 0)
x1: 0.693038
x2: 0.414121
x3: 0.134982
x4: 0.467462
x5: 0.974968
x6: 0.316927", "Arm 5_0
hartmann6: -0.00927357 (SEM: 0)
x1: 0.95205
x2: 0.491435
x3: 0.186161
x4: 0.826572
x5: 0.391467
x6: 0.341686", "Arm 6_0
hartmann6: -0.0970133 (SEM: 0)
x1: 0.372392
x2: 0.231501
x3: 0.17215
x4: 0.167916
x5: 0.726338
x6: 0.402787", "Arm 7_0
hartmann6: -0.028271 (SEM: 0)
x1: 0.916148
x2: 0.26941
x3: 0.896762
x4: 0.96937
x5: 0.538139
x6: 0.627427", "Arm 8_0
hartmann6: -0.073061 (SEM: 0)
x1: 0.291749
x2: 0.22287
x3: 0.911979
x4: 0.233576
x5: 0.981372
x6: 0.546906", "Arm 9_0
hartmann6: -0.0801835 (SEM: 0)
x1: 0.54797
x2: 0.432769
x3: 0.755362
x4: 0.829773
x5: 0.772336
x6: 0.315621" ], "type": "scatter", "x": [ 0.8896524310112, 0.10482953954488039, 0.9878246989101171, 0.38546449440903524, 0.40117805349666225, 0.3354962016605869, 0.26530616565735116, 0.38688147506327175, 0.36547301726471426, 0.37846334018774036, 0.3959473404707403, 0.6429451778531075, 0.41096568373163905, 0.4332139356434659, 0.4435493305774755, 0.424672647124038, 0.41127975389430343, 0.3973356343409779, 0.3712233340227339, 0.3569982097373157, 0.34239969319932223, 0.5055354433134198, 0.7571856500580907, 0.6930381068959832, 0.9520503673702478, 0.37239226419478655, 0.9161479901522398, 0.29174890276044607, 0.5479696039110422 ], "xaxis": "x", "y": [ 0.4287032186985016, 0.21085828077048063, 0.5892851976677775, 0.45546817228355596, 0.5143787794757867, 0.5858426249624872, 0.6626882991305368, 0.6094551087539309, 0.5843389578642224, 0.6519428599673566, 0.6755564350633103, 0.9558922983705997, 0.7192190934586816, 0.7620619950489326, 0.7925128695124121, 0.8431066340576738, 0.8696951243178704, 0.8860315183591488, 0.903814152470661, 0.9297067126208302, 0.9097956082238563, 0.656055317260325, 0.7812144905328751, 0.41412073373794556, 0.49143460113555193, 0.23150083795189857, 0.2694101454690099, 0.222869542427361, 0.4327690191566944 ], "yaxis": "y" }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "showlegend": false, "text": [ "Arm 0_0
hartmann6: -0.00198612 (SEM: 0)
x1: 0.889652
x2: 0.428703
x3: 0.0620403
x4: 0.477204
x5: 0.860003
x6: 0.721345", "Arm 10_0
hartmann6: -0.0167531 (SEM: 0)
x1: 0.10483
x2: 0.210858
x3: 0.868591
x4: 0.831949
x5: 0.233748
x6: 0.0911825", "Arm 11_0
hartmann6: -0.0218554 (SEM: 0)
x1: 0.987825
x2: 0.589285
x3: 0.458667
x4: 0.608483
x5: 0.609408
x6: 0.65044", "Arm 12_0
hartmann6: -0.273918 (SEM: 0)
x1: 0.385464
x2: 0.455468
x3: 0.459117
x4: 0.250578
x5: 0.778737
x6: 0.138175", "Arm 13_0
hartmann6: -0.462499 (SEM: 0)
x1: 0.401178
x2: 0.514379
x3: 0.556813
x4: 0.284481
x5: 0.814183
x6: 0.0889996", "Arm 14_0
hartmann6: -0.767672 (SEM: 0)
x1: 0.335496
x2: 0.585843
x3: 0.690025
x4: 0.327102
x5: 0.704439
x6: 0.00724161", "Arm 15_0
hartmann6: -0.965303 (SEM: 0)
x1: 0.265306
x2: 0.662688
x3: 0.790957
x4: 0.369588
x5: 0.800351
x6: 3.42291e-18", "Arm 16_0
hartmann6: -0.952352 (SEM: 0)
x1: 0.386881
x2: 0.609455
x3: 0.796518
x4: 0.335159
x5: 0.620741
x6: 0", "Arm 17_0
hartmann6: -0.790919 (SEM: 0)
x1: 0.365473
x2: 0.584339
x3: 0.750171
x4: 0.323595
x5: 0.621966
x6: 0", "Arm 18_0
hartmann6: -1.04434 (SEM: 0)
x1: 0.378463
x2: 0.651943
x3: 0.693635
x4: 0.317981
x5: 0.582421
x6: 0.00419118", "Arm 19_0
hartmann6: -1.16621 (SEM: 0)
x1: 0.395947
x2: 0.675556
x3: 0.698173
x4: 0.321622
x5: 0.580696
x6: 0.00601455", "Arm 1_0
hartmann6: -0.000851153 (SEM: 0)
x1: 0.642945
x2: 0.955892
x3: 0.121558
x4: 0.813211
x5: 0.637652
x6: 0.952821", "Arm 20_0
hartmann6: -1.29132 (SEM: 0)
x1: 0.410966
x2: 0.719219
x3: 0.647227
x4: 0.316184
x5: 0.564306
x6: 0.00619903", "Arm 21_0
hartmann6: -1.38608 (SEM: 0)
x1: 0.433214
x2: 0.762062
x3: 0.609672
x4: 0.313902
x5: 0.552675
x6: 0.00639606", "Arm 22_0
hartmann6: -1.43805 (SEM: 0)
x1: 0.443549
x2: 0.792513
x3: 0.578673
x4: 0.313974
x5: 0.540079
x6: 0.00398552", "Arm 23_0
hartmann6: -1.79343 (SEM: 0)
x1: 0.424673
x2: 0.843107
x3: 0.51404
x4: 0.34521
x5: 0.486941
x6: 3.32876e-12", "Arm 24_0
hartmann6: -2.14874 (SEM: 0)
x1: 0.41128
x2: 0.869695
x3: 0.49797
x4: 0.381492
x5: 0.451377
x6: 0.00979608", "Arm 25_0
hartmann6: -2.49969 (SEM: 0)
x1: 0.397336
x2: 0.886032
x3: 0.480676
x4: 0.422592
x5: 0.413807
x6: 0.0212643", "Arm 26_0
hartmann6: -2.86378 (SEM: 0)
x1: 0.371223
x2: 0.903814
x3: 0.436524
x4: 0.488533
x5: 0.353269
x6: 0.022968", "Arm 27_0
hartmann6: -2.88611 (SEM: 0)
x1: 0.356998
x2: 0.929707
x3: 0.410984
x4: 0.526385
x5: 0.316892
x6: 0.00940525", "Arm 28_0
hartmann6: -2.80937 (SEM: 0)
x1: 0.3424
x2: 0.909796
x3: 0.400853
x4: 0.517529
x5: 0.310354
x6: 0.0725171", "Arm 2_0
hartmann6: -1.14588 (SEM: 0)
x1: 0.505535
x2: 0.656055
x3: 0.81197
x4: 0.379333
x5: 0.877803
x6: 0.0189884", "Arm 3_0
hartmann6: -0.0450205 (SEM: 0)
x1: 0.757186
x2: 0.781214
x3: 0.882771
x4: 0.598411
x5: 0.517964
x6: 0.569161", "Arm 4_0
hartmann6: -0.0370313 (SEM: 0)
x1: 0.693038
x2: 0.414121
x3: 0.134982
x4: 0.467462
x5: 0.974968
x6: 0.316927", "Arm 5_0
hartmann6: -0.00927357 (SEM: 0)
x1: 0.95205
x2: 0.491435
x3: 0.186161
x4: 0.826572
x5: 0.391467
x6: 0.341686", "Arm 6_0
hartmann6: -0.0970133 (SEM: 0)
x1: 0.372392
x2: 0.231501
x3: 0.17215
x4: 0.167916
x5: 0.726338
x6: 0.402787", "Arm 7_0
hartmann6: -0.028271 (SEM: 0)
x1: 0.916148
x2: 0.26941
x3: 0.896762
x4: 0.96937
x5: 0.538139
x6: 0.627427", "Arm 8_0
hartmann6: -0.073061 (SEM: 0)
x1: 0.291749
x2: 0.22287
x3: 0.911979
x4: 0.233576
x5: 0.981372
x6: 0.546906", "Arm 9_0
hartmann6: -0.0801835 (SEM: 0)
x1: 0.54797
x2: 0.432769
x3: 0.755362
x4: 0.829773
x5: 0.772336
x6: 0.315621" ], "type": "scatter", "x": [ 0.8896524310112, 0.10482953954488039, 0.9878246989101171, 0.38546449440903524, 0.40117805349666225, 0.3354962016605869, 0.26530616565735116, 0.38688147506327175, 0.36547301726471426, 0.37846334018774036, 0.3959473404707403, 0.6429451778531075, 0.41096568373163905, 0.4332139356434659, 0.4435493305774755, 0.424672647124038, 0.41127975389430343, 0.3973356343409779, 0.3712233340227339, 0.3569982097373157, 0.34239969319932223, 0.5055354433134198, 0.7571856500580907, 0.6930381068959832, 0.9520503673702478, 0.37239226419478655, 0.9161479901522398, 0.29174890276044607, 0.5479696039110422 ], "xaxis": "x2", "y": [ 0.4287032186985016, 0.21085828077048063, 0.5892851976677775, 0.45546817228355596, 0.5143787794757867, 0.5858426249624872, 0.6626882991305368, 0.6094551087539309, 0.5843389578642224, 0.6519428599673566, 0.6755564350633103, 0.9558922983705997, 0.7192190934586816, 0.7620619950489326, 0.7925128695124121, 0.8431066340576738, 0.8696951243178704, 0.8860315183591488, 0.903814152470661, 0.9297067126208302, 0.9097956082238563, 0.656055317260325, 0.7812144905328751, 0.41412073373794556, 0.49143460113555193, 0.23150083795189857, 0.2694101454690099, 0.222869542427361, 0.4327690191566944 ], "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 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "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": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "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 }, "autotypenumbers": "strict", "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": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "render(plot_contour(model=model, param_x='x1', param_y='x2', metric_name='hartmann6'))" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "autocolorscale": false, "autocontour": true, "colorbar": { "tickfont": { "size": 8 }, "ticksuffix": "", "x": 0.45, "y": 0.5 }, "colorscale": [ [ 0.0, "rgb(247,252,253)" ], [ 0.125, "rgb(229,245,249)" ], [ 0.25, "rgb(204,236,230)" ], [ 0.375, "rgb(153,216,201)" ], [ 0.5, "rgb(102,194,164)" ], [ 0.625, "rgb(65,174,118)" ], [ 0.75, "rgb(35,139,69)" ], [ 0.875, "rgb(0,109,44)" ], [ 1.0, "rgb(0,68,27)" ] ], "contours": { "coloring": "heatmap" }, "hoverinfo": "x+y+z", "ncontours": 25, "type": "contour", "x": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "xaxis": "x", "y": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "yaxis": "y", "z": [ [ 1.0875435534330424, 1.0831991794084326, 1.0792979751778633, 1.0758632603918095, 1.0729175435775062, 1.0704823189798, 1.06857785535803, 1.0672229790551429, 1.0664348541390494, 1.0662287628929223, 1.066617890374809, 1.067613117148898, 1.0692228245799764, 1.0714527172493775, 1.0743056670678173, 1.0777815835085829, 1.081877314053546, 1.0865865784344653, 1.091899939576409, 1.0978048133329688, 1.1042855181770543, 1.1113233650170848, 1.1188967862890948, 1.1269815024746128, 1.1355507232533857, 1.1445753796556328, 1.154024382860917, 1.1638649047246599, 1.174062674712323, 1.1845822876954784, 1.1953875170106765, 1.2064416272955794, 1.2177076818806931, 1.2291488399116495, 1.240728638881187, 1.2524112588370009, 1.2641617651746675, 1.27594632759758, 1.2877324135049097, 1.2994889547309134, 1.311186487187236, 1.322797263537709, 1.3342953395516033, 1.3456566352279618, 1.3568589721551259, 1.3678820888653316, 1.3787076361634882, 1.389319154556111, 1.399702035986016, 1.4098434720961435 ], [ 1.0850245428756602, 1.0806334469440442, 1.076689228157084, 1.073215652051526, 1.0702356779225306, 1.0677712503882524, 1.0658430821812455, 1.0644704305336758, 1.0636708700447282, 1.0634600654361763, 1.0638515480868214, 1.0648565006574127, 1.0664835544389168, 1.0687386042469533, 1.0716246457114371, 1.0751416396547548, 1.079286407899287, 1.0840525643010217, 1.089430484082929, 1.095407313668866, 1.1019670222323235, 1.1090904951183445, 1.1167556682178963, 1.1249377013179922, 1.1336091874601184, 1.1427403944531482, 1.152299533935152, 1.1622530527867656, 1.1725659412832297, 1.1832020521414053, 1.1941244245716527, 1.2052956075749726, 1.2166779770169902, 1.2282340414424782, 1.2399267321397058, 1.251719673596843, 1.2635774311828405, 1.2754657336046662, 1.2873516684157453, 1.2992038495529348, 1.3109925565419622, 1.3226898456173826, 1.334269633541407, 1.3457077553672405, 1.3569819977726012, 1.3680721098870088, 1.3789597937518974, 1.3896286766920787, 1.4000642679435742, 1.410253901886021 ], [ 1.0828223590953532, 1.078389312004402, 1.0744065944180468, 1.070898400637629, 1.0678881245819176, 1.0653981461892594, 1.0634496082831113, 1.0620621863135185, 1.0612538539486405, 1.061040648051807, 1.0614364371095175, 1.062452697638772, 1.0640983034598488, 1.0663793329349636, 1.0692988993116481, 1.0728570091473146, 1.0770504534175998, 1.081872735327508, 1.0873140380705455, 1.09336123484756, 1.0999979424059196, 1.1072046182392055, 1.1149587004467958, 1.1232347881403826, 1.132004859244252, 1.1412385216068557, 1.1509032925556093, 1.1609649014092582, 1.1713876090314652, 1.1821345382740103, 1.1931680091189116, 1.204449872477936, 1.2159418369283865, 1.2276057831342737, 1.2394040612921806, 1.2512997676227966, 1.2632569966690452, 1.275241066930765, 1.2872187181340848, 1.2991582791777947, 1.3110298064964412, 1.3228051932146605, 1.3344582500263937, 1.3459647592084212, 1.3573025035648887, 1.3684512723977436, 1.379392846809336, 1.3901109667724239, 1.4005912824557532, 1.4108212922796424 ], [ 1.08094726859424, 1.0764773505944236, 1.072460950811156, 1.0689226733169543, 1.0658863286315614, 1.0633747151028758, 1.0614093899536892, 1.0600104324456898, 1.0591962022165367, 1.0589830964541038, 1.0593853101511868, 1.0604146041937765, 1.0620800864334534, 1.064388011137554, 1.0673416022614013, 1.0709409058194987, 1.075182676232904, 1.0800603009049192, 1.0855637664461848, 1.09167966897187, 1.0983912697732336, 1.105678596477715, 1.11351858860713, 1.121885285274588, 1.1307500516702222, 1.1400818400145205, 1.1498474798376441, 1.1600119918001275, 1.1705389188240853, 1.1813906680646422, 1.192528857220717, 1.2039146588533625, 1.2155091367329973, 1.227273568747205, 1.2391697515397078, 1.2511602827843094, 1.2632088177905503, 1.2752802979580244, 1.287341149412413, 1.2993594509421669, 1.3113050710879035, 1.3231497748995986, 1.334867301456206, 1.346433413731319, 1.3578259227815492, 1.3690246885319375, 1.3800115996374072, 1.39077053501672, 1.4012873096930982, 1.4115496075425715 ], [ 1.07940905245594, 1.0749076490023564, 1.070862680704502, 1.0672991405090584, 1.0642412355983457, 1.0617121639213853, 1.0597338795597078, 1.0583268494100047, 1.0575098043149198, 1.0572994884327165, 1.0577104112686972, 1.0587546073532357, 1.0604414089934417, 1.0627772378008586, 1.0657654207636882, 1.0694060364583844, 1.0736957965694898, 1.0786279672137615, 1.0841923336723955, 1.0903752110645994, 1.0971595023017657, 1.1045248034012263, 1.1124475549688795, 1.1209012374325722, 1.129856606468218, 1.1392819640465142, 1.14914345967356, 1.159405415729538, 1.1700306703480743, 1.1809809310357917, 1.192217132210483, 1.2036997900287014, 1.2153893482609566, 1.22724650952834, 1.2392325469049392, 1.2513095916785237, 1.2634408939114832, 1.2755910533168218, 1.2877262188299874, 1.2998142560852182, 1.311824882774193, 1.323729772555069, 1.3355026287793468, 1.3471192298045511, 1.358557448058103, 1.369797245313315, 1.3808206468344417, 1.3916116971522923, 1.402156400251883, 1.412442646900854 ], [ 1.0782169548502314, 1.073689750742239, 1.0696216194315773, 1.0660379199120311, 1.062963234140328, 1.0604211389218985, 1.0584339657679234, 1.0570225512265217, 1.056205980886674, 1.0560013309676402, 1.0564234120969755, 1.057484520499261, 1.0591942023108396, 1.0615590370486143, 1.0645824463451086, 1.068264533883875, 1.0726019620141252, 1.0775878697993007, 1.0832118362934007, 1.089459891690285, 1.0963145777171655, 1.1037550573062376, 1.1117572722413072, 1.1202941461893938, 1.1293358293373053, 1.13884997979688, 1.148802076053202, 1.159155754034971, 1.1698731619094902, 1.1809153254587594, 1.1922425168840003, 1.2038146201039326, 1.2155914860385841, 1.2275332719749743, 1.2396007598575152, 1.2517556491931758, 1.2639608211692144, 1.276180571510301, 1.2883808105171064, 1.3005292295998596, 1.3125954344239683, 1.3245510455019796, 1.3363697676835782, 1.3480274305059226, 1.3595020017665909, 1.3707735769727603, 1.3818243475062264, 1.392638550433258, 1.4032024028894305, 1.4135040238946384 ], [ 1.0773796322331346, 1.0728326042002791, 1.06874700046209, 1.065148521282451, 1.0620620995250407, 1.0595116681340015, 1.0575199146926946, 1.0561080255713042, 1.0552954229192597, 1.0550994985298727, 1.0555353493582391, 1.056615520156491, 1.0583497592405582, 1.0607447937593062, 1.0638041309440023, 1.067527891635009, 1.071912681896747, 1.076951507751696, 1.08263373702816, 1.0889451110817883, 1.0958678077886992, 1.1033805557900878, 1.1114587985582225, 1.1200749055071455, 1.1291984261301278, 1.1387963820472582, 1.1488335909222671, 1.159273015486563, 1.1700761304167677, 1.1812032995653354, 1.1926141560489874, 1.2042679779478227, 1.216124052838253, 1.2281420250414032, 1.2402822202758204, 1.2525059433132335, 1.2647757452056052, 1.2770556576373444, 1.2893113929226185, 1.3015105090815058, 1.3136225402665103, 1.3256190935525223, 1.3374739137378435, 1.3491629183217908, 1.3606642052257023, 1.3719580361086463, 1.3830267983037825, 1.3938549484734153, 1.4044289410614428, 1.4147371445237216 ], [ 1.07690510354483, 1.0723445112943004, 1.0682474026125492, 1.0646397922955533, 1.0615469382433689, 1.0589931048143102, 1.057001312337277, 1.0555930752868035, 1.0547881324204347, 1.0546041730104088, 1.055056564123812, 1.0561580846583882, 1.0579186724572378, 1.0603451912330337, 1.0634412241690958, 1.067206900883677, 1.0716387639269322, 1.0767296801395716, 1.0824688010827397, 1.0888415754193932, 1.095829814668831, 1.1034118122489538, 1.1115625142350707, 1.1202537388537324, 1.1294544404371918, 1.1391310124220269, 1.149247623015863, 1.159766576409538, 1.1706486919062655, 1.1818536930943053, 1.1933405992138673, 1.20506811115236, 1.2169949850219626, 1.2290803869926847, 1.2412842239260646, 1.2535674453322858, 1.2658923132059912, 1.2782226373403245, 1.2905239747350539, 1.3027637926695335, 1.3149115958816233, 1.3269390190578032, 1.3388198864882315, 1.3505302412643867, 1.3620483467963183, 1.3733546637031033, 1.3844318052906053, 1.395264474884221, 1.4058393882430453, 1.416145184158248 ], [ 1.0768007016889858, 1.0722330774311213, 1.068130698583417, 1.064519865774884, 1.061426134052554, 1.0588740724275252, 1.0568870086377888, 1.0554867616089716, 1.0546933649401558, 1.0545247856373552, 1.0549966432128317, 1.0561219350995936, 1.0579107750200578, 1.060370151416452, 1.0635037132241765, 1.0673115900942094, 1.0717902536233526, 1.0769324252465757, 1.0827270352355007, 1.0891592358127746, 1.0962104698263195, 1.1038585948232815, 1.1120780607945273, 1.120840138383286, 1.1301131930042532, 1.1398629991329559, 1.1500530880298783, 1.1606451213917979, 1.1715992829053141, 1.1828746794385445, 1.1944297436552382, 1.2062226301618433, 1.2182115978752062, 1.230355372084288, 1.2426134806231346, 1.254946559619779, 1.267316625384589, 1.2796873101042492, 1.2920240600726356, 1.304294296185092, 1.3164675373216985, 1.328515488029861, 1.3404120925759746, 1.3521335579630647, 1.3636583489066134, 1.3749671580267775, 1.3860428546603574, 1.396870415728957, 1.4074368420349699, 1.4177310632075304 ], [ 1.0770730265555746, 1.0725051630193325, 1.068404005074222, 1.0647961085367743, 1.0617072956878797, 1.0591624113698979, 1.0571850633440363, 1.0557973493468764, 1.0550195741806065, 1.0548699611326517, 1.0553643629935898, 1.05651597885868, 1.0583350836722427, 1.0608287780142238, 1.064000765849876, 1.0678511678013751, 1.0723763769257224, 1.077568963012037, 1.083417630102749, 1.0899072303920945, 1.0970188359710424, 1.1047298681741158, 1.1130142826238116, 1.1218428065172907, 1.1311832232951293, 1.1410006985984311, 1.1512581403889637, 1.1619165853106193, 1.1729356028451075, 1.184273708586787, 1.1958887780430596, 1.207738452744165, 1.2197805310897207, 1.2319733372198465, 1.2442760622193254, 1.2566490730849988, 1.2690541860523572, 1.2814549020379191, 1.2938166030662204, 1.3061067095821193, 1.3182947994742817, 1.3303526904372396, 1.3422544879663798, 1.3539766018079284, 1.3654977340742582, 1.3767988424887265, 1.3878630823513858, 1.3986757308288402, 1.4092240970814993, 1.4194974215648777 ], [ 1.0777278998262583, 1.0731668367647837, 1.0690736346903211, 1.065475072047657, 1.0623972064246223, 1.0598651275996611, 1.0579026938864649, 1.056532254151009, 1.0557743588204367, 1.0556474642299587, 1.056167635709159, 1.0573482558179697, 1.0591997450113633, 1.0617293026363614, 1.064940676447243, 1.0688339686864692, 1.0734054861829931, 1.078647640880655, 1.08454890579545, 1.09109382972029, 1.0982631121783955, 1.1060337382895158, 1.114379171450399, 1.1232696000982494, 1.132672233356374, 1.1425516390785118, 1.1528701167389037, 1.163588096796802, 1.174664557635625, 1.1860574509695343, 1.1977241267339473, 1.2096217489175687, 1.2217076945134946, 1.2339399287106223, 1.2462773505503828, 1.2586801044721647, 1.2711098544046133, 1.2835300182759226, 1.2959059619734714, 1.308205152846876, 1.3203972737958363, 1.332454299798331, 1.3443505394053323, 1.3560626442531307, 1.3675695900232472, 1.3788526325188741, 1.3898952426350926, 1.4006830239887742, 1.4112036168581927, 1.421446591878267 ], [ 1.0787703217804556, 1.074223330948934, 1.0701450498188647, 1.0665624450455546, 1.0635017756122902, 1.060988343265713, 1.059046225288586, 1.0576979918989384, 1.056964411554179, 1.0568641485300476, 1.0574134582844796, 1.0586258872242662, 1.0605119844673814, 1.063079033916953, 1.0663308153217017, 1.070267402896767, 1.0748850094709372, 1.0801758830217514, 1.0861282609342167, 1.0927263854975238, 1.0999505821858908, 1.1077774002928744, 1.116179813606255, 1.1251274770842183, 1.1345870339514665, 1.1445224662960127, 1.1548954811402758, 1.165665923122676, 1.176792204402796, 1.1882317422266988, 1.199941394769662, 1.2118778863914428, 1.2239982142474939, 1.2362600292366153, 1.24862198545686, 1.261044053619934, 1.2734877951742039, 1.2859165951557563, 1.2982958529837854, 1.31059313150767, 1.3227782655772113, 1.3348234322291632, 1.34670318525371, 1.358394457422911, 1.3698765340295407, 1.3811310016077034, 1.392141675793265, 1.4028945122475962, 1.4133775044252754, 1.423580571733639 ], [ 1.080204430303796, 1.0756789988673707, 1.0716228186211585, 1.068063008236891, 1.0650259922507888, 1.0625372493578502, 1.0606210420992486, 1.059300130122046, 1.058595470220107, 1.058525907519738, 1.0591078633982458, 1.0603550269376205, 1.0622780578064226, 1.0648843093010532, 1.0681775807306342, 1.0721579082843729, 1.0768214029134446, 1.0821601425949774, 1.0881621247044042, 1.0948112822466278, 1.102087565559084, 1.1099670889608049, 1.1184223398006616, 1.1274224455203563, 1.136933492721334, 1.1469188908256847, 1.1573397717750467, 1.1681554163611032, 1.179323697273835, 1.1908015288239664, 1.2025453135500772, 1.214511376531392, 1.2266563791387544, 1.2389377050944472, 1.2513138129973524, 1.263744550828163, 1.2761914293139949, 1.288617852349818, 1.3009893039043907, 1.3132734919511782, 1.3254404509392332, 1.337462605142574, 1.3493147958927134, 1.360974276206527, 1.3724206766737919, 1.3836359466722314, 1.3946042750433627, 1.405311994302433, 1.4157474722862937, 1.4259009948815502 ], [ 1.0820334622914514, 1.0775372745927794, 1.073510573269055, 1.0699805911513345, 1.0669738806382596, 1.0645160603479342, 1.0626315422472383, 1.0613432413043782, 1.0606722707742793, 1.060637627438886, 1.061255872434129, 1.0625408146183575, 1.0645032046545153, 1.0671504489476131, 1.070486353146606, 1.0745109049516015, 1.0792201053797927, 1.084605856429024, 1.0906559113203342, 1.0973538913587264, 1.1046793711231113, 1.1126080313704485, 1.1211118768530812, 1.1301595142776026, 1.1397164839072615, 1.1497456368407484, 1.1602075488155381, 1.1710609605287383, 1.1822632339911132, 1.1937708143662948, 1.2055396870949693, 1.2175258208259232, 1.2296855877043993, 1.2419761538178076, 1.2543558339830685, 1.2667844064978293, 1.2792233849034937, 1.2916362451687884, 1.30398860795947, 1.3162483767866566, 1.328385833804161, 1.3403736958448877, 1.35218713394267, 1.3638037600791404, 1.3752035852300541, 1.3863689529680754, 1.397284452922008, 1.4079368183067131, 1.4183148115418116, 1.4284091016869545 ], [ 1.084259717640403, 1.0798006352259137, 1.0758109705489989, 1.0723180312275475, 1.0693484581017125, 1.0669279707606893, 1.0650810926743535, 1.0638308578193518, 1.0631985017795365, 1.0632031415645051, 1.0638614497811538, 1.0651873302272747, 1.0671916033290083, 1.0698817109601042, 1.073261450885236, 1.0773307512040018, 1.0820854946268448, 1.0875174011654034, 1.0936139759492436, 1.1003585265621951, 1.1077302517499081, 1.1157044008070858, 1.1242525005698782, 1.1333426448079238, 1.1429398389624872, 1.1530063916291473, 1.1635023429605573, 1.1743859193156037, 1.1856140030543771, 1.1971426064033126, 1.2089273387801576, 1.2209238578232393, 1.233088295529626, 1.245377652277813, 1.2577501529955721, 1.2701655612503104, 1.282585448520584, 1.2949734173034186, 1.3072952779875684, 1.319519180554779, 1.3316157031453755, 1.343557900333089, 1.3553213145956886, 1.3668839549427922, 1.3782262469769064, 1.3893309588245348, 1.4001831073929558, 1.4107698492977248, 1.4210803605826596, 1.4311057090359829 ], [ 1.0868845260377697, 1.082470565813383, 1.078525654972629, 1.0750771352165938, 1.072151694831354, 1.0697751136149973, 1.0679719865944228, 1.066765428244994, 1.066176760033505, 1.0662251854118119, 1.0669274578553598, 1.0682975490847884, 1.0703463261035482, 1.0730812469617907, 1.0765060860211813, 1.0806206997597956, 1.0854208436814168, 1.0908980496320801, 1.0970395708520337, 1.1038283995877995, 1.111243359311704, 1.119259270801217, 1.1278471887131007, 1.1369747029603579, 1.1466062972070459, 1.1567037551554293, 1.1672266040424881, 1.1781325839340102, 1.1893781310515603, 1.2009188635084642, 1.2127100584414265, 1.2247071105319334, 1.2368659632208785, 1.2491435054190922, 1.2614979281048908, 1.2738890367921623, 1.2862785173823867, 1.2986301543366463, 1.310910001388162, 1.3230865061435846, 1.3351305908831659, 1.3470156926609702, 1.3587177664268937, 1.3702152553458224, 1.381489032780343, 1.3925223205416182, 1.4033005880071732, 1.4138114365691234, 1.4240444736266735, 1.433991179991861 ], [ 1.0899082167790881, 1.0855475271433668, 1.0816552245706355, 1.0782586430312708, 1.075384475883288, 1.0730585207201124, 1.0713054022647388, 1.0701482748298004, 1.0696085069771635, 1.0697053523507765, 1.0704556121901785, 1.0718732966821922, 1.0739692939483991, 1.0767510569160073, 1.080222319367447, 1.084382852887898, 1.0892282760584084, 1.0947499259955782, 1.1009348002745702, 1.1077655745808024, 1.1152206984002704, 1.1232745679736733, 1.1318977728446533, 1.1410574097687165, 1.1507174555813786, 1.160839188878929, 1.171381649076277, 1.1823021206172328, 1.1935566298607418, 1.2051004424554221, 1.2168885497968243, 1.228876134347522, 1.2410190050709613, 1.2532739958666377, 1.2655993215861472, 1.277954887872916, 1.2903025526396896, 1.3026063384365338, 1.3148325962451648, 1.3269501223488693, 1.338930230867584, 1.3507467853136723, 1.3623761931184244, 1.373797367506787, 1.3849916613642492, 1.3959427778532436, 1.4066366625067634, 1.4170613813672817, 1.427206989464087, 1.4370653935519484 ], [ 1.0933300918893967, 1.0890309266800369, 1.085199199607231, 1.0818621942416935, 1.0790465654973018, 1.076778084901388, 1.075081363252536, 1.0739795519789845, 1.0734940256213181, 1.0736440492248933, 1.0744464360169028, 1.0759152024925547, 1.0780612298185184, 1.0808919420951453, 1.0844110132679914, 1.0886181150941066, 1.0935087183349181, 1.099073958148709, 1.1053005725232976, 1.1121709197123046, 1.1196630773235994, 1.127751022296656, 1.1364048877837911, 1.1455912901045484, 1.1552737165662166, 1.165412963079979, 1.1759676091872724, 1.1868945173835173, 1.1981493435064838, 1.209687045425732, 1.2214623782536946, 1.2334303656835182, 1.245546738707734, 1.2577683347501614, 1.2700534520399223, 1.282362155785004, 1.294656534305526, 1.3069009047318119, 1.3190619691414744, 1.331108923098674, 1.3430135194675916, 1.3547500911054529, 1.366295536603167, 1.377629273639311, 1.388733164752757, 1.3995914204273672, 1.410190484329183, 1.420518905353267, 1.4305672008390413, 1.4403277149186402 ], [ 1.0971484028692735, 1.0929190929621613, 1.0891559945344809, 1.0858862975175037, 1.0831365739958787, 1.0809325243691994, 1.079298700336679, 1.0782582058047843, 1.0778323779140286, 1.0780404517519049, 1.0788992139524025, 1.0804226522204563, 1.0826216097428962, 1.0855034552676623, 1.0890717811006745, 1.0933261421027116, 1.098261848709764, 1.103869825886279, 1.1101365477473428, 1.1170440545302134, 1.1245700549865503, 1.1326881134882791, 1.1413679175426366, 1.1505756182353124, 1.1602742335010756, 1.170424102124943, 1.180983375043903, 1.1919085298757794, 1.2031548946466601, 1.2146771673700028, 1.226429919345758, 1.2383680716536962, 1.250447336153935, 1.2626246142353625, 1.274858348451916, 1.2871088239739523, 1.2993384184073637, 1.3115117999715689, 1.3235960752709697, 1.3355608889471164, 1.347378478366437, 1.3590236871913417, 1.3704739422073284, 1.3817091981436858, 1.3927118554355853, 1.4034666559387954, 1.4139605615316317, 1.4241826203341135, 1.4341238249542814, 1.4437769667549643 ], [ 1.1013603314435503, 1.0972092538666456, 1.093522893603626, 1.0903283034409526, 1.0876519276833954, 1.085519349628268, 1.0839550154001862, 1.0829819350322558, 1.0826213627514176, 1.0828924597941465, 1.0838119447417256, 1.0853937382783374, 1.0876486113284594, 1.0905838475369336, 1.094202932750983, 1.098505285238825, 1.1034860405293234, 1.109135903766418, 1.1154410802890764, 1.1223832919290773, 1.1299398826035125, 1.1380840126030685, 1.1467849369543224, 1.156008359680135, 1.1657168528845026, 1.1758703274452609, 1.1864265407533303, 1.1973416264007621, 1.20857063095868, 1.2200680439114255, 1.2317883082865906, 1.243686301367275, 1.255717776915672, 1.2678397624198174, 1.2800109068757142, 1.2921917764579305, 1.3043450970685802, 1.3164359441745386, 1.328431881547897, 1.3403030515280854, 1.3520222202412908, 1.3635647818565182, 1.3749087264397737, 1.386034576296187, 1.3969252958700167, 1.4075661803105437, 1.4179447277135673, 1.4280504998234447, 1.4378749756414742, 1.4474114019495623 ], [ 1.1059619747460165, 1.1018975192158198, 1.0982960306561549, 1.0951843812532023, 1.0925888423394012, 1.090534833541604, 1.0890466479329541, 1.0881471538651686, 1.0878574751986592, 1.0881966530017193, 1.0891812934694767, 1.090825208788365, 1.0931390598431712, 1.0961300118498236, 1.0998014159257044, 1.1041525309428073, 1.1091783003970708, 1.1148691981959709, 1.1212111551083381, 1.128185574258531, 1.1357694398251934, 1.1439355185051283, 1.1526526488165791, 1.1618861093408335, 1.171598053794976, 1.1817479985247021, 1.1922933466547272, 1.2031899327222304, 1.2143925720757298, 1.2258556005168837, 1.2375333914172595, 1.249380839649455, 1.2613538039324264, 1.2734095014343825, 1.2855068505792995, 1.2976067598902365, 1.3096723623408455, 1.3216691960743259, 1.3335653335022828, 1.3453314617383685, 1.3569409180766574, 1.3683696848123668, 1.3795963481364515, 1.3906020261241783, 1.4013702709871558, 1.4118869507713259, 1.4221401155652411, 1.4321198530399706, 1.4418181377862518, 1.4512286784609523 ], [ 1.1109483354213434, 1.1069788682796802, 1.1034703737194973, 1.100449500234318, 1.0979423010815905, 1.0959739853959674, 1.0945686450543304, 1.093748957772174, 1.0935358679144531, 1.0939482478337599, 1.0950025442323792, 1.0967124160647264, 1.0990883727712835, 1.1021374239874309, 1.1058627540281196, 1.1102634360472519, 1.1153342014175087, 1.1210652792345515, 1.1274423187488969, 1.1344464040497022, 1.1420541658040892, 1.1502379898221877, 1.1589663172415947, 1.1682040266995233, 1.1779128853199383, 1.1880520528656424, 1.198578622045467, 1.209448177687037, 1.2206153581756245, 1.2320344040430946, 1.2436596806471296, 1.2554461642679733, 1.2673498834434347, 1.2793283097755785, 1.2913406946487707, 1.3033483502255954, 1.3153148747160983, 1.3272063232573472, 1.3389913268275935, 1.350641162486931, 1.3621297789202338, 1.373433781781071, 1.3845323837164576, 1.3954073241991203, 1.4060427644116689, 1.4164251624165227, 1.4265431337084364, 1.4363873019891735, 1.4459501446331555, 1.455225836846187 ], [ 1.1163133171582293, 1.112447142779429, 1.1090397151166664, 1.1061174165388923, 1.1037060375412557, 1.1018305300375837, 1.100514736252927, 1.0997810935170218, 1.0996503162219233, 1.1001410575071153, 1.1012695549113274, 1.1030492662817533, 1.1054905045901027, 1.1086000828079794, 1.1123809823652344, 1.1168320605740405, 1.1219478133138814, 1.127718208839894, 1.1341286065626692, 1.141159771078497, 1.1487879869322692, 1.156985274134656, 1.1657196989854708, 1.1749557698657287, 1.1846549037703284, 1.1947759466873322, 1.2052757295498722, 1.2161096413340313, 1.2272322018001414, 1.2385976181574017, 1.2501603123067349, 1.2618754080045937, 1.273699170033828, 1.2855893900620017, 1.2975057161781318, 1.3094099250605016, 1.3212661373347472, 1.3330409779624173, 1.344703684505795, 1.3562261668958506, 1.3675830229308374, 1.3787515141858415, 1.3897115073369735, 1.4004453861075417, 1.4109379391299353, 1.4211762289837053, 1.4311494475178785, 1.4408487622954311, 1.4502671586165037, 1.4593992810990881 ], [ 1.122049726175558, 1.118295046025958, 1.1149966678520222, 1.1121806663954585, 1.1098725254224955, 1.1080968933294388, 1.106877314288982, 1.1062359350827473, 1.1061931886869982, 1.1067674569451724, 1.1079747163213844, 1.1098281727988435, 1.1123378944123075, 1.1155104525347161, 1.1193485856016216, 1.1238509010595175, 1.1290116324930601, 1.1348204686686962, 1.141262469322443, 1.148318078891124, 1.1559632443468597, 1.1641696374398978, 1.1729049757144487, 1.182133431319244, 1.1918161123898874, 1.2019115989069986, 1.212376513508723, 1.2231661076852065, 1.234234844927527, 1.245536964487076, 1.2570270121106988, 1.2686603271296184, 1.2803934782946809, 1.2921846435400832, 1.3039939312755333, 1.3157836427957084, 1.3275184769670347, 1.3391656795555618, 1.3506951404686014, 1.3620794428635854, 1.3732938685863572, 1.384316364776973, 1.3951274767438333, 1.4057102523669456, 1.4160501233462337, 1.426134768557908, 1.4359539646158213, 1.4454994284551457, 1.4547646563670673, 1.4637447634274912 ], [ 1.128149279160445, 1.1245141488159873, 1.121332669042278, 1.1186305666097152, 1.1164329755823206, 1.1147641952911114, 1.1136474238707317, 1.1131044673772519, 1.113155425388877, 1.1138183552247978, 1.1151089185590521, 1.1170400162830791, 1.1196214199451977, 1.1228594108286765, 1.1267564404554868, 1.1313108286165414, 1.1365165164295965, 1.1423628919103557, 1.1488347037450113, 1.1559120752936487, 1.1635706256214229, 1.1717816981640947, 1.1805126912789765, 1.1897274791722807, 1.1993869071012642, 1.2094493416456011, 1.2198712553269286, 1.2306078248610783, 1.2416135236643193, 1.2528426916141144, 1.2642500681278532, 1.2757912779860507, 1.2874232626401974, 1.2991046527438694, 1.3107960801727583, 1.3224604298068838, 1.334063032866737, 1.3455718047057215, 1.356957330756416, 1.368192904896585, 1.3792545249100383, 1.3901208500106206, 1.4007731255987583, 1.4111950805359916, 1.4213728022489978, 1.4312945949037585, 1.440950825714283, 1.4503337641643372, 1.4594374185277494, 1.4682573735828541 ], [ 1.1346026180974011, 1.1310949026522616, 1.128037991112328, 1.1254572232742732, 1.1233773417504807, 1.1218222522916121, 1.1208147597644387, 1.1203762797063024, 1.120526526230742, 1.121283178263102, 1.1226615277071024, 1.1246741152212554, 1.1273303617901806, 1.1306362070850102, 1.1345937684557947, 1.139201036878524, 1.1444516277675765, 1.150334604718691, 1.1568343925564066, 1.1639307923994828, 1.1715991060953739, 1.1798103709372365, 1.1885316988945622, 1.1977267084739043, 1.2073560324010741, 1.2173778809478568, 1.227748639056663, 1.2384234754128554, 1.2493569431018536, 1.2605035541566163, 1.2718183137385046, 1.2832572034422423, 1.2947776068555075, 1.3063386737260145, 1.3179016217236963, 1.3294299767977227, 1.3408897545769516, 1.3522495862594341, 1.3634807931035025, 1.3745574140782535, 1.3854561915330843, 1.3961565199548538, 1.4066403630203568, 1.41689214422454, 1.4268986163651733, 1.4366487150785832, 1.4461334014376117, 1.4553454983339158, 1.4642795249729739, 1.472931533319 ], [ 1.1413993323304203, 1.1380266607490697, 1.135101761364572, 1.1326495494724975, 1.130694335891809, 1.129259589554206, 1.1283676758970786, 1.1280395709191813, 1.128294551588894, 1.1291498644784195, 1.1306203761041977, 1.1327182105282267, 1.135452382299573, 1.1388284356696736, 1.1428481039429135, 1.147509005412294, 1.1528043940440194, 1.1587229833504449, 1.1652488602855624, 1.1723615023625398, 1.1800359057782157, 1.1882428257592854, 1.1969491234553418, 1.2061182073183598, 1.215710551671348, 1.2256842714913427, 1.2359957305242144, 1.2466001597552907, 1.2574522648495001, 1.2685068041300673, 1.2797191225043087, 1.2910456309148552, 1.3024442248895274, 1.3138746392176281, 1.3252987385160528, 1.336680745446329, 1.3479874097012572, 1.359188121744066, 1.3702549758072755, 1.3811627869718215, 1.3918890673378805, 1.4024139664232425, 1.4127201810027978, 1.4227928396365064, 1.4326193671096492, 1.442189333911562, 1.45149429569147, 1.460527627341513, 1.4692843559648066, 1.4777609964976888 ], [ 1.1485279880669452, 1.1452977071329986, 1.1425119903579268, 1.1401952925700212, 1.138371453997966, 1.1370634649934432, 1.1362932067505087, 1.136081167853191, 1.1364461373034191, 1.1374048758551583, 1.1389717690792667, 1.1411584676553783, 1.1439735229161225, 1.1474220285396162, 1.1515052822422869, 1.1562204839534247, 1.1615604887178907, 1.1675136329045934, 1.1740636507497564, 1.181189694681335, 1.188866467494638, 1.197064467883417, 1.205750343876182, 1.2148873421693736, 1.2244358358194873, 1.2343539087119888, 1.2445979729818772, 1.2551233952884222, 1.2658851094955648, 1.2768381965570135, 1.2879384166830128, 1.2991426834968787, 1.3104094742613432, 1.321699173942661, 1.332974353699135, 1.344199986339937, 1.3553436025411418, 1.3663753923189441, 1.3772682566301104, 1.3879978141450233, 1.398542368319374, 1.4088828399313285, 1.419002670272286, 1.4288877001774372, 1.4385260300389306, 1.447907865839093, 1.4570253560525743, 1.46587242398076, 1.4744445996946085, 1.4827388552782892 ], [ 1.1559761653710896, 1.1528952939581043, 1.1502556093091918, 1.1480810714252825, 1.146395012788295, 1.1452199050482652, 1.1445771019348079, 1.1444865582317871, 1.1449665254787378, 1.1460332262392108, 1.1477005103780544, 1.1499794988606822, 1.1528782231101888, 1.1564012708142362, 1.1605494520046133, 1.1653195018274114, 1.1707038381524562, 1.1766903924826608, 1.1832625310958245, 1.1903990798483173, 1.1980744608318898, 1.2062589426644492, 1.2149189993302028, 1.224017765854617, 1.2335155732897702, 1.243370541006158, 1.253539201606222, 1.263977133240635, 1.2746395757877182, 1.2854820109162541, 1.2964606908110698, 1.3075331054687886, 1.3186583832297583, 1.3297976231208102, 1.3409141604557622, 1.3519737690301739, 1.3629448043455448, 1.3737982928432226, 1.3845079723359084, 1.3950502888622562, 1.4054043551622182, 1.4155518759348005, 1.4254770450095788, 1.4351664195306204, 1.4446087761936541, 1.4537949544667244, 1.4627176915384519, 1.4713714534581936, 1.4797522665526406, 1.4878575527270756 ], [ 1.1637305025143012, 1.1608056869393408, 1.1583185164697287, 1.1562924235385608, 1.154750197427168, 1.1537137527303265, 1.1532038742996735, 1.1532399385466632, 1.153839611828657, 1.15501852783721, 1.1567899475242842, 1.1591644071771254, 1.1621493627598882, 1.1657488414506239, 1.1699631141525602, 1.174788405241412, 1.1802166574157766, 1.186235369732871, 1.1928275253661644, 1.1999716222287806, 1.207641814610282, 1.215808167873686, 1.2244370216347074, 1.2334914502337677, 1.2429318032215944, 1.2527163035902658, 1.2628016782674594, 1.273143794534855, 1.283698277736142, 1.2944210895507646, 1.3052690513942546, 1.3162003031537106, 1.3271746926050159, 1.338154094953938, 1.3491026648291997, 1.3599870248378205, 1.3707763957249153, 1.3814426735434833, 1.3919604592837753, 1.4023070463146867, 1.4124623708623316, 1.4224089306447032, 1.4321316767079368, 1.4416178834523221, 1.4508570017676525, 1.4598405000861925, 1.468561697979982, 1.4770155966573437, 1.485198710343356, 1.4931089020623785 ], [ 1.1717767473677236, 1.1690142185836598, 1.1666856321575056, 1.16481386182655, 1.1634211199600255, 1.162528727615753, 1.1621568613508784, 1.1623242767428414, 1.1630480094520748, 1.164343055887083, 1.16622203717757, 1.1686948522457092, 1.1717683282488425, 1.1754458794022922, 1.1797271879055948, 1.1846079229879811, 1.190079515480442, 1.196129005363762, 1.202738978145561, 1.209887602669405, 1.2175487783082652, 1.2256923938470883, 1.2342846941081962, 1.2432887438503102, 1.2526649720870646, 1.262371774402956, 1.2723661470252303, 1.2826043252061712, 1.2930424002288392, 1.3036368936626361, 1.314345273345834, 1.3251264017402518, 1.3359409127873303, 1.346751517624592, 1.3575232423678631, 1.3682236028009584, 1.3788227215563271, 1.389293393546633, 1.3996111052907345, 1.4097540135565092, 1.4197028885262335, 1.4294410265265436, 1.438954137255283, 1.4482302103632754, 1.4572593661741182, 1.4660336952162982, 1.4745470910666696, 1.4827950807429624, 1.4907746565235482, 1.498484112617982 ], [ 1.1800998153477906, 1.17750534868597, 1.175340961862774, 1.1736289403879643, 1.172390887776229, 1.1716474970263397, 1.1714182991501167, 1.1717213888126623, 1.1725731280666227, 1.1739878304418072, 1.1759774293370708, 1.1785511367612327, 1.181715100920954, 1.1854720737859623, 1.1898211022897116, 1.1947572588523443, 1.2002714280096738, 1.20635016573252, 1.2129756463476042, 1.220125708897934, 1.2277740105676558, 1.2358902897244453, 1.2444407353558045, 1.2533884532810975, 1.2626940128160558, 1.2723160513641982, 1.2822119099560396, 1.2923382712288096, 1.3026517732151668, 1.313109577087723, 1.3236698734430057, 1.334292318370412, 1.3449383963172463, 1.3555717110526713, 1.3661582087800874, 1.3766663388990155, 1.3870671584541083, 1.3973343862995287, 1.4074444127413719, 1.4173762700900734, 1.4271115692651704, 1.4366344073840183, 1.4459312511318696, 1.4549908006245895, 1.4638038383992902, 1.4723630680637374, 1.480662946969171, 1.488699517020343, 1.4964702373900196, 1.503973822463101 ], [ 1.1886838532781532, 1.1862627313739411, 1.1842676666201903, 1.1827203283472978, 1.1816416810645032, 1.1810517572260975, 1.1809694073643449, 1.1814120277818163, 1.182395266976049, 1.1839327133095636, 1.1860355681763228, 1.188712311036198, 1.1919683651010835, 1.195805774962451, 1.2002229097447972, 1.205214207072474, 1.2107699738695885, 1.2168762595171834, 1.2235148151221613, 1.2306631497872598, 1.238294691069956, 1.2463790524081537, 1.2548824050478664, 1.2637679457499755, 1.2729964445003794, 1.2825268495885895, 1.2923169223590862, 1.302323872165541, 1.3125049641434978, 1.322818077716606, 1.33322220076748, 1.3436778514944046, 1.3541474259302015, 1.3645954733655172, 1.3749889045029162, 1.3852971384025254, 1.3954921946050627, 1.405548736632211, 1.4154440726674131, 1.4251581188002826, 1.434673329870989, 1.4439746027085043, 1.453049156406312, 1.461886394188505, 1.470477751345487, 1.4788165336206112, 1.4868977502729146, 1.4947179458020556, 1.502275033987912, 1.5095681374694445 ], [ 1.1975123084191952, 1.1952692878484252, 1.1934481396713403, 1.1920698906567213, 1.191154837972049, 1.190722323148254, 1.1907904837524688, 1.191375983114761, 1.1924937195025096, 1.1941565175488926, 1.1963748065410595, 1.1991562923191244, 1.2025056319053837, 1.2064241223433751, 1.2109094172542525, 1.21595528594512, 1.221551430219924, 1.2276833732091736, 1.2343324326560479, 1.241475788459111, 1.249086651127245, 1.2571345340959552, 1.2655856281594022, 1.274403270135116, 1.283548490459779, 1.2929806169280584, 1.302657906209124, 1.3125381728847496, 1.3225793881552952, 1.3327402262157069, 1.3429805438517324, 1.353261786221247, 1.36354731781447, 1.373802681731813, 1.3839957927815267, 1.394097070894875, 1.4040795214733472, 1.41391876893886, 1.4235930492531552, 1.4330831666854071, 1.4423724197219632, 1.4514465007515074, 1.4602933740018038, 1.4689031361145608, 1.4772678636766532, 1.4853814519362047, 1.4932394487862894, 1.500838887872006, 1.5081781243564873, 1.5152566764685538 ], [ 1.2065680018480123, 1.2045072838836444, 1.202864088341622, 1.2016587746156127, 1.2009109460349456, 1.2006392249965268, 1.2008610061756653, 1.2015921883315608, 1.2028468863440571, 1.2046371266112657, 1.2069725308028463, 1.2098599951386422, 1.2133033746831852, 1.2173031843505437, 1.2218563300518344, 1.226955884339392, 1.2325909207660786, 1.2387464199785956, 1.2454032585616455, 1.2525382892431427, 1.2601245184880383, 1.268131384498407, 1.2765251344621784, 1.285269293848567, 1.2943252127793337, 1.3036526664818604, 1.3132104808941754, 1.3229571526495567, 1.3328514354885843, 1.342852871556279, 1.352922254028478, 1.363022015114901, 1.3731165394580207, 1.3831724068797586, 1.3931585705236194, 1.4030464771879265, 1.412810136569152, 1.4224261456583733, 1.4318736739482516, 1.4411344145767435, 1.4501925061294672, 1.4590344295556033, 1.4676488844973163, 1.4760266492484082, 1.4841604284973013, 1.4920446929288802, 1.499675514624227, 1.5070504019825406, 1.5141681375825182, 1.5210286220034803 ], [ 1.2158332053489627, 1.2139584111266863, 1.2124966200297709, 1.2114675008405116, 1.210889938420398, 1.2107818100409198, 1.2111597402006415, 1.212038834623966, 1.2134323953349593, 1.2153516202739016, 1.2178052928599117, 1.220799469107502, 1.22433717218021, 1.2284181063081625, 1.2330384034390038, 1.238190416496261, 1.2438625725185426, 1.250039297371612, 1.2567010215815777, 1.2638242746355324, 1.2713818730354887, 1.2793432050200522, 1.2876746111551742, 1.296339854025408, 1.30530066220296, 1.314517325273934, 1.3239493106180766, 1.3335558710209499, 1.3432966155060078, 1.3531320226846766, 1.3630238842104145, 1.3729356735548066, 1.3828328411086253, 1.3926830402513777, 1.4024562908320972, 1.4121250870095878, 1.4216644561548435, 1.4310519749395785, 1.440267748097154, 1.4492943547896397, 1.4581167671078938, 1.4667222449697388, 1.4751002115348462, 1.4832421131801812, 1.491141268027774, 1.498792706945925, 1.506193010819221, 1.5133401476796673, 1.5202333129979164, 1.5268727760517062 ], [ 1.2252897209937927, 1.2236038712638833, 1.222326331248147, 1.2214760574751016, 1.2210711936010705, 1.2211288480372835, 1.2216648505137284, 1.2226934884599112, 1.2242272253561042, 1.2262764048632424, 1.2288489465442685, 1.2319500412254392, 1.2355818562787821, 1.239743262997605, 1.2444295993937682, 1.249632481843513, 1.2553396779473924, 1.2615350509994538, 1.2681985841441814, 1.275306490243791, 1.28283141184979, 1.290742713839802, 1.2990068679587905, 1.307587922620089, 1.3164480431144023, 1.32554809882858, 1.3348482680896925, 1.3443086300165648, 1.353889716577273, 1.3635530053544558, 1.3732613419373128, 1.3829792883543148, 1.392673399441083, 1.402312432328679, 1.4118674957300978, 1.4213121459850888, 1.4306224364394475, 1.4397769260866347, 1.4487566527355618, 1.4575450754164385, 1.4661279903408841, 1.4744934244848977, 1.4826315107307835, 1.4905343484405713, 1.4981958532915192, 1.5056116001423614, 1.5127786625832456, 1.5196954526299933, 1.5263615637433154, 1.5327776199871925 ], [ 1.2349189626427526, 1.233424462191723, 1.232333398745169, 1.2316639965518241, 1.2314336372409111, 1.2316586389068884, 1.2323540146316054, 1.233533211509219, 1.235207832582081, 1.2373873458260927, 1.2400787863930645, 1.2432864605842087, 1.247011662224975, 1.2512524138654675, 1.2560032461263906, 1.2612550282309312, 1.266994861263997, 1.273206043336136, 1.2798681132970846, 1.2869569776359786, 1.2944451238754278, 1.3023019223399839, 1.3104940151839577, 1.3189857858282434, 1.327739893793818, 1.3367178515037301, 1.3458806139798833, 1.3551891516275139, 1.3646049805790155, 1.374090632607445, 1.3836100549764823, 1.3931289377945608, 1.4026149715252823, 1.4120380402144268, 1.421370357189974, 1.4305865500796626, 1.4396637015035878, 1.448581351111473, 1.4573214639694558, 1.4658683697663673, 1.4742086769359979, 1.4823311655655942, 1.4902266628452578, 1.4978879047619496, 1.505309387710298, 1.5124872136383678, 1.519418932240321, 1.5261033835255517, 1.532540543827281, 1.5387313779620353 ], [ 1.2447020386722043, 1.2434006654263876, 1.2424976718654246, 1.242010531576273, 1.241955845275047, 1.2423491215695806, 1.2432045377178114, 1.2445346816281055, 1.2463502777525646, 1.2486599013208937, 1.2514696874895408, 1.2547830442750272, 1.2586003803096542, 1.2629188600962447, 1.2677322001111642, 1.2730305184916726, 1.2788002491411448, 1.2850241283288872, 1.2916812590521054, 1.2987472563422073, 1.3061944754982933, 1.3139923240640305, 1.3221076556538154, 1.3305052382627804, 1.3391482818375169, 1.347999001899598, 1.357019190926792, 1.3661707690152258, 1.3754162899792821, 1.384719386627979, 1.3940451470615303, 1.4033604206083192, 1.412634056647895, 1.4218370820878752, 1.4309428241863176, 1.4399269853423633, 1.4487676759223793, 1.4574454104894718, 1.4659430721582687, 1.4742458492923498, 1.4823411484182234, 1.4902184870290631, 1.4978693698543908, 1.5052871521343574, 1.5124668934149308, 1.5194052053346534, 1.5261000967747504, 1.5325508195726636, 1.5387577177443537, 1.544722082825154 ], [ 1.2546198353163793, 1.2535127340908045, 1.2527987654359751, 1.2524946355727784, 1.252616147374977, 1.2531779830818106, 1.2541934676293571, 1.255674314020432, 1.2576303536104814, 1.2600692560376814, 1.2629962457005486, 1.2664138240056544, 1.2703215087574755, 1.2747156036126948, 1.279589011013128, 1.2849311011195514, 1.290727647004572, 1.2969608332148006, 1.30360934165823, 1.3106485164661417, 1.3180506082264543, 1.3257850969383846, 1.3338190906014769, 1.3421177913100217, 1.3506450134606307, 1.3593637314200917, 1.3682366296392883, 1.377226628552153, 1.3862973644308436, 1.3954136087862787, 1.4045416205854275, 1.4136494308097, 1.4227070630183913, 1.4316866957340049, 1.4405627731555661, 1.4493120705196962, 1.457913719836449, 1.4663492010401082, 1.4746023029822846, 1.4826590582292984, 1.490507655317168, 1.4981383319440706, 1.5055432525023205, 1.512716373327279, 1.5196532990269078, 1.5263511332170556, 1.532808326896078, 1.5390245275299634, 1.545000431676684, 1.5507376436582139 ], [ 1.2646531000888783, 1.2637407809155565, 1.2632161525883838, 1.2630951389775946, 1.263392730169299, 1.264122767444012, 1.2652977095676494, 1.2669283819808563, 1.269023711971184, 1.271590454804444, 1.2746329180031424, 1.278152693297661, 1.2821484079129128, 1.286615508339602, 1.2915460900953506, 1.2969287858657728, 1.3027487218360883, 1.3089875484889242, 1.3156235485771328, 1.322631822310966, 1.329984548319498, 1.3376513178971932, 1.3455995379034669, 1.3537948932587123, 1.3622018535997622, 1.3707842023759675, 1.3795055631350577, 1.3883298985654513, 1.3972219627073732, 1.4061476938010211, 1.4150745423588136, 1.4239717347156828, 1.4328104759672018, 1.4415640980227808, 1.4502081590008613, 1.4587204999257968, 1.4670812640859179, 1.4752728837536067, 1.4832800383997728, 1.4910895881129573, 1.4986904856613816, 1.506073670489993, 1.513231947885357, 1.5201598565285988, 1.5268535276502488, 1.5333105389688486, 1.539529766510098, 1.5455112372497124, 1.5512559852929018, 1.5567659139981769 ], [ 1.274782524812083, 1.274064865766737, 1.2737292570175602, 1.2737908268743339, 1.274263739714999, 1.2751609835814053, 1.2764941398578618, 1.2782731367774434, 1.2805059900279332, 1.2831985356492674, 1.2863541626473427, 1.2899735550982812, 1.2940544556435292, 1.2985914637186948, 1.3035758821186332, 1.3089956242133305, 1.314835191280026, 1.3210757255035095, 1.3276951401657102, 1.3346683253947837, 1.3419674259961372, 1.3495621867474714, 1.3574203587299905, 1.3655081566416734, 1.3737907517881658, 1.3822327803351515, 1.3907988437471586, 1.3994539795134133, 1.4081640849366515, 1.4168962832844856, 1.4256192280538729, 1.4343033461528276, 1.4429210239972605, 1.4514467420488661, 1.4598571636739055, 1.46813118389072, 1.476249942986852, 1.4841968093702742, 1.4919573354991356, 1.4995191903574687, 1.5068720717082749, 1.5140076012352426, 1.520919205641713, 1.5276019867737876, 1.5340525838344994, 1.5402690307293523, 1.5462506115045525, 1.551997716694195, 1.5575117031740564, 1.562794759829933 ], [ 1.284988827824309, 1.284465082261188, 1.2843175442322503, 1.2845605351240974, 1.285207382772763, 1.2862702120558647, 1.2877597184199077, 1.2896849262408066, 1.2920529354598953, 1.2948686618708969, 1.2981345786736398, 1.301850469258258, 1.3060132032970895, 1.3106165496304052, 1.3156510396228898, 1.3211038932491053, 1.3269590170875494, 1.3331970791305185, 1.3397956607960164, 1.3467294828231628, 1.3539706994246772, 1.3614892537865197, 1.3692532865704419, 1.3772295863852142, 1.3853840672463666, 1.3936822542155385, 1.402089756619682, 1.4105727096686702, 1.4190981696387925, 1.4276344536509642, 1.436151420792532, 1.444620695768617, 1.4530158390372634, 1.461312468668456, 1.4694883394173495, 1.4775233841751296, 1.485399722404053, 1.4931016395965526, 1.5006155413287594, 1.5079298851453706, 1.5150350933106205, 1.5219234493630815, 1.5285889813843072, 1.5350273348984775, 1.5412356383257764, 1.5472123638897872, 1.5529571868062615, 1.5584708454434377, 1.563755004937195, 1.5688121264698784 ], [ 1.2952528349514707, 1.2949216430461976, 1.294960611365265, 1.2953832449494154, 1.2962020264342309, 1.2974282100399332, 1.29907159943447, 1.3011403115180333, 1.303640529727134, 1.3065762523887814, 1.3099490438871044, 1.3137577987361888, 1.3179985307432627, 1.322664200821645, 1.3277445971492383, 1.3332262798466252, 1.339092599078063, 1.3453237908786546, 1.3518971500111117, 1.358787274881165, 1.3659663767415937, 1.3734046439733172, 1.3810706512000896, 1.388931801312751, 1.3969547859149434, 1.4051060471894952, 1.4133522232197429, 1.4216605603620747, 1.4299992801765573, 1.4383378935434314, 1.4466474595537795, 1.4549007906007505, 1.463072607480307, 1.4711396493985622, 1.4790807439659337, 1.4868768419389207, 1.4945110209570758, 1.5019684620085578, 1.5092364019384292, 1.5163040650209523, 1.5231625764452452, 1.5298048604861896, 1.53622552611828, 1.5424207428428456, 1.548388109510007, 1.5541265188974396, 1.559636020740483, 1.564917685778898, 1.5699734731899846, 1.5748061035186893 ], [ 1.3055555588251284, 1.3054149633090175, 1.3056382750900406, 1.3062381754949266, 1.3072262955921508, 1.308613013997566, 1.3104072395804873, 1.3126161812665773, 1.3152451086807406, 1.3182971092903624, 1.3217728499154082, 1.3256703527688587, 1.329984798239821, 1.334708367963157, 1.3398301418001082, 1.3453360607463316, 1.3512089643538345, 1.357428706372129, 1.3639723468874552, 1.3708144144385004, 1.3779272283266293, 1.3852812697527366, 1.39284558978688, 1.4005882414984245, 1.408476722370149, 1.416478411880074, 1.4245609889308768, 1.4326928154428096, 1.4408432758424032, 1.4489830665323935, 1.4570844336350983, 1.4651213605684161, 1.4730697090496632, 1.480907318049643, 1.4886140653628248, 1.496171896165669, 1.5035648224722298, 1.510778896936853, 1.5178021640813908, 1.5246245917690138, 1.5312379855999187, 1.5376358888442785, 1.5438134705224118, 1.5497674042608924, 1.5554957405663639, 1.5609977751432673, 1.5662739158185317, 1.5713255505148755, 1.5761549185301602, 1.580764987135905 ], [ 1.3158782761067611, 1.3159257420490966, 1.3163306571437556, 1.317104873823646, 1.3182591676565574, 1.3198030393987343, 1.3217445030650126, 1.3240898623611403, 1.3268434793569681, 1.3300075411683407, 1.333581832577881, 1.337563524764874, 1.341946992299677, 1.3467236718232551, 1.3518819758468945, 1.3574072734177627, 1.363281945839018, 1.3694855205341114, 1.3759948803787774, 1.3827845405962247, 1.3898269816680495, 1.3970930250187932, 1.4045522379858588, 1.4121733548283706, 1.4199247005727966, 1.4277746044170212, 1.4356917898950317, 1.4436457306774695, 1.451606963803535, 1.4595473557478627, 1.4674403202117154, 1.4752609892605837, 1.4829863411530364, 1.4905952889993188, 1.4980687345111268, 1.5053895908458603, 1.5125427781410394, 1.5195151949283991, 1.5262956682896258, 1.5328748853921474, 1.5392453089192353, 1.545401078861274, 1.5513379031369634, 1.5570529395350643, 1.5625446714823537, 1.5678127801299324, 1.5728580151913925, 1.5776820668524243, 1.5822874408983076, 1.5866773389759938 ], [ 1.3262026021468294, 1.326435040603001, 1.3270182669001716, 1.3279633017328083, 1.3292800638254938, 1.3309771766766902, 1.3330617625225167, 1.3355392260159515, 1.3384130316276386, 1.341684480621955, 1.3453524955612506, 1.3494134224511374, 1.35386086253247, 1.3586855468980281, 1.3638752670402474, 1.3694148726662643, 1.375286344466112, 1.3814689442782235, 1.3879394391070534, 1.3946723899263271, 1.4016404922909114, 1.4088149540226063, 1.4161658953178995, 1.4236627576485141, 1.4312747089367537, 1.4389710334193893, 1.4467214956918188, 1.4544966701251028, 1.46226822931751, 1.4700091881666464, 1.4776941029710173, 1.485299227210092, 1.4928026270903982, 1.5001842606220244, 1.5074260241030486, 1.5145117696717068, 1.5214272972337346, 1.5281603237182966, 1.5347004323285232, 1.5410390042578985, 1.5471691352373564, 1.5530855392406129, 1.5587844416813637, 1.5642634644595907, 1.5695215052297382, 1.574558613251577, 1.579375864130081, 1.583975235643445, 1.5883594866965867, 1.5925320412218056 ], [ 1.3365105625746325, 1.3369243578692407, 1.3376820803807865, 1.3387939187065871, 1.3402689361382485, 1.3421148825445846, 1.3443379947598184, 1.3469427881220128, 1.3499318432865912, 1.3533055942308854, 1.3570621253840638, 1.3611969878703434, 1.3657030466252995, 1.370570371194166, 1.375786182842194, 1.3813348687561184, 1.3871980704078781, 1.3933548478520468, 1.3997819156470495, 1.4064539404295127, 1.4133438861226297, 1.420423390988366, 1.4276631610777135, 1.4350333662617383, 1.4425040269834781, 1.4500453816232284, 1.4576282259521245, 1.4652242178862798, 1.472806142845154, 1.4803481373509937, 1.4878258707414065, 1.4952166866632053, 1.5024997071936743, 1.5096559030063372, 1.5166681331033471, 1.5235211574587346, 1.530201625618011, 1.5366980439932039, 1.5430007243427168, 1.5491017157550167, 1.5549947223633753, 1.5606750089884491, 1.5661392969143133, 1.5713856520263416, 1.5764133675549117, 1.5812228436577815, 1.5858154660226051, 1.5901934855712074, 1.5943599011953264, 1.5983183472524165 ], [ 1.3467846612905239, 1.34737570164873, 1.34830361505432, 1.3495777602776942, 1.35120634949106, 1.3531962657412993, 1.3555528702859951, 1.3582798025850413, 1.361378777178544, 1.3648493834043383, 1.3686888958256316, 1.372892105163356, 1.377451181149228, 1.3823555796148796, 1.3875920058265558, 1.39314444414679, 1.3989942603782188, 1.4051203778750216, 1.4114995224658147, 1.4181065255866532, 1.4249146709643954, 1.4318960684525253, 1.4390220391539725, 1.4462634980151339, 1.4535913226440684, 1.460976699480204, 1.4683914404324414, 1.4758082648888666, 1.483201043803677, 1.490545004416907, 1.4978168958981497, 1.504995117611293, 1.5120598126384404, 1.518992929670781, 1.5257782564688036, 1.5324014279510003, 1.5388499117192591, 1.5451129735675364, 1.5511816253033115, 1.5570485570626302, 1.5627080562195155, 1.568155914964726, 1.5733893286377791, 1.578406786917853, 1.583207959992958, 1.5877935818159523, 1.592165332507704, 1.5963257218739428, 1.600277975860666, 1.6040259275852626 ], [ 1.357007944321844, 1.357771655503335, 1.3588649997601925, 1.3602965110576761, 1.3620735577891265, 1.3642021662844313, 1.366686835600227, 1.3695303465243323, 1.3727335691152436, 1.3762952747372839, 1.3802119603512155, 1.3844776945910933, 1.3890839966065232, 1.3940197593751706, 1.399271228746418, 1.404822047480157, 1.4106533698430164, 1.4167440471676023, 1.423070878902175, 1.4296089181864022, 1.436331817034931, 1.4432121945442653, 1.4502220121882268, 1.457332942563623, 1.4645167209043344, 1.4717454714836953, 1.478992003321749, 1.4862300714580174, 1.4934346016508822, 1.5005818778428823, 1.50764969306145, 1.5146174654983942, 1.521466322240316, 1.5281791534946698, 1.5347406402338908, 1.5411372580635283, 1.5473572599107104, 1.5533906399061543, 1.5592290806453917, 1.564865885884628, 1.570295900655849, 1.5755154207629478, 1.5805220936281947, 1.5853148124775853, 1.589893605865139, 1.5942595245247964, 1.5984145274927564, 1.6023613693553285, 1.6061034903451146, 1.609644910833469 ] ], "zauto": true, "zmax": 1.609644910833469, "zmin": -1.609644910833469 }, { "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.10349651490877451, 0.10112392575785262, 0.09884929164844516, 0.096682885651755, 0.09463475171046767, 0.09271456688207852, 0.09093149180035139, 0.0892940123422693, 0.0878097768799105, 0.08648543491227412, 0.08532648412614526, 0.08433713380504912, 0.08352019276652042, 0.08287698948402153, 0.08240733066411426, 0.0821095023665265, 0.08198031498819147, 0.08201519042043522, 0.08220828682847148, 0.08255265416929207, 0.08304041203332418, 0.08366294079037948, 0.08441107730342604, 0.08527530747308847, 0.08624594933936959, 0.08731332212491194, 0.08846789821913251, 0.0897004365042697, 0.09100209651910529, 0.09236453372090236, 0.09377997657095223, 0.0952412863954392, 0.09674200103471466, 0.09827636326142312, 0.09983933487915982, 0.10142659735134242, 0.10303453978016973, 0.1046602350700996, 0.10630140517004083, 0.10795637638726062, 0.1096240258930534, 0.11130372068235905, 0.11299525039337871, 0.11469875552489361, 0.11641465269643068, 0.1181435586681888, 0.11988621486490578, 0.12164341412368898, 0.12341593130682205, 0.12520445928602708 ], [ 0.10151933281831035, 0.09907894189809843, 0.09673677262052337, 0.09450343491330328, 0.09238934448450974, 0.09040458268498376, 0.0885587424287352, 0.08686076285556615, 0.08531875698052008, 0.08393983823710326, 0.08272995338315695, 0.08169373044001178, 0.08083435089617984, 0.0801534550849737, 0.07965108830620339, 0.07932569293581179, 0.07917414867385918, 0.07919185960686087, 0.07937288338494171, 0.07971009500777204, 0.08019537583340765, 0.08081981764449749, 0.08157393189560193, 0.08244785542142138, 0.08343154560035163, 0.08451495990969383, 0.08568821668682511, 0.08694173551892319, 0.08826635691401447, 0.08965344173613833, 0.09109495136198456, 0.09258350971436093, 0.09411244834213886, 0.09567583563212491, 0.09726849112495822, 0.09888598581188598, 0.10052462924059907, 0.10218144426646052, 0.10385413034967622, 0.1055410164096569, 0.10724100439159216, 0.10895350486150479, 0.11067836610893107, 0.11241579838595778, 0.1141662950333866, 0.1159305523276344, 0.1177093899150292, 0.11950367367651032, 0.1213142427810596, 0.12314184254022865 ], [ 0.09959745428722436, 0.09709006604760757, 0.09468100272580651, 0.0923811941644496, 0.09020141291305225, 0.088152132635655, 0.08624337040754024, 0.0844845151856087, 0.08288414645191408, 0.08144984894074178, 0.08018803125324855, 0.07910375774345078, 0.07820060398421495, 0.07748054607318647, 0.07694389280644, 0.07658926731197173, 0.07641364130976785, 0.0764124211843827, 0.07657958109238032, 0.07690783496537462, 0.07738883697058373, 0.07801339899361943, 0.07877171399490954, 0.07965357542366101, 0.08064858487791479, 0.08174634246807973, 0.08293661651985967, 0.08420949109194138, 0.08555549115907225, 0.08696568620513137, 0.08843177344473198, 0.0899461420489134, 0.09150191970478448, 0.09309300269396127, 0.09471407051016259, 0.09636058590636096, 0.09802878119441695, 0.099715631624999, 0.10141881674761534, 0.10313667077720429, 0.10486812315786678, 0.1066126306975774, 0.10837010283235636, 0.11014082174732698, 0.11192535922036899, 0.11372449214815075, 0.11553911875359979, 0.11737017744987795, 0.11921857024474455, 0.12108509240995993 ], [ 0.09773463291440616, 0.09516132465517849, 0.0926862936621666, 0.09032077026768005, 0.0880758656994538, 0.08596242997608773, 0.08399089157328388, 0.08217108065475491, 0.08051203950870998, 0.0790218259825278, 0.07770731794723931, 0.07657402882147438, 0.07562594553704718, 0.07486540062929394, 0.07429298908194766, 0.07390753805786489, 0.07370613389639073, 0.07368420623291629, 0.07383566447247485, 0.07415307784584506, 0.07462788748275986, 0.07525063767481338, 0.07601121377409287, 0.07689907570509714, 0.07790347840366327, 0.07901367313961634, 0.08021908619707975, 0.08150947348049657, 0.08287505114186396, 0.08430660327629477, 0.08579556819271825, 0.08733410486632354, 0.08891514105964986, 0.09053240438311885, 0.0921804373455292, 0.09385459727901635, 0.0955510419397463, 0.09726670159101043, 0.0989992384605356, 0.10074699461105384, 0.10250892945184946, 0.10428454832781679, 0.10607382383129883, 0.1078771116721411, 0.10969506309685353, 0.11152853595362013, 0.11337850654499092, 0.11524598438524684, 0.11713193188008038, 0.11903719077212824 ], [ 0.09593431280675709, 0.09329643644640677, 0.09075665573588729, 0.08832648015089876, 0.08601733863934007, 0.08384043790556268, 0.08180660045841617, 0.0799260836479736, 0.07820838286546569, 0.07666202445484817, 0.07529435647085327, 0.07411134786394942, 0.07311740851017862, 0.07231524323131729, 0.0717057521551871, 0.07128798726340868, 0.07105917091721427, 0.07101477705427844, 0.07114867039730162, 0.0714532942835095, 0.07191989435618416, 0.07253876378374868, 0.07329949592210995, 0.07419123209111762, 0.07520289484937143, 0.07632340021683186, 0.07754184518850687, 0.07884766925073065, 0.08023079029292159, 0.08168171630462279, 0.08319163467431404, 0.08475248092965394, 0.08635698854923222, 0.08799872117941042, 0.0896720883100413, 0.09137234526249392, 0.09309557824904194, 0.09483867527513479, 0.09659928376084655, 0.09837575593149749, 0.10016708324571506, 0.10197282136687254, 0.1037930074193445, 0.10562807148398205, 0.10747874446038463, 0.10934596454155861, 0.11123078459672, 0.11313428273131802, 0.115057478184186, 0.11700125453050556 ], [ 0.09419958432564533, 0.09149876244265231, 0.08889574204111834, 0.0864022892144268, 0.08403012753735171, 0.08179079753147162, 0.07969549405415391, 0.07775488220964037, 0.07597889439829002, 0.07437651368793857, 0.07295555161388957, 0.07172243142210412, 0.07068199013787653, 0.06983731406677665, 0.06918962187653611, 0.06873820696855502, 0.06848044651579886, 0.0684118788576208, 0.06852634480235394, 0.06881618284797733, 0.06927246431412667, 0.06988525244354676, 0.07064386975256415, 0.071537159917869, 0.07255373362532702, 0.07368219134195421, 0.07491131927588264, 0.0762302574438703, 0.07762864059372715, 0.0790967137507817, 0.08062542452592897, 0.0822064942460133, 0.08383246965164572, 0.08549675652211014, 0.08719363624722676, 0.08891826613593788, 0.09066666415399624, 0.09243567881162032, 0.09422294505479412, 0.09602682722138847, 0.09784635037620153, 0.09968112160960592, 0.10153124314884084, 0.10339721936806602, 0.10527985997459925, 0.10718018177848497, 0.10909931150716384, 0.11103839209670346, 0.11299849477034832, 0.11498053900410309 ], [ 0.09253314414592066, 0.08977125958685933, 0.08710679528720337, 0.08455175115682728, 0.08211812104071813, 0.07981775397724257, 0.07766219174984092, 0.07566248267497466, 0.07382897361850072, 0.07217108495952936, 0.07069707645553053, 0.06941381533099997, 0.06832656083730619, 0.06743878130811642, 0.06675201968599946, 0.06626582118483992, 0.0659777321843349, 0.06588337317396048, 0.0659765815925389, 0.06624961399317528, 0.06669339223539085, 0.06729777607854433, 0.06805184474750389, 0.0689441723383595, 0.06996308554502857, 0.0710968962375326, 0.0723341051601763, 0.07366357595883441, 0.07507468069962554, 0.07655741905634572, 0.0781025136203937, 0.07970148358348132, 0.08134669860516151, 0.0830314141973134, 0.08474978956122022, 0.08649688856272669, 0.08826866444230896, 0.09006192891388562, 0.0918743064775328, 0.09370417502102073, 0.09555059407849441, 0.0974132224217339, 0.09929222695482204, 0.10118818514469768, 0.10310198342966674, 0.10503471418837905, 0.1069875739095593, 0.10896176516702465, 0.1109584048698124, 0.11297844102353236 ], [ 0.09093726145733422, 0.0881164399961756, 0.08539259945599013, 0.08277795151769388, 0.0802847357371222, 0.07792508295660792, 0.07571085361322112, 0.07365345023510629, 0.07176360546567362, 0.07005114980421752, 0.06852476676500602, 0.06719174696697504, 0.0660577561536585, 0.06512663450389779, 0.06440024500549917, 0.06387838653677734, 0.06355878253344063, 0.0634371492524295, 0.0635073398150179, 0.06376155287653396, 0.06419058929591387, 0.06478413744913197, 0.06553106802819507, 0.06641972180103733, 0.06743817794768478, 0.06857449518791071, 0.06981692209513915, 0.07115407619809662, 0.07257509351018453, 0.07406975108681098, 0.07562856535279641, 0.07724286858075782, 0.07890486532538704, 0.08060767004320325, 0.08234532668359858, 0.08411281078223569, 0.08590601452527433, 0.08772171535430962, 0.08955752890512297, 0.09141184737458732, 0.09328376475047116, 0.09517299068584345, 0.09707975512755872, 0.09900470609491144, 0.10094880323123896, 0.10291320990135272, 0.10489918666647037, 0.10690798892489513, 0.10894077135508205, 0.11099850153829047 ], [ 0.08941375218889158, 0.08653633798750848, 0.0837554386908623, 0.08108345756543867, 0.07853285631870478, 0.07611602071091979, 0.07384509989728967, 0.07173181818013437, 0.06978725987509207, 0.06802163093332828, 0.06644400471706831, 0.06506206354463488, 0.06388185165128563, 0.06290755815660809, 0.062141349519023545, 0.061583269040455565, 0.06123121603915344, 0.061081009862244295, 0.06112653521495135, 0.06135995702067055, 0.061771986812510365, 0.06235217956085009, 0.06308924009920117, 0.06397132134973667, 0.06498630127128599, 0.06612203062497729, 0.06736654825788076, 0.06870826402807405, 0.07013611155138094, 0.07163967378738116, 0.07320928443459598, 0.07483610755176791, 0.07651219709593161, 0.07823053740290072, 0.07998506516262836, 0.08177067320560408, 0.08358319640371546, 0.08541938015522765, 0.08727683221430114, 0.08915395898919273, 0.09104988782668763, 0.0929643771903407, 0.09489771700090763, 0.09685062171796233, 0.09882411898418658, 0.10081943681107448, 0.10283789234240842, 0.10488078517774063, 0.10694929806640291, 0.10904440749381492 ], [ 0.08796396309096755, 0.08503248704795695, 0.08219706593934406, 0.07947027739748985, 0.07686478399699706, 0.07439320075438527, 0.07206793538769897, 0.06990099947758335, 0.06790379066362212, 0.06608684901673097, 0.06445959469381606, 0.06303005856874279, 0.0618046220647787, 0.06078778590408344, 0.05998198882789559, 0.0593874956117979, 0.05900236856216649, 0.058822528645458526, 0.058841902848721386, 0.05905264521164486, 0.05944541208487939, 0.06000966880564052, 0.06073400541347822, 0.06160644257430137, 0.06261471424360421, 0.06374651934897768, 0.06498973975129975, 0.066332625294668, 0.06776394872630224, 0.06927313388794909, 0.07085036027354182, 0.07248664626589663, 0.07417391248101689, 0.07590502590904835, 0.07767382506654597, 0.07947512618996926, 0.08130471056849978, 0.0831592933708506, 0.08503647469763173, 0.08693467402867022, 0.08885304968750599, 0.09079140538048941, 0.09275008626134847, 0.09472986730506014, 0.09673183703030798, 0.098757279771574, 0.10080755975486703, 0.1028840101630734, 0.1049878301812831, 0.10711999269065209 ], [ 0.08658876735106343, 0.08360590882196418, 0.08071868385710937, 0.0779398312234837, 0.07528219660849607, 0.07275860131334314, 0.07038168286416868, 0.068163705245653, 0.06611633843392516, 0.06425040998206663, 0.06257563557094403, 0.06110034035891361, 0.05983118793944805, 0.0587729376769282, 0.057928252889664994, 0.05729758071784721, 0.05687911910545182, 0.05666887765776215, 0.05666082873321688, 0.056847135152936226, 0.0572184334986206, 0.05776414852794435, 0.058472815035405405, 0.059332387688080544, 0.06033052544136159, 0.06145484344661391, 0.06269313062067124, 0.0640335345831151, 0.06546471740265429, 0.0669759858694291, 0.06855739935759311, 0.07019985729088515, 0.07189516718151467, 0.07363609342543098, 0.0754163866033265, 0.07723079294794266, 0.07907504382709334, 0.08094582546988484, 0.08284072964801961, 0.08475818654850834, 0.08669738159230854, 0.08865815843489577, 0.09064091080930145, 0.09264646622429218, 0.09467596479524482, 0.0967307366475546, 0.09881218137692394, 0.1009216529648529, 0.10306035332419271, 0.10522923729048074 ], [ 0.08528857313640538, 0.08225711594244962, 0.07932094030274672, 0.07649293772493414, 0.07378612391659295, 0.07121350760212752, 0.06878793044513833, 0.06652187546220975, 0.06442724330200914, 0.0625150989373423, 0.06079539568210145, 0.05927668867994213, 0.05796585537216519, 0.056867844777272115, 0.05598547932387787, 0.05531933126872606, 0.05486768988578505, 0.054626626201377614, 0.05459015078878748, 0.05475044946195999, 0.05509817400430454, 0.05562276185436111, 0.05631276013580974, 0.05715613449692464, 0.05814055010663778, 0.05925361897550886, 0.06048311315652968, 0.06181714669594494, 0.06324433049538893, 0.06475390400839388, 0.06633584658886751, 0.06798096994418704, 0.069680991952607, 0.07142859131202042, 0.07321744215066374, 0.07504222779567071, 0.07689863325428843, 0.07878331649906843, 0.08069385926449783, 0.08262869868682952, 0.08458704170755482, 0.08656876468866813, 0.08857430114036446, 0.0906045208287091, 0.0926606038002086, 0.0947439130183922, 0.09685586933867056, 0.09899783243945798, 0.1011709910715692, 0.1033762655873028 ], [ 0.08406334604854408, 0.08098613013420844, 0.07800394038877159, 0.07512981809148739, 0.07237694143791391, 0.06975849307098568, 0.06728749781176127, 0.06497662777883256, 0.06283797414874086, 0.06088278814186306, 0.05912119843436236, 0.05756191775890818, 0.05621195715589798, 0.05507637090024387, 0.05415805703709653, 0.053457636398251865, 0.05297342640684053, 0.05270151561551808, 0.05263593274900392, 0.05276889279493774, 0.05309109502476366, 0.05359204527943424, 0.054260377420240875, 0.055084155114178406, 0.056051142940414474, 0.057149043077229074, 0.058365699134446954, 0.05968927151023052, 0.061108389221474754, 0.06261228218741692, 0.06419089625500048, 0.06583499152764012, 0.06753622323341942, 0.06928720362841875, 0.07108154326626784, 0.07291387025668826, 0.07477982672459896, 0.07667604241975988, 0.07860008620123428, 0.0805503968593177, 0.08252619540083132, 0.08452738149589681, 0.08655441726037078, 0.08860820192360544, 0.09068994119935662, 0.09280101532560275, 0.09494284975199901, 0.09711679231759376, 0.09932400046867097, 0.10156534161986558 ], [ 0.08291264595047357, 0.07979251646767416, 0.0767672764988377, 0.07385011980308559, 0.07105438565785299, 0.06839342342229171, 0.065880426162666, 0.06352823044199882, 0.06134908159686281, 0.05935436740989553, 0.05755432804542761, 0.05595775606204634, 0.0545717063375908, 0.0534012404163131, 0.05244923143549312, 0.05171625300353112, 0.051200567707976895, 0.050898219284929776, 0.050803219263005225, 0.050907807264780607, 0.05120275694630447, 0.05167769825898625, 0.05232143096896534, 0.05312221226158051, 0.05406801019574836, 0.05514672242484123, 0.05634636455941576, 0.057655234501041874, 0.059062058574174715, 0.060556123308917645, 0.06212739428762037, 0.06376662132357983, 0.06546542780777372, 0.06721638144603533, 0.06901304370835841, 0.07084999591753856, 0.07272284079368956, 0.07462817926044797, 0.07656356328145934, 0.07852742636166522, 0.08051899408927164, 0.08253817770816395, 0.0845854542034606, 0.08666173676022243, 0.08876823971463091, 0.09090634224838785, 0.09307745506554428, 0.09528289412193315, 0.0975237651427875, 0.09980086216701307 ], [ 0.08183567800560627, 0.07867543395659525, 0.07561007694426519, 0.0726529614589709, 0.06981759273342003, 0.06711748647567717, 0.06456599615400825, 0.06217610493248136, 0.059960181834666657, 0.05792970567889227, 0.05609496576734115, 0.05446475475238149, 0.05304607547896349, 0.05184388827733898, 0.05086092627804435, 0.05009760235216576, 0.04955202191295516, 0.04922010240728013, 0.04909578582786054, 0.04917131866668685, 0.049437567470058674, 0.04988433882532605, 0.05050067928691552, 0.051275140829562256, 0.05219600773386091, 0.05325148877796271, 0.05442988291236989, 0.05571972725774579, 0.057109934264329656, 0.05858992155942153, 0.060149734621550086, 0.061780159789242325, 0.06347282360376687, 0.06522027408691586, 0.06701604002662469, 0.06885466536416344, 0.07073171704738539, 0.07264376601018858, 0.07458834212165287, 0.07656386495664659, 0.078569553061595, 0.08060531504015356, 0.08267162628610719, 0.08476939556108962, 0.08689982585736565, 0.08906427409326402, 0.09126411414645116, 0.0935006075226542, 0.09577478557599102, 0.09808734664577586 ], [ 0.08083135708004419, 0.0776337019057367, 0.07453107304494976, 0.07153699897267655, 0.0686651617238456, 0.06592924986238304, 0.06334277698941274, 0.06091886293101775, 0.05866997759360839, 0.056607651975407014, 0.054742166922058515, 0.05308223731807474, 0.05163471622311479, 0.05040434806726741, 0.04939360027053755, 0.048602596974272785, 0.04802916686834415, 0.04766900131093927, 0.04751590280507985, 0.047562091771196774, 0.04779853474715159, 0.048215260596947064, 0.04880164129101907, 0.049546626784402345, 0.0504389355687923, 0.0514672107342759, 0.05262015469972643, 0.05388665466096267, 0.05525590681351032, 0.056717542364572535, 0.05826175377328242, 0.059879416452523614, 0.06156219960955281, 0.06330265981571012, 0.0650943118604739, 0.06693167299522043, 0.06881027841369694, 0.07072666747937566, 0.07267834164896086, 0.07466369620702545, 0.07668192883168572, 0.07873292869423375, 0.08081715029932343, 0.08293547662643165, 0.0850890763503153, 0.08727925999378898, 0.08950733978610352, 0.09177449774834914, 0.09408166609457012, 0.09642942342811084 ], [ 0.07989838394383891, 0.07666588056758095, 0.0735286834280595, 0.07050051230627324, 0.06759524208749759, 0.06482674708097788, 0.06220870825721381, 0.0597543805824744, 0.05747632096171797, 0.05538608250814227, 0.05349388783491879, 0.051808302052910205, 0.05033593356810775, 0.04908119528681993, 0.04804615796221217, 0.0472305194687739, 0.04663169899801914, 0.04624504626122415, 0.046064137542419316, 0.04608111809335576, 0.04628704749850124, 0.04667221172631841, 0.04722637983516197, 0.04793899995041797, 0.04879934336026702, 0.04979661416974741, 0.050920043995291805, 0.0521589878033797, 0.05350303048123663, 0.05494210651392196, 0.0564666290951143, 0.05806762110116286, 0.05973683876791815, 0.061466879229742304, 0.06325126466330969, 0.06508449797895907, 0.06696208731104554, 0.06888053865500939, 0.07083731773155419, 0.07283078349832076, 0.07486009671991088, 0.0769251077172251, 0.07902622791305886, 0.08116429011956533, 0.08334040269545634, 0.08555580273683555, 0.08781171334116024, 0.09010920968239611, 0.09244909814717486, 0.09483181211223585 ], [ 0.07903533100636866, 0.07577036381302098, 0.07260111330466405, 0.06954151067904535, 0.06660564371701146, 0.06380759073406142, 0.06116121414768926, 0.05867991082566795, 0.056376320306608683, 0.05426199807711898, 0.05234706918798559, 0.050639886631766134, 0.04914672711657688, 0.04787156133336658, 0.046815933571772994, 0.04597897476155567, 0.04535755433396734, 0.04494655344748897, 0.044739221200139886, 0.04472756277481602, 0.044902707976150064, 0.045255220177089044, 0.04577532519709603, 0.04645306082275763, 0.047278364626042756, 0.048241126790945096, 0.04933123519415427, 0.05053863387974058, 0.05185340649645555, 0.053265886411596686, 0.05476678737336694, 0.056347343847749067, 0.05799944851919173, 0.05971577524869773, 0.06148987810455139, 0.06331626005065458, 0.06519040785172496, 0.06710879235288068, 0.0690688353577489, 0.07106884586268569, 0.07310792948508298, 0.07518587565695395, 0.0773030276360063, 0.07946014068029586, 0.0816582338720112, 0.08389844106464216, 0.08618186625300245, 0.088509448309741, 0.09088183948506316, 0.09329930133481618 ], [ 0.07824073468079214, 0.0749454807162427, 0.07174646547997049, 0.0686578529419242, 0.0656939662583467, 0.06286910991286894, 0.060197347462356075, 0.05769223193457848, 0.055366490543449644, 0.05323167254242009, 0.051297778509819585, 0.049572899950171896, 0.0480629073704929, 0.04677122949824463, 0.04569876250947966, 0.044843933994887626, 0.044202923022731176, 0.043770010016416755, 0.04353800594200501, 0.043498697128814094, 0.04364324427302177, 0.04396249094051966, 0.04444716254662578, 0.04508796335491051, 0.0458755992735209, 0.04680076397784281, 0.04785412480826369, 0.04902633570038502, 0.05030809130080413, 0.05169022346256979, 0.05316383132541794, 0.05472043039272637, 0.05635210427586551, 0.05805164411176727, 0.05981266381646366, 0.061629683186282515, 0.06349817459280048, 0.06541457218687313, 0.06737624497093686, 0.069381436847723, 0.0714291779315467, 0.07351917216382295, 0.07565166673472827, 0.07782730906549602, 0.08004699719491196, 0.08231172934885271, 0.08462245824123325, 0.08697995524088961, 0.0893846889313965, 0.09183672179700839 ], [ 0.07751319093545084, 0.07418960225451433, 0.07096285894980282, 0.06784737865315284, 0.06485774299345091, 0.06200850685491914, 0.059313958538405334, 0.0567878276062718, 0.054442942580938444, 0.05229084904449134, 0.05034140978534327, 0.04860242099179926, 0.047079289124692406, 0.045774817805414335, 0.04468914857398583, 0.04381988139840154, 0.043162372015706905, 0.04271016993783464, 0.04245553281460712, 0.042389938959027686, 0.042504525009566536, 0.04279039825372819, 0.04323880569779818, 0.04384117463293026, 0.044589063542247606, 0.04547407295949557, 0.04648776324065672, 0.0476216137336924, 0.04886704083556078, 0.050215475953571675, 0.05165849189571745, 0.053187959131368374, 0.054796211405639346, 0.05647620204918299, 0.05822163637619738, 0.0600270703761542, 0.06188797048164785, 0.063800733000462, 0.06576266466604995, 0.06777192775095238, 0.06982745447639332, 0.071928836232361, 0.07407619356081162, 0.0762700330616962, 0.07851109741573963, 0.0808002145951011, 0.08313815204344173, 0.08552548113291564, 0.08796245653724045, 0.09044891430543123 ], [ 0.07685145019325357, 0.07350124877917497, 0.07024855020130615, 0.06710804441306735, 0.06409459328085233, 0.06122302632932036, 0.05850788206439799, 0.05596309120381463, 0.05360160435822917, 0.0514349764392288, 0.049472933025888365, 0.04772295834691987, 0.046189956839578175, 0.04487604534131169, 0.04378052574600074, 0.042900065765971974, 0.04222908055768051, 0.04176026839036369, 0.04148522091663795, 0.041395013767794794, 0.04148069142742746, 0.04173358904540426, 0.04214547382092411, 0.04270852788086836, 0.043415223018007765, 0.04425814980954305, 0.04522985962512861, 0.04632276227833298, 0.04752910100750896, 0.04884100618878106, 0.050250613862454954, 0.0517502265083797, 0.05333249115518129, 0.054990572213700795, 0.056718301371011956, 0.05851029270192872, 0.060362016634022894, 0.06226983090076912, 0.06423096995019091, 0.0662434965395087, 0.06830622066421167, 0.07041859178738423, 0.07258057075574025, 0.07479248795106339, 0.07705489420405127, 0.07936841081499656, 0.08173358467591037, 0.08415075395449452, 0.08661992907277552, 0.08914069280162112 ], [ 0.07625450751321455, 0.07287919356623915, 0.06960205182691752, 0.06643805929514598, 0.06340237655260417, 0.06051012985428217, 0.05777613296269495, 0.055214544396000924, 0.05283846281934236, 0.05065947449522672, 0.048687181715938097, 0.0469287579227519, 0.04538858950753502, 0.0440680700066619, 0.04296560344410065, 0.04207684689544647, 0.04139518086133492, 0.04091234953749783, 0.040619175504760165, 0.04050623735818308, 0.040564410101757306, 0.0407852031641831, 0.04116087849486141, 0.04168437741001062, 0.04234911797782129, 0.04314873865456111, 0.04407685885627578, 0.04512690834306994, 0.04629205219772846, 0.04756521395313631, 0.04893918102397047, 0.05040676611232185, 0.051960995278556986, 0.05359529596512306, 0.05530366402749635, 0.057080795642171486, 0.058922176367830995, 0.060824124867146966, 0.06278379263789766, 0.06479912367309541, 0.0668687795445699, 0.0689920362766705, 0.07116865979184647, 0.07339876683436779, 0.07568267820455724, 0.07802077089588172, 0.08041333531883119, 0.08286044320403667, 0.0853618309940491, 0.08791680257026904 ], [ 0.07572168395216218, 0.0723225576331879, 0.06902224281981789, 0.06583601280749687, 0.06277934024560465, 0.05986766594373624, 0.0571161012323601, 0.05453905867226746, 0.05214981379686298, 0.04996001326185309, 0.0479791619793948, 0.04621414119542308, 0.04466882604361551, 0.04334387769962543, 0.04223677466810851, 0.0413421164078462, 0.04065218406088184, 0.04015768920080336, 0.0398485986633345, 0.0397149061593345, 0.03974723567761211, 0.039937202987964965, 0.04027751674923974, 0.04076185385737015, 0.04138458161269727, 0.0421404152957719, 0.043024094136170275, 0.04403013722763152, 0.045152712108295974, 0.04638562062929559, 0.04772238513451184, 0.049156405402123945, 0.050681152913292386, 0.052290371663995375, 0.05397826116012807, 0.055739624963487416, 0.057569975465811864, 0.05946559154835541, 0.06142353016785151, 0.06344159582836932, 0.06551827366550955, 0.0676526328260106, 0.0698442072565474, 0.07209286111755046, 0.074398645921589, 0.07676165620532281, 0.07918189008280349, 0.08165912038451802, 0.08419278125471931, 0.08678187407267468 ], [ 0.07525269517058993, 0.07183089113090319, 0.06850846497334498, 0.065300988773305, 0.06222425385859836, 0.05929402719987262, 0.05652573500575258, 0.05393406722723523, 0.05153250534671885, 0.04933279001694602, 0.04734436459194936, 0.045573852755304414, 0.04402464757508856, 0.042696697055604506, 0.04158655920464791, 0.04068776366779509, 0.03999146141658802, 0.03948728252954184, 0.03916427374197771, 0.03901176855345621, 0.03902005982256625, 0.03918079212245847, 0.039487053620211994, 0.03993320704047113, 0.0405145419811327, 0.041226849160506326, 0.04206601146158503, 0.04302768316759283, 0.044107096725564274, 0.04529900471583818, 0.04659773994611188, 0.04799736175450584, 0.04949185151946894, 0.051075322769587546, 0.05274221811442255, 0.05448747369009963, 0.05630663994491115, 0.058195954301301756, 0.06015236617923048, 0.06217351817268203, 0.06425768917574115, 0.06640370633572117, 0.06861083319010843, 0.07087864144765625, 0.07320687373259809, 0.07559530428248966, 0.0780436040858536, 0.08055121625912962, 0.0831172465906562, 0.08574037313758143 ], [ 0.07484770371696105, 0.0714042369918881, 0.06806060016716813, 0.06483265884843584, 0.06173652160084433, 0.05878828525666055, 0.056003701135172605, 0.053397754598632316, 0.050984159730681926, 0.04877478654837272, 0.04677905991007224, 0.045003394329440165, 0.04345075079533848, 0.04212041087540976, 0.04100805014367736, 0.040106152537261595, 0.03940474459737314, 0.038892359442419935, 0.0385570863341357, 0.03838754112412511, 0.038373612583718054, 0.03850689260562356, 0.038780767552716984, 0.039190214031838706, 0.03973138958677233, 0.04040112950383181, 0.04119645553844668, 0.04211417753056083, 0.043150634297699615, 0.04430158549834979, 0.04556223847300294, 0.04692737690599988, 0.0483915515874295, 0.04994929533026657, 0.051595330991294736, 0.05332475050935346, 0.05513315167907164, 0.05701672676407365, 0.058972302572257634, 0.060997335352192705, 0.06308986616537962, 0.06524844364722494, 0.06747202164193046, 0.06975983933581133, 0.0721112913726602, 0.07452579508646383, 0.07700266145344148, 0.07954097564714555, 0.08213949217899615, 0.08479654854030085 ], [ 0.074507351992926, 0.07104317313251882, 0.06767912398496537, 0.06443135009676465, 0.06131626683419879, 0.05835029533948694, 0.05554951339930026, 0.052929212216160586, 0.0505033600029554, 0.048283990250901646, 0.046280556457409805, 0.04449932304100632, 0.04294288697389849, 0.04160993556902574, 0.040495331809248844, 0.03959057406768736, 0.03888460760009753, 0.03836488855082506, 0.03801854157994967, 0.03783342977311493, 0.03779897741718825, 0.03790664430630701, 0.03815002567680533, 0.038524623463374326, 0.03902738589369158, 0.039656135482846536, 0.04040900079831263, 0.04128394185047801, 0.042278422685712615, 0.043389247738832355, 0.04461254831087638, 0.045943886109398195, 0.0473784325179221, 0.04891118302961061, 0.050537172827916976, 0.0522516686202564, 0.054050321093633114, 0.05592927031992468, 0.057885202514349296, 0.05991536075486724, 0.06201751491838384, 0.0641898975894184, 0.06643111341870946, 0.06874002962897643, 0.07111565525779032, 0.07355701638349588, 0.07606303403539605, 0.07863241075334758, 0.0812635308428483, 0.08395437829080836 ], [ 0.07423277365254374, 0.0707488303514929, 0.06736513205392919, 0.06409808209798008, 0.06096438268117887, 0.05798076350396149, 0.05516361985724879, 0.052528549615603014, 0.05008978893727803, 0.04785956451455218, 0.04584740615366724, 0.04405949419267426, 0.04249814404466888, 0.04116154306705245, 0.040043840572753925, 0.03913564372737211, 0.038424896304660484, 0.03789803342522789, 0.03754124017447969, 0.03734161743953178, 0.03728808193408377, 0.037371889871897754, 0.03758675456521302, 0.03792860470300225, 0.03839508500372781, 0.03898492618193145, 0.03969730745265606, 0.04053130927227759, 0.04148551691668378, 0.04255779700001797, 0.043745236921746145, 0.0450442157368205, 0.04645056480820686, 0.04795977597235199, 0.0495672206919081, 0.0512683525495744, 0.05305887488189572, 0.05493486374127991, 0.056892842973888406, 0.05892981290822266, 0.06104323721806372, 0.06323099434048338, 0.06549130076822784, 0.06782261389048265, 0.07022352202227124, 0.07269262895169298, 0.07522843979824721, 0.07782925423653132, 0.08049307221391158, 0.08321751620494224 ], [ 0.07402558209764475, 0.0705228841114695, 0.06712033669358775, 0.06383457043030182, 0.06068254473080602, 0.057681271391424205, 0.054847442898292194, 0.05219695337713594, 0.04974431066931941, 0.047501956915191754, 0.0454795426763577, 0.04368323291773164, 0.042115153876443066, 0.04077310500848045, 0.03965064604859546, 0.03873761839526377, 0.038021078738386074, 0.037486532327272774, 0.03711928257997484, 0.036905686761525974, 0.03683413214941451, 0.03689561317417035, 0.03708387535752724, 0.03739517247654114, 0.037827741400609925, 0.03838112629302399, 0.039055481339425616, 0.03985095624479232, 0.04076723170711756, 0.04180323301533261, 0.04295701657380727, 0.04422580091180949, 0.04560610165251956, 0.04709392752353702, 0.048684998947866376, 0.05037495894392889, 0.05215955536649886, 0.05403478216646438, 0.055996974419456606, 0.058042857116400864, 0.06016955127338535, 0.06237454313646953, 0.06465562349010207, 0.06701080462825773, 0.06943822263223062, 0.07193603235199007, 0.07450230198143437, 0.07713491339001699, 0.07983147345071914, 0.08258924052048222 ], [ 0.07388783576438125, 0.0703675195966345, 0.06694703286435402, 0.06364319499760361, 0.060473183654150345, 0.057454255505545206, 0.054603368026739, 0.051936688707859835, 0.04946898871681503, 0.04721293750186725, 0.04517834380944378, 0.04337142407986613, 0.04179421263505169, 0.040444245662567935, 0.03931463769847561, 0.03839461672094635, 0.037670498210431426, 0.037126982113565576, 0.036748580706576196, 0.03652095559049708, 0.03643196699394763, 0.03647230721133719, 0.03663567889274618, 0.036918562841819436, 0.03731968053983625, 0.037839285651586056, 0.038478417607103285, 0.03923822660656143, 0.04011944328029597, 0.0411220275361788, 0.04224499729733272, 0.04348641322230506, 0.04484348144650848, 0.04631273189387862, 0.0478902323972439, 0.04957180590029367, 0.051353226829665886, 0.053230381434921266, 0.055199384380771516, 0.05725664968875857, 0.059398918264325064, 0.06162324695721881, 0.06392696571239691, 0.06630761018018146, 0.06876283740375178, 0.07129033204902663, 0.07388771018369218, 0.07655242690621969, 0.0792816932129547, 0.08207240641298284 ], [ 0.07382198100943702, 0.07028537075430909, 0.06684803395480615, 0.0635269334851651, 0.06033941765794115, 0.057302940468555705, 0.054434680251455786, 0.05175104183598277, 0.04926703774910012, 0.0469955636990429, 0.04494661343284176, 0.04312651525019058, 0.04153730831672276, 0.040176397002211296, 0.03903660965958389, 0.038106735060587156, 0.037372520830764776, 0.036818016956725604, 0.036427066614280745, 0.036184713601256496, 0.036078319882941294, 0.03609825680959795, 0.036238124914813576, 0.03649454364139691, 0.03686661493553175, 0.03735519531779286, 0.03796211144903697, 0.03868943219176694, 0.039538875781264415, 0.040511393265116, 0.041606935786123136, 0.042824387704974404, 0.04416163154842939, 0.045615703881766834, 0.047183001669999336, 0.048859504117293694, 0.05064098296098912, 0.052523182778021246, 0.05450196070983169, 0.05657338143230435, 0.05873376799667015, 0.06097971246696835, 0.06330805234925972, 0.06571581994309164, 0.06820017220210335, 0.07075830865687358, 0.07338738455662823, 0.076084425708235, 0.07884625058957825, 0.08166940424136715 ], [ 0.07383077454273804, 0.0702794353886535, 0.0668265795641831, 0.06348926214179075, 0.06028494695231402, 0.057231228334474964, 0.054345449972610545, 0.051644204837809536, 0.0491427103837326, 0.046854072716369745, 0.04478848366432043, 0.04295243294817019, 0.04134805541266207, 0.03997275577426427, 0.03881924360828309, 0.037876058766533556, 0.037128577039866335, 0.036560381113883704, 0.03615479672382147, 0.035896357352784077, 0.035771983205038875, 0.03577173024507172, 0.03588905764178587, 0.03612064999081143, 0.036465894832519594, 0.03692614820579155, 0.037503923239624544, 0.038202117076367954, 0.039023359535052975, 0.039969531516520475, 0.04104146846650154, 0.04223883801887379, 0.043560162981732584, 0.04500295127114242, 0.04656389222323801, 0.04823908211966897, 0.05002424861258123, 0.05191495202737433, 0.05390674969600443, 0.05599531655307395, 0.05817652077574388, 0.060446457230049634, 0.06280144409298788, 0.06523798953391778, 0.06775273603456132, 0.07034239002916101, 0.0730036442159919, 0.0757330992404276, 0.0785271905559179, 0.08138212519701285 ], [ 0.07391718845272403, 0.07035296970201309, 0.06688621903205287, 0.06353402799080303, 0.06031391466344277, 0.057243548677657005, 0.054340373311315325, 0.05162110799619263, 0.04910112418215611, 0.04679370664153897, 0.04470924229135644, 0.04285441724594266, 0.04123154181101145, 0.03983814775107956, 0.03866699498321932, 0.03770657429728858, 0.03694210265951677, 0.0363569010733257, 0.035933956350165164, 0.0356574276858963, 0.03551387826966929, 0.035493080612516575, 0.03558833656413467, 0.0357963416085455, 0.03611668826906585, 0.03655113726319168, 0.03710278956890547, 0.03777527580598352, 0.038572050694545126, 0.039495847695584396, 0.040548317672919214, 0.04172984886065828, 0.04303954547571166, 0.04447532982916996, 0.04603412761554737, 0.04771209710017453, 0.04950486840156744, 0.051407766958451895, 0.053416003771875734, 0.05552482281845173, 0.057729602421045356, 0.06002591211140447, 0.06240952972724854, 0.06487642541741236, 0.06742272018170674, 0.07004462681237018, 0.07273838083507876, 0.07550016841402099, 0.07832605729010546, 0.08121193574213896 ], [ 0.07408430185806109, 0.07050936688634359, 0.06703067593445353, 0.06366529834369161, 0.060430740739910775, 0.0573446766753982, 0.05442457473422447, 0.0516872081022592, 0.04914803770704168, 0.046820479394785036, 0.04471509484424732, 0.04283878413291871, 0.04119409728760391, 0.03977880842393409, 0.03858589172615819, 0.03760399119482322, 0.03681838835302767, 0.03621236568831685, 0.03576877267985719, 0.03547155680423985, 0.035307036948309674, 0.03526476172339841, 0.03533788549768268, 0.03552308302986664, 0.03582008946956931, 0.036230988037317904, 0.03675937502654365, 0.037409518689946755, 0.038185603893430675, 0.03909112508991842, 0.04012846067747754, 0.04129863500108211, 0.04260125222249045, 0.044034570619567726, 0.045595677407820785, 0.04728072260901428, 0.04908517444990531, 0.05100406623202855, 0.05303221348720235, 0.05516438885149187, 0.05739544941017059, 0.05972041685001083, 0.06213451460474239, 0.06463316854253316, 0.06721197895121842, 0.0698666719418892, 0.07259303816635376, 0.07538686611169852, 0.07824387632433544, 0.08115966181950122 ], [ 0.07433518402100948, 0.07075202536075259, 0.06726369999162302, 0.06388719499180757, 0.06063993722231653, 0.05753952858257605, 0.054603382388254865, 0.05184824406157196, 0.04928958780608768, 0.046940898298780995, 0.04481287437968572, 0.042912628722632636, 0.04124299639216415, 0.03980209243886168, 0.038583257190855376, 0.037575484873457854, 0.03676434773999348, 0.0361333238699503, 0.03566534508734016, 0.03534433318929032, 0.03515650226846521, 0.0350912646771723, 0.03514166464710981, 0.03530434978747944, 0.035579156727170526, 0.03596842469541078, 0.03647616165604908, 0.037107179017107784, 0.03786629090860299, 0.038757648457330936, 0.039784251949915576, 0.040947656672311906, 0.04224786390115778, 0.043683369442778876, 0.04525133014240674, 0.04694780448205345, 0.0487680257971831, 0.05070667372060561, 0.052758118806716145, 0.054916624820806795, 0.05717650150461631, 0.0595322070899016, 0.06197840433141647, 0.06450997661058136, 0.06712201209476079, 0.06980976439593535, 0.07256859796299912, 0.0753939257885297, 0.07828114606801892, 0.08122558332609922 ], [ 0.07467277430124472, 0.07108421294071043, 0.0675889137032735, 0.0642037215440518, 0.0609459146035393, 0.05783294566174649, 0.05488208856886319, 0.0521099735339231, 0.04953200300118933, 0.04716165601845919, 0.045009715215656415, 0.04308348555434418, 0.04138611149081522, 0.03991612658976976, 0.03866737075812996, 0.03762937232415484, 0.03678821485190019, 0.03612780925416334, 0.03563140113485899, 0.035283091793925164, 0.03506915457722187, 0.03497898083461642, 0.035005570330294576, 0.03514556384784825, 0.03539888139059479, 0.03576806916860596, 0.036257473643533884, 0.03687235764649018, 0.03761805884085447, 0.038499269299414655, 0.0395194893659819, 0.04068068136922242, 0.04198312190610222, 0.04342542870220193, 0.045004722468223936, 0.04671687714016245, 0.04855681285874376, 0.05051879289120425, 0.05259669565966533, 0.05478424359111935, 0.0570751798900377, 0.059463391675198284, 0.06194298304153673, 0.06450830475677743, 0.06715394891147868, 0.06987471734834398, 0.07266557246676617, 0.0755215782980325, 0.07843783875647992, 0.08140943881219732 ], [ 0.0750997645553438, 0.0715089335324814, 0.06800966144362545, 0.06461859293550258, 0.061352789744548795, 0.05822947859520969, 0.0552657089808976, 0.052477905887082066, 0.04988130975546973, 0.047489310858559015, 0.04531270938225488, 0.04335896494683884, 0.041631534443684774, 0.040129423704815335, 0.03884708180664423, 0.03777473436710557, 0.036899182473316604, 0.03620500145933953, 0.03567598624648425, 0.0352966362062779, 0.03505346891012187, 0.034935995860614015, 0.03493726597719541, 0.035053960641099155, 0.03528608873080068, 0.035636372370609196, 0.0361094342125841, 0.03671089997457213, 0.037446521041373325, 0.03832140464036283, 0.03933941526506846, 0.04050278259612507, 0.04181192148236003, 0.043265443042891066, 0.04486031676060686, 0.0465921338344408, 0.0484554218162302, 0.05044396740843315, 0.052551115052982614, 0.05477002060469794, 0.05709384984151829, 0.05951591974101639, 0.062029786117860676, 0.0646292846552859, 0.06730853407583987, 0.07006191069624082, 0.07288400332133428, 0.07576955666015117, 0.07871341039600435, 0.0817104398424502 ], [ 0.07561848945820418, 0.07202880282109353, 0.06852886863937724, 0.06513507605992125, 0.06186420580508081, 0.05873318450828516, 0.05575875471829713, 0.052957047245416944, 0.05034304920264047, 0.047929974605321994, 0.0457285661925034, 0.043746386452793835, 0.041987187883358215, 0.04045047751331326, 0.039131395505458494, 0.03802100073838762, 0.0371069951844117, 0.03637483527490432, 0.03580909613499746, 0.035394899916372013, 0.035119209041722096, 0.034971818830585824, 0.034945946941627136, 0.03503838867039779, 0.035249269971267934, 0.03558147495638446, 0.0360398503649315, 0.03663029924376211, 0.03735887338993174, 0.038230961011687555, 0.03925064368735426, 0.0404202670649216, 0.04174023693831548, 0.04320902197322275, 0.04482332171830276, 0.046578346671547324, 0.048468156070322184, 0.050486006222076926, 0.052624673919470503, 0.05487673231725953, 0.057234768140092665, 0.05969153800888694, 0.062240067770522454, 0.0648737023372204, 0.06758611527326999, 0.07037128779866142, 0.07322346649222773, 0.07613710811314596, 0.07910681884028804, 0.08212729398813316 ], [ 0.0762308297304297, 0.0726459388460029, 0.0691489179945181, 0.06575584973663892, 0.062483173836548535, 0.05934744788197061, 0.05636503005219692, 0.05355167267626534, 0.05092202140211318, 0.04848902694383075, 0.04626329571377116, 0.04425243152300713, 0.04246044890402317, 0.04088736121072034, 0.03952905219185956, 0.03837751801678404, 0.03742151473564171, 0.036647572677536294, 0.036041264043651995, 0.035588556000461964, 0.035277064962388194, 0.03509705075311036, 0.03504204122059711, 0.035109041635740454, 0.03529834336228373, 0.035612993614304186, 0.03605801984710351, 0.03663951935382273, 0.03736372836662293, 0.03823617592194691, 0.03926100645877999, 0.04044052388313044, 0.04177497369933883, 0.04326254565423021, 0.04489955357355042, 0.0466807353891985, 0.04859961483257066, 0.05064887403151955, 0.05282069909835216, 0.05510707479911179, 0.05750001681769784, 0.05999173964198443, 0.0625747644818468, 0.06524197531221919, 0.06798663279728666, 0.07080235616047754, 0.07368308255081073, 0.0766230124886267, 0.07961654878459423, 0.08265823504988984 ], [ 0.07693813242642222, 0.07336187236623541, 0.06987154854756986, 0.06648289084031914, 0.06321194409031342, 0.06007483483504258, 0.057087467151922006, 0.054265138502369116, 0.05162207216903198, 0.04917087369805206, 0.046921935609594706, 0.04488283692382476, 0.04305780840234643, 0.04144735403409997, 0.04004812487124628, 0.03885312417792261, 0.03785227982364734, 0.03703335720094641, 0.03638311919663879, 0.035888588162363934, 0.03553824318112734, 0.03532299846707329, 0.03523684883265964, 0.03527712295925728, 0.035444341764546076, 0.035741728474271664, 0.03617445466490341, 0.03674873091006893, 0.03747086073645845, 0.03834637132935283, 0.03937931383420854, 0.040571792961231895, 0.041923746085088906, 0.04343295433733005, 0.04509523977773349, 0.04690478779769286, 0.04885453244114053, 0.05093655099423045, 0.053142428251868074, 0.05546356596405736, 0.057891426154947745, 0.06041770692929357, 0.06303445588477263, 0.06573412987045958, 0.06850961134608811, 0.07135419173830175, 0.07426153152988459, 0.07722560574379844, 0.08024064223089306, 0.08330105886827625 ], [ 0.07774115133436171, 0.07417748058178161, 0.0706977817422254, 0.06731739150940225, 0.06405191284033972, 0.060916987641241926, 0.05792800589463875, 0.055099744451994094, 0.05244593404824873, 0.049978762634497076, 0.04770833754576115, 0.045642147730158615, 0.043784587497275436, 0.042136619566678066, 0.04069566019288288, 0.03945575578392572, 0.03840808573384012, 0.037541774339088695, 0.03684493725442192, 0.03630584023969418, 0.035914022844142995, 0.03566124273950227, 0.035542124814780154, 0.035554444378693255, 0.03569902588900342, 0.03597928914959351, 0.036400517957293335, 0.03696895748625471, 0.03769086273600913, 0.038571618471789505, 0.03961503083916497, 0.04082285563980768, 0.04219458551687176, 0.0437274775261318, 0.04541677215506888, 0.04725603929981549, 0.04923758575741367, 0.051352868574924465, 0.0535928738485763, 0.0559484365932445, 0.058410491039828094, 0.06097025083793545, 0.06361932510035125, 0.06634977967562972, 0.06915415433802545, 0.07202544653105512, 0.07495707148933531, 0.07794280738910568, 0.08097673287265873, 0.08405316297690517 ], [ 0.07864000925468694, 0.07509294621922225, 0.07162787680842166, 0.06825971008591124, 0.06500356782398885, 0.06187456317227633, 0.058887523234022826, 0.05605665116165375, 0.05339512833996472, 0.050914665558815804, 0.048625024192095107, 0.04653354369340648, 0.04464472793930757, 0.042959955878173715, 0.041477385904313116, 0.04019211295676582, 0.039096609980886904, 0.03818144368377315, 0.03743620661885966, 0.036850564978693066, 0.03641529467844854, 0.03612317354804505, 0.035969615073532774, 0.03595296478550913, 0.036074427268103, 0.03633764245724961, 0.03674797728004792, 0.0373116360363712, 0.03803471421059612, 0.038922321350213264, 0.039977878480438135, 0.04120265833355269, 0.04259559112275522, 0.044153315422874685, 0.045870422069524075, 0.04773982346004957, 0.04975318058693558, 0.05190133113375203, 0.05417467828865922, 0.05656351665379272, 0.05905828565958312, 0.06164975099777748, 0.06432912085337218, 0.06708810690661841, 0.06991894112894366, 0.07281435914011901, 0.07576755993901499, 0.07877215056046567, 0.08182208286893573, 0.08491158838578915 ], [ 0.07963418257169222, 0.07610774235097904, 0.07266131577116622, 0.06930935605760302, 0.06606647255460013, 0.06294721557208627, 0.059965812614699486, 0.05713585391500573, 0.054469929782995634, 0.051979229485278444, 0.049673121346395024, 0.047558745906890826, 0.04564066646322645, 0.04392063096750093, 0.04239750192678334, 0.04106740266397021, 0.03992410707595094, 0.0389596673299025, 0.03816523513835962, 0.03753199534953405, 0.03705210381331305, 0.036719510958916485, 0.03653056098322822, 0.03648428325955984, 0.036582333829830053, 0.036828594550670384, 0.03722848774104302, 0.037788106215004655, 0.03851328407438894, 0.039408736808191396, 0.040477378995077105, 0.041719889020383295, 0.04313454253916669, 0.04471729172973525, 0.04646203532936481, 0.048361009530210046, 0.05040523091770739, 0.05258493480793945, 0.054889969510557586, 0.05731012417231122, 0.059835381916202336, 0.062456099887279605, 0.06516312377296893, 0.0679478472430742, 0.07080222754387668, 0.07371876803021811, 0.07669047733973831, 0.0797108135885047, 0.08277362060639767, 0.08587306193137559 ], [ 0.0807225072329098, 0.07722064175200109, 0.07379681652260492, 0.07046500701755842, 0.06723928706432068, 0.0641336202595788, 0.06116161011803227, 0.05833620902287076, 0.05566939026464568, 0.05317179359936484, 0.05085236279763817, 0.04871800297888804, 0.04677329468116895, 0.045020308278662755, 0.043458563628568606, 0.04208517301335873, 0.040895189112990664, 0.039882154658089836, 0.0390388198209789, 0.03835796246836026, 0.03783322109747167, 0.037459836193478986, 0.037235197133116044, 0.03715911070586508, 0.0372337428944523, 0.03746323314676113, 0.03785303184808259, 0.03840905671649344, 0.03913679222750674, 0.040040460864569645, 0.041122374614006994, 0.042382535076043594, 0.043818501664624955, 0.04542550217299962, 0.04719672835969693, 0.04912374539036974, 0.05119694633392137, 0.05340599608268181, 0.055740226770199706, 0.05818896397732279, 0.06074177685721729, 0.0633886548404562, 0.06612011915115204, 0.0689272799081282, 0.07180185012191516, 0.07473612727840269, 0.07772295202251639, 0.08075565208808347, 0.08382797825787901, 0.08693403786542546 ], [ 0.08190320411239388, 0.07842974824330828, 0.07503237078482972, 0.0717245537493062, 0.06851982037600052, 0.06543153368049205, 0.06247266085311025, 0.05965550548892158, 0.05699141346620187, 0.05449046345194522, 0.052161159327095065, 0.05001014868943299, 0.048041997872629943, 0.04625905797282881, 0.04466145629940263, 0.04324724178121317, 0.04201270027036679, 0.04095283674108612, 0.0400619978258992, 0.03933458296577284, 0.038765769692148906, 0.03835216296956202, 0.038092275089684664, 0.03798675534684998, 0.03803831891906724, 0.038251368904339014, 0.03863135639691756, 0.03918396959224322, 0.03991427270611075, 0.040825920959505116, 0.04192055743696671, 0.04319745713553944, 0.04465343447269126, 0.04628298587637269, 0.048078608646761486, 0.050031224883858666, 0.052130642841918304, 0.05436600195020429, 0.056726165618214176, 0.059200042937356444, 0.06177683379961963, 0.06444620100673205, 0.06719837809084983, 0.07002422378686304, 0.07291523441142791, 0.07586352464991539, 0.07886178600840354, 0.08190323080209266, 0.08498152820415529, 0.08809073764294795 ], [ 0.08317392084238984, 0.07973254643540993, 0.0763653025875747, 0.07308516814997043, 0.06990510838275175, 0.06683788134143988, 0.06389581689331221, 0.061090571985337815, 0.05843286921877393, 0.05593223003974419, 0.053596718653909706, 0.05143271754980891, 0.04944475939215826, 0.04763544191798482, 0.04600545119304985, 0.04455371325255079, 0.04327768431570741, 0.04217377557639789, 0.04123789079448035, 0.04046603500767159, 0.03985493311760936, 0.03940258171324976, 0.03910865136529022, 0.03897466486096282, 0.039003902269112094, 0.039201024517594496, 0.039571455966447636, 0.04012061178704288, 0.040853085665327256, 0.0417719188633727, 0.04287805131254342, 0.04417001530138695, 0.04564388424258167, 0.04729344591841052, 0.04911054098243311, 0.051085496689891395, 0.05320759041201781, 0.05546549171541651, 0.057847649474032176, 0.06034260697230125, 0.06293924077232102, 0.06562692762940316, 0.06839564846701107, 0.07123604035171134, 0.07413940754673384, 0.07709770187640726, 0.08010348135538464, 0.08314985465495386, 0.08623041765973699, 0.08933918717544347 ], [ 0.08453178660528952, 0.08112596562617745, 0.07779234215828831, 0.07454338790466267, 0.07139150993341159, 0.06834886568152744, 0.06542715695443321, 0.06263740788138465, 0.05998973480639956, 0.057493119516060384, 0.05515520069491037, 0.05298210153717278, 0.050978313370102404, 0.049146655261630985, 0.04748832730724505, 0.046003070266118315, 0.04468943635218907, 0.04354516536198289, 0.042567647117998424, 0.041754435885193314, 0.04110376631242253, 0.04061500650805727, 0.04028897683945454, 0.04012806840433691, 0.04013611654758233, 0.04031802149481519, 0.04067915355036921, 0.04122462320106523, 0.04195852471201333, 0.04288326672536998, 0.04399908329934508, 0.04530377992995192, 0.04679272304237445, 0.048459040784525995, 0.0502939765964865, 0.05228732783017994, 0.05442790701546463, 0.05670397756054919, 0.059103632827788695, 0.06161510328613176, 0.06422698854980413, 0.06692841906106488, 0.06970915651035688, 0.07255964377814217, 0.07547101519556162, 0.07843507702580935, 0.08144426678695646, 0.08449159867987421, 0.08757060110538774, 0.09067525111020278 ], [ 0.0859734760998454, 0.08260645334124112, 0.0793097098800879, 0.07609521162194961, 0.07297481377139242, 0.06996008524822252, 0.0670621179831101, 0.064291327085253, 0.061657250472545125, 0.05916835922029132, 0.056831892257303285, 0.0546537306598598, 0.052638327182022146, 0.05078870542227692, 0.04910653996534351, 0.04759232398729999, 0.04624562433387784, 0.04506541606219457, 0.044050478754564026, 0.04319982544736304, 0.04251312233985069, 0.041991045737014704, 0.04163551612361673, 0.04144975312544739, 0.04143811336277031, 0.04160570572054992, 0.04195781960277665, 0.042499240901050936, 0.04323355607489499, 0.044162548574069004, 0.04528577227747167, 0.04660034969331551, 0.048100999519905326, 0.04978026060617875, 0.05162885552406705, 0.05363612927017119, 0.05579050435926912, 0.05807990736941803, 0.0604921383308489, 0.06301516920903179, 0.06563736907130951, 0.0683476609206817, 0.07113561917266997, 0.0739915182614565, 0.07690634280342021, 0.07987176884378992, 0.08288012445756728, 0.08592433666091573, 0.08899787035822146, 0.09209466395625357 ], [ 0.08749527891306892, 0.08417005409790189, 0.08091320516609275, 0.07773619846151114, 0.07465034945245916, 0.07166665730598783, 0.06879562969155834, 0.06604710454169019, 0.06343007767478503, 0.060952547171007, 0.058621386826890096, 0.0564422615048268, 0.05441959640385765, 0.05255661003546203, 0.05085541706033555, 0.049317202411574675, 0.04794246262995166, 0.046731304196076136, 0.04568378162436633, 0.04480024977602642, 0.044081695360966566, 0.04353000349379577, 0.043148109954499525, 0.04293999320099266, 0.04291047599523418, 0.04306483497445797, 0.043408252695786825, 0.043945181253084005, 0.04467870888349267, 0.04561002340116895, 0.04673804748261295, 0.048059286459338324, 0.04956788968588093, 0.051255892515253455, 0.05311358471697887, 0.055129944808248746, 0.057293085627580405, 0.05959066957734098, 0.062010267252542814, 0.06453964701476789, 0.06716699361382945, 0.06988106083000073, 0.07267126681337911, 0.07552774218568081, 0.0784413408915359, 0.08140362291526428, 0.08440681677729946, 0.08744376846681648, 0.09050788229206788, 0.09359305808854247 ], [ 0.08909317079686918, 0.08581248936200894, 0.08259829563869295, 0.07946156700996208, 0.07641309631223098, 0.07346333720749643, 0.07062224456403103, 0.06789911703103371, 0.06530245076030343, 0.06283981461059472, 0.06051775782833149, 0.058341760806033476, 0.05631623785822224, 0.054444598007820595, 0.052729365781314465, 0.05117235940058275, 0.049774918972550576, 0.04853817249502599, 0.04746332247329503, 0.046551930173377574, 0.04580616788574015, 0.04522900312831793, 0.04482427530219356, 0.04459662892212565, 0.044551281522023416, 0.04469362901788539, 0.04502872250794683, 0.045560680048323116, 0.046292115511006836, 0.04722366750341352, 0.048353693455646087, 0.04967816257552385, 0.05119074572610919, 0.05288306996458719, 0.05474508687582401, 0.05676549858964996, 0.058932191076608305, 0.06123263647980821, 0.06365424033993496, 0.06618462232994404, 0.06881182886529723, 0.07152448234092586, 0.07431187521479368, 0.07716401847909247, 0.0800716540058952, 0.083026239448466, 0.0860199132523803, 0.0890454461439219, 0.09209618435015712, 0.09516598881744177 ], [ 0.09076288380303921, 0.08752923526707082, 0.08436020277771528, 0.08126628914517112, 0.07825778578225409, 0.0753446293633424, 0.07253625767766357, 0.06984147207157074, 0.06726831525086589, 0.06482397406963152, 0.06251471695814786, 0.060345874578877544, 0.058321870020389126, 0.05644630143720752, 0.05472207585704978, 0.05315158841845451, 0.051736937067646316, 0.05048015896231559, 0.049383471306197614, 0.04844949558617282, 0.0476814399588017, 0.047083210578451926, 0.04665942116318542, 0.046415274266061825, 0.04635630029058361, 0.04648796151466008, 0.046815154720162205, 0.047341670541576286, 0.04806968240415747, 0.048999337278007565, 0.05012850369719334, 0.0514527042512111, 0.05296522818640989, 0.05465739315250364, 0.05651890897446528, 0.05853829199683179, 0.060703283891757456, 0.06300123989808083, 0.06541946427922665, 0.06794548244199962, 0.07056724812977233, 0.07327329004374768, 0.07605280552674037, 0.07889571024096662, 0.08179265277850087, 0.08473500242989593, 0.08771481730359432, 0.09072479888405047, 0.09375823807120791, 0.09680895681127547 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "Arm 0_0
l2norm: 1.5706 (SEM: 0)
x1: 0.889652
x2: 0.428703
x3: 0.0620403
x4: 0.477204
x5: 0.860003
x6: 0.721345", "Arm 10_0
l2norm: 1.251 (SEM: 0)
x1: 0.10483
x2: 0.210858
x3: 0.868591
x4: 0.831949
x5: 0.233748
x6: 0.0911825", "Arm 11_0
l2norm: 1.6426 (SEM: 0)
x1: 0.987825
x2: 0.589285
x3: 0.458667
x4: 0.608483
x5: 0.609408
x6: 0.65044", "Arm 12_0
l2norm: 1.12033 (SEM: 0)
x1: 0.385464
x2: 0.455468
x3: 0.459117
x4: 0.250578
x5: 0.778737
x6: 0.138175", "Arm 13_0
l2norm: 1.21955 (SEM: 0)
x1: 0.401178
x2: 0.514379
x3: 0.556813
x4: 0.284481
x5: 0.814183
x6: 0.0889996", "Arm 14_0
l2norm: 1.23903 (SEM: 0)
x1: 0.335496
x2: 0.585843
x3: 0.690025
x4: 0.327102
x5: 0.704439
x6: 0.00724161", "Arm 15_0
l2norm: 1.38286 (SEM: 0)
x1: 0.265306
x2: 0.662688
x3: 0.790957
x4: 0.369588
x5: 0.800351
x6: 3.42291e-18", "Arm 16_0
l2norm: 1.28577 (SEM: 0)
x1: 0.386881
x2: 0.609455
x3: 0.796518
x4: 0.335159
x5: 0.620741
x6: 0", "Arm 17_0
l2norm: 1.23666 (SEM: 0)
x1: 0.365473
x2: 0.584339
x3: 0.750171
x4: 0.323595
x5: 0.621966
x6: 0", "Arm 18_0
l2norm: 1.22055 (SEM: 0)
x1: 0.378463
x2: 0.651943
x3: 0.693635
x4: 0.317981
x5: 0.582421
x6: 0.00419118", "Arm 19_0
l2norm: 1.24148 (SEM: 0)
x1: 0.395947
x2: 0.675556
x3: 0.698173
x4: 0.321622
x5: 0.580696
x6: 0.00601455", "Arm 1_0
l2norm: 1.82145 (SEM: 0)
x1: 0.642945
x2: 0.955892
x3: 0.121558
x4: 0.813211
x5: 0.637652
x6: 0.952821", "Arm 20_0
l2norm: 1.23431 (SEM: 0)
x1: 0.410966
x2: 0.719219
x3: 0.647227
x4: 0.316184
x5: 0.564306
x6: 0.00619903", "Arm 21_0
l2norm: 1.24263 (SEM: 0)
x1: 0.433214
x2: 0.762062
x3: 0.609672
x4: 0.313902
x5: 0.552675
x6: 0.00639606", "Arm 22_0
l2norm: 1.24497 (SEM: 0)
x1: 0.443549
x2: 0.792513
x3: 0.578673
x4: 0.313974
x5: 0.540079
x6: 0.00398552", "Arm 23_0
l2norm: 1.22951 (SEM: 0)
x1: 0.424673
x2: 0.843107
x3: 0.51404
x4: 0.34521
x5: 0.486941
x6: 3.32876e-12", "Arm 24_0
l2norm: 1.23405 (SEM: 0)
x1: 0.41128
x2: 0.869695
x3: 0.49797
x4: 0.381492
x5: 0.451377
x6: 0.00979608", "Arm 25_0
l2norm: 1.2346 (SEM: 0)
x1: 0.397336
x2: 0.886032
x3: 0.480676
x4: 0.422592
x5: 0.413807
x6: 0.0212643", "Arm 26_0
l2norm: 1.22851 (SEM: 0)
x1: 0.371223
x2: 0.903814
x3: 0.436524
x4: 0.488533
x5: 0.353269
x6: 0.022968", "Arm 27_0
l2norm: 1.24028 (SEM: 0)
x1: 0.356998
x2: 0.929707
x3: 0.410984
x4: 0.526385
x5: 0.316892
x6: 0.00940525", "Arm 28_0
l2norm: 1.21452 (SEM: 0)
x1: 0.3424
x2: 0.909796
x3: 0.400853
x4: 0.517529
x5: 0.310354
x6: 0.0725171", "Arm 2_0
l2norm: 1.50335 (SEM: 0)
x1: 0.505535
x2: 0.656055
x3: 0.81197
x4: 0.379333
x5: 0.877803
x6: 0.0189884", "Arm 3_0
l2norm: 1.70682 (SEM: 0)
x1: 0.757186
x2: 0.781214
x3: 0.882771
x4: 0.598411
x5: 0.517964
x6: 0.569161", "Arm 4_0
l2norm: 1.39268 (SEM: 0)
x1: 0.693038
x2: 0.414121
x3: 0.134982
x4: 0.467462
x5: 0.974968
x6: 0.316927", "Arm 5_0
l2norm: 1.46143 (SEM: 0)
x1: 0.95205
x2: 0.491435
x3: 0.186161
x4: 0.826572
x5: 0.391467
x6: 0.341686", "Arm 6_0
l2norm: 0.969486 (SEM: 0)
x1: 0.372392
x2: 0.231501
x3: 0.17215
x4: 0.167916
x5: 0.726338
x6: 0.402787", "Arm 7_0
l2norm: 1.8273 (SEM: 0)
x1: 0.916148
x2: 0.26941
x3: 0.896762
x4: 0.96937
x5: 0.538139
x6: 0.627427", "Arm 8_0
l2norm: 1.51104 (SEM: 0)
x1: 0.291749
x2: 0.22287
x3: 0.911979
x4: 0.233576
x5: 0.981372
x6: 0.546906", "Arm 9_0
l2norm: 1.56294 (SEM: 0)
x1: 0.54797
x2: 0.432769
x3: 0.755362
x4: 0.829773
x5: 0.772336
x6: 0.315621" ], "type": "scatter", "x": [ 0.8896524310112, 0.10482953954488039, 0.9878246989101171, 0.38546449440903524, 0.40117805349666225, 0.3354962016605869, 0.26530616565735116, 0.38688147506327175, 0.36547301726471426, 0.37846334018774036, 0.3959473404707403, 0.6429451778531075, 0.41096568373163905, 0.4332139356434659, 0.4435493305774755, 0.424672647124038, 0.41127975389430343, 0.3973356343409779, 0.3712233340227339, 0.3569982097373157, 0.34239969319932223, 0.5055354433134198, 0.7571856500580907, 0.6930381068959832, 0.9520503673702478, 0.37239226419478655, 0.9161479901522398, 0.29174890276044607, 0.5479696039110422 ], "xaxis": "x", "y": [ 0.4287032186985016, 0.21085828077048063, 0.5892851976677775, 0.45546817228355596, 0.5143787794757867, 0.5858426249624872, 0.6626882991305368, 0.6094551087539309, 0.5843389578642224, 0.6519428599673566, 0.6755564350633103, 0.9558922983705997, 0.7192190934586816, 0.7620619950489326, 0.7925128695124121, 0.8431066340576738, 0.8696951243178704, 0.8860315183591488, 0.903814152470661, 0.9297067126208302, 0.9097956082238563, 0.656055317260325, 0.7812144905328751, 0.41412073373794556, 0.49143460113555193, 0.23150083795189857, 0.2694101454690099, 0.222869542427361, 0.4327690191566944 ], "yaxis": "y" }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "showlegend": false, "text": [ "Arm 0_0
l2norm: 1.5706 (SEM: 0)
x1: 0.889652
x2: 0.428703
x3: 0.0620403
x4: 0.477204
x5: 0.860003
x6: 0.721345", "Arm 10_0
l2norm: 1.251 (SEM: 0)
x1: 0.10483
x2: 0.210858
x3: 0.868591
x4: 0.831949
x5: 0.233748
x6: 0.0911825", "Arm 11_0
l2norm: 1.6426 (SEM: 0)
x1: 0.987825
x2: 0.589285
x3: 0.458667
x4: 0.608483
x5: 0.609408
x6: 0.65044", "Arm 12_0
l2norm: 1.12033 (SEM: 0)
x1: 0.385464
x2: 0.455468
x3: 0.459117
x4: 0.250578
x5: 0.778737
x6: 0.138175", "Arm 13_0
l2norm: 1.21955 (SEM: 0)
x1: 0.401178
x2: 0.514379
x3: 0.556813
x4: 0.284481
x5: 0.814183
x6: 0.0889996", "Arm 14_0
l2norm: 1.23903 (SEM: 0)
x1: 0.335496
x2: 0.585843
x3: 0.690025
x4: 0.327102
x5: 0.704439
x6: 0.00724161", "Arm 15_0
l2norm: 1.38286 (SEM: 0)
x1: 0.265306
x2: 0.662688
x3: 0.790957
x4: 0.369588
x5: 0.800351
x6: 3.42291e-18", "Arm 16_0
l2norm: 1.28577 (SEM: 0)
x1: 0.386881
x2: 0.609455
x3: 0.796518
x4: 0.335159
x5: 0.620741
x6: 0", "Arm 17_0
l2norm: 1.23666 (SEM: 0)
x1: 0.365473
x2: 0.584339
x3: 0.750171
x4: 0.323595
x5: 0.621966
x6: 0", "Arm 18_0
l2norm: 1.22055 (SEM: 0)
x1: 0.378463
x2: 0.651943
x3: 0.693635
x4: 0.317981
x5: 0.582421
x6: 0.00419118", "Arm 19_0
l2norm: 1.24148 (SEM: 0)
x1: 0.395947
x2: 0.675556
x3: 0.698173
x4: 0.321622
x5: 0.580696
x6: 0.00601455", "Arm 1_0
l2norm: 1.82145 (SEM: 0)
x1: 0.642945
x2: 0.955892
x3: 0.121558
x4: 0.813211
x5: 0.637652
x6: 0.952821", "Arm 20_0
l2norm: 1.23431 (SEM: 0)
x1: 0.410966
x2: 0.719219
x3: 0.647227
x4: 0.316184
x5: 0.564306
x6: 0.00619903", "Arm 21_0
l2norm: 1.24263 (SEM: 0)
x1: 0.433214
x2: 0.762062
x3: 0.609672
x4: 0.313902
x5: 0.552675
x6: 0.00639606", "Arm 22_0
l2norm: 1.24497 (SEM: 0)
x1: 0.443549
x2: 0.792513
x3: 0.578673
x4: 0.313974
x5: 0.540079
x6: 0.00398552", "Arm 23_0
l2norm: 1.22951 (SEM: 0)
x1: 0.424673
x2: 0.843107
x3: 0.51404
x4: 0.34521
x5: 0.486941
x6: 3.32876e-12", "Arm 24_0
l2norm: 1.23405 (SEM: 0)
x1: 0.41128
x2: 0.869695
x3: 0.49797
x4: 0.381492
x5: 0.451377
x6: 0.00979608", "Arm 25_0
l2norm: 1.2346 (SEM: 0)
x1: 0.397336
x2: 0.886032
x3: 0.480676
x4: 0.422592
x5: 0.413807
x6: 0.0212643", "Arm 26_0
l2norm: 1.22851 (SEM: 0)
x1: 0.371223
x2: 0.903814
x3: 0.436524
x4: 0.488533
x5: 0.353269
x6: 0.022968", "Arm 27_0
l2norm: 1.24028 (SEM: 0)
x1: 0.356998
x2: 0.929707
x3: 0.410984
x4: 0.526385
x5: 0.316892
x6: 0.00940525", "Arm 28_0
l2norm: 1.21452 (SEM: 0)
x1: 0.3424
x2: 0.909796
x3: 0.400853
x4: 0.517529
x5: 0.310354
x6: 0.0725171", "Arm 2_0
l2norm: 1.50335 (SEM: 0)
x1: 0.505535
x2: 0.656055
x3: 0.81197
x4: 0.379333
x5: 0.877803
x6: 0.0189884", "Arm 3_0
l2norm: 1.70682 (SEM: 0)
x1: 0.757186
x2: 0.781214
x3: 0.882771
x4: 0.598411
x5: 0.517964
x6: 0.569161", "Arm 4_0
l2norm: 1.39268 (SEM: 0)
x1: 0.693038
x2: 0.414121
x3: 0.134982
x4: 0.467462
x5: 0.974968
x6: 0.316927", "Arm 5_0
l2norm: 1.46143 (SEM: 0)
x1: 0.95205
x2: 0.491435
x3: 0.186161
x4: 0.826572
x5: 0.391467
x6: 0.341686", "Arm 6_0
l2norm: 0.969486 (SEM: 0)
x1: 0.372392
x2: 0.231501
x3: 0.17215
x4: 0.167916
x5: 0.726338
x6: 0.402787", "Arm 7_0
l2norm: 1.8273 (SEM: 0)
x1: 0.916148
x2: 0.26941
x3: 0.896762
x4: 0.96937
x5: 0.538139
x6: 0.627427", "Arm 8_0
l2norm: 1.51104 (SEM: 0)
x1: 0.291749
x2: 0.22287
x3: 0.911979
x4: 0.233576
x5: 0.981372
x6: 0.546906", "Arm 9_0
l2norm: 1.56294 (SEM: 0)
x1: 0.54797
x2: 0.432769
x3: 0.755362
x4: 0.829773
x5: 0.772336
x6: 0.315621" ], "type": "scatter", "x": [ 0.8896524310112, 0.10482953954488039, 0.9878246989101171, 0.38546449440903524, 0.40117805349666225, 0.3354962016605869, 0.26530616565735116, 0.38688147506327175, 0.36547301726471426, 0.37846334018774036, 0.3959473404707403, 0.6429451778531075, 0.41096568373163905, 0.4332139356434659, 0.4435493305774755, 0.424672647124038, 0.41127975389430343, 0.3973356343409779, 0.3712233340227339, 0.3569982097373157, 0.34239969319932223, 0.5055354433134198, 0.7571856500580907, 0.6930381068959832, 0.9520503673702478, 0.37239226419478655, 0.9161479901522398, 0.29174890276044607, 0.5479696039110422 ], "xaxis": "x2", "y": [ 0.4287032186985016, 0.21085828077048063, 0.5892851976677775, 0.45546817228355596, 0.5143787794757867, 0.5858426249624872, 0.6626882991305368, 0.6094551087539309, 0.5843389578642224, 0.6519428599673566, 0.6755564350633103, 0.9558922983705997, 0.7192190934586816, 0.7620619950489326, 0.7925128695124121, 0.8431066340576738, 0.8696951243178704, 0.8860315183591488, 0.903814152470661, 0.9297067126208302, 0.9097956082238563, 0.656055317260325, 0.7812144905328751, 0.41412073373794556, 0.49143460113555193, 0.23150083795189857, 0.2694101454690099, 0.222869542427361, 0.4327690191566944 ], "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 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "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": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "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 }, "autotypenumbers": "strict", "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": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "render(plot_contour(model=model, param_x='x1', param_y='x2', metric_name='l2norm'))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We also plot optimization trace, which shows best hartmann6 objective value seen by each iteration of the optimization:" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "hoverinfo": "none", "legendgroup": "", "line": { "width": 0 }, "mode": "lines", "showlegend": false, "type": "scatter", "x": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30 ], "y": [ -0.0019861188954430164, -0.0019861188954430164, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1662142531858748, -1.2913174928859998, -1.3860815927778478, -1.4380487071846977, -1.7934276910528086, -2.14873648929894, -2.499691680630416, -2.8637785915617524, -2.8861130336576477, -2.8861130336576477, -3.0297582952193536 ] }, { "fill": "tonexty", "fillcolor": "rgba(128,177,211,0.3)", "legendgroup": "objective value", "line": { "color": "rgba(128,177,211,1)" }, "mode": "lines", "name": "objective value", "type": "scatter", "x": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30 ], "y": [ -0.0019861188954430164, -0.0019861188954430164, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1662142531858748, -1.2913174928859998, -1.3860815927778478, -1.4380487071846977, -1.7934276910528086, -2.14873648929894, -2.499691680630416, -2.8637785915617524, -2.8861130336576477, -2.8861130336576477, -3.0297582952193536 ] }, { "fill": "tonexty", "fillcolor": "rgba(128,177,211,0.3)", "hoverinfo": "none", "legendgroup": "", "line": { "width": 0 }, "mode": "lines", "showlegend": false, "type": "scatter", "x": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30 ], "y": [ -0.0019861188954430164, -0.0019861188954430164, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1458822939759552, -1.1662142531858748, -1.2913174928859998, -1.3860815927778478, -1.4380487071846977, -1.7934276910528086, -2.14873648929894, -2.499691680630416, -2.8637785915617524, -2.8861130336576477, -2.8861130336576477, -3.0297582952193536 ] }, { "line": { "color": "rgba(253,180,98,1)", "dash": "dash" }, "mode": "lines", "name": "Optimum", "type": "scatter", "x": [ 1, 30 ], "y": [ -3.32237, -3.32237 ] } ], "layout": { "showlegend": true, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "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": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "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 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "text": "Model performance vs. # of iterations" }, "xaxis": { "title": { "text": "Iteration" } }, "yaxis": { "title": { "text": "Hartmann6" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# `plot_single_method` expects a 2-d array of means, because it expects to average means from multiple \n", "# optimization runs, so we wrap out best objectives array in another array.\n", "best_objectives = np.array([[trial.objective_mean for trial in experiment.trials.values()]])\n", "best_objective_plot = optimization_trace_single_method(\n", " y=np.minimum.accumulate(best_objectives, axis=1),\n", " optimum=hartmann6.fmin,\n", " title=\"Model performance vs. # of iterations\",\n", " ylabel=\"Hartmann6\",\n", ")\n", "render(best_objective_plot)" ] } ], "metadata": { "kernelspec": { "display_name": "python3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.12" } }, "nbformat": 4, "nbformat_minor": 2 }