{
"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 03-10 16:20:27] 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 03-10 16:20:27] 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 03-10 16:20:27] 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 03-10 16:20:27] 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 03-10 16:20:27] 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 03-10 16:20:27] 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 03-10 16:20:27] 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 03-10 16:20:27] 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 03-10 16:20:27] 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 03-10 16:20:27] ax.service.managed_loop: Started full optimization with 30 steps.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:20:27] ax.service.managed_loop: Running optimization trial 1...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:20:27] ax.service.managed_loop: Running optimization trial 2...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:20:27] ax.service.managed_loop: Running optimization trial 3...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:20:27] ax.service.managed_loop: Running optimization trial 4...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:20:27] ax.service.managed_loop: Running optimization trial 5...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:20:27] ax.service.managed_loop: Running optimization trial 6...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:20:27] ax.service.managed_loop: Running optimization trial 7...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:20:27] ax.service.managed_loop: Running optimization trial 8...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:20:27] ax.service.managed_loop: Running optimization trial 9...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:20:27] ax.service.managed_loop: Running optimization trial 10...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:20:27] ax.service.managed_loop: Running optimization trial 11...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:20:27] ax.service.managed_loop: Running optimization trial 12...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:20:27] ax.service.managed_loop: Running optimization trial 13...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:20:34] ax.service.managed_loop: Running optimization trial 14...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:20:39] ax.service.managed_loop: Running optimization trial 15...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:20:46] ax.service.managed_loop: Running optimization trial 16...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:20:52] ax.service.managed_loop: Running optimization trial 17...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:20:58] ax.service.managed_loop: Running optimization trial 18...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:21:04] ax.service.managed_loop: Running optimization trial 19...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:21:09] ax.service.managed_loop: Running optimization trial 20...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:21:16] ax.service.managed_loop: Running optimization trial 21...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:21:21] ax.service.managed_loop: Running optimization trial 22...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:21:28] ax.service.managed_loop: Running optimization trial 23...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:21:33] ax.service.managed_loop: Running optimization trial 24...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:21:38] ax.service.managed_loop: Running optimization trial 25...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:21:45] ax.service.managed_loop: Running optimization trial 26...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:21:51] ax.service.managed_loop: Running optimization trial 27...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:21:56] ax.service.managed_loop: Running optimization trial 28...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:22:00] ax.service.managed_loop: Running optimization trial 29...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-10 16:22:05] 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.19156183052597178,\n",
" 'x2': 0.1485798481900465,\n",
" 'x3': 0.4834712132516117,\n",
" 'x4': 0.2729624001743349,\n",
" 'x5': 0.3097645699559457,\n",
" 'x6': 0.6659087464722339}"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"best_parameters"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"{'hartmann6': -3.318429305778832, 'l2norm': 0.9520638752225008}"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"means, covariances = values\n",
"means"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"For comparison, minimum of Hartmann6 is:"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"-3.32237"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"hartmann6.fmin"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## 3. Plot results\n",
"Here we arbitrarily select \"x1\" and \"x2\" as the two parameters to plot for both metrics, \"hartmann6\" and \"l2norm\"."
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.plotly.v1+json": {
"config": {
"linkText": "Export to plot.ly",
"plotlyServerURL": "https://plot.ly",
"showLink": false
},
"data": [
{
"autocolorscale": false,
"autocontour": true,
"colorbar": {
"tickfont": {
"size": 8
},
"ticksuffix": "",
"x": 0.45,
"y": 0.5
},
"colorscale": [
[
0.0,
"rgb(247,252,253)"
],
[
0.125,
"rgb(229,245,249)"
],
[
0.25,
"rgb(204,236,230)"
],
[
0.375,
"rgb(153,216,201)"
],
[
0.5,
"rgb(102,194,164)"
],
[
0.625,
"rgb(65,174,118)"
],
[
0.75,
"rgb(35,139,69)"
],
[
0.875,
"rgb(0,109,44)"
],
[
1.0,
"rgb(0,68,27)"
]
],
"contours": {
"coloring": "heatmap"
},
"hoverinfo": "x+y+z",
"ncontours": 25,
"type": "contour",
"x": [
0.0,
0.02040816326530612,
0.04081632653061224,
0.061224489795918366,
0.08163265306122448,
0.1020408163265306,
0.12244897959183673,
0.14285714285714285,
0.16326530612244897,
0.18367346938775508,
0.2040816326530612,
0.22448979591836732,
0.24489795918367346,
0.26530612244897955,
0.2857142857142857,
0.3061224489795918,
0.32653061224489793,
0.3469387755102041,
0.36734693877551017,
0.3877551020408163,
0.4081632653061224,
0.42857142857142855,
0.44897959183673464,
0.4693877551020408,
0.4897959183673469,
0.5102040816326531,
0.5306122448979591,
0.5510204081632653,
0.5714285714285714,
0.5918367346938775,
0.6122448979591836,
0.6326530612244897,
0.6530612244897959,
0.673469387755102,
0.6938775510204082,
0.7142857142857142,
0.7346938775510203,
0.7551020408163265,
0.7755102040816326,
0.7959183673469387,
0.8163265306122448,
0.836734693877551,
0.8571428571428571,
0.8775510204081632,
0.8979591836734693,
0.9183673469387754,
0.9387755102040816,
0.9591836734693877,
0.9795918367346939,
1.0
],
"xaxis": "x",
"y": [
0.0,
0.02040816326530612,
0.04081632653061224,
0.061224489795918366,
0.08163265306122448,
0.1020408163265306,
0.12244897959183673,
0.14285714285714285,
0.16326530612244897,
0.18367346938775508,
0.2040816326530612,
0.22448979591836732,
0.24489795918367346,
0.26530612244897955,
0.2857142857142857,
0.3061224489795918,
0.32653061224489793,
0.3469387755102041,
0.36734693877551017,
0.3877551020408163,
0.4081632653061224,
0.42857142857142855,
0.44897959183673464,
0.4693877551020408,
0.4897959183673469,
0.5102040816326531,
0.5306122448979591,
0.5510204081632653,
0.5714285714285714,
0.5918367346938775,
0.6122448979591836,
0.6326530612244897,
0.6530612244897959,
0.673469387755102,
0.6938775510204082,
0.7142857142857142,
0.7346938775510203,
0.7551020408163265,
0.7755102040816326,
0.7959183673469387,
0.8163265306122448,
0.836734693877551,
0.8571428571428571,
0.8775510204081632,
0.8979591836734693,
0.9183673469387754,
0.9387755102040816,
0.9591836734693877,
0.9795918367346939,
1.0
],
"yaxis": "y",
"z": [
[
-2.5722807232909277,
-2.624581923938226,
-2.672696712495045,
-2.716153564042437,
-2.7545018008744035,
-2.787322578283359,
-2.814240321670592,
-2.8349340976167197,
-2.849148274811024,
-2.8567017408126354,
-2.8574949201070794,
-2.8515139180600473,
-2.8388313095713995,
-2.819603389191836,
-2.794064058274293,
-2.762515876756522,
-2.725319078634997,
-2.6828794854662767,
-2.6356362333281904,
-2.584050080005179,
-2.5285928350019717,
-2.4697382167366158,
-2.407954236665427,
-2.343697063218368,
-2.277406231399648,
-2.209501025341507,
-2.1403778550858124,
-2.070408461030536,
-1.9999387994589084,
-1.92928848411586,
-1.8587506787699368,
-1.7885923529224674,
-1.7190548271730623,
-1.6503545465559535,
-1.5826840298908489,
-1.5162129512878442,
-1.4510893167692998,
-1.3874407047963575,
-1.32537554451069,
-1.264984409864338,
-1.206341311610505,
-1.149504972440727,
-1.0945200734337734,
-1.041418462476054,
-0.9902203174610706,
-0.9409352589128737,
-0.8935634082382865,
-0.8480963891259856,
-0.8045182707060874,
-0.7628064519888281
],
[
-2.609268440280959,
-2.663100433040454,
-2.7126720970657736,
-2.757489304291468,
-2.7970780527012282,
-2.830996200204302,
-2.8588458185908454,
-2.880285615005302,
-2.895042708887848,
-2.9029229282870377,
-2.903818743270848,
-2.8977140280863902,
-2.8846850622790163,
-2.864897533575404,
-2.8385997386684463,
-2.8061126051880407,
-2.767817483669836,
-2.724142811122381,
-2.675550707229345,
-2.6225243659517425,
-2.565556822777704,
-2.5051413904588973,
-2.441763821353174,
-2.3758960969900804,
-2.3079916617382885,
-2.238481889020679,
-2.167773573988507,
-2.09624726853302,
-2.0242563016344732,
-1.952126354239551,
-1.8801554805888243,
-1.808614486650539,
-1.7377475914348914,
-1.6677733091410099,
-1.598885499999104,
-1.5312545458677735,
-1.4650286135467803,
-1.4003349746627025,
-1.3372813560810892,
-1.2759572992319466,
-1.216435510600876,
-1.1587731890059145,
-1.1030133182038657,
-1.049185915894431,
-0.9973092323565489,
-0.947390893794774,
-0.8994289870302,
-0.8534130834719813,
-0.8093252013835408,
-0.7671407063401527
],
[
-2.641158753728793,
-2.696377165104673,
-2.747272987496439,
-2.79333114372191,
-2.8340558235623625,
-2.8689829120662624,
-2.89769321573198,
-2.919825904948434,
-2.9350913966454004,
-2.943282738541515,
-2.9442844791912224,
-2.9380780729242466,
-2.9247431116878415,
-2.9044540872635976,
-2.8774729018601337,
-2.844137853540891,
-2.804850205572869,
-2.760059617547706,
-2.710249648369251,
-2.655924286334582,
-2.597596115449706,
-2.535776389151434,
-2.4709670199765013,
-2.403654329600671,
-2.3343043270363255,
-2.2633592669449842,
-2.191235257927711,
-2.1183207223095413,
-2.04497554254331,
-1.9715307594168685,
-1.8982887120562686,
-1.825523529460508,
-1.7534818988606,
-1.682384048551609,
-1.6124248928374558,
-1.5437752949870125,
-1.4765834110700136,
-1.41097608352077,
-1.347060258462799,
-1.284924405348041,
-1.2246399214091115,
-1.1662625068566534,
-1.1098334997282957,
-1.0553811618551867,
-1.00292190959816,
-0.9524614848561066,
-0.9039960634019694,
-0.8575132988908349,
-0.8129933019438634,
-0.770409554571043
],
[
-2.6675709647161883,
-2.724006278235045,
-2.7760688421579105,
-2.8232247904746854,
-2.8649585871137386,
-2.9007860765030014,
-2.9302685092488687,
-2.953026938623707,
-2.9687561539765888,
-2.9772371139524925,
-2.9783467308205993,
-2.972063910346211,
-2.958471018537659,
-2.9377504187723416,
-2.9101763207706046,
-2.876102773494124,
-2.8359490725527077,
-2.7901840344498217,
-2.739310491199177,
-2.6838510442467114,
-2.6243357061803456,
-2.561291672293089,
-2.4952351775688504,
-2.4266652280879306,
-2.356058929153854,
-2.2838681302948203,
-2.2105171373531642,
-2.1364012822317626,
-2.0618861798363834,
-1.9873075347170794,
-1.9129713861068378,
-1.8391547003681186,
-1.7661062356127533,
-1.6940476156827213,
-1.6231745607191173,
-1.5536582298763153,
-1.4856466388064271,
-1.419266120633826,
-1.3546228044442723,
-1.291804089946477,
-1.2308801010066834,
-1.1719051042700919,
-1.114918882116247,
-1.059948051795355,
-1.0070073248006148,
-0.9561007023904837,
-0.9072226047231351,
-0.8603589323416715,
-0.8154880597880565,
-0.7725817619588675
],
[
-2.6881701601818113,
-2.745629080891116,
-2.798677406832081,
-2.846765128614964,
-2.889359623956228,
-2.925959242826957,
-2.9561080330407585,
-2.9794109846805767,
-2.9955489092394423,
-3.004291826664316,
-3.005509587574827,
-2.9991784988282486,
-2.9853830108354176,
-2.9643120561449487,
-2.9362503058603897,
-2.901565276492308,
-2.860691707481577,
-2.8141148201479247,
-2.762353938469385,
-2.705947580683299,
-2.645440661155883,
-2.5813740132289347,
-2.514276138705738,
-2.4446569238929405,
-2.373003006319597,
-2.299774486995753,
-2.2254027236430702,
-2.150288987647316,
-2.0748038103879596,
-1.999286879481645,
-1.9240473724591107,
-1.8493646359671125,
-1.7754891344141364,
-1.7026436044487423,
-1.6310243617818487,
-1.5608027153199324,
-1.4921264507989376,
-1.4251213523690942,
-1.3598927360454467,
-1.2965269737153726,
-1.2350929905563763,
-1.1756437223241032,
-1.118217522071967,
-1.062839508507929,
-1.009522850427353,
-0.9582699835276796,
-0.909073757455304,
-0.861918512197394,
-0.816781083950658,
-0.7736317414098745
],
[
-2.7026779554551528,
-2.760945924363708,
-2.8147777912897833,
-2.8636104852572686,
-2.906897450165987,
-2.9441226649038947,
-2.9748159454528382,
-2.998568893472275,
-3.0150505651244472,
-3.024021657144684,
-3.025345831702771,
-3.018996832988094,
-3.0050603609279545,
-2.983730250827642,
-2.9552992513243295,
-2.9201454191806855,
-2.8787156737205954,
-2.8315082482235923,
-2.7790556177907098,
-2.7219090652841373,
-2.6606255304268025,
-2.59575692606981,
-2.5278417877980726,
-2.4573989596134145,
-2.384922972052394,
-2.3108807899196457,
-2.2357096550365334,
-2.159815801415743,
-2.083573865591071,
-2.0073268507448385,
-1.931386530610013,
-1.8560341997978136,
-1.7815216930953928,
-1.7080726088606617,
-1.635883681936285,
-1.5651262601737224,
-1.4959478461120765,
-1.428473671842442,
-1.3628082807579267,
-1.2990370948403642,
-1.2372279504374004,
-1.1774325891968564,
-1.1196880940024427,
-1.0640182624478618,
-1.0104349126461791,
-0.9589391180474497,
-0.909522369477641,
-0.8621676638607505,
-0.8168505200847536,
-0.7735399232584595
],
[
-2.710882093116547,
-2.7697269410609566,
-2.8241224021414526,
-2.8734957875116685,
-2.9172901922989363,
-2.9549788421661867,
-2.9860808288242513,
-3.0101775860505553,
-3.0269291459608034,
-3.0360889141464877,
-3.037515507230483,
-3.031180224336109,
-3.0171690565672042,
-2.9956787617854967,
-2.967007321296646,
-2.9315398583137826,
-2.8897316421195027,
-2.842089995880711,
-2.7891567496648353,
-2.7314924331676522,
-2.669662857458638,
-2.6042282546486564,
-2.5357348192559384,
-2.464708333274581,
-2.3916495160990037,
-2.3170307668323114,
-2.2412940186293824,
-2.1648494788895225,
-2.0880750753720605,
-2.0113164645307213,
-1.9348874857834018,
-1.859070966187332,
-1.7841197960383428,
-1.7102582087342943,
-1.6376832088332969,
-1.5665661012270164,
-1.4970540821180682,
-1.429271859264885,
-1.363323274875916,
-1.2992929096900379,
-1.237247651242348,
-1.177238213145778,
-1.11930059547809,
-1.0634574791089784,
-1.0097195490896114,
-0.9580867441128005,
-0.908549430587894,
-0.8610895011097884,
-0.8156813980803809,
-0.7722930640035273
],
[
-2.7126441609960827,
-2.7718207643153505,
-2.8265467268618045,
-2.876243451892981,
-2.920347591982778,
-2.9583256065176617,
-2.989689772168043,
-3.0140149842248807,
-3.030955362796983,
-3.040259365565639,
-3.0417819081605515,
-3.0354920260200884,
-3.0214749603999453,
-2.9999281962678213,
-2.9711517877136004,
-2.9355340793865263,
-2.893534477673785,
-2.8456651154388766,
-2.792473071421462,
-2.7345243512412583,
-2.672390285246271,
-2.6066365134592178,
-2.5378144004608605,
-2.466454560644883,
-2.3930621334377893,
-2.3181134744060534,
-2.2420539799872197,
-2.165296817280022,
-2.0882223761498486,
-2.011178296853216,
-1.934479953746359,
-1.8584112965391135,
-1.7832259669018427,
-1.7091486214475369,
-1.6363764031358317,
-1.5650805125663265,
-1.4954078387952825,
-1.4274826164315502,
-1.361408081975081,
-1.2972681077463197,
-1.235128796392506,
-1.1750400229153504,
-1.1170369145106838,
-1.061141261310178,
-1.0073628534324002,
-0.9557007416462617,
-0.9061444204829296,
-0.8586749338546581,
-0.8132659041994709,
-0.769884486911319
],
[
-2.707904781965325,
-2.767160456322965,
-2.8219760520182624,
-2.8717709292875164,
-2.9159793903638302,
-2.9540653262520826,
-2.985538332913154,
-3.0099706202418792,
-3.0270137114793503,
-3.0364136221918914,
-3.0380230172646456,
-3.031808890247631,
-3.017854668169616,
-2.9963562905670296,
-2.967612608448117,
-2.932011203722257,
-2.890011258518866,
-2.842125287864629,
-2.7889013734727515,
-2.7309070979286254,
-2.6687158431169675,
-2.6028956420724216,
-2.5340004485074283,
-2.462563522522384,
-2.3890925842867614,
-2.3140664079677915,
-2.237932575426605,
-2.1611061598466503,
-2.0839691535205995,
-2.006870489159752,
-1.930126531278654,
-1.8540219353266352,
-1.778810789028472,
-1.7047179641548658,
-1.6319406185314538,
-1.5606497980472642,
-1.4909920970614385,
-1.4230913431266488,
-1.3570502784767569,
-1.292952216362095,
-1.2308626551405668,
-1.1708308371254015,
-1.1128912426271254,
-1.0570650124834358,
-1.0033612947184758,
-0.9517785128806285,
-0.9023055551391532,
-0.8549228844316764,
-0.8096035708987054,
-0.7663142485623885
],
[
-2.696685823009209,
-2.755766095202432,
-2.8104284552744594,
-2.860094119317985,
-2.904199168744171,
-2.942209159398895,
-2.9736351686806524,
-2.998050590563179,
-3.015107671425943,
-3.0245524892258278,
-3.0262369114669636,
-3.020126132023243,
-3.006300747387418,
-2.9849529578017715,
-2.956377237743875,
-2.9209565331522933,
-2.879145541275033,
-2.8314528060002586,
-2.778423204553206,
-2.720621998347453,
-2.658621121514713,
-2.59298792985222,
-2.5242763154326857,
-2.453019921286079,
-2.3797271331061287,
-2.304877534483994,
-2.228919550926963,
-2.1522690530299204,
-2.0753087301344184,
-1.99838807954709,
-1.92182388322977,
-1.8459010652391283,
-1.7708738405287274,
-1.6969670801428087,
-1.624377830082899,
-1.5532769316899713,
-1.4838107005501358,
-1.4161026288860552,
-1.3502550832715214,
-1.2863509754067608,
-1.2244553887126868,
-1.164617147733327,
-1.1068703208659967,
-1.0512356498535196,
-0.9977219018532546,
-0.9463271418194611,
-0.8970399244674307,
-0.8498404062921721,
-0.8047013790450469,
-0.7615892267772778
],
[
-2.6790894459370316,
-2.7377438007628747,
-2.79201380201651,
-2.84132633109548,
-2.8851232652469885,
-2.9228759189873026,
-2.95410084855296,
-2.978376320132538,
-2.9953584442122176,
-3.0047957176148437,
-3.006540580399541,
-3.000556679545375,
-2.9869208844499817,
-2.965819685525206,
-2.9375403074954343,
-2.902457522725288,
-2.861017608338418,
-2.813721060438297,
-2.7611055487915435,
-2.7037302414391857,
-2.642162180193499,
-2.576964972004097,
-2.5086897563470165,
-2.4378682330262733,
-2.365007463780727,
-2.290586156052586,
-2.215052164354161,
-2.1388209819876356,
-2.0622750323769203,
-1.985763600889192,
-1.9096032742027973,
-1.8340787757979358,
-1.7594441040357633,
-1.685923894413097,
-1.6137149405471298,
-1.5429878196588507,
-1.4738885780472781,
-1.4065404404566668,
-1.341045514471641,
-1.2774864672473494,
-1.2159281571016063,
-1.1564192068681804,
-1.0989935095361083,
-1.0436716596756654,
-0.9904623065675766,
-0.9393634268910402,
-0.890363516363013,
-0.8434427009218181,
-0.7985737689703772,
-0.7557231268882707
],
[
-2.655294128095647,
-2.713281348448465,
-2.7669289226240523,
-2.815672999651598,
-2.858965017706737,
-2.8962858489475902,
-2.9271611970194753,
-2.9511775467110954,
-2.9679976933463417,
-2.9773746554933798,
-2.9791626762015753,
-2.9733241202701413,
-2.959931412105813,
-2.9391636939802313,
-2.9112985134419684,
-2.87669943328965,
-2.8358008706833235,
-2.7890916339204668,
-2.7370985265797314,
-2.680371091083928,
-2.619468174234225,
-2.554946623613926,
-2.4873521367535245,
-2.4172121064375856,
-2.3450302206752482,
-2.271282554492863,
-2.1964149039968452,
-2.120841140839681,
-2.0449423959312027,
-1.969066909893189,
-1.8935304127936488,
-1.8186169171255928,
-1.7445798263265837,
-1.671643276917822,
-1.6000036460100078,
-1.5298311677873833,
-1.4612716128624228,
-1.394447993258609,
-1.3294622633679474,
-1.2663969936723618,
-1.2053169994362465,
-1.146270911090863,
-1.0892926767536408,
-1.0344029903646836,
-0.9816106413776023,
-0.9309137839026592,
-0.8823011247467223,
-0.835753030996946,
-0.7912425587144629,
-0.7487364049921187
],
[
-2.62554805974011,
-2.682640854937048,
-2.7354495445712566,
-2.7834228375918064,
-2.8260251314688203,
-2.8627502386726666,
-2.8931362307331567,
-2.916780708568566,
-2.9333555675701346,
-2.9426201411754698,
-2.9444315427057797,
-2.9387511397403374,
-2.9256464093365437,
-2.905287900164229,
-2.877941580228105,
-2.843957361334163,
-2.803754958006542,
-2.7578083926627546,
-2.706630391403448,
-2.6507576742854795,
-2.5907378157755043,
-2.5271180236172714,
-2.4604359196182912,
-2.3912122282230173,
-2.3199451819268546,
-2.2471064151307347,
-2.1731381167115975,
-2.098451228427882,
-2.023424500048515,
-1.9484042368947296,
-1.8737045987633003,
-1.799608330138518,
-1.726367820128259,
-1.654206406853851,
-1.583319855301155,
-1.5138779500962696,
-1.4460261554693574,
-1.3798873039638193,
-1.3155632833760158,
-1.253136698111629,
-1.1926724867545064,
-1.1342194822952574,
-1.0778119052859538,
-1.0234707832920937,
-0.9712052925108883,
-0.9210140194125999,
-0.8728861418237268,
-0.8268025300815662,
-0.7827367698120878,
-0.7406561085713378
],
[
-2.5901605253900217,
-2.6461492527352886,
-2.697919822517014,
-2.744936405801879,
-2.7866793081721735,
-2.8226581695728283,
-2.8524261332894674,
-2.8755943133069053,
-2.8918456829564434,
-2.9009473608693157,
-2.902760235773938,
-2.8972449920649836,
-2.8844638843939148,
-2.864578028301218,
-2.8378404512976436,
-2.8045855912431463,
-2.765216250328261,
-2.7201891588431937,
-2.6700002642096363,
-2.6151706738014937,
-2.5562339109082526,
-2.493724862478594,
-2.4281705580117916,
-2.360082746347501,
-2.2899521317692013,
-2.2182440792020004,
-2.1453955828345386,
-2.071813298086231,
-1.9978724528883518,
-1.9239164743843689,
-1.850257187994717,
-1.777175465727416,
-1.7049222189747213,
-1.6337196475894187,
-1.563762671748761,
-1.495220486043215,
-1.4282381864658635,
-1.3629384306457477,
-1.2994230998979985,
-1.2377749385995473,
-1.1780591521861203,
-1.1203249498483432,
-1.0646070219184534,
-1.0109269451107996,
-0.9592945113240999,
-0.9097089777332212,
-0.8621602374823553,
-0.8166299115171056,
-0.7730923630255333,
-0.7315156366536217
],
[
-2.5494919733013033,
-2.6041873738257735,
-2.654740413933707,
-2.700633186847247,
-2.741364358682376,
-2.77646175219019,
-2.805495748207461,
-2.8280928651197312,
-2.843948703671664,
-2.8528393314451983,
-2.854630169926799,
-2.849281567466506,
-2.83685049765481,
-2.8174881845478263,
-2.7914338634901528,
-2.759005264195638,
-2.7205866824737344,
-2.6766156442232285,
-2.627569151016883,
-2.573950356815335,
-2.516276309783403,
-2.4550671571582,
-2.390836998926299,
-2.324086412308909,
-2.2552965592990724,
-2.1849247267221688,
-2.1134011203145158,
-2.0411267290740964,
-1.968472084174466,
-1.8957767516153674,
-1.8233494155484649,
-1.7514684275894679,
-1.6803827151710125,
-1.6103129584658742,
-1.541452960315019,
-1.473971146822084,
-1.4080121478291343,
-1.3436984164444268,
-1.2811318552668012,
-1.2203954240841914,
-1.1615547097650176,
-1.1046594439612825,
-1.0497449582444505,
-0.9968335695336481,
-0.9459358912698509,
-0.8970520678467578,
-0.8501729314212438,
-0.8052810814736574,
-0.7623518884378995,
-0.7213544234306035
],
[
-2.503943471685389,
-2.557178440449747,
-2.606356002249508,
-2.6509781672598534,
-2.690563905494167,
-2.724661046950999,
-2.752858853359709,
-2.7748006612636846,
-2.790195854153206,
-2.7988303369632703,
-2.800574691492857,
-2.795389306982913,
-2.7833260058225746,
-2.7645259937813607,
-2.739214308736547,
-2.707691262470007,
-2.6703216123947726,
-2.6275223282771343,
-2.579749824137842,
-2.5274874253229163,
-2.4712336717817838,
-2.4114918634363414,
-2.348761068516292,
-2.2835286638211767,
-2.216264365725089,
-2.1474156403891485,
-2.0774043435104477,
-2.0066244250073817,
-1.93544053431162,
-1.8641873712928787,
-1.7931696420408918,
-1.722662495011482,
-1.6529123296986352,
-1.5841378860041608,
-1.5165315372735384,
-1.450260723267682,
-1.3854694710474944,
-1.3222799618778351,
-1.2607941108973129,
-1.2010951335780584,
-1.1432490790617869,
-1.087306315456644,
-1.0333029562605263,
-0.981262220377503,
-0.9311957208387369,
-0.8831046794367516,
-0.8369810661277389,
-0.7928086633316332,
-0.750564056233202,
-0.7102175509170987
],
[
-2.453946165609221,
-2.5055766476680077,
-2.553243020837889,
-2.596468744859467,
-2.6347945435990967,
-2.6677895768676407,
-2.6950631487791563,
-2.716276397499345,
-2.731153296585336,
-2.7394902368357785,
-2.741163473816261,
-2.7361338339844643,
-2.724448268706129,
-2.7062381079629256,
-2.6817141554721475,
-2.6511590379286276,
-2.614917430444595,
-2.5733848991687904,
-2.5269961216727594,
-2.476213177439708,
-2.421514470983083,
-2.363384691045276,
-2.3023060503769037,
-2.23875091244292,
-2.1731758043298197,
-2.1060167407426817,
-2.0376857384178955,
-1.9685683773169327,
-1.899022258189448,
-1.829376210000667,
-1.7599301110729075,
-1.6909552015623166,
-1.6226947800187352,
-1.5553651919288174,
-1.4891570325066512,
-1.4242364991197793,
-1.3607468404093086,
-1.2988098593293338,
-1.2385274360392502,
-1.1799830439385397,
-1.1232432382732063,
-1.0683591018116787,
-1.0153676362323143,
-0.9642930912205605,
-0.9151482259666888,
-0.8679354998945648,
-0.8226481911346822,
-0.7792714425624648,
-0.73778323622568,
-0.6981552977407451
],
[
-2.399951217609966,
-2.4498563605474,
-2.495898134710764,
-2.537622543590801,
-2.574593057536969,
-2.6064010339609616,
-2.632676553389129,
-2.6530991642791504,
-2.667407938240582,
-2.675410194038723,
-2.6769882715336726,
-2.6721038347081296,
-2.660799352084514,
-2.6431966243595713,
-2.6194924723103084,
-2.5899519267654685,
-2.5548994431999175,
-2.514708772984446,
-2.4697921529921905,
-2.4205894319005212,
-2.367557653676745,
-2.31116149062166,
-2.251864783473606,
-2.190123322572736,
-2.126378902738033,
-2.0610546092439934,
-1.9945512420397247,
-1.9272447562795054,
-1.8594845844767718,
-1.7915927044479734,
-1.7238633236883465,
-1.6565630618138147,
-1.5899315259482154,
-1.5241821878720092,
-1.4595034853645392,
-1.396060082857341,
-1.3339942379479768,
-1.2734272303740346,
-1.2144608187129382,
-1.1571786974292946,
-1.1016479330544195,
-1.047920363387028,
-0.9960339477891967,
-0.9460140600503,
-0.8978747180263165,
-0.8516197464420108,
-0.8072438709643277,
-0.7647337429989876,
-0.7240688956983172,
-0.6852226324552111
],
[
-2.3424205698832754,
-2.3905022774939346,
-2.4348278383569752,
-2.4749664934954003,
-2.5105050435969893,
-2.541057513036945,
-2.56627512476378,
-2.5858561276250116,
-2.5995549458488902,
-2.6071900908064514,
-2.608650301180656,
-2.603898465201713,
-2.5929730232568247,
-2.575986735526309,
-2.553122903142399,
-2.52462932447852,
-2.4908104242316114,
-2.4520180930170747,
-2.408641811197441,
-2.361098606081515,
-2.3098233192629527,
-2.255259558734879,
-2.197851597159146,
-2.1380373688611205,
-2.0762426243013206,
-2.0128762271926783,
-1.9483265270034598,
-1.882958706348818,
-1.8171129852969887,
-1.751103559060287,
-1.6852181483244335,
-1.6197180495892904,
-1.5548385840194276,
-1.4907898557392743,
-1.4277577430958872,
-1.3659050584152224,
-1.305372822769983,
-1.2462816120542555,
-1.1887329391651147,
-1.1328106443612338,
-1.0785822719931448,
-1.0261004168976953,
-0.9754040279471163,
-0.9265196596665576,
-0.879462665600469,
-0.8342383293233884,
-0.7908429307481821,
-0.7492647467647905,
-0.7094849863139997,
-0.6714786608213813
],
[
-2.2818187304916497,
-2.328000757443791,
-2.370539356988017,
-2.4090273472136454,
-2.4430750884480728,
-2.472319401816448,
-2.4964327093005636,
-2.515131984306805,
-2.528187045696507,
-2.53542770878234,
-2.536749333767489,
-2.532116389265119,
-2.5215637716351575,
-2.5051957773911,
-2.4831827968255764,
-2.4557559602124255,
-2.4232001026808505,
-2.385845504643699,
-2.344058904006707,
-2.2982342655091155,
-2.2487837400914588,
-2.196129166467512,
-2.140694372784593,
-2.0828984415687666,
-2.023150015895286,
-1.9618426547374261,
-1.8993511929261737,
-1.8360290255598506,
-1.7722062158116199,
-1.7081883159067772,
-1.6442557904991666,
-1.5806639369921331,
-1.5176432062479246,
-1.4553998378709065,
-1.3941167355914106,
-1.3339545193874147,
-1.2750527013509765,
-1.2175309416604092,
-1.1614903492453361,
-1.1070147988252672,
-1.0541722420231303,
-1.0030159952985094,
-0.9535859916229523,
-0.9059099862455758,
-0.8600047096807912,
-0.815876963291517,
-0.773524654630496,
-0.7329377711166164,
-0.6940992917299703,
-0.6569860372648574
],
[
-2.218605674361174,
-2.262832386345007,
-2.303532907469621,
-2.3403236673994807,
-2.3728385156569605,
-2.40073691714985,
-2.4237122944737908,
-2.441500150941515,
-2.4538855649109603,
-2.460709633934533,
-2.4618744737570326,
-2.457346444596684,
-2.447157381614087,
-2.4314037379226145,
-2.410243691944128,
-2.383892409054399,
-2.3526157637863134,
-2.316722910643886,
-2.2765581319756167,
-2.2324923901249525,
-2.1849149739050833,
-2.13422556612318,
-2.0808269809357203,
-2.025118738269994,
-1.967491566265891,
-1.908322857592697,
-1.8479730545142583,
-1.7867829011777125,
-1.7250714785326298,
-1.663134925336913,
-1.6012457453212903,
-1.5396526033022828,
-1.478580519719841,
-1.4182313820277348,
-1.3587847013117438,
-1.3003985525681012,
-1.2432106466693384,
-1.1873394908428314,
-1.132885602324847,
-1.0799327466832183,
-1.0285491781508078,
-0.9787888642509666,
-0.9306926811162216,
-0.8842895693034469,
-0.8395976426908891,
-0.7966252452981651,
-0.7553719526831212,
-0.7158295160134535,
-0.6779827480505546,
-0.6418103511724225
],
[
-2.1532308669076285,
-2.1954657710692627,
-2.234295285492241,
-2.269359229497505,
-2.3003146236586076,
-2.3268431931293025,
-2.3486589562022937,
-2.3655155737352023,
-2.377213101765908,
-2.3836037829206314,
-2.384596537419301,
-2.3801598730372673,
-2.3703230219532982,
-2.3551752229129397,
-2.3348631877605732,
-2.3095869084909575,
-2.279594061351055,
-2.2451733376815612,
-2.2066470709539043,
-2.164363534714337,
-2.1186892605142287,
-2.0700016755558277,
-2.0186822957403634,
-1.9651106401949339,
-1.90965896599071,
-1.852687862312506,
-1.7945426950735919,
-1.7355508570142475,
-1.6760197541673791,
-1.6162354456740107,
-1.556461848248894,
-1.4969404170164005,
-1.4378902190305132,
-1.3795083229522207,
-1.3219704368382685,
-1.2654317348941895,
-1.2100278227508072,
-1.1558757989575663,
-1.1030753777401514,
-1.051710044556967,
-1.0018482216028364,
-0.9535444251919389,
-0.9068404009762939,
-0.8617662263048719,
-0.8183413717880856,
-0.7765757163866182,
-0.7364705121692005,
-0.6980192963502936,
-0.661208749385924,
-0.626019498826625
],
[
-2.086128362673085,
-2.1263524932429423,
-2.1632946912214654,
-2.196617732836174,
-2.226001291270478,
-2.2511487841865643,
-2.2717942564802986,
-2.2877090119580026,
-2.298707682253064,
-2.304653418384273,
-2.3054619138324357,
-2.301104018727512,
-2.2916067798558295,
-2.277052834239386,
-2.2575781856676658,
-2.2333684929505413,
-2.204654085202892,
-2.171703984469362,
-2.134819253969481,
-2.094325999595669,
-2.0505683352365005,
-2.0039015842676746,
-1.9546859372022631,
-1.9032807265202987,
-1.8500394208645274,
-1.7953053873144111,
-1.7394084256693183,
-1.6826620440977038,
-1.6253614211711485,
-1.5677819842016254,
-1.510178526370263,
-1.452784783614652,
-1.3958133949374676,
-1.3394561752430705,
-1.2838846368202939,
-1.229250703281028,
-1.1756875675106946,
-1.1233106525787195,
-1.0722186413522667,
-1.0224945466332058,
-0.9742067989588848,
-0.9274103337882591,
-0.8821476636851362,
-0.8384499243758823,
-0.7963378862730395,
-0.7558229252911581,
-0.7169079486069283,
-0.6795882724943172,
-0.6438524505539953,
-0.6096830516031155
],
[
-2.017712898617268,
-2.0559231248551173,
-2.090976678128375,
-2.1225586892930854,
-2.150370807363149,
-2.174137430896522,
-2.193611934538512,
-2.2085826387491263,
-2.218878251613087,
-2.2243725114045647,
-2.2249877801700153,
-2.2206973824790204,
-2.21152654728591,
-2.19755188934936,
-2.178899452446721,
-2.1557414210562174,
-2.1282916816928235,
-2.0968004724565605,
-2.0615483947810977,
-2.0228400730589997,
-1.9809977370288974,
-1.9363549723635454,
-1.889250842297079,
-1.8400245334983212,
-1.7890106284986502,
-1.7365350594946198,
-1.6829117574809367,
-1.6284399781311776,
-1.5734022620298733,
-1.5180629712033473,
-1.4626673352384345,
-1.407440937192052,
-1.3525895705367552,
-1.2982994022512317,
-1.2447373827630628,
-1.1920518499373391,
-1.140373281061,
-1.089815153375889,
-1.0404748798965717,
-0.9924347928629664,
-0.9457631521570179,
-0.9005151603488233,
-0.8567339697581965,
-0.8144516700708133,
-0.7736902476926082,
-0.7344625102233518,
-0.6967729712409472,
-0.6606186920681665,
-0.6259900783942447,
-0.5928716305905635
],
[
-1.9483768857764625,
-1.9845841945614313,
-2.017761100240337,
-2.047614353002571,
-2.073866779012484,
-2.0962629368425625,
-2.114574737414969,
-2.128606806202609,
-2.138201352212066,
-2.1432423099277895,
-2.1436585401055823,
-2.1394259132991693,
-2.1305681542855326,
-2.1171563919373813,
-2.099307431636139,
-2.0771808390932818,
-2.0509749884959287,
-2.0209222782291674,
-1.9872837498893965,
-1.9503433590715091,
-1.9104021401290994,
-1.8677724845575316,
-1.8227727181231805,
-1.7757221203320674,
-1.726936486153211,
-1.676724288191704,
-1.625383460725358,
-1.5731987969270993,
-1.520439927826149,
-1.4673598358743696,
-1.4141938465601676,
-1.3611590372299525,
-1.30845400193229,
-1.256258913559095,
-1.2047358288437988,
-1.1540291871028292,
-1.1042664593797091,
-1.055558910448236,
-1.008002441672407,
-0.9616784878359234,
-0.9166549456551347,
-0.8729871157462205,
-0.8307186433367378,
-0.7898824460256771,
-0.7505016194481063,
-0.7125903138411471,
-0.6761545762882885,
-0.6411931548880117,
-0.607698262296168,
-0.5756562970703218
],
[
-1.8784881982819797,
-1.9127159918719017,
-1.9440399344237453,
-1.9721875588845905,
-1.9969019792366618,
-2.0179470133865443,
-2.0351122450115566,
-2.048217830443419,
-2.0571188462812877,
-2.0617089763826377,
-2.0619233547910185,
-2.0577404140999143,
-2.049182635043066,
-2.0363161493536226,
-2.0192492093677257,
-1.998129598872235,
-1.9731411146457634,
-1.9444992920599529,
-1.912446577423121,
-1.8772471627310403,
-1.8391816953856857,
-1.798542058281824,
-1.7556263877831977,
-1.7107344625352539,
-1.6641635588413308,
-1.6162048320094935,
-1.5671402503497114,
-1.517240081070037,
-1.4667609059511153,
-1.4159441293677493,
-1.365014931430327,
-1.314181613879665,
-1.2636352849063446,
-1.2135498303159518,
-1.1640821215655766,
-1.1153724154409377,
-1.0675449049712114,
-1.020708386179615,
-0.9749570101584867,
-0.93037109455486,
-0.8870179727511776,
-0.8449528627769414,
-0.8042197412802872,
-0.7648522107392788,
-0.7268743505316554,
-0.6903015445475006,
-0.6551412797639096,
-0.621393911645884,
-0.5890533934332562,
-0.5581079673556697
],
[
-1.8083886607050417,
-1.8406711009207626,
-1.8701758612331287,
-1.8966503467632665,
-1.9198570059085993,
-1.939577960412723,
-1.9556195557890064,
-1.9678166623871678,
-1.9760365500100794,
-1.9801821628179865,
-1.980194637491361,
-1.9760549362299111,
-1.967784505729959,
-1.955444921039203,
-1.9391365252707053,
-1.9189961280354624,
-1.895193872504726,
-1.8679294191380182,
-1.8374276202795934,
-1.8039338724510579,
-1.7677093322573272,
-1.7290261688533142,
-1.6881630034884518,
-1.6454006579917848,
-1.601018302535315,
-1.5552900616397427,
-1.5084821085465328,
-1.460850253372522,
-1.4126380107105703,
-1.3640751177032995,
-1.315376463768691,
-1.266741387460067,
-1.2183532936179575,
-1.1703795442145886,
-1.1229715783615828,
-1.076265220213471,
-1.0303811374431917,
-0.9854254172024123,
-0.9414902307302496,
-0.8986545618498243,
-0.8569849783759659,
-0.8165364288859744,
-0.7773530503532865,
-0.7394689748127674,
-0.7029091255341039,
-0.6676899951543307,
-0.6338203998950234,
-0.6013022053986163,
-0.5701310208951109,
-0.5402968593876865
],
[
-1.7383931401458357,
-1.7687735629087569,
-1.7965014969576292,
-1.8213432582461486,
-1.84307963460137,
-1.8615100623981677,
-1.8764567099493856,
-1.8877683192848838,
-1.8953236529569928,
-1.8990343968990493,
-1.898847385052718,
-1.8947460363661197,
-1.8867509286477708,
-1.8749194743709074,
-1.859344707713543,
-1.8401532362073443,
-1.8175024505792716,
-1.7915771193200623,
-1.7625855176498975,
-1.7307552524652519,
-1.6963289454104429,
-1.6595599264938912,
-1.620708072684379,
-1.5800359022709543,
-1.5378050092088582,
-1.4942728947520796,
-1.4496902284657431,
-1.4042985486791946,
-1.358328394411201,
-1.3119978470399942,
-1.2655114503387792,
-1.219059471497732,
-1.1728174627976273,
-1.1269460830314573,
-1.0815911389596873,
-1.0368838094777653,
-0.9929410183114546,
-0.9498659245763882,
-0.9077485041753195,
-0.8666661985711335,
-0.8266846108417311,
-0.787858232021104,
-0.7502311835213991,
-0.7138379639039321,
-0.67870419042913,
-0.6448473276848825,
-0.6122773971943762,
-0.5809976632651748,
-0.5510052914896706,
-0.5222919772698931
],
[
-1.6687891563735255,
-1.697318574589557,
-1.7233191789069195,
-1.746575203710285,
-1.7668847586170753,
-1.7840635894800556,
-1.7979487365973514,
-1.8084019606522146,
-1.8153128036922788,
-1.8186011571704468,
-1.8182192223426121,
-1.81415276999973,
-1.8064216355779168,
-1.7950794202656861,
-1.7802124062419942,
-1.761937731628927,
-1.7404009050450242,
-1.715772768014257,
-1.6882460337865988,
-1.6580315421309395,
-1.6253543711663772,
-1.5904499400797625,
-1.5535602222058953,
-1.5149301684960408,
-1.4748044191234055,
-1.4334243580034605,
-1.3910255431272518,
-1.3478355261251673,
-1.3040720581948766,
-1.2599416667716632,
-1.2156385780472596,
-1.1713439543471291,
-1.1272254119917824,
-1.0834367840674042,
-1.0401180929903755,
-0.9973956993918508,
-0.9553825962658552,
-0.9141788201895202,
-0.8738719544854482,
-0.8345377022709153,
-0.7962405102998724,
-0.7590342272714077,
-0.722962782806525,
-0.6880608755631986,
-0.6543546609658446,
-0.6218624307787048,
-0.590595278269999,
-0.5605577440164282,
-0.5317484385075664,
-0.5041606386501094
],
[
-1.5998369305252045,
-1.6265726383477288,
-1.6509012148945434,
-1.6726238061064678,
-1.6915548189384553,
-1.7075253024685413,
-1.7203862201235613,
-1.730011500132518,
-1.736300749510347,
-1.7391815217329778,
-1.7386110402409072,
-1.734577298820513,
-1.7270994848788097,
-1.716227701093517,
-1.7020419927769057,
-1.684650720087408,
-1.6641883434369407,
-1.6408127147882523,
-1.614701985240138,
-1.5860512493058305,
-1.5550690483665048,
-1.5219738504891285,
-1.4869906123535575,
-1.4503475130905559,
-1.4122729312232483,
-1.372992716400002,
-1.332727788727324,
-1.2916920814102928,
-1.2500908278317253,
-1.2081191825109632,
-1.1659611566200447,
-1.1237888427041618,
-1.0817618996111888,
-1.0400272669645858,
-0.9987190783845,
-0.9579587436683218,
-0.9178551719302351,
-0.8785051099755006,
-0.8399935727174862,
-0.8023943450599901,
-0.7657705372387651,
-0.7301751780610644,
-0.6956518327481239,
-0.6622352341454256,
-0.629951917908967,
-0.5988208539049498,
-0.5688540674851235,
-0.5400572455357302,
-0.5124303232615055,
-0.4859680485764615
],
[
-1.531769799875978,
-1.5567740871214684,
-1.5794905161053443,
-1.5997361368415048,
-1.6173406355018036,
-1.6321493693264337,
-1.6440262893695647,
-1.6528566527693944,
-1.6585494254933655,
-1.6610392813782828,
-1.6602881140732522,
-1.6562859950005364,
-1.64905153191472,
-1.6386316077689973,
-1.625100506654145,
-1.608558460556549,
-1.5891296755277053,
-1.566959916696292,
-1.542213746917325,
-1.5150715228467837,
-1.48572625461533,
-1.4543804314551776,
-1.4212429065534466,
-1.3865259213766883,
-1.3504423342201692,
-1.3132031012431973,
-1.2750150420433635,
-1.2360789069020806,
-1.1965877498842175,
-1.1567256013644442,
-1.1166664253801906,
-1.0765733413682534,
-1.036598086081396,
-0.9968806894804587,
-0.9575493378070362,
-0.9187203975234141,
-0.8804985750553429,
-0.8429771890301444,
-0.8062385337571871,
-0.7703543148876311,
-0.7353861403952051,
-0.7013860521549273,
-0.6683970854069412,
-0.6364538452449722,
-0.6055830909468649,
-0.575804320464798,
-0.5471303487186461,
-0.5195678744979677,
-0.49311803178832636,
-0.4677769222109265
],
[
-1.4647949328488294,
-1.488133914632535,
-1.509301540176341,
-1.5281297669524192,
-1.5444625593416503,
-1.5581586088938864,
-1.5690939414283935,
-1.5771643254578998,
-1.5822873964826378,
-1.5844044164783306,
-1.5834815976017467,
-1.579510933549107,
-1.5725105004692634,
-1.5625242107724533,
-1.5496210261573509,
-1.5338936590642516,
-1.5154568128697674,
-1.4944450289373918,
-1.471010221919663,
-1.4453189927192427,
-1.4175498110284057,
-1.3878901566685484,
-1.356533701773174,
-1.3236776052410248,
-1.2895199780294673,
-1.2542575639633136,
-1.2180836668786321,
-1.1811863419712783,
-1.1437468577896237,
-1.105938425759967,
-1.0679251865958541,
-1.029861437374823,
-0.9918910792976672,
-0.9541472639313762,
-0.9167522147982013,
-0.8798172012314099,
-0.8434426422132166,
-0.8077183192171463,
-0.772723678707182,
-0.738528206750831,
-0.7051918600685306,
-0.6727655396854315,
-0.6412915951161082,
-0.6108043486622745,
-0.5813306309169226,
-0.5528903199371347,
-0.5254968777711893,
-0.4991578791087177,
-0.4738755277744242,
-0.4496471576166037
],
[
-1.3990942847605412,
-1.4208368482004001,
-1.4405214785572915,
-1.4579940643870415,
-1.4731118730785384,
-1.4857459858529718,
-1.4957836204445953,
-1.5031302671595252,
-1.5077115646578343,
-1.5094748464154715,
-1.5083902975240022,
-1.5044516740677811,
-1.4976765532100789,
-1.4881061004163585,
-1.4758043597647659,
-1.4608570926985143,
-1.4433702084914872,
-1.4234678448766267,
-1.4012901687347044,
-1.3769909738291535,
-1.350735155089765,
-1.3226961370993051,
-1.293053328785783,
-1.2619896676946394,
-1.2296893065735703,
-1.1963354833322906,
-1.1621086036387827,
-1.1271845542245291,
-1.0917332549377936,
-1.055917449046886,
-1.0198917244090655,
-0.9838017528868701,
-0.9477837317021461,
-0.9119640080869568,
-0.8764588674009737,
-0.8413744646091181,
-0.806806879433866,
-0.7728422764193517,
-0.7395571524031405,
-0.7070186553519606,
-0.6752849600736706,
-0.6444056878904505,
-0.6144223588909261,
-0.5853688668334536,
-0.5572719681252456,
-0.5301517775401652,
-0.5040222644571668,
-0.47889174440289084,
-0.45476336157101405,
-0.4316355587750722
],
[
-1.334825740867483,
-1.355042607954322,
-1.37331162919758,
-1.3894916756154108,
-1.403452375060672,
-1.4150762892120463,
-1.4242609805369246,
-1.4309209047354199,
-1.4349890652376214,
-1.4364183707170963,
-1.4351826443714595,
-1.4312772447003592,
-1.424719271189741,
-1.4155473439292061,
-1.4038209627730431,
-1.389619468106267,
-1.3730406404761666,
-1.35419898927899,
-1.3332237905371653,
-1.3102569400416317,
-1.2854506905762366,
-1.2589653407304573,
-1.2309669383777635,
-1.2016250549017329,
-1.1711106774650974,
-1.139594256840506,
-1.1072439383035348,
-1.074223993457513,
-1.040693462094568,
-1.0068050056124351,
-0.9727039672650656,
-0.9385276296601692,
-0.9044046563645468,
-0.8704547021064677,
-0.8367881747050727,
-0.8035061313260142,
-0.7707002917801652,
-0.7384531521825747,
-0.706838183227627,
-0.675920098492749,
-0.6457551794611769,
-0.6163916452788754,
-0.5878700565776989,
-0.5602237439667892,
-0.5334792529919956,
-0.5076567984733462,
-0.4827707221459745,
-0.4588299484485554,
-0.4358384341274213,
-0.41379560805893645
],
[
-1.2721243991376636,
-1.2908873025871466,
-1.3078089024046673,
-1.322760137074531,
-1.3356220902508296,
-1.3462879349060397,
-1.3546647708578483,
-1.3606752997576612,
-1.3642592829651767,
-1.3653747318674316,
-1.3639987871534474,
-1.3601282531319314,
-1.3537797649527954,
-1.3449895799266716,
-1.3338129982264701,
-1.3203234322008788,
-1.3046111564200231,
-1.2867817815787663,
-1.266954503837759,
-1.2452601866531903,
-1.221839334464246,
-1.196840016872306,
-1.1704157984925971,
-1.1427237240016936,
-1.1139224006640887,
-1.0841702124503578,
-1.053623691377295,
-1.022436063438321,
-0.9907559788664909,
-0.9587264297687413,
-0.9264838525515136,
-0.8941574080787495,
-0.8618684291331767,
-0.8297300223996644,
-0.7978468107269547,
-0.7663148007056545,
-0.7352213604781319,
-0.7046452930302131,
-0.6746569908809795,
-0.6453186589792501,
-0.6166845936461598,
-0.5888015065041616,
-0.5617088834510866,
-0.5354393698357498,
-0.5100191740425017,
-0.48546848267936005,
-0.4618018814780229,
-0.43902877685010067,
-0.4171538138022479,
-0.3961772865954014
],
[
-1.2111039508522083,
-1.228484917934528,
-1.2441274143371301,
-1.2579135690674395,
-1.2697350585990836,
-1.279494841324254,
-1.287108789623017,
-1.292507171112685,
-1.295635932153354,
-1.2964577405400846,
-1.2949527505047196,
-1.2911190614963575,
-1.2849728523426653,
-1.2765481837789732,
-1.265896474305454,
-1.253085666156693,
-1.238199109099912,
-1.2213341991422186,
-1.202600816480262,
-1.1821196118087656,
-1.1600201922703182,
-1.1364392579445348,
-1.1115187370979194,
-1.0854039638517086,
-1.0582419359704596,
-1.0301796836594914,
-1.0013627730942543,
-0.9719339613373652,
-0.9420320126875515,
-0.9117906806069089,
-0.8813378543445624,
-0.8507948652840173,
-0.8202759448817901,
-0.7898878237766156,
-0.7597294601366107,
-0.7298918844621417,
-0.7004581477545387,
-0.6715033600793131,
-0.6430948069905291,
-0.6152921319479547,
-0.5881475736728625,
-0.5617062482889943,
-0.5360064670333575,
-0.5110800812606295,
-0.4869528473783966,
-0.4636448052207043,
-0.4411706641830806,
-0.41954019219733785,
-0.3987586033170003,
-0.37882694031426545
],
[
-1.1518581226129028,
-1.1679288605838452,
-1.1823601289816204,
-1.1950444116139014,
-1.2058831590368075,
-1.2147883345206756,
-1.2216838624633506,
-1.2265069373284656,
-1.2292091527892761,
-1.2297574143227377,
-1.2281346040001004,
-1.2243399734893112,
-1.21838925000459,
-1.2103144496617197,
-1.2001634028752126,
-1.1879990064615358,
-1.1738982263856874,
-1.1579508830557443,
-1.1402582572887812,
-1.120931559244783,
-1.1000903046253059,
-1.0778606423048798,
-1.0543736755023003,
-1.0297638149263966,
-1.0041671974421948,
-0.9777201981298246,
-0.9505580575682716,
-0.9228136401455523,
-0.8946163334828742,
-0.8660910938911284,
-0.8373576383016047,
-0.8085297794016411,
-0.7797148977726321,
-0.7510135426355606,
-0.7225191512898678,
-0.6943178763968819,
-0.6664885098129719,
-0.6391024916240207,
-0.6122239932822346,
-0.5859100642181674,
-0.5602108319270738,
-0.5351697462525287,
-0.5108238593664787,
-0.4872041337392625,
-0.4643357711793832,
-0.44223855678332624,
-0.4209272123580958,
-0.4004117545561936,
-0.38069785359072705,
-0.36178718897613793
],
[
-1.094462148560023,
-1.1092935243602828,
-1.1225805155398056,
-1.1342251682800675,
-1.1441379342321598,
-1.152239047362425,
-1.158459808466631,
-1.1627437410950612,
-1.1650475842615964,
-1.1653420905820981,
-1.1636126033639143,
-1.1598593924944236,
-1.1540977364802814,
-1.1463577462948085,
-1.1366839353459475,
-1.125134548385883,
-1.1117806700526303,
-1.0967051405145871,
-1.0800013110201827,
-1.0617716757905709,
-1.0421264185245196,
-1.0211819118381185,
-0.9990592063890814,
-0.9758825434873791,
-0.9517779209876973,
-0.9268717375423253,
-0.9012895352106599,
-0.8751548552861799,
-0.8485882172766483,
-0.8217062264583699,
-0.7946208114572639,
-0.7674385899629723,
-0.7402603579813375,
-0.7131806959561432,
-0.6862876835966804,
-0.6596627142651901,
-0.6333803992330931,
-0.6075085519272241,
-0.5821082423830637,
-0.5572339124319814,
-0.5329335426143873,
-0.5092488623796716,
-0.48621559576638296,
-0.4638637354195603,
-0.4422178384720423,
-0.4212973384752965,
-0.40111686819982695,
-0.3816865887278418,
-0.3630125208264403,
-0.34509687511595866
],
[
-1.0389742465330922,
-1.052635852838364,
-1.0648441938364952,
-1.0755101300979666,
-1.0845523877428698,
-1.091898783790882,
-1.0974873646252825,
-1.1012674262316555,
-1.1032003864847333,
-1.103260482741968,
-1.101435272315823,
-1.0977259188982937,
-1.092147254467934,
-1.0847276133071229,
-1.0755084421210048,
-1.064543697473788,
-1.051899048439616,
-1.0376509081393015,
-1.021885322404847,
-1.0046967469785788,
-0.986186746319034,
-0.9664626472664233,
-0.9456361796324427,
-0.9238221334197473,
-0.9011370590981597,
-0.8776980334492874,
-0.8536215092206888,
-0.8290222624661903,
-0.8040124472134506,
-0.778700763168168,
-0.7531917386602796,
-0.727585128035308,
-0.7019754202241434,
-0.6764514532821643,
-0.6510961282421759,
-0.6259862146257913,
-0.6011922393451079,
-0.5767784504375786,
-0.5528028470495701,
-0.529317267260117,
-0.5063675256641698,
-0.483993593069888,
-0.46222981117018636,
-0.44110513559546316,
-0.4206434013188227,
-0.400863604950245,
-0.38178019900902105,
-0.36340339379616293,
-0.34573946299453007,
-0.32879104960097516
],
[
-0.9854370764839867,
-0.9979968759236565,
-1.0091905455837127,
-1.0189370572427494,
-1.0271627310979743,
-1.0338023256089421,
-1.0388000459898938,
-1.0421104442757692,
-1.0436991854482676,
-1.0435436568172052,
-1.04163340166006,
-1.0379703629039496,
-1.0325689281904085,
-1.0254557737306187,
-1.0166695106278654,
-1.006260143482069,
-0.9942883567691129,
-0.9808246494078928,
-0.9659483418482803,
-0.9497464827670855,
-0.9323126839656194,
-0.9137459123289823,
-0.8941492668216222,
-0.8736287666111944,
-0.8522921737348259,
-0.8302478704756652,
-0.807603808034357,
-0.7844665393763667,
-0.7609403455011089,
-0.7371264609636082,
-0.7131224013956695,
-0.6890213930918868,
-0.6649119024808903,
-0.6408772614987654,
-0.6169953835002222,
-0.5933385633483201,
-0.5699733546699173,
-0.5469605169005669,
-0.5243550246185833,
-0.5022061317345028,
-0.48055748331500436,
-0.4594472681406836,
-0.4389084054923258,
-0.41896876010338024,
-0.3996513796861352,
-0.38097474991889024,
-0.3629530622592392,
-0.3455964904153168,
-0.3289114717567274,
-0.31290099037567964
],
[
-0.9338791636346482,
-0.9454032029962214,
-0.9556442740474226,
-0.9645288011134622,
-0.9719900635842024,
-0.9779691647154342,
-0.9824159245948665,
-0.9852896738898038,
-0.986559926481657,
-0.9862069115382273,
-0.9842219489301817,
-0.9806076560515241,
-0.9753779788852326,
-0.9685580453445654,
-0.9601838442616797,
-0.9503017386149502,
-0.9389678264159811,
-0.9262471668734427,
-0.9122128928158417,
-0.8969452327510654,
-0.8805304672982823,
-0.8630598450488354,
-0.8446284822643476,
-0.8253342693235877,
-0.8052768046457013,
-0.7845563741293597,
-0.7632729911442867,
-0.7415255089733402,
-0.7194108144886924,
-0.6970231088861907,
-0.6744532785956004,
-0.6517883570983678,
-0.6291110763545549,
-0.6064995048780721,
-0.5840267681941942,
-0.5617608464410766,
-0.5397644432032203,
-0.5180949192496245,
-0.49680428465112425,
-0.4759392427299043,
-0.4555412794114986,
-0.43564679177263943,
-0.4162872498778232,
-0.39748938634973907,
-0.3792754085040906,
-0.3616632282823682,
-0.3446667056252013,
-0.3282959013351745,
-0.3125573358751841,
-0.2974542509321514
],
[
-0.8843162726320015,
-0.894868459075982,
-0.9042168988375185,
-0.9122948538387579,
-0.9190419720848484,
-0.9244051484716078,
-0.9283393151710643,
-0.9308081414050705,
-0.9317846238167612,
-0.9312515508496269,
-0.9292018274959306,
-0.9256386503824792,
-0.9205755272774993,
-0.9140361395431479,
-0.9060540506125595,
-0.8966722680136072,
-0.8859426705738896,
-0.8739253160240557,
-0.8606876471072172,
-0.8463036163868591,
-0.8308527511655796,
-0.8144191802797406,
-0.7970906440715858,
-0.7789575076553994,
-0.7601117958165031,
-0.74064626565854,
-0.7206535306003846,
-0.7002252466679627,
-0.6794513693618066,
-0.6584194868211871,
-0.6372142326368222,
-0.61591677954781,
-0.5946044134311423,
-0.5733501854687335,
-0.5522226391546066,
-0.5312856078679724,
-0.5105980780601784,
-0.49021411265502013,
-0.47018282900846153,
-0.450548425682588,
-0.43135025232792557,
-0.41262291710924903,
-0.39439642632784455,
-0.3766963511662431,
-0.35954401679235404,
-0.3429567093942556,
-0.32694789706378335,
-0.3115274607978522,
-0.29670193223490493,
-0.2824747350851713
],
[
-0.8367527222786262,
-0.8463946539523628,
-0.8549081761739028,
-0.8622328160044355,
-0.8683140422312696,
-0.8731040299252393,
-0.876562359822477,
-0.8786566350993651,
-0.879362999412549,
-0.8786665420473496,
-0.8765615786115759,
-0.8730517988419844,
-0.8681502766343057,
-0.8618793412106722,
-0.8542703122252235,
-0.8453631053952436,
-0.8352057187509024,
-0.8238536126589967,
-0.8113689992620122,
-0.7978200587883447,
-0.783280101283386,
-0.7678266926786264,
-0.7515407637959968,
-0.7345057199511977,
-0.7168065673752279,
-0.6985290708366454,
-0.6797589547444636,
-0.6605811577659398,
-0.6410791487171985,
-0.6213343092739574,
-0.601425386980589,
-0.5814280201641295,
-0.5614143347210687,
-0.5414526113561517,
-0.5216070207162913,
-0.5019374229694367,
-0.48249922770967935,
-0.4633433096024946,
-0.44451597489134453,
-0.4260589737416687,
-0.40800955337449296,
-0.3904005470149141,
-0.37326049382902693,
-0.35661378522774245,
-0.34048083316149724,
-0.3248782563032824,
-0.30981908030848704,
-0.2953129486403634,
-0.28136634075361755,
-0.2679827947306239
],
[
-0.7911826333113273,
-0.7999734772238977,
-0.8077074380866677,
-0.8143297765985412,
-0.8197912754110632,
-0.8240489179803371,
-0.8270665072765085,
-0.8288152093005611,
-0.8292740075615364,
-0.8284300564282525,
-0.8262789235459647,
-0.8228247142248333,
-0.8180800737594284,
-0.8120660668974908,
-0.8048119369970798,
-0.7963547506417509,
-0.7867389364760663,
-0.7760157296447049,
-0.764242535358645,
-0.7514822266926874,
-0.7378023926973465,
-0.7232745532785888,
-0.7079733570895617,
-0.691975777947595,
-0.6753603241185278,
-0.6582062732950256,
-0.6405929443386018,
-0.622599014958301,
-0.6043018925564851,
-0.585777143565773,
-0.5670979847974278,
-0.5483348386704199,
-0.5295549527253482,
-0.5108220825674277,
-0.4921962363330328,
-0.4737334779307123,
-0.45548578565724207,
-0.4375009623150825,
-0.4198225926384218,
-0.4024900436493277,
-0.385538503491454,
-0.3689990543061259,
-0.35289877480541776,
-0.33726086834349145,
-0.3221048124761561,
-0.30744652621855106,
-0.2932985514519677,
-0.2796702451858375,
-0.2665679796436824,
-0.25399534740751406
],
[
-0.7475911041763942,
-0.7555875147403107,
-0.7625948466162936,
-0.7685636018304274,
-0.7734494088826244,
-0.7772136253427331,
-0.779823885091358,
-0.7812545772090883,
-0.7814872446208058,
-0.7805108921710053,
-0.7783221958016209,
-0.7749256068612703,
-0.7703333482050354,
-0.7645653015392762,
-0.7576487883061436,
-0.7496182491623931,
-0.7405148296649757,
-0.7303858820224823,
-0.7192843946165043,
-0.7072683623749835,
-0.694400111954794,
-0.6807455960553098,
-0.6663736710604352,
-0.6513553716382203,
-0.6357631949802922,
-0.6196704061143097,
-0.6031503742560698,
-0.5862759485670761,
-0.5691188800273526,
-0.5517492944913147,
-0.5342352204245417,
-0.516642173365718,
-0.49903279785213206,
-0.481466566407988,
-0.4639995342301255,
-0.4466841474149157,
-0.42956910194497855,
-0.41269925018222087,
-0.39611555127882236,
-0.37985506170253425,
-0.3639509619596919,
-0.34843261557139393,
-0.33332565639978706,
-0.3186521005183547,
-0.30443047896010933,
-0.29067598785060245,
-0.2774006526296975,
-0.26461350328050703,
-0.2523207577095201,
-0.2405260106545155
],
[
-0.7059553118345572,
-0.7132113840610851,
-0.7195425612301733,
-0.7249041316507597,
-0.7292561384292566,
-0.7325639142625998,
-0.7347985653966304,
-0.735937393523885,
-0.7359642454003842,
-0.7348697813558815,
-0.7326516556203077,
-0.729314603435004,
-0.7248704321850163,
-0.719337916188637,
-0.7127425972123368,
-0.7051164951400505,
-0.6964977354155849,
-0.686930101805231,
-0.676462524620365,
-0.6651485157425386,
-0.6530455625751418,
-0.640214493398727,
-0.6267188265472001,
-0.6126241153845251,
-0.5979973002977403,
-0.5829060778944721,
-0.5674182963698571,
-0.5516013846577408,
-0.5355218215704549,
-0.5192446497186785,
-0.5028330376382983,
-0.486347892273604,
-0.46984752280511155,
-0.45338735578350997,
-0.43701970064885054,
-0.4207935639772702,
-0.40475451020224207,
-0.38894456609438244,
-0.373402165941525,
-0.3581621341353518,
-0.3432557017282247,
-0.32871055345996814,
-0.3145509017560826,
-0.30079758425416037,
-0.28746818151370257,
-0.2745771516968196,
-0.2621359791657367,
-0.25015333412123697,
-0.2386352405986114,
-0.2275852503400646
],
[
-0.6662455363520537,
-0.6728127882795715,
-0.6785158194097831,
-0.6833142845337301,
-0.6871722447099948,
-0.6900586418037623,
-0.6919477264338307,
-0.6928194296272191,
-0.6926596693931767,
-0.6914605846657511,
-0.6892206905949986,
-0.6859449509424049,
-0.6816447652926749,
-0.6763378708563403,
-0.6700481607226386,
-0.6628054224444727,
-0.6546450027146679,
-0.6456074055505778,
-0.6357378327811158,
-0.6250856766809043,
-0.6137039752942641,
-0.6016488413291787,
-0.5889788754900691,
-0.575754574784977,
-0.5620377457291128,
-0.5478909315222342,
-0.5333768612578944,
-0.5185579280851524,
-0.5034957020423372,
-0.4882504820681677,
-0.4728808905105295,
-0.45744351233228375,
-0.44199258018289855,
-0.4265797055820648,
-0.4112536556570072,
-0.39606017419260175,
-0.38104184519062256,
-0.3662379966860043,
-0.3516846422248707,
-0.3374144571609399,
-0.32345678676267053,
-0.3098376830314924,
-0.2965799671009579,
-0.28370331410747807,
-0.2712243574863995,
-0.2591568097445487,
-0.24751159688512314,
-0.23629700380704022,
-0.22551882816370017,
-0.21518054034099632
],
[
-0.6284261094322501,
-0.6343534889512088,
-0.639473931737158,
-0.6437510724350415,
-0.6471526257900673,
-0.6496508076651215,
-0.6512227134270303,
-0.6518506453154942,
-0.651522381232515,
-0.650231378486325,
-0.6479769073633204,
-0.6447641109432181,
-0.6406039892617619,
-0.6355133076994226,
-0.6295144312643703,
-0.6226350881730229,
-0.6149080677434791,
-0.6063708590449435,
-0.5970652379384014,
-0.5870368110630735,
-0.576334525946002,
-0.5650101567320669,
-0.5531177750560619,
-0.5407132153288334,
-0.5278535432182332,
-0.5145965354129722,
-0.5010001779088005,
-0.4871221890984594,
-0.4730195729251718,
-0.45874820631635704,
-0.44436246408608726,
-0.42991488351267715,
-0.41545586988437355,
-0.40103344347908343,
-0.3866930277129257,
-0.37247727756282933,
-0.35842594683986406,
-0.34457579245953296,
-0.33096051351666533,
-0.3176107227177736,
-0.30455394754443654,
-0.2918146584078558,
-0.2794143209985822,
-0.2673714700279419,
-0.2557018015911965,
-0.24441828145012567,
-0.23353126662814438,
-0.22304863782956863,
-0.21297594033083245,
-0.20331653114210213
],
[
-0.5924562881519673,
-0.597790199951659,
-0.6023711938674607,
-0.6061665288638016,
-0.6091472393208472,
-0.6112885085269766,
-0.6125700032211976,
-0.6129761619313017,
-0.6124964305954121,
-0.6111254399241397,
-0.6088631201326409,
-0.6057147500106479,
-0.6016909387581548,
-0.5968075405422832,
-0.5910855032693763,
-0.5845506545570602,
-0.577233429277592,
-0.5691685442753545,
-0.560394626895341,
-0.5509538047646203,
-0.5408912648248676,
-0.5302547899148664,
-0.5190942812523172,
-0.5074612749810257,
-0.4954084605583591,
-0.48298920819061464,
-0.4702571118183174,
-0.4572655533469996,
-0.4440672929504901,
-0.4307140893779158,
-0.41725635330459077,
-0.4037428359067967,
-0.3902203540324436,
-0.376733552599253,
-0.36332470418971563,
-0.3500335452332819,
-0.3368971476726865,
-0.3239498246013661,
-0.31122306802863164,
-0.29874551667297733,
-0.2865429514947466,
-0.2746383165504225,
-0.2630517626745832,
-0.25180071146523986,
-0.24089993705723356,
-0.23036166321090268,
-0.22019567331363432,
-0.2104094309859752,
-0.20100820909699046,
-0.19199522512219103
],
[
-0.5582910560254273,
-0.5630754049164866,
-0.5671577185629264,
-0.5705085537534353,
-0.5731019585424231,
-0.5749158035533195,
-0.5759320777394743,
-0.5761371423235588,
-0.5755219373022797,
-0.5740821357598171,
-0.5718182422587761,
-0.5687356327406943,
-0.5648445346303399,
-0.5601599471554697,
-0.554701503217913,
-0.5484932754348197,
-0.5415635301634005,
-0.5339444343866717,
-0.5256717212360551,
-0.5167843206328051,
-0.5073239620268561,
-0.49733475649296977,
-0.48686276551291785,
-0.47595556364184644,
-0.46466180194709805,
-0.4530307786445873,
-0.4411120227714733,
-0.4289548960555223,
-0.4166082174033514,
-0.40411991366098476,
-0.3915366995280334,
-0.37890378875427677,
-0.366264638033303,
-0.353660724346168,
-0.3411313559092617,
-0.3287135163501529,
-0.31644174127630587,
-0.3043480260137179,
-0.2924617629734889,
-0.2808097068501987,
-0.26941596566166104,
-0.25830201549965537,
-0.24748673676985034,
-0.23698646965064363,
-0.22681508648953752,
-0.21698407887711024,
-0.20750265718785776,
-0.19837786044997818,
-0.1896146744989713,
-0.18121615647899247
]
],
"zauto": true,
"zmax": 3.0417819081605515,
"zmin": -3.0417819081605515
},
{
"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.2628286250552159,
0.2491846931245893,
0.23627734444844065,
0.22424894237143828,
0.2132472386501034,
0.20342118791037703,
0.19491468722700062,
0.1878580502830842,
0.182357602965999,
0.17848471310450018,
0.17626658016410635,
0.17568163595797057,
0.17666182998008972,
0.17910226943642837,
0.182876336475495,
0.1878526525476381,
0.19390991300470709,
0.20094666364770805,
0.20888487417019083,
0.21766789167577716,
0.2272545066301266,
0.23761127556224343,
0.24870503585712292,
0.2604969664358271,
0.27293885506235366,
0.2859716272917655,
0.2995257799115076,
0.31352316259834373,
0.3278795261864257,
0.342507340461669,
0.3573185171027276,
0.3722268093672945,
0.38714977427630975,
0.4020102663425797,
0.4167374853655209,
0.4312676302524584,
0.4455442231595352,
0.4595181696518472,
0.4731476157945825,
0.48639765536005086,
0.49923993171330294,
0.5116521705853657,
0.5236176724366027,
0.5351247866729324,
0.546166384620462,
0.5567393438024487,
0.5668440525666039,
0.5764839413422902,
0.5856650446361794,
0.5943955961876378
],
[
0.2523524328260935,
0.2384355319279535,
0.22528646458130214,
0.21305309545190998,
0.20188828883515772,
0.19194506359583624,
0.18336949609188627,
0.17629128071519426,
0.17081253862725435,
0.16699648704241626,
0.16485861206556823,
0.16436337702300136,
0.16542862661658536,
0.16793771187902926,
0.17175682626436017,
0.17675334919148572,
0.1828109008277999,
0.1898381799654337,
0.19777071442266517,
0.2065665521275777,
0.21619811388938454,
0.22664276201217431,
0.2378742634546939,
0.24985654886776326,
0.2625403107225608,
0.2758622825572978,
0.28974661045488026,
0.30410756768168196,
0.31885290458578497,
0.33388727754232483,
0.34911538524858926,
0.36444460821120506,
0.3797870752296392,
0.3950611655621203,
0.4101925038347539,
0.4251145265395527,
0.439768703600253,
0.4541044933544466,
0.468079099508329,
0.48165708734412543,
0.49480990548098375,
0.5075153496711636,
0.5197569967672193,
0.5315236301302784,
0.5428086722275918,
0.5536096357947444,
0.563927601515135,
0.5737667275135048,
0.5831337939149212,
0.5920377841569078
],
[
0.2427313151335381,
0.22858908238113704,
0.2152515687497299,
0.20287344851825617,
0.19161382110233494,
0.18163029934622593,
0.17307055523887954,
0.16606146476099604,
0.16069687712395456,
0.15702617312359374,
0.15504668363914156,
0.15470299773319915,
0.15589475114171283,
0.15849199084707058,
0.16235475075319897,
0.16735218641594238,
0.17337697419755488,
0.18035234969123382,
0.18823136525712839,
0.1969898980555656,
0.2066161103467368,
0.21709928831148873,
0.22842042688215874,
0.24054594365944704,
0.2534248805903694,
0.26698916793644256,
0.2811560982166319,
0.29583206121815386,
0.3109167174112225,
0.32630701504253123,
0.3419006931733109,
0.35759910765386327,
0.3733093527709489,
0.3889457323268144,
0.40443067326264587,
0.4196951867464796,
0.43467897750472084,
0.44933029024553367,
0.46360556740286724,
0.4774689779671069,
0.4908918642293381,
0.5038521423394906,
0.5163336836809201,
0.5283256969903102,
0.5398221256193273,
0.5508210700559801,
0.561324242541774,
0.5713364581187561,
0.5808651645440897,
0.5899200120805724
],
[
0.23405048103770612,
0.21973025931207743,
0.20625665833517853,
0.19379274902419352,
0.18250543286661977,
0.17255800767114401,
0.1640997127330843,
0.1572527822779957,
0.15209877717927803,
0.14866726858262116,
0.1469305271289323,
0.14680697691344355,
0.14817381004303412,
0.15088632915713415,
0.15479960498126646,
0.15978760362811179,
0.16575592892667593,
0.17264620129193123,
0.18043225276054944,
0.18911017666268007,
0.19868535576686328,
0.20915969610164312,
0.22052155390766134,
0.23273965613766018,
0.24576113359942894,
0.2595129365667812,
0.27390550305366385,
0.28883753785867217,
0.3042009844736693,
0.31988557932078354,
0.3357826636205509,
0.3517881435760688,
0.36780462670520675,
0.3837428346019474,
0.3995224199679661,
0.41507231637555936,
0.4303307361071278,
0.44524491301066216,
0.45977066838658764,
0.47387186080363364,
0.48751976629638233,
0.5006924237128664,
0.5133739707822477,
0.5255539893601989,
0.5372268728744615,
0.5483912248723897,
0.5590492944650167,
0.5692064521288313,
0.5788707075812708,
0.5880522701472067
],
[
0.22640760373559118,
0.21195696015420643,
0.19839849489683276,
0.18590521165642485,
0.1746534853135076,
0.16481366502456066,
0.15653694120108463,
0.14993955890541655,
0.14508725637286762,
0.1419843264443878,
0.14057167876560667,
0.14073601651652978,
0.14232860057573676,
0.14518906324634825,
0.1491687530210575,
0.15414895295614983,
0.16005103038867308,
0.1668374860514752,
0.17450476040264076,
0.1830702815365619,
0.19255719459664822,
0.202980204306656,
0.2143350669134274,
0.2265929022212372,
0.2396991790048606,
0.2535763321131828,
0.2681286138157676,
0.2832478647953804,
0.29881921436979186,
0.3147261023234259,
0.33085434239103967,
0.3470951766025608,
0.36334740327277226,
0.37951872256156827,
0.39552645835090317,
0.41129780477605943,
0.42676972433445715,
0.44188860042127903,
0.4566097246449971,
0.470896680082317,
0.48472066609857917,
0.49805979819587504,
0.5108984070252156,
0.5232263536451237,
0.5350383728189717,
0.5463334521967607,
0.5571142522923432,
0.5673865699904824,
0.5771588467078685,
0.586441721146502
],
[
0.21991594056914648,
0.20538455491301938,
0.19179265172634738,
0.17932420886048606,
0.16816631809089155,
0.15849747764217276,
0.15047120675072714,
0.1441967835073669,
0.13972145496473784,
0.13702021230954242,
0.13599826121798994,
0.13650717693387582,
0.13837061999534156,
0.14141262170019825,
0.145481983133712,
0.1504687561567893,
0.15631115347564886,
0.16299297044133743,
0.17053303747275722,
0.17896951566330643,
0.18834265119502291,
0.19867951197035577,
0.2099832278332709,
0.22222775879761095,
0.23535779584836014,
0.24929247548533143,
0.2639312806068974,
0.27916067181858456,
0.2948604066080881,
0.31090895070739344,
0.3271877466545935,
0.34358434230637624,
0.3599945100259561,
0.37632353722747675,
0.392486872250925,
0.4084102896384693,
0.42402971058941163,
0.4392907857527297,
0.4541483222493498,
0.46856561607137626,
0.48251373469764786,
0.4959707822906867,
0.5089211704606829,
0.521354910604427,
0.5332669386681725,
0.5446564793815579,
0.5555264542130758,
0.5658829352425451,
0.5757346456389439,
0.5850925063307517
],
[
0.21470449602974911,
0.20014715521542015,
0.18657621683999856,
0.174186703920798,
0.1631766057958827,
0.1537326808965144,
0.14601052104627465,
0.1401115431708481,
0.13606298978025486,
0.1338088944956773,
0.13321770523395757,
0.13410592960766757,
0.13627070228911348,
0.1395219064232671,
0.1437068490447018,
0.1487244448998192,
0.15452870104268857,
0.16112268757584533,
0.1685450721239472,
0.1768522117146895,
0.18609943833004158,
0.19632503287988465,
0.2075393402897547,
0.21971992063752077,
0.23281215660760665,
0.2467337999828578,
0.2613816657023849,
0.2766389165309282,
0.2923818585231506,
0.30848566038276604,
0.3248287942498492,
0.34129623930471065,
0.3577816134841259,
0.37418844052126504,
0.3904307545674551,
0.40643321798168996,
0.4221308946838621,
0.43746878961266,
0.4524012375781945,
0.46689120292818503,
0.48090953455863905,
0.494434208071295,
0.5074495774295524,
0.5199456515092773,
0.5319174058467118,
0.5433641361623164,
0.5542888575197134,
0.5646977509933512,
0.5745996582703861,
0.5840056235599131
],
[
0.21091356960264018,
0.1963933936954851,
0.18290413516911397,
0.17065056873464363,
0.15984012268148104,
0.15066624790479316,
0.1432850858869513,
0.13778906182931966,
0.13418524764512388,
0.13238811191124544,
0.1322324688802983,
0.133504028932992,
0.1359776324439843,
0.1394519881122874,
0.14377387002388803,
0.14884985308693532,
0.15464670055708837,
0.1611825121087684,
0.16851111743312203,
0.17670274851303194,
0.1858245020980621,
0.1959239405582342,
0.20701816835159073,
0.21908918844549416,
0.23208487376719764,
0.24592395150243182,
0.2605031340040535,
0.2757047867278773,
0.2914040272715472,
0.3074746648393305,
0.3237937878215331,
0.3402450568625286,
0.35672088497397647,
0.3731237256294745,
0.38936668144716113,
0.40537361625127005,
0.4210789176203863,
0.4364270233794325,
0.4513717970332222,
0.4658758144965028,
0.47990960711645037,
0.49345089298013967,
0.5064838188959173,
0.5189982284032814,
0.5309889660350051,
0.5424552243188616,
0.5533999372862684,
0.5638292222749065,
0.5737518703720851,
0.5831788848011625
],
[
0.20868475357221564,
0.19427526430616365,
0.1809370563038803,
0.16888180275580414,
0.15832296141052427,
0.1494570504662366,
0.14243764612657767,
0.13734668243264553,
0.13417234032356568,
0.13280414856130557,
0.1330506301356239,
0.13467498066360087,
0.13743683290441558,
0.14112804488185837,
0.14559584445898135,
0.15075239079699468,
0.15657282328875308,
0.16308453853872576,
0.17035042456630903,
0.17844901464689564,
0.1874548356414262,
0.19742205259635037,
0.20837358971830752,
0.22029648317337758,
0.2331428226227015,
0.24683472054323924,
0.26127146983070587,
0.2763372834473482,
0.29190849724199813,
0.30785962701725417,
0.324068071764511,
0.34041751025473027,
0.3568001677960464,
0.3731181732748142,
0.38928422053967754,
0.40522171937974877,
0.4208645858796853,
0.43615678808352176,
0.4510517340693759,
0.4655115664905325,
0.47950640990878884,
0.49301360392964655,
0.5060169452937878,
0.5185059548487929,
0.5304751800441796,
0.5419235397433665,
0.5528537153415024,
0.5632715901347862,
0.5731857373998074,
0.5826069565620658
],
[
0.20814594431398278,
0.19393052642225042,
0.18082103986591636,
0.16903173875130925,
0.15877689203664977,
0.15025061318984595,
0.1435994750311975,
0.13889327716389188,
0.13610399887329896,
0.1351035690962679,
0.13568477099818474,
0.1375993764029927,
0.1406007876403642,
0.14447926258579746,
0.14908366940672635,
0.15432945034796616,
0.16019533234258906,
0.16671182322976152,
0.17394431109938038,
0.18197358564418326,
0.19087675471652052,
0.20071134580819683,
0.2115045825746086,
0.22324857180810415,
0.2359008661423717,
0.24938899393243105,
0.2636172407931823,
0.2784741400647354,
0.2938395610482597,
0.30959076014276377,
0.3256071494445534,
0.3417737955680532,
0.3579838000437741,
0.3741397655109419,
0.39015455351341577,
0.4059515160817335,
0.42146435088420514,
0.4366366974394948,
0.45142156366442576,
0.46578064905803235,
0.4796836129013515,
0.49310732223812437,
0.5060351042311948,
0.5184560199679928,
0.5303641712583828,
0.541758047914009,
0.5526399200299695,
0.5630152776179723,
0.5728923183531828,
0.5822814830406917
],
[
0.20939387463209283,
0.19546184641213094,
0.18266306036415092,
0.17120899455854238,
0.161308373641805,
0.1531464743319127,
0.14685801189455125,
0.14249940586154697,
0.140030278953076,
0.1393137996189806,
0.14013890075704052,
0.14225793304906645,
0.14542758144259826,
0.14944211330885157,
0.1541535781975111,
0.15947883637439422,
0.16539594280310188,
0.17193290479115078,
0.17915157388378103,
0.18712930021658378,
0.19594099946559743,
0.2056440853270809,
0.21626804983294387,
0.2278094182262925,
0.24023170151288278,
0.25346916560171423,
0.26743290190683633,
0.28201777711491144,
0.2971091877454713,
0.31258896323323226,
0.3283401238655564,
0.3442504547845285,
0.36021500489848596,
0.3761376851505909,
0.39193215382782665,
0.40752216172730527,
0.4228415033786891,
0.437833691634766,
0.4524514464761957,
0.4666560666228302,
0.4804167347508263,
0.49370979332901593,
0.5065180176191342,
0.5188299045352903,
0.53063899021856,
0.5419432048586265,
0.5527442701009397,
0.5630471420234686,
0.5728595009345672,
0.582191287972296
],
[
0.21247822900260177,
0.1989180175115447,
0.1865091999121478,
0.17545479235355807,
0.16595155481721408,
0.15816985384677335,
0.15222848753369922,
0.14817021498341776,
0.14594679281218031,
0.14542138748658942,
0.14639017235189133,
0.14861699351988691,
0.15187049653761034,
0.1559543193331367,
0.16072562618106467,
0.16610173522235064,
0.1720569947817633,
0.17861264496947515,
0.18582223451174246,
0.1937549921805472,
0.2024794854842213,
0.21204969195108817,
0.2224950568742995,
0.2338152538946393,
0.2459794414484564,
0.2589290934317373,
0.2725831344953554,
0.28684412288376543,
0.30160447611967317,
0.31675207842193726,
0.3321749302547814,
0.34776474292631177,
0.3634195340398664,
0.379045357832256,
0.39455733109127483,
0.4098801115859336,
0.424947967285707,
0.4397045508775849,
0.4541024705913127,
0.4681027275994153,
0.4816740730711872,
0.4947923242647671,
0.5074396684005612,
0.5196039749263824,
0.53127813063532,
0.5424594074798451,
0.5531488694739974,
0.5633508225035389,
0.5730723089525093,
0.5823226476390211
],
[
0.21739157872515352,
0.20428277031834385,
0.19233253704686348,
0.1817302619371417,
0.1726553945142911,
0.16525891355847663,
0.15964138991158378,
0.15583285622661558,
0.1537816748441521,
0.1533582898040646,
0.1543747334791757,
0.1566146872173926,
0.15986555206972514,
0.1639448936351348,
0.16871717591426813,
0.1741002676670143,
0.18006331365780912,
0.18661825018353784,
0.1938072309300293,
0.20168809554352227,
0.2103199100813997,
0.21975040441325921,
0.2300066842522378,
0.24108991585422362,
0.25297393139698776,
0.26560708785979764,
0.2789163681332681,
0.29281265883998825,
0.30719629941358506,
0.3219622600701904,
0.33700457660209715,
0.3522198905521529,
0.36751009494990056,
0.382784173453436,
0.397959360109277,
0.4129617549910741,
0.4277265215441078,
0.4421977741212522,
0.45632824477312006,
0.4700787999593556,
0.48341786185127916,
0.4963207756743454,
0.5087691539603935,
0.5207502202966027,
0.5322561687664534,
0.5432835503942043,
0.5538326941983271,
0.5639071676604273,
0.5735132793106172,
0.582659624552863
],
[
0.22406776361194472,
0.21147430401941017,
0.20003431453619372,
0.1899196287287432,
0.18128892812753336,
0.1742715976612785,
0.1689497209435947,
0.165342557306715,
0.16339892589803795,
0.16300156891720205,
0.16398376808216403,
0.1661541565215868,
0.1693232748216994,
0.17332595850632393,
0.1780361179464309,
0.18337314396155335,
0.18930093973630335,
0.19582132381457729,
0.20296368870800974,
0.21077274551962535,
0.21929609179719012,
0.22857315785160495,
0.23862673034660326,
0.24945772285149942,
0.2610432670236341,
0.27333768246212087,
0.28627555899710533,
0.2997760842003279,
0.31374783029854497,
0.32809340085867733,
0.34271355247126023,
0.35751059781048133,
0.3723910395280189,
0.3872674763567624,
0.4020598720650242,
0.4166962967726043,
0.43111325006009554,
0.44525566504211306,
0.4590766780248402,
0.47253723305844925,
0.4856055764872082,
0.4982566842981371,
0.5104716548662698,
0.5222370914699308,
0.5335444924475644,
0.5443896617963153,
0.5547721490948045,
0.5646947246269183,
0.5741628932895075,
0.5831844491250783
],
[
0.23238863048205752,
0.22035488085453495,
0.20945686327168983,
0.19984661926459596,
0.19166074805108757,
0.18500706785922758,
0.17995062181769814,
0.1765023868575325,
0.17461451097296415,
0.174184718665195,
0.1750698432668701,
0.1771055185674178,
0.18012740069173894,
0.18398953085440464,
0.18857704570073064,
0.19381232890338995,
0.1996550995292594,
0.20609765953533551,
0.21315677342235714,
0.22086368688784075,
0.2292537382347681,
0.23835687342331963,
0.2481901005996185,
0.2587525149539755,
0.27002305909893104,
0.2819607612473089,
0.2945069001053166,
0.307588417872755,
0.3211219239173682,
0.33501775129257466,
0.3491836892865284,
0.36352817274233795,
0.37796283722795904,
0.39240443961324295,
0.40677619871527965,
0.42100863805514616,
0.43504002108350615,
0.4488164659483688,
0.4622918175363102,
0.47542734279170334,
0.48819130340155076,
0.5005584489839818,
0.5125094644322256,
0.52403039715286,
0.5351120835033184,
0.5457495885957443,
0.5559416695832925,
0.5656902693805184,
0.5750000453150745,
0.5838779353154404
],
[
0.2421966082248459,
0.23074674834208775,
0.22040304632101612,
0.21129719901460753,
0.2035442848499031,
0.1972322639011687,
0.19241161805299117,
0.18908756627322357,
0.18721740530336548,
0.18671459683956265,
0.18745942771372673,
0.1893141718704492,
0.19213955996637844,
0.19580941394251336,
0.20022126614844385,
0.2053020443083727,
0.21100895346175733,
0.21732633090211106,
0.22425955362619912,
0.23182718233378224,
0.24005252315957304,
0.2489556937501876,
0.2585470785501489,
0.26882275484209334,
0.27976211298071757,
0.2913275537609408,
0.30346588934339497,
0.31611093692418896,
0.3291867740000885,
0.342611190684488,
0.35629898767755164,
0.37016489203119723,
0.38412597246150804,
0.3981035200435163,
0.4120244167546839,
0.42582204718914957,
0.43943682370336173,
0.45281639814851093,
0.4659156290403779,
0.4786963650443684,
0.4911270963420064,
0.5031825161909703,
0.5148430265325905,
0.5260942141554993,
0.5369263177569888,
0.5473337011852649,
0.557314344065177,
0.5668693577576945,
0.5760025320347507,
0.5847199158371972
],
[
0.2533095447454172,
0.24244969802594268,
0.23265635360318368,
0.22404169661820197,
0.21670115832566325,
0.21070550482365816,
0.20609349943709668,
0.20286680989052233,
0.20098878264503184,
0.200388032918579,
0.20096664452048374,
0.20261157985026135,
0.2052071599285892,
0.20864643248411774,
0.21283979137379924,
0.2177200131560243,
0.22324362053151922,
0.22938900868396234,
0.23615207466108343,
0.24354023585163453,
0.2515657649246192,
0.26023932183062093,
0.26956442597763797,
0.2795333912554624,
0.29012497609576504,
0.30130373143206113,
0.3130208115952448,
0.32521587856254375,
0.3378196844184315,
0.35075694449175465,
0.3639491872967427,
0.3773173595167762,
0.3907840536452721,
0.40427530011308793,
0.41772192012558257,
0.4310604706330419,
0.4442338322412447,
0.45719149865374836,
0.46988962635956466,
0.48229089889311766,
0.49436425337140766,
0.5060845096536685,
0.5174319352715891,
0.528391772721131,
0.5389537499950217,
0.5491115904066696,
0.5588625337610698,
0.5682068776722299,
0.5771475452038055,
0.5856896829154703
],
[
0.26553466380952684,
0.2552565787043213,
0.2459975687123711,
0.23785207003076586,
0.23089844147833788,
0.2251932388089424,
0.22076623390440683,
0.21761727207266565,
0.2157159570112685,
0.21500469115027715,
0.215404878720977,
0.21682536575616632,
0.21917171457568901,
0.22235483673720127,
0.2262977994123127,
0.2309401077610525,
0.2362392666904119,
0.24216982541741836,
0.24872037795320984,
0.2558891507622247,
0.2636788795201788,
0.272091669694877,
0.2811244513732491,
0.2907654848676567,
0.30099217379731324,
0.31177023329713943,
0.3230540808982842,
0.3347881936858147,
0.3469091173423603,
0.3593478138803909,
0.3720320780979687,
0.38488881795408003,
0.39784606380726556,
0.410834634020908,
0.42378943384009704,
0.43665039926386,
0.4493631192720935,
0.46187918092511415,
0.4741562854948662,
0.48615818253931325,
0.49785446475677403,
0.5092202610287778,
0.5202358592476714,
0.530886284911691,
0.5411608563658843,
0.5510527331041033,
0.5605584697480644,
0.5696775851471828,
0.5784121534314461,
0.5867664217236177
],
[
0.27867975251395455,
0.26896491441244785,
0.260216392737524,
0.25251311595978493,
0.24591914823690508,
0.24047970396760449,
0.23621791650044902,
0.23313304443909313,
0.23120069348511055,
0.23037532864425325,
0.23059491338266905,
0.23178707167589652,
0.2338758696292419,
0.23678824048477662,
0.24045922250365748,
0.2448354629674248,
0.24987676326229877,
0.25555572617672756,
0.2618557853500484,
0.2687680454030198,
0.2762874448976988,
0.28440877452318536,
0.29312303928791583,
0.30241455142268714,
0.31225899694292286,
0.32262255991661,
0.3334620433312691,
0.3447258167468157,
0.35635535970838894,
0.3682871549788615,
0.38045470694300415,
0.3927905040255036,
0.4052277961553993,
0.41770210891111664,
0.4301524587735762,
0.4425222663084166,
0.454759986083013,
0.46681948515903327,
0.47866020812779037,
0.49024716791969325,
0.5015507997709662,
0.5125467121197119,
0.5232153637859163,
0.5335416921942865,
0.5435147130027846,
0.5531271075043942,
0.562374810660676,
0.5712566096162148,
0.5797737600073711,
0.5879296252707257
],
[
0.29256097957625316,
0.28338437748458034,
0.27511825315131627,
0.2678283904314532,
0.2615672087686236,
0.256371101499291,
0.2522584531913027,
0.24922874264852954,
0.24726305125982398,
0.24632610461328217,
0.2463697152840935,
0.24733723593812992,
0.2491684492113892,
0.25180426188852745,
0.25519063843392564,
0.2592813671399922,
0.2640394499913325,
0.26943710161176665,
0.27545450830812007,
0.28207762489466515,
0.2892953701379004,
0.29709661706953766,
0.3054673590466905,
0.31438836890798777,
0.3238335682612966,
0.3337692058716559,
0.34415383006297906,
0.3549389484597685,
0.36607021005474916,
0.3774889213827465,
0.38913371517781536,
0.4009422169598195,
0.41285259248027756,
0.42480489839006547,
0.43674219408371295,
0.44861140136041405,
0.4603639194280732,
0.4719560163923831,
0.483349025977718,
0.49450938130447814,
0.5054085174948643,
0.516022672855808,
0.5263326152742706,
0.5363233168770216,
0.545983596360581,
0.55530574493241,
0.5642851486529429,
0.572919917185334,
0.5812105265552763,
0.5891594814795306
],
[
0.3070076256572829,
0.29834079119687834,
0.2905274018559438,
0.2836223457329838,
0.2776687413228147,
0.2726962461769039,
0.2687199359754585,
0.2657399807243118,
0.26374228056556026,
0.2627001066977153,
0.2625766431724173,
0.2633281778530369,
0.2649075831683336,
0.2672676850841845,
0.27036414686545335,
0.274157578503918,
0.2786146992953506,
0.2837085069458456,
0.2894175251175563,
0.2957243016819023,
0.30261340399687175,
0.31006919803948135,
0.31807370018640013,
0.32660475396045857,
0.3356347163067974,
0.3451297522978094,
0.35504974976932435,
0.3653487909001975,
0.3759760658408121,
0.3868770875092536,
0.39799506431053355,
0.40927230287923555,
0.42065153879324657,
0.43207712292034695,
0.4434960196408536,
0.45485859757459657,
0.46611921228235814,
0.4772365936125141,
0.4881740585769942,
0.4988995748590884,
0.5093857013276893,
0.5196094311997429,
0.5295519615182697,
0.5391984099698707,
0.5485374971553826,
0.5575612095136033,
0.5662644553412152,
0.5746447238388642,
0.5827017548823514,
0.5904372252765597
],
[
0.32186441182199693,
0.3136776430284051,
0.306287555894618,
0.2997401477733354,
0.29407120623906013,
0.2893053067716847,
0.28545526799242305,
0.2825221781255194,
0.2804960623483863,
0.2793571922975977,
0.27907795634593335,
0.27962512887561336,
0.2809623164363503,
0.2830523313552175,
0.2858592532616926,
0.2893499816726307,
0.29349514860194553,
0.29826933832684416,
0.3036506422867982,
0.3096196520591474,
0.31615805416435605,
0.3232470291928493,
0.33086566852169524,
0.33898960310213266,
0.34758999449144334,
0.35663297758129514,
0.3660795791200875,
0.3758860774456851,
0.38600472502353617,
0.39638473018180914,
0.40697338735407296,
0.41771725264390963,
0.42856327864122834,
0.4394598441537694,
0.45035763678948315,
0.46121036636134966,
0.4719753033951222,
0.48261364913751603,
0.4930907516100774,
0.5033761870316503,
0.5134437280782979,
0.5232712206872636,
0.5328403900688478,
0.5421365947659844,
0.5511485453685815,
0.5598680021093542,
0.5682894632128683,
0.5764098536465831,
0.5842282218915033,
0.5917454505387655
],
[
0.33699217437043494,
0.32925602490173134,
0.3222611230862858,
0.31604628499161985,
0.31064156437141427,
0.30606772522068243,
0.3023360693436253,
0.2994486640084819,
0.2973989864909504,
0.2961729646595705,
0.29575035019274465,
0.29610632041625257,
0.2972131736172483,
0.2990419669593496,
0.30156394864169817,
0.3047516563065637,
0.3085795891625525,
0.3130244078471657,
0.3180646688723778,
0.32368015374643955,
0.3298508996390921,
0.33655607156820355,
0.3437728297651851,
0.3514753376650425,
0.35963402779650205,
0.36821520069629116,
0.37718098420468416,
0.38648963560267663,
0.3960961336224263,
0.40595298497988763,
0.4160111612005801,
0.4262210841747592,
0.43653358977555057,
0.4469008143787776,
0.45727696605414747,
0.4676189582058637,
0.4778868970947169,
0.4880444253368679,
0.49805893109351806,
0.5079016375482283,
0.5175475898982206,
0.5269755579897836,
0.5361678723968207,
0.5451102105902721,
0.5537913482018788,
0.5622028884914387,
0.5703389811552728,
0.57819603968041,
0.5857724646282296,
0.5930683785658242
],
[
0.3522675205463466,
0.3449537036364748,
0.3383277460399392,
0.33242269414711434,
0.32726412862563176,
0.3228699541975998,
0.319250457882073,
0.31640864086388326,
0.31434081222519783,
0.3130374140710178,
0.3124840284658452,
0.3126624990959884,
0.31355208701996345,
0.3151305724499777,
0.31737521486768056,
0.3202634928915032,
0.3237735634544424,
0.32788440641957095,
0.33257565387427696,
0.33782713944697135,
0.34361823694535554,
0.3499270835916217,
0.3567297961168553,
0.3639997853431224,
0.37170725727642867,
0.3798189599321383,
0.3882982008969188,
0.39710512717938407,
0.4061972313100928,
0.4155300290070163,
0.42505784489080634,
0.43473464273673346,
0.44451484345878534,
0.4543540848874414,
0.46420989003690977,
0.47404222307255395,
0.483813923323695,
0.4934910167678517,
0.5030429112325079,
0.5124424862290627,
0.5216660911388671,
0.5306934667768571,
0.5395076055302287,
0.5480945646378771,
0.5564432460151391,
0.5645451545537088,
0.5723941452005628,
0.5799861674590846,
0.5873190143410373,
0.5943920812831354
],
[
0.36758193153871255,
0.3606637965601533,
0.35438262137962123,
0.3487668213082802,
0.3438384792289058,
0.3396133396026225,
0.3361010012232212,
0.3333052920264817,
0.33122480008560096,
0.3298535275340471,
0.32918162835306525,
0.3291961864591275,
0.3298819872228237,
0.3312222337319042,
0.3331991595635609,
0.3357944937743489,
0.33898974258741377,
0.34276626672536825,
0.3471051532122088,
0.35198690381038666,
0.3573909855485116,
0.36329530767019264,
0.3696756998170938,
0.3765054659811179,
0.38375507770212397,
0.39139205044896447,
0.3993810229925707,
0.4076840352304771,
0.41626097913462984,
0.4250701827478248,
0.43406907939092865,
0.4432149130538562,
0.45246543500194136,
0.46177955419254424,
0.4711179134261464,
0.48044337279649496,
0.48972139091014405,
0.4989203018894691,
0.5080114920818452,
0.5169694846571253,
0.5257719430359872,
0.5343996055881801,
0.542836164533445,
0.5510681017208375,
0.559084493175881,
0.5668767931736484,
0.5744386072652407,
0.5817654622669822,
0.5888545797981101,
0.5957046585832498
],
[
0.3828406215498221,
0.3762933406671126,
0.37033484703755515,
0.3649898273648087,
0.36027760950160864,
0.35621228156128315,
0.3528029554061962,
0.35005414705645627,
0.34796624243377894,
0.3465360159508354,
0.3457571708614078,
0.34562087275354586,
0.34611624996392415,
0.34723083643063146,
0.3489509338165502,
0.35126187166471484,
0.35414814838451,
0.3575934433295693,
0.3615805015566895,
0.36609090714135833,
0.37110477591828295,
0.37660041116666904,
0.3825539731384375,
0.3889392135366772,
0.39572731880747575,
0.40288689277799655,
0.4103840923142955,
0.4181829122870101,
0.42624560092614533,
0.43453317549574066,
0.4430060019674199,
0.45162440090294403,
0.4603492442629607,
0.4691425131734738,
0.4779677935707272,
0.4867906940232625,
0.4955791770697912,
0.5043038015720677,
0.5129378785812607,
0.5214575469738385,
0.5298417776879961,
0.5380723169244295,
0.5461335793448286,
0.5540125022928009,
0.5616983715489137,
0.5691826282661115,
0.5764586656410822,
0.5835216226638635,
0.5903681810323437,
0.5969963700814845
],
[
0.3979613388107611,
0.3917619113507142,
0.3861059168825342,
0.3810150195752057,
0.37650635099408736,
0.3725927001318813,
0.36928280642594524,
0.36658172415473705,
0.36449122561105257,
0.3630102130332505,
0.36213511427995215,
0.3618602431244831,
0.3621781103711426,
0.363079675837438,
0.3645545335094714,
0.3665910236055016,
0.36917626715709156,
0.37229612231790515,
0.3759350676241989,
0.3800760255484066,
0.38470014856795753,
0.38978659761791173,
0.39531234719285985,
0.401252051132708,
0.4075779979547623,
0.4142601752918304,
0.42126645121694606,
0.4285628679909507,
0.43611403292594275,
0.4438835829654518,
0.45183469490759304,
0.45993061194937573,
0.4681351589192476,
0.4764132224155561,
0.4847311772219254,
0.49305724603683054,
0.5013617851014408,
0.5096174932956615,
0.5177995464383776,
0.5258856617663347,
0.5338560998807624,
0.5416936129178747,
0.5493833484352164,
0.5569127186431626,
0.564271244282199,
0.57145038177498,
0.5784433413758612,
0.5852449029917772,
0.5918512352327053,
0.5982597221284676
],
[
0.41287320878788014,
0.407000361641484,
0.40162840236778075,
0.3967765198335621,
0.3924600656442392,
0.3886907788653711,
0.3854770828216655,
0.3828244220086954,
0.3807356079886936,
0.37921114739816925,
0.3782495317119183,
0.3778474756864633,
0.37800009801061357,
0.37870104263982746,
0.3799425423110755,
0.38171542728694025,
0.38400908342657825,
0.3868113652800634,
0.390108472738252,
0.39388480384774444,
0.39812280099252007,
0.40280281153135955,
0.40790298587633395,
0.4133992349957924,
0.4192652651926362,
0.4254727012470035,
0.43199130068603847,
0.4387892533713163,
0.44583355302250477,
0.4530904216461549,
0.460525764589995,
0.4681056331340448,
0.4757966728536572,
0.48356653892860657,
0.4913842635321141,
0.49922056484802907,
0.5070480916618263,
0.5148416015045384,
0.5225780737770263,
0.5302367620336834,
0.5377991916339758,
0.5452491103121516,
0.5525723999424417,
0.5597569579821506,
0.566792556857974,
0.5736706890199582,
0.580384404614224,
0.5869281478012837,
0.5932975967420312,
0.5994895112471568
],
[
0.4275156650735518,
0.4219497027990537,
0.41684481802301604,
0.41221814576634763,
0.40808356573476745,
0.40445193819365205,
0.4013313892168929,
0.39872761503561843,
0.39664417702692045,
0.3950827637463319,
0.3940434032715731,
0.3935246166604803,
0.3935235102522863,
0.39403580993745674,
0.39505584402871774,
0.39657648321838834,
0.39858904696357006,
0.40108318628735007,
0.4040467540038445,
0.4074656749164137,
0.41132383026509595,
0.4156029719340052,
0.4202826819262919,
0.4253403908457445,
0.4307514654753125,
0.43648937035460544,
0.44252590222416943,
0.4488314901777089,
0.45537554915058726,
0.4621268705731955,
0.4690540319422468,
0.47612580673480825,
0.48331155730004943,
0.4905815957571553,
0.4979075010893445,
0.505262384148844,
0.5126210958286661,
0.519960376947432,
0.5272589512524322,
0.534497565271048,
0.5416589804929458,
0.548727924555651,
0.5556910087775015,
0.5625366195991567,
0.5692547913329968,
0.5758370671575833,
0.5822763546090749,
0.588566780985257,
0.5947035531555387,
0.6006828253185262
],
[
0.44183748123044914,
0.4365601205232826,
0.4317066477423571,
0.42729246757611355,
0.423330214843777,
0.419829986810172,
0.41679960845331926,
0.41424490309357237,
0.4121699430465481,
0.4105772598348819,
0.4094680000881309,
0.4088420204571319,
0.40869792158459634,
0.409033026593307,
0.40984331329125084,
0.4111233114155637,
0.41286597715376666,
0.4150625574349726,
0.41770245652807014,
0.4207731175152301,
0.42425993112546795,
0.4281461838958974,
0.4324130563075211,
0.43703967917171205,
0.44200325311916916,
0.44727923182865115,
0.45284156509561985,
0.4586629935322915,
0.46471538311948624,
0.47097008536526896,
0.47739830764541213,
0.4839714783973836,
0.49066159305362506,
0.4974415286741855,
0.5042853178758239,
0.5111683755610952,
0.5180676748700499,
0.5249618715057579,
0.5318313779780748,
0.5386583912789187,
0.545426879005351,
0.552122529980981,
0.5587326760169927,
0.565246191646723,
0.5716533785197555,
0.5779458407173051,
0.5841163566162031,
0.5901587521487369,
0.5960677794400735,
0.6018390039080835
],
[
0.4557958997321709,
0.4507901091108912,
0.4461735023183669,
0.4419600020062538,
0.43816116531274296,
0.4347864039400339,
0.4318432254937809,
0.42933747154661556,
0.42727353025408693,
0.42565450592084914,
0.4244823339439304,
0.4237578361348314,
0.423480717649688,
0.42364951194059564,
0.4242614838990785,
0.42531250364977474,
0.4267969044899862,
0.4287073386099141,
0.43103464379836187,
0.4337677335367576,
0.4368935217397379,
0.44039689181900443,
0.44426071760423724,
0.44846594089690367,
0.4529917071428581,
0.45781555711621313,
0.46291366894272706,
0.4682611416175261,
0.4738323087057157,
0.4796010693677347,
0.4855412233095046,
0.4916267966813981,
0.49783234720331787,
0.504133238677682,
0.5105058773441232,
0.5169279050103811,
0.5233783463693003,
0.5298377102253288,
0.5362880463896781,
0.5427129616859994,
0.5490975997981932,
0.5554285905797626,
0.5616939749443766,
0.5678831116033249,
0.5739865717529589,
0.5799960273983911,
0.585904138386598,
0.5917044424718522,
0.5973912519053556,
0.6029595591813374
],
[
0.4693558464579972,
0.46460570243275884,
0.46021237931403025,
0.45618850894306223,
0.4525446944769444,
0.4492897136079379,
0.44643073486968365,
0.44397352556324415,
0.44192263212857996,
0.4402815179098809,
0.4390526486141008,
0.43823752160691354,
0.4378366408051951,
0.43784944372432844,
0.4382741908618999,
0.43910782993346764,
0.44034584861148424,
0.44198212956355515,
0.44400882096907274,
0.4464162344895423,
0.4491927809734334,
0.45232495202699663,
0.4557973530041879,
0.4595927900292684,
0.4636924105057546,
0.46807589339726596,
0.47272168264211434,
0.477607254631135,
0.4827094089330873,
0.4880045705089883,
0.4934690915386344,
0.4990795416283793,
0.5048129764538228,
0.5106471766513835,
0.5165608508312416,
0.5225337987697293,
0.5285470329997008,
0.5345828590282746,
0.5406249161779944,
0.5466581825058973,
0.5526689483686205,
0.5586447639588681,
0.5645743665480926,
0.5704475932579142,
0.5762552849870708,
0.5819891866892686,
0.5876418485832219,
0.5932065321346819,
0.5986771238354798,
0.6040480589672169
],
[
0.48248921701575587,
0.4779797816498569,
0.4737970003433099,
0.46995236253398925,
0.46645560993611346,
0.463314920949122,
0.460537102562376,
0.45812777118900067,
0.4560915059829863,
0.4544319618244194,
0.4531519338167497,
0.4522533702438878,
0.4517373359006449,
0.4516039320501972,
0.45185218264768895,
0.45247989874999467,
0.45348353421334847,
0.4548580459717279,
0.45659677154049044,
0.458691335048802,
0.4611315911934828,
0.4639056141304769,
0.4669997355874649,
0.47039863352860606,
0.47408546970300625,
0.47804207156367606,
0.4822491515580313,
0.486686554842987,
0.4913335251924972,
0.496168978299913,
0.5011717718186391,
0.5063209622584637,
0.5115960401447586,
0.5169771365118843,
0.5224451956924574,
0.5279821113390694,
0.5335708245494453,
0.5391953847559826,
0.5448409756060846,
0.5504939093445916,
0.5561415941803819,
0.5617724797634792,
0.5673759862224932,
0.5729424222367079,
0.5784628973768378,
0.5839292334875142,
0.5893338792530995,
0.594669831339698,
0.599930564693248,
0.6051099737462303
],
[
0.4951742219079848,
0.490891442674317,
0.4869072059511999,
0.48323197539667234,
0.4798747018916076,
0.47684298889142046,
0.4741432615626858,
0.47178092377771286,
0.4697604889455877,
0.4680856738041493,
0.46675944830221905,
0.46578403910266447,
0.46516088856743654,
0.46489057494123076,
0.46497270253741424,
0.46540577288402774,
0.4661870489627882,
0.4673124249131459,
0.4687763129714192,
0.470571558090391,
0.47268938876399,
0.4751194101989072,
0.4778496432785549,
0.48086660992284497,
0.4841554626456284,
0.48770015354002233,
0.49148363575533655,
0.4954880889054563,
0.49969515885332677,
0.5040862019752016,
0.5086425242910294,
0.5133456066761954,
0.5181773086356556,
0.523120044698048,
0.5281569292453883,
0.5332718874107183,
0.5384497314429048,
0.5436762035636447,
0.5489379877553326,
0.554222694068542,
0.5595188198931204,
0.5648156931843423,
0.5701034028796876,
0.5753727217020502,
0.580615026253958,
0.5858222188069875,
0.590986654530179,
0.5961010771335837,
0.6011585650809044,
0.6061524896984847
],
[
0.5073947796277228,
0.5033254101004697,
0.499528393364704,
0.49601326058348955,
0.4927882273079807,
0.4898603405700938,
0.4872356274029101,
0.4849192312082128,
0.48291552406903543,
0.48122818580070525,
0.47986024394482396,
0.47881407267139475,
0.4780913522901684,
0.4776929944492363,
0.47761904085958645,
0.4778685453644472,
0.4784394502981102,
0.4793284683523126,
0.4805309806451563,
0.4820409604608991,
0.4838509303174012,
0.485951957761659,
0.48833369275259203,
0.4909844468405259,
0.49389131177851836,
0.49704031287907346,
0.5004165905144315,
0.5040046017635011,
0.5077883333982051,
0.5117515171882925,
0.5158778388503816,
0.5201511327994481,
0.5245555560788399,
0.5290757363342299,
0.5336968903417765,
0.5384049112906627,
0.5431864246566559,
0.5480288140026234,
0.552920219337657,
0.5578495117097604,
0.5628062484672943,
0.5677806140883281,
0.5727633516482119,
0.5777456898926153,
0.5827192705377146,
0.5876760798731837,
0.5926083880466094,
0.5975086986130151,
0.6023697100940545,
0.6071842904584074
],
[
0.5191399492413681,
0.515271487919958,
0.5116509868585151,
0.508287121060928,
0.5051874161218188,
0.5023583784551017,
0.4998056255561285,
0.49753400476913623,
0.495547690489597,
0.49385025202193095,
0.4924446871983728,
0.49133342005525815,
0.4905182640578515,
0.4900003552885891,
0.4897800624436869,
0.4898568822640924,
0.4902293300735571,
0.49089483538665046,
0.4918496521130329,
0.4930887917924209,
0.4946059866529542,
0.4963936872269357,
0.4984430969378453,
0.5007442436612122,
0.5032860859329256,
0.5060566493944622,
0.5090431873623928,
0.5122323581884061,
0.5156104113899364,
0.5191633743877545,
0.522877232051054,
0.5267380920550687,
0.5307323302103494,
0.5348467113239347,
0.539068482694781,
0.5433854389275434,
0.5477859582776512,
0.5522590121373144,
0.5567941504721393,
0.5613814669734132,
0.5660115483708891,
0.5706754127411401,
0.575364441750128,
0.5800703116037537,
0.5847849270786909,
0.5895003624104501,
0.5942088120769629,
0.598902553688383,
0.6035739243323398,
0.6082153108799014
],
[
0.5304033963842322,
0.5267240404362631,
0.5232699341292715,
0.5200489604741344,
0.5170679939237924,
0.5143330154298864,
0.5118492268136329,
0.5096211546972506,
0.5076527354953725,
0.5059473749002938,
0.5045079777224185,
0.5033369466380072,
0.5024361511084986,
0.501806870242585,
0.5014497154832155,
0.5013645405756452,
0.5015503472223337,
0.5020051951212049,
0.502726124728461,
0.5037091001400097,
0.5049489780366604,
0.5064395068073665,
0.5081733578945264,
0.5101421892521215,
0.5123367387293453,
0.5147469433364674,
0.5173620788387482,
0.5201709130471673,
0.5231618655801806,
0.5263231667667622,
0.5296430087187401,
0.5331096823608478,
0.5367116952901253,
0.5404378666496167,
0.5442773966478655,
0.5482199098405974,
0.5522554727263018,
0.5563745875160828,
0.5605681650564368,
0.564827480763054,
0.5691441180324853,
0.5735099039217294,
0.5779168419256673,
0.5823570464570537,
0.5868226831758664,
0.5913059186681868,
0.5957988821916292,
0.6002936413408564,
0.6047821925997158,
0.6092564668887671
],
[
0.541182888621728,
0.5376814992811478,
0.5343842248795375,
0.5312982119618244,
0.5284297186104313,
0.5257842161231667,
0.5233664897491556,
0.5211807302507319,
0.5192306091270522,
0.5175193319602471,
0.5160496663776665,
0.5148239433815365,
0.5138440330850623,
0.5131112980254723,
0.5126265290380039,
0.5123898700452949,
0.5124007389610046,
0.5126577521849954,
0.5131586598823173,
0.5139002984303169,
0.514878565162554,
0.5160884189392084,
0.5175239082573242,
0.5191782267197751,
0.5210437938501558,
0.5231123576028942,
0.5253751135840901,
0.5278228350493323,
0.5304460072263422,
0.5332349594331751,
0.5361799888048812,
0.5392714701534372,
0.5424999474976319,
0.545856204028519,
0.5493313086332101,
0.5529166384957527,
0.5566038786445227,
0.5603850005450688,
0.5642522228821735,
0.5681979584855122,
0.5722147518967922,
0.5762952123365244,
0.5804319468074203,
0.5846174977870822,
0.5888442894483814,
0.5931045856473766,
0.5973904620896383,
0.601693794185094,
0.6060062611874264,
0.6103193663411942
],
[
0.5514798177329241,
0.5481458943101302,
0.5449964298541814,
0.5420378839025545,
0.5392759306191073,
0.5367155488624225,
0.5343611113646833,
0.5322164660850613,
0.5302850037049777,
0.5285697065912939,
0.5270731762485861,
0.525797638167152,
0.5247449248921139,
0.5239164399376406,
0.5233131067132674,
0.5229353078075624,
0.5227828207121968,
0.5228547563266055,
0.5231495063558512,
0.5236647050321932,
0.524397209516255,
0.5253431019550591,
0.5264977146007519,
0.5278556777466715,
0.5294109886400892,
0.5311570980991527,
0.5330870103937032,
0.5351933911192338,
0.5374686773447347,
0.5399051842619357,
0.5424952028901864,
0.5452310840573177,
0.5481053048220826,
0.5511105146542854,
0.554239559962779,
0.5574854868752432,
0.5608415234457287,
0.5643010436219944,
0.5678575162807924,
0.5715044433852229,
0.5752352917996113,
0.5790434234972707,
0.5829220288159833,
0.5868640670737112,
0.5908622182871568,
0.5949088489855187,
0.5989959942371865,
0.6031153570689992,
0.6072583255165063,
0.6114160066556145
],
[
0.5612987476572874,
0.5581224074810477,
0.5551122599658141,
0.5522741228702538,
0.5496131177118622,
0.5471337498950083,
0.5448399881985704,
0.5427353377853409,
0.5408229016544965,
0.539105426589257,
0.537585331059629,
0.5362647141077691,
0.5351453458439531,
0.5342286416887619,
0.5335156237984432,
0.5330068741121294,
0.532702484094467,
0.5326020064771466,
0.5327044141202152,
0.533008070541457,
0.533510715749781,
0.5342094698408741,
0.5351008554632456,
0.5361808388442272,
0.5374448876857754,
0.5388880430001546,
0.5405050009434291,
0.54229019998712,
0.5442379083879654,
0.5463423068883874,
0.5485975618965635,
0.5509978850221234,
0.5535375757298164,
0.556211044953205,
0.5590128187084816,
0.5619375219858984,
0.5649798443947299,
0.568134490124053,
0.5713961156920797,
0.57475925964027,
0.5782182687495552,
0.5817672254969251,
0.5853998813321362,
0.5891095999552399,
0.592889314151352,
0.596731498938395,
0.6006281628646014,
0.6045708583182974,
0.6085507107453916,
0.6125584657676619
],
[
0.5706469876563837,
0.5676189496901689,
0.5647401460204728,
0.5620157949116636,
0.5594504960383668,
0.5570483021998349,
0.5548127907588292,
0.5527471298937755,
0.5508541353864947,
0.5491363146047036,
0.5475958955026505,
0.5462348397608622,
0.5450548405139377,
0.5440573063708914,
0.5432433345212879,
0.5426136765632875,
0.5421687012282715,
0.5419083583762251,
0.5418321484875189,
0.5419391013966732,
0.542227767242913,
0.5426962216126207,
0.5433420856986303,
0.5441625610892331,
0.5451544776181468,
0.54631435164368,
0.5476384512583333,
0.5491228643201983,
0.5507635648848468,
0.552556473618965,
0.5544975080895942,
0.5565826194195376,
0.5588078126358492,
0.5611691490556389,
0.5636627301827025,
0.5662846637553568,
0.5690310137149239,
0.571897736884049,
0.574880609990855,
0.5779751512974362,
0.5811765414532092,
0.5844795482768393,
0.5878784599753382,
0.591367030854864,
0.5949384429011157,
0.5985852857583703,
0.6022995566753492,
0.6060726809780845,
0.6098955526391534,
0.6137585935978697
],
[
0.5795341907445938,
0.5766457610491128,
0.5738908400308886,
0.5712740866720231,
0.5687996095404287,
0.5664710314541902,
0.5642915542937748,
0.562264019829793,
0.5603909629589817,
0.5586746545133324,
0.5571171317657769,
0.5557202158248362,
0.5544855162067377,
0.5534144239124896,
0.552508095241208,
0.5517674292731644,
0.5511930424064818,
0.5507852434994783,
0.550544013046957,
0.5504689894155149,
0.5505594645132321,
0.5508143904241077,
0.55123239756314,
0.5518118238792786,
0.5525507536296526,
0.5534470633460892,
0.5544984718822877,
0.5557025909222472,
0.5570569720853809,
0.5585591467999242,
0.5602066554320942,
0.5619970627332059,
0.5639279574622591,
0.5659969350047833,
0.5682015628763253,
0.5705393301008668,
0.5730075825181413,
0.5756034470296055,
0.5783237485777676,
0.5811649242162934,
0.584122938932428,
0.5871932079100476,
0.5903705296718301,
0.5936490340322992,
0.5970221480674449,
0.6004825824129438,
0.6040223392037823,
0.6076327419297631,
0.6113044864700475,
0.6150277116452444
],
[
0.5879719777030941,
0.5852150353217977,
0.5825770392884172,
0.5800621280071863,
0.5776739497893479,
0.5754157216625588,
0.5732902887696354,
0.5713001808771038,
0.569447662945514,
0.5677347773464497,
0.5661633760962973,
0.5647351423530801,
0.5634516013223057,
0.562314121571959,
0.5613239085011352,
0.5604819922858935,
0.5597892129972819,
0.5592462057235876,
0.5588533884227085,
0.5586109548902951,
0.558518874681811,
0.5585769011143258,
0.5587845876518976,
0.5591413121105994,
0.5596463072732193,
0.560298695745835,
0.5610975262789365,
0.5620418083639802,
0.563130541737361,
0.5643627374963902,
0.5657374278567249,
0.5672536621409421,
0.5689104873502523,
0.5707069125881055,
0.572641857616926,
0.574714086871158,
0.5769221312518642,
0.5792642009224315,
0.5817380930497035,
0.584341098939199,
0.5870699152606801,
0.5899205640326173,
0.5928883257320303,
0.5959676893401216,
0.5991523223624934,
0.6024350629287696,
0.6058079350433515,
0.609262186995029,
0.6127883519052207,
0.6163763284634292
],
[
0.5959735870712399,
0.5933405692798308,
0.5908130343439951,
0.5883946376271497,
0.5860885981758164,
0.5838977527042463,
0.5818246106004168,
0.5798714070192993,
0.5780401514807156,
0.5763326699044209,
0.5747506386544746,
0.5732956098791185,
0.5719690281662247,
0.5707722392317578,
0.5697064919666507,
0.5687729356398915,
0.5679726143571078,
0.5673064609815963,
0.5667752926305764,
0.566379809570494,
0.5661205988732935,
0.5659981435960838,
0.5660128375559135,
0.5661650050434757,
0.5664549241124649,
0.5668828514524908,
0.5674490463556656,
0.5681537909644792,
0.568997403873537,
0.5699802442681406,
0.5711027041207383,
0.5723651865179199,
0.5737680689264618,
0.5753116510836049,
0.5769960881595978,
0.578821310827052,
0.5807869348153456,
0.5828921633635159,
0.5851356866514669,
0.5875155827368953,
0.5900292247183386,
0.5926731987650921,
0.5954432373037368,
0.5983341710498532,
0.6013399027613301,
0.6044534046207981,
0.6076667400935454,
0.6109711100228905,
0.6143569216852691,
0.6178138785932655
],
[
0.6035535514618334,
0.6010374376396465,
0.598614381892974,
0.5962875930924892,
0.594059892078412,
0.591933761695114,
0.5899113982512435,
0.5879947619258931,
0.586185623924299,
0.5844856086027324,
0.5828962292994185,
0.5814189171865152,
0.5800550430525957,
0.5788059324900805,
0.5776728754539059,
0.5766571315386662,
0.5757599325617514,
0.5749824841206045,
0.5743259677060785,
0.5737915447065145,
0.5733803632467569,
0.5730935683023869,
0.572932314951075,
0.5728977840161225,
0.5729911987717209,
0.5732138408649408,
0.5735670632123198,
0.5740522973883943,
0.5746710529689188,
0.5754249064396165,
0.5763154776349475,
0.5773443922185959,
0.5785132294316362,
0.5798234551758596,
0.5812763414174313,
0.5828728738307358,
0.5846136504904416,
0.5864987751980456,
0.5885277496390685,
0.5906993689598049,
0.5930116254933856,
0.595461625236499,
0.5980455212823971,
0.6007584677746589,
0.6035945970994384,
0.6065470220366727,
0.6096078635079774,
0.6127683034604899,
0.6160186613798246,
0.6193484919926601
],
[
0.610727400414395,
0.6083216940641812,
0.6059976033215196,
0.6037579261873446,
0.6016051162783194,
0.5995413296433224,
0.5975684733700857,
0.5956882538805301,
0.5939022230379184,
0.5922118205217592,
0.590618411341195,
0.5891233178219506,
0.5877278458795634,
0.5864333058451209,
0.5852410285035432,
0.5841523773073307,
0.583168757916224,
0.5822916262694879,
0.581522496316672,
0.5808629483193105,
0.5803146383053228,
0.5798793088347185,
0.5795588007528254,
0.5793550651048348,
0.5792701739057884,
0.5793063280463853,
0.5794658603077076,
0.5797512312919059,
0.5801650160773576,
0.5807098795911341,
0.5813885390617013,
0.5822037124599011,
0.5831580525322454,
0.5842540668403745,
0.5854940250963019,
0.5868798559687384,
0.5884130363706557,
0.5900944769615414,
0.5919244081530676,
0.5939022712470716,
0.5960266194263713,
0.5982950331456203,
0.6007040540339359,
0.6032491407458634,
0.6059246493227571,
0.6087238396083199,
0.6116389081651076,
0.6146610470330902,
0.6177805266248229,
0.6209868001250721
],
[
0.6175113898169969,
0.6152100984826936,
0.6129799093922573,
0.6108232443601349,
0.6087422205045311,
0.6067386944489138,
0.6048143086320432,
0.6029705379385947,
0.6012087350374947,
0.5995301730778313,
0.5979360847214377,
0.5964276968605492,
0.5950062607489134,
0.5936730776348791,
0.5924295202963014,
0.5912770511139721,
0.5902172374627239,
0.5892517652343074,
0.5883824512289078,
0.5876112549667145,
0.5869402901903398,
0.5863718359741453,
0.5859083469561315,
0.5855524617955433,
0.5853070085716898,
0.5851750055140885,
0.5851596552264591,
0.5852643304678806,
0.585492549606956,
0.5858479400828087,
0.5863341885926386,
0.5869549772694849,
0.5877139057932358,
0.5886144001581766,
0.5896596096563296,
0.5908522944743982,
0.5921947070854827,
0.5936884712867408,
0.5953344632367639,
0.5971326991365408,
0.5990822342436052,
0.6011810776951647,
0.603426127146354,
0.6058131265272086,
0.6083366493272513,
0.6109901087850681,
0.6137657952570366,
0.6166549399337357,
0.6196478030318322,
0.6227337836731968
],
[
0.6239222577171909,
0.6217198707310498,
0.6195789512513467,
0.6175015785831313,
0.6154895636114956,
0.613544490876934,
0.6116677630280438,
0.6098606461231217,
0.6081243143852401,
0.6064598932194872,
0.6048684995588235,
0.603351278895169,
0.601909438650904,
0.6005442778282015,
0.5992572131158734,
0.5980498018148666,
0.5969237620479128,
0.5958809907355743,
0.5949235797464177,
0.5940538304670061,
0.5932742667989926,
0.5925876462941038,
0.5919969688075021,
0.5915054817150013,
0.5911166804317164,
0.5908343027215753,
0.5906623151296848,
0.5906048898296375,
0.5906663702760283,
0.590851224300626,
0.5911639836906294,
0.5916091698297158,
0.5921912056458039,
0.5929143148610584,
0.5937824103369307,
0.5947989740996746,
0.5959669323648733,
0.5972885294977212,
0.598765205297675,
0.6003974802387932,
0.6021848533005667,
0.6041257167746055,
0.6062172919347179,
0.608455588735124,
0.6108353917945116,
0.6133502738872895,
0.615992637062066,
0.6187537804094073,
0.6216239924723551,
0.6245926653926703
],
[
0.6299770061242748,
0.6278684702600502,
0.6258125976463299,
0.6238111576518302,
0.6218656845262139,
0.6199775177379849,
0.6181478449082033,
0.6163777460258033,
0.6146682377279024,
0.6130203165834752,
0.6114350005170964,
0.609913367733812,
0.6084565927371495,
0.6070659792497479,
0.6057429900309006,
0.6044892737206082,
0.6033066889123205,
0.6021973256581761,
0.6011635245384702,
0.6002078932849804,
0.5993333207453805,
0.5985429877292381,
0.5978403740060072,
0.5972292604571598,
0.596713725145855,
0.5962981318865822,
0.5959871098011157,
0.5957855223592126,
0.595698424540671,
0.5957310070296868,
0.5958885267639379,
0.5961762236999697,
0.5965992243029207,
0.5971624329915208,
0.5978704135281977,
0.5987272630914549,
0.599736482451399,
0.6009008462370383,
0.6022222776870746,
0.6037017324740356,
0.6053390961567572,
0.6071330995362298,
0.6090812556701175,
0.6111798215655514,
0.6134237866585147,
0.615806889155347,
0.6183216602207128,
0.6209594949135573,
0.623710747762539,
0.6265648499921223
],
[
0.6356927081908879,
0.63367340141334,
0.6316987379657178,
0.6297702086352489,
0.6278890997629187,
0.6260565321458393,
0.6242735027045131,
0.6225409277772755,
0.6208596869719643,
0.6192306666189259,
0.6176548020184287,
0.6161331178453872,
0.6146667662492861,
0.6132570623510757,
0.6119055169761466,
0.6106138665596352,
0.6093841002068336,
0.6082184838808673,
0.6071195816203664,
0.6060902735650747,
0.6051337703960313,
0.6042536235930173,
0.6034537306937614,
0.6027383345287807,
0.6021120152267768,
0.6015796736628485,
0.6011465049788705,
0.6008179608625224,
0.6005996994438914,
0.6004975219646891,
0.6005172957948793,
0.6006648639053578,
0.6009459415336964,
0.6013660014733665,
0.6019301501371872,
0.6026429972478766,
0.6035085226436143,
0.6045299442050122,
0.6057095912662256,
0.607048788029425,
0.6085477514327591,
0.6102055076165783,
0.6120198305974927,
0.6139872060185354,
0.6161028219361527,
0.61836058758375,
0.6207531799784992,
0.6232721171776995,
0.6259078560055855,
0.6286499112158976
]
]
},
{
"hoverinfo": "text",
"legendgroup": "In-sample",
"marker": {
"color": "black",
"opacity": 0.5,
"symbol": 1
},
"mode": "markers",
"name": "In-sample",
"text": [
"Arm 0_0
hartmann6: -0.0778091 (SEM: 0)
x1: 0.63458
x2: 0.176737
x3: 0.777269
x4: 0.613891
x5: 0.660853
x6: 0.704404",
"Arm 10_0
hartmann6: -0.380212 (SEM: 0)
x1: 0.196433
x2: 0.0226757
x3: 0.242024
x4: 0.207609
x5: 0.611927
x6: 0.911383",
"Arm 11_0
hartmann6: -0.583376 (SEM: 0)
x1: 0.0440097
x2: 0.192389
x3: 0.377749
x4: 0.442401
x5: 0.465967
x6: 0.30007",
"Arm 12_0
hartmann6: -1.6106 (SEM: 0)
x1: 0.330772
x2: 0.368949
x3: 0.363253
x4: 0.380512
x5: 0.155903
x6: 0.616362",
"Arm 13_0
hartmann6: -1.85926 (SEM: 0)
x1: 0.287121
x2: 0.324009
x3: 0.356923
x4: 0.365169
x5: 0.166141
x6: 0.596033",
"Arm 14_0
hartmann6: -2.03452 (SEM: 0)
x1: 0.238379
x2: 0.266719
x3: 0.347494
x4: 0.346491
x5: 0.170067
x6: 0.575979",
"Arm 15_0
hartmann6: -2.28353 (SEM: 0)
x1: 0.172717
x2: 0.218906
x3: 0.382558
x4: 0.335899
x5: 0.17538
x6: 0.60967",
"Arm 16_0
hartmann6: -2.35009 (SEM: 0)
x1: 0.109694
x2: 0.233142
x3: 0.427889
x4: 0.307123
x5: 0.178532
x6: 0.632251",
"Arm 17_0
hartmann6: -2.27172 (SEM: 0)
x1: 0.0768223
x2: 0.214709
x3: 0.391534
x4: 0.368487
x5: 0.194651
x6: 0.677802",
"Arm 18_0
hartmann6: -2.73317 (SEM: 0)
x1: 0.151869
x2: 0.169254
x3: 0.434747
x4: 0.275345
x5: 0.203366
x6: 0.674002",
"Arm 19_0
hartmann6: -2.84523 (SEM: 0)
x1: 0.200991
x2: 0.119624
x3: 0.44608
x4: 0.235346
x5: 0.226646
x6: 0.714291",
"Arm 1_0
hartmann6: -0.0192442 (SEM: 0)
x1: 0.0151501
x2: 0.829026
x3: 0.12746
x4: 0.54458
x5: 0.641685
x6: 0.952581",
"Arm 20_0
hartmann6: -2.46217 (SEM: 0)
x1: 0.171408
x2: 0.131226
x3: 0.38267
x4: 0.190713
x5: 0.212948
x6: 0.740176",
"Arm 21_0
hartmann6: -3.03637 (SEM: 0)
x1: 0.214004
x2: 0.103926
x3: 0.486873
x4: 0.280354
x5: 0.240698
x6: 0.685561",
"Arm 22_0
hartmann6: -2.85333 (SEM: 0)
x1: 0.204275
x2: 0.0437911
x3: 0.561739
x4: 0.289041
x5: 0.237209
x6: 0.676117",
"Arm 23_0
hartmann6: -3.19618 (SEM: 0)
x1: 0.240996
x2: 0.131561
x3: 0.479197
x4: 0.291592
x5: 0.26674
x6: 0.655545",
"Arm 24_0
hartmann6: -3.21967 (SEM: 0)
x1: 0.246362
x2: 0.170455
x3: 0.498586
x4: 0.254516
x5: 0.28253
x6: 0.635244",
"Arm 25_0
hartmann6: -3.19533 (SEM: 0)
x1: 0.230524
x2: 0.117977
x3: 0.458876
x4: 0.247796
x5: 0.283335
x6: 0.617518",
"Arm 26_0
hartmann6: -3.08036 (SEM: 0)
x1: 0.316302
x2: 0.140468
x3: 0.478416
x4: 0.257635
x5: 0.277086
x6: 0.627862",
"Arm 27_0
hartmann6: -3.28653 (SEM: 0)
x1: 0.202306
x2: 0.161937
x3: 0.480446
x4: 0.273759
x5: 0.287021
x6: 0.645348",
"Arm 28_0
hartmann6: -3.31844 (SEM: 0)
x1: 0.191562
x2: 0.14858
x3: 0.483471
x4: 0.272962
x5: 0.309765
x6: 0.665909",
"Arm 2_0
hartmann6: -0.0576683 (SEM: 0)
x1: 0.0799383
x2: 0.555853
x3: 0.169447
x4: 0.412083
x5: 0.779421
x6: 0.448343",
"Arm 3_0
hartmann6: -0.0472933 (SEM: 0)
x1: 0.657353
x2: 0.943917
x3: 0.756923
x4: 0.0775618
x5: 0.120324
x6: 0.353318",
"Arm 4_0
hartmann6: -0.0398775 (SEM: 0)
x1: 0.812888
x2: 0.0362684
x3: 0.803039
x4: 0.554338
x5: 0.000707027
x6: 0.371636",
"Arm 5_0
hartmann6: -0.000565015 (SEM: 0)
x1: 0.0106335
x2: 0.454275
x3: 0.0317208
x4: 0.955978
x5: 0.78306
x6: 0.761874",
"Arm 6_0
hartmann6: -1.01533 (SEM: 0)
x1: 0.408876
x2: 0.459731
x3: 0.356421
x4: 0.391628
x5: 0.118121
x6: 0.663589",
"Arm 7_0
hartmann6: -0.00613225 (SEM: 0)
x1: 0.782639
x2: 0.956367
x3: 0.883402
x4: 0.00513333
x5: 0.960213
x6: 0.22616",
"Arm 8_0
hartmann6: -0.0333256 (SEM: 0)
x1: 0.171071
x2: 0.146003
x3: 0.870055
x4: 0.6982
x5: 0.299267
x6: 0.0507671",
"Arm 9_0
hartmann6: -0.0345116 (SEM: 0)
x1: 0.856245
x2: 0.88228
x3: 0.128791
x4: 0.522858
x5: 0.0968765
x6: 0.547021"
],
"type": "scatter",
"x": [
0.6345803737640381,
0.19643269293010235,
0.044009679928421974,
0.3307716345939427,
0.28712144523660493,
0.23837850836795255,
0.1727170562689478,
0.10969446034723844,
0.07682229559902103,
0.1518686324946271,
0.200991020479014,
0.015150059014558792,
0.17140835817780894,
0.21400356490589917,
0.2042751663225212,
0.240995720731154,
0.24636239020622935,
0.23052374160767553,
0.31630167890595307,
0.20230591468414857,
0.19156183052597178,
0.07993831858038902,
0.6573533108457923,
0.8128883009776473,
0.010633493773639202,
0.4088763138279319,
0.7826388161629438,
0.1710712779313326,
0.8562453100457788
],
"xaxis": "x",
"y": [
0.17673711478710175,
0.0226757125928998,
0.19238927122205496,
0.36894898007440285,
0.324008950084348,
0.2667185191290881,
0.2189061474683112,
0.23314213367632092,
0.21470940389444604,
0.16925383003437916,
0.11962449837612377,
0.8290264755487442,
0.13122620536621904,
0.10392628515806508,
0.04379108721058173,
0.13156076815087,
0.17045516893340912,
0.11797696929632358,
0.14046801720924837,
0.1619366337970507,
0.1485798481900465,
0.5558529254049063,
0.9439172176644206,
0.03626835159957409,
0.45427547488361597,
0.4597307797521353,
0.9563671611249447,
0.14600341767072678,
0.8822799418121576
],
"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.0778091 (SEM: 0)
x1: 0.63458
x2: 0.176737
x3: 0.777269
x4: 0.613891
x5: 0.660853
x6: 0.704404",
"Arm 10_0
hartmann6: -0.380212 (SEM: 0)
x1: 0.196433
x2: 0.0226757
x3: 0.242024
x4: 0.207609
x5: 0.611927
x6: 0.911383",
"Arm 11_0
hartmann6: -0.583376 (SEM: 0)
x1: 0.0440097
x2: 0.192389
x3: 0.377749
x4: 0.442401
x5: 0.465967
x6: 0.30007",
"Arm 12_0
hartmann6: -1.6106 (SEM: 0)
x1: 0.330772
x2: 0.368949
x3: 0.363253
x4: 0.380512
x5: 0.155903
x6: 0.616362",
"Arm 13_0
hartmann6: -1.85926 (SEM: 0)
x1: 0.287121
x2: 0.324009
x3: 0.356923
x4: 0.365169
x5: 0.166141
x6: 0.596033",
"Arm 14_0
hartmann6: -2.03452 (SEM: 0)
x1: 0.238379
x2: 0.266719
x3: 0.347494
x4: 0.346491
x5: 0.170067
x6: 0.575979",
"Arm 15_0
hartmann6: -2.28353 (SEM: 0)
x1: 0.172717
x2: 0.218906
x3: 0.382558
x4: 0.335899
x5: 0.17538
x6: 0.60967",
"Arm 16_0
hartmann6: -2.35009 (SEM: 0)
x1: 0.109694
x2: 0.233142
x3: 0.427889
x4: 0.307123
x5: 0.178532
x6: 0.632251",
"Arm 17_0
hartmann6: -2.27172 (SEM: 0)
x1: 0.0768223
x2: 0.214709
x3: 0.391534
x4: 0.368487
x5: 0.194651
x6: 0.677802",
"Arm 18_0
hartmann6: -2.73317 (SEM: 0)
x1: 0.151869
x2: 0.169254
x3: 0.434747
x4: 0.275345
x5: 0.203366
x6: 0.674002",
"Arm 19_0
hartmann6: -2.84523 (SEM: 0)
x1: 0.200991
x2: 0.119624
x3: 0.44608
x4: 0.235346
x5: 0.226646
x6: 0.714291",
"Arm 1_0
hartmann6: -0.0192442 (SEM: 0)
x1: 0.0151501
x2: 0.829026
x3: 0.12746
x4: 0.54458
x5: 0.641685
x6: 0.952581",
"Arm 20_0
hartmann6: -2.46217 (SEM: 0)
x1: 0.171408
x2: 0.131226
x3: 0.38267
x4: 0.190713
x5: 0.212948
x6: 0.740176",
"Arm 21_0
hartmann6: -3.03637 (SEM: 0)
x1: 0.214004
x2: 0.103926
x3: 0.486873
x4: 0.280354
x5: 0.240698
x6: 0.685561",
"Arm 22_0
hartmann6: -2.85333 (SEM: 0)
x1: 0.204275
x2: 0.0437911
x3: 0.561739
x4: 0.289041
x5: 0.237209
x6: 0.676117",
"Arm 23_0
hartmann6: -3.19618 (SEM: 0)
x1: 0.240996
x2: 0.131561
x3: 0.479197
x4: 0.291592
x5: 0.26674
x6: 0.655545",
"Arm 24_0
hartmann6: -3.21967 (SEM: 0)
x1: 0.246362
x2: 0.170455
x3: 0.498586
x4: 0.254516
x5: 0.28253
x6: 0.635244",
"Arm 25_0
hartmann6: -3.19533 (SEM: 0)
x1: 0.230524
x2: 0.117977
x3: 0.458876
x4: 0.247796
x5: 0.283335
x6: 0.617518",
"Arm 26_0
hartmann6: -3.08036 (SEM: 0)
x1: 0.316302
x2: 0.140468
x3: 0.478416
x4: 0.257635
x5: 0.277086
x6: 0.627862",
"Arm 27_0
hartmann6: -3.28653 (SEM: 0)
x1: 0.202306
x2: 0.161937
x3: 0.480446
x4: 0.273759
x5: 0.287021
x6: 0.645348",
"Arm 28_0
hartmann6: -3.31844 (SEM: 0)
x1: 0.191562
x2: 0.14858
x3: 0.483471
x4: 0.272962
x5: 0.309765
x6: 0.665909",
"Arm 2_0
hartmann6: -0.0576683 (SEM: 0)
x1: 0.0799383
x2: 0.555853
x3: 0.169447
x4: 0.412083
x5: 0.779421
x6: 0.448343",
"Arm 3_0
hartmann6: -0.0472933 (SEM: 0)
x1: 0.657353
x2: 0.943917
x3: 0.756923
x4: 0.0775618
x5: 0.120324
x6: 0.353318",
"Arm 4_0
hartmann6: -0.0398775 (SEM: 0)
x1: 0.812888
x2: 0.0362684
x3: 0.803039
x4: 0.554338
x5: 0.000707027
x6: 0.371636",
"Arm 5_0
hartmann6: -0.000565015 (SEM: 0)
x1: 0.0106335
x2: 0.454275
x3: 0.0317208
x4: 0.955978
x5: 0.78306
x6: 0.761874",
"Arm 6_0
hartmann6: -1.01533 (SEM: 0)
x1: 0.408876
x2: 0.459731
x3: 0.356421
x4: 0.391628
x5: 0.118121
x6: 0.663589",
"Arm 7_0
hartmann6: -0.00613225 (SEM: 0)
x1: 0.782639
x2: 0.956367
x3: 0.883402
x4: 0.00513333
x5: 0.960213
x6: 0.22616",
"Arm 8_0
hartmann6: -0.0333256 (SEM: 0)
x1: 0.171071
x2: 0.146003
x3: 0.870055
x4: 0.6982
x5: 0.299267
x6: 0.0507671",
"Arm 9_0
hartmann6: -0.0345116 (SEM: 0)
x1: 0.856245
x2: 0.88228
x3: 0.128791
x4: 0.522858
x5: 0.0968765
x6: 0.547021"
],
"type": "scatter",
"x": [
0.6345803737640381,
0.19643269293010235,
0.044009679928421974,
0.3307716345939427,
0.28712144523660493,
0.23837850836795255,
0.1727170562689478,
0.10969446034723844,
0.07682229559902103,
0.1518686324946271,
0.200991020479014,
0.015150059014558792,
0.17140835817780894,
0.21400356490589917,
0.2042751663225212,
0.240995720731154,
0.24636239020622935,
0.23052374160767553,
0.31630167890595307,
0.20230591468414857,
0.19156183052597178,
0.07993831858038902,
0.6573533108457923,
0.8128883009776473,
0.010633493773639202,
0.4088763138279319,
0.7826388161629438,
0.1710712779313326,
0.8562453100457788
],
"xaxis": "x2",
"y": [
0.17673711478710175,
0.0226757125928998,
0.19238927122205496,
0.36894898007440285,
0.324008950084348,
0.2667185191290881,
0.2189061474683112,
0.23314213367632092,
0.21470940389444604,
0.16925383003437916,
0.11962449837612377,
0.8290264755487442,
0.13122620536621904,
0.10392628515806508,
0.04379108721058173,
0.13156076815087,
0.17045516893340912,
0.11797696929632358,
0.14046801720924837,
0.1619366337970507,
0.1485798481900465,
0.5558529254049063,
0.9439172176644206,
0.03626835159957409,
0.45427547488361597,
0.4597307797521353,
0.9563671611249447,
0.14600341767072678,
0.8822799418121576
],
"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": [
"