{ "cells": [ { "cell_type": "markdown", "metadata": { "originalKey": "e23719d9-8a24-4208-8439-34e7b8270c79" }, "source": [ "# Visualizations\n", "\n", "This tutorial illustrates the core visualization utilities available in Ax." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "code_folding": [], "collapsed": false, "executionStartTime": 1627652821316, "executionStopTime": 1627652822868, "hidden_ranges": [], "originalKey": "101b0e96-5b3d-48c5-bf3c-677b4ddf90c7", "requestMsgId": "c0dd9aaf-896d-4ea9-912f-1e58d301d114" }, "outputs": [ { "data": { "text/html": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:19:51] ax.utils.notebook.plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.\n" ] }, { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "import numpy as np\n", "from ax.service.ax_client import AxClient\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(\n", " interact_fitted,\n", " plot_objective_vs_constraints,\n", " tile_fitted,\n", ")\n", "from ax.plot.slice import plot_slice\n", "from ax.utils.measurement.synthetic_functions import hartmann6\n", "from ax.utils.notebook.plotting import render, init_notebook_plotting\n", "\n", "init_notebook_plotting()" ] }, { "cell_type": "markdown", "metadata": { "code_folding": [], "hidden_ranges": [], "originalKey": "8449378f-890e-4e76-8d73-ce2aa4120a69", "showInput": true }, "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", "metadata": { "originalKey": "f7544e06-6c6a-4841-b659-3be6a198a948" }, "source": [ "#### 1a. Define search space and evaluation function" ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "code_folding": [], "collapsed": false, "executionStartTime": 1627652824829, "executionStopTime": 1627652824877, "hidden_ranges": [], "originalKey": "28f6cb76-828f-445d-bdda-ba057c87dcd0", "requestMsgId": "7495e7e2-1025-4292-b3aa-e953739cef3e" }, "outputs": [], "source": [ "noise_sd = 0.1\n", "param_names = [f\"x{i+1}\" for i in range(6)] # x1, x2, ..., x6\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", " }\n" ] }, { "cell_type": "markdown", "metadata": { "originalKey": "17a51543-298e-47d4-bcd9-33459fe1169e" }, "source": [ "#### 1b. Create Experiment" ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "code_folding": [], "collapsed": false, "executionStartTime": 1627654956712, "executionStopTime": 1627654956823, "hidden_ranges": [], "originalKey": "6fca889c-a4ff-42ef-a669-6eb8803de89c", "requestMsgId": "905eff52-e649-4bd5-abf0-ff69c1549852" }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:19:51] 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 2 decimal points.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:19:51] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x1. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:19:51] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x2. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:19:51] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x3. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:19:51] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x4. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:19:51] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x5. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:19:51] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x6. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:19:51] ax.modelbridge.dispatch_utils: Using GPEI (Bayesian optimization) since there are more continuous parameters than there are categories for the unordered categorical parameters.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:19:51] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+GPEI', steps=[Sobol for 6 trials, GPEI for subsequent trials]). Iterations after 6 will take longer to generate due to model-fitting.\n" ] } ], "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", " objective_name=\"hartmann6\",\n", " minimize=True,\n", " outcome_constraints=[\"l2norm <= 1.25\"]\n", ")" ] }, { "cell_type": "markdown", "metadata": { "code_folding": [], "hidden_ranges": [], "originalKey": "ab892f7c-4830-4c1d-b476-ec1078ec3faf", "showInput": false }, "source": [ "#### 1c. Run the optimization and fit a GP on all data" ] }, { "cell_type": "code", "execution_count": 4, "metadata": { "code_folding": [], "collapsed": false, "executionStartTime": 1627654642967, "executionStopTime": 1627654862819, "hidden_ranges": [], "originalKey": "7269a5ba-45c8-4acf-ac83-a5ea8a52d6c1", "requestMsgId": "c7a4dea8-fd6d-4e1a-84de-ad973ede0cd7" }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:19:51] ax.service.ax_client: Generated new trial 0 with parameters {'x1': 0.34, 'x2': 0.42, 'x3': 0.17, 'x4': 0.13, 'x5': 0.37, 'x6': 0.62}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:19:51] ax.service.ax_client: Completed trial 0 with data: {'hartmann6': (-1.58, 0.1), 'l2norm': (1.0, 0.1)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:19:51] ax.service.ax_client: Generated new trial 1 with parameters {'x1': 0.49, 'x2': 0.28, 'x3': 0.25, 'x4': 0.26, 'x5': 0.8, 'x6': 0.38}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:19:51] ax.service.ax_client: Completed trial 1 with data: {'hartmann6': (0.04, 0.1), 'l2norm': (1.18, 0.1)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:19:51] ax.service.ax_client: Generated new trial 2 with parameters {'x1': 0.03, 'x2': 0.53, 'x3': 0.54, 'x4': 0.57, 'x5': 0.74, 'x6': 0.67}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:19:51] ax.service.ax_client: Completed trial 2 with data: {'hartmann6': (-0.22, 0.1), 'l2norm': (1.31, 0.1)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:19:51] ax.service.ax_client: Generated new trial 3 with parameters {'x1': 0.82, 'x2': 0.16, 'x3': 0.75, 'x4': 0.81, 'x5': 0.02, 'x6': 0.75}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:19:51] ax.service.ax_client: Completed trial 3 with data: {'hartmann6': (-0.37, 0.1), 'l2norm': (1.77, 0.1)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:19:51] ax.service.ax_client: Generated new trial 4 with parameters {'x1': 0.11, 'x2': 0.03, 'x3': 0.7, 'x4': 0.93, 'x5': 0.5, 'x6': 0.68}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:19:51] ax.service.ax_client: Completed trial 4 with data: {'hartmann6': (-0.13, 0.1), 'l2norm': (1.29, 0.1)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:19:51] ax.service.ax_client: Generated new trial 5 with parameters {'x1': 0.15, 'x2': 0.19, 'x3': 0.97, 'x4': 0.9, 'x5': 0.57, 'x6': 0.3}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:19:51] ax.service.ax_client: Completed trial 5 with data: {'hartmann6': (-0.09, 0.1), 'l2norm': (1.47, 0.1)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:20:02] ax.service.ax_client: Generated new trial 6 with parameters {'x1': 0.33, 'x2': 0.44, 'x3': 0.15, 'x4': 0.1, 'x5': 0.26, 'x6': 0.66}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:20:02] ax.service.ax_client: Completed trial 6 with data: {'hartmann6': (-1.35, 0.1), 'l2norm': (0.83, 0.1)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:20:16] ax.service.ax_client: Generated new trial 7 with parameters {'x1': 0.3, 'x2': 0.45, 'x3': 0.14, 'x4': 0.09, 'x5': 0.42, 'x6': 0.72}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:20:16] ax.service.ax_client: Completed trial 7 with data: {'hartmann6': (-1.04, 0.1), 'l2norm': (1.01, 0.1)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:20:23] ax.service.ax_client: Generated new trial 8 with parameters {'x1': 0.36, 'x2': 0.39, 'x3': 0.21, 'x4': 0.18, 'x5': 0.3, 'x6': 0.56}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:20:23] ax.service.ax_client: Completed trial 8 with data: {'hartmann6': (-1.77, 0.1), 'l2norm': (0.91, 0.1)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:20:31] ax.service.ax_client: Generated new trial 9 with parameters {'x1': 0.39, 'x2': 0.35, 'x3': 0.2, 'x4': 0.12, 'x5': 0.31, 'x6': 0.47}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:20:31] ax.service.ax_client: Completed trial 9 with data: {'hartmann6': (-1.09, 0.1), 'l2norm': (0.86, 0.1)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:20:43] ax.service.ax_client: Generated new trial 10 with parameters {'x1': 0.36, 'x2': 0.41, 'x3': 0.23, 'x4': 0.26, 'x5': 0.28, 'x6': 0.6}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:20:43] ax.service.ax_client: Completed trial 10 with data: {'hartmann6': (-2.25, 0.1), 'l2norm': (0.94, 0.1)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:20:50] ax.service.ax_client: Generated new trial 11 with parameters {'x1': 0.36, 'x2': 0.44, 'x3': 0.22, 'x4': 0.33, 'x5': 0.25, 'x6': 0.66}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:20:50] ax.service.ax_client: Completed trial 11 with data: {'hartmann6': (-2.12, 0.1), 'l2norm': (0.9, 0.1)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:20:54] ax.service.ax_client: Generated new trial 12 with parameters {'x1': 0.3, 'x2': 0.44, 'x3': 0.31, 'x4': 0.28, 'x5': 0.26, 'x6': 0.62}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:20:54] ax.service.ax_client: Completed trial 12 with data: {'hartmann6': (-2.07, 0.1), 'l2norm': (1.09, 0.1)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:20:58] ax.service.ax_client: Generated new trial 13 with parameters {'x1': 0.29, 'x2': 0.42, 'x3': 0.15, 'x4': 0.31, 'x5': 0.27, 'x6': 0.59}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:20:58] ax.service.ax_client: Completed trial 13 with data: {'hartmann6': (-1.93, 0.1), 'l2norm': (0.71, 0.1)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:21:03] ax.service.ax_client: Generated new trial 14 with parameters {'x1': 0.43, 'x2': 0.48, 'x3': 0.26, 'x4': 0.28, 'x5': 0.28, 'x6': 0.62}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:21:03] ax.service.ax_client: Completed trial 14 with data: {'hartmann6': (-1.94, 0.1), 'l2norm': (0.89, 0.1)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:21:06] ax.service.ax_client: Generated new trial 15 with parameters {'x1': 0.36, 'x2': 0.35, 'x3': 0.26, 'x4': 0.28, 'x5': 0.26, 'x6': 0.66}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:21:06] ax.service.ax_client: Completed trial 15 with data: {'hartmann6': (-2.58, 0.1), 'l2norm': (0.98, 0.1)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:21:13] ax.service.ax_client: Generated new trial 16 with parameters {'x1': 0.41, 'x2': 0.28, 'x3': 0.27, 'x4': 0.28, 'x5': 0.24, 'x6': 0.7}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:21:13] ax.service.ax_client: Completed trial 16 with data: {'hartmann6': (-2.36, 0.1), 'l2norm': (1.01, 0.1)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:21:16] ax.service.ax_client: Generated new trial 17 with parameters {'x1': 0.37, 'x2': 0.32, 'x3': 0.28, 'x4': 0.3, 'x5': 0.33, 'x6': 0.69}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:21:16] ax.service.ax_client: Completed trial 17 with data: {'hartmann6': (-2.61, 0.1), 'l2norm': (1.19, 0.1)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:21:30] ax.service.ax_client: Generated new trial 18 with parameters {'x1': 0.4, 'x2': 0.31, 'x3': 0.29, 'x4': 0.33, 'x5': 0.3, 'x6': 0.63}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:21:30] ax.service.ax_client: Completed trial 18 with data: {'hartmann6': (-2.38, 0.1), 'l2norm': (1.01, 0.1)}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:21:37] ax.service.ax_client: Generated new trial 19 with parameters {'x1': 0.3, 'x2': 0.31, 'x3': 0.28, 'x4': 0.29, 'x5': 0.3, 'x6': 0.72}.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:21:37] ax.service.ax_client: Completed trial 19 with data: {'hartmann6': (-2.66, 0.1), 'l2norm': (1.04, 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(trial_index=trial_index, raw_data=noisy_hartmann_evaluation_function(parameters))" ] }, { "cell_type": "markdown", "metadata": { "originalKey": "72f4d3e7-fa04-43d0-8451-ded292e705df" }, "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, "metadata": { "code_folding": [], "collapsed": false, "executionStartTime": 1627654870209, "executionStopTime": 1627654871972, "hidden_ranges": [], "originalKey": "843df85c-965d-4a83-9fe1-696225d81c0f", "requestMsgId": "4a643541-867c-46b6-868d-64337920c2a3" }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:21:37] 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.8718082726668748, -0.8959870705692317, -0.9199811986290515, -0.9436224136205611, -0.9667325048047406, -0.9891252771509065, -1.0106089674790468, -1.0309890761159695, -1.0500715746495037, -1.067666426187928, -1.0835913296059596, -1.097675575477847, -1.1097638810287762, -1.1197200569168173, -1.1274303523036984, -1.1328063283116259, -1.135787124561226, -1.1363410088425712, -1.1344661345705793, -1.1301904717586133, -1.123570921123838, -1.1146916635217705, -1.1036618343126618, -1.0906126413947625, -1.0756940646015982, -1.0590712824065769, -1.0409209701092768, -1.0214276035346574, -1.0007798859354624, -0.9791673955632126, -0.9567775294025263, -0.9337927966143355, -0.910388494624224, -0.8867307823998749, -0.8629751497836613, -0.8392652689803914, -0.8157322044249402, -0.7924939500991607, -0.7696552586659638, -0.7473077242213629, -0.7255300796896033, -0.7043886705586915, -0.6839380684452848, -0.664221790587256, -0.645273094521466, -0.6271158206837577, -0.6097652592772932, -0.5932290213423044, -0.5775078974090174, -0.562596690342107 ], [ -0.9109933981260014, -0.9377186194670959, -0.9642970798292975, -0.9905417861970739, -1.016253368627447, -1.0412222116140963, -1.0652311171006188, -1.0880584898868813, -1.1094820093790112, -1.1292827210991796, -1.147249448718472, -1.1631833949638695, -1.1769027705933817, -1.1882472681708105, -1.1970821850707167, -1.2033020009651088, -1.2068332308401577, -1.2076364055733757, -1.2057070765086706, -1.2010757945877528, -1.1938070732004205, -1.183997401042983, -1.1717724212189373, -1.157283431071099, -1.1407033811442413, -1.1222225606684126, -1.102044152319956, -1.0803798233882014, -1.0574454971436578, -1.03345742050531, -1.0086286149720334, -0.9831657695034013, -0.9572666081951533, -0.9311177431483503, -0.9048930043259794, -0.8787522235032356, -0.8528404384743695, -0.8272874761493663, -0.8022078686387355, -0.7777010544246754, -0.7538518167855569, -0.7307309133286116, -0.7083958533772815, -0.6868917836834384, -0.6662524471704193, -0.6465011838932133, -0.6276519479128206, -0.6097103181576744, -0.5926744854657778, -0.576536201785296 ], [ -0.9510467601048962, -0.9804789250569085, -1.0098150618213884, -1.0388485460325674, -1.0673575382868679, -1.0951072301722873, -1.1218527362186743, -1.1473426358411636, -1.1713231374543773, -1.1935427990566274, -1.2137576974370317, -1.231736894555775, -1.247268008486346, -1.2601626623427182, -1.270261562957312, -1.277438956435458, -1.2816062234519159, -1.2827144143616578, -1.2807555810172289, -1.2757628336909885, -1.2678091302426235, -1.2570048818848534, -1.2434945270931548, -1.2274522757193511, -1.2090772554561597, -1.1885883019604258, -1.1662186245051354, -1.1422105552087012, -1.116810556670733, -1.090264625021338, -1.0628141869403516, -1.0346925530144486, -1.006121957700517, -0.977311189096619, -0.9484537899803803, -0.9197267950167677, -0.8912899572542262, -0.8632854094639922, -0.8358377019080058, -0.8090541571069905, -0.7830254835025267, -0.7578265929891903, -0.7335175716187378, -0.7101447578998212, -0.6877418886589509, -0.6663312780887298, -0.6459250011537211, -0.6265260577806738, -0.6081294991102416, -0.5907235014593802 ], [ -0.9915932508095668, -1.023878080952278, -1.0561320444030775, -1.0881282998051724, -1.11962149435214, -1.1503500728937464, -1.1800393620861753, -1.2084054537497297, -1.2351598747073167, -1.260014984441484, -1.282689988504565, -1.302917397882037, -1.3204497072851757, -1.3350660150344096, -1.3465782711816252, -1.3548368261559556, -1.3597349653718316, -1.361212158721361, -1.3592558261468708, -1.3539015151539464, -1.345231492558501, -1.3333718579471587, -1.3184883774595515, -1.3007813035929372, -1.2804794844455416, -1.2578340739590275, -1.2331121374152847, -1.2065904104535017, -1.1785494227464863, -1.1492681460510432, -1.1190192759211597, -1.0880652104730033, -1.0566547501755874, -1.025020510481989, -0.9933770141912086, -0.9619194122436083, -0.930822769452909, -0.9002418446018546, -0.8703112914866834, -0.8411462080230698, -0.8128429636184737, -0.7854802399493716, -0.7591202264283211, -0.7338099184772363, -0.7095824738128638, -0.6864585889664964, -0.6644478649578759, -0.643550137253618, -0.6237567507576083, -0.605051765550069 ], [ -1.032188888089225, -1.067450191941587, -1.1027615965823836, -1.1378758484668228, -1.1725234147159331, -1.2064147826521388, -1.2392436759796985, -1.2706912402630408, -1.300431209265951, -1.328136009596874, -1.3534836949954683, -1.3761655266277644, -1.3958939376064403, -1.4124105469181472, -1.4254938304338067, -1.4349660259205184, -1.4406988548896953, -1.4426176927291852, -1.440703909568208, -1.434995229722809, -1.4255841022531694, -1.412614219627329, -1.396275446132654, -1.3767975073152983, -1.3544428386927165, -1.3294989968677897, -1.3022710062117269, -1.273073960345056, -1.242226131112966, -1.2100427682668218, -1.1768307074992936, -1.1428838469191733, -1.108479504344984, -1.0738756302772632, -1.0393088235120596, -1.0049930770542428, -0.9711191700550765, -0.9378546156670576, -0.905344073752883, -0.8737101401644111, -0.8430544297990124, -0.8134588779559258, -0.7849871929082003, -0.7576864014724747, -0.731588438229865, -0.7067117375793552, -0.6830627957492832, -0.6606376771002898, -0.6394234454437033, -0.6193995066469566 ], [ -1.0723210418502902, -1.1106526207411844, -1.1491320468282078, -1.1874919444022358, -1.2254384301410581, -1.2626533076702062, -1.298797328267947, -1.3335146086859633, -1.3664382535551072, -1.397197168432677, -1.4254239700871763, -1.450763805613437, -1.4728837874950997, -1.4914826479957628, -1.5063001274226209, -1.5171255535466568, -1.5238050600794262, -1.5262469423648324, -1.5244247611439263, -1.5183779711233731, -1.508210048770222, -1.4940842937986207, -1.4762176507955622, -1.4548730178705274, -1.430350567029227, -1.4029785985496874, -1.373104401623713, -1.3410855133608321, -1.3072816749691294, -1.2720476908588707, -1.2357273121275043, -1.198648194712844, -1.1611179257595454, -1.1234210689359216, -1.085817149152415, -1.0485394775914414, -1.011794707306985, -0.9757630061063788, -0.9405987353402917, -0.9064315291314134, -0.873367677197232, -0.8414917247044431, -0.8108682136731635, -0.7815435016628547, -0.753547604327003, -0.7268960185788169, -0.7015914923488805, -0.6776257151210224, -0.6549809105641239, -0.6336313186507895 ], [ -1.1114117942283706, -1.1528685501792528, -1.1945880353619314, -1.2362836114426803, -1.277637487397964, -1.3183026914995986, -1.3579062596920997, -1.3960537803128688, -1.4323353922565898, -1.4663332673679694, -1.4976305158828593, -1.5258213369724658, -1.5505221003804417, -1.5713829013895135, -1.5880989982457163, -1.6004214426507415, -1.608166175946049, -1.611220907803001, -1.6095492301443388, -1.603191637478487, -1.5922633960948498, -1.5769494838096858, -1.5574970612831867, -1.5342060984869637, -1.5074188496656713, -1.4775088533444505, -1.4448700526267748, -1.4099065130729307, -1.3730230859629882, -1.334617241585485, -1.295072190390191, -1.254751323334559, -1.2139939366535784, -1.1731121587503979, -1.1323889653181118, -1.0920771503752567, -1.052399112957949, -1.0135473193225422, -0.9756853065198646, -0.9389491032577715, -0.9034489565374944, -0.869271266399908, -0.8364806453023892, -0.8051220324690664, -0.7752228065363418, -0.7467948516471663, -0.7198365426669953, -0.6943346243423042, -0.6702659670163186, -0.647599188025803 ], [ -1.1488251647305412, -1.1934137363588002, -1.2383965595283548, -1.2834692217859187, -1.3282911796171477, -1.3724873720121493, -1.4156511916963004, -1.4573490133623435, -1.4971264405367315, -1.5345163658368004, -1.5690488380469694, -1.6002625913767938, -1.6277179207007284, -1.6510103930911946, -1.66978469265733, -1.6837477353966532, -1.6926801032431062, -1.69644486971102, -1.694993046472215, -1.6883651654905028, -1.6766888846629697, -1.6601728976841388, -1.6390977645358638, -1.61380449889588, -1.5846818299309176, -1.5521530127489738, -1.516662932570845, -1.4786660764722237, -1.4386157693817212, -1.3969549106302157, -1.3541083143692878, -1.3104766540642718, -1.26643193607767, -1.2223143763092048, -1.1784305226982137, -1.1350524510168547, -1.0924178580668185, -1.0507308818861314, -1.010163490119958, -0.9708572930485257, -0.9329256551042682, -0.896455996686106, -0.8615121957023335, -0.8281370148696631, -0.7963544959418396, -0.7661722755100306, -0.7375837887275342, -0.7105703372855714, -0.6851030062967779, -0.6611444215634179 ], [ -1.183878859750273, -1.2315482852238788, -1.2797585398186189, -1.3281895721502153, -1.3764800160687911, -1.4242283000300566, -1.470995234751136, -1.5163083464504852, -1.5596681962119476, -1.6005568650892081, -1.6384486800259008, -1.6728231002751495, -1.7031794762187578, -1.72905314105841, -1.7500320246693586, -1.7657727300594832, -1.7760148445870032, -1.7805922339181968, -1.7794402347797815, -1.7725980298328847, -1.7602060024408421, -1.7424984253729263, -1.719792311366706, -1.6924735501753247, -1.6609815446131477, -1.62579346859547, -1.5874090696133867, -1.5463366944316677, -1.5030809793022477, -1.4581324413040277, -1.4119590450581156, -1.364999698653501, -1.3176595492866672, -1.2703068965369613, -1.2232715129851506, -1.1768441521907769, -1.1312770277919169, -1.0867850604244493, -1.0435477078431767, -1.0017112153939298, -0.961391146841857, -0.9226750780893136, -0.8856253575682034, -0.8502818564848206, -0.8166646493251806, -0.7847765799916494, -0.7546056816722088, -0.7261274291677614, -0.6993068111007785, -0.6741002164081527 ], [ -1.2158610228135585, -1.2664941173290303, -1.3178267949664573, -1.3695261065434299, -1.4212125708560222, -1.4724606371895446, -1.5228007138755888, -1.5717231030385923, -1.6186841724231347, -1.6631150486257658, -1.704433017744445, -1.7420556553781854, -1.7754174685725868, -1.8039885192868432, -1.8272941334028823, -1.844934430241398, -1.8566021149845826, -1.8620968613791695, -1.8613347670480052, -1.8543518257868978, -1.8413010695224319, -1.82244382521072, -1.7981362036991926, -1.768812333559197, -1.7349659333763188, -1.697131648427432, -1.6558672755370987, -1.611737663181489, -1.5653007642471781, -1.5170960635689674, -1.4676354077222313, -1.4173961264561936, -1.3668162452941042, -1.3162915376398856, -1.2661741429543096, -1.2167724769776807, -1.1683521737255196, -1.1211378216305503, -1.0753152836236552, -1.0310344201461439, -0.9884120629988273, -0.9475351152182881, -0.9084636770314092, -0.8712341199766896, -0.8358620503731162, -0.8023451195276389, -0.7706656515799569, -0.7407930709339688, -0.7126861200955737, -0.6862948657101546 ], [ -1.244052139889606, -1.2974584537072267, -1.3517309854136226, -1.4065271238039525, -1.461452682482214, -1.5160615929839567, -1.5698572083471183, -1.6222956295592856, -1.6727914819101999, -1.7207265453993488, -1.7654615634107458, -1.8063513947106946, -1.8427634148222378, -1.874098702828838, -1.8998150795524553, -1.919450541781781, -1.9326451654154844, -1.939159278563274, -1.9388857989160737, -1.9318551897220588, -1.9182324599670983, -1.8983067693122229, -1.8724751514897788, -1.841222385003115, -1.8050990792989474, -1.764699751981415, -1.7206422365731573, -1.6735493146329845, -1.6240330758419985, -1.5726821977216174, -1.52005210584962, -1.4666578190118575, -1.4129691896913905, -1.359408204680233, -1.3063479999115268, -1.2541132563059556, -1.202981670423705, -1.1531862283090313, -1.1049180484190735, -1.0583295968330382, -1.0135381131086405, -0.9706291170983163, -0.9296598952469904, -0.8906628892411182, -0.853648930485122, -0.8186102810109376, -0.7855234554209642, -0.7543518096963684, -0.7250478915448683, -0.6975555537707366 ], [ -1.2677517787186412, -1.3236631318334644, -1.3806095198979131, -1.4382422165374862, -1.49615627834936, -1.553889385078608, -1.6109222851329896, -1.6666813241362968, -1.7205435775235403, -1.771845117622205, -1.819892897208808, -1.863980594625586, -1.9034085061732466, -1.9375071602606497, -1.9656637556246195, -1.9873498289384228, -2.0021478467326688, -2.009773898473684, -2.0100936145278725, -2.0031290702347992, -1.9890557558907371, -1.9681903221836707, -1.9409711592317045, -1.9079345051402807, -1.86968870808061, -1.8268887878121522, -1.780212852909266, -1.730341374189413, -1.677939839465499, -1.623644936676172, -1.5680541383604027, -1.511718384499331, -1.4551374662597758, -1.398757679000031, -1.3429713190945698, -1.2881176296969938, -1.2344848439029525, -1.1823130221021732, -1.1317974287002674, -1.0830922389519093, -1.0363144078453876, -0.9915475691642704, -0.9488458639234684, -0.908237623557657, -0.8697288549305429, -0.8333064919169808, -0.7989413924937238, -0.7665910714529605, -0.7362021674881549, -0.7077126499132342 ], [ -1.2863092242299214, -1.3443788458643355, -1.4036476043161252, -1.4637642743972674, -1.5243173970105004, -1.5848332388909991, -1.6447753035765444, -1.7035459233623087, -1.7604905361548924, -1.8149052989180274, -1.8660486838566572, -1.9131576067716496, -1.9554684013225792, -1.9922425269219644, -2.0227962433404376, -2.046532608662549, -2.0629731607896167, -2.071785777274662, -2.0728048827650296, -2.066040822071603, -2.0516769671121584, -2.0300554576091088, -2.0016543693838087, -1.967059829067526, -1.9269362872026807, -1.8819974423513073, -1.8329795852041721, -1.7806184856503506, -1.7256303763661345, -1.6686971232263506, -1.6104553445255858, -1.5514890456735428, -1.4923252474229654, -1.433432070539489, -1.3752187690993052, -1.318037257112747, -1.2621847350545192, -1.2079070857769496, -1.1554027685516293, -1.1048269933400157, -1.0562960039664244, -1.009891338607384, -0.9656639693127202, -0.9236382497458111, -0.8838156226652052, -0.8461780565643272, -0.810691195000811, -0.7773072130849451, -0.7459673838948025, -0.71660436371379 ], [ -1.2991563649285802, -1.3589625485346128, -1.4201195861849272, -1.4822771730616664, -1.5450215724104972, -1.6078727347288633, -1.6702828732895936, -1.7316370600893696, -1.7912565100727378, -1.848405309444915, -1.9023013882543827, -1.952132495280797, -1.9970777445822299, -2.0363348939362664, -2.0691528127295373, -2.0948675638693843, -2.112939227759284, -2.122985303975918, -2.1248057839151153, -2.1183955201803193, -2.103941738033732, -2.0818077982667766, -2.0525069386754886, -2.016670450723087, -1.975014043328973, -1.928305175559841, -1.8773333570233433, -1.822884701811436, -1.7657213307971946, -1.7065656408787526, -1.646089068965023, -1.5849047690163134, -1.5235635467431436, -1.462552407985732, -1.4022951338216039, -1.343154372071176, -1.28543481577261, -1.2293871161970034, -1.1752122472328062, -1.12306609811891, -1.0730641225136908, -1.025285914377814, -0.9797796160317729, -0.9365660920147754, -0.8956428249835722, -0.8569875077357584, -0.8205613193131057, -0.7863118837276426, -0.7541759177514941, -0.7240815799280792 ], [ -1.305840486084621, -1.3668953648099813, -1.4294326337242087, -1.4931058870172287, -1.5575030492261823, -1.622142763335494, -1.6864721145720347, -1.7498662688351767, -1.811630733424289, -1.8710070728791213, -1.927183007782101, -1.9793078440095577, -2.0265140548084366, -2.0679454738308904, -2.102791845459128, -2.130328332813525, -2.1499570181945966, -2.161245697456732, -2.1639580179494753, -2.1580692741945464, -2.1437647846937744, -2.121422081450816, -2.091581628499529, -2.05491146669212, -2.01216999466386, -1.9641699382351838, -1.9117457891147922, -1.8557261979806858, -1.7969119545225936, -1.7360594829161533, -1.6738693335833295, -1.6109789390487113, -1.5479588505803408, -1.4853117138552852, -1.4234733272548183, -1.362815226111933, -1.303648334498574, -1.2462273154993562, -1.190755328598845, -1.1373889684674445, -1.0862432138749096, -1.0373962599622413, -0.990894143044402, -0.9467550958217479, -0.9049735935423774, -0.8655240693243671, -0.8283642904109229, -0.7934383973510928, -0.7606796156113396, -0.7300126544619223 ], [ -1.306054076090819, -1.3678176238252944, -1.4311677966649483, -1.495764459090502, -1.561200604475322, -1.6269981830452933, -1.6926051381802365, -1.7573942265713602, -1.820664344045707, -1.8816452336301068, -1.9395065921118158, -1.9933726710046418, -2.042343412130443, -2.0855228556477283, -2.1220548688074876, -2.1511650331698906, -2.172205758836772, -2.1846995926714845, -2.188373967089528, -2.1831805691184423, -2.169295298233516, -2.147099888622977, -2.1171505589384307, -2.080139852437838, -2.0368563730852998, -1.9881458438624595, -1.9348760870839785, -1.8779075856371017, -1.8180702665479829, -1.7561463403344253, -1.692858545365546, -1.6288629381503081, -1.5647453417789825, -1.501020632440337, -1.4381341527678098, -1.3764646591589136, -1.3163283222983555, -1.2579833991893976, -1.201635279217347, -1.1474416766461746, -1.0955177989841614, -1.0459413666411965, -0.9987573959974771, -0.9539826869985688, -0.9116099790591072, -0.871611756560778, -0.8339436985424652, -0.7985477771097035, -0.7653550163052812, -0.7342879282340479 ], [ -1.2996585141745884, -1.3615572279929775, -1.4251139017533436, -1.4899963855085538, -1.5558055033738032, -1.622070536608537, -1.6882457999372154, -1.753708868435166, -1.8177611670379026, -1.8796318078179828, -1.9384857322285058, -1.9934373442974933, -2.0435708286879786, -2.0879681110561172, -2.125744770438782, -2.156092982038871, -2.1783286788294194, -2.1919377890231746, -2.196614395253103, -2.192283351203695, -2.179102608371717, -2.157445790182208, -2.1278702637376563, -2.0910772629611163, -2.0478694152367893, -1.9991096416820269, -1.9456843266110204, -1.888472511813759, -1.8283217414713224, -1.7660303244820605, -1.7023352812062025, -1.637905036854348, -1.5733359073048172, -1.509151505624715, -1.4458043203648046, -1.3836788467568584, -1.3230957730501536, -1.2643168298926097, -1.2075499994891015, -1.1529548542363055, -1.1006478535540194, -1.050707474831218, -1.003179091788161, -0.9580795428906055, -0.9154013552382106, -0.8751166068363257, -0.8371804233788597, -0.8015341154654222, -0.7681079692407332, -0.7368237083441419 ], [ -1.2866987209842096, -1.3481477434398614, -1.4112898131125018, -1.4758019075233193, -1.5412948261590662, -1.6073085651200227, -1.6733086967665927, -1.7386842832877265, -1.8027480065540002, -1.864739374402587, -1.9238320507181876, -1.9791465157660406, -2.0297693186970664, -2.07478000718309, -2.1132862261643828, -2.1444662706056907, -2.1676164626984273, -2.1821983302652663, -2.187878482203675, -2.1845536597620625, -2.1723558772779357, -2.1516374193211165, -2.1229401308270943, -2.086955427047219, -2.0444809364897134, -1.9963783303938178, -1.9435355050257046, -1.8868349374694715, -1.827128844503934, -1.7652209044776253, -1.7018537972237193, -1.6377016067195715, -1.5733661112851705, -1.5093760682486308, -1.4461887248415544, -1.3841929203930916, -1.3237132695013065, -1.265015024727392, -1.2083093088408445, -1.1537584816820423, -1.1014814672740059, -1.0515589151255675, -1.0040381078281688, -0.9589375569106263, -0.9162512520499713, -0.8759525464449472, -0.8379976745119934, -0.8023289079359839, -0.7688773632119049, -0.7375654787289189 ], [ -1.2674065850405238, -1.327833423715482, -1.3899515088171335, -1.453447703019179, -1.5179444602155747, -1.5829953241030357, -1.6480813772149383, -1.712609134818576, -1.7759105211428627, -1.8372457338571937, -1.8958099855529142, -1.9507452766245539, -2.0011584339199526, -2.046146519744842, -2.084830190542142, -2.1163944563737305, -2.140134461768287, -2.1555016109183742, -2.1621433736422278, -2.159929652484815, -2.1489606196693343, -2.1295550664236322, -2.1022226068108134, -2.067625536928858, -2.0265363697110583, -1.9797959661872824, -1.9282756741295484, -1.8728454090072382, -1.814348383452727, -1.7535823185121264, -1.6912864557882088, -1.6281334608419773, -1.5647252686394784, -1.5015919883529347, -1.4391930994533515, -1.3779202987318377, -1.3181014800862312, -1.2600054372945138, -1.2038469720130234, -1.1497921652487366, -1.097963632203431, -1.0484456297243552, -1.0012889246544434, -0.9565153619889988, -0.9141220954919825, -0.8740854616247086, -0.8363644913837649, -0.8009040648274317, -0.7676377204200068, -0.7364901364350461 ], [ -1.2421921764010588, -1.3010598250051344, -1.3615821641721164, -1.4234565527201641, -1.4863185271820742, -1.5497376289645735, -1.6132141586169046, -1.6761773134817748, -1.7379852903341506, -1.797928081682057, -1.8552338549420104, -1.909079952673598, -1.9586096325252988, -2.002955569182619, -2.0412706969032666, -2.0727659800021656, -2.0967530553490046, -2.112687608962695, -2.120207537105337, -2.1191594528170885, -2.109608689009559, -2.09183132636783, -2.0662905303145815, -2.033602049881807, -1.9944944742592825, -1.949769155780548, -1.9002633457923512, -1.846818637711928, -1.7902555868574093, -1.7313544991815308, -1.6708418463785952, -1.609381503920519, -1.5475699348295864, -1.4859344793549527, -1.4249340038073535, -1.3649612752648728, -1.3063465425608622, -1.2493619078558715, -1.1942261631783693, -1.1411098419065613, -1.0901402972016605, -1.041406669510266, -0.9949646452126211, -0.9508409400026284, -0.9090374651557884, -0.8695351537677464, -0.8322974384158129, -0.7972733824086933, -0.7644004745859888, -0.7336071031140722 ], [ -1.2116232407819314, -1.2684505108679769, -1.3268657159203117, -1.3865773877578795, -1.4472355205391587, -1.5084278845806518, -1.569677264479675, -1.630440036600669, -1.6901066037891732, -1.748004322937824, -1.803403687232996, -1.8555286409739813, -1.9035719680981418, -1.946716621332335, -1.984163505586879, -2.015165416850803, -2.0390654535492696, -2.055336421579992, -2.063616147518094, -2.063733086936329, -2.055717791485684, -2.0397984750561236, -2.016382064950374, -1.986024533096749, -1.9493953210701536, -1.9072403974101797, -1.8603474399823745, -1.8095153621129114, -1.7555292555399038, -1.699140962809856, -1.6410549362443496, -1.5819187397312435, -1.5223174314254098, -1.4627710630685626, -1.4037345936009205, -1.3455996060629953, -1.2886973159667248, -1.2333024544131874, -1.1796376944849292, -1.1278783627635685, -1.0781572391603973, -1.0305692985444048, -0.9851762882607118, -0.9420110679895723, -0.9010816638622559, -0.8623750085389478, -0.8258603541128007, -0.7914923561185647, -0.7592138353322924, -0.728958230061045 ], [ -1.1763949485627812, -1.230772208056248, -1.2866467296975947, -1.3437390862297995, -1.4017151619867165, -1.4601830532692737, -1.518690895628889, -1.5767259883231934, -1.6337156645699729, -1.689030442028425, -1.7419900761091456, -1.7918732167686287, -1.837931408969515, -1.8794081184649285, -1.9155631994443656, -1.9457025954978482, -1.9692119616707693, -1.9855914114528854, -1.9944872065852925, -1.995715658342252, -1.9892753252061888, -1.975345647115903, -1.9542726947705324, -1.9265448200678152, -1.8927620967720284, -1.8536034864825333, -1.8097949738651462, -1.7620809088683627, -1.7111998019312407, -1.657865017991234, -1.6027502579717672, -1.546479381024667, -1.4896199564019243, -1.4326798864669903, -1.3761064667660499, -1.320287312009731, -1.265552656074999, -1.2121786161424675, -1.1603910882896873, -1.1103700106387921, -1.06225378925451, -1.016143731490073, -0.9721083721480686, -0.9301876107124917, -0.8903966041342278, -0.8527293802819393, -0.8171621531661043, -0.783656333245441, -0.7521612352489947, -0.7226164925967054 ], [ -1.1372930430045125, -1.1888922480788469, -1.2418812525852037, -1.2959937380518018, -1.350912961706609, -1.4062692820074258, -1.4616386044767034, -1.516542069704114, -1.5704473602576197, -1.6227720595141966, -1.6728895497342764, -1.720137982048477, -1.7638328707270232, -1.803283818819293, -1.8378156912268067, -1.8667940880077698, -1.889654121765952, -1.905930320757105, -1.9152843282723304, -1.9175265382087687, -1.912628333635614, -1.9007231164683192, -1.8820962921752207, -1.8571661266206356, -1.826458453565983, -1.7905784650561432, -1.7501824363263487, -1.7059515168196229, -1.6585689259176575, -1.6087011952561734, -1.556983571755003, -1.5040093438671405, -1.4503226515039116, -1.396414249888477, -1.3427196828534607, -1.2896193522458614, -1.2374400255296685, -1.1864573888852001, -1.1368993191104297, -1.0889496093628062, -1.0427519387603486, -0.9984139232194291, -0.9560111247109678, -0.9155909289305051, -0.8771762279884138, -0.8407688659851762, -0.8063528220687524, -0.7738971185325331, -0.743358451371201, -0.7146835480448366 ], [ -1.0951541486043102, -1.1437328861618739, -1.193584263991044, -1.244456245584616, -1.296050885103079, -1.348022460785326, -1.3999765030392688, -1.4514699886327105, -1.5020130072444857, -1.551072239478531, -1.5980766149362782, -1.6424255423340195, -1.6835001118398267, -1.720677635746873, -1.7533497553378699, -1.7809439976341501, -1.8029480209774804, -1.8189348750480636, -1.8285866890722893, -1.831713734590529, -1.8282661257680244, -1.8183365032407326, -1.8021535308934387, -1.7800674329111545, -1.7525297438994007, -1.7200698046850136, -1.6832703897985009, -1.6427443889071602, -1.5991138782630738, -1.552992351572589, -1.5049704108547861, -1.455604874242655, -1.4054110344602995, -1.3548576779685504, -1.3043644247938846, -1.2543009488239352, -1.2049876684101728, -1.156697543152014, -1.1096586650093436, -1.0640573842570027, -1.0200417597077234, -0.9777251663021735, -0.9371899309365167, -0.8984908992870079, -0.8616588627913305, -0.8267037964330509, -0.7936178751870431, -0.7623782505518149, -0.7329495791075182, -0.7052863030235684 ], [ -1.0508269677146678, -1.0962270040068276, -1.1427791746198288, -1.1902468504050148, -1.238352090119904, -1.2867743211854583, -1.3351498675163886, -1.3830725464419875, -1.4300955765746945, -1.4757350555305053, -1.5194752810131418, -1.5607762005732309, -1.5990832784775864, -1.6338400411251914, -1.664503455598587, -1.6905620310210487, -1.7115560418523919, -1.727098584952994, -1.736895494058676, -1.7407617586165476, -1.7386322736201338, -1.730565491557134, -1.716739623543618, -1.697442109315825, -1.6730538695621482, -1.644030243541413, -1.6108805235771908, -1.5741477372043984, -1.5343899278864939, -1.4921637540802262, -1.4480108355858086, -1.4024469627896499, -1.3559540592324029, -1.3089746444543626, -1.2619084672616439, -1.2151109520884997, -1.1688931070464652, -1.1235225685977026, -1.079225494942504, -1.0361890615158227, -0.9945643531596932, -0.9544694860393972, -0.9159928268777032, -0.8791962070699987, -0.8441180546885468, -0.8107763885494517, -0.7791716358138517, -0.7492892484978191, -0.7211021052520643, -0.6945726932964225 ], [ -1.005137486657762, -1.0472788855066089, -1.0904537251470505, -1.134441705031909, -1.1789857343999057, -1.2237910734253865, -1.2685252551587702, -1.312818965360088, -1.3562680675139536, -1.3984369685137372, -1.4388635279111504, -1.4770657202952098, -1.512550260641929, -1.5448233772067388, -1.5734038257810912, -1.597838026935003, -1.6177168337499108, -1.6326929320013432, -1.642497376518711, -1.646953485278433, -1.6459864121837093, -1.6396272184903693, -1.6280110204614595, -1.6113695860847241, -1.5900193892754777, -1.5643464998024759, -1.5347897846837533, -1.501823780380657, -1.465942345463347, -1.4276438960027702, -1.3874187192218081, -1.345738593042428, -1.3030487290305475, -1.2597619076816267, -1.2162545820970099, -1.1728646782430228, -1.129890805448403, -1.0875925989124395, -1.0461919380758262, -1.00587481421673, -0.9667936529840874, -0.9290699297481669, -0.892796945798187, -0.8580426605551656, -0.824852498673949, -0.793252071128483, -0.7632497662776488, -0.7348391807861967, -0.7080013714722687, -0.6827069180290044 ], [ -0.9588603397649403, -0.9977324951784508, -1.0375250070394875, -1.0780345042716457, -1.1190251410820717, -1.1602281022036185, -1.2013418110191936, -1.242032979717226, -1.2819386456018986, -1.3206693418691, -1.357813555623759, -1.39294362984544, -1.4256232629056782, -1.4554167318751519, -1.4818998837312354, -1.5046727651548952, -1.5233734774343675, -1.53769247814877, -1.5473862016597968, -1.5522886703204217, -1.5523198242791731, -1.5474896277195114, -1.537897531190058, -1.5237274432349268, -1.5052388548948554, -1.482755084673445, -1.456649748959522, -1.4273325388510267, -1.3952352448534322, -1.3607987655115747, -1.3244616085288832, -1.2866501768449567, -1.2477709486961053, -1.2082045194800264, -1.1683013749576623, -1.1283792050636332, -1.0887215379004758, -1.0495774664407886, -1.0111622488951397, -0.9736585817605254, -0.9372183677831408, -0.9019648262610767, -0.8679948181345252, -0.8353812818263152, -0.8041756970554179, -0.7744105125117426, -0.7461014892853324, -0.7192499253905891, -0.6938447378184334, -0.6698643875371345 ], [ -0.9126973995682823, -0.9483483363139529, -0.9848146384399898, -1.0219100887108103, -1.0594200098276554, -1.0971010417824312, -1.1346815403270336, -1.1718627055298294, -1.2083205520608136, -1.2437088355111108, -1.2776630520373615, -1.3098056299424878, -1.3397524244808918, -1.367120596705105, -1.391537881953396, -1.412653112105253, -1.4301476419134884, -1.4437470702455106, -1.4532324067599192, -1.4584496978690733, -1.459317159217385, -1.4558290793596145, -1.4480561139988368, -1.4361419959565405, -1.4202970541891153, -1.4007892039881582, -1.3779332158627373, -1.352079098840495, -1.3236003687655868, -1.2928828441754388, -1.2603144522835519, -1.226276362101441, -1.1911356104407482, -1.1552392611499922, -1.118910043041275, -1.082443346889333, -1.0461054228318991, -1.0101326012746692, -0.974731357647425, -0.9400790492465941, -0.9063251669591801, -0.8735929628308242, -0.841981333990359, -0.8115668628488765, -0.7824059317772456, -0.7545368470680679, -0.7279819216356881, -0.7027494785314844, -0.6788357480115211, -0.6562266397283533 ], [ -0.8672636964507516, -0.8997888056252111, -0.9330337431233446, -0.966829295054163, -1.000981445255205, -1.035271345462474, -1.0694558272458992, -1.1032685416296513, -1.1364218141173168, -1.1686093047775712, -1.199509564597371, -1.2287905776877084, -1.2561153675220795, -1.281148712993759, -1.3035649525972288, -1.323056741248025, -1.3393444651375048, -1.3521858373175524, -1.3613850335433975, -1.3668006367380816, -1.3683516799205766, -1.3660212213848644, -1.3598571258587224, -1.3499700094775438, -1.3365285777364118, -1.3197528002177692, -1.2999055011943195, -1.277282998177165, -1.2522054015197022, -1.2250071150051303, -1.19602797038187, -1.165605307743468, -1.1340671947476255, -1.1017268723041447, -1.0688784288075495, -1.0357936412144662, -1.0027198781902502, -0.9698789353228568, -0.9374666614296351, -0.9056532346295063, -0.8745839538534372, -0.8443804231101386, -0.815142019997844, -0.7869475550965044, -0.7598570438978266, -0.7339135271212133, -0.7091448881973007, -0.685565628163946, -0.6631785681463176, -0.6419764580157173 ], [ -0.8230800550960894, -0.8526111478981591, -0.8827764725478938, -0.9134233368421835, -0.9443775248561141, -0.9754433965621904, -1.0064044561859438, -1.037024457860569, -1.067049118520469, -1.096208509161711, -1.1242201954630886, -1.1507931942885459, -1.175632798197586, -1.1984462877982556, -1.2189494931154141, -1.2368740752029315, -1.2519752819537016, -1.2640398041323648, -1.2728932474420398, -1.2784066764013522, -1.2805017006443289, -1.2791536704941011, -1.2743927113675937, -1.2663025248017477, -1.2550170816435695, -1.2407154997861758, -1.2236155158916557, -1.2039660211641245, -1.1820391384678834, -1.1581222813893712, -1.1325105681213823, -1.1054998780791494, -1.0773807494573444, -1.0484332313030373, -1.0189227305697295, -0.9890968362878361, -0.9591830601194655, -0.9293874040752699, -0.8998936499713673, -0.8708632588068195, -0.8424357691697084, -0.8147295898079313, -0.7878430907707882, -0.7618559085728883, -0.7368303925550702, -0.7128131312381489, -0.689836508464285, -0.6679202491797843, -0.647072923665365, -0.627293386806815 ], [ -0.7805714051078443, -0.8072666704345901, -0.8345203744492583, -0.8621956003890578, -0.8901368100650754, -0.9181700250944674, -0.9461034118840871, -0.9737283257296467, -1.0008208703313088, -1.0271440292771827, -1.0524504241979478, -1.0764857475687188, -1.0989929022304241, -1.1197168493490808, -1.1384101170747605, -1.1548388521829813, -1.1687892111372493, -1.1800737975838835, -1.1885377788444675, -1.1940642746390895, -1.1965786220914736, -1.196051186287593, -1.1924984968093448, -1.1859826292479163, -1.176608894037462, -1.1645220223185422, -1.149901135270851, -1.1329538421505376, -1.113909832515811, -1.0930143142900022, -1.0705216091223013, -1.0466891591848049, -1.0217721342232136, -0.9960187621807489, -0.9696664468472365, -0.942938685353491, -0.9160427585603428, -0.8891681385719541, -0.862485538795435, -0.8361465216625552, -0.8102835755978867, -0.7850105743624519, -0.7604235369970465, -0.7366016139520324, -0.713608233598313, -0.6914923523920439, -0.6702897609546744, -0.6500244068506097, -0.6307097026599952, -0.6123497949248652 ], [ -0.7400695454274773, -0.7641047381690295, -0.7886318364399748, -0.8135287612603654, -0.8386573579180433, -0.8638636242110662, -0.8889782857198545, -0.913817763173282, -0.9381855773507776, -0.9618742362092317, -0.9846676456266203, -1.0063440770165724, -1.0266797090188673, -1.0454527332567172, -1.0624479735057373, -1.077461913841559, -1.0903079687354476, -1.1008217654626113, -1.1088661587185151, -1.114335671578426, -1.1171600651211382, -1.1173067839256567, -1.1147821013745522, -1.1096308861030078, -1.101935014688081, -1.0918105518048367, -1.0794038966582082, -1.0648871469570285, -1.0484529568885559, -1.0303091650976501, -1.0106734469247411, -0.9897682080418165, -0.9678158905413251, -0.9450348134038601, -0.9216356219099208, -0.8978183783687306, -0.8737702914945723, -0.8496640546318135, -0.8256567436583121, -0.8018892130234226, -0.7784859219132452, -0.7555551207780599, -0.7331893302320532, -0.7114660485894941, -0.690448630143513, -0.6701872830071048, -0.6507201423716331, -0.6320743819947703, -0.6142673333307416, -0.5973075877846211 ], [ -0.7018191489500243, -0.7233801381089402, -0.7453749823068497, -0.7676953802302198, -0.790219172916455, -0.8128105947811742, -0.8353208226271295, -0.8575888594211833, -0.8794427893908255, -0.9007014393403145, -0.9211764767762997, -0.9406749667110216, -0.9590023938175947, -0.9759661330796761, -0.9913793193215887, -1.0050650250327553, -1.0168606103052487, -1.0266220647123019, -1.034228126537291, -1.0395839478529485, -1.0426240802950208, -1.0433145877643448, -1.0416541458833048, -1.0376740570033993, -1.0314371847846444, -1.0230358844547955, -1.0125890658836658, -1.0002385711725632, -0.9861450740213407, -0.9704837148194099, -0.95343967546094, -0.9352038749734859, -0.9159689355023446, -0.8959255323230846, -0.8752592051389831, -0.8541476738871915, -0.8327586725993714, -0.8112482906076209, -0.7897597918727302, -0.7684228702039998, -0.7473532900443632, -0.7266528585281012, -0.7064096738364972, -0.68669859666334, -0.6675818951240727, -0.6491100180766718, -0.6313224570647874, -0.6142486625533873, -0.5979089855158899, -0.5823156205476624 ], [ -0.6659859135332359, -0.6852625834656846, -0.7049226553901117, -0.7248704821091181, -0.7449984822492371, -0.7651873975705435, -0.785306805985517, -0.8052159202679565, -0.8247647016286552, -0.843795315003221, -0.8621439480366839, -0.8796430071023122, -0.8961236899536884, -0.9114189148018095, -0.9253665595866128, -0.9378129341640907, -0.9486163748868329, -0.9576508199822936, -0.9648092004920233, -0.9700064703976358, -0.9731821045506763, -0.9743019153133967, -0.973359076707796, -0.9703742941171345, -0.9653951123148695, -0.9584944084957306, -0.9497681643971561, -0.939332648309352, -0.9273211613751193, -0.9138805125021283, -0.8991673834542063, -0.8833447324215266, -0.8665783634345932, -0.8490337634272441, -0.8308732814177189, -0.8122536975434916, -0.7933242053234799, -0.7742248096638013, -0.7550851263296194, -0.73602355597131, -0.7171467970772852, -0.6985496569737673, -0.6803151176385068, -0.6625146130450126, -0.6452084764342814, -0.6284465188088507, -0.6122687036210921, -0.5967058867271906, -0.5817805949214518, -0.5675078205446189 ], [ -0.6326659400013589, -0.6498473542530513, -0.6673684083356545, -0.685144969328515, -0.703082632546248, -0.7210769741978476, -0.7390140233336981, -0.7567709773985636, -0.7742171844488782, -0.7912154123353311, -0.8076234201382209, -0.823295839017727, -0.8380863576254194, -0.851850190877606, -0.8644467904241468, -0.875742731684108, -0.8856146880211562, -0.8939523805484106, -0.900661375688397, -0.9056655952523984, -0.9089094077654076, -0.910359185815897, -0.9100042413144521, -0.9078570860145204, -0.9039530046573919, -0.8983489683889999, -0.8911219526559395, -0.8823667534287545, -0.8721934162628119, -0.8607244035621339, -0.8480916267659144, -0.8344334632430248, -0.8198918642688866, -0.8046096426639658, -0.7887280085773928, -0.7723844013574949, -0.7557106459500019, -0.7388314448656509, -0.7218632021052223, -0.7049131638003042, -0.6880788517119468, -0.6714477599110558, -0.6550972815991165, -0.6390948317071122, -0.6234981312108216, -0.608355620618604, -0.5937069724610579, -0.5795836755308046, -0.5660096668313145, -0.5530019904966846 ], [ -0.6018956064668226, -0.6171662987128161, -0.6327386870433149, -0.6485390322422433, -0.6644847567505896, -0.6804846856911719, -0.6964394757809875, -0.7122422517269448, -0.7277794681277728, -0.7429320119559266, -0.7575765558222005, -0.7715871648776809, -0.7848371499508412, -0.797201146219396, -0.808557380725705, -0.8187900743295433, -0.8277919058690096, -0.8354664505038524, -0.8417304927998569, -0.8465161102321721, -0.8497724259457603, -0.8514669413191066, -0.8515863784800994, -0.8501369886882413, -0.8471443119022268, -0.8426524030024389, -0.8367225682111835, -0.829431678875086, -0.8208701472727937, -0.8111396596314986, -0.8003507650221111, -0.7886204158791916, -0.7760695476781517, -0.7628207732040805, -0.7489962523516281, -0.7347157829051483, -0.7200951424586693, -0.7052446974698771, -0.6902682830335719, -0.6752623466667101, -0.6603153413449647, -0.6455073471645996, -0.630909897141718, -0.6165859805437456, -0.6025901964788175, -0.5889690309449579, -0.575761231875923, -0.5629982586572844, -0.5507047849044996, -0.5388992358130573 ], [ -0.5736613873572016, -0.5871986256552577, -0.6010046287282892, -0.6150149751233857, -0.6291576390299611, -0.6433532154628955, -0.657515306249389, -0.6715510824946443, -0.6853620374546271, -0.6988449407904955, -0.7118930006424037, -0.7243972334979759, -0.7362480332299071, -0.747336919966977, -0.7575584370203073, -0.76681215070317, -0.77500469475473, -0.7820517897032994, -0.7878801594799549, -0.7924292643491783, -0.7956527717504384, -0.7975196952783057, -0.7980151463488168, -0.7971406619696167, -0.7949140937663813, -0.7913690660393519, -0.7865540321410924, -0.780530977133109, -0.7733738291809594, -0.7651666517081225, -0.7560016927252847, -0.7459773672599816, -0.7351962440989593, -0.7237631000456151, -0.7117830946283207, -0.6993601067062263, -0.6865952626387427, -0.6735856743791413, -0.660423395592437, -0.6471945950564056, -0.6339789393761351, -0.6208491714717922, -0.6078708673170384, -0.5951023508639242, -0.5825947457939847, -0.5703921424686988, -0.558531858997663, -0.547044776495238, -0.535955730172303, -0.5252839397518274 ], [ -0.5479092229342307, -0.559881092212192, -0.5720930841347259, -0.5844890806483173, -0.597006420496403, -0.6095761062960865, -0.6221231490621584, -0.6345670626244917, -0.646822518582171, -0.6588001696121617, -0.6704076448528989, -0.6815507155157545, -0.692134621758072, -0.7020655432856875, -0.7112521864925742, -0.7196074508176503, -0.7270501272849426, -0.733506573948229, -0.7389123072780617, -0.7432134463693594, -0.7463679488704598, -0.7483465839627148, -0.7491335982761675, -0.7487270445536525, -0.7471387590340799, -0.7443939905526353, -0.7405307008444403, -0.7355985702115027, -0.7296577545580808, -0.7227774481559662, -0.7150343110879247, -0.706510821213822, -0.6972936080881769, -0.6874718211234763, -0.6771355771556041, -0.6663745241743954, -0.6552765490413474, -0.6439266481414906, -0.6324059715953074, -0.6207910442400051, -0.609153160294815, -0.5975579435519851, -0.5860650610872942, -0.5747280757925496, -0.5635944213798936, -0.5527054827475619, -0.5420967645708255, -0.5317981315331082, -0.5218341045933993, -0.5122241989654257 ], [ -0.5245531764705, -0.5351173329274169, -0.5458966238980639, -0.5568422922355594, -0.5678999495034954, -0.5790097640314301, -0.5901067662934997, -0.6011212814221334, -0.6119794968999839, -0.6226041708590829, -0.6329154827997959, -0.6428320238187284, -0.6522719175969803, -0.6611540565811798, -0.6693994302952381, -0.6769325150389571, -0.6836826870074818, -0.6895856148501517, -0.6945845836334626, -0.6986317007339787, -0.7016889358061015, -0.7037289517957203, -0.704735691816688, -0.704704697059921, -0.7036431429860117, -0.7015695939149343, -0.6985134887734745, -0.6945143822599389, -0.689620975266444, -0.6838899755201103, -0.6773848337842314, -0.6701744025735826, -0.662331563383549, -0.6539318652824975, -0.645052212853794, -0.635769635430924, -0.6261601628735374, -0.6162978262630496, -0.6062537952554277, -0.5960956577251866, -0.5858868419820489, -0.5756861773640127, -0.5655475854542013, -0.5555198915179586, -0.5456467439493659, -0.5359666284602842, -0.5265129633304007, -0.517314262147399, -0.5083943509883903, -0.49977262782037224 ], [ -0.5034832216146956, -0.5127861868056482, -0.5222824036982644, -0.5319296106404787, -0.541680698061996, -0.5514838775199826, -0.5612829507534706, -0.5710176864306782, -0.5806243105998877, -0.5900361144960632, -0.5991841802182756, -0.6079982208312114, -0.616407526689321, -0.6243420043692947, -0.6317332887806899, -0.6385159031810008, -0.6446284364255647, -0.6500147023659416, -0.6546248433986206, -0.6584163392074527, -0.6613548830387935, -0.6634150914978552, -0.664581019729335, -0.6648464615930126, -0.6642150235273867, -0.6626999705489434, -0.660323852551037, -0.6571179280642686, -0.6531214103380794, -0.648380566568228, -0.6429477050707361, -0.6368800871149504, -0.6302388000674098, -0.6230876266899721, -0.6154919422011935, -0.6075176664230466, -0.5992302933825395, -0.5906940154863288, -0.5819709541576032, -0.5731205038800992, -0.5641987921287341, -0.5552582538087167, -0.546347315643251, -0.5375101834611269, -0.528786723516141, -0.5202124277676439, -0.5118184523935297, -0.5036317186113631, -0.4956750650644962, -0.48796744150481053 ], [ -0.4845720840397577, -0.4927489627833326, -0.5010998478416807, -0.509588186170756, -0.518173249667602, -0.5268102858378814, -0.5354507536018562, -0.5440426502200958, -0.5525309337794768, -0.5608580435926502, -0.5689645181784567, -0.5767897071960909, -0.5842725698513613, -0.5913525480034144, -0.5979704976821076, -0.6040696582667285, -0.6095966345252297, -0.6145023634499444, -0.6187430357200846, -0.6222809409835554, -0.6250852071868013, -0.6271324069585463, -0.6284070084812232, -0.6289016541177568, -0.6286172569254604, -0.6275629126154789, -0.6257556319971378, -0.6232199059846565, -0.6199871214016273, -0.6160948507558173, -0.6115860426525839, -0.6065081414763696, -0.6009121654244004, -0.5948517710561786, -0.5883823304361612, -0.5815600439540374, -0.5744411082871712, -0.5670809549992879, -0.5595335712004476, -0.5518509097406031, -0.5440823927418333, -0.5362745090145579, -0.5284705031266671, -0.5207101516369462, -0.5130296202668556, -0.5054613945428261, -0.49803427565089986, -0.49077343285117403, -0.4837005037391693, -0.47683373385180916 ], [ -0.4676811223679046, -0.47485564536893166, -0.48218717171432735, -0.4896441473503742, -0.49719142113451864, -0.5047903781542346, -0.5123991454381656, -0.5199728746894495, -0.5274641052821311, -0.5348232089412603, -0.5419989152511987, -0.5489389144140151, -0.5555905305651694, -0.561901455555498, -0.5678205295926259, -0.5732985517197857, -0.5782891000527169, -0.5827493392696617, -0.5866407913165204, -0.5899300448656981, -0.5925893798953498, -0.5945972858807402, -0.5959388554469954, -0.5966060397506303, -0.5965977570708065, -0.5959198517680199, -0.5945849065419156, -0.5926119164272704, -0.5900258378795787, -0.5868570303539047, -0.5831406107887463, -0.5789157432761383, -0.5742248869235494, -0.5691130245639271, -0.5636268936813289, -0.5578142388678802, -0.5517231025138025, -0.5454011674609573, -0.5388951622163733, -0.5322503361978413, -0.5255100095111546, -0.5187151990471558, -0.5119043203115347, -0.5051129624052548, -0.49837373197479995, -0.4917161607430375, -0.4851666703899076, -0.4787485880419341, -0.4724822054077068, -0.46638487461654055 ], [ -0.4526652769644821, -0.45895008506317914, -0.4653768050377942, -0.47191824636086477, -0.47854411798068264, -0.48522114555696483, -0.49191325018492915, -0.498581792173337, -0.5051858822102593, -0.5116827606810821, -0.5180282439893249, -0.524177234491337, -0.5300842881441234, -0.5357042312731927, -0.5409928151257128, -0.5459073942491911, -0.5504076124174159, -0.5544560780114219, -0.5580190096397628, -0.5610668325019335, -0.5635747066602526, -0.565522970019357, -0.5668974813723426, -0.5676898522361699, -0.5678975601777111, -0.5675239406878135, -0.5665780591291808, -0.56507446859743, -0.5630328634471877, -0.5604776415412744, -0.5574373908307865, -0.5539443175798655, -0.5500336343872065, -0.5457429261616003, -0.541111511464138, -0.5361798152546534, -0.5309887672163169, -0.5255792376307891, -0.5199915203849689, -0.5142648702450209, -0.5084370991506668, -0.5025442340568271, -0.4966202368500987, -0.49069678514012105, -0.48480311129481846, -0.47896589595941164, -0.473209211462545, -0.4675545099482553, -0.46202065075138976, -0.45662396142337336 ], [ -0.4393771447175727, -0.4448742463460529, -0.4504998042245598, -0.45623042571591554, -0.46204004442131374, -0.4679000227171862, -0.4737793064702355, -0.4796446346636345, -0.4854608055889128, -0.4911909999175784, -0.4967971593666275, -0.5022404178361678, -0.5074815798740344, -0.5124816391875019, -0.517202327779141, -0.52160668425855, -0.5256596281146636, -0.5293285253688104, -0.5325837301997591, -0.5353990869469093, -0.5377523774257637, -0.5396256997514056, -0.54100576682699, -0.541884115227586, -0.5422572182597255, -0.5421265003321423, -0.5414982532407896, -0.5403834583543137, -0.5387975217998661, -0.536759932435453, -0.534293854533049, -0.5314256686098227, -0.5281844747018203, -0.5246015725878833, -0.5207099330911947, -0.5165436736912165, -0.5121375503690636, -0.5075264759944568, -0.5027450737535759, -0.4978272722199195, -0.4928059467787367, -0.48771261030842084, -0.48257715436112314, -0.47742764061361875, -0.4722901411055983, -0.4671886247583241, -0.4621448868718405, -0.4571785177235157, -0.45230690601695756, -0.4475452727358262 ], [ -0.4276702562976926, -0.43247160275703034, -0.4373893569047067, -0.44240342314310865, -0.44749139903723534, -0.45262866457254636, -0.4577885156553516, -0.46294234394131784, -0.46805986414313316, -0.47310938883147047, -0.47805814941210856, -0.4828726604605893, -0.4875191229666135, -0.491963860345642, -0.4961737793956832, -0.500116846808496, -0.5037625704911713, -0.5070824739215062, -0.5100505511448247, -0.5126436898982286, -0.5148420507693611, -0.5166293912745761, -0.5179933252508171, -0.5189255099331385, -0.519421755437705, -0.5194820539637656, -0.5191105287265432, -0.5183153052905471, -0.5171083104505066, -0.5155050059834658, -0.5135240663744162, -0.5111870109337112, -0.5085178015451122, -0.5055424176081269, -0.5022884195957897, -0.49878451209094266, -0.49506011625934665, -0.4911449605457464, -0.48706869702229605, -0.48286054935863676, -0.47854899689392427, -0.47416149783783634, -0.46972425326299616, -0.4652620123151736, -0.46079791798765335, -0.45635339189790924, -0.45194805577370256, -0.4475996867987919, -0.44332420357591595, -0.4391356792219505 ], [ -0.41740164217586306, -0.4215897766579617, -0.4258834878104094, -0.43026553561607295, -0.4347166888480076, -0.43921580244537206, -0.44373993237852805, -0.44826448958807275, -0.45276343377947925, -0.4572095068961912, -0.4615745049901787, -0.46582958598286406, -0.4699456094974722, -0.4738935035964724, -0.47764465193780326, -0.48117129364385836, -0.48444692713570414, -0.4874467083990809, -0.49014783368823367, -0.4925298965938256, -0.4945752097368651, -0.49626908211088216, -0.4976000442610241, -0.4985600150148637, -0.49914440529428383, -0.4993521565498118, -0.49918571346451424, -0.4986509326658959, -0.49775693115646547, -0.4965158799334912, -0.49494274973988406, -0.4930550170165825, -0.4908723388815658, -0.4884162063344065, -0.48570958489278504, -0.4827765515416581, -0.4796419362640789, -0.4763309755816495, -0.4728689845235513, -0.46928105232783424, -0.4655917660153721, -0.4618249648179986, -0.45800352733195715, -0.4541491922410934, -0.4502824125369749, -0.44642224237207073, -0.44258625502586346, -0.43879048994376446, -0.4350494264206515, -0.43137598123603604 ], [ -0.4084337770371076, -0.4120825229472771, -0.4158270750506734, -0.41965266136535706, -0.4235427903449349, -0.42747931770810954, -0.43144254501802504, -0.43541135121060237, -0.4393633575855489, -0.44327512596872465, -0.44712238884165423, -0.4508803092337834, -0.4545237671162228, -0.4580276679626023, -0.46136726810231177, -0.46451851053933524, -0.46745836410443986, -0.470165158206887, -0.47261890510490623, -0.47480160156201845, -0.4766975020236017, -0.47829335604104006, -0.47957860357546134, -0.48054552299534314, -0.48118932798981406, -0.48150821118548226, -0.48150333390232936, -0.481178763133024, -0.48054135840096623, -0.47960061257371844, -0.4783684519204767, -0.47685900166000283, -0.47508832392132716, -0.47307413542314936, -0.4708355122753529, -0.46839258913784443, -0.46576625957006645, -0.46297788380917204, -0.4600490094710499, -0.4570011098226394, -0.4538553433715844, -0.4506323376018775, -0.4473519987881507, -0.44403334897666213, -0.44069439045106207, -0.43735199732205476, -0.4340218333020591, -0.4307182942531027, -0.42745447372787626, -0.42424214945544936 ], [ -0.400635990955889, -0.4038111531594377, -0.4070732813086526, -0.41040973245143886, -0.4138063779933856, -0.4172476612305336, -0.4207166817599868, -0.42419530767207037, -0.4276643158456628, -0.4311035599949491, -0.43449216536228774, -0.4378087481364281, -0.4410316568232151, -0.44413923193964044, -0.44711007957973425, -0.4499233536547387, -0.45255904098423483, -0.4549982429516488, -0.45722344717439034, -0.4592187826047396, -0.4609702516902463, -0.46246593368604794, -0.4636961539154725, -0.46465361469444266, -0.4653334847307984, -0.4657334450323629, -0.46585369065031323, -0.4656968888869091, -0.4652680958490025, -0.4645746343760835, -0.4636259373667657, -0.4624333613342866, -0.46100997561565915, -0.4593703330291168, -0.4575302279215421, -0.4555064474837536, -0.45331652195810723, -0.4509784789482907, -0.44851060649807417, -0.44593122896912996, -0.4432584990525894, -0.4405102085276402, -0.4377036196627202, -0.4348553184658688, -0.4319810903508401, -0.42909581820981546, -0.4262134023822324, -0.4233467015879797, -0.42050749355367145, -0.41770645380119187 ], [ -0.3938854312532645, -0.3966454905261425, -0.3994844971623337, -0.40239164163211427, -0.405354830316089, -0.408360734891015, -0.41139486446196494, -0.4144416611188966, -0.41748461910372336, -0.4205064272121617, -0.4234891334335893, -0.4264143301673158, -0.42926335766605805, -0.4320175226727352, -0.4346583285647374, -0.4371677127330431, -0.43952828643500985, -0.4417235720010326, -0.44373823207407104, -0.445558285538598, -0.44717130496453916, -0.44856659075504957, -0.4497353177364811, -0.4506706506457514, -0.4513678258258984, -0.45182419739810586, -0.4520392471953585, -0.45201455877376295, -0.4517537568171004, -0.4512624141760546, -0.45054792959885637, -0.44961937988556877, -0.44848735071324186, -0.44716375072260806, -0.4456616136269489, -0.44399489310690243, -0.4421782551053022, -0.4402268718532665, -0.43815622156655576, -0.4359818972755185, -0.43371942771940963, -0.4313841126721569, -0.4289908744954305, -0.42655412715692687, -0.424087663424382, -0.42160456046256756, -0.4191171036311596, -0.41663672791215767, -0.4141739760894261, -0.41173847256011964 ], [ -0.38806765248044917, -0.390464438859055, -0.3929328847342395, -0.3954637569604178, -0.39804671206438447, -0.40067033852831635, -0.4033222183183576, -0.4059890081652724, -0.4086565406892422, -0.41130994499329776, -0.4139337858384142, -0.4165122199713043, -0.4190291676203668, -0.42146849662669505, -0.4238142161586569, -0.42605067649531647, -0.42816277098082356, -0.43013613597270606, -0.43195734445200884, -0.4336140889482696, -0.4350953495665042, -0.43639154318855367, -0.43749465035125046, -0.43839831686462105, -0.4390979279035012, -0.4395906530578282, -0.43987546162876745, -0.43995310827530876, -0.43982608991465266, -0.4394985755269383, -0.4389763111817808, -0.43826650316717397, -0.4373776825432836, -0.4363195547542533, -0.4351028381069295, -0.4337390949696074, -0.43224055946536777, -0.43061996524694557, -0.42889037666037555, -0.4270650262521425, -0.42515716116933944, -0.42317990056440125, -0.42114610566407396, -0.41906826371340267, -0.41695838657409734, -0.41482792435452165, -0.4126876940847497, -0.41054782313079197, -0.4084177067709347, -0.4063059791354706 ] ], "zauto": true, "zmax": 2.196614395253103, "zmin": -2.196614395253103 }, { "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.6642342071750391, 0.6600127676529901, 0.6555780202079197, 0.6509411597335374, 0.6461182611959158, 0.6411309473142889, 0.6360070345544516, 0.6307811142588677, 0.6254950138510663, 0.6201980716568933, 0.6149471497431096, 0.6098063046329315, 0.6048460386262318, 0.6001420676639821, 0.5957735677043329, 0.5918209015901474, 0.5883628812694155, 0.5854736817183488, 0.5832195852495282, 0.5816557873855974, 0.5808235263330831, 0.5807477972042163, 0.5814358743335412, 0.5828767925160468, 0.58504184086046, 0.5878860172988362, 0.5913502957466164, 0.5953644869743118, 0.5998504376445747, 0.604725311084799, 0.6099047226662538, 0.6153055522367098, 0.6208483147258966, 0.6264590279554745, 0.6320705668193985, 0.6376235315736126, 0.6430666840169296, 0.6483570198765095, 0.6534595508547192, 0.6583468680493698, 0.6629985522103314, 0.6674004875425511, 0.6715441260292683, 0.6754257395848399, 0.6790456884142094, 0.6824077261113023, 0.6855183554101925, 0.6883862431070145, 0.6910216984083902, 0.6934362157010573 ], [ 0.6579008429539651, 0.6531020441436328, 0.648052308296209, 0.6427627915386431, 0.6372501622566814, 0.6315374454430539, 0.6256548716282508, 0.6196406819389504, 0.6135418238176104, 0.6074144541304071, 0.6013241499231281, 0.5953457151199847, 0.5895624681762434, 0.5840649059671763, 0.5789486678366773, 0.5743117741989856, 0.5702511867412331, 0.5668588275060124, 0.5642172911103079, 0.5623955712840397, 0.5614451796007114, 0.5613970421038865, 0.5622595076681883, 0.5640176925061732, 0.5666342349469764, 0.5700513713129286, 0.5741940987206199, 0.5789740897228168, 0.5842939804243926, 0.5900516672624339, 0.5961443056075151, 0.6024717871963178, 0.6089395643820372, 0.6154607724916157, 0.6219576682091719, 0.6283624484557823, 0.6346175414969694, 0.6406754732335228, 0.6464984110243748, 0.652057479068182, 0.6573319267908649, 0.6623082174460271, 0.6669790899946849, 0.6713426343541694, 0.6754014088346109, 0.6791616191969153, 0.6826323712249349, 0.6858250028370255, 0.6887524973412043, 0.6914289762227283 ], [ 0.6510271967247367, 0.6455995895165622, 0.6398791981701409, 0.6338767714595989, 0.6276091863861154, 0.6211004937571214, 0.6143830084333742, 0.6074983930759833, 0.6004986609712657, 0.5934469972029686, 0.586418270381375, 0.5794990832732287, 0.5727871958509045, 0.5663901561247772, 0.5604230012560353, 0.5550049516707178, 0.5502551182707105, 0.5462873739875987, 0.543204691699271, 0.5410933949191222, 0.5400178710569732, 0.5400163247372024, 0.5410980780285914, 0.5432427561717815, 0.5464014597857839, 0.5504997672324696, 0.5554421893568177, 0.5611175566656575, 0.5674047751052177, 0.5741784332624734, 0.5813138541303544, 0.5886913243158908, 0.5961993720016269, 0.6037370811407855, 0.6112155134358402, 0.618558360825182, 0.6257019743157489, 0.632594917277967, 0.6391971800880218, 0.6454791744262803, 0.651420604178145, 0.657009288739428, 0.6622399953401126, 0.6671133205858704, 0.6716346479888361, 0.6758131976727244, 0.6796611763642805, 0.6831930298261862, 0.6864247956477515, 0.6893735514261391 ], [ 0.6436113199152409, 0.6375043864233416, 0.6310587839009297, 0.6242844327987958, 0.6171979450259613, 0.609823889283736, 0.6021961579086118, 0.59435938606603, 0.586370343884049, 0.5782991852439123, 0.5702303954402935, 0.562263238154025, 0.5545114676836473, 0.5471020563332498, 0.5401727036231513, 0.5338679590367582, 0.5283339154212955, 0.5237116177709685, 0.5201295658256878, 0.5176959296260859, 0.5164912855220348, 0.5165627507064973, 0.5179202997143659, 0.5205357817711356, 0.52434477275713, 0.529250981416095, 0.5351325876194282, 0.5418496949609288, 0.5492520542055078, 0.5571863317045889, 0.5655024009152426, 0.5740583635510667, 0.5827242114690343, 0.591384194626655, 0.5999380576451474, 0.6083013542391432, 0.616405057686129, 0.6241946700973426, 0.6316290049065406, 0.6386787839807564, 0.6453251583379339, 0.6515582325053411, 0.6573756482842186, 0.6627812642805484, 0.6677839526328315, 0.6723965232744707, 0.6766347781051176, 0.6805166919451839, 0.6840617135301943, 0.6872901775875168 ], [ 0.6356597225083308, 0.6288250666256326, 0.6216022197224889, 0.6139998288043785, 0.6060336992827132, 0.5977282871766707, 0.5891183684999329, 0.5802508462197973, 0.5711866180325801, 0.5620023793132644, 0.5527921757371339, 0.5436684530683871, 0.5347622860428602, 0.5262224191435707, 0.5182127416403137, 0.5109078755230686, 0.5044867057399987, 0.49912394347297373, 0.49498017286637963, 0.4921912342149206, 0.49085814095827035, 0.4910388890544973, 0.49274339477514656, 0.49593237003483176, 0.5005203021033794, 0.506382022376343, 0.513361817320217, 0.5212837798036638, 0.5299621401909829, 0.5392105797186717, 0.5488498961107788, 0.5587137541881206, 0.56865254275932, 0.5785355476042375, 0.5882517452727245, 0.5977095462056803, 0.6068357941342304, 0.615574283755965, 0.6238840058935985, 0.6317372781953997, 0.6391178747583054, 0.6460192315773254, 0.6524427763915657, 0.658396410366571, 0.6638931538623832, 0.6689499580161442, 0.673586676887947, 0.677825190544548, 0.6816886669500017, 0.6852009493329012 ], [ 0.6271885343251793, 0.6195811612120591, 0.6115330988317734, 0.6030512983605786, 0.5941501927398808, 0.5848534047608783, 0.5751957270056217, 0.5652253544028317, 0.5550063077974839, 0.544620926160026, 0.5341722240009437, 0.5237858106398534, 0.5136109568444619, 0.5038202896513692, 0.4946075293459354, 0.48618270019097176, 0.47876440485385824, 0.4725691001192371, 0.467797857241733, 0.46462176475573025, 0.46316776526235665, 0.46350706962639954, 0.46564814491535245, 0.4695355620161737, 0.475054882512537, 0.48204261292721895, 0.49029942708610597, 0.499604565553822, 0.5097295458686477, 0.5204498685391354, 0.5315540449231264, 0.5428498241783738, 0.5541678727172249, 0.565363356646003, 0.5763159351990284, 0.5869286425443319, 0.5971260608064629, 0.6068520993706196, 0.6160676122049971, 0.6247480142428334, 0.6328810020646081, 0.6404644423428634, 0.6475044615566523, 0.654013749842776, 0.6600100782139312, 0.6655150198139849, 0.6705528608907655, 0.6751496846163619, 0.6793326099523422, 0.6831291678608888 ], [ 0.6182246821929118, 0.6098043170676495, 0.6008887388946378, 0.5914828728023885, 0.581599260690407, 0.5712599487021995, 0.5604987570658885, 0.5493639475317089, 0.5379212601272786, 0.5262572213532547, 0.5144825238430711, 0.5027351389349828, 0.4911826511645704, 0.4800231133662275, 0.46948355147460474, 0.4598151694481458, 0.4512844199466988, 0.4441595309740625, 0.4386928849184463, 0.43510077403677333, 0.4335432324939113, 0.4341074003134931, 0.4367977301807027, 0.44153512293030883, 0.4481651015528931, 0.45647314181851206, 0.46620400663452766, 0.4770817164956642, 0.48882746101871305, 0.5011738545508811, 0.5138750084380693, 0.5267126694349171, 0.5394990977549762, 0.5520774953335188, 0.5643207514286793, 0.5761291429691505, 0.587427474625296, 0.5981620028712482, 0.6082973733350133, 0.6178137137899566, 0.6267039630060365, 0.634971473310095, 0.6426278970834991, 0.6496913503083123, 0.6561848363662225, 0.6621349081759018, 0.6675705447105489, 0.6725222177911959, 0.6770211260159286, 0.6810985742478651 ], [ 0.6088071098824579, 0.5995394964247165, 0.5897213721493909, 0.5793554922136034, 0.5684521431836964, 0.557031141103411, 0.5451243302559282, 0.5327786487612108, 0.5200597896753903, 0.5070564153807383, 0.49388476581638424, 0.48069332414212673, 0.467666957582556, 0.45502964123146206, 0.44304453443834546, 0.4320099045030889, 0.4222493498939463, 0.4140952050200139, 0.4078651408090644, 0.4038338429418143, 0.40220385026150146, 0.4030812539473146, 0.4064619130295793, 0.41223164026638565, 0.4201801417552851, 0.4300249724146888, 0.4414399002166294, 0.45408230504049757, 0.46761592448969413, 0.4817273324678749, 0.49613619722630464, 0.5106003220077067, 0.524916807160555, 0.5389206153539228, 0.5524815841262345, 0.5655006525145639, 0.5779058213620819, 0.5896481742802449, 0.6006981482063698, 0.6110421495051127, 0.6206795521534592, 0.6296200786111954, 0.6378815436885745, 0.6454879314586218, 0.6524677711751211, 0.6588527777073999, 0.6646767235611607, 0.6699745121083347, 0.6747814245901816, 0.6791325164381599 ], [ 0.5989880862898425, 0.588846200812527, 0.5780992660115775, 0.5667480266494754, 0.5548004484653739, 0.5422737219437648, 0.5291968787817823, 0.5156141546154347, 0.5015892106325501, 0.4872102677403027, 0.47259608916102447, 0.4579025440195768, 0.44332916587128696, 0.4291246634717885, 0.4155897557673323, 0.40307507871627235, 0.3919714875809394, 0.3826902970113351, 0.37563243842037536, 0.37114853673808745, 0.3694960477038846, 0.3708030847357583, 0.37504890606548286, 0.38206688944919187, 0.39156872142536747, 0.4031822133524995, 0.4164927191132148, 0.43107983805977823, 0.44654490738327124, 0.46252842730565086, 0.4787188377585358, 0.4948549338949553, 0.5107241590377649, 0.5261585583024505, 0.5410296452927873, 0.5552429812823971, 0.568732933075847, 0.5814578524120467, 0.5933957802391956, 0.6045406974609117, 0.6148992993529564, 0.6244882493578608, 0.6333318598768966, 0.6414601470131261, 0.6489072093467925, 0.6557098856213931, 0.6619066514945579, 0.6675367206346364, 0.6726393201250953, 0.6772531142659508 ], [ 0.588834664206659, 0.57779978850984, 0.5661078373946273, 0.5537581402396131, 0.5407567526728693, 0.5271183276474541, 0.5128686845372034, 0.49804829003071227, 0.4827168732192223, 0.4669593689084393, 0.4508932897533649, 0.43467742754104777, 0.4185214184340409, 0.4026951049695715, 0.38753572955211235, 0.37344982426799145, 0.3609054777844408, 0.35041016496636124, 0.34247075903689667, 0.337537006440311, 0.3359375093481154, 0.3378248372492381, 0.3431479068415529, 0.35166157654993496, 0.36296914133928976, 0.37658212068247743, 0.3919796328318379, 0.40865537510487737, 0.4261481154913586, 0.4440572800914831, 0.4620476306238265, 0.4798471320494784, 0.4972412061087891, 0.5140654993970559, 0.5301984260488081, 0.5455541484946564, 0.5600762914634734, 0.573732475528434, 0.5865096480231446, 0.5984101395483444, 0.6094483571287782, 0.6196480245990433, 0.6290398880378377, 0.6376598141720203, 0.6455472201449194, 0.652743782721804, 0.6592923834385718, 0.6652362533046281, 0.6706182865401493, 0.67548049762489 ], [ 0.5784303606213234, 0.5664929808980343, 0.5538508694229766, 0.5405030988600572, 0.5264548941723453, 0.5117192120489722, 0.49631905247501285, 0.4802908007713148, 0.46368894992406706, 0.4465925768917971, 0.4291139108394772, 0.4114091820785192, 0.3936915894404183, 0.37624553413239414, 0.35944005722340294, 0.34373752599484864, 0.3296911417903922, 0.31792266660660956, 0.3090721889131669, 0.3037182674029412, 0.30228111084945924, 0.30493793897339083, 0.3115844028575154, 0.3218589489355872, 0.33521759035563586, 0.3510271122855075, 0.3686467630026904, 0.3874836993401524, 0.40702188072926504, 0.426831253453091, 0.44656506436792925, 0.4659513449776721, 0.48478236315393386, 0.5029040953053833, 0.5202066629349995, 0.5366160573649706, 0.5520871659077414, 0.5665979776525447, 0.5801448031498347, 0.5927383417934068, 0.6044004482584647, 0.6151614723187742, 0.6250580689220622, 0.6341313952228006, 0.642425627723625, 0.6499867458934481, 0.6568615390416858, 0.6630968013367562, 0.6687386861391768, 0.6738321956861065 ], [ 0.5678771177784971, 0.5550376664808214, 0.541451984829095, 0.5271207046537576, 0.5120501395896422, 0.4962534195305017, 0.4797523165109798, 0.4625801364700318, 0.4447861562113412, 0.4264421806964498, 0.4076518524610167, 0.38856330546447426, 0.3693855122609354, 0.3504080261449369, 0.332022424562488, 0.3147411216480589, 0.29920492917039804, 0.2861653973641754, 0.27642506382713994, 0.2707261607153789, 0.2696036906728129, 0.2732541269779318, 0.2814837390722785, 0.2937640025201543, 0.3093607388663233, 0.32747373692577314, 0.3473408999513282, 0.3682950074956678, 0.38978306586322253, 0.41136352879251353, 0.43269341972640685, 0.4535125340273014, 0.47362823501563867, 0.4929022078511646, 0.5112394608610539, 0.5285794042832338, 0.5448886852714026, 0.5601554451093635, 0.574384704650354, 0.587594637834042, 0.5998135444848427, 0.6110773769176108, 0.621427709285002, 0.6309100650125712, 0.6395725375256429, 0.6474646542116809, 0.6546364444208177, 0.6611376802823038, 0.66701726497893, 0.6723227474599727 ], [ 0.5572975522721797, 0.5435670886515144, 0.529056552743512, 0.5137706251363029, 0.4977195599035715, 0.480919765209528, 0.46339494458427477, 0.445178226515363, 0.4263158731540242, 0.4068733392746873, 0.386944627625059, 0.3666660078111925, 0.34623512704076603, 0.32593611039800907, 0.30616993554102473, 0.2874862429905699, 0.2706064494746047, 0.2564178673744016, 0.24590838358167896, 0.24001598319576223, 0.2394092207824802, 0.24428703099945873, 0.25431627635829945, 0.26874656573248945, 0.28662180989888825, 0.30697367414621524, 0.32893863943539536, 0.3518027955862529, 0.3750024536044856, 0.39810533148435656, 0.4207867790634898, 0.44280754283679896, 0.4639951922103436, 0.48422937191145377, 0.5034303453317415, 0.5215501488225649, 0.5385657406704928, 0.5544736491214987, 0.569285742707969, 0.5830258448097971, 0.5957269903252453, 0.6074291784719864, 0.6181775162623697, 0.6280206759945867, 0.6370096103491644, 0.6451964828125925, 0.6526337809709517, 0.6593735870352575, 0.6654669847131006, 0.6709635848899648 ], [ 0.5468373793167987, 0.532238405918642, 0.5168341563146067, 0.5006364167553551, 0.4836631087223157, 0.46593829575959134, 0.44749253102395503, 0.42836399097685846, 0.40860106064654655, 0.38826730403225007, 0.3674500572397901, 0.3462741881686199, 0.3249227894492232, 0.3036664895809438, 0.28290211805140597, 0.2631983257896733, 0.2453378678372919, 0.23033041723880457, 0.21934815790713477, 0.2135321511234246, 0.2136799803777803, 0.21995887692068256, 0.2318462714815052, 0.24833986506304373, 0.2682701479110912, 0.29053717374990046, 0.31422012876946687, 0.33859627206366244, 0.3631180170527105, 0.3873786919349387, 0.4110803688392637, 0.4340077719978935, 0.4560083780701158, 0.47697760699865716, 0.4968478557141984, 0.5155803222596262, 0.5331588230075788, 0.5495850288790102, 0.5648747182037339, 0.5790547683795451, 0.5921606958906073, 0.6042346143626678, 0.6153235210773493, 0.6254778496518317, 0.6347502446651035, 0.6431945258692041, 0.6508648173382969, 0.6578148219024513, 0.6640972244519265, 0.6697632098292101 ], [ 0.5366676817237102, 0.5212353910195668, 0.504981551468274, 0.4879284175419293, 0.4701059092485028, 0.45155115023462955, 0.43230805785495136, 0.41242740509851733, 0.3919680441425186, 0.37100033319193976, 0.34961323905673597, 0.32792707524968506, 0.3061143110535372, 0.28443115214932063, 0.26326207040083477, 0.24317658132627812, 0.22498869133789803, 0.2097885845299551, 0.19888219577571115, 0.19355796185265947, 0.19468485196599672, 0.20235236263361872, 0.2158416017465558, 0.23394360790816204, 0.25535201627804094, 0.27891081333215717, 0.30369772401644046, 0.3290146089000883, 0.35434595861070795, 0.37931536149501244, 0.4036497709603392, 0.4271527643476624, 0.44968525905085077, 0.47115174345368316, 0.49149038434715053, 0.5106657971215155, 0.5286636309403564, 0.5454863950395492, 0.5611501450237462, 0.5756817791397998, 0.5891167817516617, 0.6014973082916661, 0.6128705426595538, 0.6232872812380755, 0.6328007120750421, 0.6414653665002249, 0.6493362256000104, 0.6564679669420167, 0.6629143386191779, 0.668727648636661 ], [ 0.5269863658898077, 0.5107706473460599, 0.4937256184312945, 0.4758872576246936, 0.4573019112869979, 0.4380256021432346, 0.41812306795800414, 0.3976668769619826, 0.3767372729445385, 0.3554238277287104, 0.3338305259563642, 0.3120865536656402, 0.2903657276801126, 0.26891796126300177, 0.24811577396981563, 0.22851586559166998, 0.21092596139923087, 0.1964432147858144, 0.18639059819908269, 0.18205931614552345, 0.1842704981767618, 0.1930106612731577, 0.20745241861664504, 0.2263268554546858, 0.248325894288985, 0.27232724151526483, 0.2974529624287654, 0.32304547088039826, 0.34862062804592164, 0.3738236584920386, 0.3983948244896895, 0.4221446054730554, 0.4449362430567279, 0.46667350156407295, 0.48729196789520585, 0.5067527055301878, 0.5250374651015749, 0.5421449308446237, 0.5580876702871344, 0.5728895782870161, 0.5865836859601324, 0.5992102548421697, 0.6108151070532348, 0.621448160249604, 0.6311621463917804, 0.6400114988673289, 0.6480513952335112, 0.6553369440206682, 0.661922504421846, 0.667861127740716 ], [ 0.5180177472236386, 0.5010861806955489, 0.48332511470212597, 0.4647868988757723, 0.44553814148666826, 0.42565912845412707, 0.40524265721154945, 0.38439250589847596, 0.36322207564283215, 0.3418542155220798, 0.32042387759580826, 0.299086017852315, 0.27803192555201955, 0.25751758957621557, 0.23790698125338838, 0.21972933257499475, 0.20373861456065928, 0.19093992210891014, 0.1825142525604934, 0.1795704930706666, 0.18276281528692429, 0.19200598509613087, 0.20652486569945502, 0.22517864318198372, 0.2467957719843444, 0.27036141712050743, 0.295068833067644, 0.320301654461708, 0.34559574032078477, 0.37060239097626857, 0.39505930320678084, 0.41876937873426406, 0.4415857095671022, 0.4634009503172694, 0.48413965354069655, 0.5037525573777673, 0.5222121506463756, 0.5395090826188396, 0.5556491484533265, 0.5706506873539459, 0.5845422968647341, 0.5973608066963871, 0.609149478599144, 0.6199564114262605, 0.6298331368780801, 0.6388333941615015, 0.6470120726156741, 0.6544243112518245, 0.6611247437193991, 0.6671668767631576 ], [ 0.5100088566744811, 0.49245059987875384, 0.4740691951499176, 0.4549349289741519, 0.4351371906155646, 0.4147843648726703, 0.39400285936015317, 0.37293530137331815, 0.3517382229512448, 0.33058001761554406, 0.30964062309100454, 0.2891152164753813, 0.2692250052868974, 0.2502384744674012, 0.23250520906931138, 0.21649983258338532, 0.20286298448058762, 0.19240809575133147, 0.18604514201979516, 0.18458662825959182, 0.18848387383097379, 0.19764755953160457, 0.21148433013086457, 0.2291084402427747, 0.24957303750904933, 0.2720169377977871, 0.2957204207996328, 0.3201065251775834, 0.3447207766833975, 0.36920719406501673, 0.39328745855110864, 0.41674473897975606, 0.4394116391455454, 0.4611612478161148, 0.48190035509642404, 0.501564129854221, 0.5201117762950668, 0.5375228601342716, 0.5537941144197087, 0.568936612577077, 0.5829732437538894, 0.5959364530430306, 0.6078662240159649, 0.6188082882204501, 0.6288125491828312, 0.6379317090602422, 0.6462200856526845, 0.653732606718676, 0.660523967819712, 0.6666479394270745 ], [ 0.5032209784741586, 0.4851509170041458, 0.4662700242963887, 0.4466667063291403, 0.42645378181084437, 0.4057691277264679, 0.3847752207711563, 0.3636573631243062, 0.3426205702950917, 0.32188547730604095, 0.3016842411915091, 0.28225826548727645, 0.2638604478472642, 0.24676501978537602, 0.23128689477684333, 0.21780833735521346, 0.20680256674557698, 0.19883293061619414, 0.19450033313790854, 0.19432637110433235, 0.19860393803731036, 0.2072918791781842, 0.22001783334522645, 0.23617994205251797, 0.25508008273625693, 0.27602884224775365, 0.2984034406248113, 0.3216684250733757, 0.34537559766976933, 0.36915539135247816, 0.3927062359527835, 0.4157846248199786, 0.4381966382783993, 0.4597908812523457, 0.48045255875664894, 0.5000984083129933, 0.5186722732804669, 0.5361411710748378, 0.552491764826764, 0.5677271836259928, 0.5818641584900462, 0.5949304529990426, 0.6069625729164038, 0.618003740804487, 0.6281021214577541, 0.6373092830302045, 0.6456788776654754, 0.6532655245749305, 0.660123877990252, 0.6663078622733762 ], [ 0.4979153870594855, 0.4794772819164996, 0.46024695009143524, 0.4403296869539551, 0.4198603146734741, 0.39900467214960067, 0.37795978613241915, 0.35695221815866657, 0.33623412273961295, 0.31607677471823886, 0.2967618410240198, 0.27857156777880293, 0.26178025359354085, 0.2466504467148851, 0.23343726772266946, 0.22240178784519943, 0.21382869465668072, 0.2080359823584318, 0.20536018085645363, 0.2061069816382796, 0.21047665501211013, 0.21849543755817313, 0.22998735838750448, 0.24459836346328476, 0.2618556138521907, 0.2812335458667439, 0.3022067084477983, 0.32428336714391437, 0.3470227499266336, 0.37004138663970754, 0.39301321462225164, 0.41566652267444554, 0.43777948294944913, 0.45917518225240117, 0.47971660187212994, 0.49930176084113914, 0.5178591248349321, 0.5353433296291978, 0.5517312419580868, 0.5670183664736371, 0.5812155985686894, 0.5943463163631396, 0.6064438001546533, 0.6175489637526702, 0.6277083792153165, 0.6369725745022577, 0.6453945823436997, 0.6530287180935904, 0.6599295643644476, 0.6661511407162952 ], [ 0.4943334303900766, 0.4757003569282949, 0.4563012261278473, 0.4362558166209241, 0.41571765579123654, 0.3948761998905613, 0.37395747153794145, 0.3532223446046004, 0.3329615446952801, 0.31348649196398226, 0.29511555740112816, 0.27815638304889145, 0.2628867577384333, 0.24953880392345004, 0.238292737744313, 0.22928529745681034, 0.22263264399031787, 0.21845915489226622, 0.21691655296468418, 0.21817814024948423, 0.22240331009218942, 0.22968376295505388, 0.23999456987910692, 0.25317132544371995, 0.2689203357182309, 0.2868532272023985, 0.3065305382494597, 0.3275014991404751, 0.3493337391020756, 0.3716321002229837, 0.3940484957093698, 0.4162854317355635, 0.4380954833063552, 0.45927840487840055, 0.4796769976908442, 0.49917244068806965, 0.5176795128910726, 0.5351419571363161, 0.5515281246895851, 0.5668269725782352, 0.5810444441952525, 0.5942002385796308, 0.6063249585457552, 0.6174576187690649, 0.6276434897676869, 0.6369322510589259, 0.645376425744368, 0.653030068828479, 0.6599476823340025, 0.6661833314940192 ], [ 0.4926729005087998, 0.47404338420744296, 0.4546832864874875, 0.43472366656311795, 0.4143320826558719, 0.39371508024758856, 0.37311887798272214, 0.3528271803731504, 0.3331548096723942, 0.3144358235530683, 0.2970052768199814, 0.28117519496937204, 0.2672079061722681, 0.25529320186165627, 0.2455382145070228, 0.23797778434621547, 0.23260663825711017, 0.22942447349196288, 0.2284763279692415, 0.22986926302461697, 0.23375457092393215, 0.2402794393946798, 0.24952627410534214, 0.26146371398369583, 0.27592684831809244, 0.29262955087122133, 0.3111988841399159, 0.331216931908904, 0.35225852296255844, 0.37391926261703934, 0.3958331441484057, 0.4176815318448905, 0.4391959914024947, 0.46015718536680866, 0.480391496104328, 0.4997665028292751, 0.5181860260447877, 0.535585167164479, 0.5519255856520683, 0.5671911402767967, 0.5813839508061125, 0.5945208947714803, 0.6066305298612856, 0.6177504191245771, 0.6279248292742876, 0.6372027693797682, 0.645636336570115, 0.6532793360791258, 0.6601861444670744, 0.6664107867951916 ], [ 0.49306450422513265, 0.4746536390702234, 0.4555582679232989, 0.4359170857373064, 0.4159062130397112, 0.39574148040022933, 0.37567862082785664, 0.35601014066529235, 0.3370573859497067, 0.3191563454523684, 0.30263640180053664, 0.28779300075071707, 0.27485824502718004, 0.26397706242618313, 0.25519884368990514, 0.24849254559961356, 0.2437858641017924, 0.24101848801139653, 0.24019106948713403, 0.2413903536338204, 0.2447781879360679, 0.2505453872594837, 0.25884567572399697, 0.26973363186139865, 0.28312832649455105, 0.29881179930662455, 0.3164565432026029, 0.33566753608676914, 0.35602464012385326, 0.37711670555468285, 0.39856460615880485, 0.4200341839333541, 0.44124156679942145, 0.4619534025956594, 0.48198404914260384, 0.5011911561841812, 0.5194705686269716, 0.5367511151121256, 0.5529896033031667, 0.5681661903742177, 0.5822802044059848, 0.5953464379001824, 0.6073919037422824, 0.6184530273263236, 0.6285732404194049, 0.6378009391739874, 0.6461877683826133, 0.6537871953528183, 0.6606533389121444, 0.6668400215926041 ], [ 0.49555333573671445, 0.47757965116247847, 0.45897805416799603, 0.43989102403413455, 0.4204974926156969, 0.401014430485159, 0.38169607302568004, 0.3628295432220844, 0.3447254636951218, 0.32770233799536336, 0.31206437456147185, 0.2980743722216087, 0.2859262698162277, 0.2757251014857589, 0.26748344020535386, 0.2611407547096007, 0.2566048767493277, 0.25380543461143856, 0.2527421728200387, 0.2535102369151988, 0.25629063675802016, 0.26130555894983437, 0.26875145971261644, 0.2787324445913376, 0.29121653656114893, 0.30602683028034466, 0.32286446519545414, 0.3413499072646275, 0.3610674588840286, 0.3816027119271196, 0.4025688548096959, 0.42362215399529185, 0.44446894389729263, 0.4648668071599073, 0.484622198985493, 0.5035861443342179, 0.5216490797196337, 0.5387354968129752, 0.5547987649989529, 0.5698163318790298, 0.5837853922025938, 0.5967190520141874, 0.6086429789053568, 0.619592510152151, 0.6296101813510548, 0.6387436347641904, 0.6470438664457895, 0.654563772861343, 0.6613569602561042, 0.6674767829742224 ], [ 0.5000898001188867, 0.48276012491824377, 0.46486774351547056, 0.4465550171159287, 0.4279980817726871, 0.40940740091356853, 0.39102579201936577, 0.3731228220588541, 0.3559844574721348, 0.3398972356702985, 0.32512726468577097, 0.31189622711871595, 0.30035904495274995, 0.29059003870531436, 0.28258473444557775, 0.27628153213615586, 0.271601264971717, 0.2684953333145527, 0.2669878280586496, 0.267196442281103, 0.2693218445780635, 0.27360475180790556, 0.2802617066707102, 0.2894198306929384, 0.3010720059196414, 0.3150650856863003, 0.33111976089263395, 0.3488700140654073, 0.36790747847282684, 0.3878199475225791, 0.408219217165699, 0.42875803175937316, 0.4491382074203814, 0.46911257019254016, 0.4884830237875572, 0.5070964657138157, 0.5248397049110648, 0.5416340990543622, 0.5574303295213295, 0.572203538209409, 0.5859489310141035, 0.5986778821023884, 0.6104145329866943, 0.6211928588883123, 0.6310541644441149, 0.6400449668283021, 0.6482152240360207, 0.6556168677422031, 0.6623026028259267, 0.6683249387683058 ], [ 0.5065323319628726, 0.4900276612105206, 0.4730306437523024, 0.4556797517107053, 0.4381432670312605, 0.4206187063651204, 0.4033297242432306, 0.38651964223836927, 0.37044090082570397, 0.35534024889041016, 0.34144052458110974, 0.3289214476775236, 0.3179036120544178, 0.30844106244131647, 0.3005274176861281, 0.29411773283631404, 0.28916346507838897, 0.28565254551068064, 0.2836427948778263, 0.28327652748813603, 0.2847680005645416, 0.28836312918391555, 0.29428078398965546, 0.3026530840256419, 0.3134835528584673, 0.32663485574664386, 0.3418458201792286, 0.35876760230478955, 0.37700575366587896, 0.3961578469520607, 0.4158415251237848, 0.4357122102398141, 0.45547212008933147, 0.47487299641552555, 0.4937147770912755, 0.511841932695886, 0.529138655874552, 0.5455236628173028, 0.5609450602502559, 0.5753755286897071, 0.5888079451554106, 0.6012514914875603, 0.612728249741587, 0.6232702615643675, 0.6329170160546794, 0.6417133254122318, 0.649707546633932, 0.6569501087790012, 0.6634923077949642, 0.6693853339260306 ], [ 0.514661256528314, 0.4991262813246056, 0.4831702930962285, 0.4669244979743824, 0.45054521061716324, 0.4342122936836193, 0.4181252677979643, 0.4024965418594568, 0.3875414716310012, 0.3734655112015978, 0.3604496248736313, 0.3486362831201916, 0.33811944959513063, 0.3289424150311148, 0.3211065343567859, 0.3145915720304666, 0.3093848049471911, 0.30551230535235513, 0.30306329563039985, 0.30219835164089104, 0.303135264237428, 0.30611249576304217, 0.3113380002708177, 0.3189376056746543, 0.32891842389954185, 0.3411572722195033, 0.3554145293094601, 0.3713655530207931, 0.38863857978991045, 0.4068498323793466, 0.4256307007609329, 0.4446457046228396, 0.4636023074044583, 0.48225457552091705, 0.500402696724294, 0.5178899964170354, 0.5345986338901172, 0.5504447634513284, 0.5653736475995705, 0.5793550041116248, 0.5923787351423577, 0.6044511029592528, 0.6155913668617444, 0.6258288671505947, 0.6352005266473978, 0.6437487330063101, 0.6515195626203687, 0.6585613072633151, 0.6649232664764889, 0.6706547713551686 ], [ 0.5242004967128522, 0.5097382331515379, 0.49492334080054756, 0.47987706682701753, 0.46474089654172335, 0.4496743082476801, 0.43485054046191063, 0.4204501050598062, 0.4066520797027151, 0.393623719628321, 0.381509623841303, 0.3704224468343556, 0.3604376999343628, 0.35159517463183815, 0.3439086229058644, 0.3373834662556763, 0.33203978593861694, 0.32793535858956807, 0.3251819246245587, 0.32394804156033996, 0.32444432440526366, 0.3268915573612137, 0.3314779888801027, 0.3383168084336819, 0.3474157110817484, 0.3586664854459712, 0.3718554921207004, 0.3866894193071264, 0.402827709391779, 0.41991387285156373, 0.4376008567137378, 0.4555687420902803, 0.47353520008778177, 0.4912601655551186, 0.5085464066111691, 0.5252374637090971, 0.5412140856670994, 0.5563899511495487, 0.570707190227848, 0.5841320208715245, 0.5966506786313865, 0.6082657286685341, 0.6189927933953348, 0.6288576953220409, 0.6378939954256615, 0.6461408971827434, 0.6536414818608616, 0.6604412395119216, 0.6665868609406433, 0.67212525785084 ], [ 0.5348425265975639, 0.5215140201354763, 0.5078953679537813, 0.4940960593080743, 0.4802412545368398, 0.46646920837239264, 0.45292712517000666, 0.43976539995514796, 0.4271304839015769, 0.41515701903372815, 0.4039603664744858, 0.39363108693679943, 0.38423313429173983, 0.37580728131352764, 0.36838046353026344, 0.3619803218768637, 0.356652496630788, 0.35247663329354384, 0.3495761780348441, 0.3481174111148593, 0.34829513248703425, 0.3503058644352557, 0.3543135379081008, 0.3604158088228898, 0.3686197104100783, 0.3788326125646439, 0.3908695441929955, 0.4044731919134515, 0.4193403303546622, 0.43514855136108266, 0.4515790295674179, 0.4683333630644349, 0.48514434437381015, 0.5017815539472451, 0.5180530436881748, 0.5338043455490245, 0.5489158235193378, 0.5632991277239371, 0.5768932760897582, 0.5896607055419593, 0.6015835012888372, 0.6126599208492015, 0.6229012687336389, 0.6323291390204329, 0.6409730194321899, 0.6488682368422537, 0.6560542169078174, 0.6625730273754948, 0.668468173975138, 0.6737836186943864 ], [ 0.546272229463463, 0.5341002222625, 0.521692953722261, 0.5091473064416512, 0.4965718808243081, 0.4840844024205359, 0.47180798466161517, 0.4598663429179344, 0.44837829206970664, 0.43745215282975974, 0.4271809892094606, 0.41763980844343934, 0.40888585529415333, 0.4009628116044091, 0.3939090148902584, 0.3877687924466784, 0.38260486093982043, 0.37850877514926207, 0.37560599290708313, 0.37405259415088815, 0.37402222793267503, 0.3756843142231739, 0.37917728509688664, 0.38458269079692686, 0.3919062972798475, 0.4010704854260767, 0.4119189974021723, 0.4242317786853722, 0.43774563784673026, 0.4521761596223517, 0.46723734690621854, 0.4826570293200716, 0.49818748639381594, 0.5136116745923611, 0.528745904508785, 0.5434399200355543, 0.557575239945615, 0.5710624518045403, 0.5838379684600318, 0.5958606013021654, 0.6071081821723276, 0.6175743759926223, 0.6272657632792392, 0.6361992292912535, 0.6443996689897328, 0.6518979997711756, 0.6587294637820824, 0.6649321961589979, 0.6705460331345622, 0.6756115334915571 ], [ 0.5581866409170632, 0.5471616360821987, 0.535948115452796, 0.5246303574132788, 0.5133011570391374, 0.5020594454711772, 0.49100713862758166, 0.48024538272665546, 0.46987054084740365, 0.4599704568024949, 0.45062169491457893, 0.4418885226018615, 0.4338243059533169, 0.42647567234618344, 0.4198892503014023, 0.41412008770702663, 0.4092401173129304, 0.4053444899098046, 0.4025534632536601, 0.40100801311026063, 0.4008584917939949, 0.40224734836784054, 0.4052887153416967, 0.4100489251073956, 0.41653215721448755, 0.4246742382828747, 0.43434551177766023, 0.445361486054939, 0.4574984582820365, 0.4705108734037705, 0.4841476678094604, 0.49816582287608935, 0.5123403665175803, 0.5264708377448014, 0.5403846901422882, 0.5539382998127694, 0.567016252130121, 0.5795294950480241, 0.5914128254823339, 0.6026220546382868, 0.613131094426009, 0.6229291251613713, 0.6320179435848706, 0.6404095464866503, 0.6481239750509687, 0.6551874249416617, 0.6616306143053873, 0.6674873941020252, 0.6727935808850041, 0.6775859902044604 ], [ 0.5703091915118375, 0.5603964422169527, 0.5503340942282836, 0.5401944749398851, 0.5300559788711839, 0.5200010286658396, 0.5101135631061949, 0.500476239378475, 0.4911676577918061, 0.48226003086544156, 0.47381779148838304, 0.46589762561581116, 0.4585502850667366, 0.45182426402886905, 0.4457710206410584, 0.4404509489214507, 0.43593885861955606, 0.43232743670625734, 0.42972718465493565, 0.42826175301893227, 0.42805844014066974, 0.4292347548010707, 0.43188307710902135, 0.43605620680164564, 0.44175663523708847, 0.4489316200928147, 0.45747480728161305, 0.4672336994934718, 0.478021193430218, 0.48962896578948695, 0.501840660485584, 0.5144433920614581, 0.5272367591541678, 0.5400391530382461, 0.5526915548539101, 0.5650592353344513, 0.577031844237977, 0.5885223568416313, 0.5994652776358279, 0.6098144183938506, 0.6195404874034716, 0.628628657448034, 0.6370762247396192, 0.6448904288826925, 0.6520864731568595, 0.6586857626706065, 0.6647143631155128, 0.6702016731416071, 0.6751792973535556, 0.6796801035091199 ], [ 0.5823984229896451, 0.573544763983108, 0.5645734039604506, 0.5555457901856468, 0.5465276505203365, 0.5375873419767911, 0.5287939431923366, 0.5202152660493552, 0.5119160375394253, 0.5039565619506537, 0.4963921925694857, 0.4892738969711638, 0.4826500718496151, 0.47656954783439104, 0.47108544019759835, 0.4662591934776515, 0.4621639079527991, 0.4588859095139739, 0.4565236127600189, 0.45518307834790145, 0.45497026466156354, 0.4559807194411233, 0.4582881643164669, 0.46193386996051333, 0.46691872198377143, 0.47319939266059285, 0.4806891926850387, 0.4892632438468507, 0.49876686812623994, 0.5090257102308959, 0.5198561225960162, 0.5310746404265834, 0.5425058030791551, 0.5539879989249992, 0.565377340519338, 0.5765497881880114, 0.5874018439727726, 0.5978501624575943, 0.6078304006245141, 0.6172955802058144, 0.6262141798535571, 0.6345681207115301, 0.6423507624312322, 0.6495649888762622, 0.6562214334690061, 0.6623368722740904, 0.6679327971409159, 0.6730341702308104, 0.6776683538870255, 0.6818642051285999 ], [ 0.5942519896539009, 0.5863918771771763, 0.5784399553697438, 0.5704480674768475, 0.5624710857488701, 0.5545656350180201, 0.5467887055752599, 0.5391963030159067, 0.5318423257326403, 0.5247778848177047, 0.5180512717413726, 0.5117087230324056, 0.5057960208569543, 0.5003608072906938, 0.4954552965191458, 0.49113887769600106, 0.48747995944105693, 0.4845563676060845, 0.4824537151491562, 0.4812614355446914, 0.481066586223444, 0.48194601269534626, 0.4839579007948766, 0.4871340035766069, 0.49147381303590265, 0.4969416351807405, 0.5034669966754697, 0.5109482114215762, 0.5192584292920464, 0.5282531919541288, 0.5377784652026038, 0.5476782603438277, 0.5578012142196611, 0.5680057814958309, 0.5781639408199835, 0.5881634971766134, 0.5979091715484611, 0.6073227171050435, 0.6163423059535438, 0.624921408971664, 0.6330273568463437, 0.6406397323789873, 0.6477487078931508, 0.6543534099604611, 0.660460367619083, 0.6660820797279906, 0.671235721487343, 0.6759419986686747, 0.6802241499308337, 0.6841070920164899 ], [ 0.6057070963228124, 0.5987675911328153, 0.5917571812324562, 0.5847194236964157, 0.5777000553190178, 0.5707460452489758, 0.5639046259669716, 0.5572224181891656, 0.5507447862954274, 0.5445155647515765, 0.5385772741498804, 0.5329718915020495, 0.527742151795598, 0.5229332427335464, 0.5185946275699481, 0.5147816167406933, 0.5115562384759689, 0.5089869628398662, 0.5071469352561387, 0.5061105788555591, 0.5059487078798547, 0.5067226061428687, 0.5084777929877482, 0.5112383489729451, 0.5150026516402526, 0.5197411701141013, 0.5253966310040938, 0.5318864822303292, 0.5391072411845211, 0.546940091587062, 0.5552570187889367, 0.5639268313027218, 0.5728205632419139, 0.5818159360661004, 0.590800734965264, 0.5996750982497722, 0.6083528167326575, 0.6167617959694879, 0.6248438556563596, 0.6325540378379604, 0.6398595784193434, 0.6467386723033838, 0.6531791364669131, 0.6591770506050179, 0.6647354332647865, 0.6698629932867636, 0.6745729818837419, 0.6788821594881246, 0.6828098831218427, 0.6863773139860939 ], [ 0.6166385200374244, 0.6105431921827652, 0.6043937929008906, 0.5982268443508159, 0.5920804844564163, 0.5859937888420819, 0.5800061196496109, 0.5741565865590736, 0.5684837127930171, 0.5630253924392332, 0.5578192004441301, 0.5529030706049581, 0.5483162910936968, 0.5441006878736766, 0.5403017858897814, 0.5369696730804424, 0.5341592624527753, 0.5319296703240797, 0.5303425149216736, 0.5294590869236011, 0.5293365341441574, 0.5300234023911284, 0.5315550392298668, 0.533949453487352, 0.5372042019751585, 0.5412947433314037, 0.5461744838573112, 0.5517764908971874, 0.5580166215851692, 0.564797653853152, 0.5720139349354462, 0.5795560775125027, 0.5873153134798327, 0.5951872301202245, 0.6030747347677125, 0.6108902011875224, 0.6185568327581874, 0.6260093313299455, 0.6331939891077575, 0.6400683295846314, 0.6466004185717921, 0.6527679532224773, 0.6585572198998422, 0.6639619937789928, 0.6689824360615022, 0.6736240296248364, 0.6778965812417789, 0.6818133082226109, 0.6853900192776562, 0.6886443932888825 ], [ 0.6269551797896903, 0.6216270448488774, 0.616258370893535, 0.610879769770679, 0.6055230974221435, 0.6002209845900576, 0.5950064161102997, 0.589912418634661, 0.584971916477454, 0.5802178046558818, 0.5756832648650806, 0.5714023136671119, 0.567410524834575, 0.5637458151155771, 0.5604491334991675, 0.557564859589461, 0.5551407087224819, 0.5532269695768162, 0.5518749684685951, 0.5511347593068138, 0.5510521656688541, 0.5516654292839559, 0.5530018203100846, 0.5550746139705202, 0.5578808196150842, 0.5613999615333859, 0.5655940719862051, 0.5704088947040483, 0.5757761446675378, 0.5816165554290064, 0.5878433846434715, 0.5943660436356988, 0.6010935576188705, 0.6079376328166354, 0.6148151874229696, 0.621650280431049, 0.6283754364043378, 0.6349324110006466, 0.6412724713313346, 0.647356279430513, 0.6531534697554929, 0.6586420064023302, 0.6638073958007529, 0.668641818542766, 0.673143231456854, 0.6773144791855611, 0.6811624439834282, 0.6846972534965947, 0.6879315589547587, 0.6908798904017939 ], [ 0.6365959795974885, 0.6319596271538912, 0.6272935911056435, 0.6226235468801457, 0.6179761661312332, 0.6133788021560918, 0.6088592292930988, 0.6044454762483991, 0.6001657894425338, 0.5960487511274303, 0.5921235573646992, 0.5884204335074432, 0.5849711319384396, 0.5818094228578284, 0.57897146005562, 0.5764958870646751, 0.5744235518148918, 0.5727967248466164, 0.5716577684148727, 0.5710472773013371, 0.5710017970267645, 0.5715513069255735, 0.5727167176846781, 0.5745076608035191, 0.5769208323303574, 0.5799390954530691, 0.5835314558880225, 0.5876539176016357, 0.5922511240835785, 0.5972586096717512, 0.6026054374065203, 0.6082169875398156, 0.6140176797781655, 0.6199334534369063, 0.6258938820922595, 0.6318338531840125, 0.6376947910734408, 0.6434254401131093, 0.6489822509138402, 0.6543294287886865, 0.6594387100807708, 0.6642889319768932, 0.6688654566826169, 0.6731595033913679, 0.6771674328032153, 0.6808900200958109, 0.6843317439064279, 0.6875001114430562, 0.6904050334828734, 0.6930582577721012 ], [ 0.6455254254729725, 0.6415085045493291, 0.6374705744163865, 0.6334331966866623, 0.6294187578961439, 0.6254502651082466, 0.6215511919924308, 0.6177454006682424, 0.6140571593901542, 0.6105112658251621, 0.6071332701400901, 0.6039497722399015, 0.6009887453340755, 0.5982798168011194, 0.5958544212452818, 0.5937457342077412, 0.5919883021751731, 0.5906173076856497, 0.5896674472112184, 0.5891714505541821, 0.5891583268723737, 0.5896514748166111, 0.5906668325241446, 0.5922112587821224, 0.5942813247549568, 0.5968626567805156, 0.5999299109396627, 0.6034473896840291, 0.6073702418245973, 0.6116461305982182, 0.6162172178508426, 0.6210222984782953, 0.625998926540656, 0.6310853980348231, 0.6362224887141218, 0.6413548821599816, 0.6464322582929599, 0.651410042140628, 0.6562498351969971, 0.6609195668003437, 0.6653934113078449, 0.6696515196873115, 0.6736796128938373, 0.6774684804056703, 0.6810134217126514, 0.6843136622820057, 0.6873717692171644, 0.6901930859017295, 0.6927851996316442, 0.6951574517012851 ], [ 0.653729335810357, 0.6502635433064633, 0.6467836282634578, 0.6433077224341732, 0.6398546570551504, 0.6364438340789237, 0.6330951403132854, 0.6298289194756376, 0.6266660118965586, 0.6236278629877239, 0.6207366898594844, 0.6180156815312734, 0.6154891936601412, 0.6131828859297083, 0.6111237419379376, 0.6093399103494909, 0.607860314422505, 0.6067139957680726, 0.6059291865978909, 0.6055321399731525, 0.6055457849889859, 0.605988307430604, 0.6068717800296025, 0.6082009749700256, 0.6099724820713797, 0.6121742296334773, 0.6147854650500666, 0.6177772052735471, 0.6211131204487782, 0.6247507744390725, 0.6286431185729072, 0.6327401221119572, 0.6369904243205167, 0.6413429060757252, 0.645748099909215, 0.6501593821195466, 0.6545339155049651, 0.6588333336176242, 0.6630241755795441, 0.6670780937536156, 0.6709718650164113, 0.6746872406162168, 0.6782106704560654, 0.6815329360188879, 0.6846487228907885, 0.6875561596497475, 0.6902563453256773, 0.6927528831058021, 0.6950514337242112, 0.6971592981949566 ], [ 0.6612108325865728, 0.6582325246507702, 0.6552455078485325, 0.6522650479010275, 0.6493070116266034, 0.6463877882272054, 0.6435242447649017, 0.6407337239461218, 0.6380340876283972, 0.6354438026603421, 0.6329820571127622, 0.6306688854453716, 0.6285252719119551, 0.6265731941295805, 0.6248355649859632, 0.623336032569368, 0.622098605725636, 0.6211470874704206, 0.6205043189666057, 0.620191261029997, 0.620225964973028, 0.6206225062046556, 0.6213899685632908, 0.6225315718620887, 0.6240440280775417, 0.625917193458643, 0.6281340569678809, 0.6306710737823136, 0.6334988206891683, 0.6365829224954044, 0.6398851783901753, 0.6433648063646799, 0.6469797224581018, 0.6506877785008317, 0.6544478949746836, 0.6582210420359815, 0.6619710391976148, 0.6656651606419802, 0.6692745472601533, 0.6727744375392583, 0.6761442371481732, 0.6793674516997117, 0.6824315091420495, 0.6853274981162485, 0.6880498469891245, 0.690595965660822, 0.6929658690988916, 0.6951617982127644, 0.6971878504069703, 0.6990496291076667 ], [ 0.6679867110151609, 0.6654372316988852, 0.6628832402058132, 0.660337599685503, 0.6578136922400674, 0.6553253721057581, 0.6528869447428246, 0.6505131755485505, 0.6482193280089866, 0.6460212259455655, 0.6439353284522359, 0.6419787997916718, 0.6401695508169154, 0.638526224477194, 0.6370680967594351, 0.6358148669560663, 0.6347863179974558, 0.6340018387144009, 0.6334798145403411, 0.6332369098091373, 0.6332872813187171, 0.6336417767579243, 0.6343071805748205, 0.6352855721011016, 0.6365738554010716, 0.638163507737119, 0.6400405752677504, 0.6421859230632211, 0.644575724635945, 0.6471821567501321, 0.6499742505341377, 0.6529188412034101, 0.6559815563321617, 0.659127785995788, 0.6623235859910562, 0.6655364761345103, 0.6687361077161302, 0.6718947861247874, 0.674987845390883, 0.6779938802310668, 0.680894847821253, 0.683676055958394, 0.6863260567009525, 0.6888364653294476, 0.6912017239197209, 0.6934188273478514, 0.6954870274845814, 0.6974075289704819, 0.6991831875108128, 0.7008182192514638 ], [ 0.6740842277677888, 0.6719100275773104, 0.669734507068947, 0.6675685083254275, 0.6654233207117501, 0.6633106535447291, 0.6612426275556857, 0.659231786200433, 0.6572911247907711, 0.6554341316294977, 0.6536748311418334, 0.6520278148942964, 0.6505082430031245, 0.6491317964612022, 0.6479145610346266, 0.646872826126372, 0.6460227876181323, 0.6453801520242093, 0.644959649698504, 0.6447744762485633, 0.6448356923028666, 0.6451516207722368, 0.6457272862759161, 0.64656394238453, 0.647658728295928, 0.6490044877738875, 0.6505897706342855, 0.652399022311227, 0.6544129519210311, 0.6566090555813446, 0.6589622610290082, 0.6614456527734376, 0.6640312344601681, 0.6666906865527077, 0.6693960821641266, 0.6721205309039425, 0.674838728888013, 0.6775274016026348, 0.6801656343170634, 0.6827350916378007, 0.6852201332732432, 0.687607837022753, 0.6898879424798039, 0.6920527301162438, 0.6940968505272148, 0.6960171179180177, 0.6978122806504196, 0.6994827800543639, 0.7010305069321906, 0.7024585633769227 ], [ 0.6795383128393226, 0.6776909126544198, 0.675844557879515, 0.6740083849734199, 0.6721919136784985, 0.6704050310207335, 0.6686579883785697, 0.666961411182923, 0.6653263184628702, 0.6637641467345529, 0.6622867699008765, 0.6609065042423238, 0.6596360856634251, 0.6584886055679866, 0.6574773924773237, 0.6566158290621459, 0.6559170987073707, 0.6553938618791059, 0.6550578699283957, 0.6549195317890486, 0.6549874563554465, 0.6552679991451889, 0.6557648452428398, 0.6564786608286909, 0.6574068425578846, 0.6585433878701321, 0.6598789006261662, 0.6614007362817117, 0.6630932803092315, 0.6649383439451526, 0.6669156535751475, 0.6690034048539518, 0.6711788502868008, 0.6734188893969296, 0.6757006333768857, 0.6780019206730165, 0.6803017655938252, 0.6825807280891104, 0.6848211987357776, 0.6870075982454065, 0.6891264951912239, 0.6911666489988132, 0.6931189875397985, 0.6949765299866925, 0.6967342660648469, 0.6983890026386282, 0.6999391878648904, 0.7013847220991418, 0.7027267634901349, 0.7039675348635458 ], [ 0.6843891898156451, 0.6828250326447957, 0.6812636127130957, 0.6797126233052924, 0.6781800834555851, 0.6766743281329939, 0.6752040071111193, 0.6737780913443459, 0.6724058839315784, 0.6710970308446006, 0.6698615247289043, 0.6687096935044375, 0.6676521644901529, 0.6666997946359307, 0.665863558407439, 0.6651543870748028, 0.6645829566011003, 0.6641594258312024, 0.6638931318794579, 0.6637922549780226, 0.6638634699417807, 0.6641116051747172, 0.6645393322089659, 0.6651469087317967, 0.6659319957722006, 0.6668895653343221, 0.6680119087074534, 0.669288748599703, 0.6707074509053327, 0.6722533251009181, 0.6739099966445243, 0.6756598308052297, 0.6774843853191833, 0.6793648691513936, 0.6812825862281361, 0.6832193459307412, 0.6851578259642824, 0.6870818774778868, 0.6889767666026065, 0.6908293505526658, 0.6926281898682722, 0.694363601123895, 0.6960276564342537, 0.6976141373815387, 0.6991184516324181, 0.7005375206138376, 0.7018696462878496, 0.7031143644236255, 0.704272290916516, 0.7053449667423305 ], [ 0.6886803781534961, 0.6873606014934506, 0.6860447103678485, 0.6847391747555045, 0.6834507388607087, 0.6821864143931499, 0.6809534793092378, 0.6797594805565752, 0.6786122381014212, 0.6775198462113734, 0.6764906667596964, 0.6755333083912095, 0.6746565849325498, 0.6738694466196906, 0.6731808786883375, 0.6725997636903915, 0.6721347065242961, 0.6717938244450397, 0.6715845079812057, 0.6715131623656755, 0.6715849423601399, 0.6718034957959892, 0.6721707324004508, 0.6726866342823528, 0.6733491227373882, 0.6741539929054918, 0.6750949235579753, 0.6761635643346667, 0.6773496975967307, 0.6786414672231043, 0.6800256626107142, 0.6814880431777559, 0.6830136870027954, 0.6845873468908342, 0.6861937980301346, 0.6878181632720528, 0.6894462046462927, 0.6910645727095746, 0.6926610084257202, 0.6942244952416192, 0.6957453616678598, 0.6972153368712368, 0.69862756347693, 0.6999765729517022, 0.7012582296274109, 0.7024696496856545, 0.7036091013343386, 0.7046758920459166, 0.7056702481735867, 0.7065931915871639 ], [ 0.6924570454241358, 0.691347199735823, 0.6902419559198996, 0.6891467460693826, 0.6880672308061289, 0.6870092939126435, 0.6859790401439162, 0.6849827947452185, 0.6840271023048812, 0.6831187216903324, 0.6822646130583457, 0.6814719124182359, 0.6807478890831448, 0.6800998816776508, 0.6795352092532043, 0.6790610555163856, 0.6786843261505181, 0.6784114815850506, 0.6782483501433894, 0.6781999290256803, 0.6782701827756407, 0.678461850462955, 0.6787762735531078, 0.6792132561844814, 0.679770968286101, 0.6804458997265197, 0.681232870676725, 0.6821250998792495, 0.6831143288761653, 0.6841909968029004, 0.685344457409972, 0.6865632277666158, 0.6878352567705527, 0.6891482011766441, 0.6904896973092457, 0.6918476178077841, 0.6932103044911547, 0.6945667705094661, 0.6959068671791582, 0.6972214130894434, 0.6985022850795787, 0.6997424724146344, 0.7009360968713807, 0.702078402462917, 0.7031657191892816, 0.7041954055331872, 0.7051657744718445, 0.7060760076019791, 0.7069260616315988, 0.707716571032233 ], [ 0.695764675027026, 0.6948344083264973, 0.6939091228593492, 0.6929933700984319, 0.6920918900190489, 0.6912096061878656, 0.690351622477723, 0.6895232200568069, 0.6887298526742583, 0.6879771376827737, 0.6872708397783251, 0.6866168441800856, 0.686021115998839, 0.6854896429138143, 0.6850283590331714, 0.6846430489512978, 0.6843392324895499, 0.684122032319896, 0.6839960284822051, 0.6839651055412638, 0.6840322995998401, 0.6841996534081431, 0.6844680882399661, 0.6848373009489239, 0.6853056936532942, 0.6858703418815751, 0.6865270048729798, 0.6872701792558219, 0.6880931947450912, 0.6889883480383545, 0.689947068955564, 0.690960111228383, 0.6920177593034139, 0.693110042120187, 0.6942269450343981, 0.6953586118020172, 0.6964955297050222, 0.6976286923486837, 0.6987497362539263, 0.6998510489770335, 0.7009258480041637, 0.7019682310074807, 0.7029731991592418, 0.7039366560528307, 0.7048553853717836, 0.7057270107939466, 0.7065499417456986, 0.70732330856625, 0.70804689044339, 0.7087210391786166 ], [ 0.6986480143072219, 0.6978707385792444, 0.697098566578279, 0.6963353031335963, 0.6955849069856085, 0.6948514859437707, 0.6941392926563609, 0.6934527198234347, 0.6927962932540259, 0.6921746607928714, 0.6915925748739407, 0.6910548663526198, 0.690566407375168, 0.690132061399964, 0.6897566191067125, 0.6894447198068658, 0.6892007590597441, 0.6890287844312043, 0.6889323826045207, 0.6889145622462948, 0.6889776380167768, 0.6891231217752332, 0.6893516272720533, 0.6896627943830013, 0.6900552382174542, 0.6905265272626997, 0.6910731931990747, 0.6916907732626814, 0.6923738841934087, 0.6931163250413308, 0.6939112045572274, 0.6947510876784457, 0.6956281548167713, 0.6965343672943223, 0.6974616323479976, 0.6984019615870858, 0.699347617568883, 0.7002912441634266, 0.7012259775148161, 0.7021455355811903, 0.703044285367927, 0.7039172879951295, 0.7047603226158036, 0.7055698908988205, 0.7063432043013402, 0.7070781566834308, 0.7077732849784952, 0.708427720649315, 0.7090411345575557, 0.7096136776822038 ], [ 0.7011502685611989, 0.700502820275206, 0.6998604080895957, 0.6992262046654992, 0.6986035070813584, 0.6979957319542528, 0.6974064105464783, 0.696839182886143, 0.6962977896398769, 0.6957860602388716, 0.6953078956132135, 0.6948672438698469, 0.6944680673871467, 0.6941143001143754, 0.6938097943626524, 0.6935582570421018, 0.693363176103447, 0.6932277388270018, 0.6931547444961231, 0.6931465148130539, 0.6932048060773389, 0.6933307275724645, 0.6935246707340266, 0.6937862534672417, 0.6941142834391785, 0.6945067433214377, 0.6949607998631571, 0.6954728374181152, 0.6960385152347425, 0.6966528465495637, 0.697310296401173, 0.6980048941841841, 0.6987303563469079, 0.699480214330605, 0.7002479428511555, 0.7010270839094797, 0.7018113624384885, 0.7025947901920712, 0.7033717552899981, 0.7041370956867741, 0.704886155673746, 0.7056148253035521, 0.7063195633078913, 0.7069974046400159, 0.7076459542008574, 0.7082633686014055, 0.7088483279814543, 0.7093999999597891, 0.7099179977508987, 0.7104023343677708 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "0_0", "1_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0" ], "type": "scatter", "x": [ 0.34217432141304016, 0.49329187721014023, 0.03442935086786747, 0.8151316866278648, 0.10702817793935537, 0.15397833473980427, 0.32886142417616926, 0.3022392674499087, 0.3611633012993348, 0.38960474950481955, 0.35595704357454766, 0.3591995306909772, 0.2988192359625756, 0.2857886850485792, 0.4255293955641838, 0.36418872679439723, 0.4077175209516003, 0.37368718227915865, 0.3959124030895165 ], "xaxis": "x", "y": [ 0.41594523191452026, 0.28089929558336735, 0.5274388743564487, 0.164493297226727, 0.0304862754419446, 0.18754788022488356, 0.4365137717989733, 0.4532273256154554, 0.3937091937478853, 0.3509256262217375, 0.4134012568582344, 0.4372895504188445, 0.43769913170721025, 0.4235476065141815, 0.4818146343722775, 0.34521938267847957, 0.27751476955603543, 0.32308314032684204, 0.3125128780064846 ], "yaxis": "y" }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "showlegend": false, "text": [ "0_0", "1_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0" ], "type": "scatter", "x": [ 0.34217432141304016, 0.49329187721014023, 0.03442935086786747, 0.8151316866278648, 0.10702817793935537, 0.15397833473980427, 0.32886142417616926, 0.3022392674499087, 0.3611633012993348, 0.38960474950481955, 0.35595704357454766, 0.3591995306909772, 0.2988192359625756, 0.2857886850485792, 0.4255293955641838, 0.36418872679439723, 0.4077175209516003, 0.37368718227915865, 0.3959124030895165 ], "xaxis": "x2", "y": [ 0.41594523191452026, 0.28089929558336735, 0.5274388743564487, 0.164493297226727, 0.0304862754419446, 0.18754788022488356, 0.4365137717989733, 0.4532273256154554, 0.3937091937478853, 0.3509256262217375, 0.4134012568582344, 0.4372895504188445, 0.43769913170721025, 0.4235476065141815, 0.4818146343722775, 0.34521938267847957, 0.27751476955603543, 0.32308314032684204, 0.3125128780064846 ], "yaxis": "y2" } ], "layout": { "annotations": [ { "font": { "size": 14 }, "showarrow": false, "text": "Mean", "x": 0.25, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 14 }, "showarrow": false, "text": "Standard Error", "x": 0.8, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" } ], "autosize": false, "height": 450, "hovermode": "closest", "legend": { "orientation": "h", "x": 0, "y": -0.25 }, "margin": { "b": 100, "l": 35, "pad": 0, "r": 35, "t": 35 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "width": 950, "xaxis": { "anchor": "y", "autorange": false, "domain": [ 0.05, 0.45 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "xaxis2": { "anchor": "y2", "autorange": false, "domain": [ 0.6, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "yaxis": { "anchor": "x", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x2" }, "type": "linear" }, "yaxis2": { "anchor": "x2", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "type": "linear" } } }, "text/html": [ "