{
"cells": [
{
"cell_type": "markdown",
"id": "510429b1",
"metadata": {
"originalKey": "e23719d9-8a24-4208-8439-34e7b8270c79",
"papermill": {
"duration": 0.003809,
"end_time": "2024-03-01T16:37:16.346923",
"exception": false,
"start_time": "2024-03-01T16:37:16.343114",
"status": "completed"
},
"tags": []
},
"source": [
"# Visualizations\n",
"\n",
"This tutorial illustrates the core visualization utilities available in Ax."
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "a976639a",
"metadata": {
"code_folding": [],
"execution": {
"iopub.execute_input": "2024-03-01T16:37:16.354779Z",
"iopub.status.busy": "2024-03-01T16:37:16.354512Z",
"iopub.status.idle": "2024-03-01T16:37:19.815867Z",
"shell.execute_reply": "2024-03-01T16:37:19.814843Z"
},
"executionStartTime": 1627652821316,
"executionStopTime": 1627652822868,
"hidden_ranges": [],
"originalKey": "101b0e96-5b3d-48c5-bf3c-677b4ddf90c7",
"papermill": {
"duration": 3.482635,
"end_time": "2024-03-01T16:37:19.832855",
"exception": false,
"start_time": "2024-03-01T16:37:16.350220",
"status": "completed"
},
"requestMsgId": "c0dd9aaf-896d-4ea9-912f-1e58d301d114",
"tags": []
},
"outputs": [
{
"data": {
"text/html": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:19] ax.utils.notebook.plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:19] ax.utils.notebook.plotting: Please see\n",
" (https://ax.dev/tutorials/visualizations.html#Fix-for-plots-that-are-not-rendering)\n",
" if visualizations are not rendering.\n"
]
},
{
"data": {
"text/html": [
" \n",
" "
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"import numpy as np\n",
"\n",
"from ax.modelbridge.cross_validation import cross_validate\n",
"from ax.plot.contour import interact_contour\n",
"from ax.plot.diagnostic import interact_cross_validation\n",
"from ax.plot.scatter import interact_fitted, plot_objective_vs_constraints, tile_fitted\n",
"from ax.plot.slice import plot_slice\n",
"from ax.service.ax_client import AxClient, ObjectiveProperties\n",
"from ax.utils.measurement.synthetic_functions import hartmann6\n",
"from ax.utils.notebook.plotting import init_notebook_plotting, render\n",
"\n",
"init_notebook_plotting()"
]
},
{
"cell_type": "markdown",
"id": "14d19564",
"metadata": {
"code_folding": [],
"hidden_ranges": [],
"originalKey": "8449378f-890e-4e76-8d73-ce2aa4120a69",
"papermill": {
"duration": 0.035086,
"end_time": "2024-03-01T16:37:19.903649",
"exception": false,
"start_time": "2024-03-01T16:37:19.868563",
"status": "completed"
},
"showInput": true,
"tags": []
},
"source": [
"## 1. Create experiment and run optimization\n",
"\n",
"The vizualizations require an experiment object and a model fit on the evaluated data. The routine below is a copy of the Service API tutorial, so the explanation here is omitted. Retrieving the experiment and model objects for each API paradigm is shown in the respective tutorials"
]
},
{
"cell_type": "markdown",
"id": "c60a0d62",
"metadata": {
"originalKey": "f7544e06-6c6a-4841-b659-3be6a198a948",
"papermill": {
"duration": 0.036815,
"end_time": "2024-03-01T16:37:19.976480",
"exception": false,
"start_time": "2024-03-01T16:37:19.939665",
"status": "completed"
},
"tags": []
},
"source": [
"#### 1a. Define search space and evaluation function"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "75d34d56",
"metadata": {
"code_folding": [],
"execution": {
"iopub.execute_input": "2024-03-01T16:37:20.051183Z",
"iopub.status.busy": "2024-03-01T16:37:20.050825Z",
"iopub.status.idle": "2024-03-01T16:37:20.056434Z",
"shell.execute_reply": "2024-03-01T16:37:20.055621Z"
},
"executionStartTime": 1627652824829,
"executionStopTime": 1627652824877,
"hidden_ranges": [],
"originalKey": "28f6cb76-828f-445d-bdda-ba057c87dcd0",
"papermill": {
"duration": 0.044874,
"end_time": "2024-03-01T16:37:20.058059",
"exception": false,
"start_time": "2024-03-01T16:37:20.013185",
"status": "completed"
},
"requestMsgId": "7495e7e2-1025-4292-b3aa-e953739cef3e",
"tags": []
},
"outputs": [],
"source": [
"noise_sd = 0.1\n",
"param_names = [f\"x{i+1}\" for i in range(6)] # x1, x2, ..., x6\n",
"\n",
"\n",
"def noisy_hartmann_evaluation_function(parameterization):\n",
" x = np.array([parameterization.get(p_name) for p_name in param_names])\n",
" noise1, noise2 = np.random.normal(0, noise_sd, 2)\n",
"\n",
" return {\n",
" \"hartmann6\": (hartmann6(x) + noise1, noise_sd),\n",
" \"l2norm\": (np.sqrt((x**2).sum()) + noise2, noise_sd),\n",
" }"
]
},
{
"cell_type": "markdown",
"id": "aa294115",
"metadata": {
"originalKey": "17a51543-298e-47d4-bcd9-33459fe1169e",
"papermill": {
"duration": 0.035907,
"end_time": "2024-03-01T16:37:20.129690",
"exception": false,
"start_time": "2024-03-01T16:37:20.093783",
"status": "completed"
},
"tags": []
},
"source": [
"#### 1b. Create Experiment"
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "0b24ccd0",
"metadata": {
"code_folding": [],
"execution": {
"iopub.execute_input": "2024-03-01T16:37:20.202944Z",
"iopub.status.busy": "2024-03-01T16:37:20.202122Z",
"iopub.status.idle": "2024-03-01T16:37:20.216762Z",
"shell.execute_reply": "2024-03-01T16:37:20.216138Z"
},
"executionStartTime": 1627654956712,
"executionStopTime": 1627654956823,
"hidden_ranges": [],
"originalKey": "6fca889c-a4ff-42ef-a669-6eb8803de89c",
"papermill": {
"duration": 0.052623,
"end_time": "2024-03-01T16:37:20.218099",
"exception": false,
"start_time": "2024-03-01T16:37:20.165476",
"status": "completed"
},
"requestMsgId": "905eff52-e649-4bd5-abf0-ff69c1549852",
"tags": []
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] ax.service.ax_client: Starting optimization with verbose logging. To disable logging, set the `verbose_logging` argument to `False`. Note that float values in the logs are rounded to 6 decimal points.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x1. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x2. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x3. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x4. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x5. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x6. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] 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=[]).\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] ax.modelbridge.dispatch_utils: Using Models.BOTORCH_MODULAR since there is at least one ordered parameter and there are no unordered categorical parameters.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] 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 03-01 16:37:20] ax.modelbridge.dispatch_utils: calculated num_initialization_trials=12\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] ax.modelbridge.dispatch_utils: num_completed_initialization_trials=0 num_remaining_initialization_trials=12\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] ax.modelbridge.dispatch_utils: `verbose`, `disable_progbar`, and `jit_compile` are not yet supported when using `choose_generation_strategy` with ModularBoTorchModel, dropping these arguments.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+BoTorch', steps=[Sobol for 12 trials, BoTorch for subsequent trials]). Iterations after 12 will take longer to generate due to model-fitting.\n"
]
}
],
"source": [
"ax_client = AxClient()\n",
"ax_client.create_experiment(\n",
" name=\"test_visualizations\",\n",
" parameters=[\n",
" {\n",
" \"name\": p_name,\n",
" \"type\": \"range\",\n",
" \"bounds\": [0.0, 1.0],\n",
" }\n",
" for p_name in param_names\n",
" ],\n",
" objectives={\"hartmann6\": ObjectiveProperties(minimize=True)},\n",
" outcome_constraints=[\"l2norm <= 1.25\"],\n",
")"
]
},
{
"cell_type": "markdown",
"id": "84f5e23d",
"metadata": {
"code_folding": [],
"hidden_ranges": [],
"originalKey": "ab892f7c-4830-4c1d-b476-ec1078ec3faf",
"papermill": {
"duration": 0.035649,
"end_time": "2024-03-01T16:37:20.289365",
"exception": false,
"start_time": "2024-03-01T16:37:20.253716",
"status": "completed"
},
"showInput": false,
"tags": []
},
"source": [
"#### 1c. Run the optimization and fit a GP on all data"
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "22b4c26e",
"metadata": {
"code_folding": [],
"execution": {
"iopub.execute_input": "2024-03-01T16:37:20.363141Z",
"iopub.status.busy": "2024-03-01T16:37:20.362555Z",
"iopub.status.idle": "2024-03-01T16:38:12.645524Z",
"shell.execute_reply": "2024-03-01T16:38:12.644627Z"
},
"executionStartTime": 1627654642967,
"executionStopTime": 1627654862819,
"hidden_ranges": [],
"originalKey": "7269a5ba-45c8-4acf-ac83-a5ea8a52d6c1",
"papermill": {
"duration": 52.321885,
"end_time": "2024-03-01T16:38:12.647370",
"exception": false,
"start_time": "2024-03-01T16:37:20.325485",
"status": "completed"
},
"requestMsgId": "c7a4dea8-fd6d-4e1a-84de-ad973ede0cd7",
"tags": []
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] ax.service.ax_client: Generated new trial 0 with parameters {'x1': 0.405293, 'x2': 0.74935, 'x3': 0.328107, 'x4': 0.67813, 'x5': 0.509819, 'x6': 0.051542} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] ax.service.ax_client: Completed trial 0 with data: {'hartmann6': (-2.554969, 0.1), 'l2norm': (1.260087, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] ax.service.ax_client: Generated new trial 1 with parameters {'x1': 0.953876, 'x2': 0.27131, 'x3': 0.817712, 'x4': 0.002659, 'x5': 0.169502, 'x6': 0.035105} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] ax.service.ax_client: Completed trial 1 with data: {'hartmann6': (0.118751, 0.1), 'l2norm': (1.262412, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] ax.service.ax_client: Generated new trial 2 with parameters {'x1': 0.012144, 'x2': 0.067864, 'x3': 0.526769, 'x4': 0.133143, 'x5': 0.005376, 'x6': 0.773202} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] ax.service.ax_client: Completed trial 2 with data: {'hartmann6': (-0.767316, 0.1), 'l2norm': (0.755229, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] ax.service.ax_client: Generated new trial 3 with parameters {'x1': 0.194068, 'x2': 0.344042, 'x3': 0.949107, 'x4': 0.490742, 'x5': 0.933593, 'x6': 0.249598} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] ax.service.ax_client: Completed trial 3 with data: {'hartmann6': (0.06035, 0.1), 'l2norm': (1.489811, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] ax.service.ax_client: Generated new trial 4 with parameters {'x1': 0.890174, 'x2': 0.38554, 'x3': 0.493718, 'x4': 0.901018, 'x5': 0.499325, 'x6': 0.801591} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] ax.service.ax_client: Completed trial 4 with data: {'hartmann6': (-0.020413, 0.1), 'l2norm': (1.710817, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] ax.service.ax_client: Generated new trial 5 with parameters {'x1': 0.678472, 'x2': 0.083581, 'x3': 0.990709, 'x4': 0.833655, 'x5': 0.662268, 'x6': 0.232551} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] ax.service.ax_client: Completed trial 5 with data: {'hartmann6': (-0.068442, 0.1), 'l2norm': (1.535639, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] ax.service.ax_client: Generated new trial 6 with parameters {'x1': 0.978577, 'x2': 0.96843, 'x3': 0.884392, 'x4': 0.899749, 'x5': 0.139095, 'x6': 0.034444} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] ax.service.ax_client: Completed trial 6 with data: {'hartmann6': (0.017722, 0.1), 'l2norm': (1.80642, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] ax.service.ax_client: Generated new trial 7 with parameters {'x1': 0.370112, 'x2': 0.632159, 'x3': 0.832172, 'x4': 0.230053, 'x5': 0.931054, 'x6': 0.781986} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] ax.service.ax_client: Completed trial 7 with data: {'hartmann6': (-0.176489, 0.1), 'l2norm': (1.82969, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] ax.service.ax_client: Generated new trial 8 with parameters {'x1': 0.183521, 'x2': 0.71696, 'x3': 0.632497, 'x4': 0.284422, 'x5': 0.319276, 'x6': 0.375443} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] ax.service.ax_client: Completed trial 8 with data: {'hartmann6': (-0.739327, 0.1), 'l2norm': (1.307653, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] ax.service.ax_client: Generated new trial 9 with parameters {'x1': 0.055582, 'x2': 0.026989, 'x3': 0.642712, 'x4': 0.631488, 'x5': 0.022241, 'x6': 0.920679} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] ax.service.ax_client: Completed trial 9 with data: {'hartmann6': (-0.269545, 0.1), 'l2norm': (1.216927, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] ax.service.ax_client: Generated new trial 10 with parameters {'x1': 0.304531, 'x2': 0.89638, 'x3': 0.936778, 'x4': 0.11165, 'x5': 0.071646, 'x6': 0.007822} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] ax.service.ax_client: Completed trial 10 with data: {'hartmann6': (-0.242808, 0.1), 'l2norm': (1.347503, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] ax.service.ax_client: Generated new trial 11 with parameters {'x1': 0.778506, 'x2': 0.02427, 'x3': 0.603086, 'x4': 0.65902, 'x5': 0.299814, 'x6': 0.659678} using model Sobol.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:20] ax.service.ax_client: Completed trial 11 with data: {'hartmann6': (-0.261256, 0.1), 'l2norm': (1.526738, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:26] ax.service.ax_client: Generated new trial 12 with parameters {'x1': 0.304189, 'x2': 0.743975, 'x3': 0.320002, 'x4': 0.609169, 'x5': 0.428523, 'x6': 0.06511} using model BoTorch.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:26] ax.service.ax_client: Completed trial 12 with data: {'hartmann6': (-2.202275, 0.1), 'l2norm': (1.193276, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:36] ax.service.ax_client: Generated new trial 13 with parameters {'x1': 0.287856, 'x2': 0.757063, 'x3': 0.286837, 'x4': 0.671959, 'x5': 0.561321, 'x6': 0.0} using model BoTorch.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:36] ax.service.ax_client: Completed trial 13 with data: {'hartmann6': (-1.859694, 0.1), 'l2norm': (1.279292, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:44] ax.service.ax_client: Generated new trial 14 with parameters {'x1': 0.424433, 'x2': 0.739343, 'x3': 0.3309, 'x4': 0.524169, 'x5': 0.463361, 'x6': 0.066434} using model BoTorch.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:44] ax.service.ax_client: Completed trial 14 with data: {'hartmann6': (-2.456896, 0.1), 'l2norm': (1.101448, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:51] ax.service.ax_client: Generated new trial 15 with parameters {'x1': 0.443945, 'x2': 0.753923, 'x3': 0.338643, 'x4': 0.619732, 'x5': 0.457005, 'x6': 0.087171} using model BoTorch.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:51] ax.service.ax_client: Completed trial 15 with data: {'hartmann6': (-2.457146, 0.1), 'l2norm': (1.112872, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:56] ax.service.ax_client: Generated new trial 16 with parameters {'x1': 0.417616, 'x2': 0.69061, 'x3': 0.36041, 'x4': 0.606034, 'x5': 0.458493, 'x6': 0.016772} using model BoTorch.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:37:56] ax.service.ax_client: Completed trial 16 with data: {'hartmann6': (-2.228838, 0.1), 'l2norm': (1.071268, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:38:03] ax.service.ax_client: Generated new trial 17 with parameters {'x1': 0.425905, 'x2': 0.729397, 'x3': 0.286408, 'x4': 0.619346, 'x5': 0.496688, 'x6': 0.112599} using model BoTorch.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:38:03] ax.service.ax_client: Completed trial 17 with data: {'hartmann6': (-2.432175, 0.1), 'l2norm': (1.125472, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:38:08] ax.service.ax_client: Generated new trial 18 with parameters {'x1': 0.431538, 'x2': 0.818916, 'x3': 0.298256, 'x4': 0.624864, 'x5': 0.464648, 'x6': 0.057468} using model BoTorch.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:38:08] ax.service.ax_client: Completed trial 18 with data: {'hartmann6': (-2.773538, 0.1), 'l2norm': (1.206975, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:38:12] ax.service.ax_client: Generated new trial 19 with parameters {'x1': 0.417722, 'x2': 0.880657, 'x3': 0.323639, 'x4': 0.564667, 'x5': 0.497552, 'x6': 0.071858} using model BoTorch.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:38:12] ax.service.ax_client: Completed trial 19 with data: {'hartmann6': (-3.115826, 0.1), 'l2norm': (1.391717, 0.1)}.\n"
]
}
],
"source": [
"for i in range(20):\n",
" parameters, trial_index = ax_client.get_next_trial()\n",
" # Local evaluation here can be replaced with deployment to external system.\n",
" ax_client.complete_trial(\n",
" trial_index=trial_index, raw_data=noisy_hartmann_evaluation_function(parameters)\n",
" )"
]
},