{
"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": {
"execution": {
"iopub.execute_input": "2022-12-29T21:21:32.259768Z",
"iopub.status.busy": "2022-12-29T21:21:32.259410Z",
"iopub.status.idle": "2022-12-29T21:21:34.931849Z",
"shell.execute_reply": "2022-12-29T21:21:34.931198Z"
}
},
"outputs": [
{
"data": {
"text/html": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:21:34] 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,
"execution": {
"iopub.execute_input": "2022-12-29T21:21:34.992192Z",
"iopub.status.busy": "2022-12-29T21:21:34.991316Z",
"iopub.status.idle": "2022-12-29T21:21:34.995838Z",
"shell.execute_reply": "2022-12-29T21:21:34.995290Z"
}
},
"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": {
"execution": {
"iopub.execute_input": "2022-12-29T21:21:34.998404Z",
"iopub.status.busy": "2022-12-29T21:21:34.997778Z",
"iopub.status.idle": "2022-12-29T21:23:46.764860Z",
"shell.execute_reply": "2022-12-29T21:23:46.764244Z"
}
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:21:35] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x2. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:21:35] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x3. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:21:35] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x4. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:21:35] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x5. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:21:35] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x6. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:21:35] ax.service.utils.instantiation: Created search space: SearchSpace(parameters=[RangeParameter(name='x1', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x2', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x3', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x4', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x5', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x6', parameter_type=FLOAT, range=[0.0, 1.0])], parameter_constraints=[ParameterConstraint(1.0*x1 + 1.0*x2 <= 20.0)]).\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:21:35] ax.modelbridge.dispatch_utils: Using Bayesian optimization since there are more ordered parameters than there are categories for the unordered categorical parameters.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:21:35] ax.modelbridge.dispatch_utils: Calculating the number of remaining initialization trials based on num_initialization_trials=None max_initialization_trials=None num_tunable_parameters=6 num_trials=None use_batch_trials=False\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:21:35] ax.modelbridge.dispatch_utils: calculated num_initialization_trials=12\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:21:35] ax.modelbridge.dispatch_utils: num_completed_initialization_trials=0 num_remaining_initialization_trials=12\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:21:35] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+GPEI', steps=[Sobol for 12 trials, GPEI for subsequent trials]). Iterations after 12 will take longer to generate due to model-fitting.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:21:35] ax.service.managed_loop: Started full optimization with 30 steps.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:21:35] ax.service.managed_loop: Running optimization trial 1...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/home/runner/work/Ax/Ax/ax/core/observation.py:274: FutureWarning:\n",
"\n",
"In a future version of pandas, a length 1 tuple will be returned when iterating over a groupby with a grouper equal to a list of length 1. Don't supply a list with a single grouper to avoid this warning.\n",
"\n",
"[INFO 12-29 21:21:35] ax.service.managed_loop: Running optimization trial 2...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:21:35] ax.service.managed_loop: Running optimization trial 3...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:21:35] ax.service.managed_loop: Running optimization trial 4...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:21:35] ax.service.managed_loop: Running optimization trial 5...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:21:35] ax.service.managed_loop: Running optimization trial 6...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:21:35] ax.service.managed_loop: Running optimization trial 7...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:21:35] ax.service.managed_loop: Running optimization trial 8...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:21:35] ax.service.managed_loop: Running optimization trial 9...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:21:35] ax.service.managed_loop: Running optimization trial 10...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:21:35] ax.service.managed_loop: Running optimization trial 11...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:21:35] ax.service.managed_loop: Running optimization trial 12...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:21:35] ax.service.managed_loop: Running optimization trial 13...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:21:47] ax.service.managed_loop: Running optimization trial 14...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:21:54] ax.service.managed_loop: Running optimization trial 15...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:22:02] ax.service.managed_loop: Running optimization trial 16...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:22:10] ax.service.managed_loop: Running optimization trial 17...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:22:20] ax.service.managed_loop: Running optimization trial 18...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:22:28] ax.service.managed_loop: Running optimization trial 19...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:22:37] ax.service.managed_loop: Running optimization trial 20...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:22:46] ax.service.managed_loop: Running optimization trial 21...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:22:54] ax.service.managed_loop: Running optimization trial 22...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:23:01] ax.service.managed_loop: Running optimization trial 23...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:23:08] ax.service.managed_loop: Running optimization trial 24...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:23:14] ax.service.managed_loop: Running optimization trial 25...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:23:19] ax.service.managed_loop: Running optimization trial 26...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:23:25] ax.service.managed_loop: Running optimization trial 27...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:23:31] ax.service.managed_loop: Running optimization trial 28...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:23:36] ax.service.managed_loop: Running optimization trial 29...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-29 21:23:41] 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": {
"execution": {
"iopub.execute_input": "2022-12-29T21:23:46.768727Z",
"iopub.status.busy": "2022-12-29T21:23:46.767564Z",
"iopub.status.idle": "2022-12-29T21:23:46.776137Z",
"shell.execute_reply": "2022-12-29T21:23:46.775623Z"
}
},
"outputs": [
{
"data": {
"text/plain": [
"{'x1': 0.15987122390002484,\n",
" 'x2': 0.16264215268809964,\n",
" 'x3': 0.6554046172897687,\n",
" 'x4': 0.3208931917266156,\n",
" 'x5': 0.28074845522590525,\n",
" 'x6': 0.727408997961325}"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"best_parameters"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {
"execution": {
"iopub.execute_input": "2022-12-29T21:23:46.779496Z",
"iopub.status.busy": "2022-12-29T21:23:46.778629Z",
"iopub.status.idle": "2022-12-29T21:23:46.784252Z",
"shell.execute_reply": "2022-12-29T21:23:46.783761Z"
}
},
"outputs": [
{
"data": {
"text/plain": [
"{'hartmann6': -2.808040254603555, 'l2norm': 1.0920110125619271}"
]
},
"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": {
"execution": {
"iopub.execute_input": "2022-12-29T21:23:46.787584Z",
"iopub.status.busy": "2022-12-29T21:23:46.786740Z",
"iopub.status.idle": "2022-12-29T21:23:46.792166Z",
"shell.execute_reply": "2022-12-29T21:23:46.791664Z"
}
},
"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": {
"execution": {
"iopub.execute_input": "2022-12-29T21:23:46.795482Z",
"iopub.status.busy": "2022-12-29T21:23:46.794627Z",
"iopub.status.idle": "2022-12-29T21:23:47.638752Z",
"shell.execute_reply": "2022-12-29T21:23:47.638186Z"
}
},
"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.0248927010526083,
-2.092257758277903,
-2.1546545672093633,
-2.21108119298927,
-2.260556422068773,
-2.302157592865508,
-2.3350626428191754,
-2.3585929429606853,
-2.3722520409493177,
-2.375754916691176,
-2.369043329710462,
-2.3522851996369867,
-2.3258588830753153,
-2.290325617548725,
-2.2463946062435944,
-2.1948851830459257,
-2.1366896526902552,
-2.0727392626008116,
-2.0039746965890743,
-1.9313216521936856,
-1.8556714986120393,
-1.777866669187277,
-1.6986902618531317,
-1.618859249024921,
-1.539020694154365,
-1.4597504069893559,
-1.3815535247156272,
-1.3048665697515711,
-1.2300605998190386,
-1.1574451278497184,
-1.0872725460651291,
-1.0197428391570984,
-0.9550084156110679,
-0.8931789240223993,
-0.8343259531820952,
-0.7784875413129171,
-0.7256724417354052,
-0.6758641100534345,
-0.6290243922578405,
-0.5850969044906691,
-0.5440101040679295,
-0.5056800581379788,
-0.47001292140761375,
-0.43690713799495684,
-0.4062553849164723,
-0.37794627619485555,
-0.3518658472632673,
-0.32789883939455045,
-0.305929803436234,
-0.28584404130393104
],
[
-2.0496795164249075,
-2.1186264602553386,
-2.182513828516532,
-2.2403010238229393,
-2.2909661843615288,
-2.3335460479562524,
-2.36718087165006,
-2.3911607627626514,
-2.404967944942073,
-2.408308714057492,
-2.401129909490084,
-2.383617546561075,
-2.356178759576531,
-2.319411007099503,
-2.2740637560566808,
-2.2209976344831706,
-2.1611449248228953,
-2.0954739073301027,
-2.024958364944499,
-1.9505526797511628,
-1.8731723817850157,
-1.7936796859882267,
-1.712873397349973,
-1.6314825161566402,
-1.5501628909691827,
-1.4694963173677777,
-1.38999154734268,
-1.3120867463433774,
-1.236153005942993,
-1.1624985862627673,
-1.0913736219657935,
-1.0229750781045996,
-0.957451787385591,
-0.8949094388689276,
-0.8354154203364524,
-0.7790034432097996,
-0.7256779006876714,
-0.6754179273762366,
-0.6281811427417623,
-0.583907071786836,
-0.5425202449363687,
-0.5039329856404419,
-0.46804789901477806,
-0.43476007824303986,
-0.40395904770618507,
-0.3755304630897095,
-0.3493575892261921,
-0.3253225763106111,
-0.3033075545143943,
-0.2831955660414095
],
[
-2.0714254082796986,
-2.141807189739877,
-2.207042325602233,
-2.2660539190563913,
-2.3177819777278836,
-2.361225164659833,
-2.395488461538215,
-2.419832931423876,
-2.4337215021538694,
-2.4368536139049164,
-2.4291827341500403,
-2.410914079325734,
-2.382484039965316,
-2.3445260257997917,
-2.297828738474487,
-2.2432924060771744,
-2.181887089009595,
-2.114615575439263,
-2.042482066605836,
-1.9664669334141136,
-1.8875072636313663,
-1.8064826189585141,
-1.7242052933363525,
-1.6414143403765764,
-1.5587726731425495,
-1.4768666047738628,
-1.3962072761459179,
-1.3172334966482246,
-1.2403156005398879,
-1.165759991238027,
-1.093814108013415,
-1.0246716035886994,
-0.9584775673108412,
-0.8953336674676555,
-0.8353031186643851,
-0.778415406753783,
-0.7246707254032927,
-0.6740440957228271,
-0.6264891541382156,
-0.5819416044715575,
-0.5403223384915512,
-0.5015402354555809,
-0.4654946557395866,
-0.43207764683739547,
-0.40117588205224963,
-0.3726723533031202,
-0.3464478398000822,
-0.32238217405692104,
-0.3003553259390225,
-0.28024832431189173
],
[
-2.089922938587364,
-2.1615733246540705,
-2.2279936525025743,
-2.2880735844968862,
-2.3407182069407444,
-2.3848914976431015,
-2.41966652789802,
-2.4442784723651316,
-2.458173766796758,
-2.461047318793221,
-2.4528609160661006,
-2.433839872209902,
-2.4044498112829955,
-2.3653591325273093,
-2.3173939696236454,
-2.2614916912850838,
-2.1986572393524932,
-2.129924788040161,
-2.056325788442495,
-1.9788635222438513,
-1.898493743796462,
-1.8161107192406034,
-1.7325378725574416,
-1.6485222491777256,
-1.5647320616969096,
-1.4817566612085684,
-1.400108365283313,
-1.3202256604122602,
-1.242477377851858,
-1.1671675148773304,
-1.0945404376081254,
-1.0247862568154513,
-0.9580462149503434,
-0.8944179617856992,
-0.8339606284042398,
-0.7766996356684299,
-0.7226311946293849,
-0.6717264733582053,
-0.6239354181211068,
-0.5791902272838787,
-0.5374084843447456,
-0.4984959624933033,
-0.4623491174350053,
-0.42885728819818947,
-0.39790462749235356,
-0.36937178411120486,
-0.3431373600402504,
-0.3190791644844312,
-0.29707528610920475,
-0.27700500351114843
],
[
-2.1049779594353204,
-2.17771247499198,
-2.245136489684945,
-2.30610953179161,
-2.3595056421522713,
-2.4042583827095463,
-2.4394133010024914,
-2.4641838647537817,
-2.478003676750528,
-2.4805659636061215,
-2.471842641165211,
-2.452079729892112,
-2.421771468729202,
-2.3816195108531613,
-2.3324847933491535,
-2.2753385812109954,
-2.211217111322151,
-2.141182249251779,
-2.0662890728135,
-1.987560349683455,
-1.9059673559580417,
-1.8224162434786053,
-1.737739093437392,
-1.6526888171649037,
-1.5679371358750829,
-1.4840749623659242,
-1.4016146038611432,
-1.320993297979872,
-1.2425776790062362,
-1.1666688473586369,
-1.0935077809623701,
-1.0232808834050242,
-0.9561255110114707,
-0.8921353602202932,
-0.8313656288523796,
-0.77383789100596,
-0.7195446463050486,
-0.6684535209037785,
-0.620511110742687,
-0.5756464676977224,
-0.5337742369891115,
-0.49479745996364144,
-0.4586100604850989,
-0.42509903595003196,
-0.3941463756226097,
-0.36563072974463007,
-0.3394288528891659,
-0.31541684443314744,
-0.29347120795795534,
-0.273469749970615
],
[
-2.1164119487394513,
-2.190029333253525,
-2.2582580626100643,
-2.3199312246670525,
-2.3738963001554874,
-2.4190615526736425,
-2.454450420446638,
-2.4792599061503533,
-2.4929153284780803,
-2.4951116160396585,
-2.4858326969106503,
-2.465345555178196,
-2.4341717649019485,
-2.3930436828213253,
-2.3428535862854614,
-2.2846026265884154,
-2.2193540965677148,
-2.1481933309084167,
-2.072195002498125,
-1.9923976362669404,
-1.9097846688944782,
-1.8252711741086467,
-1.7396953290640513,
-1.6538137408729217,
-1.5682998381289173,
-1.4837446341568086,
-1.400659272393125,
-1.3194788622366185,
-1.2405672023073753,
-1.164222065954992,
-1.0906807909442275,
-1.0201259720805769,
-0.9526911030228543,
-0.888466052716768,
-0.8275022938573819,
-0.7698178265981621,
-0.7154017613421038,
-0.6642185407480525,
-0.6162117938235028,
-0.5713078247996201,
-0.5294187469320584,
-0.4904452768780935,
-0.45427920921698317,
-0.4208055932851855,
-0.3899046360155696,
-0.36145335508494814,
-0.33532700654551895,
-0.3114003103846168,
-0.28954849625499324,
-0.2696481900690677
],
[
-2.124063996447401,
-2.1983481410079833,
-2.2671672030925762,
-2.329331848048917,
-2.383668009143917,
-2.429064533786716,
-2.464529125984662,
-2.4892485790216288,
-2.502645328524662,
-2.504419876787777,
-2.4945700753712092,
-2.473383734530347,
-2.4414078064951164,
-2.3994020031887784,
-2.3482856894635287,
-2.2890851888604864,
-2.22288602510082,
-2.1507923158451785,
-2.0738939450362444,
-1.9932412091847325,
-1.9098261660433566,
-1.8245697321549452,
-1.7383135538052175,
-1.6518157365958142,
-1.5657496172008196,
-1.480704871769867,
-1.3971903654094955,
-1.3156382493852754,
-1.236408904080507,
-1.1597964053651835,
-1.0860342600629036,
-1.0153012134456656,
-0.9477269792158989,
-0.8833977814326707,
-0.8223616294872353,
-0.7646332726496081,
-0.710198800915471,
-0.6590198747857094,
-0.611037578990608,
-0.5661759046824032,
-0.5243448718026346,
-0.48544330861636076,
-0.4493613091369132,
-0.41598239161167994,
-0.38518538261696245,
-0.3568460517948846,
-0.3308385220097665,
-0.30703647884394525,
-0.2853142020241056,
-0.26554743969492345
],
[
-2.1277923968966945,
-2.202514689746171,
-2.2716968787693004,
-2.334131499020212,
-2.388628382014054,
-2.4340634745144083,
-2.4694359317027956,
-2.4939294572054314,
-2.506969724382451,
-2.5082670690372835,
-2.497835149194052,
-2.4759820673701456,
-2.4432775678847447,
-2.4005046557511394,
-2.348604842578978,
-2.2886243084652333,
-2.2216654896048746,
-2.1488462146768605,
-2.0712669050489305,
-1.9899854349938912,
-1.9059988024396355,
-1.8202305997585582,
-1.7335232696403375,
-1.6466342053606016,
-1.5602348632263772,
-1.4749121731858077,
-1.391171648668973,
-1.3094417023758471,
-1.2300787683100198,
-1.1533729112508107,
-1.0795536735151243,
-1.0087959662772725,
-0.9412258601210797,
-0.876926168191059,
-0.8159417465537455,
-0.7582844613566326,
-0.7039377921448005,
-0.6528610561965906,
-0.6049932507657374,
-0.5602565193303437,
-0.518559254885882,
-0.4797988584062174,
-0.4438641741667386,
-0.4106376259355812,
-0.37999707929750737,
-0.35181745574809953,
-0.3259721238294627,
-0.3023340916071261,
-0.2807770233421991,
-0.2611761014207912
],
[
-2.1274758593999454,
-2.202397843707547,
-2.271706134096946,
-2.3341796751299513,
-2.388617983843761,
-2.4338910885638247,
-2.4689973611759237,
-2.493125140987765,
-2.505709943908909,
-2.5064764249028957,
-2.4954558443149804,
-2.4729757089812,
-2.4396254552029033,
-2.396206755261084,
-2.343677791936368,
-2.2830988216245833,
-2.215583494375764,
-2.1422579807230093,
-2.0642283432335127,
-1.982555681387308,
-1.8982381466283476,
-1.8121987773077644,
-1.7252781108812973,
-1.6382306148004022,
-1.5517240935559404,
-1.466341353098672,
-1.3825835228440668,
-1.3008745437067435,
-1.2215664257752001,
-1.1449449609706848,
-1.071235645002086,
-1.0006096202960535,
-0.9331894987079961,
-0.8690549611014767,
-0.8082480616585753,
-0.7507781892832502,
-0.6966266577827129,
-0.6457509116127607,
-0.5980883456579116,
-0.5535597464511561,
-0.5120723689534029,
-0.4735226679270037,
-0.43779870637269425,
-0.40478226570145126,
-0.374350683475294,
-0.3463784448322801,
-0.3207385532497816,
-0.29730370522844995,
-0.27594729192677747,
-0.256544248874516
],
[
-2.1230144030971165,
-2.1978906466800296,
-2.267081482358991,
-2.3293570485254347,
-2.383512597201995,
-2.428419501592114,
-2.463083405568829,
-2.4867052666963265,
-2.4987372089479805,
-2.4989227038186823,
-2.487312261767951,
-2.464251631197209,
-2.430346494202068,
-2.386412200426827,
-2.3334177840484993,
-2.2724314945241693,
-2.2045722443931037,
-2.1309689758079715,
-2.052728344122996,
-1.9709102131706437,
-1.8865100308368,
-1.8004470127900034,
-1.7135570763108863,
-1.626589556105671,
-1.5402068548671426,
-1.4549863088311064,
-1.3714236701896316,
-1.2899377181551523,
-1.210875606582511,
-1.1345186381767225,
-1.0610882242732986,
-0.9907518462724749,
-0.9236288815067738,
-0.8597961940960477,
-0.7992934215940595,
-0.7421279122259863,
-0.6882792863844688,
-0.637703610760876,
-0.590337184851715,
-0.546099948260061,
-0.5048985237343816,
-0.4666289156584357,
-0.43117888703480955,
-0.39843004012418415,
-0.3682596269931484,
-0.3405421164336341,
-0.31515054317878655,
-0.2919576641817091,
-0.27083694507545164,
-0.25166339792931125
],
[
-2.114330034403883,
-2.188911125206815,
-2.257737864627612,
-2.3195766215714926,
-2.3732246253893967,
-2.417561949333926,
-2.4516095370924114,
-2.4745888111422225,
-2.4859750617897154,
-2.4855348453879884,
-2.4733393586838224,
-2.4497512486071713,
-2.4153888411511097,
-2.3710760302917353,
-2.317786744969907,
-2.256591014923577,
-2.1886069466519773,
-2.1149605843250923,
-2.0367540497523238,
-1.9550414550728967,
-1.870811654260161,
-1.7849767579759908,
-1.6983653512189612,
-1.6117194449445917,
-1.5256943157284368,
-1.4408605167633746,
-1.3577074663394035,
-1.2766481306059965,
-1.198024413791897,
-1.1221129510832857,
-1.0491310679773562,
-0.9792427265249853,
-0.9125643249974206,
-0.8491702546907633,
-0.7890981472574808,
-0.7323537694275539,
-0.6789155403964922,
-0.6287386614910322,
-0.5817588587893979,
-0.53789574782887,
-0.4970558358951087,
-0.4591351820484906,
-0.4240217382961986,
-0.3915973973845104,
-0.3617397737297424,
-0.33432374416734,
-0.3092227746013031,
-0.28631005740523807,
-0.2654594826939407,
-0.2465464644880454
],
[
-2.1013673036348752,
-2.1754029036259626,
-2.243619310304755,
-2.3047844082853994,
-2.357703766356215,
-2.4012734210405418,
-2.434537311559776,
-2.456744659326998,
-2.4673999196801275,
-2.4662965406121233,
-2.453527562869699,
-2.429471090416934,
-2.394754510289414,
-2.350205192900467,
-2.296796068603366,
-2.2355927766101633,
-2.167706569116027,
-2.0942549289953325,
-2.0163303192812565,
-1.9349765869750057,
-1.8511721097661278,
-1.7658186258328448,
-1.679734697315178,
-1.5936528474833858,
-1.5082195335184714,
-1.4239972456174153,
-1.3414681457026252,
-1.2610387693044902,
-1.1830454100644716,
-1.1077598877136872,
-1.0353954682982405,
-0.9661127612856444,
-0.9000254635825814,
-0.8372058569900911,
-0.777689994681165,
-0.7214825352239279,
-0.6685612006432362,
-0.618880848992522,
-0.5723771627059326,
-0.5289699622658182,
-0.4885661609563635,
-0.451062381058252,
-0.4163472550501347,
-0.3843034374232005,
-0.3548093537389385,
-0.3277407136937932,
-0.3029718143161373,
-0.28037665813271617,
-0.25982990933583616,
-0.24120770880245512
],
[
-2.084093807407645,
-2.1573357036713467,
-2.2246993868491267,
-2.284959753015172,
-2.336937097713556,
-2.379550417120095,
-2.4118737519761284,
-2.433190641221391,
-2.4430398647851366,
-2.4412449169563386,
-2.4279214930858153,
-2.4034616602189285,
-2.3684984289262476,
-2.323857808643284,
-2.2705060720606207,
-2.209498495367416,
-2.1419335811620286,
-2.0689147013500175,
-1.9915196199746799,
-1.9107774718287387,
-1.8276523310418966,
-1.7430323443104627,
-1.6577234047493963,
-1.5724464254808024,
-1.4878373898451562,
-1.4044494811670394,
-1.3227567155986477,
-1.2431586102953367,
-1.1659855137233073,
-1.091504305114805,
-1.0199242369172574,
-0.9514027489623855,
-0.8860511275981634,
-0.8239399187525114,
-0.7651040322997548,
-0.7095474974958929,
-0.6572478467849654,
-0.6081601189285135,
-0.5622204829723323,
-0.5193494926746034,
-0.47945498716511104,
-0.44243465814797667,
-0.40817830716094194,
-0.3765698184495012,
-0.34748887404324913,
-0.32081243775049995,
-0.29641603412607265,
-0.27417484713613105,
-0.2539646613763552,
-0.23566266644490697
],
[
-2.0625006707905773,
-2.1347057481777183,
-2.2009814549246918,
-2.2601153225092254,
-2.3109486608263214,
-2.352429991695213,
-2.3836697833112295,
-2.4039913998083047,
-2.4129720924000857,
-2.410467776351215,
-2.3966171989874727,
-2.371824844869459,
-2.3367261170377915,
-2.2921411614551293,
-2.239024295091694,
-2.178414787357719,
-2.111392770308785,
-2.039042174386172,
-1.962421196789642,
-1.8825399488867502,
-1.8003444823893515,
-1.7167062214077666,
-1.6324158161112012,
-1.5481805069131518,
-1.4646241986484165,
-1.3822895650817393,
-1.3016416209052628,
-1.2230723042591998,
-1.1469057051147835,
-1.0734036532581912,
-1.0027714449448355,
-0.9351635409221998,
-0.8706891119943561,
-0.809417343167959,
-0.7513824351245153,
-0.6965882636080057,
-0.645012674433864,
-0.5966114051719039,
-0.5513216349152326,
-0.5090651715380157,
-0.4697512919368698,
-0.433279255286633,
-0.39954051256383205,
-0.36842063767027766,
-0.3398010065488972,
-0.3135602508292593,
-0.28957551187443686,
-0.2677235197415053,
-0.2478815196505535,
-0.2299280662364369
],
[
-2.036603038272662,
-2.107536074100806,
-2.1724987189263114,
-2.2302967732592025,
-2.2797986019746084,
-2.319988241894957,
-2.3500180143253706,
-2.369255517026674,
-2.377319537720474,
-2.3740999441915465,
-2.3597584618068326,
-2.3347103573061956,
-2.299590400363265,
-2.255208747696627,
-2.202502900952746,
-2.1424909060809973,
-2.076229282309982,
-2.004777506474074,
-1.9291696009307602,
-1.8503925512647021,
-1.769370834517221,
-1.686956153452469,
-1.6039214460728624,
-1.5209582998239508,
-1.4386770003765452,
-1.3576085581893622,
-1.27820816726159,
-1.2008596521574448,
-1.1258805484889778,
-1.0535275379644906,
-0.9840020224978682,
-0.9174556739663083,
-0.8539958384638595,
-0.7936907078087883,
-0.7365741980270305,
-0.6826504958184573,
-0.631898250722537,
-0.5842744037691348,
-0.5397176535891448,
-0.49815156886622036,
-0.45948736208402385,
-0.4236263440859399,
-0.3904620822397621,
-0.359882287140027,
-0.33177045389564863,
-0.30600728423301937,
-0.28247191499197766,
-0.261042977218354,
-0.2415995081014508,
-0.22402173562779082
],
[
-2.00644063675513,
-2.075876809205746,
-2.139314123448442,
-2.1955821610572883,
-2.243581988735065,
-2.2823384518923913,
-2.311050189230797,
-2.3291323331028093,
-2.336247199895422,
-2.3323192855664105,
-2.3175327025478323,
-2.2923117140087026,
-2.2572875903558463,
-2.213256741789354,
-2.161135466731717,
-2.101915863646358,
-2.0366260587961986,
-1.9662964696483904,
-1.891932678653032,
-1.8144947248256706,
-1.7348821850006328,
-1.6539242215337906,
-1.572373731351705,
-1.4909047764011325,
-1.4101125634887175,
-1.3305153450816236,
-1.2525577164706971,
-1.1766148808271348,
-1.1029975386124755,
-1.0319571305630681,
-0.9636912244513293,
-0.8983488860818475,
-0.8360359158385775,
-0.7768198649494042,
-0.7207347718072159,
-0.6677855793967455,
-0.6179522111884399,
-0.5711932956736471,
-0.5274495397633122,
-0.4866467591263788,
-0.44869857963058535,
-0.41350882866813254,
-0.38097363850520594,
-0.35098328602143847,
-0.3234237943978545,
-0.29817832255120935,
-0.275128367489087,
-0.2541548033864117,
-0.23513877920158577,
-0.21796249422701752
],
[
-1.9720785249305894,
-2.0398055528215657,
-2.101520265102868,
-2.156081297888478,
-2.2024275524710912,
-2.2396291980771137,
-2.2669346750068557,
-2.283808878662355,
-2.2899586204518547,
-2.285342860680559,
-2.2701669595335057,
-2.2448621766600603,
-2.210053512729327,
-2.166520205038812,
-2.1151534338652374,
-2.056915155841553,
-1.9928008476295673,
-1.923807740722241,
-1.850909129198751,
-1.775034633946989,
-1.6970558907778275,
-1.617776929366198,
-1.5379284533813804,
-1.4581652612536364,
-1.3790661207294028,
-1.3011355024250544,
-1.2248066724819473,
-1.1504457337638159,
-1.0783562848524575,
-1.0087844350221085,
-0.9419239714795934,
-0.8779215232641016,
-0.8168816054611753,
-0.7588714590585093,
-0.7039256270939179,
-0.6520502278596776,
-0.6032269018426473,
-0.5574164216535012,
-0.5145619641280381,
-0.474592051612468,
-0.4374231755717255,
-0.40296212036361556,
-0.37110800848376924,
-0.34175409092284037,
-0.3147893075674819,
-0.2900996428903482,
-0.26756930159542414,
-0.24708172752409718,
-0.2285204871293125,
-0.21177003636468816
],
[
-1.9336081666702756,
-1.999428058780281,
-2.059239580629224,
-2.111935373665494,
-2.1564967156381014,
-2.192042794605964,
-2.217874365099558,
-2.233507289958686,
-2.23869287186312,
-2.2334235603462824,
-2.2179242602022193,
-2.1926309630856164,
-2.1581596643478753,
-2.115269287216287,
-2.064822435721948,
-2.007747275340631,
-1.9450029400391315,
-1.8775498824957753,
-1.8063257362524718,
-1.732226639481791,
-1.6560935823603902,
-1.5787031395708295,
-1.5007618804359688,
-1.4229037623810707,
-1.3456898720205883,
-1.2696099574557915,
-1.195085280082764,
-1.1224723956847176,
-1.0520675484338684,
-0.9841114258770942,
-0.9187940777551645,
-0.8562598471504543,
-0.7966121999159828,
-0.7399183687104216,
-0.6862137523659061,
-0.6355060308017166,
-0.5877789712082822,
-0.5429959135682265,
-0.5011029334093925,
-0.4620316875086775,
-0.42570195445512615,
-0.3920238867898458,
-0.3608999950283577,
-0.33222688633560304,
-0.30589678202828985,
-0.2817988384829878,
-0.25982029550750074,
-0.23984747489706737,
-0.22176664989408013,
-0.20546480378203158
],
[
-1.8911489220859994,
-1.9548793877220363,
-2.012625054272037,
-2.063317148581806,
-2.1059832440429367,
-2.139794417740207,
-2.164105305419433,
-2.178482965611842,
-2.182722269518674,
-2.176847402918696,
-2.161100551575079,
-2.1359198850869663,
-2.101909652877291,
-2.0598055708837806,
-2.0104386444994393,
-1.9547001443396872,
-1.8935097527695124,
-1.827788119435545,
-1.758434363683595,
-1.6863085270071232,
-1.612218626455329,
-1.5369117650816269,
-1.4610686772979402,
-1.3853010855800079,
-1.310151288494843,
-1.2360934659380165,
-1.1635362611713667,
-1.0928262720405726,
-1.0242521509273863,
-0.9580490724002517,
-0.8944033785468309,
-0.8334572548524747,
-0.77531332493808,
-0.7200390814077386,
-0.667671093459578,
-0.6182189507286526,
-0.5716689179215451,
-0.5279872869106835,
-0.48712342269093634,
-0.4490125074322707,
-0.41357799312905874,
-0.380733778276075,
-0.35038612773017797,
-0.3224353575235013,
-0.2967773079266406,
-0.2733046285659173,
-0.2519078989484207,
-0.23247660644810875,
-0.21490000180881064,
-0.19906784971431157
],
[
-1.844849930882283,
-1.9063255605037281,
-1.9618615359793072,
-2.010431855983467,
-2.051113686965393,
-2.083132063015448,
-2.1058961611297278,
-2.1190235359470098,
-2.122350836059125,
-2.1159314965775087,
-2.10002218828853,
-2.07506042271418,
-2.0416359473100743,
-2.000458605846753,
-1.9523252001628044,
-1.8980875389217702,
-1.8386233314881797,
-1.77481098351778,
-1.7075087876121977,
-1.6375385518839765,
-1.5656733971250065,
-1.492629269182535,
-1.4190596295594815,
-1.345552773403134,
-1.2726312533730957,
-1.200752940474976,
-1.130313315271104,
-1.0616486464577362,
-0.9950397737690401,
-0.9307162660747719,
-0.8688607724323232,
-0.809613423690991,
-0.75307617548679,
-0.6993170108330182,
-0.6483739428269804,
-0.600258776086539,
-0.5549606001713512,
-0.512449000106367,
-0.47267697876387227,
-0.4355835937021164,
-0.4010963174095895,
-0.36913313496179634,
-0.3396043969762612,
-0.3124144485096675,
-0.2874630562110023,
-0.2646466566623169,
-0.24385944846748286,
-0.2249943493948261,
-0.2079438378968258,
-0.19260069581622308
],
[
-1.7948921974119247,
-1.8539655410364757,
-1.9071675215004955,
-1.9535186858055316,
-1.9921484831457787,
-2.0223372070108088,
-2.0435483786304296,
-2.0554484793727306,
-2.0579133402166567,
-2.051022491940727,
-2.0350438230405605,
-2.0104111130787716,
-1.9776968573514582,
-1.9375825912944544,
-1.8908287131897645,
-1.8382455232531076,
-1.7806668116768158,
-1.7189268773554927,
-1.6538414171312004,
-1.5861923545878267,
-1.5167164073579393,
-1.4460970228243455,
-1.3749592271164928,
-1.3038669088057775,
-1.233322075400742,
-1.1637656606751847,
-1.0955795118990617,
-1.029089240205275,
-0.9645676697722827,
-0.9022386695728295,
-0.8422811939111292,
-0.7848333945224459,
-0.7299966978579475,
-0.6778397668401301,
-0.6284022875100581,
-0.5816985382976487,
-0.537720713799517,
-0.49644198654401483,
-0.45781929975306346,
-0.42179589195774814,
-0.3883035607576223,
-0.35726467820081675,
-0.3285939742932841,
-0.30220010805874287,
-0.2779870473834697,
-0.2558552796156308,
-0.23570287460458283,
-0.21742642066488327,
-0.20092185199071044,
-0.18608518353383152
],
[
-1.741490526135693,
-1.7980331718349358,
-1.8487969976516583,
-1.8928524376014935,
-1.929383313657191,
-1.9577257536865076,
-1.9773966297308707,
-1.988108989447781,
-1.9897745417316992,
-1.9824951964290962,
-1.9665464212207686,
-1.9423550325570598,
-1.91047357907241,
-1.871553097840587,
-1.8263157804999284,
-1.7755288705368342,
-1.7199808416591238,
-1.6604605781714592,
-1.5977399389412885,
-1.532559787768581,
-1.4656193447846102,
-1.3975685625854353,
-1.3290031481882274,
-1.2604618218318753,
-1.1924254097588272,
-1.1253173965284593,
-1.0595056026630447,
-0.9953046982846767,
-0.9329793082225212,
-0.8727475061161556,
-0.8147845328832741,
-0.7592266079969775,
-0.7061747303166372,
-0.6556983890511896,
-0.6078391252985507,
-0.5626139010645876,
-0.5200182462853212,
-0.4800291656705965,
-0.4426077965879607,
-0.4077018170431991,
-0.3752476093189657,
-0.3451721901428002,
-0.3173949224351923,
-0.2918290267550897,
-0.2683829125156467,
-0.24696134989943475,
-0.22746650320957473,
-0.20979884525298265,
-0.19385797042499853,
-0.17954332166224052
],
[
-1.6848948498196425,
-1.7387985434448607,
-1.787040779134841,
-1.8287447279874312,
-1.863150064711172,
-1.889648630543363,
-1.9078089297648466,
-1.917387531822478,
-1.9183281443766285,
-1.9107509246804244,
-1.8949350502162465,
-1.8712970982445811,
-1.840367103249379,
-1.80276368853529,
-1.7591694263928654,
-1.7103074246427918,
-1.6569199534685777,
-1.5997496909433004,
-1.5395239092502337,
-1.4769416874750922,
-1.4126640486445294,
-1.3473067879358962,
-1.281435681982434,
-1.2155637356025435,
-1.1501501201011928,
-1.0856004756667967,
-1.0222682806856667,
-0.9604570267331033,
-0.9004229753080556,
-0.8423783083616803,
-0.7864945177759991,
-0.7329059084237388,
-0.6817131150659326,
-0.6329865552450973,
-0.5867697588388824,
-0.5430825304811393,
-0.5019239140922805,
-0.4632749397160669,
-0.42710114210055594,
-0.39335484826601697,
-0.3619772378617999,
-0.3329001855325072,
-0.3060478988307772,
-0.2813383684273352,
-0.25868464946271363,
-0.23799599386193948,
-0.21917885333410814,
-0.20213777170445546,
-0.18677618333856982,
-0.17299713193530175
],
[
-1.6253904734720934,
-1.676568241513756,
-1.722226707348291,
-1.761544065966958,
-1.7938166835173153,
-1.818491320665129,
-1.8351857524140902,
-1.843696478378416,
-1.8439949268316376,
-1.8362151443975083,
-1.8206360910413992,
-1.79766091767969,
-1.7677947870430941,
-1.7316223003159608,
-1.6897853798767235,
-1.6429623533261741,
-1.5918488625500684,
-1.5371410535724301,
-1.4795213108015874,
-1.4196466159711298,
-1.3581394608326383,
-1.2955811329906695,
-1.2325071254223425,
-1.1694043858441776,
-1.1067101139042053,
-1.0448118241680382,
-0.9840484142801837,
-0.9247120053122078,
-0.8670503514060346,
-0.8112696458487417,
-0.7575375790812406,
-0.7059865299571318,
-0.6567167944405456,
-0.6097997758169914,
-0.565281077564865,
-0.5231834545951766,
-0.4835095909620809,
-0.4462446827184525,
-0.4113588136346553,
-0.3788091192410551,
-0.3485417412427776,
-0.32049357986182725,
-0.2945938560996353,
-0.27076549926017,
-0.24892637729828615,
-0.2289903886501914,
-0.21086843419765022,
-0.1944692870117941,
-0.17970037568041242,
-0.1664684945675442
],
[
-1.5632968345552696,
-1.611683996067707,
-1.6547181637316188,
-1.6916341916454036,
-1.721785291914141,
-1.7446716984345303,
-1.7599575467153106,
-1.767475289614163,
-1.7672196043162005,
-1.7593340564723594,
-1.7440935919135199,
-1.7218849771086344,
-1.693186438404564,
-1.6585472834749375,
-1.6185681245413388,
-1.5738822594809911,
-1.5251386859166842,
-1.4729871007961006,
-1.418065093752264,
-1.3609876027020331,
-1.3023385821444442,
-1.2426647459447082,
-1.1824711873958442,
-1.1222186464370076,
-1.0623221818254351,
-1.003151009342481,
-0.9450292808361007,
-0.8882375990042506,
-0.8330150861704426,
-0.7795618496148722,
-0.7280417097485659,
-0.678585079584344,
-0.6312919040452224,
-0.5862345854675233,
-0.5434608372364748,
-0.5029964210119472,
-0.4648477347040574,
-0.42900422849916364,
-0.39544063504300575,
-0.3641190075312051,
-0.33499056604366584,
-0.30799735802723704,
-0.28307374336859914,
-0.26014771796265623,
-0.2391420920245796,
-0.2199755405940279,
-0.20256354376597263,
-0.18681923324751548,
-0.17265416004975753,
-0.1599789957047939
],
[
-1.4989645428425213,
-1.5445194446281785,
-1.5849105590525006,
-1.6194302996124852,
-1.6474881581962952,
-1.668635774058406,
-1.6825802920025277,
-1.68918593137268,
-1.6884661670128636,
-1.6805699149700928,
-1.6657646217920745,
-1.6444180690160086,
-1.6169798473291968,
-1.5839630591337368,
-1.5459267011649973,
-1.5034591465102336,
-1.4571630872568853,
-1.407642204758207,
-1.3554897250881788,
-1.3012789125581699,
-1.2455554653610648,
-1.1888317087382698,
-1.1315824327620025,
-1.0742421920222958,
-1.0172038703171997,
-0.9608183115975214,
-0.9053948256823601,
-0.8512023907155056,
-0.7984713915097421,
-0.7473957518742762,
-0.6981353382919869,
-0.650818530915102,
-0.605544875166578,
-0.5623877429617146,
-0.5213969466131152,
-0.48260126091397315,
-0.4460108198555788,
-0.411619364097475,
-0.37940632383371786,
-0.34933872920382936,
-0.32137294694559415,
-0.29545624758563416,
-0.2715282120737511,
-0.249521990325842,
-0.22936542658508752,
-0.21098206780944373,
-0.19429207146571914,
-0.17921302824677676,
-0.16566071349429434,
-0.15354977873485665
],
[
-1.4327706820239765,
-1.4754749802846543,
-1.513225758602851,
-1.5453730990738044,
-1.5713814783546476,
-1.5908513064846097,
-1.603529066972286,
-1.6093065227911194,
-1.6082117115995527,
-1.6003951174393083,
-1.5861136618794218,
-1.5657139989062936,
-1.5396158026413325,
-1.5082954310092382,
-1.4722702973023134,
-1.4320842709718844,
-1.3882943819623543,
-1.341459025546959,
-1.292127780314988,
-1.240832875346742,
-1.188082278803377,
-1.134354329774152,
-1.0800937976337943,
-1.0257092274786903,
-0.9715714153058046,
-0.9180128510146132,
-0.8653279693124515,
-0.8137740563318101,
-0.7635726714336997,
-0.7149114576927219,
-0.6679462296464882,
-0.6228032420755252,
-0.5795815581959425,
-0.5383554492984918,
-0.4991767703667963,
-0.46207726751820344,
-0.4270707832879036,
-0.39415533491778243,
-0.3633150490107776,
-0.3345219432368882,
-0.3077375522495511,
-0.28291440056569583,
-0.259997329816094,
-0.2389246914015657,
-0.21962941811894565,
-0.20203998970407144,
-0.18608130749091278,
-0.17167549259260206,
-0.158742620336225,
-0.14720140136067217
],
[
-1.3651125870117864,
-1.4049709352708593,
-1.4401047298710967,
-1.4699210293828504,
-1.4939373095577047,
-1.51179963990967,
-1.5232899858118114,
-1.528323550830097,
-1.5269390703552497,
-1.5192853301467022,
-1.5056062562144676,
-1.486225750338517,
-1.4615327360244499,
-1.431966662536418,
-1.398003711232493,
-1.3601439524930647,
-1.3188996598035407,
-1.2747849209755104,
-1.2283066208722802,
-1.1799568157567382,
-1.13020647644482,
-1.0795005430906617,
-1.028254206893456,
-0.9768503128735341,
-0.9256377632335347,
-0.8749307926634952,
-0.825008984779317,
-0.7761179017996513,
-0.7284702064174764,
-0.682247164412193,
-0.6376004277786458,
-0.5946540101147841,
-0.5535063780318012,
-0.5142325939719093,
-0.4768864567750416,
-0.4415025965059679,
-0.40809848941493854,
-0.3766763674837552,
-0.34722500484152596,
-0.319721370437388,
-0.2941321427144338,
-0.2704150875828327,
-0.24852030565387195,
-0.2283913583689957,
-0.2099662852479578,
-0.19317852593385199,
-0.1779577610359343,
-0.16423068504611726,
-0.1519217229943357,
-0.14095370024477794
],
[
-1.2964005075208833,
-1.3334395874751173,
-1.3659989763646552,
-1.3935412607310744,
-1.4156343302687517,
-1.4319664518178303,
-1.4423511676115504,
-1.44672326390155,
-1.4451287741995187,
-1.4377120981448497,
-1.4247022855226545,
-1.4063993949416211,
-1.383161214749969,
-1.355390488590182,
-1.3235228194290136,
-1.2880154403297261,
-1.2493370030447681,
-1.2079584780114705,
-1.1643452087725514,
-1.1189501275264102,
-1.072208112584605,
-1.0245314476363871,
-0.9763063240871478,
-0.9278903110768559,
-0.8796107040407788,
-0.8317636528607586,
-0.7846139652806263,
-0.7383954802247288,
-0.6933119083948667,
-0.6495380432031586,
-0.6072212528406968,
-0.5664831732705924,
-0.5274215315064774,
-0.49011203820488247,
-0.45461029804065345,
-0.42095369536151517,
-0.3891632211418632,
-0.3592452152397211,
-0.3311930053871517,
-0.30498843118499175,
-0.28060324757390076,
-0.2580004077289373,
-0.23713522996540548,
-0.2179564569302458,
-0.20040721798231065,
-0.1844259071720854,
-0.16994698961649934,
-0.15690174840420257,
-0.1452189826221344,
-0.1348256648965246
],
[
-1.227049688566996,
-1.2613166163546685,
-1.2913614779862435,
-1.3167002797821243,
-1.3369482769141117,
-1.351832271411317,
-1.3611935617242876,
-1.3649829921185241,
-1.3632509969332807,
-1.3561354780325483,
-1.3438492967992577,
-1.3266680866855487,
-1.3049185447746428,
-1.2789672616077776,
-1.2492101995934577,
-1.2160629526423252,
-1.1799518894829322,
-1.1413062359553623,
-1.100551114540188,
-1.058101537739347,
-1.0143573395907068,
-0.9696990196251621,
-0.9244844624259614,
-0.8790464833742606,
-0.8336911386147532,
-0.7886967264907032,
-0.7443133999331268,
-0.7007633050889888,
-0.6582411607654917,
-0.616915195571873,
-0.5769283642831318,
-0.5383997712314008,
-0.5014262358259148,
-0.4660839431160462,
-0.43243013028478805,
-0.40050476785697675,
-0.3703322020807559,
-0.34192273230480363,
-0.3152741041599564,
-0.29037290589448383,
-0.2671958612181491,
-0.2457110173703393,
-0.22587883170996848,
-0.207653163796219,
-0.19098218257300592,
-0.17580919981380982,
-0.16207344141934954,
-0.14971076756169666,
-0.1386543511909858,
-0.12883532229529926
],
[
-1.1574724213487013,
-1.1890326483613358,
-1.2166378593967848,
-1.2398548463817418,
-1.258342879082767,
-1.2718635884147609,
-1.280282407502984,
-1.2835630983220025,
-1.2817580905132082,
-1.2749972026116374,
-1.263476301751527,
-1.2474464684681168,
-1.2272037407870122,
-1.2030794308004196,
-1.175431062300523,
-1.1446340062921834,
-1.1110738714543753,
-1.0751396723669049,
-1.0372177745794786,
-0.9976866064045674,
-0.956912125762365,
-0.9152440289815985,
-0.8730126833286398,
-0.8305267559637378,
-0.7880715007529078,
-0.7459076530981501,
-0.704270873462226,
-0.6633716735900557,
-0.6233957558989538,
-0.584504695947659,
-0.5468368998310895,
-0.5105087722040174,
-0.4756160358465692,
-0.44223514976219636,
-0.4104247793698096,
-0.3802272791432747,
-0.35167015487708375,
-0.3247674794825198,
-0.299521242736724,
-0.2759226216131757,
-0.2539531635971155,
-0.23358588059739982,
-0.2147862555577048,
-0.19751316749605863,
-0.18171974333628138,
-0.16735414645689362,
-0.15436031235874847,
-0.14267864130995822,
-0.13224665641787192,
-0.1229996335291117
],
[
-1.0880705508827249,
-1.1170054320634186,
-1.1422583704606413,
-1.1634439332572881,
-1.1802619119483897,
-1.192505154685684,
-1.200059893399846,
-1.2029000713827034,
-1.2010781601335871,
-1.194714760794083,
-1.1839883643854403,
-1.1691257537784565,
-1.1503930755767007,
-1.1280875240465207,
-1.1025296254406487,
-1.0740561426887894,
-1.0430136136085102,
-1.0097525168250088,
-0.9746220494655734,
-0.9379655025053564,
-0.9001162267305224,
-0.8613941874517499,
-0.8221031056563469,
-0.7825281770919426,
-0.7429343507385773,
-0.7035651367174105,
-0.6646419030115607,
-0.626363611818789,
-0.5889069405632863,
-0.5524267296442364,
-0.5170566986108768,
-0.4829103741709351,
-0.4500821767638671,
-0.41864861690470756,
-0.3886695577503234,
-0.36018950606527844,
-0.33323889975022625,
-0.30783536617338536,
-0.28398493157366156,
-0.2616831676457214,
-0.24091626692814994,
-0.22166204363818842,
-0.20389086096401032,
-0.1875664893779515,
-0.17264690313510056,
-0.15908502368418198,
-0.1468294192213544,
-0.1358249691260104,
-0.12601350067753347,
-0.1173344034847228
],
[
-1.0192288008225392,
-1.045633014637821,
-1.068631048457219,
-1.0878820034844334,
-1.1031226963326073,
-1.114173780718966,
-1.1209392902094077,
-1.1234010126461411,
-1.1216099089381784,
-1.1156766024781515,
-1.1057621666734805,
-1.0920696504231455,
-1.074836353119732,
-1.0543267546481347,
-1.0308260328481187,
-1.0046341324733783,
-0.9760603562409216,
-0.9454184460278197,
-0.9130221259381351,
-0.8791810908352826,
-0.8441974381569792,
-0.8083625511134048,
-0.7719544445387425,
-0.7352355807937951,
-0.6984511542211407,
-0.6618278313392589,
-0.6255729225300717,
-0.5898739510364484,
-0.5548985775237966,
-0.5207948335597137,
-0.48769161501280456,
-0.45569938622786876,
-0.42491104747767805,
-0.39540292120087417,
-0.3672358165443599,
-0.34045613643509254,
-0.3150969965704977,
-0.29117933114475814,
-0.268712965649723,
-0.24769764254218696,
-0.22812399078654266,
-0.20997443508722768,
-0.19322404483924538,
-0.1778413262757974,
-0.16378896383700792,
-0.1510245183286577,
-0.139501089960259,
-0.12916795390552271,
-0.11997117475668784,
-0.11185420436164595
],
[
-0.9513091318756014,
-0.975288110974329,
-0.9961362149401194,
-1.0135537325505364,
-1.0273111086463425,
-1.0372536559437942,
-1.0433005714647843,
-1.0454395299762613,
-1.043718779967932,
-1.0382385131343066,
-1.029142611801986,
-1.0166111948121799,
-1.0008539765107276,
-0.982104321454238,
-0.9606138794888249,
-0.9366477134921055,
-0.9104798502664144,
-0.8823891983776867,
-0.8526557937364848,
-0.8215573548781908,
-0.7893661502287578,
-0.7563461940320961,
-0.7227507936342018,
-0.6888204688504892,
-0.6547812563058919,
-0.6208434005959722,
-0.587200422270026,
-0.5540285417371005,
-0.521486429290377,
-0.48971524498605945,
-0.4588389281266705,
-0.42896469435894535,
-0.40018369855650215,
-0.37257182334393835,
-0.3461905559834365,
-0.3210879200875195,
-0.2972994329910559,
-0.2748490643982521,
-0.2537501769260019,
-0.23400643420949285,
-0.21561266713454363,
-0.1985556933222441,
-0.18281508902374455,
-0.1683639159072764,
-0.1551694076861173,
-0.1431936230470634,
-0.13239407186462326,
-0.12272432127927468,
-0.11413458701376955,
-0.10657231350690699
],
[
-0.8846462225746199,
-0.906313708922371,
-0.9251222960415014,
-0.9408101072954841,
-0.9531779849926426,
-0.9620930472044869,
-0.9674873686610361,
-0.9693529020706653,
-0.9677342878399948,
-0.9627210862405214,
-0.9544404268626643,
-0.9430504857833966,
-0.9287348186214006,
-0.9116974214756319,
-0.8921583675402192,
-0.8703498874260818,
-0.8465127877110536,
-0.8208931291775656,
-0.793739115240192,
-0.7652981706386202,
-0.7358142161663426,
-0.7055251630598698,
-0.6746606590619488,
-0.6434401178502641,
-0.612071056714167,
-0.5807477567532597,
-0.5496502478970606,
-0.5189436095368833,
-0.48877756768205693,
-0.45928636187985294,
-0.4305888498208307,
-0.4027888144622048,
-0.3759754373709938,
-0.3502239024918369,
-0.32559609636098186,
-0.30214137362678795,
-0.279897360343606,
-0.25889077165459307,
-0.23913822496445558,
-0.22064703432512134,
-0.20341597631669295,
-0.18743602199863918,
-0.17269103333311298,
-0.15915842565629956,
-0.14680980014265288,
-0.135611551667572,
-0.12552545799418846,
-0.11650925583636551,
-0.10851720821129018,
-0.10150066579002293
],
[
-0.8195440681661907,
-0.8390198588073816,
-0.8559028628669714,
-0.869965750047736,
-0.8810367302885246,
-0.8890021658074881,
-0.8938050507416873,
-0.8954403193560945,
-0.8939483760461708,
-0.8894081651041015,
-0.8819306720863982,
-0.8716532562035904,
-0.8587348583102747,
-0.8433519555406229,
-0.8256950856061724,
-0.805965774306991,
-0.7843737306014962,
-0.761134210808719,
-0.7364654925193139,
-0.7105864356296203,
-0.6837141383212066,
-0.6560617167115166,
-0.6278362473996296,
-0.5992369133397524,
-0.5704533877255986,
-0.5416644805505437,
-0.5130370606581671,
-0.4847252542870081,
-0.4568699105795885,
-0.4295983159455615,
-0.40302413279099847,
-0.3772475339151623,
-0.3523555016354727,
-0.32842226015765397,
-0.30550981057386317,
-0.2836685398705092,
-0.2629378782078934,
-0.2433469822655252,
-0.2249154264132993,
-0.20765388765939596,
-0.19156481452938612,
-0.17664307403640633,
-0.1628765745014672,
-0.15024686498798245,
-0.13872971436693238,
-0.12829567442588208,
-0.11891063193906548,
-0.11053635426959163,
-0.10313103199946161,
-0.09664982046821591
],
[
-0.7562736368056351,
-0.7736815484318815,
-0.7887547567221004,
-0.8012973022452379,
-0.8111619458678068,
-0.818252007209408,
-0.8225197339616765,
-0.8239620196757731,
-0.822614637964985,
-0.8185461169160587,
-0.811852045916377,
-0.8026501969408587,
-0.7910765188987868,
-0.7772818816469054,
-0.7614293793657873,
-0.7436920030351122,
-0.7242505231055426,
-0.7032914671912618,
-0.6810051239538123,
-0.657583547000724,
-0.633218567034882,
-0.6080998441167744,
-0.582413004374571,
-0.5563379082213292,
-0.5300470925294735,
-0.503704419950116,
-0.4774639570674687,
-0.4514690912319177,
-0.4258518850066736,
-0.40073265794453305,
-0.3762197782173362,
-0.3524096414973473,
-0.3293868113086018,
-0.3072242936073305,
-0.28598391836152914,
-0.2657168021245361,
-0.24646386779310536,
-0.22825640067592823,
-0.21111662345292992,
-0.19505827636022954,
-0.18008719277277863,
-0.16620186405837056,
-0.15339399093221684,
-0.14164902135851776,
-0.1309466771668828,
-0.12126147287089595,
-0.1125632306545914,
-0.1048175951680872,
-0.09798655075867302,
-0.09202894223855373
],
[
-0.6950714934592265,
-0.7105375500026684,
-0.7239171666176967,
-0.7350427227061518,
-0.7437889251784349,
-0.750074012737839,
-0.753858074943532,
-0.7551391777460126,
-0.7539482694441704,
-0.7503438186601709,
-0.7444068798107424,
-0.7362369427931029,
-0.7259486342208801,
-0.7136691558325825,
-0.6995362660039274,
-0.6836966004872018,
-0.6663041575499643,
-0.647518819291113,
-0.6275048318056,
-0.6064292136644898,
-0.584460099766021,
-0.5617650536201511,
-0.5385093954796344,
-0.5148545980002398,
-0.4909567977520335,
-0.46696546256332117,
-0.4430222437451845,
-0.419260030598931,
-0.3958022135721929,
-0.37276215281223934,
-0.3502428410739926,
-0.3283367440951648,
-0.3071257975873567,
-0.2866815377431938,
-0.2670653414096684,
-0.24832875259599196,
-0.2305138735385026,
-0.21365380091036268,
-0.19777309071661875,
-0.1828882387346492,
-0.1690081668234774,
-0.15613470881233094,
-0.14426309277650207,
-0.13338241912462623,
-0.12347613589822826,
-0.1145225139156586,
-0.10649512483709822,
-0.09936332491817224,
-0.09309274626223274,
-0.0876457959447593
],
[
-0.6361392895251352,
-0.6497901254372127,
-0.6615915401673266,
-0.671401382226649,
-0.6791139036744396,
-0.6846604448519829,
-0.688007742561899,
-0.6891544462749248,
-0.6881266522914163,
-0.6849732565906539,
-0.6797617291127593,
-0.6725746338949198,
-0.6635069649295997,
-0.6526641933647074,
-0.6401608352857098,
-0.6261193313590505,
-0.6106690545676852,
-0.5939453087465565,
-0.5760882334222275,
-0.5572415796558141,
-0.5375513614152161,
-0.5171644149755111,
-0.4962269149507684,
-0.4748829013989735,
-0.45327287043530895,
-0.4315324735275241,
-0.4097913604670056,
-0.3881721897768986,
-0.3667898193720851,
-0.3457506804832414,
-0.3251523296669524,
-0.3050831673307537,
-0.28562230660395216,
-0.26683957346495646,
-0.24879561761753755,
-0.23154211348663223,
-0.2151220316640985,
-0.19956996295800844,
-0.18491247966611757,
-0.1711685215828893,
-0.1583497973370599,
-0.14646119472149333,
-0.1355011965070151,
-0.12546230063586172,
-0.11633144551182262,
-0.10809044223801434,
-0.10071641605608539,
-0.09418225894154564,
-0.08845709440603777,
-0.08350675420702813
],
[
-0.5796440112424266,
-0.5916054796265227,
-0.6019422198002815,
-0.6105348532651664,
-0.6172949703762574,
-0.6221653910862379,
-0.6251184883654304,
-0.6261530694807627,
-0.6252904880459881,
-0.6225706568636618,
-0.618048477192551,
-0.6117909718608057,
-0.6038751888940339,
-0.5943867805938075,
-0.5834190752191483,
-0.5710724345500571,
-0.5574537107102354,
-0.542675659785845,
-0.5268562222347827,
-0.5101176300229858,
-0.4925853414978718,
-0.47438683445479146,
-0.4556503055213018,
-0.43650333137467656,
-0.4170715467320679,
-0.39747738800122856,
-0.3778389422195825,
-0.35826893027439655,
-0.3388738427343263,
-0.3197532368241799,
-0.30099919466302505,
-0.2826959361046385,
-0.2649195744232993,
-0.2477379996096586,
-0.23121087204363056,
-0.21538970861686502,
-0.20031804379065765,
-0.18603164938828898,
-0.17255879892083203,
-0.1599205647126528,
-0.14813113880603113,
-0.13719817136384926,
-0.127123122845211,
-0.11790162841263152,
-0.10952387468807445,
-0.1019749900034197,
-0.09523544964600994,
-0.08928149730530976,
-0.08408558307253045,
-0.07961681707786794
],
[
-0.5257188776800625,
-0.5361148526737323,
-0.5450977002023984,
-0.5525682986596435,
-0.5584535539886939,
-0.5627063171960802,
-0.5653037408730993,
-0.566244495979447,
-0.5655454081804163,
-0.563238071634054,
-0.5593658758604998,
-0.5539816940038144,
-0.5471462914729839,
-0.5389273676565307,
-0.5293990582972289,
-0.5186416986494627,
-0.5067416628259183,
-0.49379113522024853,
-0.4798877203010955,
-0.4651338463297777,
-0.44963595991124816,
-0.433503538657386,
-0.4168479682167042,
-0.39978133878922095,
-0.3824152171291314,
-0.36485944529087677,
-0.3472210091670219,
-0.3296030099863575,
-0.3121037617288325,
-0.2948160277880054,
-0.27782640173834583,
-0.2612148300411118,
-0.24505426905543948,
-0.22941046479212934,
-0.21434184135588163,
-0.19989948282220193,
-0.18612719321059323,
-0.1730616200539269,
-0.16073242861843173,
-0.14916251588763818,
-0.1383682557677276,
-0.12835976938649019,
-0.1191412166372594,
-0.11071110707830367,
-0.10306262978788705,
-0.0961840026928178,
-0.09005884218961258,
-0.08466655358263664,
-0.07998274205464273,
-0.07597964269738666
],
[
-0.4744647781312924,
-0.48341614188855164,
-0.491152402091261,
-0.49759236095970616,
-0.5026763922918727,
-0.5063660846652631,
-0.5086426437470193,
-0.5095044139465928,
-0.508963984837434,
-0.5070453449200995,
-0.503781446477868,
-0.49921239095306214,
-0.49338428318711425,
-0.4863486731679245,
-0.47816242428480926,
-0.4688878181159639,
-0.4585927167853119,
-0.44735064007010517,
-0.4352406616406531,
-0.4223470762528675,
-0.4087588304904892,
-0.3945687403850663,
-0.3798725392086968,
-0.36476780893222105,
-0.3493528511603059,
-0.33372554996047776,
-0.3179822719457448,
-0.30221683997055226,
-0.2865196071804661,
-0.270976648848143,
-0.2556690810358079,
-0.24067250799004003,
-0.22605659445481419,
-0.21188475480837388,
-0.1982139480279438,
-0.18509456584635542,
-0.172570400933437,
-0.16067868233379046,
-0.14945016652808918,
-0.1389092741505653,
-0.12907426438027747,
-0.1199574411175881,
-0.11156538706008345,
-0.10389922352508418,
-0.09695489518339795,
-0.09072347967172534,
-0.08519152229461702,
-0.08034139572720878,
-0.07615168386170645,
-0.07259758782806247
],
[
-0.42595213952192845,
-0.4335759443967676,
-0.4401688557372979,
-0.4456654498653272,
-0.45001788712566826,
-0.45319533984398397,
-0.4551824497324547,
-0.455977124438653,
-0.4555880612256943,
-0.45403237994220247,
-0.45133366572537914,
-0.4475205940095909,
-0.4426261740385038,
-0.4366875338166708,
-0.42974609688889176,
-0.42184797250659845,
-0.4130443882625331,
-0.40339202595368173,
-0.39295316475886966,
-0.38179558062777386,
-0.36999219025676156,
-0.3576204585890138,
-0.3447616093895117,
-0.33149968978423017,
-0.31792054332703246,
-0.3041107441169314,
-0.29015653863654933,
-0.2761428339557458,
-0.2621522620302985,
-0.2482643409605475,
-0.23455474588744651,
-0.2210946950776438,
-0.2079504508841159,
-0.19518293073215054,
-0.1828474200480369,
-0.1709933770328812,
-0.159664318255618,
-0.1488977740380758,
-0.13872530334790178,
-0.12917255920741244,
-0.12025939726388646,
-0.1120000219476055,
-0.10440316637368108,
-0.09747230365147619,
-0.09120588840983646,
-0.08559762803193038,
-0.08063678327565327,
-0.07630849764705638,
-0.0725941541622026,
-0.06947175709038778
],
[
-0.3802231177884381,
-0.3866319135891283,
-0.39218018826433443,
-0.3968163237778869,
-0.40050274383909856,
-0.4032151771903497,
-0.4049411770194601,
-0.4056781640528583,
-0.405431317410058,
-0.4042116279962079,
-0.4020343600929124,
-0.39891806008733666,
-0.39488413610396444,
-0.3899569344725714,
-0.38416417421836,
-0.3775375732633953,
-0.37011350488619443,
-0.3619335504138651,
-0.3530448533021521,
-0.3435002214321481,
-0.3333579620881917,
-0.3226814640064757,
-0.31153856179699424,
-0.3000007302935229,
-0.2881421612909383,
-0.27603877439840174,
-0.2637672091065333,
-0.2514038381705993,
-0.2390238342893387,
-0.22670031373729216,
-0.21450357273322151,
-0.2025004253147773,
-0.19075364557773056,
-0.17932151243262218,
-0.16825745154430605,
-0.15760976679228,
-0.1474214523156523,
-0.13773007584393593,
-0.12856772439564412,
-0.1199610043671755,
-0.11193108933991491,
-0.10449381041119621,
-0.09765978531842678,
-0.09143458391125425,
-0.08581892849955208,
-0.08080892817225005,
-0.07639634630100967,
-0.07256890012153827,
-0.06931059058493971,
-0.06660205969399913
],
[
-0.33729401350013477,
-0.34259532829183614,
-0.34719281326278395,
-0.3510468645760829,
-0.35412879584508705,
-0.3564199798148241,
-0.35791043482731066,
-0.358597088195332,
-0.35848198775394413,
-0.35757072022571923,
-0.35587123537293575,
-0.35339318512521967,
-0.3501477896194575,
-0.34614815821275324,
-0.34140993661556895,
-0.33595212587296075,
-0.32979792186604895,
-0.32297544758328756,
-0.31551828546246263,
-0.30746575538554455,
-0.29886291932687015,
-0.28976032256172335,
-0.2802135022287081,
-0.27028230696267497,
-0.2600300772920787,
-0.2495227369917986,
-0.23882784215200303,
-0.2280136287840645,
-0.21714809251128941,
-0.20629812619196464,
-0.19552873384771852,
-0.18490233246245502,
-0.17447814734653433,
-0.16431170196764877,
-0.1544543994786799,
-0.14495319059348466,
-0.13585032089167748,
-0.12718314994969382,
-0.11898403474569408,
-0.11128027039790978,
-0.10409408228820238,
-0.09744266480948804,
-0.09133826318265215,
-0.08578829585763337,
-0.08079551581761668,
-0.07635820955545125,
-0.07247043254520702,
-0.06912227969541129,
-0.06630018859694231,
-0.06398727246088631
],
[
-0.29715782108547606,
-0.3014537824606205,
-0.30518922967706263,
-0.30833495247722775,
-0.3108699219183986,
-0.3127803467944721,
-0.3140583306350192,
-0.3147003313571165,
-0.3147056511139025,
-0.3140751684230808,
-0.3128104722839814,
-0.31091348182849776,
-0.3083865528070967,
-0.3052330006201672,
-0.30145792012267714,
-0.2970691594706715,
-0.2920783069249294,
-0.28650156973119356,
-0.2803604553169051,
-0.2736821998764809,
-0.2664999223965414,
-0.25885250976997676,
-0.2507842592211348,
-0.24234431761807618,
-0.23358596412000188,
-0.22456578422139928,
-0.21534278097133652,
-0.20597746425836994,
-0.19653095265859344,
-0.1870641153210607,
-0.1776367743620233,
-0.1683069817132553,
-0.15913037861763135,
-0.1501596411581967,
-0.14144401141782703,
-0.13302891109392068,
-0.1249556325756731,
-0.11726110152722591,
-0.10997770477184032,
-0.10313317758242146,
-0.09675054518151083,
-0.09084811416618299,
-0.08543951053402388,
-0.08053376184704397,
-0.07613542171084753,
-0.07224473508127138,
-0.06885784289939878,
-0.06596702420141987,
-0.06356097319910803,
-0.061625107963086956
],
[
-0.2597868321998055,
-0.2631739146289872,
-0.266130848383649,
-0.26863735914226383,
-0.27067897485014514,
-0.2722460272102736,
-0.27333238133139337,
-0.2739340699189764,
-0.2740480232714936,
-0.27367106871450186,
-0.27279932653436667,
-0.2714280643434076,
-0.2695520020552765,
-0.2671659986690501,
-0.26426600935521904,
-0.2608501809504248,
-0.2569199547819122,
-0.2524810630532588,
-0.24754433251331232,
-0.2421262405971315,
-0.23624919967196734,
-0.22994157110866498,
-0.22323743092125758,
-0.2161761222753641,
-0.20880163774934002,
-0.20116187683013853,
-0.19330782291269555,
-0.1852926802036049,
-0.17717100542443265,
-0.1689978628982255,
-0.16082802512395056,
-0.15271523476222404,
-0.1447115383889649,
-0.13686669761790204,
-0.12922767934748314,
-0.12183822397611277,
-0.11473848841352063,
-0.10796475951115903,
-0.10154923302156604,
-0.09551985323163503,
-0.08990020884024197,
-0.08470948130519707,
-0.07996244261225238,
-0.07566950008092888,
-0.07183678630454005,
-0.06846629254504821,
-0.06555604382742775,
-0.06310031360358392,
-0.06108987522440823,
-0.059512286643314205
],
[
-0.225135226139628,
-0.22770410921286732,
-0.22996077807727622,
-0.23189259053193223,
-0.23349065335213903,
-0.23474879382018732,
-0.23566236293703746,
-0.23622702458652323,
-0.23643769174148865,
-0.2362877516871824,
-0.235768680447915,
-0.2348700904897778,
-0.23358019638758643,
-0.23188663120478825,
-0.229777509642199,
-0.2272426161244624,
-0.22427459630594038,
-0.22087004533023424,
-0.21703041038667836,
-0.2127626533802972,
-0.20807964744259155,
-0.20300030546542058,
-0.19754945812444946,
-0.19175751241912986,
-0.18565992987007762,
-0.1792965669551716,
-0.1727109201262681,
-0.16594931484853626,
-0.15906007347144124,
-0.15209269115516533,
-0.14509704315732674,
-0.1381226409971439,
-0.13121794968861722,
-0.12442977358715057,
-0.11780271454788205,
-0.11137870309421927,
-0.10519660112521811,
-0.09929187328430078,
-0.09369632336726985,
-0.08843789193550788,
-0.08354051147641617,
-0.0790240158684159,
-0.0749041014174261,
-0.07119233720595763,
-0.06789622282864671,
-0.06501929170382637,
-0.06256125801147705,
-0.06051820491203641,
-0.05888281108422588,
-0.05764461184818126
],
[
-0.19314159286835242,
-0.19497711502387627,
-0.19660651578044264,
-0.19802362499130488,
-0.19922426312553532,
-0.20020520308625056,
-0.2009630468580641,
-0.20149315211375762,
-0.20178874472109398,
-0.20184033312751282,
-0.20163550287700738,
-0.20115912084279164,
-0.20039392797937972,
-0.19932145509362287,
-0.1979231646689541,
-0.1961817062051482,
-0.1940821725639501,
-0.19161325758533532,
-0.18876823651896968,
-0.18554571611895831,
-0.1819501266981517,
-0.17799195120321565,
-0.17368770478020779,
-0.1690596916911591,
-0.16413557491644437,
-0.1589477979163504,
-0.15353289865198394,
-0.14793075396496647,
-0.14218378862308034,
-0.13633617847751434,
-0.13043307183845887,
-0.12451984781769865,
-0.11864142534705446,
-0.11284163209212261,
-0.10716263868290565,
-0.10164446064183852,
-0.09632452810899672,
-0.09123732189485745,
-0.08641407344809582,
-0.08188252589498879,
-0.07766675325765626,
-0.07378703515427842,
-0.07025978459159432,
-0.06709752675879033,
-0.0643089269231355,
-0.061898865541752945,
-0.05986855850300299,
-0.05821571999341946,
-0.05693476488149418,
-0.056017046776350776
],
[
-0.1637313464164939,
-0.16491253909973913,
-0.1659825004833394,
-0.16694050551431694,
-0.16778632656643533,
-0.16851920167946643,
-0.1691367836308536,
-0.1696341883312359,
-0.1700032574781395,
-0.17023213014041583,
-0.17030518376908454,
-0.17020336266895075,
-0.16990486833914853,
-0.16938614819985554,
-0.16862309223902183,
-0.16759233361364156,
-0.16627254911544154,
-0.16464566642556921,
-0.16269790376789806,
-0.16042059015124188,
-0.15781073749177665,
-0.15487135697706644,
-0.15161152947095824,
-0.14804625283860628,
-0.14419609775125963,
-0.14008670822663294,
-0.13574818453960757,
-0.13121438495803184,
-0.12652217975898394,
-0.12171068682677555,
-0.11682051338082611,
-0.1118930234763682,
-0.1069696462013967,
-0.10209123520218144,
-0.09729748646278225,
-0.09262641822434703,
-0.0881139145775175,
-0.08379333256542876,
-0.07969517152568506,
-0.0758468027781194,
-0.0722722575149165,
-0.06899207074639224,
-0.06602317927747314,
-0.06337887182634927,
-0.06106878945640637,
-0.05909897441062273,
-0.05747196517820652,
-0.056186935183422326,
-0.05523987189118762,
-0.05462379242433979
]
],
"zauto": true,
"zmax": 2.5082670690372835,
"zmin": -2.5082670690372835
},
{
"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.28964713365200495,
0.2806757201721178,
0.27304084685053137,
0.2666816122159104,
0.2615228257448271,
0.2575113347784463,
0.2546501861797762,
0.2530197406159087,
0.25277687448631014,
0.254129076284416,
0.257288344107844,
0.26241749141554876,
0.2695850158038066,
0.27874156720224685,
0.28972243151182525,
0.3022710471578863,
0.3160732140860432,
0.33079177671686133,
0.34609515377088446,
0.3616772184566363,
0.3772689284427475,
0.3926434514943623,
0.4076167814948152,
0.42204554996563276,
0.43582329363389144,
0.4488760272402053,
0.46115765438372625,
0.4726455288909415,
0.4833363352162567,
0.49324236653899833,
0.5023882253362021,
0.5108079402085617,
0.5185424758514673,
0.5256376046712786,
0.5321421051601749,
0.5381062516595556,
0.5435805613330665,
0.5486147663359342,
0.5532569819111585,
0.5575530442280439,
0.5615459950373268,
0.5652756935032477,
0.5687785387396083,
0.5720872894761717,
0.5752309697756943,
0.5782348516992175,
0.5811205072101394,
0.5839059224033988,
0.5866056673914263,
0.5892311149744233
],
[
0.2768032381198395,
0.2676315049044141,
0.25991938597100966,
0.25358551620028136,
0.24852518861235373,
0.24465392793598034,
0.2419500025031818,
0.24048229232800186,
0.24041217977399465,
0.24196501813001473,
0.24537677917040177,
0.2508311735632812,
0.2584070446553533,
0.26805181759694047,
0.2795858027925081,
0.29273052816657436,
0.3071482051409394,
0.32248033054734815,
0.33837826444126645,
0.35452361732595533,
0.37063946023187455,
0.38649463514140514,
0.40190349542560644,
0.4167229442410581,
0.43084808487380344,
0.44420732991446416,
0.45675747773387493,
0.4684790398613605,
0.47937196177730534,
0.48945179492609897,
0.49874632894917836,
0.5072926663414621,
0.5151347080470997,
0.5223210124401239,
0.5289029883966132,
0.5349333838521823,
0.5404650332848911,
0.5455498303905559,
0.5502378955119788,
0.5545769109583771,
0.5586116010612159,
0.5623833375120416,
0.5659298540563534,
0.5692850578058058,
0.572478927119041,
0.5755374880610337,
0.5784828628068243,
0.5813333840000857,
0.5841037690740101,
0.5868053480205597
],
[
0.26464708980927387,
0.2553265411533466,
0.24760236400462862,
0.24137102499409702,
0.23649395040705248,
0.232849170566745,
0.23038345101338,
0.22914815990322823,
0.2293046945741834,
0.23109360838125165,
0.23477379989457758,
0.24054999714085393,
0.24851229500757402,
0.25860644534447996,
0.27063999897040425,
0.2843154134272239,
0.29927455381149737,
0.3151408663653466,
0.3315516708258187,
0.34817883470079064,
0.3647394781225455,
0.38099948738732947,
0.39677245656342247,
0.41191605078343646,
0.42632713563868063,
0.4399365062066882,
0.45270369647243996,
0.4646121244990564,
0.47566469216597396,
0.4858798791030627,
0.49528832650342597,
0.5039298834744134,
0.5118510776387418,
0.519102967543443,
0.5257393340160933,
0.5318151692172143,
0.5373854248608235,
0.5425039844434684,
0.5472228280944161,
0.5515913626873661,
0.5556558940039024,
0.5594592218563222,
0.5630403429793616,
0.5664342499882512,
0.5696718175858336,
0.5727797693344805,
0.5757807196045683,
0.5786932857675465,
0.5815322654020294,
0.5843088723874093
],
[
0.253339803093972,
0.24392791236781575,
0.23626259167254557,
0.2302169564297032,
0.22561457144979413,
0.22228990444632465,
0.22015124923148618,
0.2192257236744727,
0.21966903875994376,
0.22173273306809455,
0.2256961024483913,
0.23178411158677895,
0.24009905403370516,
0.25058754651468673,
0.26304818611741104,
0.27716891220043804,
0.29257593123241776,
0.3088789302063107,
0.3257047478812728,
0.3427182136217159,
0.35963238361940303,
0.37621138031574525,
0.3922686856970752,
0.4076629728712611,
0.4222928352616691,
0.4360912300072073,
0.44902009088123307,
0.46106534219660145,
0.47223241335883365,
0.4825422794409986,
0.4920280132412962,
0.5007318142518774,
0.5087024711113496,
0.5159932113744421,
0.5226598929647501,
0.5287594939452608,
0.534348860462979,
0.5394836765210458,
0.5442176234189812,
0.548601701156247,
0.5526836886833011,
0.5565077244339292,
0.5601139928676081,
0.563538506554996,
0.5668129764293264,
0.5699647650256484,
0.5730169187419999,
0.5759882753846801,
0.5788936426107952,
0.5817440415545028
],
[
0.24304027354617094,
0.2335983018650738,
0.22606498825992585,
0.2202895759634915,
0.21605451470730716,
0.21314532029896688,
0.21142523758716875,
0.21089021935882774,
0.21168367063026788,
0.21406237073506393,
0.21832183410295328,
0.2247053721150756,
0.23332832101554596,
0.24414161162661507,
0.25694021069167605,
0.27140367870671644,
0.28714851772185046,
0.3037757460116927,
0.32090565132612786,
0.33819879191299473,
0.355365925598361,
0.37217039361178483,
0.3884259774703373,
0.4039923762247985,
0.418769672053417,
0.4326925878027128,
0.4457249736789832,
0.4578547380718996,
0.4690893092209598,
0.47945164359622505,
0.4889767596864309,
0.4977087578153773,
0.5056982790745473,
0.5130003545840897,
0.5196725973919555,
0.5257736919880258,
0.5313621399613213,
0.5364952244535106,
0.5412281606137398,
0.5456134041269916,
0.549700094926249,
0.553533618203982,
0.5571552695537959,
0.5606020152162643,
0.5639063417075975,
0.5670961913688385,
0.5701949814763403,
0.5732217045107815,
0.5761911061258244,
0.5791139355319062
],
[
0.23389622725165876,
0.22448583778715095,
0.2171548661724674,
0.21172895823860743,
0.20794740633640502,
0.20554279583008714,
0.20432797301297295,
0.2042613930870572,
0.2054671614784035,
0.20820029762843847,
0.21276672671269076,
0.21942493121688433,
0.22830371771668057,
0.2393622874305054,
0.2523983675101127,
0.2670904251602629,
0.2830521041096365,
0.2998813720303235,
0.31719610410465343,
0.3346553469206614,
0.35196919995673387,
0.36890103219230014,
0.3852651559245409,
0.40092214782120655,
0.41577319559934767,
0.42975427076677136,
0.4428305575016687,
0.45499134558661547,
0.46624546836894937,
0.47661729730752167,
0.4861432686261612,
0.4948689003102055,
0.5028462506451431,
0.5101317679140229,
0.5167844821493132,
0.522864492648849,
0.5284317086898224,
0.5335448052397644,
0.5382603603411618,
0.5426321461224033,
0.5467105508941109,
0.5505421152821521,
0.5541691705179728,
0.5576295715159894,
0.5609565209004672,
0.5641784824572452,
0.5673191834523176,
0.5703977048966724,
0.5734286573100028,
0.5764224371389777
],
[
0.22603329191902452,
0.2167119422748466,
0.20964442419435275,
0.20463401490596161,
0.2013765612283123,
0.19954996633414684,
0.19891346816208536,
0.19938312737713662,
0.201057085335995,
0.20418084307693604,
0.20906352855466212,
0.21597422348735423,
0.2250547512318645,
0.23627632048283084,
0.24944606502739927,
0.26424906962502526,
0.2803033337776364,
0.29720961384805966,
0.3145875931773186,
0.33209755504189375,
0.34945052127881315,
0.3664106214800548,
0.3827928546412897,
0.39845846002766455,
0.41330929192690924,
0.427282008246924,
0.4403425085458465,
0.45248083261058547,
0.46370660239871875,
0.47404501990356895,
0.48353339688861197,
0.4922181747220096,
0.5001523851593161,
0.5073935010656544,
0.5140016271531063,
0.5200379835282377,
0.5255636385950502,
0.5306384523841926,
0.5353201965521013,
0.5396638229821071,
0.5437208589197716,
0.5475389125909255,
0.5511612789124455,
0.5546266398111039,
0.5579688574410808,
0.5612168609508816,
0.5643946282504089,
0.5675212634946948,
0.5706111689335203,
0.5736743067284858
],
[
0.21954317050649433,
0.21035858477426644,
0.20359933944101746,
0.19904874665908473,
0.19636123761976398,
0.1951612584152354,
0.1951541386627218,
0.19621080013315134,
0.1983977547031144,
0.20194306937493428,
0.20715086655343146,
0.2142948634807018,
0.223528074014847,
0.23483635159564056,
0.24804213255396165,
0.2628443851180503,
0.27887245122071874,
0.29573562413816157,
0.3130596036312407,
0.33050868765912267,
0.3477964509316562,
0.3646885735649069,
0.38100095406306034,
0.3965953320203807,
0.41137383607142713,
0.42527328842078344,
0.4382597191574231,
0.4503233145911251,
0.4614738916352733,
0.471736916975906,
0.4811500509198529,
0.48976017648120196,
0.4976208657160323,
0.5047902326282917,
0.511329122491008,
0.5172995898146439,
0.5227636208273972,
0.5277820609420564,
0.5324137131240477,
0.5367145791822414,
0.5407372225265955,
0.544530237516579,
0.5481378167186703,
0.551599412724486,
0.55494949521357,
0.5582174063438603,
0.5614273181522115,
0.5645982944832808,
0.5677444572803757,
0.5708752532865384
],
[
0.21447281101609186,
0.20545723715813038,
0.19902824650109832,
0.1949530488907062,
0.19284947347051704,
0.19229318023380176,
0.19293857562397274,
0.19461119178471778,
0.1973416753074085,
0.2013331292178155,
0.2068759529573178,
0.21424131505035934,
0.2235898981123583,
0.2349229844183659,
0.24808252972015662,
0.26278737541599506,
0.2786843858730783,
0.2953967404999053,
0.31256025485422945,
0.32984608541098354,
0.34697214348427285,
0.3637066340012856,
0.37986675154893884,
0.3953147413677043,
0.4099527596485441,
0.4237173932657565,
0.43657431920234274,
0.44851334945544963,
0.4595439692437195,
0.4696913982431473,
0.4789931620553696,
0.4874961390836964,
0.49525403750686375,
0.5023252529888904,
0.5087710573600548,
0.5146540703237302,
0.520036969614061,
0.5249813996446966,
0.5295470443660011,
0.5337908365784363,
0.5377662830223982,
0.5415228917479411,
0.5451056950357234,
0.5485548669333473,
0.5519054387745227,
0.5551871184752879,
0.5584242197617415,
0.5616357058253462,
0.5648353485152219,
0.5680319995590444
],
[
0.21081698456646775,
0.2019822745164891,
0.19587807889603598,
0.19226109833661534,
0.19072034848818775,
0.19079080324768236,
0.19208202931955667,
0.1943762581402946,
0.19766555133412844,
0.20212127737175167,
0.20801138692940627,
0.21559645259078317,
0.22503961365864625,
0.2363561413263609,
0.24940945335517586,
0.2639423659016563,
0.2796241591586001,
0.29609655214095365,
0.3130093333317832,
0.33004340894992923,
0.34692301244680923,
0.36342011222641923,
0.3793538683668656,
0.39458729058413394,
0.40902253839755354,
0.4225957526559117,
0.4352719306815861,
0.4470401182360996,
0.457909047152882,
0.46790326349065736,
0.4770597437990247,
0.4854249714821896,
0.493052432149658,
0.5000004809326555,
0.5063305330693302,
0.512105530078718,
0.5173886368019054,
0.5222421291254576,
0.5267264380813242,
0.5308993229715815,
0.5348151538135358,
0.5385242912245574,
0.5420725592466331,
0.5455008128931951,
0.5488446067863059,
0.5521339736925763,
0.555393321843743,
0.5586414577039541,
0.5618917366648929,
0.5651523385967259
],
[
0.2085164927747622,
0.19985109834953385,
0.19403729536021042,
0.19082871108941493,
0.18979607421823455,
0.1904446210000703,
0.19234753611796418,
0.19524760542139283,
0.19909689272399178,
0.20402920753500328,
0.21028176773818472,
0.2180961421481682,
0.2276313840158098,
0.23891319901806812,
0.2518260025303361,
0.2661385183519764,
0.28154573622526796,
0.29771160967917315,
0.31430333633744834,
0.3310144138631194,
0.34757755082572284,
0.36376998854681364,
0.3794138240850232,
0.39437338362690266,
0.4085510706989617,
0.4218825990811785,
0.4343321539407877,
0.44588778422364755,
0.456557179454626,
0.4663638940418187,
0.4753440296431128,
0.48354335637736684,
0.4910148374272371,
0.4978165133910413,
0.504009699477145,
0.509657448624664,
0.5148232360328495,
0.5195698249520111,
0.5239582796297158,
0.5280470986794301,
0.5318914503806744,
0.5355424999182532,
0.5390468265979976,
0.5424459358765882,
0.5457758759196603,
0.5490669708381374,
0.552343682498934,
0.5556246099388749,
0.5589226303353554,
0.5622451788880235
],
[
0.20746315119810438,
0.19893179586200152,
0.19334707245936147,
0.19046863409572584,
0.18986149646836267,
0.19101393203979086,
0.19347253388824082,
0.19694549189005345,
0.20134440823690813,
0.20676070454314582,
0.2133933873772592,
0.2214568076680186,
0.23109866216983863,
0.242349925316817,
0.25511343359253746,
0.2691836466975667,
0.28428284983670987,
0.30009977738639754,
0.3163218547383489,
0.33265780150770274,
0.3488510079690555,
0.3646856987605859,
0.3799881455598689,
0.39462482350702743,
0.40849888757438024,
0.4215458831424955,
0.43372925882789753,
0.44503601288506434,
0.4554726514924468,
0.4650615419720869,
0.4738376862842154,
0.4818459059737952,
0.48913841005934783,
0.49577270658007017,
0.501809813409742,
0.5073127227150632,
0.5123450751389833,
0.5169700039095887,
0.521249115236223,
0.5252415791393359,
0.5290033137136139,
0.532586255027602,
0.536037713575819,
0.5393998255423341,
0.5427091123086005,
0.5459961640478426,
0.5492854626094585,
0.5525953553018642,
0.5559381851049875,
0.5593205750802164
],
[
0.20751103662390116,
0.19905719773447797,
0.19361841963918214,
0.1909706433290089,
0.1906867943260638,
0.1922515894838204,
0.19519509463035745,
0.19919601725672414,
0.20412562481289892,
0.2100290921606236,
0.21706080135392777,
0.22540036925827647,
0.2351768113372906,
0.24642029707016316,
0.2590479664300089,
0.2728780728336078,
0.2876601671160199,
0.3031090804157254,
0.31893449895771164,
0.33486259852311717,
0.35064954808092186,
0.3660883402699471,
0.3810108352705733,
0.39528671093881707,
0.4088206117789187,
0.4215483932468257,
0.4334330419600745,
0.44446062592732555,
0.45463647644310745,
0.46398170466706745,
0.4725300938017085,
0.48032536944663784,
0.48741882752468085,
0.49386728567233534,
0.4997313168746483,
0.5050737215313154,
0.5099581950408826,
0.514448151789191,
0.5186056726734408,
0.5224905514823853,
0.5261594249322574,
0.5296649810951133,
0.5330552503832986,
0.5363729911626467,
0.5396551875416439,
0.5429326792422493,
0.5462299423761227,
0.5495650355373213,
0.5529497184295225,
0.5563897411938385
],
[
0.20849191810801956,
0.20004260804634458,
0.19465182517979493,
0.19212250050775911,
0.19204908021970638,
0.19392570083937788,
0.1972754044679567,
0.20175226093427917,
0.20718765157154156,
0.21357756217058807,
0.22102655781440075,
0.229673086438977,
0.23962069739200814,
0.2508924805219767,
0.26341488395848783,
0.27702672469725165,
0.2915034193354661,
0.30658601852676065,
0.32200761790962784,
0.3375135259616451,
0.3528745067555743,
0.36789402817156447,
0.38241100741346645,
0.39629950902502586,
0.4094665709237947,
0.42184901261726376,
0.43340980310747246,
0.44413435656945566,
0.4540269763862574,
0.4631075687244927,
0.4714086817150953,
0.4789728844526116,
0.48585047360231415,
0.49209747922516667,
0.4977739322771345,
0.5029423522200154,
0.5076664132178738,
0.5120097508282191,
0.5160348774044783,
0.5198021830190377,
0.5233690088380253,
0.5267887905774491,
0.5301102798417434,
0.5333768596422345,
0.5366259761704215,
0.5398887111811894,
0.5431895177547212,
0.5465461368812812,
0.5499697038853788,
0.5534650432361162
],
[
0.2102319522374263,
0.20170388426426472,
0.1962559277092706,
0.1937283641510976,
0.19374985753280685,
0.19583574982431853,
0.19951050216894956,
0.20440784083005012,
0.210319885174086,
0.21719135504299497,
0.22507309344431034,
0.23405726239614122,
0.244216130748951,
0.255559809316039,
0.26801878808646007,
0.28144843819868476,
0.2956476009270726,
0.3103826135789405,
0.32541023246771816,
0.34049591396190726,
0.35542641133256814,
0.37001715327564894,
0.3841155093882224,
0.3976011407789771,
0.41038446781644056,
0.42240404354139444,
0.43362339017757945,
0.4440276697755939,
0.4536204219946837,
0.46242050485564495,
0.470459307995665,
0.47777826362844433,
0.4844266512944987,
0.49045967389321526,
0.49593677140219455,
0.5009201332774962,
0.5054733697046508,
0.5096603049368345,
0.5135438623272661,
0.5171850196707456,
0.5206418242564715,
0.5239684685240351,
0.5272144381607484,
0.5304237535836898,
0.5336343318311393,
0.5368774980617353,
0.5401776737057455,
0.5435522619795483,
0.5470117416903435,
0.5505599682389063
],
[
0.2125668236006111,
0.2038729805376511,
0.1982625675726064,
0.19562253674067984,
0.1956269213083132,
0.19782246312889235,
0.2017422532139493,
0.20700337187387663,
0.21335945589773192,
0.2207027214843788,
0.22902767488259748,
0.23837649116673829,
0.2487855577126323,
0.26024686719417156,
0.27268987748428425,
0.285982169744835,
0.2999428694998874,
0.31436181219966464,
0.3290188345272995,
0.34369986172906686,
0.35820851833256845,
0.3723733455797983,
0.38605137566246994,
0.3991290022120607,
0.4115210192185841,
0.42316853226902523,
0.4340362632925002,
0.44410961094399676,
0.4533917041568871,
0.46190059445212633,
0.4696666671597472,
0.4767303062145392,
0.4831398161682673,
0.4889495845135075,
0.4942184546530496,
0.4990082731842536,
0.5033825735593901,
0.5074053609251246,
0.5111399694095421,
0.5146479725771851,
0.5179881392567771,
0.5212154392614066,
0.5243801152739717,
0.5275268469063058,
0.5306940393269532,
0.5339132708913737,
0.5372089314236009,
0.5405980753592904,
0.5440905026975299,
0.5476890670084982
],
[
0.21535330180410042,
0.2064091004181169,
0.2005367882909668,
0.19767772279980922,
0.19756054805777862,
0.19977190115376953,
0.203859568014616,
0.20942722924090607,
0.2161910694990846,
0.22399041582577206,
0.23276207743300156,
0.24249594121662935,
0.25318919598607975,
0.264811527353068,
0.2772867708952726,
0.2904903723695973,
0.30425820540817755,
0.3184011812207209,
0.3327209267879399,
0.3470234956692187,
0.3611297227103394,
0.37488201227710344,
0.38814800235692004,
0.4008217991832669,
0.41282348948019815,
0.42409753679303286,
0.43461053330244986,
0.4443486490080311,
0.45331501191702334,
0.461527168794963,
0.46901471350326035,
0.4758171247247267,
0.481981822919019,
0.48756243446989966,
0.4926172369420907,
0.49720775169275583,
0.5013974478420103,
0.5052505241217669,
0.5088307417478799,
0.5122002914068634,
0.5154186896726338,
0.5185417133486575,
0.5216203928247494,
0.5247000959264123,
0.5278197404286042,
0.5310111752828791,
0.5342987671298878,
0.537699220029677,
0.5412216434819964,
0.5448678682994544
],
[
0.21847622605614558,
0.20920472760108802,
0.20298143788166637,
0.19980789186250209,
0.1994745124985173,
0.20161471169138526,
0.2057961415924748,
0.21161215841010192,
0.21874296631502138,
0.22697552241639546,
0.2361887726638141,
0.24631931015831748,
0.2573230230149857,
0.2691440749998534,
0.2816967055740174,
0.29486009143800795,
0.3084831620108429,
0.3223950604590025,
0.33641735607210743,
0.35037531101272407,
0.364106788721243,
0.3774683855182207,
0.39033897575639825,
0.4026211459677709,
0.4142410648349798,
0.42514729202401397,
0.4353089376810433,
0.4447134844666825,
0.4533644937432216,
0.4612793433113435,
0.46848708625430713,
0.4750264769050072,
0.48094417808827766,
0.4862931413055222,
0.4911311366993892,
0.4955194012904403,
0.4995213713283157,
0.5032014670366312,
0.5066239049179336,
0.5098515232973324,
0.5129446198025416,
0.5159598135677348,
0.5189489584194342,
0.5219581443676786,
0.5250268317305429,
0.5281871639108677,
0.53146350061747,
0.534872203393805,
0.538421690746674,
0.5421127627287
],
[
0.22185087065927386,
0.21218671563497757,
0.20553678963047675,
0.2019663896970826,
0.20133277639775485,
0.2033215771452013,
0.20752491791296063,
0.2135290876836342,
0.22098046872665728,
0.22961514631584495,
0.23925514826543026,
0.24978389430317932,
0.26111491552947064,
0.2731645160635904,
0.28583399161450557,
0.2990024379135198,
0.31252816383364945,
0.32625546529226523,
0.34002360831895007,
0.3536756782847807,
0.3670659276698318,
0.3800650719550919,
0.39256352929964217,
0.4044728927891928,
0.41572603440990474,
0.42627624059513103,
0.4360957258451002,
0.4451737987526037,
0.4535148828495399,
0.46113653155524514,
0.4680675247621773,
0.4743460939922224,
0.48001829230518933,
0.48513650282180615,
0.48975806467370003,
0.49394398657711386,
0.49775771545119324,
0.5012639300546147,
0.5045273368957941,
0.5076114568417724,
0.5105774047304167,
0.5134826793390094,
0.5163799954468096,
0.5193162014936953,
0.5223313336568817,
0.5254578586508107,
0.5287201525276563,
0.5321342514562389,
0.5357078940749879,
0.539440855537995
],
[
0.22542133906447262,
0.21531325215204267,
0.20817611097778077,
0.20414028778998278,
0.20313287516341427,
0.20489591852553854,
0.20905039290556246,
0.21517931364564824,
0.2228983326310496,
0.2318952021625174,
0.24193697626973842,
0.2528549325372815,
0.2645200056185233,
0.27681901060982955,
0.2896375106475799,
0.30285106781213716,
0.31632382645364465,
0.3299120754383868,
0.34347028890822096,
0.35685765206540554,
0.3699437981863431,
0.3826131380881115,
0.3947676368232502,
0.4063281748349313,
0.4172347626414573,
0.4274459109225329,
0.4369374353298437,
0.445700927774425,
0.4537420715915296,
0.46107892638230136,
0.4677402636094398,
0.47376399737607033,
0.47919572609203165,
0.48408737933320567,
0.48849594951862335,
0.4924822795880085,
0.4961098752835414,
0.49944371353806954,
0.5025490263059056,
0.5054900511069236,
0.5083287543672437,
0.511123549697331,
0.5139280485813881,
0.5167898934369158,
0.5197497306422376,
0.5228403823872881,
0.5260862703306158,
0.5295031313070794,
0.5330980470505675,
0.5368697882907494
],
[
0.2291560708799681,
0.21856791549969493,
0.21089845421396705,
0.20634223499152338,
0.2048972225113225,
0.20636502895967712,
0.21039988973769305,
0.216586158848525,
0.2245129640837362,
0.23382331500362033,
0.24423208619447162,
0.25552011510041867,
0.2675160689341128,
0.28007616099907423,
0.2930678923315089,
0.30636019644996315,
0.31981971994870084,
0.3333116306569654,
0.34670301994438907,
0.3598672402963722,
0.3726880304385642,
0.385062791163973,
0.39690477285450787,
0.40814419449868694,
0.4187284530820185,
0.428621635858668,
0.43780354894191603,
0.44626844873795235,
0.4540236243516065,
0.46108793878702437,
0.4674903995206868,
0.47326879705147823,
0.47846842409296236,
0.48314086828247227,
0.48734285754438245,
0.49113512943193405,
0.4945812937353334,
0.4977466611385642,
0.5006970192681118,
0.5034973502923379,
0.5062105000507896,
0.5088958258068097,
0.5116078660279282,
0.5143950888198571,
0.5172987835999776,
0.5203521616134216,
0.5235797241436574,
0.526996943039241,
0.5306102779341881,
0.5344175307368757
],
[
0.2330417620354769,
0.22195225840994,
0.2137201638766515,
0.20860129568100153,
0.20666375500273212,
0.20777096517861143,
0.2116150242602298,
0.21778719850059491,
0.22585547242627355,
0.23542268360736712,
0.24615498647154904,
0.25778491168638223,
0.2700995270201275,
0.28292367448935735,
0.29610482879108163,
0.30950254596622384,
0.32298290974867516,
0.3364170020881495,
0.3496819615393057,
0.362663286458743,
0.3752573809581288,
0.3873737262830019,
0.39893638358323064,
0.4098847611374747,
0.42017371468922976,
0.4297731145052761,
0.43866703032523796,
0.4468526749234731,
0.4543392224314414,
0.4611465877896528,
0.46730422395263965,
0.4728499665928683,
0.4778289334664625,
0.4822924680052682,
0.48629710443396623,
0.4899035249682709,
0.49317547850331067,
0.4961786345504941,
0.4989793556493655,
0.5016433852953494,
0.504234465324101,
0.5068129149034138,
0.5094342205925791,
0.5121477008941496,
0.514995317002085,
0.5180107022150786,
0.521218474830458,
0.524633883577783,
0.5282628124018595,
0.5321021453644171
],
[
0.23707701848873725,
0.2254783879800487,
0.2166666602179365,
0.21095435209348096,
0.20847743877418104,
0.20916260005135331,
0.21274459731019843,
0.2188281001478584,
0.22696640828252207,
0.23672757828699748,
0.2477329644233555,
0.25966914698685967,
0.2722824247756228,
0.2853657186735864,
0.29874481536216313,
0.312267487444816,
0.32579650678707356,
0.33920613805671335,
0.3523811207286142,
0.3652170935601031,
0.3776216152412295,
0.3895152095926379,
0.4008321162392683,
0.4115206189494192,
0.4215429485557591,
0.43087482620677253,
0.4395047409506228,
0.4474330576350283,
0.4546710379905093,
0.4612398373797487,
0.46716951712350363,
0.47249809067285736,
0.4772706030470956,
0.4815382280115792,
0.48535735713350314,
0.4887886495877146,
0.49189601166013625,
0.4947454803525811,
0.49740399604507957,
0.49993806409682423,
0.5024123233072825,
0.5048880584917776,
0.5074217127379347,
0.5100634696130338,
0.5128559841811221,
0.5158333421905025,
0.5190203182248894,
0.5224319863166385,
0.5260737122539839,
0.5299415285280572
],
[
0.2412668955585952,
0.22916283775852175,
0.2197658974998526,
0.21343950581018614,
0.21038402406314996,
0.21059008710288588,
0.2138399661364176,
0.21975889991493783,
0.22789278723818202,
0.237780885798184,
0.24900393888110794,
0.2612050105660531,
0.27409052534569345,
0.28742109650051834,
0.30099944398038353,
0.3146595074830596,
0.32825835713913293,
0.3416710087081048,
0.35478756054236826,
0.36751188644106847,
0.3797611968210443,
0.39146595871580225,
0.4025698521594521,
0.41302959482447127,
0.42281457615293194,
0.4319063095444983,
0.4402977453097693,
0.44799249789440904,
0.45500403684943536,
0.46135487869671266,
0.4670758008550925,
0.47220508229530433,
0.47678776066655293,
0.4808748836793264,
0.48452272449771083,
0.48779192746336003,
0.49074655207568507,
0.4934529899517404,
0.4959787412894749,
0.4983910534919334,
0.500755443836342,
0.5031341485351485,
0.5055845598375436,
0.5081577282406433,
0.510897015758968,
0.5138369864289748,
0.5170026107445449,
0.5204088418972187,
0.5240605954327029,
0.527953133432963
],
[
0.2456191313657834,
0.23302263434357687,
0.22304446789297297,
0.21609246494161144,
0.21242697318848425,
0.21210252252618067,
0.21495348540515777,
0.22063309534985673,
0.22868759109334622,
0.2386337516288117,
0.25001602879707663,
0.2624364269989262,
0.27556244814338837,
0.2891221891171463,
0.30289422970169616,
0.3166970117488406,
0.33037990934118433,
0.3438166041936986,
0.35690057130046854,
0.3695421742846855,
0.38166683928662337,
0.3932138685455266,
0.4041355822523538,
0.4143965956651396,
0.423973130352396,
0.4328523207006938,
0.4410315132080242,
0.4485175726397392,
0.4553262119607336,
0.46148135727875483,
0.467014548885894,
0.47196436785474927,
0.4763758666802452,
0.4802999736981637,
0.48379283557635816,
0.4869150608794149,
0.4897308311049736,
0.49230685394187124,
0.49471114669180755,
0.49701165521771207,
0.4992747342182778,
0.5015635362063365,
0.5039363768225186,
0.5064451602116716,
0.5091339573277331,
0.5120378299751479,
0.5151819830130334,
0.5185813068359967,
0.5222403440447635,
0.5261536815720921
],
[
0.2501424114121368,
0.23707389276648153,
0.22652666670705085,
0.21894618440372943,
0.21464773764832945,
0.21374884738649735,
0.2161399101415279,
0.2215093128150864,
0.22941141169066157,
0.23934694281966834,
0.2508284657551964,
0.26341945335671796,
0.2767495765540597,
0.29051446034044603,
0.3044678297179009,
0.31841138242891887,
0.33218522237106646,
0.3456599829422279,
0.35873082245407206,
0.3713130435524144,
0.383338955888662,
0.39475561636439244,
0.40552315509277304,
0.41561348021503036,
0.4250092286968716,
0.43370288540726,
0.44169602879672365,
0.4489986813329025,
0.45562875057289653,
0.46161154633006196,
0.4669793542371851,
0.47177103883858384,
0.476031642245798,
0.47981193893670077,
0.48316790464974074,
0.4861600584093885,
0.4888526421382547,
0.491312612396044,
0.4936084334863038,
0.49580867993527494,
0.49798047799202444,
0.5001878384503045,
0.5024899542351847,
0.5049395529043577,
0.5075814035641159,
0.5104510773415587,
0.5135740492958891,
0.5169652079125694,
0.5206288082800172,
0.5245588703690196
],
[
0.2548464933458738,
0.24133264800567344,
0.23023609385005864,
0.22203319904156882,
0.21708869405371423,
0.21558118745084923,
0.21745988282643094,
0.2224546503281288,
0.230135374261976,
0.23999315079966244,
0.2515131808699194,
0.26422315633127164,
0.277716306897306,
0.2916562027989376,
0.3057714282510217,
0.3198461395530748,
0.33371002421121476,
0.3472293244025288,
0.3602994802833538,
0.37283938641780806,
0.38478702291274536,
0.3960961673147383,
0.4067339193224714,
0.4166788251837109,
0.4259194455125782,
0.43445325741815466,
0.44228581571540837,
0.4494301191765473,
0.4559061386725311,
0.461740467579079,
0.46696605378517486,
0.47162196944930423,
0.4757531712345104,
0.47941020162572967,
0.4826487822528645,
0.485529253796362,
0.4881158246785645,
0.49047560270801105,
0.4926774001430755,
0.49479032277346874,
0.49688217644227267,
0.49901774808460675,
0.5012570402986548,
0.5036535556933077,
0.5062527367552184,
0.5090906662994158,
0.5121931214672774,
0.5155750511593075,
0.5192405150359012,
0.5231830856652705
],
[
0.259743593080905,
0.24581710271189672,
0.2341987434100716,
0.22538939523368343,
0.2197973295356227,
0.21765914029093963,
0.2189840196369592,
0.2235482999852704,
0.23094409824118245,
0.24065918158399166,
0.25215621023938595,
0.26493029733760903,
0.2785401278969721,
0.2926181492535965,
0.3068680192598516,
0.32105602338182204,
0.3350007034391812,
0.34856291708132353,
0.36163725670197,
0.37414505314615265,
0.3860288597437349,
0.3972481911356898,
0.407776274699612,
0.4175976004298751,
0.4267060962403441,
0.43510379457091103,
0.44279988677659016,
0.44981008281045387,
0.45615620631404186,
0.4618659615010348,
0.4669728104468345,
0.4715158996594069,
0.4755399748344451,
0.4790952238578861,
0.4822369914720487,
0.48502531538569843,
0.4875242435876049,
0.48980090657909076,
0.4919243361978537,
0.49396404420435375,
0.49598839774716474,
0.49806285337891826,
0.5002481339106479,
0.5025984500285613,
0.5051598781637202,
0.5079690050819154,
0.5110519367639683,
0.5144237448474708,
0.5180883906063232,
0.5220391282154477
],
[
0.2648501889922724,
0.2505501861657889,
0.23844621368752048,
0.2290576288858063,
0.22282993776765855,
0.2200532271119072,
0.22079587734869183,
0.22488388751073946,
0.2319373494905294,
0.24144692686780844,
0.25285804398902784,
0.2656371549299798,
0.2793110296588259,
0.29348258354030404,
0.30783132684049636,
0.3221058184210447,
0.3361131151962264,
0.34970800815669517,
0.36278334777197946,
0.37526190939402143,
0.38708982123761343,
0.3982313945893015,
0.4086651407839472,
0.41838076382527034,
0.4273769443537728,
0.43565976145230856,
0.443241625328872,
0.4501406136136591,
0.4563801170808266,
0.4619887085476448,
0.46700015338363565,
0.47145348325741354,
0.4753930579481674,
0.4788685444174097,
0.48193474876673853,
0.48465124588470826,
0.48708176402784126,
0.48929329760937124,
0.49135494111281636,
0.49333645988272723,
0.4953066385241317,
0.49733147297037944,
0.49947229542404886,
0.5017839392818988,
0.5043130606924094,
0.5070967319971574,
0.5101614086669957,
0.5135223459587832,
0.5171835068866465,
0.5211379634361145
],
[
0.2701883915317235,
0.25556134592121593,
0.24301774255791309,
0.23308972216012702,
0.22625326171465263,
0.22284594205946803,
0.22299231999816702,
0.22656920570777148,
0.23322926175390174,
0.24247220733496502,
0.2537322106631528,
0.2664519486520582,
0.28012984581074063,
0.2943416634859577,
0.30874415852170267,
0.32306877670795164,
0.33711110590273957,
0.35071945365895874,
0.3637842261309178,
0.37622878045467073,
0.38800189646522204,
0.39907177121548904,
0.4094213491279608,
0.4190447834972322,
0.4279448387616243,
0.43613106575114335,
0.4436186040222507,
0.4504274827731923,
0.45658230430808683,
0.4621122026685899,
0.4670509764381296,
0.47143730035113696,
0.4753149264360951,
0.47873279290011944,
0.48174496848567894,
0.48441037209256704,
0.4867922224415913,
0.48895719070806926,
0.4909742503838633,
0.4929132427399012,
0.49484320216069755,
0.49683051156869396,
0.498936981657902,
0.5012179656743693,
0.5037206308786377,
0.5064825060196656,
0.5095304098268105,
0.5128798392112042,
0.5165348601309709,
0.5204885032440554
],
[
0.2757862329332474,
0.2608868013947255,
0.24796019435824754,
0.2375459030253415,
0.23014313742546474,
0.22612949362293353,
0.22568045786754504,
0.22872261686260237,
0.2349445185325446,
0.24386099787937882,
0.25490171640498516,
0.26749157721126343,
0.2811053164221976,
0.29529480088753784,
0.30969608000020504,
0.3240245617319921,
0.3380647030004623,
0.3516581344496487,
0.36469226683759337,
0.37709027243546356,
0.38880271116041804,
0.3998007705284539,
0.41007096382408004,
0.4196110934831044,
0.4284272877990963,
0.4365319337451221,
0.44394234535014393,
0.45068002125161155,
0.4567703559674765,
0.4622426779281795,
0.4671304947244952,
0.47147183362565576,
0.47530957415553327,
0.47869168000084983,
0.4816712501407999,
0.48430632408329255,
0.48665939366969535,
0.4887965942072206,
0.4907865706791881,
0.4926990400906904,
0.4946030976895494,
0.49656534118986884,
0.4986479107918564,
0.5009065607465983,
0.5033888873500604,
0.5061328359987513,
0.5091655950002583,
0.5125029567575312,
0.5161491903581529,
0.5200974279018504
],
[
0.28167657721960465,
0.2665679647172229,
0.2533257429831481,
0.24249150501767192,
0.2345800491477409,
0.23000023706808062,
0.2289712179968897,
0.2314662069019718,
0.2372115748192796,
0.24574309901005165,
0.25649338623542745,
0.2688767033494487,
0.2823498919728866,
0.29644510962414955,
0.31078041604842754,
0.32505671405459463,
0.3390479693632464,
0.3525891378556895,
0.36556420767422315,
0.37789547293998094,
0.3895344378684827,
0.4004543916710633,
0.41064453591604316,
0.4201054882682137,
0.428845974799078,
0.43688052911377545,
0.44422802717799076,
0.45091089682322594,
0.456954849389038,
0.46238898852161825,
0.4672461589827649,
0.47156340747848524,
0.47538243865142477,
0.47874996277817167,
0.4817178474116019,
0.484343003167633,
0.4866869540536667,
0.4888150651756527,
0.49079542526029446,
0.492697407823284,
0.49458996212171125,
0.4965397116630054,
0.49860896166756535,
0.5008537345884903,
0.5033219615364242,
0.506051954720109,
0.5090712705281792,
0.5123960452254814,
0.516030848068224,
0.5199690543921326
],
[
0.2878947272200531,
0.27264822949467604,
0.2591676167104658,
0.247991482857527,
0.23964233627172235,
0.2345506770007471,
0.23297048087475883,
0.23491658713124552,
0.24015370307406922,
0.24824389337659342,
0.25863060035076774,
0.270725550556257,
0.283974540444389,
0.29789510514723805,
0.3120907029111351,
0.3262497228107492,
0.3401365782837184,
0.35357974203544806,
0.3664594688086006,
0.37869654847401524,
0.3902426262084518,
0.4010722108803117,
0.411176298959341,
0.4205574619521745,
0.42922621971609404,
0.4371985184209976,
0.44449413557196243,
0.45113583956112707,
0.4571491363878426,
0.4625624420818634,
0.46740752706711153,
0.4717200890477121,
0.4755403243285002,
0.47891338370394954,
0.4818896178191902,
0.48452453784356075,
0.4868784401220209,
0.48901566802388363,
0.49100351034089124,
0.49291076294077685,
0.49480600814060804,
0.4967556929391469,
0.49882211061654486,
0.5010614074768164,
0.5035217447313585,
0.5062417422598923,
0.5092493150277688,
0.5125609848947235,
0.5161817130761616,
0.5201052560388285
],
[
0.29447511375607544,
0.27916871097977336,
0.26553472607870515,
0.25410382111985585,
0.24539836852758748,
0.2398605339886833,
0.23776934825779555,
0.2391748507500136,
0.24387920192473095,
0.25147529495055043,
0.26142529152477845,
0.27314706048229187,
0.2860830282939603,
0.29974198860942525,
0.3137168235539154,
0.32768586117313026,
0.34140521566475573,
0.3546972743188287,
0.3674383791596676,
0.3795472700239305,
0.3909749742399137,
0.40169635689818933,
0.4117033153388205,
0.42099949860323793,
0.42959639124182214,
0.43751058617105576,
0.4447620666791519,
0.4513733166403266,
0.4573690789766903,
0.46277658594127635,
0.46762609186117765,
0.4719515501865387,
0.475791292038279,
0.47918858241917633,
0.48219195207541393,
0.4848552269084789,
0.48723720227233147,
0.4894009361073112,
0.49141266243013454,
0.4933403548684398,
0.49525199795178804,
0.4972136503748396,
0.4992874073465343,
0.5015293857788471,
0.5039878636422568,
0.5067017009929323,
0.5096991538220267,
0.5129971636283363,
0.5166011681115122,
0.5205054359957849
],
[
0.3014476291300607,
0.286163713643799,
0.2724661936597562,
0.2608731076010597,
0.25189919726649956,
0.24598856815946712,
0.2434353280669373,
0.244317438363982,
0.24847236524483027,
0.25552724599435,
0.26497028597872796,
0.2762342359328907,
0.2887662823135345,
0.3020729508418662,
0.3157411316801202,
0.32944199743710195,
0.3429249539282562,
0.35600694106267516,
0.3685603746464731,
0.3805015099848154,
0.3917800693192794,
0.40237045285463335,
0.41226458533590904,
0.42146632146819557,
0.42998727420863,
0.43784390231620096,
0.4450556792452254,
0.4516441571673141,
0.45763273578210484,
0.46304694606861885,
0.46791506508418074,
0.4722688896924391,
0.4761445143077589,
0.47958297939575595,
0.4826306823190682,
0.48533946898586106,
0.4877663527629165,
0.4899728357174214,
0.4920238361362765,
0.4939862550965259,
0.49592724295670504,
0.49791225275989676,
0.5000029897569602,
0.5022553820910991,
0.5047177044903782,
0.5074289824022206,
0.5104177873279687,
0.5137015058426975,
0.5172861275169437,
0.5211665549714376
],
[
0.3088341948711598,
0.29365669117764803,
0.2799867368513449,
0.2683254070066227,
0.25917298959352947,
0.2529666113621217,
0.2500059843665074,
0.25038947706544656,
0.2539866918671339,
0.2604610678875173,
0.2693330688350695,
0.2800585186871163,
0.29209747324855434,
0.30496096560555197,
0.3182349007684645,
0.3315866184276675,
0.34476076187229493,
0.3575697415173287,
0.3698822444550232,
0.3816117613568839,
0.3927061320884198,
0.4031385465638226,
0.4129001330462145,
0.4219941099413184,
0.430431397777599,
0.43822754550662363,
0.44540079965387075,
0.4519711280407285,
0.4579599996310392,
0.46339071882882765,
0.46828911694689784,
0.4726844156345645,
0.47661009597024134,
0.48010463118650504,
0.4832119688307636,
0.48598167794501845,
0.4884687073540896,
0.4907327316376591,
0.4928370914247305,
0.49484736395870405,
0.4968296278552879,
0.4988485115079691,
0.5009651359356344,
0.5032350777277843,
0.5057064836744519,
0.5084184636426144,
0.5113998713391343,
0.5146685544758772,
0.5182311190688446,
0.5220832113087059
],
[
0.3166460546559675,
0.3016572903662655,
0.2881035853095852,
0.27646519042275786,
0.26722206139658283,
0.26079668268216627,
0.25748599105852166,
0.25740158651492295,
0.2604413433326561,
0.26630562338307917,
0.27455182298507746,
0.284665909022979,
0.29612838102091027,
0.3084614988771908,
0.32125541423280823,
0.33417729425791537,
0.3469693134934708,
0.3594405799748108,
0.37145650431000105,
0.3829277330771715,
0.39379979984201846,
0.4040440532959892,
0.4136500849087681,
0.42261969448934994,
0.4309623309480096,
0.43869188626671696,
0.4458246822014949,
0.45237846266868653,
0.4583721876171662,
0.4638264165800977,
0.46876407249551505,
0.47321138848560385,
0.47719886076775175,
0.4807620576587001,
0.48394216539147655,
0.4867861840844454,
0.4893467201113308,
0.49168135336255203,
0.4938515889732659,
0.49592143270869127,
0.497955656856244,
0.5000178482237699,
0.5021683501256925,
0.5044622239830577,
0.5069473611329905,
0.5096628697923579,
0.5126378450272359,
0.5158906017632531,
0.5194284147994328,
0.5232477694469574
],
[
0.32488210457628164,
0.31015980588155984,
0.29680524581487444,
0.2852745891138961,
0.27602271707552956,
0.2694513478447014,
0.2658477502748507,
0.2653303734942726,
0.26782116594230215,
0.27305668925875626,
0.2806341777185214,
0.2900752507048559,
0.30088741766089155,
0.312610446729374,
0.32484394434243563,
0.33725877385614494,
0.34959723682481697,
0.36166667900891264,
0.3733299703595597,
0.38449507337622596,
0.39510498536217,
0.40512873584511394,
0.4145537577893828,
0.4233797410825648,
0.43161395333380786,
0.4392679356994267,
0.44635542873273415,
0.4528913457689141,
0.4588915863369825,
0.4643734694707618,
0.4693565667743169,
0.4738637269748208,
0.4779221055910684,
0.4815640425561741,
0.4848276642203364,
0.4877571215111114,
0.49040241121093014,
0.49281876115381845,
0.4950655920767529,
0.49720509859745393,
0.49930051894784844,
0.5014141868813384,
0.5036054782402382,
0.5059287771765377,
0.5084315909583442,
0.5111529360165464,
0.5141221006939415,
0.5173578627939807,
0.5208682048647486,
0.5246505309950137
],
[
0.3335283689041906,
0.3191430952531281,
0.3060620653441992,
0.29471478819230174,
0.28552755774273764,
0.2788768491005947,
0.2750350338086164,
0.2741221063131913,
0.27607989563530755,
0.2806793307131347,
0.2875586195206705,
0.2962787480877813,
0.3063794359966187,
0.3174234498029426,
0.329024762185224,
0.34086183521963215,
0.3526799043542398,
0.3642863736276667,
0.37554259455945027,
0.3863542666003896,
0.39666184461649145,
0.4064317462198383,
0.4156487743192837,
0.42430993812636125,
0.43241971095092585,
0.43998666728032965,
0.44702137377137807,
0.45353535946780016,
0.4595409569114071,
0.4650517876249906,
0.4700836626367297,
0.47465568012335113,
0.47879132538971464,
0.4825194099020266,
0.4858747223770162,
0.48889830286646724,
0.491637288065873,
0.49414431133833875,
0.4964764735391812,
0.49869393039833754,
0.5008581686976538,
0.5030300661503366,
0.5052678476129758,
0.507625061436286,
0.5101487026234025,
0.512877602569461,
0.5158411879344185,
0.519058684413177,
0.5225388070858459,
0.5262799412471536
],
[
0.3425585471185367,
0.32857177431115,
0.3158282681763332,
0.3047290582433777,
0.2956695627870319,
0.28899813463970453,
0.2849686631306636,
0.28369857517231994,
0.28514565890447263,
0.2891125835852291,
0.2952780921619132,
0.3032444398252121,
0.3125871958232577,
0.32289655083875357,
0.33380519788072816,
0.3450029338052655,
0.356240815531092,
0.36732833488474925,
0.37812660412152577,
0.3885397389330332,
0.3985058819471938,
0.40798875175074995,
0.4169702236037552,
0.42544420043245984,
0.4334118689214715,
0.4408783217617093,
0.4478504438357615,
0.45433589843817773,
0.46034300682026247,
0.4658812901528278,
0.47096243708011787,
0.4756014707446173,
0.4798179133672106,
0.4836367800902536,
0.48708927260144486,
0.49021308339111996,
0.493052260691681,
0.49565662062599647,
0.4980807261484317,
0.5003824817857683,
0.5026214188261864,
0.5048567670217503,
0.5071454251456997,
0.509539952525462,
0.5120867054349341,
0.514824234738483,
0.5177820439940749,
0.5209797811190388,
0.5244269038587991,
0.5281228230441193
],
[
0.35193542746182616,
0.33839836828943326,
0.326044993323835,
0.3152467811015622,
0.3063671236593245,
0.2997248027824817,
0.29555312234496356,
0.2939639882381291,
0.29492767475666126,
0.29827549904496226,
0.3037250477065269,
0.3109201062627266,
0.31947415120402095,
0.32900800016062054,
0.33917665222846355,
0.34968461031613135,
0.3602915669852416,
0.37081123627124274,
0.3811059660225142,
0.3910791961023958,
0.40066721511537007,
0.40983116606112757,
0.41854988552194416,
0.42681390635100613,
0.43462077541444266,
0.44197170803035835,
0.44886950258685704,
0.4553175647337838,
0.4613198383417144,
0.4668814099618908,
0.47200954425848185,
0.4767149176888398,
0.48101284278548345,
0.4849243109416314,
0.4884767227228037,
0.49170421723088864,
0.494647552917121,
0.4973535297099905,
0.4998739756387968,
0.5022643501325711,
0.5045820408324498,
0.5068844508116894,
0.5092269878540459,
0.5116610757884585,
0.5142323085394209,
0.5169788594973693,
0.5199302417273489,
0.5231064892018389,
0.5265177977044335,
0.530164629440899
],
[
0.36161289469983526,
0.3485660387805339,
0.33664383125215497,
0.32618784171423504,
0.3175292773086794,
0.310957093658955,
0.3066831411758397,
0.3048118811811013,
0.30532313576964043,
0.30807360341323703,
0.31281714103820096,
0.31923797805292575,
0.3269881014451387,
0.3357209021100484,
0.3451163686136821,
0.3548965486821089,
0.36483235549987647,
0.3747438417739831,
0.38449617538235886,
0.39399320283958966,
0.40317001542351316,
0.4119855023823042,
0.42041553659652814,
0.4284471856409782,
0.43607415358651147,
0.4432935157087936,
0.4501036965785802,
0.4565035560595443,
0.4624923862924649,
0.4680705859918463,
0.47324076566773543,
0.47800904613245904,
0.48238633841005923,
0.4863894304112809,
0.4900417489141155,
0.4933737097971843,
0.4964226117571535,
0.4992320669635084,
0.5018509954712014,
0.5043322386209925,
0.506730870210925,
0.5091023028369975,
0.5115002999965023,
0.5139750114542772,
0.5165711489522228,
0.5193264107652195,
0.5222702466772071,
0.5254230304589518,
0.5287956767891588,
0.5323897066735054
],
[
0.37153824980156874,
0.35901152614717935,
0.3475504221505172,
0.33746687835270145,
0.3290605712971176,
0.3225913061276653,
0.31824957112647606,
0.31613130953277524,
0.31622350033278696,
0.31840500774078057,
0.3224628583537459,
0.3281196385501416,
0.33506522457329696,
0.34298634767674324,
0.35158972048904685,
0.3606171263367298,
0.3698529193903215,
0.379125465186785,
0.3883043462499517,
0.39729500088065683,
0.4060321306996573,
0.4144728632374711,
0.4225903546919615,
0.43036827672135325,
0.43779644043293936,
0.4448676580119543,
0.4515758193243399,
0.45791506414398925,
0.4638798605197719,
0.46946575698455806,
0.474670560180981,
0.4794956970749704,
0.48394754717996114,
0.48803856890622627,
0.4917880890963651,
0.4952226708226494,
0.4983760179390988,
0.5012884136096616,
0.5040057232533904,
0.5065780200182312,
0.5090579132458976,
0.5114986775119968,
0.5139522914477906,
0.5164675010347716,
0.5190880206010451,
0.5218509756991037,
0.5247856753248263,
0.5279127773361203,
0.531243882235882,
0.5347815593640218
],
[
0.3816545916646248,
0.3696680140890201,
0.35868778999310447,
0.34899704781921614,
0.3408652121933733,
0.3345242887789579,
0.33014418865525186,
0.3278119213314471,
0.3275197420001972,
0.32916566797649033,
0.3325665658425927,
0.3374806333593856,
0.3436340696382013,
0.35074669208231163,
0.35855275825920946,
0.36681527673949355,
0.3753338000778932,
0.38394672930199203,
0.3925295670425439,
0.4009905508415576,
0.40926489168750635,
0.41730857664024573,
0.42509243841310146,
0.4325969722858201,
0.4398081929068531,
0.4467146654509878,
0.4533057137543869,
0.4595707022759304,
0.4654992108656137,
0.47108187294869897,
0.47631162838655694,
0.4811851486997188,
0.48570421891419036,
0.4898769001654957,
0.4937183435994178,
0.49725117341302,
0.5005054011378701,
0.5035178722565734,
0.5063312791272528,
0.5089928009945566,
0.5115524529423747,
0.514061241249875,
0.5165692326778897,
0.5191236493181559,
0.5217670981892616,
0.5245360352981616,
0.5274595474238701,
0.5305585122035442,
0.5338451698746776,
0.5373231106875306
],
[
0.39190306724524243,
0.38046771041880867,
0.369979209717926,
0.36069312277199256,
0.35285034541308813,
0.34665688333544753,
0.34226331685248185,
0.33974778483534646,
0.33910638309899155,
0.34025355886981856,
0.34303268516081387,
0.34723446466021873,
0.3526191910438117,
0.35893869480707247,
0.36595478379290775,
0.3734524875204279,
0.38124779843804085,
0.38919054256943086,
0.39716347188897977,
0.405078774178962,
0.41287309574191444,
0.4205019847000608,
0.4279344548266192,
0.4351481715391322,
0.4421255820015995,
0.4488511519765666,
0.4553097344902366,
0.4614859825390949,
0.46736463375691933,
0.47293144177652213,
0.4781745067973063,
0.48308576317551977,
0.48766240860527266,
0.49190810024298076,
0.49583379066420696,
0.4994581248075674,
0.5028073638659439,
0.5059148410982576,
0.5088199869124128,
0.5115669864036074,
0.5142031522912562,
0.5167771102953389,
0.5193369025444431,
0.5219281173981106,
0.5245921507009897,
0.5273646936673334,
0.5302745264323927,
0.5333426745754262,
0.5365819601585184,
0.5399969512525857
],
[
0.4022248599384805,
0.3913440243139668,
0.3813505136695101,
0.37247386719736447,
0.36492846011304425,
0.3588963584196217,
0.3545103312618178,
0.351840035932529,
0.3508843426572543,
0.3515717304454305,
0.35376889422043556,
0.35729580977244224,
0.3619442304011034,
0.36749632173824864,
0.37374076907368375,
0.38048478111170697,
0.38756150807731354,
0.39483320953184664,
0.40219097385737335,
0.40955196514713194,
0.41685515595983885,
0.4240563859521531,
0.4311234258809173,
0.4380315552546455,
0.4447599943690919,
0.45128937469828284,
0.45760029132994007,
0.46367286347557957,
0.46948713986240137,
0.47502412875597577,
0.4802672077350099,
0.4852036726451266,
0.4898262119603009,
0.49413413420649516,
0.49813422443843747,
0.501841154657293,
0.5052774181233101,
0.5084727963341058,
0.5114633991638183,
0.5142903434457778,
0.5169981537085079,
0.5196329813976146,
0.5222407460205034,
0.5248653032088444,
0.5275467404936736,
0.5303198914801535,
0.5332131432851432,
0.5362475913202991,
0.5394365711887935,
0.5427855716217387
],
[
0.4125628449500391,
0.40223329244423334,
0.3927318258108878,
0.38426372423527927,
0.3770190027679335,
0.37115796230153125,
0.3667972096883974,
0.3639985136316778,
0.3627627471121394,
0.3630303482673859,
0.36468838987732266,
0.3675829341983523,
0.37153436284344343,
0.37635309446354126,
0.3818534940998309,
0.3878645603649342,
0.3942368260868745,
0.40084559822211424,
0.4075911060976747,
0.414396339248042,
0.42120339915932703,
0.4279691279422342,
0.43466065964462747,
0.4412513963390699,
0.44771775826814053,
0.4540369061626343,
0.460185493667419,
0.4661393875879488,
0.4718742011768005,
0.47736642580600036,
0.48259491989600517,
0.48754251744382177,
0.4921975452387441,
0.49655507965570905,
0.5006178227234392,
0.5043965263700277,
0.5079099388048831,
0.5111842854187157,
0.5142523275361284,
0.5171520660503656,
0.5199251740795268,
0.5226152539913741,
0.5252660198893392,
0.5279195070762883,
0.5306144050681754,
0.5333846004001009,
0.5362580000148169,
0.5392556861909275,
0.5423914310640454,
0.545671574629025
],
[
0.42286288813989753,
0.4130760592277556,
0.4040587660970422,
0.3959939010127821,
0.38904932685756377,
0.3833657601753655,
0.37904531967524385,
0.37614258991093313,
0.37465990210497,
0.3745478851932444,
0.3757113306450862,
0.378019358322828,
0.3813181107285853,
0.3854439458416887,
0.39023533643987846,
0.39554224138965544,
0.40123236618371677,
0.4071943002256052,
0.4133379212498794,
0.41959268388721643,
0.42590449253678747,
0.4322318417714575,
0.4385418273683638,
0.4448065137025284,
0.4510000062121962,
0.4570964342795192,
0.46306891218972956,
0.46888942516831544,
0.4745294933672152,
0.4799614050773877,
0.4851597827177009,
0.4901032479765306,
0.494775979076363,
0.4991689950483132,
0.5032810508595856,
0.5071190764428997,
0.5106981374738188,
0.5140409336006158,
0.5171768799234995,
0.5201408401062492,
0.5229715953375724,
0.5257101432357394,
0.5283979252830608,
0.5310750807775407,
0.5337788196973802,
0.536541996390828,
0.5393919509518921,
0.5423496662451269,
0.545429267002395,
0.5486378648585903
],
[
0.4330747992153106,
0.4238179502702111,
0.41527319675538027,
0.4076029565115278,
0.4009551174580626,
0.3954529233725625,
0.3911856332058542,
0.3882013963715821,
0.3865036277718212,
0.38605165079195436,
0.3867656128584058,
0.38853488625693444,
0.39122858410391226,
0.3947065965564496,
0.39882969308393046,
0.40346763319392065,
0.40850472489258094,
0.41384273448804304,
0.41940140665895426,
0.42511707829393514,
0.4309399763958932,
0.43683080568996085,
0.4427571817125077,
0.4486903712675569,
0.45460268086483646,
0.46046569955101857,
0.46624946925621613,
0.47192253653395416,
0.4774527453327435,
0.4828085681790051,
0.4879607447534993,
0.49288399920926745,
0.4975586339231891,
0.5019718391477632,
0.5061186068233154,
0.5100021857273522,
0.5136340594508629,
0.5170334658445683,
0.5202265057506189,
0.5232449103247907,
0.5261245508800273,
0.5289037838304372,
0.5316217266768916,
0.5343165594733271,
0.5370239400757253,
0.5397756109072024,
0.542598260346784,
0.5455126838690847,
0.5485332698301466,
0.5516678137705974
],
[
0.44315297194835496,
0.4344101959805482,
0.42632359331798103,
0.41903700045764175,
0.4126804214284933,
0.4073616206180057,
0.4031585344991117,
0.40011362472848905,
0.3982311388070966,
0.3974778337810267,
0.39778713727114046,
0.3990661237120843,
0.4012042372172464,
0.4040825030666967,
0.4075820507707159,
0.41159105450805417,
0.41600957498342306,
0.42075216167724205,
0.42574838154517763,
0.4309416526281929,
0.4362868790047887,
0.44174742070210676,
0.4472919057164854,
0.4528913173956201,
0.4585166839817828,
0.4641375726977337,
0.46972146322849095,
0.4752339591636897,
0.48063970294946473,
0.4859037979286556,
0.49099351250788875,
0.49588004355107557,
0.5005401420833647,
0.5049574457650633,
0.5091234109257644,
0.5130377853054999,
0.5167086062797213,
0.5201517456791764,
0.5233900505373239,
0.5264521495283069,
0.5293710083642582,
0.5321823249612577,
0.5349228575472592,
0.5376287766076875,
0.5403341249860661,
0.5430694598708437,
0.5458607362225227,
0.5487284741089,
0.5516872334318385,
0.554745399953168
]
]
},
{
"hoverinfo": "text",
"legendgroup": "In-sample",
"marker": {
"color": "black",
"opacity": 0.5,
"symbol": 1
},
"mode": "markers",
"name": "In-sample",
"text": [
"Arm 0_0
hartmann6: -0.156926 (SEM: 0)
x1: 0.609558
x2: 0.38527
x3: 0.842799
x4: 0.427459
x5: 0.581037
x6: 0.242283",
"Arm 1_0
hartmann6: -0.0781471 (SEM: 0)
x1: 0.464273
x2: 0.964537
x3: 0.393806
x4: 0.741423
x5: 0.374555
x6: 0.557693",
"Arm 2_0
hartmann6: -0.950105 (SEM: 0)
x1: 0.22483
x2: 0.542636
x3: 0.93867
x4: 0.413404
x5: 0.313344
x6: 0.981889",
"Arm 3_0
hartmann6: -0.152688 (SEM: 0)
x1: 0.375896
x2: 0.167969
x3: 0.0767304
x4: 0.724087
x5: 0.508891
x6: 0.506212",
"Arm 4_0
hartmann6: -0.00463175 (SEM: 0)
x1: 0.710853
x2: 0.0418649
x3: 0.0822931
x4: 0.209533
x5: 0.854872
x6: 0.401944",
"Arm 5_0
hartmann6: -0.0786275 (SEM: 0)
x1: 0.937608
x2: 0.595109
x3: 0.26793
x4: 0.19014
x5: 0.0626795
x6: 0.885384",
"Arm 6_0
hartmann6: -0.0345872 (SEM: 0)
x1: 0.120472
x2: 0.556843
x3: 0.682256
x4: 0.928503
x5: 0.631362
x6: 0.41973",
"Arm 7_0
hartmann6: -0.0911865 (SEM: 0)
x1: 0.264624
x2: 0.279927
x3: 0.240536
x4: 0.495718
x5: 0.803813
x6: 0.602432",
"Arm 8_0
hartmann6: -0.00145489 (SEM: 0)
x1: 0.921266
x2: 0.809655
x3: 0.438727
x4: 8.80007e-05
x5: 0.744998
x6: 0.270863",
"Arm 9_0
hartmann6: -0.0146737 (SEM: 0)
x1: 0.797808
x2: 0.740205
x3: 0.187059
x4: 0.857293
x5: 0.411034
x6: 0.457282",
"Arm 10_0
hartmann6: -0.125528 (SEM: 0)
x1: 0.173432
x2: 0.76843
x3: 0.163187
x4: 0.0888458
x5: 0.10114
x6: 0.286822",
"Arm 11_0
hartmann6: -0.0366825 (SEM: 0)
x1: 0.59742
x2: 0.531002
x3: 0.554584
x4: 0.55474
x5: 0.999257
x6: 0.573779",
"Arm 12_0
hartmann6: -0.367209 (SEM: 0)
x1: 0.0703345
x2: 0.690299
x3: 0.320792
x4: 0.109058
x5: 0.0883175
x6: 0.583747",
"Arm 13_0
hartmann6: -0.954092 (SEM: 0)
x1: 0.0907955
x2: 0.619497
x3: 0.529177
x4: 0.207686
x5: 0.169786
x6: 0.809718",
"Arm 14_0
hartmann6: -0.959026 (SEM: 0)
x1: 0.0936221
x2: 0.605643
x3: 0.556463
x4: 0.22399
x5: 0.187507
x6: 0.878419",
"Arm 15_0
hartmann6: -1.11188 (SEM: 0)
x1: 0.100608
x2: 0.608034
x3: 0.611621
x4: 0.224986
x5: 0.178161
x6: 0.797704",
"Arm 16_0
hartmann6: -1.15037 (SEM: 0)
x1: 0.10625
x2: 0.604204
x3: 0.687468
x4: 0.230214
x5: 0.175157
x6: 0.753018",
"Arm 17_0
hartmann6: -0.90932 (SEM: 0)
x1: 0.114978
x2: 0.616664
x3: 0.689686
x4: 0.245888
x5: 0.111512
x6: 0.795159",
"Arm 18_0
hartmann6: -1.3647 (SEM: 0)
x1: 0.105047
x2: 0.591428
x3: 0.68324
x4: 0.230463
x5: 0.229862
x6: 0.753203",
"Arm 19_0
hartmann6: -1.5106 (SEM: 0)
x1: 0.107005
x2: 0.576046
x3: 0.695174
x4: 0.235956
x5: 0.288874
x6: 0.750303",
"Arm 20_0
hartmann6: -1.53788 (SEM: 0)
x1: 0.107604
x2: 0.564793
x3: 0.698066
x4: 0.239062
x5: 0.329937
x6: 0.751326",
"Arm 21_0
hartmann6: -1.82678 (SEM: 0)
x1: 0.0885114
x2: 0.494253
x3: 0.686294
x4: 0.214039
x5: 0.318827
x6: 0.743235",
"Arm 22_0
hartmann6: -1.98481 (SEM: 0)
x1: 0.0801436
x2: 0.446914
x3: 0.691899
x4: 0.204454
x5: 0.292384
x6: 0.741138",
"Arm 23_0
hartmann6: -2.13691 (SEM: 0)
x1: 0.0678483
x2: 0.374346
x3: 0.708889
x4: 0.195153
x5: 0.285289
x6: 0.743248",
"Arm 24_0
hartmann6: -2.12357 (SEM: 0)
x1: 0.0431209
x2: 0.306832
x3: 0.714573
x4: 0.16544
x5: 0.301903
x6: 0.742107",
"Arm 25_0
hartmann6: -2.37682 (SEM: 0)
x1: 0.0799936
x2: 0.313235
x3: 0.717798
x4: 0.245628
x5: 0.288675
x6: 0.749132",
"Arm 26_0
hartmann6: -2.57996 (SEM: 0)
x1: 0.0839778
x2: 0.245926
x3: 0.69269
x4: 0.296408
x5: 0.292079
x6: 0.738119",
"Arm 27_0
hartmann6: -2.64922 (SEM: 0)
x1: 0.088011
x2: 0.19592
x3: 0.656921
x4: 0.342264
x5: 0.279115
x6: 0.715612",
"Arm 28_0
hartmann6: -2.80806 (SEM: 0)
x1: 0.159871
x2: 0.162642
x3: 0.655405
x4: 0.320893
x5: 0.280748
x6: 0.727409"
],
"type": "scatter",
"x": [
0.6095580458641052,
0.46427332516759634,
0.22483001183718443,
0.37589621637016535,
0.710853218100965,
0.9376077298074961,
0.12047221325337887,
0.2646239399909973,
0.9212664058431983,
0.7978077847510576,
0.1734319757670164,
0.5974199073389173,
0.07033450008774463,
0.09079547741327233,
0.09362208953210266,
0.10060839553609507,
0.10624994079175323,
0.1149784791706915,
0.10504711814755888,
0.10700470378779625,
0.10760366914557919,
0.08851138121389444,
0.08014364755496461,
0.06784834626592685,
0.04312088812470869,
0.07999361978694751,
0.08397776679336263,
0.08801102360378645,
0.15987122390002484
],
"xaxis": "x",
"y": [
0.3852703273296356,
0.9645370254293084,
0.542636320926249,
0.1679691094905138,
0.041864871978759766,
0.5951094664633274,
0.5568432779982686,
0.27992690820246935,
0.8096554977819324,
0.7402053559198976,
0.7684295950457454,
0.5310021433979273,
0.6902987748966037,
0.6194972201699956,
0.6056434996224355,
0.60803363140874,
0.6042040438396834,
0.616663715604231,
0.5914278420342505,
0.5760460768291786,
0.5647934082098882,
0.4942525068732854,
0.446914319451564,
0.3743464278207046,
0.3068323014502012,
0.31323463450819583,
0.24592578808444576,
0.19591965499752736,
0.16264215268809964
],
"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.156926 (SEM: 0)
x1: 0.609558
x2: 0.38527
x3: 0.842799
x4: 0.427459
x5: 0.581037
x6: 0.242283",
"Arm 1_0
hartmann6: -0.0781471 (SEM: 0)
x1: 0.464273
x2: 0.964537
x3: 0.393806
x4: 0.741423
x5: 0.374555
x6: 0.557693",
"Arm 2_0
hartmann6: -0.950105 (SEM: 0)
x1: 0.22483
x2: 0.542636
x3: 0.93867
x4: 0.413404
x5: 0.313344
x6: 0.981889",
"Arm 3_0
hartmann6: -0.152688 (SEM: 0)
x1: 0.375896
x2: 0.167969
x3: 0.0767304
x4: 0.724087
x5: 0.508891
x6: 0.506212",
"Arm 4_0
hartmann6: -0.00463175 (SEM: 0)
x1: 0.710853
x2: 0.0418649
x3: 0.0822931
x4: 0.209533
x5: 0.854872
x6: 0.401944",
"Arm 5_0
hartmann6: -0.0786275 (SEM: 0)
x1: 0.937608
x2: 0.595109
x3: 0.26793
x4: 0.19014
x5: 0.0626795
x6: 0.885384",
"Arm 6_0
hartmann6: -0.0345872 (SEM: 0)
x1: 0.120472
x2: 0.556843
x3: 0.682256
x4: 0.928503
x5: 0.631362
x6: 0.41973",
"Arm 7_0
hartmann6: -0.0911865 (SEM: 0)
x1: 0.264624
x2: 0.279927
x3: 0.240536
x4: 0.495718
x5: 0.803813
x6: 0.602432",
"Arm 8_0
hartmann6: -0.00145489 (SEM: 0)
x1: 0.921266
x2: 0.809655
x3: 0.438727
x4: 8.80007e-05
x5: 0.744998
x6: 0.270863",
"Arm 9_0
hartmann6: -0.0146737 (SEM: 0)
x1: 0.797808
x2: 0.740205
x3: 0.187059
x4: 0.857293
x5: 0.411034
x6: 0.457282",
"Arm 10_0
hartmann6: -0.125528 (SEM: 0)
x1: 0.173432
x2: 0.76843
x3: 0.163187
x4: 0.0888458
x5: 0.10114
x6: 0.286822",
"Arm 11_0
hartmann6: -0.0366825 (SEM: 0)
x1: 0.59742
x2: 0.531002
x3: 0.554584
x4: 0.55474
x5: 0.999257
x6: 0.573779",
"Arm 12_0
hartmann6: -0.367209 (SEM: 0)
x1: 0.0703345
x2: 0.690299
x3: 0.320792
x4: 0.109058
x5: 0.0883175
x6: 0.583747",
"Arm 13_0
hartmann6: -0.954092 (SEM: 0)
x1: 0.0907955
x2: 0.619497
x3: 0.529177
x4: 0.207686
x5: 0.169786
x6: 0.809718",
"Arm 14_0
hartmann6: -0.959026 (SEM: 0)
x1: 0.0936221
x2: 0.605643
x3: 0.556463
x4: 0.22399
x5: 0.187507
x6: 0.878419",
"Arm 15_0
hartmann6: -1.11188 (SEM: 0)
x1: 0.100608
x2: 0.608034
x3: 0.611621
x4: 0.224986
x5: 0.178161
x6: 0.797704",
"Arm 16_0
hartmann6: -1.15037 (SEM: 0)
x1: 0.10625
x2: 0.604204
x3: 0.687468
x4: 0.230214
x5: 0.175157
x6: 0.753018",
"Arm 17_0
hartmann6: -0.90932 (SEM: 0)
x1: 0.114978
x2: 0.616664
x3: 0.689686
x4: 0.245888
x5: 0.111512
x6: 0.795159",
"Arm 18_0
hartmann6: -1.3647 (SEM: 0)
x1: 0.105047
x2: 0.591428
x3: 0.68324
x4: 0.230463
x5: 0.229862
x6: 0.753203",
"Arm 19_0
hartmann6: -1.5106 (SEM: 0)
x1: 0.107005
x2: 0.576046
x3: 0.695174
x4: 0.235956
x5: 0.288874
x6: 0.750303",
"Arm 20_0
hartmann6: -1.53788 (SEM: 0)
x1: 0.107604
x2: 0.564793
x3: 0.698066
x4: 0.239062
x5: 0.329937
x6: 0.751326",
"Arm 21_0
hartmann6: -1.82678 (SEM: 0)
x1: 0.0885114
x2: 0.494253
x3: 0.686294
x4: 0.214039
x5: 0.318827
x6: 0.743235",
"Arm 22_0
hartmann6: -1.98481 (SEM: 0)
x1: 0.0801436
x2: 0.446914
x3: 0.691899
x4: 0.204454
x5: 0.292384
x6: 0.741138",
"Arm 23_0
hartmann6: -2.13691 (SEM: 0)
x1: 0.0678483
x2: 0.374346
x3: 0.708889
x4: 0.195153
x5: 0.285289
x6: 0.743248",
"Arm 24_0
hartmann6: -2.12357 (SEM: 0)
x1: 0.0431209
x2: 0.306832
x3: 0.714573
x4: 0.16544
x5: 0.301903
x6: 0.742107",
"Arm 25_0
hartmann6: -2.37682 (SEM: 0)
x1: 0.0799936
x2: 0.313235
x3: 0.717798
x4: 0.245628
x5: 0.288675
x6: 0.749132",
"Arm 26_0
hartmann6: -2.57996 (SEM: 0)
x1: 0.0839778
x2: 0.245926
x3: 0.69269
x4: 0.296408
x5: 0.292079
x6: 0.738119",
"Arm 27_0
hartmann6: -2.64922 (SEM: 0)
x1: 0.088011
x2: 0.19592
x3: 0.656921
x4: 0.342264
x5: 0.279115
x6: 0.715612",
"Arm 28_0
hartmann6: -2.80806 (SEM: 0)
x1: 0.159871
x2: 0.162642
x3: 0.655405
x4: 0.320893
x5: 0.280748
x6: 0.727409"
],
"type": "scatter",
"x": [
0.6095580458641052,
0.46427332516759634,
0.22483001183718443,
0.37589621637016535,
0.710853218100965,
0.9376077298074961,
0.12047221325337887,
0.2646239399909973,
0.9212664058431983,
0.7978077847510576,
0.1734319757670164,
0.5974199073389173,
0.07033450008774463,
0.09079547741327233,
0.09362208953210266,
0.10060839553609507,
0.10624994079175323,
0.1149784791706915,
0.10504711814755888,
0.10700470378779625,
0.10760366914557919,
0.08851138121389444,
0.08014364755496461,
0.06784834626592685,
0.04312088812470869,
0.07999361978694751,
0.08397776679336263,
0.08801102360378645,
0.15987122390002484
],
"xaxis": "x2",
"y": [
0.3852703273296356,
0.9645370254293084,
0.542636320926249,
0.1679691094905138,
0.041864871978759766,
0.5951094664633274,
0.5568432779982686,
0.27992690820246935,
0.8096554977819324,
0.7402053559198976,
0.7684295950457454,
0.5310021433979273,
0.6902987748966037,
0.6194972201699956,
0.6056434996224355,
0.60803363140874,
0.6042040438396834,
0.616663715604231,
0.5914278420342505,
0.5760460768291786,
0.5647934082098882,
0.4942525068732854,
0.446914319451564,
0.3743464278207046,
0.3068323014502012,
0.31323463450819583,
0.24592578808444576,
0.19591965499752736,
0.16264215268809964
],
"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": [
{
"fillpattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
},
"type": "scatter"
}
],
"scatter3d": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatter3d"
}
],
"scattercarpet": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattercarpet"
}
],
"scattergeo": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergeo"
}
],
"scattergl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergl"
}
],
"scattermapbox": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattermapbox"
}
],
"scatterpolar": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolar"
}
],
"scatterpolargl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolargl"
}
],
"scatterternary": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterternary"
}
],
"surface": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "surface"
}
],
"table": [
{
"cells": {
"fill": {
"color": "#EBF0F8"
},
"line": {
"color": "white"
}
},
"header": {
"fill": {
"color": "#C8D4E3"
},
"line": {
"color": "white"
}
},
"type": "table"
}
]
},
"layout": {
"annotationdefaults": {
"arrowcolor": "#2a3f5f",
"arrowhead": 0,
"arrowwidth": 1
},
"autotypenumbers": "strict",
"coloraxis": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"colorscale": {
"diverging": [
[
0,
"#8e0152"
],
[
0.1,
"#c51b7d"
],
[
0.2,
"#de77ae"
],
[
0.3,
"#f1b6da"
],
[
0.4,
"#fde0ef"
],
[
0.5,
"#f7f7f7"
],
[
0.6,
"#e6f5d0"
],
[
0.7,
"#b8e186"
],
[
0.8,
"#7fbc41"
],
[
0.9,
"#4d9221"
],
[
1,
"#276419"
]
],
"sequential": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"sequentialminus": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
]
},
"colorway": [
"#636efa",
"#EF553B",
"#00cc96",
"#ab63fa",
"#FFA15A",
"#19d3f3",
"#FF6692",
"#B6E880",
"#FF97FF",
"#FECB52"
],
"font": {
"color": "#2a3f5f"
},
"geo": {
"bgcolor": "white",
"lakecolor": "white",
"landcolor": "#E5ECF6",
"showlakes": true,
"showland": true,
"subunitcolor": "white"
},
"hoverlabel": {
"align": "left"
},
"hovermode": "closest",
"mapbox": {
"style": "light"
},
"paper_bgcolor": "white",
"plot_bgcolor": "#E5ECF6",
"polar": {
"angularaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"radialaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"scene": {
"xaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"yaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"zaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
}
},
"shapedefaults": {
"line": {
"color": "#2a3f5f"
}
},
"ternary": {
"aaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"baxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"caxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"title": {
"x": 0.05
},
"xaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
},
"yaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
}
}
},
"title": {
"text": "hartmann6"
},
"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": [
"