
{
"cell_type": "markdown",
"id": "20f84393",
"metadata": {
"originalKey": "72f4d3e7-fa04-43d0-8451-ded292e705df",
"papermill": {
"duration": 0.047457,
"end_time": "2024-03-01T16:38:12.758607",
"exception": false,
"start_time": "2024-03-01T16:38:12.711150",
"status": "completed"
},
"tags": []
},
"source": [
"## 2. Contour plots\n",
"\n",
"The plot below shows the response surface for `hartmann6` metric as a function of the `x1`, `x2` parameters.\n",
"\n",
"The other parameters are fixed in the middle of their respective ranges, which in this example is 0.5 for all of them."
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "64f0f02b",
"metadata": {
"code_folding": [],
"execution": {
"iopub.execute_input": "2024-03-01T16:38:12.836199Z",
"iopub.status.busy": "2024-03-01T16:38:12.835695Z",
"iopub.status.idle": "2024-03-01T16:38:13.649159Z",
"shell.execute_reply": "2024-03-01T16:38:13.648440Z"
},
"executionStartTime": 1627654870209,
"executionStopTime": 1627654871972,
"hidden_ranges": [],
"originalKey": "843df85c-965d-4a83-9fe1-696225d81c0f",
"papermill": {
"duration": 0.857307,
"end_time": "2024-03-01T16:38:13.653857",
"exception": false,
"start_time": "2024-03-01T16:38:12.796550",
"status": "completed"
},
"requestMsgId": "4a643541-867c-46b6-868d-64337920c2a3",
"tags": []
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 03-01 16:38:12] ax.service.ax_client: Retrieving contour plot with parameter 'x1' on X-axis and 'x2' on Y-axis, for metric 'hartmann6'. Remaining parameters are affixed to the middle of their range.\n"
]
},
{
"data": {
"application/vnd.plotly.v1+json": {
"config": {
"linkText": "Export to plot.ly",
"plotlyServerURL": "https://plot.ly",
"showLink": false
},
"data": [
{
"autocolorscale": false,
"autocontour": true,
"colorbar": {
"tickfont": {
"size": 8
},
"ticksuffix": "",
"x": 0.45,
"y": 0.5
},
"colorscale": [
[
0.0,
"rgb(247,252,253)"
],
[
0.125,
"rgb(229,245,249)"
],
[
0.25,
"rgb(204,236,230)"
],
[
0.375,
"rgb(153,216,201)"
],
[
0.5,
"rgb(102,194,164)"
],
[
0.625,
"rgb(65,174,118)"
],
[
0.75,
"rgb(35,139,69)"
],
[
0.875,
"rgb(0,109,44)"
],
[
1.0,
"rgb(0,68,27)"
]
],
"contours": {
"coloring": "heatmap"
},
"hoverinfo": "x+y+z",
"ncontours": 25,
"type": "contour",
"x": [
0.0,
0.02040816326530612,
0.04081632653061224,
0.061224489795918366,
0.08163265306122448,
0.1020408163265306,
0.12244897959183673,
0.14285714285714285,
0.16326530612244897,
0.18367346938775508,
0.2040816326530612,
0.22448979591836732,
0.24489795918367346,
0.26530612244897955,
0.2857142857142857,
0.3061224489795918,
0.32653061224489793,
0.3469387755102041,
0.36734693877551017,
0.3877551020408163,
0.4081632653061224,
0.42857142857142855,
0.44897959183673464,
0.4693877551020408,
0.4897959183673469,
0.5102040816326531,
0.5306122448979591,
0.5510204081632653,
0.5714285714285714,
0.5918367346938775,
0.6122448979591836,
0.6326530612244897,
0.6530612244897959,
0.673469387755102,
0.6938775510204082,
0.7142857142857142,
0.7346938775510203,
0.7551020408163265,
0.7755102040816326,
0.7959183673469387,
0.8163265306122448,
0.836734693877551,
0.8571428571428571,
0.8775510204081632,
0.8979591836734693,
0.9183673469387754,
0.9387755102040816,
0.9591836734693877,
0.9795918367346939,
1.0
],
"xaxis": "x",
"y": [
0.0,
0.02040816326530612,
0.04081632653061224,
0.061224489795918366,
0.08163265306122448,
0.1020408163265306,
0.12244897959183673,
0.14285714285714285,
0.16326530612244897,
0.18367346938775508,
0.2040816326530612,
0.22448979591836732,
0.24489795918367346,
0.26530612244897955,
0.2857142857142857,
0.3061224489795918,
0.32653061224489793,
0.3469387755102041,
0.36734693877551017,
0.3877551020408163,
0.4081632653061224,
0.42857142857142855,
0.44897959183673464,
0.4693877551020408,
0.4897959183673469,
0.5102040816326531,
0.5306122448979591,
0.5510204081632653,
0.5714285714285714,
0.5918367346938775,
0.6122448979591836,
0.6326530612244897,
0.6530612244897959,
0.673469387755102,
0.6938775510204082,
0.7142857142857142,
0.7346938775510203,
0.7551020408163265,
0.7755102040816326,
0.7959183673469387,
0.8163265306122448,
0.836734693877551,
0.8571428571428571,
0.8775510204081632,
0.8979591836734693,
0.9183673469387754,
0.9387755102040816,
0.9591836734693877,
0.9795918367346939,
1.0
],
"yaxis": "y",
"z": [
[
-0.4162487173156222,
-0.41584451930555244,
-0.41532004629005237,
-0.4146817088542013,
-0.41393496813865593,
-0.4130832967299458,
-0.41212717667489784,
-0.4110632150351854,
-0.4098834535823943,
-0.40857493838757764,
-0.4071195981462252,
-0.4054944587272713,
-0.40367219770285934,
-0.40162201872429226,
-0.39931080367167926,
-0.3967044822966179,
-0.39376954587645363,
-0.3904746239012472,
-0.38679204113498855,
-0.3826992761381659,
-0.37818025074052786,
-0.3732263920263935,
-0.3678374231004453,
-0.3620218552723714,
-0.3557971715082676,
-0.34918970835655094,
-0.34223426043573957,
-0.3349734472665299,
-0.32745689581518067,
-0.3197403023340244,
-0.3118844423489454,
-0.3039541961904534,
-0.29601764772333694,
-0.28814529508632714,
-0.28040938494335377,
-0.27288334869500985,
-0.2656412854073247,
-0.25875740896533894,
-0.25230536384178603,
-0.24635732094701623,
-0.2409827942557059,
-0.23624716655993794,
-0.23220996968318464,
-0.22892301879764843,
-0.22642854082349184,
-0.22475745585503815,
-0.2239279661138458,
-0.22394458188542965,
-0.22479767418764873,
-0.22646359662703408
],
[
-0.4184215138025865,
-0.4182261502756235,
-0.4179230381293957,
-0.4175177234720965,
-0.41701437041174294,
-0.41641467274631006,
-0.41571681533401283,
-0.4149145703737195,
-0.4139966094751295,
-0.4129461005192655,
-0.411740639915133,
-0.4103525476891121,
-0.4087495271285314,
-0.40689566486638484,
-0.40475272366925064,
-0.4022816607475047,
-0.3994442905693447,
-0.39620500369621503,
-0.3925324521681032,
-0.38840111696271673,
-0.38379268309818104,
-0.3786971618535614,
-0.3731137160910186,
-0.36705116262103565,
-0.360528143993494,
-0.3535729802599006,
-0.34622322849736564,
-0.3385249935546555,
-0.33053204672884917,
-0.32230481874363126,
-0.313909337971075,
-0.3054161826192723,
-0.2968995050715906,
-0.28843616693142204,
-0.28010499527778365,
-0.27198613696397966,
-0.26416045370276686,
-0.2567088733921269,
-0.24971160047289254,
-0.24324709622305785,
-0.23739077072936854,
-0.2322133779466934,
-0.22777916436628587,
-0.22414387797305535,
-0.22135278570673744,
-0.2194388668736933,
-0.2184213447176092,
-0.21830469151045617,
-0.21907820020717272,
-0.22071616532556337
],
[
-0.42078211189379455,
-0.42082798675540156,
-0.420781232002279,
-0.42064634551568414,
-0.4204259417591537,
-0.4201196141381648,
-0.4197228619458586,
-0.4192261721241025,
-0.4186143411009543,
-0.41786610894121534,
-0.4169541580250422,
-0.41584550330857695,
-0.41450227333076095,
-0.412882853165757,
-0.4109433350540015,
-0.40863920167470835,
-0.4059271525430851,
-0.4027669766817559,
-0.39912337461497926,
-0.3949676392610415,
-0.3902791173197566,
-0.38504638882769293,
-0.37926812116935016,
-0.37295357360109105,
-0.36612274813409273,
-0.3588062015834521,
-0.35104455107983457,
-0.3428877207640396,
-0.3343939900077929,
-0.32562891229144464,
-0.31666417744122366,
-0.3075764866956132,
-0.29844649859412664,
-0.2893578832573681,
-0.2803964940005139,
-0.27164963125121977,
-0.2632053396991286,
-0.25515165275006735,
-0.24757568653562056,
-0.24056249505580685,
-0.23419363036746432,
-0.2285454030449423,
-0.22368689885205273,
-0.2196778650601151,
-0.21656662221631318,
-0.21438817651308295,
-0.21316270191614706,
-0.2128945327066405,
-0.2135717623372041,
-0.2151664911654566
],
[
-0.423349426993438,
-0.42367154368915005,
-0.4239189508784783,
-0.4240949015421278,
-0.4242001884674963,
-0.4242319568507237,
-0.42418259900068234,
-0.42403882661263115,
-0.42378101040139526,
-0.4233828625857725,
-0.42281151589757315,
-0.42202802542915085,
-0.42098828933914556,
-0.4196443541141379,
-0.4179460425852485,
-0.41584282068301404,
-0.4132858037779156,
-0.41022979635843604,
-0.40663525981668014,
-0.4024701115025323,
-0.39771127260004036,
-0.3923459010319573,
-0.38637226668012636,
-0.37980024805453205,
-0.37265145081838746,
-0.3649589683298319,
-0.3567668219517176,
-0.3481291338048973,
-0.3391090963097442,
-0.32977781041567844,
-0.32021306665425797,
-0.31049813863558196,
-0.30072064603567306,
-0.2909715228996339,
-0.28134409804536187,
-0.2719332604135085,
-0.2628346486600004,
-0.254143778347815,
-0.24595500949934512,
-0.23836026798332322,
-0.23144746793090254,
-0.2252986349535705,
-0.2199877917151858,
-0.21557872571604408,
-0.2121228019722189,
-0.20965700257073205,
-0.20820236836445505,
-0.2077629880638019,
-0.20832563297455964,
-0.20986007950134988
],
[
-0.42614338363943927,
-0.4267793768479614,
-0.42736159356212156,
-0.4278918335979629,
-0.4283687777437869,
-0.4287867497105329,
-0.4291345805724571,
-0.4293946767157708,
-0.42954238582620163,
-0.42954573972905674,
-0.4293656290832202,
-0.4289564351273235,
-0.42826711070152235,
-0.4272426698119426,
-0.42582601523658414,
-0.42396000985735327,
-0.42158968158109833,
-0.4186644449737822,
-0.4151402251371712,
-0.4109813800058518,
-0.4061623344770744,
-0.40066886149888914,
-0.3944989692195491,
-0.3876633775380891,
-0.3801855903162704,
-0.3721015900485466,
-0.3634591993115187,
-0.3543171674445559,
-0.3447440512564883,
-0.3348169644788349,
-0.32462027121837367,
-0.3142442925767335,
-0.3037840817747238,
-0.2933383010929096,
-0.28300820465455134,
-0.2728966974982773,
-0.2631074087728966,
-0.2537436923238017,
-0.2449074589389877,
-0.23669775677937677,
-0.2292090515096007,
-0.22252921111862733,
-0.2167372627489531,
-0.21190104745299398,
-0.20807494169716545,
-0.2052978335053134,
-0.20359153370656247,
-0.20295977138085297,
-0.20338787352488363,
-0.20484317022005605
],
[
-0.42918466894086815,
-0.43017480971067845,
-0.4311353345511779,
-0.4320663720686928,
-0.43296418408288717,
-0.4338198753673448,
-0.4346182294006191,
-0.43533677710003615,
-0.435945198110387,
-0.43640513692040295,
-0.4366704900457381,
-0.43668818798030773,
-0.4363994596300118,
-0.43574153101306434,
-0.43464967767689033,
-0.4330595246700065,
-0.4309094713475786,
-0.4281431120338478,
-0.4247115276664435,
-0.4205753369178309,
-0.41570641592670565,
-0.41008922112501867,
-0.40372167703283135,
-0.3966156178966278,
-0.3887967968005116,
-0.38030449718513126,
-0.37119079896848817,
-0.3615195644584507,
-0.35136521784105146,
-0.3408113958846881,
-0.3299495459330243,
-0.3188775393052794,
-0.30769835297189574,
-0.2965188495440433,
-0.2854486562536902,
-0.2745991107010266,
-0.26408220988049547,
-0.254009476235977,
-0.24449064741791104,
-0.235632110350962,
-0.22753503637023886,
-0.22029322821109631,
-0.21399075203912787,
-0.20869948611927747,
-0.2044767603339348,
-0.2013632794164827,
-0.199381514619567,
-0.1985347159194073,
-0.1988066459091532,
-0.20016207538142738
],
[
-0.43249442415572115,
-0.4338815938970857,
-0.435266752823639,
-0.4366481328421691,
-0.43801925540967057,
-0.43936758661793807,
-0.4406733451898377,
-0.4419085768347313,
-0.44303659999032163,
-0.4440119089179385,
-0.4447805916003331,
-0.4452812842792355,
-0.44544664507000775,
-0.4452052897728719,
-0.44448409772915976,
-0.4432107679028091,
-0.44131648798441636,
-0.43873857367369407,
-0.435422941449668,
-0.43132629477722473,
-0.4264179284079802,
-0.42068108511999547,
-0.4141138306511615,
-0.4067294427968172,
-0.39855633744892294,
-0.38963757640568597,
-0.38003001853500307,
-0.36980318733803974,
-0.359037934322778,
-0.3478249788959825,
-0.33626340139016386,
-0.3244591557098294,
-0.31252365125169845,
-0.30057243012895385,
-0.28872393646120076,
-0.27709834257223254,
-0.26581636739905934,
-0.2549980018307052,
-0.24476105081940935,
-0.23521941782621325,
-0.2264810943615052,
-0.21864587165945115,
-0.2118028535788078,
-0.20602790761543477,
-0.20138123288754184,
-0.19790524200046766,
-0.19562294479242537,
-0.19453698819102483,
-0.19462945376027874,
-0.19586245116776801
],
[
-0.4360938751212664,
-0.43792350360051924,
-0.4397823896506482,
-0.44166663845267384,
-0.44356669814214,
-0.4454659566538022,
-0.4473395219907299,
-0.44915330650131124,
-0.4508635262033508,
-0.4524167051798712,
-0.4537502437726265,
-0.4547935702138499,
-0.45546985204778734,
-0.45569820048187704,
-0.45539626213617823,
-0.4544830625974191,
-0.4528819478458652,
-0.4505234647247356,
-0.44734803023163294,
-0.4433082599637401,
-0.4383708556277648,
-0.432517986378555,
-0.4257481349222144,
-0.41807641327948875,
-0.4095343822210161,
-0.4001694311483205,
-0.3900437911540441,
-0.379233263456473,
-0.36782574898381426,
-0.3559196630826401,
-0.3436223122532591,
-0.3310482971889913,
-0.31831798783900944,
-0.30555609181520405,
-0.29289030845861375,
-0.28045003022172255,
-0.2683650255420741,
-0.2567640192837777,
-0.24577308436689116,
-0.2355137757755562,
-0.2261009762792342,
-0.21764047747355897,
-0.21022638109905345,
-0.2039384623978876,
-0.19883967829695326,
-0.19497402044199375,
-0.19236490338180046,
-0.1910142433422264,
-0.1909023288435202,
-0.19198851909604409
],
[
-0.4400039043791816,
-0.4423238666694669,
-0.444708237786515,
-0.4471507651407878,
-0.449638482576574,
-0.45215024398211867,
-0.4546554746497815,
-0.45711326893199544,
-0.45947195197556023,
-0.4616692001442808,
-0.463632780328987,
-0.4652819253231224,
-0.4665293146978692,
-0.46728358289051375,
-0.46745223357081356,
-0.46694480645623915,
-0.4656761232568688,
-0.46356943539329476,
-0.4605593076539607,
-0.4565940971797815,
-0.4516379225654892,
-0.44567205888726846,
-0.4386957362875704,
-0.4307263580880285,
-0.421799186125306,
-0.4119665644241842,
-0.4012967671324337,
-0.3898725635461122,
-0.377789593213642,
-0.36515463860022956,
-0.35208387225464866,
-0.3387011399820151,
-0.32513632110675605,
-0.3115237817728246,
-0.2980009086587838,
-0.28470668134230037,
-0.27178021640480166,
-0.2593592009955392,
-0.24757813368822512,
-0.23656630991434746,
-0.2264455282443112,
-0.21732754784082797,
-0.20931138777370406,
-0.20248061438936393,
-0.1969008027349347,
-0.1926173742705366,
-0.18965400247745778,
-0.18801174206748783,
-0.18766898193435044,
-0.1885822549446351
],
[
-0.4442445700258244,
-0.44710503727084916,
-0.4500691667403638,
-0.45312812016274306,
-0.45626517240618036,
-0.45945417515630826,
-0.46265827664221815,
-0.46582903493590766,
-0.4689060502908584,
-0.4718172164476502,
-0.4744796529466089,
-0.47680133300316263,
-0.4786833686348658,
-0.48002286175771847,
-0.4807161826257902,
-0.480662500697997,
-0.4797673720893886,
-0.4779461846821068,
-0.47512727691853074,
-0.47125457707505636,
-0.4662896521752543,
-0.4602131040928896,
-0.4530252989361341,
-0.44474645928676426,
-0.4354161835494237,
-0.4250924806641154,
-0.41385042165951136,
-0.4017805132067591,
-0.38898689433105815,
-0.37558544754393797,
-0.3617019011267707,
-0.34746998072416535,
-0.3330296460093435,
-0.3185254223662556,
-0.30410480957566366,
-0.289916722097319,
-0.2761098929599466,
-0.2628311607973629,
-0.2502235623374005,
-0.2384241739686097,
-0.22756168573862423,
-0.21775374480009835,
-0.20910416447675773,
-0.2017001490854783,
-0.19560972300344648,
-0.19087956752128532,
-0.18753345740970606,
-0.18557145221407956,
-0.1849699405051609,
-0.1856825668051011
],
[
-0.4488345784774017,
-0.45228781734604095,
-0.45588829121195285,
-0.45962435613524266,
-0.4634751846811547,
-0.46740915095769753,
-0.47138251407664344,
-0.47533854777428564,
-0.4792072505241105,
-0.48290574236843653,
-0.48633941293939253,
-0.4894038325954506,
-0.49198737983210106,
-0.4939744790117705,
-0.495249289534891,
-0.495699647163232,
-0.49522103544219676,
-0.4937203630938919,
-0.49111934218800013,
-0.4873572992606847,
-0.48239330222527643,
-0.4762075431317758,
-0.46880197338490437,
-0.4602002375708294,
-0.4504469900902388,
-0.43960670325940154,
-0.4277620866397476,
-0.41501223701746615,
-0.4014706294220034,
-0.3872630445186206,
-0.372525508617767,
-0.3574023005183219,
-0.34204405493828716,
-0.3266059658737607,
-0.31124606606628,
-0.296123533322026,
-0.28139695458433833,
-0.2672224691879215,
-0.2537517181641781,
-0.2411295495980419,
-0.22949147040109652,
-0.21896088799602775,
-0.2096462431906404,
-0.20163818775783693,
-0.1950069969508681,
-0.18980042089667903,
-0.18604216612830393,
-0.18373116062585693,
-0.1828416978902404,
-0.18332448587724848
],
[
-0.4537907203882129,
-0.45789083626319005,
-0.46218629209700457,
-0.4666624316348652,
-0.47129398903511466,
-0.47604338423790193,
-0.48085936324037326,
-0.4856761426952605,
-0.4904132034931439,
-0.4949758471320287,
-0.4992565826420021,
-0.5031373535663557,
-0.5064925489335943,
-0.5091926758389392,
-0.5111085116659094,
-0.5121155085244999,
-0.5120981973249065,
-0.510954337822848,
-0.5085985845069202,
-0.5049654833474896,
-0.5000116750247936,
-0.49371724803437567,
-0.4860862511940114,
-0.47714643177667637,
-0.46694830738703996,
-0.4555637044712231,
-0.44308390465346426,
-0.42961753476811226,
-0.4152883213705715,
-0.4002328094188371,
-0.3845981205500386,
-0.36853980058013613,
-0.3522197792669096,
-0.33580443848750074,
-0.3194627588170593,
-0.3033644912101995,
-0.2876782835111463,
-0.27256968508336754,
-0.25819896091892414,
-0.24471867143471537,
-0.23227101504605496,
-0.22098498308827907,
-0.2109734329460049,
-0.2023302356304777,
-0.19512768897701216,
-0.1894143998858674,
-0.18521382521802965,
-0.18252362213420537,
-0.18131589993856023,
-0.1815383949043463
],
[
-0.45912728082575127,
-0.46392990010489743,
-0.46898070166694983,
-0.47426182962224206,
-0.47974325748514934,
-0.4853809802166973,
-0.49111560170629676,
-0.49687149051405843,
-0.5025566606352421,
-0.5080635002895686,
-0.5132704210076756,
-0.5180444345762776,
-0.5222445920140785,
-0.5257261439827046,
-0.5283452144638104,
-0.5299637278701236,
-0.5304543014530363,
-0.5297048146621717,
-0.5276223958940214,
-0.5241366213837317,
-0.519201793428625,
-0.5127982455786962,
-0.5049327000163294,
-0.4956377675357303,
-0.484970726834116,
-0.4730117446914023,
-0.45986170329363274,
-0.4456397894752425,
-0.4304809783110477,
-0.41453351535347427,
-0.39795647170087756,
-0.3809174162071034,
-0.36359022041376476,
-0.34615298458422317,
-0.3287860482703454,
-0.3116700278912059,
-0.294983809778791,
-0.27890242372655927,
-0.2635947326713465,
-0.2492209005633632,
-0.23592964174912678,
-0.22385530691642153,
-0.21311491535796634,
-0.2038052917469504,
-0.19600049867323976,
-0.1897497668953806,
-0.18507611029365156,
-0.18197577282816524,
-0.18041859540018745,
-0.1803493193647614
],
[
-0.46485543643123606,
-0.47041732385170454,
-0.47628516654984543,
-0.4824377474806011,
-0.48883997851845806,
-0.4954409726013206,
-0.502172565727699,
-0.50894847702406,
-0.5156642778586565,
-0.5221983042196495,
-0.528413590748422,
-0.5341608328948567,
-0.5392823013011985,
-0.5436165478452697,
-0.5470036656233299,
-0.5492908058197958,
-0.5503376219491922,
-0.5500213123628429,
-0.5482409666078024,
-0.5449209862905282,
-0.5400134376276732,
-0.533499288497812,
-0.5253885741363539,
-0.5157196108935367,
-0.5045574288491775,
-0.49199161874615527,
-0.47813378872902534,
-0.4631148073235183,
-0.44708197806018335,
-0.43019625481540713,
-0.41262957026585756,
-0.39456231560353294,
-0.37618097882564205,
-0.35767592161398076,
-0.3392392513367971,
-0.3210627262618744,
-0.30333562104434897,
-0.28624247907210454,
-0.2699606912124213,
-0.2546578683247348,
-0.24048901640944564,
-0.22759357412885006,
-0.21609242550003627,
-0.20608504700406427,
-0.19764697948817245,
-0.19082782436503087,
-0.18564994750245944,
-0.1821080337704133,
-0.1801695753609377,
-0.17977630562680758
],
[
-0.4709826536366025,
-0.4773612612877626,
-0.48410870394446726,
-0.4912002745120838,
-0.49859555148142976,
-0.5062363314349553,
-0.5140450694060038,
-0.5219240329644642,
-0.5297553576953458,
-0.5374021519572647,
-0.5447107375205179,
-0.5515140327506928,
-0.5576359924080979,
-0.5628969218740032,
-0.5671193949869701,
-0.5701344358577289,
-0.5717875870834064,
-0.5719444873395526,
-0.5704956225907161,
-0.5673599927611275,
-0.5624875389867404,
-0.5558602903991245,
-0.5474922972119523,
-0.5374285041801212,
-0.5257427757324212,
-0.5125353081719738,
-0.4979296584400206,
-0.48206959060520826,
-0.4651158998299748,
-0.44724332772220654,
-0.42863763895137585,
-0.4094928901174075,
-0.39000888902605824,
-0.3703888154098488,
-0.3508369524036252,
-0.33155646231890257,
-0.31274713224667716,
-0.2946030173461861,
-0.27730992479203,
-0.26104271034839366,
-0.24596240110508083,
-0.2322132078143565,
-0.21991954164345717,
-0.2091831945981797,
-0.20008087208341396,
-0.19266227363584854,
-0.1869489006848366,
-0.18293372918601125,
-0.18058182494585484,
-0.1798319082335883
],
[
-0.4775121030431744,
-0.4847650487398002,
-0.4924549680643021,
-0.5005535746038744,
-0.5090148794751048,
-0.5177729610938719,
-0.5267403039421357,
-0.5358069323851175,
-0.5448405467442713,
-0.5536878261109675,
-0.5621769953426293,
-0.5701216649455829,
-0.5773258483535022,
-0.5835899513695528,
-0.5887174261944713,
-0.5925217019423631,
-0.5948329583863821,
-0.5955043096466439,
-0.5944170129600028,
-0.5914844098032579,
-0.5866544297685304,
-0.5799106232048258,
-0.5712718162611771,
-0.5607905836175123,
-0.5485507982102468,
-0.5346645402924963,
-0.5192686347906029,
-0.5025210462391646,
-0.4845973067944572,
-0.4656870959632139,
-0.4459910384602448,
-0.4257177428447194,
-0.4050810689339308,
-0.38429758542211456,
-0.3635841594805487,
-0.34315560719936455,
-0.32322232870421985,
-0.3039878567352876,
-0.285646264481358,
-0.26837940837203444,
-0.2523540229610932,
-0.23771873386961173,
-0.22460110441751546,
-0.213104874031547,
-0.2033075738579565,
-0.1952587111008265,
-0.18897869549228918,
-0.18445863991835687,
-0.18166110733019192,
-0.18052180538349205
],
[
-0.48444210578104396,
-0.4926265797509841,
-0.5013215451202272,
-0.5104950934509738,
-0.5200954810322572,
-0.5300487093432811,
-0.5402567381998578,
-0.5505965805834897,
-0.5609205091155253,
-0.5710575586863863,
-0.5808164367598123,
-0.5899898545777218,
-0.5983601752638918,
-0.6057061494897026,
-0.6118103906939356,
-0.6164671469250336,
-0.6194898717928774,
-0.6207180952992748,
-0.6200231513872245,
-0.6173124279012432,
-0.6125319512084182,
-0.6056672793799781,
-0.5967428292226366,
-0.5858198812577864,
-0.5729935786720455,
-0.5583892576273349,
-0.5421584235672251,
-0.5244746346574474,
-0.5055294850031551,
-0.4855288106912593,
-0.4646891803916924,
-0.4432346834397063,
-0.4213939921380204,
-0.39939764943543843,
-0.3774755159361327,
-0.35585430029228216,
-0.3347550949300142,
-0.3143908464043138,
-0.29496370826060825,
-0.2766622548066423,
-0.25965857527672276,
-0.2441053155294992,
-0.23013278235471424,
-0.21784626600200774,
-0.20732376211956816,
-0.19861427905079554,
-0.19173689758425694,
-0.18668070876644005,
-0.1834056959688154,
-0.18184455764755691
],
[
-0.4917656280586522,
-0.5009377284824511,
-0.5106992962042797,
-0.5210148111990469,
-0.5318266428064969,
-0.5430524108412464,
-0.554583044843546,
-0.5662818163881914,
-0.5779846007365466,
-0.5895015762968308,
-0.600620491374904,
-0.6111115191847306,
-0.6207335903744379,
-0.6292419490928958,
-0.636396540638727,
-0.6419707261773889,
-0.6457597532216348,
-0.6475884055949159,
-0.6473173205872185,
-0.6448475889341412,
-0.6401234273358372,
-0.6331329059111309,
-0.6239068928722458,
-0.6125165180466757,
-0.5990695380432455,
-0.5837060048145212,
-0.5665936049618281,
-0.547922966868144,
-0.5279031468035038,
-0.506757420889457,
-0.48471943846270915,
-0.4620297384177936,
-0.4389325927931196,
-0.4156731178109504,
-0.3924945782388103,
-0.36963580420529085,
-0.3473286403160971,
-0.3257953563620627,
-0.3052459687076191,
-0.2858754522607406,
-0.2678608634243339,
-0.2513584408103485,
-0.23650079672029212,
-0.22339435111216188,
-0.2121171837432052,
-0.2027174838148964,
-0.19521275711600095,
-0.18958990938970177,
-0.18580626608219075,
-0.18379152021480283
],
[
-0.4994698401802189,
-0.509683840023555,
-0.5205717682248137,
-0.532094562640423,
-0.5441886373354333,
-0.5567629909467979,
-0.5696970794739862,
-0.5828397574571393,
-0.5960095740184764,
-0.6089966605989277,
-0.6215663623887091,
-0.6334646462085916,
-0.6444251699893468,
-0.6541777354262667,
-0.6624576847313705,
-0.6690156684074934,
-0.6736271285056754,
-0.6761008314328203,
-0.676285856247168,
-0.6740765938176798,
-0.669415518461123,
-0.662293723193262,
-0.652749423731497,
-0.640864800305097,
-0.6267616383681205,
-0.6105962449785973,
-0.592554068832634,
-0.5728443614490614,
-0.5516951104512544,
-0.5293483748076161,
-0.5060560695420265,
-0.48207618831205123,
-0.4576694143352249,
-0.43309604825184767,
-0.40861317047001655,
-0.3844719520972304,
-0.3609150319257367,
-0.33817388813355276,
-0.31646615396819044,
-0.29599285742772774,
-0.2769356046449972,
-0.2594537717002591,
-0.2436818141454321,
-0.22972684056534443,
-0.21766661908404716,
-0.20754818850997203,
-0.19938722632539563,
-0.19316828503518357,
-0.18884595106547297,
-0.18634691372399448
],
[
-0.5075357560531354,
-0.5188433058678998,
-0.5309146935484585,
-0.5437074481351597,
-0.5571520316202145,
-0.5711486581146432,
-0.5855649434518007,
-0.6002347214379403,
-0.6149583475170893,
-0.6295047598889913,
-0.6436154778084301,
-0.657010586534692,
-0.6693965936131621,
-0.6804758547500029,
-0.689957080515657,
-0.6975662752520981,
-0.7030573571900518,
-0.7062216900809509,
-0.7068958359104487,
-0.7049670116679736,
-0.7003759766642534,
-0.6931173499495036,
-0.6832376120945003,
-0.670831238924352,
-0.6560355196818877,
-0.6390246234794293,
-0.6200034115710364,
-0.5992013782058039,
-0.5768669720391225,
-0.5532624297691435,
-0.5286591593258553,
-0.5033336457846617,
-0.47756381532469083,
-0.45162577354212874,
-0.4257908271388663,
-0.40032269793855657,
-0.3754748439592762,
-0.3514878148016183,
-0.328586589579947,
-0.30697787594687087,
-0.28684738743074734,
-0.26835715991280906,
-0.2516430110554051,
-0.23681228206276206,
-0.223942022629801,
-0.213077782201179,
-0.20423315138808917,
-0.19739015767719814,
-0.19250056389067738,
-0.18948805329587337
],
[
-0.5159379686183856,
-0.5283872425534896,
-0.5416955991903158,
-0.5558173591872045,
-0.5706771137301017,
-0.5861662154726757,
-0.6021401643929118,
-0.6184172602303801,
-0.6347788807991885,
-0.6509716945993078,
-0.6667120210019291,
-0.6816924100154318,
-0.6955903306262786,
-0.7080786449649827,
-0.7188373281783478,
-0.7275657031327325,
-0.7339943317137868,
-0.7378956737221385,
-0.7390927099139935,
-0.7374649254316573,
-0.7329513362320283,
-0.7255505653173493,
-0.7153182786724283,
-0.7023625192872935,
-0.6868375978096843,
-0.6689372043800039,
-0.6488873186570455,
-0.6269393513364527,
-0.6033637913351583,
-0.5784444906530567,
-0.5524736116129931,
-0.5257471922237011,
-0.4985612484278573,
-0.4712083166550416,
-0.44397433699730693,
-0.41713578063848256,
-0.39095693303989243,
-0.3656872577727682,
-0.3415587867492942,
-0.3187835121494831,
-0.29755079281111874,
-0.2780248300429011,
-0.26034230938300806,
-0.24461033918494424,
-0.23090483761660463,
-0.2192695217922106,
-0.20971563410874716,
-0.20222250254197316,
-0.1967389780320543,
-0.19318573000099104
],
[
-0.5246444956914367,
-0.5382792908297899,
-0.5528735461973915,
-0.5683786429962775,
-0.5847134657825821,
-0.601760524246276,
-0.6193630314909188,
-0.6373233490303081,
-0.6554032005729999,
-0.6733260067835773,
-0.690781594159069,
-0.7074333792604532,
-0.7229279276090963,
-0.7369065471943359,
-0.7490183246884803,
-0.7589337852041426,
-0.7663581980893099,
-0.771043503662405,
-0.7727979257222631,
-0.7714925626553284,
-0.7670645850492475,
-0.759517051524217,
-0.7489157148168866,
-0.7353834605416235,
-0.71909315949532,
-0.7002597139020392,
-0.6791319651001944,
-0.6559849522597693,
-0.6311128196462268,
-0.604822503088366,
-0.5774282050681389,
-0.549246594468674,
-0.5205926318232336,
-0.49177591004849885,
-0.4630974021095854,
-0.4348465136660712,
-0.40729834829838174,
-0.380711106624531,
-0.35532356089138983,
-0.33135257507325133,
-0.3089906766604753,
-0.2884037271686527,
-0.26972877875856716,
-0.2530722378351916,
-0.2385084768240494,
-0.22607903775615446,
-0.215792553712721,
-0.20762547768704032,
-0.2015236572304142,
-0.1974047339482925
],
[
-0.533616749359224,
-0.5484755516366722,
-0.5643990191950562,
-0.5813359301979294,
-0.5991997122967581,
-0.6178641533044522,
-0.6371601256164361,
-0.656873776032851,
-0.6767466299436202,
-0.6964780112456507,
-0.7157300776403728,
-0.7341356092516237,
-0.7513084674520354,
-0.7668563718533137,
-0.780395352937543,
-0.7915649679432646,
-0.8000431713965562,
-0.8055596613769034,
-0.8079066140238633,
-0.8069459765239229,
-0.8026128786162934,
-0.7949151753014608,
-0.7839295609833221,
-0.7697950154897331,
-0.7527045028409132,
-0.732895835679023,
-0.7106424754969839,
-0.68624482082033,
-0.6600223054217735,
-0.6323064340510541,
-0.6034347470689336,
-0.5737456280632285,
-0.5435738361159015,
-0.5132466388042579,
-0.4830804283198892,
-0.4533777127534002,
-0.4244243853017001,
-0.3964871876085082,
-0.3698113026707721,
-0.34461803983647465,
-0.3211026092128043,
-0.29943202246329026,
-0.2797431964325807,
-0.262141369031052,
-0.2466989572168815,
-0.2334549901120091,
-0.22241523423198817,
-0.21355309355599617,
-0.20681131876028158,
-0.2021045036892144
],
[
-0.5428096402849749,
-0.5589246735701202,
-0.5762139847811371,
-0.5946241492171727,
-0.6140634728343589,
-0.6343972499586186,
-0.6554440861976916,
-0.6769737821974211,
-0.6987072779146721,
-0.7203191131942548,
-0.74144275756001,
-0.761678991920874,
-0.780607285137162,
-0.7977998084821707,
-0.8128373979718919,
-0.8253264556347364,
-0.8349155389226044,
-0.8413102873955354,
-0.8442854246310094,
-0.8436928614185748,
-0.8394653766200703,
-0.8316158833558787,
-0.8202327940507234,
-0.8054723770418841,
-0.78754918444223,
-0.7667256147669261,
-0.7433014963728453,
-0.7176043133468157,
-0.6899804219333001,
-0.6607873800531758,
-0.6303873606240383,
-0.5991415387287025,
-0.5674053140570312,
-0.5355242304223061,
-0.5038304653941003,
-0.4726397754280933,
-0.44224879311867693,
-0.4129325857953753,
-0.3849424024380008,
-0.35850356145640516,
-0.3338134653910527,
-0.31103976732520344,
-0.29031875275146135,
-0.2717540336096538,
-0.2554156721879999,
-0.2413398570328188,
-0.22952923893316912,
-0.21995400342642923,
-0.2125537109639809,
-0.2072398828845039
],
[
-0.5521718259584476,
-0.5695681042572096,
-0.5882521353948245,
-0.6081687489695036,
-0.6292215467277573,
-0.6512676668570727,
-0.6741136577137374,
-0.6975130027343883,
-0.7211658502721481,
-0.7447214633907021,
-0.7677838023654517,
-0.7899204757471187,
-0.810675038542868,
-0.8295822845220704,
-0.8461858004856583,
-0.8600566758440165,
-0.8708119648490618,
-0.8781313607605531,
-0.8817706220372007,
-0.8815706086279766,
-0.8774613025162974,
-0.8694608065893752,
-0.8576699121313842,
-0.8422632737440526,
-0.8234784496885864,
-0.8016040409938896,
-0.7769679456738653,
-0.7499264268571965,
-0.7208543708423873,
-0.6901368512836822,
-0.6581619472419141,
-0.6253146793994514,
-0.591971904809718,
-0.5584980173794128,
-0.525241317333749,
-0.49253092735491844,
-0.46067414415565777,
-0.42995412539775846,
-0.40062782782426554,
-0.3729241364855337,
-0.34704215737432964,
-0.32314968397601274,
-0.3013818871671138,
-0.2818403113777592,
-0.26459228200565976,
-0.24967083527265221,
-0.2370752700502009,
-0.22677239254782766,
-0.21869848280114568,
-0.2127619623023781
],
[
-0.5616461090226336,
-0.5803405150479666,
-0.6004393322754913,
-0.6218861487869931,
-0.644580355193127,
-0.6683713779195726,
-0.6930540576321241,
-0.7183657622147623,
-0.7439858448438362,
-0.7695380256151263,
-0.7945961753958272,
-0.8186937992987783,
-0.8413372443152056,
-0.862022292739459,
-0.8802533749271042,
-0.8955641984526083,
-0.9075382316513294,
-0.915827294201339,
-0.9201665733867268,
-0.9203847305980994,
-0.9164083486420447,
-0.9082606887107338,
-0.8960554250655164,
-0.879986554895591,
-0.8603159390708828,
-0.8373598969660667,
-0.8114760173951674,
-0.7830509702502142,
-0.7524897254811442,
-0.720206288579684,
-0.6866158757054672,
-0.6521283658531098,
-0.6171428488890349,
-0.5820431017388151,
-0.5471938454439967,
-0.5129376515825966,
-0.4795923766773368,
-0.4474490123891054,
-0.4167698532662577,
-0.3877869063978553,
-0.36070049904072854,
-0.33567807844348696,
-0.312853237564389,
-0.2923250349486277,
-0.27415770074666446,
-0.25838082929495354,
-0.24499014983429468,
-0.23394894160003188,
-0.2251901211001237,
-0.21861898327240037
],
[
-0.5711699882476462,
-0.5911704045408334,
-0.6126942569772315,
-0.6356844301548125,
-0.6600366618564579,
-0.6855932122273075,
-0.7121377041134159,
-0.7393917725534487,
-0.7670141927317651,
-0.7946031315738951,
-0.8217020728421627,
-0.8478097826529185,
-0.8723943967491942,
-0.8949113179863625,
-0.9148241336295972,
-0.9316272577383354,
-0.9448685726921704,
-0.9541701012869395,
-0.9592447838083482,
-0.9599078046575117,
-0.9560815716172691,
-0.9477942762637228,
-0.9351727789132518,
-0.9184311843641328,
-0.8978567802610019,
-0.8737949712295099,
-0.846634532765655,
-0.8167940650216781,
-0.784710087667896,
-0.7508268784549751,
-0.7155879534741143,
-0.6794289992475229,
-0.6427720538154424,
-0.6060207537866723,
-0.5695564883656178,
-0.533735317530049,
-0.4988855199453768,
-0.46530564299325294,
-0.43326293927428494,
-0.4029920954080387,
-0.37469419049079034,
-0.3485358603160231,
-0.3246486841306666,
-0.3031288469693312,
-0.2840371565167783,
-0.26739950458616735,
-0.25320785763099773,
-0.24142183890152547,
-0.23197093009771408,
-0.22475727771605492
],
[
-0.580676360476422,
-0.6019808816100376,
-0.6249292754662927,
-0.6494642788682808,
-0.6754785863112718,
-0.7028079281010244,
-0.7312253350731661,
-0.7604372766326204,
-0.7900824012547139,
-0.8197335935881447,
-0.8489039733442763,
-0.8770572795716605,
-0.9036227892268779,
-0.9280144986579405,
-0.9496537663658832,
-0.9679940382940031,
-0.9825457648723217,
-0.99289930876813,
-0.9987436529039229,
-0.9998791071052364,
-0.996222943085149,
-0.987807827045961,
-0.9747738618202078,
-0.9573557799861182,
-0.935867191962986,
-0.9106837516259302,
-0.8822267421670518,
-0.8509480689939064,
-0.8173171410341811,
-0.7818097388195832,
-0.7448987431860767,
-0.7070465081032795,
-0.6686986533923971,
-0.630279078383024,
-0.5921860240437726,
-0.5547890265705606,
-0.5184266113920187,
-0.48340458074225434,
-0.4499947581689686,
-0.4184340742306507,
-0.3889239096865138,
-0.3616296525584779,
-0.3366804680124418,
-0.31416931860518493,
-0.2941533010740176,
-0.27665438010130616,
-0.2616605972933642,
-0.24912781551483176,
-0.23898202766958254,
-0.23112221976722924
],
[
-0.5900943669567473,
-0.6126906227789685,
-0.6370515120199622,
-0.663120178391472,
-0.6907869164864722,
-0.7198816398120884,
-0.7501675395849625,
-0.7813366691127998,
-0.8130082428099517,
-0.8447304339825379,
-0.8759863746810803,
-0.9062048838221339,
-0.9347761502481989,
-0.9610721533644846,
-0.9844710231136974,
-1.0043838875517332,
-1.0202821558206234,
-1.0317227963329747,
-1.0383691380533466,
-1.0400051225460323,
-1.0365417361485598,
-1.028015409712189,
-1.0145792542645962,
-0.9964888503260014,
-0.974084739258301,
-0.9477737261505783,
-0.9180106925983031,
-0.8852820254407441,
-0.8500911909664305,
-0.8129465534272278,
-0.7743512905229133,
-0.734795164616447,
-0.6947479046379064,
-0.6546539828514486,
-0.6149285980119457,
-0.5759546899874463,
-0.5380808138855244,
-0.5016197033449875,
-0.4668473616048274,
-0.43400254003229555,
-0.4032864972089174,
-0.37486297390853307,
-0.3488583645078943,
-0.3253621069201096,
-0.30442734498911317,
-0.2860719350213877,
-0.27027986965022976,
-0.257003177942575,
-0.24616433329645937,
-0.23765916469779824
],
[
-0.5993503720007034,
-0.6232149920665697,
-0.648964122009293,
-0.6765418454883696,
-0.7058367141989259,
-0.7366735962012976,
-0.7688067076601685,
-0.8019146093192779,
-0.8355980156630795,
-0.8693812706663281,
-0.9027182728480083,
-0.9350034628104904,
-0.9655881866755227,
-0.9938022856714163,
-1.018980132842341,
-1.0404896061672797,
-1.057761792561024,
-1.0703187425670773,
-1.0777965106488487,
-1.07996111714741,
-1.07671593422573,
-1.0681001754450168,
-1.0542793956743088,
-1.0355298897018277,
-1.012219388852559,
-0.9847864263923913,
-0.9537202820247768,
-0.9195427450694682,
-0.8827922848073582,
-0.8440107351161281,
-0.8037323303377315,
-0.762474829640331,
-0.7207324649254752,
-0.6789704781086476,
-0.6376210398730973,
-0.597080352454287,
-0.5577067386085186,
-0.5198195183200431,
-0.4836984832711243,
-0.4495838013327209,
-0.4176762191029516,
-0.38813747580105507,
-0.3610908904105561,
-0.33662212905314026,
-0.31478019507957533,
-0.29557870588450874,
-0.2789975258470416,
-0.2649848143613417,
-0.2534595241626991,
-0.24431435226209852
],
[
-0.6083690560791821,
-0.6334673040446857,
-0.6605677434055386,
-0.6896158878019949,
-0.7204991944338204,
-0.7530382939645777,
-0.7869793850442215,
-0.8219886186934526,
-0.8576493772605388,
-0.8934633701157432,
-0.9288564080359638,
-0.9631895590733457,
-0.9957760932712816,
-1.0259041464714687,
-1.0528643593766782,
-1.0759809385458254,
-1.0946437934380036,
-1.1083388352590835,
-1.1166733754834364,
-1.1193939531878419,
-1.116394841781677,
-1.107716778558227,
-1.0935368377334511,
-1.074151492173253,
-1.0499555130740745,
-1.0214193490674683,
-0.9890671218637409,
-0.9534566273776154,
-0.9151620039975171,
-0.8747591949154947,
-0.8328140340529118,
-0.7898726760991788,
-0.7464540869095082,
-0.7030443396387265,
-0.6600924849156016,
-0.6180077696256344,
-0.5771579750517176,
-0.537868642991014,
-0.5004229675298623,
-0.46506215472128387,
-0.4319860916086983,
-0.40135421526868076,
-0.3732865252213782,
-0.34786473171307075,
-0.32513357190696734,
-0.3051023515474329,
-0.2877467790271482,
-0.27301115216587934,
-0.2608109377121759,
-0.25103575354329866
],
[
-0.6170745995849166,
-0.6433602031709451,
-0.6717620969524476,
-0.7022276504751601,
-0.7346438431585893,
-0.7688278890150941,
-0.8045189962912993,
-0.8413721275450807,
-0.8789547182920419,
-0.916747341918171,
-0.9541492604820543,
-0.9904896546498991,
-1.0250450390102945,
-1.0570628831365692,
-1.0857907446904784,
-1.110509336452652,
-1.1305670587005348,
-1.1454128620987427,
-1.1546240866230704,
-1.1579262909641646,
-1.1552030505653479,
-1.1464951019984504,
-1.1319897378906825,
-1.1120026315034344,
-1.0869549799438065,
-1.057348880915734,
-1.0237433192159777,
-0.9867323183839909,
-0.9469260101874477,
-0.9049347842574886,
-0.8613563514267407,
-0.8167654308281083,
-0.771705759436166,
-0.7266841461902932,
-0.6821663099366415,
-0.6385742415778446,
-0.5962848238914584,
-0.5556294398540919,
-0.5168943112909256,
-0.4803213378657234,
-0.4461092501715316,
-0.4144149447368384,
-0.38535492617466827,
-0.35900683537716915,
-0.33541108650537843,
-0.3145726652114944,
-0.296463153889732,
-0.28102304685944446,
-0.26816440136070374,
-0.257773842798647
],
[
-0.6253919280138349,
-0.6528071250652518,
-0.6824476951012043,
-0.7142632060005305,
-0.7481407218463114,
-0.7838948482976851,
-0.8212588732861195,
-0.859877904098876,
-0.8993050078590743,
-0.9390014047318449,
-0.9783417283663598,
-1.0166252363632375,
-1.0530935781631483,
-1.086955237777419,
-1.117416020402583,
-1.143713998212152,
-1.1651563458949297,
-1.1811547317366153,
-1.191255631855291,
-1.1951622688879524,
-1.1927458662801684,
-1.1840454014714672,
-1.1692567102326163,
-1.1487132227507146,
-1.1228614392425917,
-1.0922343278022275,
-1.0574252681575622,
-1.019064280976382,
-0.9777974077980668,
-0.9342694590797549,
-0.8891099824929998,
-0.842922158852327,
-0.7962743081538548,
-0.7496937012372187,
-0.7036623812582457,
-0.658614694536316,
-0.6149362209711255,
-0.5729637924522467,
-0.5329863020990413,
-0.49524604036620923,
-0.45994034343703594,
-0.42722339901175876,
-0.39720811730233874,
-0.3699680335954185,
-0.345539257109442,
-0.3239225147929966,
-0.30508535602872633,
-0.28896458490737964,
-0.27546897276560045,
-0.26448227854456474
],
[
-0.6332479847333674,
-0.6617237989818681,
-0.6925276109540321,
-0.7256114294833944,
-0.7608628909075891,
-0.798094763602962,
-0.8370354998186701,
-0.8773217657059296,
-0.9184939997096271,
-0.9599961052956545,
-1.0011803635562762,
-1.0413185354741021,
-1.0796198617280592,
-1.1152561774712766,
-1.147393583068724,
-1.1752290969698318,
-1.1980296456317803,
-1.2151698855360147,
-1.226164971532055,
-1.230694671711266,
-1.2286162265003142,
-1.2199649152248642,
-1.2049430915582173,
-1.1839000285936987,
-1.1573058678227413,
-1.1257231070827731,
-1.0897785016580173,
-1.0501373197660078,
-1.0074809541646395,
-0.9624881861022989,
-0.9158199897899817,
-0.8681075912782816,
-0.8199434495724638,
-0.7718748251356254,
-0.7243995985873783,
-0.6779639916214681,
-0.632961831337324,
-0.5897349998265793,
-0.5485747303021836,
-0.509723450609618,
-0.4733769309997532,
-0.43968655905119813,
-0.4087616330633006,
-0.38067162891791784,
-0.3554484484029712,
-0.33308869515089334,
-0.31355604553312455,
-0.296783785973588,
-0.28267757698365337,
-0.2711184810998585
],
[
-0.640572994358537,
-0.6700297460597207,
-0.7019092516879551,
-0.7361660918847516,
-0.772688870890406,
-0.8112892308701787,
-0.8516918589959421,
-0.8935264414880257,
-0.9363226511931869,
-0.9795093253217393,
-1.0224189850563883,
-1.064298749615714,
-1.1043284494151657,
-1.1416462543286752,
-1.1753813350413813,
-1.2046920103323555,
-1.2288066869901817,
-1.2470639516439677,
-1.2589477094976482,
-1.2641134921050812,
-1.2624030416608567,
-1.253845894833237,
-1.238648596839518,
-1.2171738978908655,
-1.1899133693768258,
-1.157457101124392,
-1.1204636006879485,
-1.0796320529440964,
-1.035678104233745,
-0.9893135723866108,
-0.9412300266418399,
-0.8920859682732138,
-0.8424972670734177,
-0.7930304848413385,
-0.7441987011525846,
-0.6964594396043823,
-0.6502142816246415,
-0.6058097596484538,
-0.563539147513902,
-0.5236448130768151,
-0.48632086160358345,
-0.45171587137679836,
-0.41993559741751574,
-0.3910455881741196,
-0.3650737176834926,
-0.3420126780540407,
-0.3218225020509461,
-0.30443319291337023,
-0.28974752993419783,
-0.27764409694009196
],
[
-0.6473016785025952,
-0.6776497257115754,
-0.7105060772746254,
-0.7458278980984095,
-0.7835050517368982,
-0.8233486860812549,
-0.8650807529977973,
-0.9083254323994011,
-0.9526035762069035,
-0.9973313725752965,
-1.0418244423323915,
-1.085308497076099,
-1.1269374535067946,
-1.165819412769192,
-1.2010501005346463,
-1.2317522607181859,
-1.2571182896964448,
-1.2764523742944978,
-1.2892078516521055,
-1.2950156686229306,
-1.293700771862197,
-1.28528489890366,
-1.269976232235101,
-1.2481482263083836,
-1.2203111348610167,
-1.1870800894107265,
-1.1491430849025088,
-1.1072312594331595,
-1.0620928202511026,
-1.014471150111802,
-0.9650871150790976,
-0.9146253329930008,
-0.8637240477969186,
-0.8129682039342886,
-0.7628852832710808,
-0.713943443600618,
-0.6665514876362252,
-0.621060201746996,
-0.5777646377465162,
-0.5369069668278015,
-0.49867960648370646,
-0.46322840136570276,
-0.43065571970531635,
-0.40102340117532276,
-0.3743555543391015,
-0.35064124825919185,
-0.3298371713529822,
-0.3118703409561745,
-0.2966409407721843,
-0.28402534345191144
],
[
-0.6533743866004231,
-0.6845150832179077,
-0.7182392055428484,
-0.7545063960943184,
-0.7932079583706012,
-0.8341550847103727,
-0.877067957509313,
-0.9215667034066397,
-0.9671653368160544,
-1.0132699292488967,
-1.0591822694381794,
-1.104110212654403,
-1.147185693888383,
-1.1874908967555122,
-1.2240922483948593,
-1.2560807839472423,
-1.2826161755690964,
-1.302970635642167,
-1.316568283916188,
-1.3230156545639917,
-1.3221199226250562,
-1.3138930643490296,
-1.2985422117395953,
-1.2764484140816892,
-1.2481373637426232,
-1.2142460802283175,
-1.1754891228739563,
-1.1326269533435118,
-1.086438010575737,
-1.0376951917951385,
-0.9871468592827841,
-0.9355021728667097,
-0.8834203872692712,
-0.8315036701085056,
-0.7802929464812028,
-0.7302662463214842,
-0.6818390225850146,
-0.6353659255987941,
-0.5911435620808133,
-0.5494138325070927,
-0.5103675208606908,
-0.4741478983295393,
-0.4408541894205086,
-0.41054482845589635,
-0.3832405011955722,
-0.35892701668591775,
-0.3375580863657832,
-0.319058100651859,
-0.30332498903098726,
-0.29023323097026577
],
[
-0.6587381076611551,
-0.690564955344874,
-0.7250388490102218,
-0.7621216883313648,
-0.8017062863003546,
-0.8436043172231279,
-0.88753507824495,
-0.9331160462689105,
-0.9798563795358732,
-1.0271546280636985,
-1.0743019624192767,
-1.120492178042239,
-1.1648395172976553,
-1.2064048714390943,
-1.2442301009713403,
-1.2773790765037933,
-1.3049827693086788,
-1.326284590407651,
-1.340681491585291,
-1.34775635257076,
-1.3472980167491235,
-1.3393069415094068,
-1.323986496618713,
-1.3017219738567847,
-1.273050831679592,
-1.2386282579552568,
-1.1991918057785218,
-1.1555279552367566,
-1.1084423908667855,
-1.0587348714825087,
-1.0071789311172479,
-0.9545062646612035,
-0.9013954368131734,
-0.8484644324436661,
-0.7962664963782049,
-0.7452886743235232,
-0.6959524612005449,
-0.6486159882388118,
-0.6035772331431091,
-0.5610778126052665,
-0.5213070055530716,
-0.4844057504624121,
-0.45047045308005884,
-0.41955652550065636,
-0.3916816486607687,
-0.36682880443437393,
-0.3449491586737613,
-0.32596489235663806,
-0.3097720756877078,
-0.2962436622971071
],
[
-0.6633473339492573,
-0.6957472973025735,
-0.7308455370688188,
-0.7686058867815793,
-0.8089226333238698,
-0.8516082679243968,
-0.8963819940947276,
-0.9428599703424937,
-0.9905484420585227,
-1.0388410456969288,
-1.0870216290793848,
-1.1342738915146993,
-1.1796989385022036,
-1.2223413687218063,
-1.261223691553725,
-1.2953877408894072,
-1.3239404720168755,
-1.346100370501282,
-1.3612399629033987,
-1.3689198562604377,
-1.3689104943980843,
-1.3611993667141271,
-1.3459834607897574,
-1.3236488266424429,
-1.2947406803454602,
-1.2599281602758692,
-1.2199676371578996,
-1.1756676500459988,
-1.127857493184421,
-1.0773605312626078,
-1.024972618752993,
-0.9714455435707887,
-0.9174751406508964,
-0.8636935593625106,
-0.8106650763792941,
-0.7588848022100367,
-0.708779626933379,
-0.6607107838408868,
-0.6149774726040292,
-0.5718210683255571,
-0.5314295405746675,
-0.49394180862632575,
-0.45945185803115096,
-0.42801253310917653,
-0.39963899521456236,
-0.37431189431202894,
-0.351980339612731,
-0.332564773279176,
-0.31595985060262655,
-0.3020374131966791
],
[
-0.6671647542267776,
-0.7000197029088377,
-0.7356110880878814,
-0.7739042669028158,
-0.8147948710434749,
-0.858096446273987,
-0.9035287977852383,
-0.9507080097149583,
-0.9991392910648916,
-1.048213940856409,
-1.0972117991922579,
-1.1453105200539353,
-1.1916027966248335,
-1.235122196520487,
-1.2748774552706799,
-1.3098939602793966,
-1.3392598893034213,
-1.3621732997190823,
-1.3779856857696393,
-1.3862373894423765,
-1.3866809275178478,
-1.3792897676344238,
-1.3642520990104077,
-1.3419512342792275,
-1.312935916778923,
-1.2778846165344886,
-1.2375678163605632,
-1.1928115562676966,
-1.144464493681663,
-1.093369767690076,
-1.0403421938521626,
-0.9861507891146816,
-0.9315062889348805,
-0.8770531130486376,
-0.8233651199411783,
-0.7709444385062255,
-0.7202226649390489,
-0.6715637537168333,
-0.6252680039701711,
-0.5815766366359139,
-0.5406765636978803,
-0.5027050597194581,
-0.46775415030681977,
-0.4358746261821759,
-0.407079670689505,
-0.38134814961403984,
-0.358627653270272,
-0.33883740135813445,
-0.32187112204359525,
-0.3076000005863808
],
[
-0.6701617616632196,
-0.7033499994946246,
-0.7392993084706454,
-0.7779760918864771,
-0.8192771201986104,
-0.863017145175862,
-0.9089171761142829,
-0.9565943723571575,
-1.0055546954280423,
-1.055189613915801,
-1.104778237996557,
-1.1534962358245575,
-1.2004326811857666,
-1.2446155134891561,
-1.2850454984538793,
-1.3207374889312873,
-1.3507665428241031,
-1.374315293978586,
-1.3907181674260514,
-1.399497838248683,
-1.4003899231321422,
-1.3933532704287577,
-1.3785651566986414,
-1.356402771199611,
-1.3274140607962657,
-1.2922819303521162,
-1.251785848975889,
-1.2067642924720436,
-1.1580804975868337,
-1.1065930273448146,
-1.0531318335196143,
-0.9984799066139045,
-0.9433602032583225,
-0.8884272898489975,
-0.834262999141621,
-0.7813753352960013,
-0.7301998633428877,
-0.681102866352413,
-0.6343856345578399,
-0.5902893532341122,
-0.5490001694831329,
-0.5106541331517166,
-0.47534181660097596,
-0.4431125162975451,
-0.4139780219487206,
-0.3879160031061979,
-0.36487310692414154,
-0.34476788344047826,
-0.32749365715794154,
-0.31292144822013246
],
[
-0.6723187691544893,
-0.7057166089141778,
-0.7418864083074507,
-0.7807950945822918,
-0.8223403141516756,
-0.8663381061862617,
-0.9125112032347499,
-0.9604788952094935,
-1.0097495848957965,
-1.0597173189425817,
-1.1096636682180243,
-1.1587663098213956,
-1.2061154613470617,
-1.250738856762186,
-1.291635182275178,
-1.3278148378759915,
-1.3583456860185315,
-1.3824003094679291,
-1.3993004850447448,
-1.408554337550376,
-1.409882142086108,
-1.4032280152557206,
-1.388756584481333,
-1.3668357516386094,
-1.338008384568368,
-1.3029567904560244,
-1.2624640162654395,
-1.217375525600363,
-1.168563919434526,
-1.1168984013292909,
-1.0632198351607407,
-1.008321586121339,
-0.9529358751618044,
-0.8977250806984839,
-0.843277252329231,
-0.7901050285729097,
-0.7386471500790335,
-0.6892718117292387,
-0.6422811849629148,
-0.5979165513593708,
-0.5563636082691337,
-0.517757627754511,
-0.4821882640684494,
-0.44970390693470885,
-0.4203155639352497,
-0.3940003224181221,
-0.3707044876073624,
-0.35034651828672936,
-0.3328198852057348,
-0.3179959624971136
],
[
-0.6736253320031084,
-0.7071086751966917,
-0.7433611348936171,
-0.7823496191621804,
-0.8239723532392247,
-0.8680466944756424,
-0.9142975488118725,
-0.9623473040494029,
-1.0117083871611472,
-1.0617797110933573,
-1.1118483687179845,
-1.1610979101952619,
-1.208624338966361,
-1.253460509736154,
-1.2946088672942797,
-1.33108145573451,
-1.3619449717939922,
-1.3863675311277066,
-1.403663004181546,
-1.4133284970120354,
-1.415070975174496,
-1.408820190923169,
-1.3947268122762044,
-1.3731466075779284,
-1.3446132558534751,
-1.3098034507276417,
-1.2694982838878168,
-1.2245445265210282,
-1.1758186314619323,
-1.1241953384115637,
-1.0705218880125793,
-1.0155981426337262,
-0.9601623969357415,
-0.9048823216416072,
-0.8503502872115936,
-0.7970822278878714,
-0.7455192024946422,
-0.6960308626195397,
-0.6489201315618791,
-0.6044285126018675,
-0.5627415700192154,
-0.5239942511935658,
-0.48827583587158885,
-0.4556344040045438,
-0.42608080253441527,
-0.39959216125645447,
-0.3761150564730572,
-0.35556844772844753,
-0.3378465180014084,
-0.3228215335056601
],
[
-0.674080084284552,
-0.7075259673570531,
-0.7437246353383051,
-0.78264243696517,
-0.8241778680552918,
-0.8681496054228657,
-0.9142851265631066,
-0.9622108065881805,
-1.0114445733827413,
-1.061392358994413,
-1.1113496760566501,
-1.1605096244133701,
-1.2079784326962046,
-1.2527991994297172,
-1.293983784130019,
-1.3305518384201442,
-1.3615748674797075,
-1.386222152447399,
-1.4038045680257132,
-1.4138120212481564,
-1.4159405863078163,
-1.4101064613918284,
-1.3964454901258523,
-1.3752988527439993,
-1.34718722227047,
-1.3127768314988586,
-1.2728413265214666,
-1.2282230407023562,
-1.1797966227553704,
-1.1284370548767477,
-1.0749932136158125,
-1.0202673814728678,
-0.965000556938435,
-0.9098630314754099,
-0.8554494777515121,
-0.8022776918048726,
-0.7507901215130974,
-0.7013573674441456,
-0.6542829373050523,
-0.6098086538420843,
-0.5681202445091826,
-0.5293527694431982,
-0.49359566501868735,
-0.46089728828769594,
-0.43126893910627306,
-0.40468840884741775,
-0.38110315530209815,
-0.36043323170637376,
-0.3425741041912641,
-0.3273994783996579
],
[
-0.6736905005391913,
-0.7069785724217059,
-0.742990067513593,
-0.7816902608045138,
-0.822977621835934,
-0.8666721397180798,
-0.9125042274923066,
-0.9601050711234345,
-1.0089994728437879,
-1.0586023911262106,
-1.108220465676807,
-1.1570597881034135,
-1.2042409794071254,
-1.248822209067853,
-1.2898301098414533,
-1.326297634646941,
-1.3573068639776413,
-1.3820337661969366,
-1.399791143456049,
-1.410065672272513,
-1.412545231922579,
-1.4071336567503097,
-1.3939515376478533,
-1.3733234522530222,
-1.3457536437879765,
-1.311893346669274,
-1.27250347894178,
-1.2284162971567274,
-1.1804990092902097,
-1.1296215005345518,
-1.07662945460556,
-1.022323387550445,
-0.9674435161136204,
-0.9126599693910112,
-0.8585676020238263,
-0.8056845487058966,
-0.754453640533885,
-0.7052458539374706,
-0.6583650577365661,
-0.6140534437561398,
-0.5724971567709979,
-0.5338317698317274,
-0.4981473738314416,
-0.4654931602701391,
-0.4358814697251693,
-0.4092913526480604,
-0.3856717416965071,
-0.36494436477837255,
-0.34700653558349726,
-0.3317339455718894
],
[
-0.6724724986307489,
-0.705486398801439,
-0.7411819847254791,
-0.779522989458773,
-0.8204075912308645,
-0.8636570951933976,
-0.909005196502699,
-0.9560886615944819,
-1.004440441563399,
-1.0534863767318123,
-1.1025467303097927,
-1.150843755895836,
-1.1975163054664513,
-1.241642073719081,
-1.2822674296300642,
-1.3184439335283302,
-1.3492696655604952,
-1.3739325452515339,
-1.3917520880490992,
-1.4022157162747457,
-1.4050059710052403,
-1.4000158121246968,
-1.3873505541342475,
-1.367316620636261,
-1.3403988711284618,
-1.307229434894191,
-1.268551578359266,
-1.2251821126771147,
-1.177975348890181,
-1.1277908355984239,
-1.075466269796309,
-1.021796201347089,
-0.9675165342203252,
-0.9132943870813586,
-0.8597226013605108,
-0.8073180488179116,
-0.7565228600566786,
-0.7077077392451776,
-0.6611766220237556,
-0.6171720523623289,
-0.5758807845207722,
-0.5374392472256408,
-0.5019386310552784,
-0.4694294714587738,
-0.4399256949117287,
-0.41340817145530484,
-0.3898278710796982,
-0.36910875286712685,
-0.3511505246193499,
-0.3358313987200571
],
[
-0.6704499027550752,
-0.7030785138721631,
-0.7383355239324492,
-0.7761827194204312,
-0.8165177713041232,
-0.8591633318054768,
-0.9038567215612807,
-0.9502410135109961,
-0.9978584875123231,
-1.0461475651334444,
-1.0944444036424437,
-1.1419902888684508,
-1.1879457705383623,
-1.2314120899295007,
-1.2714598417343845,
-1.307164015953623,
-1.3376436608831097,
-1.36210352629664,
-1.3798743549972308,
-1.3904481669795408,
-1.3935050643586435,
-1.3889288314269603,
-1.376809838039663,
-1.3574352646524175,
-1.331268152531367,
-1.2989179440940735,
-1.2611058167697409,
-1.2186281835681956,
-1.172321331282601,
-1.12302947111251,
-1.0715776748759511,
-1.0187504111052865,
-0.9652757683496698,
-0.9118149932315193,
-0.858956675765858,
-0.8072147607873084,
-0.7570295206251756,
-0.7087706589764631,
-0.6627418018949696,
-0.6191857471797454,
-0.5782899719886947,
-0.5401920286976507,
-0.5049845828900128,
-0.47271995932896405,
-0.4434141577733809,
-0.417050377439655,
-0.39358214445384054,
-0.37293616940994045,
-0.3550150721349917,
-0.3397000997150742
],
[
-0.66765378777389,
-0.6997923421717072,
-0.734495430326973,
-0.7717225645459438,
-0.8113707549692615,
-0.8532640716585407,
-0.8971438115676506,
-0.9426600442473443,
-0.9893654667914964,
-1.0367126225156649,
-1.0840555968976144,
-1.1306572584682686,
-1.1757029189969155,
-1.2183209116458786,
-1.2576100156148824,
-1.2926729165286006,
-1.3226540555485984,
-1.3467794049694322,
-1.3643950651501209,
-1.37500126593221,
-1.3782785036522691,
-1.3741032052142383,
-1.3625514229431261,
-1.3438904465210233,
-1.3185596063335727,
-1.287142664850979,
-1.2503348562494327,
-1.2089077769525018,
-1.1636750180678177,
-1.1154608151176806,
-1.0650732432836592,
-1.0132827530853825,
-0.9608062173144538,
-0.9082961895945066,
-0.8563347636806117,
-0.8054312524224342,
-0.7560228473907744,
-0.70847744387711,
-0.6630978938300933,
-0.6201270590270146,
-0.5797531616194496,
-0.5421150571425568,
-0.5073071777904687,
-0.4753840053950683,
-0.4463640298313304,
-0.4202332262241971,
-0.39694814086224695,
-0.3764387096160907,
-0.3586109437693652,
-0.34334960814623816
],
[
-0.6641217274012343,
-0.6956727521405615,
-0.7297149528264195,
-0.7662053262681419,
-0.8050401394786775,
-0.8460449989152488,
-0.8889655427596383,
-0.9334594957906638,
-0.9790909708652619,
-1.0253280123860826,
-1.0715444249575348,
-1.1170268781932893,
-1.1609880887555022,
-1.2025865238982014,
-1.2409525385945235,
-1.2752201754176402,
-1.3045630882226356,
-1.3282323031814594,
-1.3455929391242873,
-1.3561567156524603,
-1.3596071976976418,
-1.355815308581592,
-1.3448436409909699,
-1.3269393512254575,
-1.3025167054120497,
-1.2721314139696678,
-1.236449559973446,
-1.1962141254385747,
-1.152211889549845,
-1.1052429386640705,
-1.056094343589645,
-1.0055188638389607,
-0.9542189288121183,
-0.9028356733849328,
-0.8519424829616142,
-0.8020423182746408,
-0.7535680178255044,
-0.7068847870081513,
-0.6622941507530969,
-0.6200387486703663,
-0.5803074710626126,
-0.5432405584359342,
-0.5089344075385159,
-0.47744593735079754,
-0.4487964643082276,
-0.4229751138652874,
-0.3999418526482583,
-0.37963026023200275,
-0.36195017174183275,
-0.34679031356486456
],
[
-0.6598969693854158,
-0.690771059949161,
-0.7240546456319407,
-0.759702057643294,
-0.7976088131970047,
-0.8376022250353106,
-0.8794326540123201,
-0.9227661083902827,
-0.9671790249998478,
-1.012156165540576,
-1.0570925977450616,
-1.101300672913859,
-1.1440227256639295,
-1.1844498842972204,
-1.221746885692367,
-1.2550821609779896,
-1.2836617570090156,
-1.3067649785392585,
-1.3237790973089665,
-1.3342302032679507,
-1.337807372565142,
-1.3343778418961618,
-1.323991769004548,
-1.306876291930179,
-1.2834197745061353,
-1.2541481270028951,
-1.2196957496511247,
-1.1807738852250245,
-1.1381390083568481,
-1.092563424241006,
-1.0448096329150076,
-0.9956093661448449,
-0.9456476184841596,
-0.8955515277806012,
-0.8458836322871961,
-0.7971388348777763,
-0.7497443186023471,
-0.7040616556536021,
-0.6603904081323319,
-0.6189726119205842,
-0.5799976473597952,
-0.5436071196283399,
-0.509899488665712,
-0.47893429671618815,
-0.4507359362541401,
-0.4252969784837557,
-0.4025811399382532,
-0.3825260001311718,
-0.36504559634176403,
-0.350033013874566
]
],
"zauto": true,
"zmax": 1.4159405863078163,
"zmin": -1.4159405863078163
},
{
"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.6729174422720754,
0.67213390558648,
0.6714658062014348,
0.670917551867424,
0.670488671921901,
0.6701735054299809,
0.6699610655511314,
0.6698350706349407,
0.6697741231342252,
0.6697520115429003,
0.6697381083857576,
0.6696978385780281,
0.669593196815087,
0.6693832996064654,
0.6690249667461106,
0.668473338046075,
0.6676825435992588,
0.6666064590045131,
0.6651995898860417,
0.6634181412968058,
0.661221335469133,
0.6585730437703214,
0.6554437931867009,
0.6518131913352609,
0.647672783529696,
0.6430293069430985,
0.6379082363276195,
0.6323574196974648,
0.6264504802105068,
0.6202895177903045,
0.6140064976811755,
0.6077625968767567,
0.6017447473111429,
0.5961587375257078,
0.5912185817985576,
0.5871324701020793,
0.5840864213423127,
0.5822276019168561,
0.5816498590201569,
0.5823840551861401,
0.5843951174366083,
0.5875864394102194,
0.5918107759759907,
0.5968855354820453,
0.6026097724702506,
0.6087803050433768,
0.6152050491423046,
0.6217125652782699,
0.6281576611321082,
0.6344235090451433
],
[
0.6718770787823481,
0.6710060431040755,
0.6702520469001829,
0.6696209503820987,
0.6691137196075058,
0.6687260493428563,
0.6684481625042312,
0.6682647820992509,
0.6681552621103474,
0.6680938570863483,
0.6680501065400043,
0.6679893095188263,
0.6678730667902651,
0.6676598728764207,
0.6673057476606017,
0.6667649073891393,
0.665990487304559,
0.6649353421794658,
0.6635529654936086,
0.6617985812312224,
0.6596304721654687,
0.6570116126058244,
0.6539116692135567,
0.6503094176679673,
0.6461955923725887,
0.6415761373238111,
0.6364757548685207,
0.6309415521976521,
0.6250464625502131,
0.6188919748298873,
0.6126095583795201,
0.6063600525234777,
0.6003302570635597,
0.594726080880519,
0.5897619511299047,
0.5856467887288213,
0.58256766554396,
0.5806731013051555,
0.5800585505882778,
0.5807566722557335,
0.5827343032706481,
0.5858967827401614,
0.5900987692101035,
0.5951594557144979,
0.6008794831656668,
0.6070569760101843,
0.6135007964952222,
0.6200400214633625,
0.6265294955449068,
0.6328519292027064
],
[
0.6708012898382045,
0.6698320982822791,
0.6689808048380168,
0.6682549723752539,
0.6676572950886701,
0.667185142964963,
0.6668302812401357,
0.6665787678915612,
0.666411022792836,
0.6663020545460739,
0.6662218254240423,
0.666135731460927,
0.6660051737776342,
0.665788199116399,
0.6654401927479501,
0.6649146157075225,
0.6641637906108032,
0.6631397553788011,
0.6617952206344543,
0.660084682236519,
0.6579657528021192,
0.6554007822573172,
0.6523588344303113,
0.6488180713711672,
0.6447685662227166,
0.6402155156698495,
0.6351827508296409,
0.6297163482287287,
0.6238880201438636,
0.6177978218689839,
0.6115755690348645,
0.6053802438973592,
0.5993966383010689,
0.5938286018391147,
0.5888886046663294,
0.5847839176727145,
0.5817005074068253,
0.5797865690561737,
0.5791382010177639,
0.5797897660626857,
0.5817108281859579,
0.5848103049125446,
0.588947001794506,
0.5939444794709084,
0.5996076077055604,
0.6057382782130084,
0.6121484060481289,
0.6186692404401389,
0.6251568418895895,
0.6314941869973465
],
[
0.6696801219156038,
0.6686006703808186,
0.6676391906963133,
0.666805233442893,
0.6661035504296248,
0.6655335452251303,
0.6650888948274192,
0.6647573546568826,
0.6645207498847857,
0.6643551473937165,
0.6642311946658037,
0.6641146050561914,
0.6639667639991124,
0.6637454287581965,
0.6634054964754647,
0.6628998223088413,
0.66218008153562,
0.6611976858812115,
0.6599047832542045,
0.6582553889047009,
0.6562067115592669,
0.6537207468627195,
0.6507662090550779,
0.6473208569965561,
0.6433742393585034,
0.638930833048156,
0.6340134759409471,
0.628666897806615,
0.6229610325126511,
0.6169936564212669,
0.6108917589255469,
0.604810943382963,
0.5989321310757237,
0.5934549630275474,
0.5885876285965855,
0.5845334246213587,
0.5814751136715511,
0.5795589405415513,
0.5788807182484742,
0.5794764305134222,
0.581319167625171,
0.5843230163080595,
0.5883531130462857,
0.5932399013578219,
0.5987950550181547,
0.604826633516801,
0.6111516617629673,
0.6176051807403562,
0.62404562201017,
0.6303569447733504
],
[
0.668501344282128,
0.6672978897759116,
0.6662116623463669,
0.6652545256943995,
0.6644336624662569,
0.6637509124272998,
0.66320227523777,
0.662777601548822,
0.662460487455516,
0.6622283773555974,
0.6620528692454253,
0.6619002052499953,
0.6617319201676632,
0.6615056139075427,
0.6611758118663583,
0.6606948820188611,
0.6600139892876457,
0.6590840858048874,
0.6578569577961473,
0.6562863726755163,
0.6543293895103086,
0.6519479080814016,
0.6491105323925286,
0.6457948102587429,
0.6419898786837028,
0.6376994927302362,
0.6329453415794809,
0.6277704585195383,
0.6222424132353335,
0.6164558418714601,
0.6105337394252258,
0.6046268409888769,
0.5989104011367336,
0.5935778054235998,
0.5888307726867991,
0.5848664555644926,
0.5818624683318829,
0.579961610283117,
0.579258563350888,
0.5797908685283789,
0.5815358914198372,
0.5844143668629409,
0.5882997911876581,
0.5930318314808182,
0.5984313692087224,
0.604314881200409,
0.610506439281383,
0.6168464103769445,
0.6231967008742952,
0.6294429473681173
],
[
0.667250407209206,
0.6659073575824499,
0.6646799441358361,
0.6635827160012809,
0.6626257106657897,
0.6618136579334956,
0.6611453386958983,
0.66061313660716,
0.660202812918142,
0.6598935233010851,
0.6596580807592651,
0.6594634519245968,
0.6592714574967956,
0.6590396342760393,
0.6587222092686327,
0.6582711380781299,
0.6576371711975163,
0.6567709320174886,
0.6556240166186048,
0.6541501534761346,
0.6523064859830502,
0.6500550570061567,
0.6473645779214525,
0.6442125510933198,
0.6405877820040342,
0.6364932635767563,
0.6319493398650672,
0.6269969595547707,
0.621700714380535,
0.6161512312790136,
0.6104663663155344,
0.6047905624786766,
0.5992917266663325,
0.59415510876889,
0.5895739785209628,
0.5857374116533739,
0.5828161647625106,
0.5809482934523241,
0.580226627062885,
0.5806902268147758,
0.582321404037323,
0.5850488485863982,
0.5887562078809823,
0.5932944455811785,
0.5984957914702336,
0.604187157829965,
0.6102014169395048,
0.6163856663432087,
0.6226063137917036,
0.628751336548197
],
[
0.6659104668297704,
0.6644101524931278,
0.6630230128087481,
0.661766709248928,
0.6606546175414644,
0.6596948714769498,
0.6588895476791556,
0.6582340472041467,
0.6577167233269015,
0.6573187918886734,
0.6570145413007757,
0.6567718355319987,
0.656552878540887,
0.6563151871021724,
0.6560127053787455,
0.6555969924587903,
0.6550184249874286,
0.6542273800217218,
0.6531753948591955,
0.6518163354006279,
0.6501076361413791,
0.6480116967036778,
0.6454975264449047,
0.6425427161741435,
0.6391357821671703,
0.6352788718085964,
0.6309907428978779,
0.6263098318694365,
0.6212971140961684,
0.61603834066292,
0.6106451267783198,
0.6052542947747955,
0.6000248794743588,
0.595132333936047,
0.5907597718278078,
0.587086560275331,
0.5842751833966944,
0.5824578995982984,
0.5817251167671837,
0.582117409900385,
0.5836226057507689,
0.5861784385004969,
0.5896801973391675,
0.5939918759995513,
0.5989588581369237,
0.6044202133571959,
0.6102191319195067,
0.6162106794032151,
0.6222666913091851,
0.6282781076395098
],
[
0.6644624854061946,
0.6627849146486762,
0.6612171607992172,
0.6597804880939491,
0.6584921637029898,
0.6573643105836792,
0.6564028822894351,
0.6556068374183386,
0.6549675869337516,
0.6544687729812224,
0.6540864130622638,
0.6537894109376934,
0.6535404002065,
0.6532968544740065,
0.6530123758933959,
0.6526380667486511,
0.6521238990344679,
0.6514200236354253,
0.650477999304523,
0.6492519652181057,
0.6476998211979016,
0.6457845086821695,
0.6434754965926257,
0.6407505650570589,
0.6375979447154451,
0.6340188105444369,
0.630030049067136,
0.6256671203135493,
0.6209867268647659,
0.6160688913468106,
0.6110179468097618,
0.6059618866961437,
0.6010495377802564,
0.5964451514950326,
0.5923202903804733,
0.5888433219519066,
0.5861673726368688,
0.5844181211382661,
0.5836831519970748,
0.5840045783087177,
0.5853761966421078,
0.5877456289084593,
0.5910209569132576,
0.5950805523524687,
0.5997843751984732,
0.6049850328407603,
0.6105372766379331,
0.6163051812130067,
0.6221668170651693,
0.6280166585099894
],
[
0.6628854155377618,
0.6610080164852961,
0.6592361481604925,
0.6575952416385017,
0.6561070908939138,
0.6547884781670222,
0.6536498955624892,
0.6526944672273779,
0.6519171750987895,
0.6513044750538604,
0.6508343589677802,
0.6504768748354104,
0.6501950682834526,
0.6499462632791987,
0.6496835667110908,
0.6493574679602052,
0.6489174140784332,
0.6483132725824066,
0.6474966415311022,
0.6464220215099608,
0.6450479158581519,
0.6433379637995205,
0.6412622280144901,
0.6387987487652197,
0.6359354396594578,
0.6326723374093781,
0.6290241338480055,
0.6250228191138685,
0.620720158168295,
0.6161896193426798,
0.6115272889532424,
0.6068512627179007,
0.6022990327258189,
0.598022521293363,
0.5941806755375018,
0.5909299279976233,
0.588413301729139,
0.5867493890571249,
0.5860227165860569,
0.5862769871817632,
0.587512299410308,
0.5896867497000164,
0.5927220084751013,
0.5965117683995117,
0.6009315825745309,
0.6058486114429915,
0.6111301136088326,
0.6166499982617578,
0.6222932449809581,
0.6279583751155811
],
[
0.6611564767564895,
0.6590538308617425,
0.6570514552116519,
0.6551795967154571,
0.6534653080782423,
0.6519308024405581,
0.6505918696532118,
0.6494564909905425,
0.6485237923466322,
0.6477834585493428,
0.6472156923328931,
0.6467917446571744,
0.6464749772141258,
0.6462223551117473,
0.6459862203739368,
0.6457161749911363,
0.6453609107345409,
0.6448698605073788,
0.6441946054188215,
0.6432900414626799,
0.6421153761629259,
0.6406350759747259,
0.6388199096719135,
0.6366482258472181,
0.6341075632724937,
0.6311966248242077,
0.6279275557877987,
0.6243283644095234,
0.6204452166920642,
0.6163442404674424,
0.6121124006679515,
0.6078569780940494,
0.6037032222918295,
0.5997898809461261,
0.5962625506859411,
0.5932651414627275,
0.5909301541931014,
0.5893688498516344,
0.588662618036982,
0.5888568240483404,
0.5899580785159347,
0.5919352877221922,
0.5947241589947442,
0.5982342497484625,
0.6023573192006375,
0.6069757281896037,
0.6119698853349783,
0.6172241361554087,
0.6226309019975409,
0.6280931984053241
],
[
0.6592515330259846,
0.6568951073419098,
0.6546326491020313,
0.6524999671401894,
0.6505302178060827,
0.6487519378951846,
0.6471870927716062,
0.6458493158539709,
0.6447425256366216,
0.6438600884174412,
0.6431846467345581,
0.6426886599027626,
0.6423356155444663,
0.6420817858349352,
0.6418783363851636,
0.6416735629272748,
0.6414150381178263,
0.6410514963395878,
0.6405343590167556,
0.6398188917083529,
0.6388650697832929,
0.6376382955257931,
0.636110143736262,
0.6342593087799783,
0.6320728835259446,
0.6295480253926118,
0.6266939665829971,
0.6235342165613642,
0.6201086976645338,
0.6164754625869387,
0.6127115795682073,
0.608912753937503,
0.6051913020131262,
0.6016722232649157,
0.5984873388980338,
0.5957677696686109,
0.5936353718906077,
0.5921940631049488,
0.5915221514681478,
0.5916667500620127,
0.5926410753806929,
0.594424945382482,
0.5969682300264713,
0.6001965225411303,
0.6040180202299468,
0.6083305798751407,
0.6130281082723573,
0.6180057677182035,
0.6231638106741288,
0.6284101241487
],
[
0.6571455797919383,
0.6545034682194494,
0.651947878833713,
0.6495210382629031,
0.6472631826639683,
0.6452102091751236,
0.6433912802281431,
0.6418266044535583,
0.6405256377733034,
0.639485930913287,
0.6386927909649256,
0.63811983023796,
0.6377303605528162,
0.6374794770859588,
0.6373165860826747,
0.6371880838351291,
0.6370398997400004,
0.636819672205064,
0.6364784204981209,
0.6359716889376491,
0.6352602498563534,
0.6343105378489821,
0.6330950345486674,
0.631592822835252,
0.6297904826559986,
0.6276834157217394,
0.6252775766773396,
0.6225914698322257,
0.619658159087948,
0.6165269489651289,
0.6132643400887925,
0.6099538562948645,
0.6066943957342978,
0.6035968858445127,
0.600779224949909,
0.5983597585486735,
0.5964498291896352,
0.59514619336764,
0.5945242414930233,
0.5946329233415957,
0.5954920489118536,
0.5970922431366852,
0.5993973799146041,
0.6023489286294329,
0.6058714147397734,
0.6098781662558107,
0.6142766635301852,
0.6189730570543778,
0.6238756807440133,
0.6288975990146078
],
[
0.6548133492762261,
0.651850036553941,
0.6489645146844556,
0.6462064063036586,
0.6436241544763887,
0.6412622231688867,
0.6391581669099714,
0.6373398505673994,
0.6358231342971971,
0.6346103241058776,
0.6336896181180874,
0.6330356585335261,
0.632611148885618,
0.6323693447345385,
0.6322571047841036,
0.6322181239923409,
0.6321959734174832,
0.6321366410098225,
0.6319903873307832,
0.6317128750388533,
0.6312656723332924,
0.6306163421496304,
0.6297383915076845,
0.6286113597235666,
0.627221271780277,
0.6255615852367005,
0.6236346335409134,
0.6214534361489134,
0.6190436261761626,
0.616445155938282,
0.6137133923952052,
0.6109192178670756,
0.6081478137461482,
0.6054959303106889,
0.6030676313489989,
0.6009687328753661,
0.5993003981251278,
0.5981525563986281,
0.597597923471568,
0.5976873694299611,
0.5984471921770719,
0.5998785447723135,
0.6019589079137958,
0.6046451886186658,
0.6078778388567085,
0.611585355616342,
0.6156886274315938,
0.6201047759026854,
0.6247503378039297,
0.6295437912272651
],
[
0.6522300424140922,
0.6489062088841704,
0.6456499491791526,
0.6425193940292226,
0.6395724918597243,
0.6368636783324004,
0.6344403028200094,
0.632339161088432,
0.6305835381016743,
0.6291811564183823,
0.6281233424806865,
0.6273855711909841,
0.6269293535751095,
0.6267052320746495,
0.6266564858008589,
0.6267230584594584,
0.6268452219919197,
0.6269665761017476,
0.6270361364881595,
0.6270094498812105,
0.6268488551458975,
0.6265231535862189,
0.6260070341103237,
0.625280608841856,
0.6243293546678803,
0.6231446410230911,
0.6217248772890374,
0.6200771610527115,
0.6182191756130893,
0.6161809904352588,
0.6140063737927505,
0.6117532386329947,
0.6094929122048791,
0.6073080446042005,
0.6052891429559537,
0.603529919514002,
0.6021218449753575,
0.601148463511121,
0.6006801107434211,
0.600769647712796,
0.6014496758811941,
0.6027314580215098,
0.6046054952813317,
0.607043471427591,
0.6100011277561858,
0.6134216000263318,
0.6172388177707587,
0.6213806948000891,
0.6257719780077416,
0.6303367303124191
],
[
0.6493721948720427,
0.6456445850329879,
0.6419725774005419,
0.638424065985654,
0.6350679944236554,
0.631970403919053,
0.6291900877633434,
0.6267742826978616,
0.624754911314543,
0.6231458928119493,
0.6219419429044676,
0.6211190925596496,
0.6206369014814112,
0.6204420782029614,
0.6204730024631199,
0.6206645242634276,
0.6209524109131275,
0.6212769237170931,
0.6215852011375248,
0.621832362126156,
0.6219814748070865,
0.622002719968345,
0.6218721860741941,
0.6215707490621185,
0.6210834198168762,
0.6203994043132337,
0.6195129460784247,
0.6184248416646767,
0.6171443677110876,
0.6156912549038716,
0.6140973012766482,
0.6124072369991237,
0.6106785304485017,
0.6089799517376359,
0.6073888717601076,
0.605987453828744,
0.6048580663414371,
0.6040783784537291,
0.6037166662652431,
0.6038278336078794,
0.6044505375211721,
0.6056056268354859,
0.6072958964423423,
0.6095069804237453,
0.6122090943680929,
0.6153593069929938,
0.6189040624167499,
0.6227817564581574,
0.626925257370832,
0.6312643258369107
],
[
0.646218682533926,
0.6420400660542133,
0.6379029740215262,
0.6338864672532485,
0.6300721839263994,
0.6265396650253594,
0.6233610855541177,
0.6205959166902366,
0.6182861694955616,
0.6164528938117365,
0.6150944966292987,
0.6141872048854445,
0.6136876688554082,
0.6135373544376165,
0.6136680852625404,
0.6140079329359223,
0.6144866468025185,
0.6150399558109686,
0.6156123253110074,
0.6161580541262128,
0.6166408918243339,
0.6170325904953312,
0.6173109428926389,
0.6174578829924894,
0.6174581410515463,
0.6172987778609492,
0.6169697104429424,
0.6164651268512462,
0.6157855090744085,
0.6149398663812002,
0.6139477380779956,
0.6128405525609284,
0.6116620175256042,
0.6104673481294433,
0.6093212974731032,
0.6082951171617871,
0.6074627233979836,
0.6068964536194439,
0.6066628501608948,
0.6068188890538265,
0.6074089863401108,
0.608462980344798,
0.6099951384849476,
0.6120041070106997,
0.6144736385576761,
0.6173739050309033,
0.6206632226540849,
0.6242900597168048,
0.6281952409432682,
0.6323142879535453
],
[
0.6427518682071366,
0.6380711283195394,
0.6334152823562222,
0.6288761089036481,
0.6245498634119232,
0.6205317716315286,
0.6169096617916258,
0.6137573701776478,
0.6111287386636073,
0.6090530782480975,
0.6075328529185129,
0.6065440398624243,
0.6060391961436821,
0.6059528034866019,
0.6062080812695827,
0.6067242413287753,
0.607423147549633,
0.6082345258694217,
0.6090991920774925,
0.6099701505379225,
0.6108117899961136,
0.6115976983968743,
0.6123077927524316,
0.6129254928930085,
0.6134355661984694,
0.613823065273768,
0.6140735203767242,
0.6141742875437112,
0.6141167395041024,
0.6138988510912917,
0.6135276852463184,
0.6130213231594156,
0.612409883970157,
0.611735422023249,
0.6110506491686393,
0.6104165844848252,
0.6098993652763453,
0.6095665453610818,
0.6094832480078749,
0.6097085271100152,
0.610292227028884,
0.6112725353783579,
0.6126743175026296,
0.6145082305849816,
0.6167705558108476,
0.6194436627393335,
0.6224970223254624,
0.6258886977292266,
0.6295672492057364,
0.6334739817936201
],
[
0.6389588855184125,
0.6337212763152782,
0.628488826179975,
0.6233677201767002,
0.6184709839596398,
0.6139120303539991,
0.6097969916469179,
0.606216595828993,
0.6032386106312162,
0.6009019859764639,
0.5992137010323799,
0.5981489521482355,
0.5976547659817801,
0.5976565169579713,
0.5980663216270532,
0.5987919959717822,
0.5997452487233338,
0.6008480228280426,
0.6020363121348599,
0.6032612712092824,
0.6044879057945752,
0.6056920012832103,
0.6068561640289614,
0.6079658924778986,
0.6090064705392642,
0.6099612228331078,
0.6108113509064341,
0.6115372496375824,
0.6121209438661596,
0.6125491253207614,
0.6128162208096593,
0.6129269721850286,
0.6128981294363448,
0.6127590178985856,
0.6125509089552643,
0.6123252771004338,
0.6121411481675896,
0.6120618236667443,
0.6121513001321749,
0.6124706920538433,
0.6130749208965697,
0.6140098652992716,
0.6153100960300362,
0.6169972589391601,
0.6190791285647549,
0.6215493335984337,
0.6243877446404175,
0.627561502834041,
0.6310266458386867,
0.6347302526706137
],
[
0.6348330474380277,
0.6289806681210106,
0.6231099470938132,
0.6173432807693333,
0.6118128440239898,
0.6066530753264883,
0.6019914842000352,
0.5979386744980951,
0.5945788558339921,
0.5919623012864502,
0.5901010913882255,
0.5889690285422163,
0.5885058898965881,
0.5886253860097462,
0.5892255194103371,
0.5901996599784793,
0.5914466423593454,
0.5928785075973539,
0.5944250479401009,
0.5960349367141481,
0.5976738122206453,
0.5993201422189386,
0.6009599633132383,
0.6025816414620396,
0.6041716464557781,
0.6057120212169209,
0.6071798309034654,
0.6085484828876001,
0.6097904923726012,
0.6108810774505016,
0.6118019141533074,
0.6125444476592734,
0.6131123023463034,
0.6135225178027103,
0.6138055228195896,
0.6140039183765259,
0.6141702588436032,
0.6143640928262222,
0.61464855323329,
0.615086777531606,
0.6157384048985028,
0.6166563502937848,
0.6178840089120735,
0.6194530068055577,
0.6213815871401164,
0.6236737023323816,
0.6263188616289959,
0.6292927529159791,
0.6325586124639756,
0.6360692596037996
],
[
0.6303753549955079,
0.623847894895152,
0.617274057643462,
0.610794335139771,
0.6045626368814014,
0.5987376078938799,
0.5934716661382825,
0.5888987941507986,
0.5851226540267479,
0.5822069000543527,
0.5801694711351703,
0.5789820878097682,
0.5785752484297183,
0.5788479562981962,
0.5796805133102888,
0.5809482215336462,
0.5825338315307403,
0.5843370021071349,
0.5862797328803862,
0.5883075191875726,
0.5903867065201034,
0.5924990809121697,
0.594635056128446,
0.5967868799845323,
0.5989430930917106,
0.6010850889866777,
0.6031861361549334,
0.6052127369845433,
0.6071278115976367,
0.6088949655284598,
0.6104830428831881,
0.6118702538337942,
0.6130473459933051,
0.6140195074902005,
0.6148068991437916,
0.6154438842207568,
0.6159771435488052,
0.6164629308814501,
0.6169637462514044,
0.6175446959090574,
0.6182697800225572,
0.6191983162712466,
0.6203816780789316,
0.6218605044867287,
0.623662522451404,
0.6258011046281068,
0.6282746576083941,
0.631066890654979,
0.6341479525983347,
0.637476351266129
],
[
0.6255960660144649,
0.6183318780862206,
0.6109878818991691,
0.603724572611959,
0.5967203453411244,
0.5901615613571903,
0.5842295577486825,
0.5790857721759471,
0.574856899768116,
0.571622481942644,
0.5694072938826413,
0.5681802234553416,
0.5678601242768544,
0.5683277099923248,
0.5694413606247806,
0.5710540676987212,
0.5730287661987308,
0.5752498812672493,
0.577629824967191,
0.5801101716107466,
0.5826581329898174,
0.5852596281782616,
0.5879106285090147,
0.5906085283866412,
0.593345060410255,
0.5961018021968358,
0.5988487217704587,
0.6015456111687177,
0.604145784332437,
0.6066011406377906,
0.6088676348663058,
0.6109103105219097,
0.6127072786223079,
0.614252286607237,
0.6155557648476248,
0.6166444275608446,
0.6175596291028368,
0.618354740264135,
0.6190918262414601,
0.6198378956406775,
0.6206609645848958,
0.62162615442836,
0.622792022766718,
0.6242073159240209,
0.625908321431314,
0.6279169820174947,
0.6302398991481397,
0.6328682991023553,
0.6357789598603597,
0.6389360119079002
],
[
0.6205162637947367,
0.612453824700527,
0.6042718292991118,
0.5961526301756626,
0.5883019568565717,
0.5809376836363223,
0.5742745546603276,
0.5685061529585749,
0.5637864281025485,
0.5602138397779893,
0.5578212547082464,
0.5565739318784347,
0.556376355441343,
0.5570867814427575,
0.5585367631835956,
0.5605520843365955,
0.5629716009393365,
0.5656612926919854,
0.5685220096011786,
0.5714906454051728,
0.5745355511666937,
0.5776477986266018,
0.5808303522045983,
0.5840872850436825,
0.587414891538593,
0.5907959758277465,
0.5941978616586481,
0.5975739371674346,
0.6008679700544128,
0.6040200997087051,
0.6069733507680762,
0.6096796667988656,
0.6121047448610332,
0.6142312701837971,
0.6160604351913099,
0.6176118402869506,
0.6189220055544036,
0.6200417831824876,
0.6210329702946732,
0.6219644033889159,
0.6229077880622857,
0.6239334942532476,
0.6251065334868524,
0.6264829286392645,
0.6281066806652515,
0.6300075198091446,
0.6321995915738902,
0.6346811659572235,
0.6374353756669563,
0.6404318961394838
],
[
0.6151693417156856,
0.6062491512691812,
0.597162412868742,
0.5881150367966539,
0.5793429330214164,
0.571099493041794,
0.5636377947047425,
0.5571888831672225,
0.5519388808414728,
0.5480087962440033,
0.5454411804985821,
0.5441968460552461,
0.544162810275826,
0.5451700844514,
0.5470177780268688,
0.5494989091895683,
0.5524234810521786,
0.5556354962680289,
0.5590221358298402,
0.5625148795501098,
0.5660836368801271,
0.5697258774908015,
0.5734532606836484,
0.5772783422738492,
0.5812035969001732,
0.5852143039911698,
0.5892759550701788,
0.5933359479504668,
0.5973286304263639,
0.6011823635404557,
0.6048272136014957,
0.6082020856331135,
0.6112604642547679,
0.6139743153433946,
0.6163360381102025,
0.6183585991787746,
0.6200741211922153,
0.621531255464137,
0.622791668744993,
0.6239259463100058,
0.625009179729157,
0.6261164818032393,
0.6273186579424328,
0.6286782590623623,
0.6302462362438539,
0.6320594000533246,
0.634138847788916,
0.6364894562752463,
0.6391004505565475,
0.6419469617883581
],
[
0.6096022925410263,
0.5997692513213645,
0.5897145785199885,
0.5796691663908841,
0.5699018110975337,
0.5607055046975771,
0.5523769335740805,
0.5451905156858339,
0.5393701870074449,
0.5350637947182305,
0.5323255637079374,
0.5311110519669429,
0.5312863409141128,
0.5326497811024044,
0.5349617152448021,
0.5379762163875721,
0.5414692177421707,
0.5452589746387304,
0.5492168354205784,
0.5532682155333821,
0.5573851805733403,
0.5615730794900772,
0.56585422913593,
0.5702517294073095,
0.5747760847800851,
0.5794164882627099,
0.5841375531966949,
0.5888811978452835,
0.5935725369272148,
0.598128167788941,
0.6024651828129391,
0.6065095058015018,
0.6102025910348562,
0.6135059939680795,
0.6164037191728521,
0.6189025259827009,
0.6210305229052199,
0.6228344335026449,
0.6243759048825226,
0.6257271893070327,
0.6269664855524621,
0.6281731944978846,
0.6294233271328005,
0.6307852978080869,
0.632316330203123,
0.6340596854122793,
0.6360428807291997,
0.6382770005589601,
0.6407571121308363,
0.6434637004389394
],
[
0.6038766626846468,
0.5930829405625623,
0.5820037582116692,
0.5708959997164303,
0.5600637376175579,
0.5498435408039773,
0.5405811664922623,
0.5326008084372286,
0.5261705500764433,
0.5214700536621661,
0.5185676519540134,
0.5174128891547278,
0.5178470947607301,
0.5196299452463156,
0.5224760510256327,
0.526093842056177,
0.5302196530891118,
0.5346421160704816,
0.5392146351758893,
0.5438560634080687,
0.5485414265074422,
0.553285663144715,
0.5581239416563146,
0.5630921849005408,
0.5682109673008541,
0.5734749884196657,
0.5788490536996805,
0.5842701940022004,
0.5896545314820276,
0.5949069475914697,
0.5999315623559937,
0.6046413782454211,
0.608965988809062,
0.6128568202719505,
0.6162898400769934,
0.6192659772472621,
0.6218096590307266,
0.623965911961131,
0.6257964484879627,
0.6273751035185736,
0.6287829279820821,
0.6301032049457612,
0.6314166316413468,
0.6327969020596704,
0.6343069176698671,
0.6359958349485908,
0.6378971174506048,
0.6400276934619352,
0.642388232467064,
0.6449644566129107
],
[
0.59806900530688,
0.586277371932204,
0.5741273987288695,
0.5619024136656197,
0.5499436324359323,
0.5386348201227062,
0.5283762050206312,
0.5195484520934092,
0.5124707027140176,
0.5073600642221947,
0.5043018781888121,
0.5032390107445691,
0.5039839402685731,
0.5062511559300966,
0.5097020762957184,
0.5139924676561384,
0.518813440136078,
0.5239202142398741,
0.529146333102626,
0.5344038186830874,
0.5396716816750812,
0.5449763564635648,
0.5503682255885401,
0.555898458200949,
0.5615998600760744,
0.5674743286976492,
0.5734880089723894,
0.5795736960763095,
0.5856388067877006,
0.5915765913206883,
0.5972782260274917,
0.6026438668134972,
0.607591415547655,
0.6120624327479849,
0.6160251728911907,
0.6194750676038011,
0.6224331487561551,
0.6249429357881514,
0.6270662655659356,
0.6288784667819944,
0.6304632074456652,
0.6319072905229115,
0.6332956426703386,
0.6347067274840025,
0.6362086050848312,
0.6378558403112932,
0.6396874216707797,
0.6417257885806127,
0.6439769794934157,
0.6464318195058137
],
[
0.5922706472658592,
0.5794581754979921,
0.5662056558379798,
0.5528226243255332,
0.5396885569300724,
0.5272373666589981,
0.5159287380647449,
0.5062064645302826,
0.49844798578055854,
0.49291400504475696,
0.4897102126141986,
0.4887722801238044,
0.4898795751574125,
0.49269458452782705,
0.4968178532486561,
0.5018454582884607,
0.5074178746898615,
0.5132534697766418,
0.5191643739564784,
0.5250558134132971,
0.530912019551363,
0.5367729535531535,
0.5427066398464391,
0.5487819493087648,
0.5550460998361466,
0.5615098967923615,
0.5681419960473277,
0.5748716413268294,
0.5815978719060901,
0.588202436638988,
0.5945636399708757,
0.6005688989565375,
0.6061246088161386,
0.6111627234345497,
0.6156440846036613,
0.6195589214179773,
0.6229251123318487,
0.6257848193695339,
0.628200035176223,
0.6302474848054522,
0.6320132320833514,
0.6335872731610918,
0.635058360430348,
0.6365092807267627,
0.6380127993197315,
0.6396284612487783,
0.6414004031598186,
0.6433562675448016,
0.6455072306994635,
0.6478490661387948
],
[
0.5865865811793853,
0.5727485556042426,
0.5583808921913225,
0.5438183194367799,
0.5294787216246658,
0.5158480882290267,
0.5034496698436238,
0.4927965167111657,
0.48433151173106964,
0.4783653414315851,
0.4750277121032739,
0.47424678849923585,
0.47576461618833327,
0.4791849056398057,
0.48403986283147465,
0.4898593127270274,
0.4962283222163023,
0.5028256260659708,
0.5094409390053748,
0.5159730859241629,
0.5224129176626887,
0.5288159612258037,
0.5352702242730979,
0.541864611996328,
0.5486628187876568,
0.5556861835739908,
0.5629070035404925,
0.570251657248976,
0.5776111716977322,
0.5848559835753324,
0.5918516625995462,
0.5984730511662364,
0.6046152593009742,
0.6102009043847083,
0.6151837023174297,
0.6195489424062698,
0.6233115500158946,
0.6265124384500591,
0.6292137564079081,
0.631493513480574,
0.6334399537411672,
0.635145965312866,
0.6367037642605933,
0.6382000657786794,
0.6397119404006744,
0.641303533058596,
0.6430237869150082,
0.644905257037329,
0.6469640238172657,
0.6492006318174951
],
[
0.5811333143855723,
0.5662870835323179,
0.5508155951107789,
0.5350769489238915,
0.5195264399181921,
0.504702672931681,
0.49119514781586343,
0.47959110656338516,
0.47040527475843125,
0.46400445259988693,
0.46054611927645217,
0.4599508782336217,
0.4619196168715562,
0.4659910732035764,
0.4716225112256384,
0.4782720402641759,
0.4854657061129464,
0.4928408452898609,
0.5001644733986655,
0.5073297830083152,
0.5143357068396011,
0.5212552149869503,
0.5281983538755872,
0.5352760775313691,
0.5425703389731484,
0.5501144302625997,
0.5578853052418332,
0.5658071346964736,
0.5737633370722915,
0.5816133059019679,
0.5892101071939249,
0.5964162574961444,
0.6031158627874834,
0.6092225019226784,
0.6146830487898685,
0.619478088955354,
0.6236197547768082,
0.6271477767337226,
0.6301244242103545,
0.6326288580568526,
0.6347512833690502,
0.6365871932282275,
0.6382319342446158,
0.6397757932635578,
0.6412997867964954,
0.6428723153915468,
0.6445468124554241,
0.6463604653579921,
0.6483340176338525,
0.6504725827862451
],
[
0.5760355609329888,
0.5602239745034542,
0.5436883626614853,
0.5268076345830147,
0.5100722604957862,
0.4940722850561765,
0.4794641183038529,
0.46691211454114356,
0.45700760088829984,
0.4501786128037129,
0.4466138418495199,
0.4462265766794004,
0.44867355757603045,
0.4534237023196537,
0.4598544686577094,
0.46734868048756545,
0.4753714998853961,
0.483518458431557,
0.49153443208598124,
0.4993080787756859,
0.5068477813604636,
0.5142454490042743,
0.5216346974628123,
0.5291500011520209,
0.5368928859293203,
0.5449096782062054,
0.5531828125840954,
0.5616348528711483,
0.5701420583270328,
0.5785531548761429,
0.5867090629922668,
0.59446033796899,
0.6016804472011407,
0.6082742738399421,
0.6141821408956359,
0.6193801443300462,
0.6238777440808836,
0.6277135085169506,
0.6309497516606989,
0.6336666234300957,
0.6359560573747683,
0.6379158671258689,
0.639644212707374,
0.6412346205860247,
0.6427717214402333,
0.6443278513831037,
0.6459606334676774,
0.6477116103515838,
0.6496059365602257,
0.6516530666293255
],
[
0.5714217579229154,
0.5547157486740463,
0.5371877220594217,
0.5192342590094009,
0.501377560456741,
0.48425600195887164,
0.4685909827001046,
0.45512396939602945,
0.44452490194078503,
0.4372861467510767,
0.4336301293035243,
0.4334633919344924,
0.436397010562751,
0.44182758916173226,
0.44905073287669556,
0.4573732013215323,
0.46619975063314884,
0.4750853416144397,
0.48375415361051727,
0.4920916171095213,
0.500116628197637,
0.5079408968256013,
0.5157223556903683,
0.5236196943064083,
0.531754669763875,
0.5401872560895414,
0.5489059311256734,
0.5578321753513603,
0.5668355975438922,
0.5757547695390258,
0.5844189874115941,
0.5926673573710811,
0.6003631821368731,
0.6074030529360068,
0.61372104967949,
0.619288975310327,
0.6241136991413074,
0.6282326008461842,
0.631707917805249,
0.6346205910432158,
0.6370640276200418,
0.6391380690058426,
0.6409433752584778,
0.6425763923135469,
0.6441250482554434,
0.6456653078391595,
0.6472586899047118,
0.648950812462634,
0.6507709745482677,
0.6527327179123761
],
[
0.5674185241048311,
0.5499183551603195,
0.5315037668947472,
0.5125855482013186,
0.4937131396314788,
0.4755681509070675,
0.4589320508812034,
0.4446196431675778,
0.43337755177999027,
0.42576234279546293,
0.4220310142300983,
0.4220842412813966,
0.4254881241714102,
0.43156797538478686,
0.43953948906791784,
0.44863625097792564,
0.4582059194047945,
0.46776591627036673,
0.47702198648557487,
0.48585766479332027,
0.49430287978257975,
0.5024891166079379,
0.5105983470316201,
0.5188131811932456,
0.5272754439223234,
0.5360587916696221,
0.5451579909114456,
0.5544938748905232,
0.563929989104674,
0.5732954357378427,
0.5824086051755063,
0.5910978436083798,
0.5992168930106913,
0.6066545316664496,
0.6133389293325694,
0.6192377794219915,
0.6243554051712243,
0.6287279228885516,
0.6324173238280889,
0.635505101215212,
0.6380858509541458,
0.6402611320618651,
0.6421337843094687,
0.6438028534858677,
0.6453592523066222,
0.6468822705362308,
0.6484370279082274,
0.6500729298347592,
0.651823136945916,
0.6537049993658318
],
[
0.5641443461512169,
0.5459790786124509,
0.526817932211551,
0.5070823998776519,
0.4873438965852267,
0.4683203202788967,
0.45084512763515866,
0.4357982979325081,
0.42399623419958066,
0.416055175197682,
0.41226504082997223,
0.41252178161068875,
0.4163501362919757,
0.42300977624774494,
0.4316434494808256,
0.4414188005963525,
0.4516328029902346,
0.46177015717655234,
0.47152109288348254,
0.48076839039905,
0.48955276757940563,
0.498024367728786,
0.5063877158134985,
0.514847905106764,
0.5235657259882088,
0.5326278996323316,
0.5420353771090853,
0.5517086938852533,
0.5615060193695025,
0.5712478710250665,
0.5807426785224189,
0.589808917279829,
0.5982915194113657,
0.6060720160370487,
0.6130730326895307,
0.6192583289372695,
0.6246296926637006,
0.6292218557198197,
0.6330963452653012,
0.6363349244094987,
0.6390330587741754,
0.6412936902244379,
0.643221502561165,
0.6449178130819384,
0.6464762011487184,
0.6479789730120815,
0.6494945470452125,
0.6510758162501552,
0.6527595024833092,
0.6545664622203151
],
[
0.5617029520842487,
0.5430278182097996,
0.5232916349329372,
0.5029233042958681,
0.4825104927623984,
0.46279890192454404,
0.4446628954918788,
0.4290349273935256,
0.4167887498189677,
0.40859057273406085,
0.4047584869938205,
0.40518504909945074,
0.4093606629793703,
0.4164903600264787,
0.4256565053162269,
0.43597262464061814,
0.44669448646826904,
0.45728048717965913,
0.46740870302385656,
0.47696192852076114,
0.48599052886309074,
0.4946609973219853,
0.5031976422539258,
0.5118254006079246,
0.5207219454929829,
0.5299857698789874,
0.5396235522166022,
0.5495558039377757,
0.5596361242872677,
0.5696775515885906,
0.5794797435851755,
0.5888524080248382,
0.5976325753998519,
0.6056951906308778,
0.612957741366359,
0.6193802281254124,
0.6249618865978999,
0.6297359017658869,
0.6337630735703541,
0.6371251103428264,
0.639917992423983,
0.6422456816646687,
0.6442143492161377,
0.6459272400437052,
0.6474802699651189,
0.6489584420171092,
0.6504331588682891,
0.6519604869093746,
0.6535803914504668,
0.6553169128290126
],
[
0.5601769745976193,
0.5411685720775555,
0.5210549087720333,
0.5002693459591506,
0.4794098933297312,
0.4592404469159866,
0.440662698332662,
0.4246447948867846,
0.41210015254501325,
0.4037301005660546,
0.3998729373886498,
0.40041926326797816,
0.4048355726076993,
0.412288544315722,
0.42181809847650575,
0.43249969094462093,
0.4435600398054198,
0.4544389366594174,
0.46480591275532074,
0.47454409405143566,
0.48371145765399587,
0.4924873986603991,
0.5011120213456719,
0.5098263273236141,
0.5188218594172994,
0.5282069516514417,
0.5379932256862806,
0.5481013840698835,
0.5583813904113328,
0.568640134672102,
0.5786699368179609,
0.5882730548525862,
0.5972796855795285,
0.6055589486417667,
0.6130236478306222,
0.6196302075986916,
0.6253752767735993,
0.6302902988856101,
0.6344350458579967,
0.6378908093033729,
0.6407536957251997,
0.643128295579722,
0.6451218871230172,
0.6468392795973389,
0.6483783782390177,
0.6498265476995838,
0.6512578454084209,
0.6527311813145258,
0.6542894300412345,
0.6559594762804657
],
[
0.5596225767283023,
0.5404721025363916,
0.520196435177169,
0.49923076772066405,
0.47817751778246703,
0.4578084759815555,
0.4390373638160122,
0.42284826511037243,
0.410172578402966,
0.401727855022044,
0.39786204368729133,
0.3984652705387178,
0.40299323333233067,
0.4105947070350927,
0.42028926153827284,
0.43113352066190236,
0.4423392651931152,
0.4533362808252946,
0.46378929632073757,
0.47358170584971526,
0.48277634587383295,
0.4915611455914036,
0.500187020395001,
0.5089063093448993,
0.5179206284522542,
0.5273456819093122,
0.5371969764446936,
0.5473955804058885,
0.5577888801918869,
0.568179157406609,
0.578353055778954,
0.588106902460213,
0.5972652814174404,
0.6056923486429114,
0.6132967328277984,
0.6200314848020338,
0.6258906272885276,
0.6309036488350511,
0.6351289665185428,
0.6386470650824742,
0.6415537611239704,
0.6439538568620435,
0.6459553343450418,
0.6476641828109065,
0.6491799307299921,
0.6505919513850711,
0.6519766107082271,
0.653395316704316,
0.6548935047009034,
0.6565005512517444
],
[
0.5600656735883522,
0.5409707323293944,
0.5207563898615187,
0.4998571974782794,
0.47887405096490954,
0.4585760475169528,
0.439872881030759,
0.4237434583635383,
0.411113612586579,
0.40269629055749895,
0.39883727314939815,
0.3994277044124473,
0.40392690342201665,
0.4114882253929921,
0.42113503081076786,
0.43192594052913585,
0.4430729219819202,
0.45400485886665126,
0.46438554093465706,
0.4740984004600814,
0.4832079918101248,
0.4919058582720951,
0.5004480982799646,
0.5090930168082911,
0.5180479535351763,
0.5274331204782239,
0.5372666502389454,
0.5474701253003463,
0.557889514443519,
0.5683242014693235,
0.5785570040305063,
0.5883800088354582,
0.5976135443341523,
0.6061177613692235,
0.6137976831977384,
0.6206032217050436,
0.6265257457521417,
0.63159257304377,
0.6358604281541341,
0.639408583158727,
0.6423321305236811,
0.6447356480619942,
0.6467273985461736,
0.6484141472079186,
0.6498966602934242,
0.6512659483903356,
0.6526003228502958,
0.6539633295749109,
0.6554026041305588,
0.6569496539009246
],
[
0.561500224861348,
0.5426559986629362,
0.522723218024631,
0.5021332320836442,
0.4814794566887605,
0.4615177961529908,
0.44313813378496464,
0.42729359138205053,
0.4148815835687034,
0.40659033324125066,
0.4027520831187543,
0.40326047682860805,
0.4075924375167709,
0.41492776867822506,
0.4243172374641436,
0.43484200488720387,
0.4457293029802227,
0.45641632740378263,
0.46656995307813925,
0.47607354127491275,
0.48499024458926177,
0.49351020052738703,
0.5018888562436129,
0.5103848444236815,
0.5192066130448112,
0.5284758109617826,
0.538211820535817,
0.5483368674866712,
0.5586967232366177,
0.5690896950489903,
0.5792967552308589,
0.5891075677764596,
0.5983396732608364,
0.6068502635960659,
0.614541391267545,
0.6213601089433207,
0.6272951327282508,
0.632371409925196,
0.6366436416756529,
0.6401894809877902,
0.643102855680198,
0.6454876722491101,
0.6474520370040413,
0.6491030707559904,
0.6505423745583342,
0.6518622076905268,
0.6531424481611219,
0.6544484068620189,
0.6558295504406344,
0.6573191522283375
],
[
0.5638888146290091,
0.545479499319596,
0.5260348555779926,
0.5059801763930278,
0.4858954094909651,
0.46651324765031943,
0.448689262890839,
0.433332455050172,
0.4212920496067374,
0.41321455854489975,
0.40940931891797494,
0.40977391270547525,
0.4138148040852185,
0.4207570345399695,
0.4296994570886381,
0.4397642387141052,
0.45020787099222676,
0.46048477148457545,
0.47026909260152605,
0.4794443961323528,
0.4880697305545179,
0.4963291609569596,
0.5044718935634132,
0.5127513824022908,
0.521372609817069,
0.5304555776288785,
0.5400195117321316,
0.5499873911175615,
0.5602060169786429,
0.5704744765006766,
0.580573935029285,
0.5902935224537893,
0.5994495342406005,
0.6078973220482521,
0.6155366676024249,
0.6223120999592332,
0.6282097290575512,
0.6332519672684115,
0.6374911863415597,
0.6410030293768599,
0.6438798260039006,
0.6462243639211265,
0.6481441489734691,
0.6497462256779015,
0.6511326127029148,
0.652396414491211,
0.6536186834508121,
0.6548661124418436,
0.6561896248999125,
0.6576238961384706
],
[
0.567165429787035,
0.5493567906403206,
0.5305841751332588,
0.511263590756615,
0.49195560957897844,
0.4733606070315356,
0.4562875022816961,
0.4415864651478122,
0.4300435207350742,
0.4222512024343803,
0.4184895331471428,
0.4186613692650326,
0.42231154825495776,
0.4287244091850786,
0.4370629237851116,
0.4465052779925966,
0.4563492426143635,
0.46607462227504215,
0.47536711176377694,
0.4841112663540639,
0.49236003596451566,
0.5002874723897606,
0.5081315915766487,
0.5161356591414373,
0.5244969486351322,
0.5333309054545424,
0.5426552451883098,
0.5523937872809062,
0.5623955375125791,
0.572462172084473,
0.5823770644585547,
0.591930705298104,
0.6009397200666062,
0.6092587894734571,
0.6167861848212585,
0.6234643096894165,
0.6292767734891903,
0.634243340828424,
0.6384137901332892,
0.6418613950189901,
0.6446764737736846,
0.6469602580247575,
0.6488192105624286,
0.6503598623221836,
0.6516842225806084,
0.6528858258973413,
0.6540464963415652,
0.655233918794193,
0.6565000978550777,
0.6578807524632975
],
[
0.5712400633651593,
0.5541737585534666,
0.5362277602085112,
0.5178052666152122,
0.49944188699190045,
0.4817979274978076,
0.46562611068158105,
0.45170744873135016,
0.44075521906977955,
0.43330092237953566,
0.42959202331083024,
0.42953780839528743,
0.4327268749001953,
0.4385116053480109,
0.44612972998463846,
0.45482624936427374,
0.4639496184928403,
0.47301201617343175,
0.4817148045019113,
0.4899448288310116,
0.4977477881149439,
0.5052847430243534,
0.512778498528267,
0.5204579055355328,
0.5285088556472024,
0.5370396638120604,
0.5460653070987862,
0.5555105065704272,
0.5652275399413718,
0.5750223546942271,
0.5846824434033495,
0.5940014911554566,
0.6027980129282905,
0.610927210281194,
0.6182866532340436,
0.6248170811972757,
0.6304997761795159,
0.6353518064953202,
0.6394201494134109,
0.6427753944831248,
0.6455054682078407,
0.6477096294843874,
0.64949286526893,
0.650960756795863,
0.6522148722607348,
0.6533487539230236,
0.6544445879430414,
0.6555706579531437,
0.6567796766854004,
0.658108058439871
],
[
0.5760045651620762,
0.5597945852549423,
0.5427966782877776,
0.525397633492868,
0.5081031472450432,
0.4915274310544938,
0.476360583874244,
0.46330862158214847,
0.4530077809399122,
0.44592624065745895,
0.4422784263323945,
0.4419809597359383,
0.44466841049111516,
0.44976498681694,
0.45658857484798177,
0.46445743549182184,
0.4727771783803047,
0.48109780825406334,
0.4891400568246259,
0.49679470375359164,
0.5040998626776627,
0.5112016735065118,
0.5183047943483825,
0.5256204015643018,
0.5333200696337229,
0.541502866153479,
0.55017998770464,
0.5592770937536644,
0.5686506512126611,
0.5781123674813624,
0.5874555888601029,
0.5964789027936742,
0.6050042080196429,
0.6128884081190683,
0.6200292116228808,
0.626366211896133,
0.631878606073941,
0.6365807889851276,
0.6405167946651804,
0.643754269506013,
0.6463784106581527,
0.648486117420287,
0.6501804858536542,
0.6515657191626059,
0.6527425135924533,
0.653803993966336,
0.6548322962519708,
0.6558959101377966,
0.6570478899845837,
0.6583250114384432
],
[
0.58133907383425,
0.566070329478746,
0.5501078148832004,
0.5338185209034163,
0.5176742252782459,
0.5022389695224572,
0.48813689732914195,
0.47599725488752404,
0.46637935625522065,
0.4596895200603784,
0.4561106961214696,
0.45556745493482126,
0.4577400107280889,
0.46212414222223586,
0.4681188151212959,
0.4751180225536532,
0.48258806898934264,
0.49012048703123295,
0.4974583820558527,
0.5044982270225742,
0.5112708901507214,
0.5179066597930645,
0.5245902229348663,
0.5315128615318233,
0.5388297242481256,
0.5466290476303592,
0.5549174376479301,
0.5636215131265568,
0.5726026727744776,
0.5816796318420516,
0.5906530917050671,
0.5993280686215964,
0.6075312266460076,
0.6151223062005591,
0.6220000010633697,
0.6281033202807376,
0.6334096830172674,
0.6379309055077483,
0.6417080066537856,
0.6448054925229583,
0.6473055434851728,
0.6493023494780239,
0.6508967252257709,
0.6521910816321488,
0.65328481852633,
0.6542702203973613,
0.6552289624757609,
0.6562293524771408,
0.6573244302827255,
0.6585510168599875
],
[
0.5871183927936211,
0.572847219114379,
0.5579745139940324,
0.5428445677947188,
0.5278923966007966,
0.5136297784235175,
0.5006143536948036,
0.48940013197157994,
0.4804728997761825,
0.47418114189680355,
0.4706791707225943,
0.4698998231210692,
0.47156683349505907,
0.47524438614300585,
0.4804100317969219,
0.48653268389045007,
0.49314022354098846,
0.49986762393229717,
0.5064824699210713,
0.5128885622975444,
0.5191103311695294,
0.5252621367845218,
0.5315079033463059,
0.5380178141088852,
0.5449293221860645,
0.5523188122224356,
0.5601877500278325,
0.568463733683129,
0.5770136564880972,
0.585664224783942,
0.5942247261142446,
0.6025079081153351,
0.6103464279494776,
0.6176039161653738,
0.6241808783493252,
0.630016325775298,
0.635086259553479,
0.6394000789106582,
0.6429957849266165,
0.6459346101833766,
0.6482954849874343,
0.6501695823422518,
0.6516550753781732,
0.6528521881276707,
0.6538586113969935,
0.6547653737942903,
0.6556532856902592,
0.6565900936786667,
0.657628481180426,
0.658805019703186
],
[
0.5932177897216492,
0.5799739653728786,
0.5662156347960702,
0.5522621798603298,
0.5385102632157114,
0.5254191378048502,
0.513481674042575,
0.5031805969424804,
0.49493369693012035,
0.48903713062932813,
0.4856200334647521,
0.48462355683391,
0.4858117163454725,
0.48881208936503134,
0.49317597425143517,
0.4984439207178057,
0.504204055841416,
0.510135040892097,
0.5160300596094466,
0.5218015594745444,
0.527468591528358,
0.5331301713577774,
0.5389295506157569,
0.5450155252763723,
0.5515073707335413,
0.5584691489038542,
0.5658969071951541,
0.5737192596968504,
0.5818089891118751,
0.5900015099115239,
0.59811564095824,
0.6059729137171057,
0.6134130211698001,
0.6203044244342686,
0.626550219591669,
0.6320900093153413,
0.6368987734049035,
0.6409837117870169,
0.644379868433237,
0.6471451312438427,
0.6493550021064977,
0.6510973744900814,
0.6524674539620917,
0.653562907685135,
0.6544793218906743,
0.655306066268057,
0.6561226934559187,
0.656996022927444,
0.6579780573358943,
0.6591048479094652
],
[
0.5995178648274125,
0.5873076736131188,
0.5746625506693006,
0.5618755641937814,
0.5493046410446639,
0.5373577972199218,
0.5264665657823652,
0.517047904069802,
0.509458297641746,
0.5039477089427093,
0.500623703821881,
0.4994355712952309,
0.500183795515097,
0.5025533493254754,
0.506163034052092,
0.5106200681171527,
0.5155698031099915,
0.5207334145627001,
0.5259298423472571,
0.5310810679197429,
0.5362018883353172,
0.5413770140817747,
0.5467298091716105,
0.5523881610675864,
0.5584533745909886,
0.564977220307429,
0.571950313025651,
0.5793023533199897,
0.586912263731871,
0.5946246348372113,
0.6022684801217413,
0.6096749078449468,
0.6166914850597298,
0.6231923064847414,
0.6290837641456393,
0.6343066208840451,
0.6388352498156873,
0.6426749111715617,
0.6458578063245053,
0.6484384637700247,
0.6504888314914054,
0.6520933064547869,
0.6533438376702291,
0.6543351940747902,
0.6551604836931759,
0.6559070318876801,
0.6566527568394462,
0.6574632023166229,
0.6583893868848756,
0.6594665967897935
],
[
0.6059083055034733,
0.5947181819119528,
0.5831639839994792,
0.5715118752601072,
0.5600817307740544,
0.5492328170071784,
0.539339893129264,
0.5307605055629767,
0.5237969418768559,
0.5186591393557926,
0.5154365451013773,
0.5140862341512862,
0.5144411586541847,
0.5162373344274646,
0.5191541457194649,
0.5228595096634784,
0.527051808020956,
0.5314924442620396,
0.5360254222288675,
0.5405826748482867,
0.5451758003249774,
0.549876514559667,
0.5547895795680694,
0.5600230493383446,
0.5656610278504242,
0.5717434546207742,
0.5782557380201292,
0.5851287812338121,
0.5922477819234284,
0.5994667556900827,
0.6066253121798809,
0.6135646760043634,
0.620140915230016,
0.6262344078470145,
0.6317554534647445,
0.6366465020921739,
0.6408817331854707,
0.6444647527058432,
0.6474250756945762,
0.649813905010475,
0.6516995578475285,
0.6531627622392382,
0.6542919600670836,
0.6551787126485105,
0.6559133025916061,
0.656580648163023,
0.6572566773876312,
0.6580053313427262,
0.6588763652093773,
0.6599040832451962
],
[
0.6122904948218612,
0.602090862818493,
0.5915888358550679,
0.5810238296615089,
0.570679214580651,
0.5608688339013594,
0.5519158714367077,
0.5441251011258169,
0.5377516211511887,
0.5329711779009497,
0.5298582262076805,
0.5283771488459484,
0.5283894290571935,
0.5296758398475221,
0.5319692800061044,
0.5349919333086887,
0.5384903067230004,
0.5422629566854876,
0.5461775765496063,
0.550176023939481,
0.5542676007673727,
0.5585124589190752,
0.5629983653519849,
0.5678150393843526,
0.5730305782598444,
0.5786738911985945,
0.5847256096917767,
0.5911180058143458,
0.597742601685726,
0.6044629044437159,
0.6111292906957848,
0.617593406092473,
0.6237202400937631,
0.629396943585448,
0.6345382274027074,
0.6390886962410712,
0.6430227292923919,
0.6463425733391047,
0.6490752420794502,
0.6512686856025741,
0.6529875563010372,
0.654308783012253,
0.6553170888091948,
0.6561005526162135,
0.6567463149582407,
0.6573365516951536,
0.6579448707831773,
0.6586333092352199,
0.6594501062785766,
0.6604283958870596
],
[
0.6185790525867193,
0.6093280604102148,
0.5998273242178297,
0.590290300714833,
0.5809660409034841,
0.5721268012287735,
0.5640496283365164,
0.5569930492706753,
0.5511715623057121,
0.546732021647871,
0.5437366187078865,
0.5421564804000626,
0.5418778972552265,
0.5427204387937593,
0.5444636539807859,
0.5468774990592611,
0.5497513718711705,
0.5529174205897855,
0.5562651598290453,
0.559745969170153,
0.5633675680663499,
0.5671799833455181,
0.5712557626573951,
0.5756680545435918,
0.580470432221005,
0.5856818218913408,
0.5912786652434888,
0.5971948161205319,
0.6033281096264301,
0.6095514663121874,
0.615726006583019,
0.6217138940997602,
0.6273892677657865,
0.6326463829726252,
0.6374047502192238,
0.6416115241267266,
0.6452416423312181,
0.6482962824435976,
0.6508001577961022,
0.6527980679108725,
0.6543510028127308,
0.6555320008951567,
0.656421893395946,
0.6571050387919664,
0.6576651531153511,
0.6581813664892572,
0.6587246671864484,
0.6593549161251713,
0.6601186130516483,
0.6610475625277478
],
[
0.6247024571115964,
0.616349406938967,
0.6077908055146279,
0.5992154314309933,
0.5908406236804064,
0.5829011232730283,
0.5756332257433425,
0.5692553690879167,
0.563947446743551,
0.5598320991817137,
0.5569615719941284,
0.5553131209139832,
0.5547944115355254,
0.5552583158814434,
0.556524590068706,
0.5584046839794635,
0.5607256169236274,
0.5633493406562442,
0.5661850131344403,
0.5691928473107424,
0.5723795038325539,
0.5757862570644076,
0.5794722594429443,
0.5834959820424439,
0.5878981220896534,
0.5926888254646708,
0.5978410387305263,
0.6032904464252538,
0.6089411432781915,
0.6146752753571989,
0.6203645277009051,
0.6258815030536957,
0.6311095464354844,
0.6359502006413161,
0.640328048511249,
0.6441931101161505,
0.6475211943671629,
0.6503126823441326,
0.6525901925740962,
0.6543954962900689,
0.6557859535712272,
0.6568306566555159,
0.657606409875943,
0.6581936515418182,
0.6586724282960551,
0.6591185572792481,
0.6596001418733312,
0.660174627533208,
0.6608865818952508,
0.6617663500789144
]
]
},
{
"hoverinfo": "text",
"legendgroup": "In-sample",
"marker": {
"color": "black",
"opacity": 0.5,
"symbol": 1
},
"mode": "markers",
"name": "In-sample",
"text": [
"Arm 0_0
hartmann6: -2.55497 (SEM: 0.1)
x1: 0.405293
x2: 0.74935
x3: 0.328107
x4: 0.67813
x5: 0.509819
x6: 0.0515415",
"Arm 1_0
hartmann6: 0.118751 (SEM: 0.1)
x1: 0.953876
x2: 0.27131
x3: 0.817712
x4: 0.00265851
x5: 0.169502
x6: 0.0351052",
"Arm 2_0
hartmann6: -0.767316 (SEM: 0.1)
x1: 0.0121443
x2: 0.0678637
x3: 0.526769
x4: 0.133143
x5: 0.00537562
x6: 0.773202",
"Arm 3_0
hartmann6: 0.0603503 (SEM: 0.1)
x1: 0.194068
x2: 0.344042
x3: 0.949107
x4: 0.490742
x5: 0.933593
x6: 0.249598",
"Arm 4_0
hartmann6: -0.0204126 (SEM: 0.1)
x1: 0.890174
x2: 0.38554
x3: 0.493718
x4: 0.901018
x5: 0.499325
x6: 0.801591",
"Arm 5_0
hartmann6: -0.0684416 (SEM: 0.1)
x1: 0.678472
x2: 0.0835807
x3: 0.990709
x4: 0.833655
x5: 0.662268
x6: 0.232551",
"Arm 6_0
hartmann6: 0.0177218 (SEM: 0.1)
x1: 0.978577
x2: 0.96843
x3: 0.884392
x4: 0.899749
x5: 0.139095
x6: 0.0344437",
"Arm 7_0
hartmann6: -0.176489 (SEM: 0.1)
x1: 0.370112
x2: 0.632159
x3: 0.832172
x4: 0.230053
x5: 0.931054
x6: 0.781986",
"Arm 8_0
hartmann6: -0.739327 (SEM: 0.1)
x1: 0.183521
x2: 0.71696
x3: 0.632497
x4: 0.284422
x5: 0.319276
x6: 0.375443",
"Arm 9_0
hartmann6: -0.269545 (SEM: 0.1)
x1: 0.0555822
x2: 0.0269895
x3: 0.642712
x4: 0.631488
x5: 0.0222407
x6: 0.920679",
"Arm 10_0
hartmann6: -0.242808 (SEM: 0.1)
x1: 0.304531
x2: 0.89638
x3: 0.936778
x4: 0.11165
x5: 0.0716464
x6: 0.00782214",
"Arm 11_0
hartmann6: -0.261256 (SEM: 0.1)
x1: 0.778506
x2: 0.0242704
x3: 0.603086
x4: 0.65902
x5: 0.299814
x6: 0.659678",
"Arm 12_0
hartmann6: -2.20228 (SEM: 0.1)
x1: 0.304189
x2: 0.743975
x3: 0.320002
x4: 0.609169
x5: 0.428523
x6: 0.0651095",
"Arm 13_0
hartmann6: -1.85969 (SEM: 0.1)
x1: 0.287856
x2: 0.757063
x3: 0.286837
x4: 0.671959
x5: 0.561321
x6: 0",
"Arm 14_0
hartmann6: -2.4569 (SEM: 0.1)
x1: 0.424433
x2: 0.739343
x3: 0.3309
x4: 0.524169
x5: 0.463361
x6: 0.066434",
"Arm 15_0
hartmann6: -2.45715 (SEM: 0.1)
x1: 0.443945
x2: 0.753923
x3: 0.338643
x4: 0.619732
x5: 0.457005
x6: 0.0871707",
"Arm 16_0
hartmann6: -2.22884 (SEM: 0.1)
x1: 0.417616
x2: 0.69061
x3: 0.36041
x4: 0.606034
x5: 0.458493
x6: 0.0167715",
"Arm 17_0
hartmann6: -2.43217 (SEM: 0.1)
x1: 0.425905
x2: 0.729397
x3: 0.286408
x4: 0.619346
x5: 0.496688
x6: 0.112599",
"Arm 18_0
hartmann6: -2.77354 (SEM: 0.1)
x1: 0.431538
x2: 0.818916
x3: 0.298256
x4: 0.624864
x5: 0.464648
x6: 0.0574683"
],
"type": "scatter",
"x": [
0.4052932560443878,
0.9538763938471675,
0.012144285254180431,
0.19406807143241167,
0.890174220316112,
0.6784723727032542,
0.9785772245377302,
0.37011178210377693,
0.18352123349905014,
0.05558216851204634,
0.30453084129840136,
0.778505751863122,
0.3041889644932752,
0.28785632426597624,
0.4244331430654877,
0.4439448321027049,
0.41761628315222316,
0.42590540193443077,
0.4315378122111177
],
"xaxis": "x",
"y": [
0.7493495941162109,
0.27131029684096575,
0.06786371301859617,
0.3440424194559455,
0.38553957361727953,
0.0835806792601943,
0.9684303849935532,
0.6321590030565858,
0.7169599095359445,
0.02698945626616478,
0.8963795714080334,
0.024270442314445972,
0.7439753353993611,
0.7570631273279133,
0.7393429674923417,
0.7539232398384155,
0.690609611628906,
0.7293969410310865,
0.8189156591459276
],
"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: -2.55497 (SEM: 0.1)
x1: 0.405293
x2: 0.74935
x3: 0.328107
x4: 0.67813
x5: 0.509819
x6: 0.0515415",
"Arm 1_0
hartmann6: 0.118751 (SEM: 0.1)
x1: 0.953876
x2: 0.27131
x3: 0.817712
x4: 0.00265851
x5: 0.169502
x6: 0.0351052",
"Arm 2_0
hartmann6: -0.767316 (SEM: 0.1)
x1: 0.0121443
x2: 0.0678637
x3: 0.526769
x4: 0.133143
x5: 0.00537562
x6: 0.773202",
"Arm 3_0
hartmann6: 0.0603503 (SEM: 0.1)
x1: 0.194068
x2: 0.344042
x3: 0.949107
x4: 0.490742
x5: 0.933593
x6: 0.249598",
"Arm 4_0
hartmann6: -0.0204126 (SEM: 0.1)
x1: 0.890174
x2: 0.38554
x3: 0.493718
x4: 0.901018
x5: 0.499325
x6: 0.801591",
"Arm 5_0
hartmann6: -0.0684416 (SEM: 0.1)
x1: 0.678472
x2: 0.0835807
x3: 0.990709
x4: 0.833655
x5: 0.662268
x6: 0.232551",
"Arm 6_0
hartmann6: 0.0177218 (SEM: 0.1)
x1: 0.978577
x2: 0.96843
x3: 0.884392
x4: 0.899749
x5: 0.139095
x6: 0.0344437",
"Arm 7_0
hartmann6: -0.176489 (SEM: 0.1)
x1: 0.370112
x2: 0.632159
x3: 0.832172
x4: 0.230053
x5: 0.931054
x6: 0.781986",
"Arm 8_0
hartmann6: -0.739327 (SEM: 0.1)
x1: 0.183521
x2: 0.71696
x3: 0.632497
x4: 0.284422
x5: 0.319276
x6: 0.375443",
"Arm 9_0
hartmann6: -0.269545 (SEM: 0.1)
x1: 0.0555822
x2: 0.0269895
x3: 0.642712
x4: 0.631488
x5: 0.0222407
x6: 0.920679",
"Arm 10_0
hartmann6: -0.242808 (SEM: 0.1)
x1: 0.304531
x2: 0.89638
x3: 0.936778
x4: 0.11165
x5: 0.0716464
x6: 0.00782214",
"Arm 11_0
hartmann6: -0.261256 (SEM: 0.1)
x1: 0.778506
x2: 0.0242704
x3: 0.603086
x4: 0.65902
x5: 0.299814
x6: 0.659678",
"Arm 12_0
hartmann6: -2.20228 (SEM: 0.1)
x1: 0.304189
x2: 0.743975
x3: 0.320002
x4: 0.609169
x5: 0.428523
x6: 0.0651095",
"Arm 13_0
hartmann6: -1.85969 (SEM: 0.1)
x1: 0.287856
x2: 0.757063
x3: 0.286837
x4: 0.671959
x5: 0.561321
x6: 0",
"Arm 14_0
hartmann6: -2.4569 (SEM: 0.1)
x1: 0.424433
x2: 0.739343
x3: 0.3309
x4: 0.524169
x5: 0.463361
x6: 0.066434",
"Arm 15_0
hartmann6: -2.45715 (SEM: 0.1)
x1: 0.443945
x2: 0.753923
x3: 0.338643
x4: 0.619732
x5: 0.457005
x6: 0.0871707",
"Arm 16_0
hartmann6: -2.22884 (SEM: 0.1)
x1: 0.417616
x2: 0.69061
x3: 0.36041
x4: 0.606034
x5: 0.458493
x6: 0.0167715",
"Arm 17_0
hartmann6: -2.43217 (SEM: 0.1)
x1: 0.425905
x2: 0.729397
x3: 0.286408
x4: 0.619346
x5: 0.496688
x6: 0.112599",
"Arm 18_0
hartmann6: -2.77354 (SEM: 0.1)
x1: 0.431538
x2: 0.818916
x3: 0.298256
x4: 0.624864
x5: 0.464648
x6: 0.0574683"
],
"type": "scatter",
"x": [
0.4052932560443878,
0.9538763938471675,
0.012144285254180431,
0.19406807143241167,
0.890174220316112,
0.6784723727032542,
0.9785772245377302,
0.37011178210377693,
0.18352123349905014,
0.05558216851204634,
0.30453084129840136,
0.778505751863122,
0.3041889644932752,
0.28785632426597624,
0.4244331430654877,
0.4439448321027049,
0.41761628315222316,
0.42590540193443077,
0.4315378122111177
],
"xaxis": "x2",
"y": [
0.7493495941162109,
0.27131029684096575,
0.06786371301859617,
0.3440424194559455,
0.38553957361727953,
0.0835806792601943,
0.9684303849935532,
0.6321590030565858,
0.7169599095359445,
0.02698945626616478,
0.8963795714080334,
0.024270442314445972,
0.7439753353993611,
0.7570631273279133,
0.7393429674923417,
0.7539232398384155,
0.690609611628906,
0.7293969410310865,
0.8189156591459276
],
"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": [
"