{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Loop API Example on Hartmann6\n", "\n", "The loop API is the most lightweight way to do optimization in Ax. The user makes one call to `optimize`, which performs all of the optimization under the hood and returns the optimized parameters.\n", "\n", "For more customizability of the optimization procedure, consider the Service or Developer API." ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "data": { "text/html": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-04 18:31:29] ax.utils.notebook.plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.\n" ] }, { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "import numpy as np\n", "\n", "from ax.plot.contour import plot_contour\n", "from ax.plot.trace import optimization_trace_single_method\n", "from ax.service.managed_loop import optimize\n", "from ax.metrics.branin import branin\n", "from ax.utils.measurement.synthetic_functions import hartmann6\n", "from ax.utils.notebook.plotting import render, init_notebook_plotting\n", "\n", "init_notebook_plotting()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 1. Define evaluation function\n", "\n", "First, we define an evaluation function that is able to compute all the metrics needed for this experiment. This function needs to accept a set of parameter values and can also accept a weight. It should produce a dictionary of metric names to tuples of mean and standard error for those metrics." ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": true }, "outputs": [], "source": [ "def hartmann_evaluation_function(parameterization):\n", " x = np.array([parameterization.get(f\"x{i+1}\") for i in range(6)])\n", " # In our case, standard error is 0, since we are computing a synthetic function.\n", " return {\"hartmann6\": (hartmann6(x), 0.0), \"l2norm\": (np.sqrt((x ** 2).sum()), 0.0)}" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If there is only one metric in the experiment – the objective – then evaluation function can return a single tuple of mean and SEM, in which case Ax will assume that evaluation corresponds to the objective. It can also return only the mean as a float, in which case Ax will treat SEM as unknown and use a model that can infer it. For more details on evaluation function, refer to the \"Trial Evaluation\" section in the docs." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 2. Run optimization\n", "The setup for the loop is fully compatible with JSON. The optimization algorithm is selected based on the properties of the problem search space." ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-04 18:31:30] 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 11-04 18:31:30] 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 11-04 18:31:30] 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 11-04 18:31:30] 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 11-04 18:31:30] 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 11-04 18:31:30] 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" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-04 18:31:30] ax.service.managed_loop: Started full optimization with 30 steps.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-04 18:31:30] ax.service.managed_loop: Running optimization trial 1...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-04 18:31:30] ax.service.managed_loop: Running optimization trial 2...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-04 18:31:30] ax.service.managed_loop: Running optimization trial 3...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-04 18:31:30] ax.service.managed_loop: Running optimization trial 4...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-04 18:31:30] ax.service.managed_loop: Running optimization trial 5...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-04 18:31:30] ax.service.managed_loop: Running optimization trial 6...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-04 18:31:30] ax.service.managed_loop: Running optimization trial 7...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/models/torch/utils.py:274: UserWarning:\n", "\n", "This overload of nonzero is deprecated:\n", "\tnonzero()\n", "Consider using one of the following signatures instead:\n", "\tnonzero(*, bool as_tuple) (Triggered internally at /pytorch/torch/csrc/utils/python_arg_parser.cpp:882.)\n", "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-04 18:31:34] ax.service.managed_loop: Running optimization trial 8...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-04 18:31:38] ax.service.managed_loop: Running optimization trial 9...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-04 18:31:43] ax.service.managed_loop: Running optimization trial 10...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-04 18:31:47] ax.service.managed_loop: Running optimization trial 11...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-04 18:31:51] ax.service.managed_loop: Running optimization trial 12...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-04 18:31:54] ax.service.managed_loop: Running optimization trial 13...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-04 18:31:58] ax.service.managed_loop: Running optimization trial 14...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-04 18:32:01] ax.service.managed_loop: Running optimization trial 15...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-04 18:32:05] ax.service.managed_loop: Running optimization trial 16...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-04 18:32:09] ax.service.managed_loop: Running optimization trial 17...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-04 18:32:12] ax.service.managed_loop: Running optimization trial 18...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-04 18:32:15] ax.service.managed_loop: Running optimization trial 19...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-04 18:32:19] ax.service.managed_loop: Running optimization trial 20...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-04 18:32:21] ax.service.managed_loop: Running optimization trial 21...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-04 18:32:25] ax.service.managed_loop: Running optimization trial 22...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-04 18:32:28] ax.service.managed_loop: Running optimization trial 23...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-04 18:32:31] ax.service.managed_loop: Running optimization trial 24...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-04 18:32:35] ax.service.managed_loop: Running optimization trial 25...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-04 18:32:38] ax.service.managed_loop: Running optimization trial 26...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-04 18:32:40] ax.service.managed_loop: Running optimization trial 27...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-04 18:32:43] ax.service.managed_loop: Running optimization trial 28...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-04 18:32:46] ax.service.managed_loop: Running optimization trial 29...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-04 18:32:47] ax.service.managed_loop: Running optimization trial 30...\n" ] } ], "source": [ "best_parameters, values, experiment, model = optimize(\n", " parameters=[\n", " {\n", " \"name\": \"x1\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " \"value_type\": \"float\", # Optional, defaults to inference from type of \"bounds\".\n", " \"log_scale\": False, # Optional, defaults to False.\n", " },\n", " {\n", " \"name\": \"x2\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x3\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x4\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x5\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x6\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " ],\n", " experiment_name=\"test\",\n", " objective_name=\"hartmann6\",\n", " evaluation_function=hartmann_evaluation_function,\n", " minimize=True, # Optional, defaults to False.\n", " parameter_constraints=[\"x1 + x2 <= 20\"], # Optional.\n", " outcome_constraints=[\"l2norm <= 1.25\"], # Optional.\n", " total_trials=30, # Optional.\n", ")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "And we can introspect optimization results:" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'x1': 0.2111869947334017,\n", " 'x2': 0.12748418169666575,\n", " 'x3': 0.4592005157915138,\n", " 'x4': 0.26838440377634537,\n", " 'x5': 0.3245911165689549,\n", " 'x6': 0.664586136373199}" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "best_parameters" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'l2norm': 0.9438129560665687, 'hartmann6': -3.3011967181996513}" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "means, covariances = values\n", "means" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "For comparison, minimum of Hartmann6 is:" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "-3.32237" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "hartmann6.fmin" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 3. Plot results\n", "Here we arbitrarily select \"x1\" and \"x2\" as the two parameters to plot for both metrics, \"hartmann6\" and \"l2norm\"." ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "autocolorscale": false, "autocontour": true, "colorbar": { "tickfont": { "size": 8 }, "ticksuffix": "", "x": 0.45, "y": 0.5 }, "colorscale": [ [ 0.0, "rgb(247,252,253)" ], [ 0.125, "rgb(229,245,249)" ], [ 0.25, "rgb(204,236,230)" ], [ 0.375, "rgb(153,216,201)" ], [ 0.5, "rgb(102,194,164)" ], [ 0.625, "rgb(65,174,118)" ], [ 0.75, "rgb(35,139,69)" ], [ 0.875, "rgb(0,109,44)" ], [ 1.0, "rgb(0,68,27)" ] ], "contours": { "coloring": "heatmap" }, "hoverinfo": "x+y+z", "ncontours": 25, "type": "contour", "x": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "xaxis": "x", "y": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "yaxis": "y", "z": [ [ -2.6231011924782934, -2.6795909254176635, -2.731967405208625, -2.779632596151543, -2.821993153813973, -2.858476482187781, -2.888549192835402, -2.911736900440288, -2.9276437583499204, -2.9359699009479865, -2.936525197660216, -2.9292383293514175, -2.914160763787308, -2.891465409286601, -2.861439746118351, -2.8244735552951736, -2.7810421148848787, -2.7316865186490773, -2.6769931317576314, -2.6175740141269896, -2.5540496047788284, -2.487034339388289, -2.417125353093256, -2.3448940721300624, -2.2708803132907436, -2.1955884479602137, -2.1194852010711474, -2.042998706936466, -1.966518508275443, -1.8903962475805822, -1.814946854825895, -1.7404500805781955, -1.6671522593354908, -1.5952682157711204, -1.5249832480557102, -1.4564551389535043, -1.3898161580827693, -1.3251750284817672, -1.2626188381126175, -1.2022148826815573, -1.1440124305485324, -1.0880444038424437, -1.0343289724232094, -0.9828710592196694, -0.9336637568667355, -0.8866896565792781, -0.8419220909252951, -0.7993262926683515, -0.7588604721964751, -0.7204768162860171 ], [ -2.665601126940759, -2.7241200864101125, -2.778450314298215, -2.8279598537570374, -2.8720182492065502, -2.9100137318917083, -2.941373423532368, -2.965585436481742, -2.9822210308020027, -2.990954599402133, -2.991579490715513, -2.98401845688877, -2.96832826112813, -2.9446981854546017, -2.9134421164608035, -2.8749842897936597, -2.829839800696445, -2.7785920042693473, -2.721869305462186, -2.660323495411797, -2.5946110469873, -2.525377998206613, -2.4532484414380686, -2.3788162607182333, -2.302639589539658, -2.2252374333676275, -2.147087951933495, -2.0686279791358197, -1.9902534449074083, -1.9123204401487062, -1.8351467284618006, -1.7590135572912273, -1.684167658337536, -1.6108233552354543, -1.539164717672836, -1.4693477171127287, -1.401502351385154, -1.3357347146076166, -1.2721289958861923, -1.2107493955657875, -1.1516419518278227, -1.0948362734696224, -1.0403471769661445, -0.9881762275855474, -0.938313185541206, -0.8907373590228452, -0.8454188665437259, -0.8023198114375689, -0.761395371592088, -0.7225948076572906 ], [ -2.7025999858602807, -2.762977409185253, -2.8191024205815083, -2.8703115931351775, -2.9159396379933007, -2.9553375353799405, -2.9878943181549387, -3.0130613856229322, -3.0303773119893256, -3.0394905338395413, -3.0401774875612495, -3.032354681795009, -3.01608410668448, -2.991571610538609, -2.9591577790977537, -2.9193014243325557, -2.872557148133529, -2.819549670469324, -2.7609479352607176, -2.6974414504462025, -2.6297203490881285, -2.5584597137182454, -2.48430801477099, -2.4078791235617243, -2.3297472173438716, -2.2504439101408047, -2.170457036935547, -2.0902306344756574, -2.0101657696599875, -1.9306219550224295, -1.8519189590921252, -1.7743388703731653, -1.6981283112458563, -1.6235007257283716, -1.5506386854658345, -1.4796961735182061, -1.410800816913142, -1.3440560475139711, -1.2795431772380588, -1.2173233785577757, -1.157439564900838, -1.0999181683186918, -1.0447708138226992, -0.9919958912639414, -0.9415800266807675, -0.8934994557619603, -0.8477213025525833, -0.8042047668292266, -0.7629022237418863, -0.7237602394005069 ], [ -2.7335331048611695, -2.7955562745444524, -2.853274642370047, -2.9059966849961962, -2.9530257387597234, -2.993678860470059, -3.027309931656927, -3.0533359383249836, -3.071264274589273, -3.080718140589255, -3.0814571819386583, -3.073391468665516, -3.0565879202760797, -3.031268563153751, -2.997800022418394, -2.956674521991268, -2.9084843628694497, -2.8538931906020015, -2.7936075477472206, -2.728351407931367, -2.65884520348265, -2.5857897711918234, -2.509854881145905, -2.431671618555866, -2.351827782705918, -2.270865535169479, -2.1892806694745817, -2.1075230220741203, -2.025997670545465, -1.9450666622657247, -1.865051088303207, -1.7862333687217227, -1.7088596524104063, -1.633142261205156, -1.5592621275137006, -1.487371189002213, -1.417594714584379, -1.3500335439622089, -1.284766228989569, -1.2218510696542415, -1.161328040857935, -1.1032206086809535, -1.0475374366495025, -0.9942739838341326, -0.9434139975193142, -0.8949309037927221, -0.8487890997853986, -0.8049451515113104, -0.7633489013551338, -0.7239444892779336 ], [ -2.757881409306928, -2.8212969833879162, -2.880365696105054, -2.9343721220129346, -2.982592795842675, -3.0243155896784764, -3.05886381810799, -3.085624095634186, -3.104075773426416, -3.1138188412883343, -3.114597103918913, -3.10631428386132, -3.0890416613505254, -3.063016227226184, -3.0286286607361976, -2.9864017549218236, -2.9369618859545072, -2.881007442578145, -2.81927810664483, -2.752527847138375, -2.6815031302732355, -2.6069266428686526, -2.5294860069530625, -2.449826569506436, -2.368547289204714, -2.286198865946725, -2.203283444541039, -2.1202553999231797, -2.0375228514218904, -1.9554496562892443, -1.8743577052652156, -1.7945293937279019, -1.7162101777320746, -1.6396111497430217, -1.5649115873446655, -1.492261441766609, -1.4217837431454212, -1.353576906964346, -1.2877169317599675, -1.2242594824100939, -1.1632418564611604, -1.1046848332668473, -1.0485944073828801, -0.994963408843034, -0.9437730137440753, -0.894994149085016, -0.8485887961106402, -0.8045111965605941, -0.7627089662682824, -0.7231241205247145 ], [ -2.7751905890199895, -2.839708636470178, -2.8998469500938207, -2.954871055658764, -3.0040361969745426, -3.046607047879734, -3.0818824838444483, -3.109224540767179, -3.1280894518216202, -3.1380576146219115, -3.1388590912137646, -3.1303918415914014, -3.1127306562256596, -3.086125237757476, -3.050986710650789, -3.00786366159136, -2.957410961941698, -2.9003557998783513, -2.837465092864461, -2.769517246789353, -2.6972797476916983, -2.621492770378227, -2.5428581114410136, -2.46203236225714, -2.3796232218532607, -2.2961880286287184, -2.2122338162967528, -2.1282183976276943, -2.044552128860825, -1.961600112663373, -1.879684669626466, -1.7990879578490762, -1.7200546546896045, -1.6427946392641672, -1.5674856319688466, -1.494275760283966, -1.4232860297444494, -1.3546126861477708, -1.2883294604489688, -1.2244896918073016, -1.1631283272246427, -1.1042637983924126, -1.0478997779249886, -0.9940268182443933, -0.9426238771055175, -0.893659734201566, -0.8470943035367502, -0.8028798463538607, -0.7609620894030302, -0.7212812532694244 ], [ -2.785089144768275, -2.8503899178950958, -2.911286301331013, -2.967030101068313, -3.016861468936182, -3.0600288107729066, -3.095813912535893, -3.1235615017455576, -3.1427112554845955, -3.1528292007252956, -3.1536350348042967, -3.1450221724306697, -3.127067834502572, -3.1000311180589746, -3.0643383396602317, -3.020557226655475, -2.9693637521055667, -2.911506398564548, -2.8477721916605327, -2.7789575417576864, -2.7058453827138456, -2.6291887137675576, -2.549699715085357, -2.4680432158735357, -2.3848333215154884, -2.3006322333948876, -2.2159505532028074, -2.131248576516509, -2.0469382342920075, -1.9633854461327718, -1.880912720240333, -1.7998018833704976, -1.7202968577496056, -1.6426064257612865, -1.5669069404589633, -1.4933449526144011, -1.422039734398171, -1.353085686791803, -1.2865546230662117, -1.2224979245621315, -1.16094856789115, -1.1019230247767644, -1.0454230372519873, -0.9914372719626756, -0.9399428580026309, -0.8909068131153224, -0.8442873633064909, -0.8000351609782237, -0.7580944066620763, -0.7184038793307994 ], [ -2.7873035660630965, -2.853046582912113, -2.9143683037925077, -2.9705124429236545, -3.0207106714379774, -3.06420261679187, -3.1002610691575225, -3.1282216742099136, -3.147515265616192, -3.157699951151833, -3.1584895066647127, -3.1497746069025068, -3.1316337141423483, -3.1043312081518257, -3.0683020895855915, -3.0241251492322077, -2.9724887077548736, -2.914153878704604, -2.8499197755209007, -2.7805937638316642, -2.706968284140944, -2.62980432091649, -2.5498206034261344, -2.467687227909287, -2.384022449594445, -2.2993916534855052, -2.2143077904472226, -2.129232785452088, -2.044579579964378, -1.9607145749660886, -1.877960311284195, -1.7965982716742013, -1.7168717223924712, -1.6389885356640654, -1.5631239516079187, -1.4894232507892502, -1.4180043179278221, -1.348960084275114, -1.2823608413930705, -1.2182564229539028, -1.1566782540504112, -1.097641269593344, -1.0411457048558619, -0.9871787622431034, -0.935716159026286, -0.886723561172861, -0.8401579085961768, -0.7959686371960781, -0.7540988030097349, -0.7144861136745422 ], [ -2.781669137808038, -2.847503738660312, -2.9089081126700638, -2.965123643379335, -3.015380269170776, -3.0589164819105967, -3.0950043724593215, -3.1229790330599867, -3.1422706046589717, -3.152436274689434, -3.153188876451563, -3.1444185003834417, -3.1262036976717873, -3.098809727817665, -3.062673234408304, -3.0183753410252088, -2.966607294006689, -2.908133570402816, -2.843756865662512, -2.774288112640825, -2.7005231194568333, -2.623225927525538, -2.5431179603855085, -2.4608716263794848, -2.377107106084714, -2.2923913268634712, -2.2072384099055933, -2.122111096422826, -2.037422814162728, -1.9535401493315887, -1.870785558951952, -1.7894402065683026, -1.7097468377340599, -1.631912635667958, -1.5561120148841514, -1.4824893234308028, -1.4111614339107883, -1.3422202105860714, -1.275734845199691, -1.211754058123982, -1.1503081643811608, -1.091411006220766, -1.0350617554595778, -0.9812465898335037, -0.9299402482896403, -0.881107470547663, -0.8347043264545935, -0.7906794407025686, -0.7489751184207816, -0.7095283770259839 ], [ -2.7681354283644826, -2.833711747407354, -2.8948577940594062, -2.9508183492360547, -3.0008282366360044, -3.0441322215056625, -3.080009674649669, -3.1078033146271213, -3.1269504280547844, -3.1370140597637377, -3.1377109764312268, -3.128932864601377, -3.1107573618876554, -3.0834464464999174, -3.047431628689788, -3.00328784731391, -2.9516999710160308, -2.893426600471272, -2.829265480033695, -2.760023679105566, -2.686494198208516, -2.6094391801645807, -2.529578863751741, -2.447584988687422, -2.3640774082351093, -2.279622922016762, -2.1947356154148787, -2.1098782086772294, -2.025464071680858, -1.9418596641058525, -1.8593872312609405, -1.778327634466158, -1.6989232291902716, -1.621380728778924, -1.5458740095973995, -1.4725468267079527, -1.401515419115298, -1.3328709910416006, -1.266682061263653, -1.2029966767090339, -1.1418444895949813, -1.083238699648522, -1.0271778645569638, -0.9736475829097863, -0.9226220546209376, -0.8740655242569527, -0.8279336129144818, -0.7841745443502246, -0.7427302710145676, -0.7035375055136959 ], [ -2.7467662274389437, -2.8117455400606577, -2.8723048311264487, -2.927697800743601, -2.977170396009668, -3.0199804925434686, -3.0554219680518275, -3.0828524643079644, -3.1017233256241408, -3.1116093811824572, -3.112235576985017, -3.1034971147632104, -3.0854699128770062, -3.0584091273815313, -3.0227352427248997, -2.9790094359645654, -2.9279017276334605, -2.8701562461575234, -2.806557694871187, -2.737902117588262, -2.6649736655502627, -2.58852766561784, -2.509279269174273, -2.427896506764463, -2.3449965735785283, -2.2611443867860292, -2.17685270592094, -2.092583313956405, -2.008748906499337, -1.9257154403653471, -1.843804764362128, -1.7632974050434345, -1.684435415664067, -1.607425222207012, -1.532440419171788, -1.459624481787368, -1.3890933717776746, -1.320938021681762, -1.2552266886611856, -1.1920071731795951, -1.1313089012553132, -1.0731448714233602, -1.0175134692951109, -0.9644001538239866, -0.913779020196311, -0.8656142447634497, -0.8198614176936645, -0.7764687691118068, -0.7353782944624041, -0.6965267847164502 ], [ -2.7177343796496647, -2.781798004725333, -2.84146378900852, -2.8959994949130214, -2.9446678327731783, -2.986745789377598, -3.02154791370739, -3.0484528306459575, -3.066931544112876, -3.0765753685641553, -3.0771207379667773, -3.0684678462218082, -3.050690266819589, -3.0240335732160477, -2.9889025416063557, -2.9458384036870386, -2.8954892095821965, -2.8385771650140645, -2.775866707476344, -2.708136267339647, -2.636155426852608, -2.5606679130452914, -2.4823798972890687, -2.401952598298428, -2.3199981227699995, -2.2370776346283954, -2.1537011572627733, -2.070328502517473, -1.98737096424678, -1.905193517347959, -1.8241173357970926, -1.744422494606198, -1.6663507574949037, -1.5901083789351218, -1.5158688690748823, -1.443775684876396, -1.3739448219721946, -1.3064672901937935, -1.2414114621269252, -1.1788252888786293, -1.1187383808608262, -1.0611639540718119, -1.0061006442982547, -0.9535341930285534, -0.9034390097922224, -0.8557796162233909, -0.8105119774726075, -0.7675847267270277, -0.7269402885990965, -0.6885159070497808 ], [ -2.681312448663986, -2.7441687025637336, -2.8026627949529272, -2.856081161262325, -2.9037081492560324, -2.9448448487160155, -2.978831410778545, -3.005072103440453, -3.0230617344952933, -3.032411454951626, -3.0328714621346435, -3.024347903949379, -3.0069115111452156, -2.98079628116223, -2.9463878717559835, -2.9042029447528837, -2.8548620665713496, -2.799059528249019, -2.737533451899754, -2.671038905297617, -2.600325702512447, -2.5261214533813083, -2.4491195461278545, -2.3699712637624124, -2.289281109524639, -2.2076045057168883, -2.12544719696159, -2.0432658538943773, -1.961469507410296, -1.8804215439587781, -1.8004420652333903, -1.721810468218397, -1.644768139837392, -1.569521188635764, -1.4962431569324113, -1.4250776726896888, -1.35614101234385, -1.289524554973109, -1.2252971151409913, -1.1635071470407525, -1.1041848165541124, -1.0473439408081684, -0.9929837969888398, -0.9410908037200034, -0.8916400793836305, -0.8445968824489601, -0.7999179392875253, -0.7575526651488826, -0.7174442840166368, -0.6795308530022564 ], [ -2.637860392552429, -2.6992494078269553, -2.7563267086828147, -2.808401364917184, -2.8547833669290994, -2.894801812960118, -2.9278261121788107, -2.953289435352887, -2.970713118787721, -2.9797302128648893, -2.980105974149855, -2.9717529606274513, -2.9547386342103024, -2.9292840832338944, -2.8957535995364405, -2.8546361516825787, -2.8065209430342946, -2.752069922391379, -2.6919901846582137, -2.62700871112761, -2.5578510496776237, -2.4852245954877072, -2.409806356638705, -2.3322346159835643, -2.2531037246182115, -2.1729612857300857, -2.0923071028535873, -2.0115934008542857, -1.9312259471769389, -1.8515657954895022, -1.772931445332328, -1.6956012644693323, -1.619816060035263, -1.545781714004938, -1.4736718206950548, -1.403630280870425, -1.3357738199199836, -1.270194407460508, -1.2069615633157347, -1.146124540621634, -1.0877143812146985, -1.0317458417670464, -0.9782191915748845, -0.9271218846702197, -0.8784301101583445, -0.8321102255062492, -0.7881200780159194, -0.7464102199906228, -0.7069250232042044, -0.6696036982632958 ], [ -2.5878114607322455, -2.6475079355393647, -2.7029587273341846, -2.7534987825482755, -2.798466833428038, -2.8372228136237583, -2.869167831979772, -2.893765935564602, -2.910566450071645, -2.9192252686203473, -2.919523162060628, -2.9113791118702412, -2.89485691767592, -2.8701639512684194, -2.8376418624759774, -2.797750111193578, -2.751044146993639, -2.698150645870459, -2.6397423184199846, -2.5765144481423152, -2.5091646495770146, -2.4383765668114648, -2.364807565692116, -2.2890800280945394, -2.211775647920687, -2.133432096348144, -2.0545414888807194, -1.9755501868194736, -1.8968595656914358, -1.8188274685355303, -1.7417701298488553, -1.6659644083219023, -1.5916502063733364, -1.5190329848828301, -1.4482863047717147, -1.3795543449628616, -1.3129543600577611, -1.2485790517479747, -1.186498836230665, -1.1267639962507534, -1.0694067112477643, -1.0144429627574525, -0.9618743149543617, -0.9116895722188779, -0.8638663170312595, -0.8183723324638483, -0.7751669141663728, -0.7342020771021482, -0.6954236624630834, -0.6587723502230243 ], [ -2.5316574037532793, -2.5894715172774188, -2.64312185542467, -2.6919717432439767, -2.735390869733553, -2.7727718261171903, -2.8035487780011925, -2.8272175169582106, -2.8433557696628906, -2.8516423119288272, -2.8518732179851387, -2.8439735556775183, -2.8280030849464497, -2.8041550531689916, -2.772747953188489, -2.7342109788490117, -2.6890646858724145, -2.6378988628511633, -2.581349736132265, -2.520078381524001, -2.454751701778928, -2.386026713165643, -2.3145383239724935, -2.240890383274962, -2.165649555243406, -2.0893415005792564, -2.0124488675224987, -1.9354106606855785, -1.8586226338906437, -1.7824384263137807, -1.707171223236089, -1.633095772728704, -1.5604506290490057, -1.4894405243556703, -1.4202387943942125, -1.352989802567095, -1.2878113214548934, -1.2247968422931512, -1.1640177918176189, -1.105525642795913, -1.0493539098780544, -0.9955200264466773, -0.9440271011894564, -0.8948655553613017, -0.8480146433209091, -0.8034438600537965, -0.7611142401433459, -0.7209795531137984, -0.6829874003170862, -0.6470802186273827 ], [ -2.469933888851104, -2.525710709551518, -2.5774213018374095, -2.624459152534267, -2.6662263048937387, -2.7021489425842793, -2.7316947280524517, -2.7543911691040766, -2.769843986624771, -2.7777541988721346, -2.7779324860550396, -2.7703094166491775, -2.75494035152657, -2.732004302280303, -2.701796657109599, -2.664716392198351, -2.6212490135981006, -2.5719468885676604, -2.517408746170792, -2.4582599555029585, -2.395134802084455, -2.3286614980742253, -2.259450199454448, -2.188083945738226, -2.1151122152649666, -2.041046688358149, -1.9663587961651126, -1.8914786676394875, -1.8167951425594528, -1.7426565774897294, -1.6693722257222323, -1.5972140184102948, -1.5264186120598602, -1.4571895981262868, -1.3896997948775145, -1.324093561070216, -1.260489086329241, -1.1989806252250135, -1.1396406515519042, -1.0825219167372504, -1.0276594020666479, -0.9750721588280911, -0.9247650338240168, -0.8767302801948631, -0.8309490553184076, -0.7873928088416682, -0.7460245647850108, -0.706800102227539, -0.6696690394164682, -0.6345758263029488 ], [ -2.4032067898639835, -2.45682453513679, -2.5064885167035795, -2.5516235018989595, -2.591664565323228, -2.626071671597514, -2.6543456839842774, -2.67604511193643, -2.69080266655063, -2.6983404953107275, -2.69848286596477, -2.691165111489947, -2.6764378656130168, -2.654466011312686, -2.6255222898665416, -2.5899760896054893, -2.548278441817747, -2.5009445942642463, -2.448535649007483, -2.3916406381692803, -2.3308601221525254, -2.266792016846355, -2.2000199793344537, -2.13110437204398, -2.060575613668856, -1.9889296098237046, -1.9166249162202125, -1.8440812957510568, -1.7716793653401726, -1.6997610728411747, -1.6286307892976921, -1.558556842941605, -1.4897733567110527, -1.422482280646663, -1.3568555347756854, -1.29303719774698, -1.2311456922776207, -1.1712759310857168, -1.1135013969889234, -1.0578761387275266, -1.004436670224186, -0.95320376575032, -0.9041841471034185, -0.8573720616353234, -0.8127507519922424, -0.7702938198855727, -0.7299664872315348, -0.6917267586788507, -0.6555264899680922, -0.6213123668001195 ], [ -2.3320598031742383, -2.383427299972081, -2.430967283302967, -2.4741363318463327, -2.512402621352125, -2.5452594876134365, -2.572240139571751, -2.5929328823121454, -2.60699601283913, -2.6141714012584636, -2.6142957052996776, -2.607308222202123, -2.5932545795910587, -2.5722858012818723, -2.544652717650388, -2.5106961557466754, -2.470833758028951, -2.425544563503039, -2.3753525939787132, -2.320810617046299, -2.2624850435339954, -2.2009426238880274, -2.1367393026612778, -2.070411325994206, -2.0024685021675754, -1.933389394923819, -1.8636181722224874, -1.7935628215917085, -1.7235944596886525, -1.654047494307561, -1.5852204326508994, -1.5173771648253342, -1.4507485835433112, -1.385534428856592, -1.3219052702757008, -1.2600045581356394, -1.1999506920225058, -1.1418390669884393, -1.0857440686363846, -1.0317209963857885, -0.9798079007102232, -0.930027325188721, -0.8823879481034985, -0.8368861212729025, -0.7935073060182682, -0.7522274077806885, -0.7130140120573321, -0.6758275251204204, -0.6406222235002217, -0.6073472165245961 ], [ -2.257083649388304, -2.3061373113152746, -2.351502041516166, -2.3926662615602248, -2.4291308286365165, -2.460421585038364, -2.4861028332220556, -2.505791147018642, -2.519168770875619, -2.525995744953114, -2.5261198550306885, -2.51948356846584, -2.506127294177918, -2.4861885886906685, -2.459897289986178, -2.4275669428106657, -2.38958321869119, -2.3463902725188093, -2.2984760785537848, -2.246357747372175, -2.1905676676689065, -2.131641089120571, -2.0701055156427937, -2.0064720544110437, -1.9412286904742295, -1.8748353379995497, -1.8077204525819457, -1.7402789632559335, -1.6728712848921503, -1.6058231901910798, -1.5394263470276366, -1.4739393558626146, -1.4095891500277902, -1.3465726472219237, -1.2850585628399407, -1.2251893146947612, -1.167082964476783, -1.1108351542633412, -1.056521006915104, -1.0041969676459843, -0.9539025707672296, -0.9056621208841822, -0.8594862819260364, -0.815373570535241, -0.7733117527209981, -0.7332791444461115, -0.6952458180972116, -0.6591747176913065, -0.6250226862834631, -0.5927414094304717 ], [ -2.178866960833014, -2.2255675497717675, -2.2687284367706413, -2.307869510839748, -2.3425235152885167, -2.3722476102656636, -2.396635683563668, -2.415330872297472, -2.428037629385462, -2.434532581542531, -2.434673403753113, -2.4284049982363554, -2.415762422202375, -2.396870250370535, -2.37193835866303, -2.341254431996978, -2.305173781333093, -2.264107257433714, -2.218508142214133, -2.1688588780737073, -2.115658379436055, -2.0594104929891355, -2.0006139727015566, -1.9397541462553822, -1.8772962934014472, -1.8136806436190287, -1.7493188298002904, -1.6845915996517786, -1.6198475778221715, -1.5554028803743967, -1.4915414017066173, -1.4285156170092732, -1.366547767294696, -1.3058313168654905, -1.2465325937133427, -1.1887925413278329, -1.1327285256935413, -1.0784361540239256, -1.0259910722804082, -0.9754507170489113, -0.926856004185598, -0.8802329420696751, -0.8355941615566943, -0.7929403580222929, -0.7522616434045031, -0.7135388080460747, -0.6767444935348719, -0.6418442787456855, -0.608797681988521, -0.5775590826371304 ], [ -2.0979888291357405, -2.142318216398306, -2.183265954939161, -2.2203827083318872, -2.253232039256118, -2.2814010269660123, -2.3045114976113172, -2.3222313809358637, -2.33428560116545, -2.340465841892427, -2.340638513599041, -2.334750312782501, -2.322830898894093, -2.3049924217812676, -2.281425885704522, -2.2523946017655447, -2.2182252186311047, -2.179296995448473, -2.1360300673541173, -2.0888734477920905, -2.0382934258903362, -1.9847628770224748, -1.9287518406691564, -1.8707195590508454, -1.8111080320797257, -1.7503370389134179, -1.6888005055475168, -1.6268640576790927, -1.5648635819859662, -1.5031046199251248, -1.4418624298707883, -1.3813825709632213, -1.3218818819260718, -1.2635497480630091, -1.2065495683287562, -1.1510203511060995, -1.0970783818545589, -1.0448189181323766, -0.9943178777774137, -0.9456334944798289, -0.8988079218288789, -0.8538687724036315, -0.810830582822323, -0.769696199064509, -0.7304580790050317, -0.6930995110972802, -0.6575957496388865, -0.6239150681506183, -0.5920197331843313, -0.5618669014192152 ], [ -2.015012893816025, -2.056970982223316, -2.0957124120880057, -2.1308176935478844, -2.1618799613473363, -2.1885146996724636, -2.210369980272567, -2.2271367754939955, -2.2385588192001546, -2.2444414337849437, -2.2446587362015897, -2.2391586915931394, -2.227965603367639, -2.2111798062759873, -2.1889745453848626, -2.1615902503659417, -2.129326618542253, -2.0925330719907795, -2.051598234155913, -2.006939074746139, -1.958990307460681, -1.9081945130841966, -1.8549933247761008, -1.799819875398481, -1.743092585217043, -1.6852102718228972, -1.626548495619178, -1.5674570118662823, -1.5082581795467467, -1.4492461727171602, -1.3906868463296331, -1.3328181213674655, -1.27585077025727, -1.2199695006073314, -1.1653342519238086, -1.1120816352359166, -1.0603264591133803, -1.0101632972603642, -0.9616680627644772, -0.9148995623082313, -0.8699010103957638, -0.8267014891080751, -0.7853173432666645, -0.745753504336671, -0.7080047390944617, -0.6720568211604387, -0.6378876250731553, -0.6054681437567451, -0.5747634310931891, -0.5457334719230003 ], [ -1.930482789382737, -1.9700847068282965, -2.0066400121166046, -2.0397579709986777, -2.069059938219392, -2.0941882484145355, -2.1148155503638226, -2.130654190406863, -2.141465174434562, -2.14706619182198, -2.147338182089736, -2.1422299753264626, -2.1317606430605203, -2.116019350852264, -2.0951626912360983, -2.069409671813865, -2.039034710909778, -2.0043591273976857, -1.9657416854872172, -1.923568764503792, -1.8782446749475308, -1.8301825510686494, -1.7797961364818002, -1.7274926617156852, -1.673666905568797, -1.618696444571799, -1.5629380302088036, -1.5067249911821556, -1.4503655347635278, -1.394141812908684, -1.3383096210131982, -1.2830986061686187, -1.228712874550316, -1.1753319019429378, -1.1231116659116873, -1.0721859318422111, -1.0226676374954722, -0.9746503316359167, -0.9282096316539599, -0.883404672988931, -0.8402795296969493, -0.7988645908573009, -0.7591778818327259, -0.7212263228503593, -0.6850069200932805, -0.6505078866159217, -0.6177096920293987, -0.5865860411409167, -0.5571047826536137, -0.5292287497065289 ], [ -1.8449187319322946, -1.8821923610134814, -1.9165926601069674, -1.9477564571817856, -1.975331930457551, -1.9989867266297114, -2.0184164761701977, -2.033353351188458, -2.043574243416352, -2.0489080992641813, -2.049241947049098, -2.0445251963868794, -2.034771883292771, -2.0200606708009436, -2.0005325796780946, -1.976386596326441, -1.9478734617268825, -1.9152880649884303, -1.878960933431096, -1.8392493236559766, -1.7965283801945644, -1.751182752966355, -1.7035989682796693, -1.6541587463879814, -1.6032333642625376, -1.5511790832902896, -1.498333601615454, -1.4450134498591964, -1.3915122247571805, -1.3380995445314436, -1.2850206090098926, -1.2324962533875805, -1.1807233944255815, -1.1298757797881036, -1.0801049637001112, -1.031541444235795, -0.9842959087648049, -0.9384605441050811, -0.894110376655613, -0.8513046152243771, -0.8100879755101681, -0.7704919703601247, -0.7325361541405429, -0.6962293129607005, -0.6615705952028266, -0.6285505789515771, -0.5971522745833999, -0.5673520620585466, -0.5391205634304272, -0.5124234518116095 ], [ -1.7588150135482556, -1.7937988822293771, -1.8260842203243084, -1.855334170559328, -1.8812223390144505, -1.9034402015273943, -1.9217048790242395, -1.9357669622994398, -1.9454180044336251, -1.9504972615618767, -1.9508972605063237, -1.946567811903869, -1.9375181713273273, -1.9238171728441482, -1.905591306572592, -1.8830208656068026, -1.85633442753598, -1.8258020431793178, -1.7917275677336315, -1.7544405833938843, -1.7142883322347988, -1.6716280146400346, -1.6268197257482702, -1.5802202138728214, -1.5321775615887425, -1.4830268193367993, -1.4330865663900272, -1.3826563352805215, -1.3320148117097927, -1.2814187099427468, -1.2311022207843818, -1.1812769327062786, -1.1321321341946127, -1.0838354151116945, -1.0365334954689136, -0.9903532205943403, -0.9454026716711726, -0.901772349702068, -0.859536398972547, -0.8187538430136473, -0.779469811943748, -0.7417167449851487, -0.7055155560079245, -0.6708767532615387, -0.6378015071221745, -0.6062826618111887, -0.5763056887178943, -0.5478495802683345, -0.5208876842889529, -0.49538847957923915 ], [ -1.6726381805621844, -1.7053797066070693, -1.735597431199941, -1.7629795468878608, -1.7872237246272653, -1.8080438665394765, -1.8251772126620889, -1.838391512835174, -1.847491916007584, -1.8523271934024257, -1.8527949089497033, -1.8488451865723852, -1.8404828002576792, -1.8277674236891235, -1.810812009411548, -1.789779406175814, -1.7648774488191266, -1.736352851578424, -1.704484292502523, -1.6695750904571407, -1.6319458512141183, -1.5919274047506096, -1.5498542841453884, -1.506058919083857, -1.4608666434659376, -1.4145915532777458, -1.3675332009002112, -1.3199740759789333, -1.2721777997197838, -1.224387946907214, -1.1768274056422667, -1.1296981864287239, -1.0831815977752324, -1.037438713312247, -0.9926110643312228, -0.9488215007879797, -0.9061751726106307, -0.8647605912782365, -0.8246507389144088, -0.7859041985079267, -0.74856628434003, -0.7126701563198024, -0.678237905783798, -0.6452816034925453, -0.6138043031453637, -0.5838009958225729, -0.5552595124306137, -0.5281613725416363, -0.5024825790475167, -0.47819435884252726 ], [ -1.5868256962078922, -1.6173797539214605, -1.645583230828157, -1.6711481126224772, -1.6937948245733119, -1.7132583845838467, -1.7292949042760517, -1.741688175917404, -1.750256026192267, -1.7548560826764052, -1.7553905948954083, -1.7518099849457018, -1.744114873269607, -1.7323564273867893, -1.716635003400968, -1.697097176184907, -1.6739313676420022, -1.6473623691569699, -1.617645105323959, -1.5850579989212612, -1.5498962757777144, -1.5124655010231158, -1.4730755756523153, -1.4320353544951507, -1.3896479817840814, -1.3462069840757138, -1.3019931151595654, -1.257271914436297, -1.2122919182199121, -1.1672834508218668, -1.1224579170947688, -1.0780075183703026, -1.0341053176750856, -0.990905586328709, -0.9485443714318983, -0.907140231554676, -0.8667950956009449, -0.8275952070211371, -0.7896121220787795, -0.7529037366650908, -0.7175153211827419, -0.6834805473156857, -0.650822494122643, -0.6195546239064944, -0.589681720794959, -0.5612007869921989, -0.534101893295299, -0.5083689817765782, -0.48398061956794836, -0.460910703495224 ], [ -1.501784925113566, -1.5302126869313453, -1.5564603003230197, -1.580262311977885, -1.6013606531819984, -1.619510242058677, -1.634484933217444, -1.6460835760207826, -1.654135887021222, -1.6585078071786783, -1.6591060096008847, -1.6558812542767158, -1.6488303524777645, -1.637996598851425, -1.623468642012005, -1.6053778797485316, -1.5838945676634326, -1.559222907753428, -1.5315954287457632, -1.501266981392817, -1.4685086532211966, -1.4336018659320284, -1.396832863847954, -1.3584877422464616, -1.318848107179083, -1.2781874082392681, -1.236767945230034, -1.1948385194570128, -1.1526326798021875, -1.110367501443567, -1.0682428293998807, -1.0264409183217755, -0.9851264026222881, -0.9444465359022061, -0.904531644712329, -0.8654957482951988, -0.8274373025663895, -0.7904400329055317, -0.7545738261366739, -0.7198956572859734, -0.686450531280073, -0.6542724236996325, -0.6233852080679194, -0.5938035599851301, -0.5655338307749567, -0.5385748852511782, -0.5129188997966505, -0.4885521182294741, -0.4654555639600013, -0.44360570776059194 ], [ -1.4178923216397576, -1.4442603189133885, -1.4686146928594899, -1.4907113519773196, -1.5103125495556795, -1.5271919786577557, -1.5411402162754397, -1.551970298681794, -1.5595231551086495, -1.5636725919378858, -1.5643295139358748, -1.5614450978661183, -1.5550126964335504, -1.5450683401326364, -1.5316898094444227, -1.5149943556951242, -1.495135241916389, -1.4722973444836867, -1.4466920962023737, -1.4185520611629423, -1.388125414908525, -1.3556705670320182, -1.321451115193104, -1.2857312672495782, -1.2487718177878224, -1.210826720927838, -1.172140265070085, -1.1329448278754906, -1.0934591707542016, -1.053887220364754, -1.0144172786978767, -0.9752216018220087, -0.9364562890186047, -0.89826142775883, -0.8607614449189439, -0.8240656201627833, -0.7882687230808565, -0.7534517411613371, -0.7196826707868282, -0.6870173480956414, -0.6555003006717555, -0.6251656046281853, -0.5960377347464938, -0.5681323979674808, -0.5414573427413636, -0.5160131385879978, -0.49179392173836955, -0.4687881039727311, -0.4469790427815792, -0.4263456717899681 ], [ -1.3354927511843917, -1.3598720971729792, -1.3823994770590624, -1.402850997423874, -1.4210081101119325, -1.4366622384953047, -1.4496197546603358, -1.4597071084794115, -1.46677585537242, -1.4707072946544912, -1.471416423976224, -1.468854942398552, -1.4630130940017805, -1.4539202283965231, -1.441644052303074, -1.4262886437944344, -1.4079913851601813, -1.3869190323227027, -1.3632631736527931, -1.3372353389324303, -1.3090620039344736, -1.2789797038054869, -1.2472304261086244, -1.2140574084803966, -1.1797014215373611, -1.1443975784421458, -1.1083726803029885, -1.0718430819176337, -1.0350130449277415, -0.9980735343166276, -0.9612014081991542, -0.9245589488271675, -0.8882936835718314, -0.8525384474170001, -0.8174116424616883, -0.783017654517645, -0.7494473916889461, -0.7167789145488879, -0.685078132002878, -0.6543995410332664, -0.6247869922108662, -0.5962744661106572, -0.5688868485963579, -0.5426406953644245, -0.5175449781982697, -0.4936018071158297, -0.47080712403822167, -0.44915136480268436, -0.428620087324844, -0.4091945645168229 ], [ -1.2548989181994086, -1.2773646403761019, -1.298134378581278, -1.3170033076508305, -1.3337710076991027, -1.3482456558325535, -1.3602485687180306, -1.3696189145946542, -1.376218360204928, -1.3799353834308223, -1.3806889753066758, -1.3784314802243411, -1.3731503791466937, -1.364868900086209, -1.3536454312938966, -1.3395718023801857, -1.3227705752341097, -1.303391541993058, -1.281607657837728, -1.2576106427068026, -1.2316064720029374, -1.203810947653964, -1.174445503622481, -1.1437333596807844, -1.111896098366418, -1.079150705471673, -1.0457070858189321, -1.0117660439526217, -0.9775177034733429, -0.9431403283137465, -0.9087995033464547, -0.8746476293220565, -0.8408236873292511, -0.8074532299517448, -0.774648559419497, -0.7425090568149504, -0.711121630428035, -0.680561255396233, -0.6508915806431219, -0.6221655827331645, -0.5944262495322128, -0.5677072794788542, -0.542033784830505, -0.5174229894659594, -0.4938849137272401, -0.4714230403987434, -0.4500349572817839, -0.42971297296032707, -0.4104447032983203, -0.3922136269894245 ], [ -1.1763909123031864, -1.1970213489659431, -1.2161054484216351, -1.2334563540701815, -1.2488907479497, -1.2622326385861833, -1.2733174965566196, -1.2819965730938394, -1.2881411855108986, -1.291646719057519, -1.2924360869570575, -1.2904624133070983, -1.28571075577287, -1.2781987592066444, -1.2679762160925843, -1.2551235924599777, -1.2397496477367649, -1.221988326740335, -1.201995128827222, -1.179943164269673, -1.156019095047846, -1.130419131669088, -1.1033452247707798, -1.0750015549230763, -1.0455913899338705, -1.015314348565142, -0.9843640842642035, -0.9529263827461613, -0.9211776528365225, -0.8892837802947317, -0.857399308597999, -0.8256669080314731, -0.7942170941203277, -0.7631681577681444, -0.732626271872679, -0.7026857422356125, -0.6734293739371542, -0.6449289277716623, -0.6172456446746712, -0.5904308192096059, -0.5645264060627764, -0.5395656460888045, -0.515573700747096, -0.4925682857815652, -0.4705602967368614, -0.449554420397579, -0.4295497275072262, -0.41054024319673776, -0.3925154924531542, -0.3754610187111844 ], [ -1.100215911080332, -1.1190921372804294, -1.1365648172307272, -1.152463988989779, -1.1666224447253604, -1.1788791428363496, -1.1890829608726812, -1.1970966406733359, -1.2028007277919122, -1.206097274019724, -1.2069130631785023, -1.2052021406867701, -1.2009474753445635, -1.194161650350124, -1.1848865589057143, -1.1731921559529979, -1.1591743814144482, -1.142952415298626, -1.12466544890107, -1.1044691604990469, -1.0825320721950846, -1.0590319417699585, -1.034152314410774, -1.0080793281484803, -0.9809988369281354, -0.9530938885379294, -0.9245425722788543, -0.8955162336471052, -0.8661780402696815, -0.8366818743907112, -0.8071715216968335, -0.7777801234966131, -0.7486298585694213, -0.7198318217914224, -0.6914860684469972, -0.6636817955592698, -0.636497634330776, -0.6100020306606517, -0.5842536935477158, -0.5593020938994004, -0.5351879987835308, -0.5119440284494352, -0.48959522549498136, -0.46815962736687866, -0.44764883496425933, -0.42806857148556166, -0.4094192268357777, -0.39169638391506156, -0.3748913239612619, -0.3589915088376303 ], [ -1.026588092971596, -1.0437933515443347, -1.059730610666263, -1.074245751272871, -1.0871867102042132, -1.0984065430284342, -1.1077668167929526, -1.1151411996413456, -1.120419067730761, -1.1235089179412605, -1.1243413654778975, -1.1228715228413602, -1.1190805997371018, -1.1129766259811107, -1.1045942712777441, -1.0939938057046747, -1.0812593032767954, -1.0664962320305107, -1.0498285957168458, -1.0313957959084927, -1.0113493727856944, -0.9898497625991691, -0.9670631842027265, -0.9431587397683268, -0.9183057885509263, -0.8926716291218476, -0.8664195057815759, -0.8397069392088856, -0.8126843696727524, -0.7854940929234577, -0.7582694636477052, -0.7311343385389097, -0.7042027300421256, -0.6775786421904633, -0.6513560612415223, -0.6256190757154858, -0.600442102672823, -0.5758901994581658, -0.5520194425388321, -0.5288773573895227, -0.5065033855565451, -0.4849293770420422, -0.4641800979633306, -0.4442737450610914, -0.425222460058323, -0.40703283811976987, -0.38970642574400705, -0.3732402043524041, -0.35762705663790717, -0.34285621341733985 ], [ -0.9556888158472004, -0.9713079397972558, -0.9857871020149798, -0.9989869945333765, -1.0107697536632154, -1.0210016988950996, -1.0295563871785636, -1.0363178644027458, -1.0411839528093487, -1.0440693828316479, -1.0449085678033752, -1.043657834184068, -1.0402969578011907, -1.0348299126538618, -1.0272848039875744, -1.0177130213025467, -1.0061877007198587, -0.9928016239676215, -0.9776647012993251, -0.9609011893379599, -0.9426467856160735, -0.9230457236693534, -0.9022479699452756, -0.8804065997800471, -0.8576754066363538, -0.8342067781803575, -0.8101498553938944, -0.7856489770169066, -0.760842401082034, -0.7358612877986459, -0.7108289231182527, -0.6858601594818996, -0.6610610490478528, -0.6365286447082525, -0.6123509450721447, -0.5886069610321734, -0.5653668833177075, -0.5426923323968, -0.5206366740999924, -0.4992453863108861, -0.47855646394613593, -0.45860085119243377, -0.43940289156321466, -0.42098078777419157, -0.40334706471610127, -0.38650902993180924, -0.37046922699288576, -0.3552258780298556, -0.34077331241363074, -0.32710237922554075 ], [ -0.8876671079191913, -0.9017859298608597, -0.9148851673072652, -0.9268393114318387, -0.9375237696581525, -0.9468173053834167, -0.9546047754708908, -0.9607800614531568, -0.9652490511048989, -0.9679324988443401, -0.9687685828830216, -0.9677149880581118, -0.9647503757383603, -0.9598751516118066, -0.9531115005975791, -0.9445027161977344, -0.9341119009366782, -0.9220201496264515, -0.908324346135212, -0.8931347083316662, -0.8765722080994726, -0.8587659776505391, -0.8398507934875039, -0.8199647082332631, -0.7992468802538208, -0.7778356328495646, -0.7558667594417936, -0.7334720788363032, -0.7107782351985494, -0.6879057305374965, -0.664968172888617, -0.6420717206058588, -0.6193147018269975, -0.5967873879153021, -0.5745719002024587, -0.5527422304155287, -0.5313643565682482, -0.5104964376835028, -0.49018907237690423, -0.47048560799089567, -0.45142248856944533, -0.433029631469491, -0.41533082379611064, -0.3983441311139586, -0.3820823120252772, -0.36655323321840494, -0.3517602804859963, -0.3377027619984354, -0.32437630080438695, -0.31177321412747805 ], [ -0.8226405004314968, -0.8353452527274595, -0.8471430881528629, -0.8579213066411925, -0.8675676745700563, -0.8759725895981062, -0.8830315234402463, -0.8886476517028901, -0.8927345446355073, -0.8952187667310465, -0.8960422223148515, -0.8951640922776452, -0.8925622342822579, -0.8882339616082787, -0.8821961675287182, -0.874484814387767, -0.8651538516386185, -0.8542736597277204, -0.8419291348543556, -0.8282175341927476, -0.8132461949372807, -0.797130227049087, -0.7799902622059927, -0.7619503228884645, -0.7431358576666192, -0.7236719727432102, -0.7036818762310282, -0.6832855406662999, -0.6625985807861565, -0.6417313373788327, -0.620788153728467, -0.5998668284803472, -0.5790582273180565, -0.5584460353754881, -0.5381066325476274, -0.5181090746033257, -0.4985151640709171, -0.4793795961305076, -0.4607501661058502, -0.4426680265298715, -0.4251679831102273, -0.40827882020965833, -0.39202364765936903, -0.3764202618297332, -0.3614815148874757, -0.3472156870717402, -0.333626857627336, -0.3207152707474856, -0.30847769350820475, -0.29690776332908286 ], [ -0.7606962096627989, -0.7720729249836633, -0.7826477222355033, -0.7923197446715253, -0.8009882234910788, -0.8085543916168102, -0.8149236542591659, -0.8200079374806294, -0.8237281047359724, -0.8260163078542448, -0.8268181281533017, -0.8260943687553024, -0.8238223814226102, -0.8199968477596072, -0.8146299798141285, -0.8077511516770313, -0.7994060146042221, -0.7896551784650072, -0.7785725598103783, -0.7662435021046572, -0.7527627690461112, -0.7382325005518582, -0.7227602059485034, -0.7064568526642336, -0.6894350929987905, -0.671807657410818, -0.6536859307289931, -0.6351787179147905, -0.6163911983948105, -0.597424062325649, -0.5783728181772176, -0.5593272584307656, -0.5403710687079633, -0.5215815650236064, -0.503029543872668, -0.4847792303386014, -0.4668883101992516, -0.44940803299240817, -0.4323833740973413, -0.4158532450245902, -0.3998507422370805, -0.38440342591759125, -0.36953362112991406, -0.3552587347802769, -0.3415915826658227, -0.3285407216961824, -0.3161107830940366, -0.30430280302457624, -0.2931145476771386, -0.2825408303303336 ], [ -0.7018926528387917, -0.7120265787978626, -0.7214560344541268, -0.7300910703240717, -0.7378415100263955, -0.7446186362057023, -0.7503371116197, -0.7549170674978039, -0.7582862639223003, -0.7603822059241643, -0.761154088502777, -0.7605644469844512, -0.7585904069999629, -0.7552244590461974, -0.7504747215501912, -0.7443646973487825, -0.736932565292618, -0.7282300766107574, -0.7183211425117162, -0.7072802054454372, -0.6951904834273006, -0.6821421675416866, -0.668230639921666, -0.6535547653954257, -0.6382152962046164, -0.622313416720738, -0.6059494444070543, -0.5892216945435831, -0.5722255093865647, -0.5550524472870235, -0.537789623608925, -0.5205191928166355, -0.5033179596062227, -0.4862571062209724, -0.4694020229334439, -0.452812228938978, -0.43654137146224437, -0.4206372916287664, -0.40514214651875124, -0.39009257774245887, -0.37551991781065164, -0.3614504264900711, -0.34790555021096226, -0.334902198418515, -0.3224530315248424, -0.31056675581981685, -0.2992484213371871, -0.28849971924913365, -0.2783192758804105, -0.2687029408971471 ], [ -0.6462612617333263, -0.6552363048854215, -0.6635969563939315, -0.6712632722789906, -0.678154822723233, -0.6841921724954085, -0.6892985751505651, -0.6934018227711238, -0.6964361692716889, -0.6983442266388178, -0.6990787235293088, -0.6986040171856083, -0.696897263738053, -0.6939491774058162, -0.6897643422631023, -0.6843610758865728, -0.6777708769117146, -0.6700375140419299, -0.6612158301465094, -0.65137034163503, -0.6405737117744561, -0.6289051692975163, -0.6164489329196821, -0.6032926902659099, -0.589526167690221, -0.5752398164823234, -0.5605236314786683, -0.5454661102912777, -0.530153355196527, -0.5146683150353555, -0.4990901610643652, -0.4834937883496577, -0.46794943280774715, -0.4525223931869402, -0.4372728469883942, -0.4222557494165158, -0.4075208048123973, -0.39311250057606806, -0.3790701942529935, -0.3654282451960589, -0.3522161829765438, -0.3394589054774588, -0.3271769003406757, -0.3153864841415235, -0.3041000543234891, -0.2933263495364913, -0.28307071458342703, -0.2733353666921696, -0.2641196602948621, -0.25542034791664614 ], [ -0.5938085413663758, -0.6017067552764597, -0.6090735209311198, -0.6158380371855496, -0.6219288066268849, -0.6272749317481381, -0.631807604283928, -0.6354617379087748, -0.6381776740433682, -0.6399028741627226, -0.640593502777997, -0.6402158056015117, -0.6387471984089468, -0.6361770029765244, -0.6325067943592151, -0.6277503544002083, -0.6219332550915737, -0.6150921184502909, -0.6072736147727531, -0.5985332681134121, -0.5889341376522768, -0.5785454381177748, -0.5674411536528594, -0.5556986892512357, -0.5433975935040132, -0.5306183767682426, -0.5174414404746377, -0.5039461263157847, -0.49020988848711733, -0.4763075878719669, -0.46231090390141083, -0.44828785759451306, -0.4343024378209024, -0.42041432196549877, -0.40667868177798083, -0.3931460651419869, -0.37986234470589264, -0.3668687247027371, -0.3542017977906913, -0.34189364432120617, -0.32997196705392606, -0.3184602549596236, -0.3073779703662165, -0.2967407542948033, -0.2865606453950158, -0.27684630841601465, -0.267603268639071, -0.25883414914927716, -0.2505389082377225, -0.2427150746033484 ], [ -0.5445183106350759, -0.5514194402984993, -0.5578652043391836, -0.5637931250621582, -0.5691398598038095, -0.573842332782373, -0.5778390406308611, -0.5810714891003115, -0.5834857008998355, -0.5850337204358484, -0.5856750328433356, -0.5853778142464594, -0.5841199386894655, -0.5818896841337686, -0.5786861031292598, -0.5745190497706878, -0.5694088794749641, -0.5633858586672522, -0.5564893356161924, -0.5487667308622917, -0.5402724066282281, -0.5310664707314487, -0.5212135635325936, -0.5107816679109198, -0.49984097338425215, -0.48846281711535755, -0.47671871714438074, -0.46467950696252736, -0.45241457551806485, -0.4399912128374339, -0.42747405851575304, -0.41492464822649855, -0.40240105197096976, -0.3899575968951152, -0.37764466702682786, -0.3655085721304576, -0.3535914779539362, -0.3419313903920922, -0.3305621864536543, -0.3195136853583349, -0.3088117535726045, -0.2984784380942356, -0.2885321227994748, -0.27898770315996835, -0.26985677511134143, -0.2611478343057747, -0.25286648240424836, -0.2450156374587289, -0.23759574580011722, -0.2306049931848937 ], [ -0.4983540573246763, -0.5043351485857284, -0.509930401254828, -0.5150848882449379, -0.5197426844755972, -0.5238478528410375, -0.5273455857328302, -0.5301834658500995, -0.5323127950929598, -0.5336899280995318, -0.53427753953012, -0.5340457532730236, -0.5329730682763629, -0.5310470293899636, -0.5282646107444715, -0.5246323010393816, -0.5201659014847202, -0.5148900652394617, -0.5088376201707525, -0.5020487239654616, -0.49456990245474874, -0.4864530195499128, -0.4777542218076529, -0.46853289367180695, -0.4588506519622071, -0.4487704009675728, -0.43835546301456674, -0.42766879385447676, -0.41677228768630736, -0.4057261730710304, -0.3945884982800718, -0.38341470263584654, -0.3722572690143544, -0.3611654517723848, -0.35018507383098374, -0.3393583864050205, -0.328723984844685, -0.3183167741891435, -0.30816797827974574, -0.2983051866030375, -0.2887524334045164, -0.27953030401078305, -0.2706560637048492, -0.26214380490498446, -0.25400460879363296, -0.2462467179238539, -0.23887571669323138, -0.23189471691684616, -0.22530454605112338, -0.2191039359188589 ], [ -0.45526134125218176, -0.4603964197604098, -0.46520895807487705, -0.46965085557983044, -0.47367291099718467, -0.4772256793392706, -0.48026046774433384, -0.4827304392544103, -0.48459178091380384, -0.4858048821043395, -0.48633546249555915, -0.48615558781649404, -0.4852445166509882, -0.4835893324323375, -0.48118533047724, -0.4780361480780637, -0.4741536438044456, -0.46955754791135274, -0.4642749174811638, -0.4583394369417779, -0.4517906070706734, -0.4446728642987732, -0.4370346681488808, -0.4289275890841211, -0.420405422842675, -0.411523351196023, -0.40233716343710846, -0.39290254802129576, -0.3832744597297255, -0.373506564483407, -0.3636507614324127, -0.3537567800760091, -0.34387184883117716, -0.3340404305570088, -0.32430401997205305, -0.3147009975950794, -0.3052665347325192, -0.2960325440782783, -0.2870276706413424, -0.2782773179418727, -0.26980370469209447, -0.26162594748462853, -0.2537601653336998, -0.2462196022430101, -0.23901476430011903, -0.23215356811558596, -0.22564149773196807, -0.2194817674209344, -0.21367548806465697, -0.20822183507952352 ], [ -0.4151701851559382, -0.4195300054885953, -0.4236246965273387, -0.42741230974234434, -0.4308497189973608, -0.4338933637626241, -0.4365001160195152, -0.43862824445224224, -0.44023843879397995, -0.4412948483082135, -0.4417660827269536, -0.44162612271186985, -0.44085509071534346, -0.4394398418816501, -0.4373743473622118, -0.43465985742501645, -0.43130484697566573, -0.4273247596564256, -0.4227415771420402, -0.41758324691322546, -0.4118830046663122, -0.4056786271477206, -0.39901164841041803, -0.391926568170192, -0.38447007589231386, -0.3766903090854743, -0.3686361594429661, -0.3603566361948667, -0.35190029242526166, -0.3433147171758235, -0.33464609385350297, -0.32593882371001803, -0.31723521187728076, -0.3085752125417154, -0.29999622924516434, -0.29153296594389966, -0.28321732428580026, -0.2750783425326704, -0.2671421716247364, -0.25943208402783924, -0.2519685111989529, -0.24476910573467703, -0.23784882451707712, -0.23122002943198128, -0.2248926024989193, -0.21887407251430413, -0.21316975056623289, -0.20778287202792978, -0.20271474287576985, -0.1979648884056293 ], [ -0.37799740186125064, -0.3816492641915239, -0.3850878693724775, -0.3882767963483629, -0.39117839122889264, -0.393754410487517, -0.395966774112966, -0.3977784061729468, -0.39915413120242627, -0.4000615873215858, -0.40047211214133704, -0.40036155627249026, -0.3997109821551226, -0.3985072128964866, -0.3967432061012144, -0.3944182399800584, -0.39153791172392993, -0.3881139596746197, -0.38416393001937865, -0.3797107149302077, -0.3747819921585518, -0.3694095964266022, -0.36362885114117915, -0.35747788570148087, -0.3509969596442488, -0.3442278106092642, -0.3372130390037327, -0.32999553853722596, -0.32261797861046815, -0.31512234190551824, -0.30754951841858724, -0.29993895554660055, -0.29232836261677675, -0.2847534673658627, -0.2772478212672822, -0.2698426502136746, -0.26256674684012493, -0.2554464006810273, -0.2485053623577258, -0.24176483807021998, -0.2352435107934885, -0.22895758474222472, -0.22292084985489113, -0.21714476324974896, -0.21163854481540634, -0.2064092843109009, -0.20146205756246638, -0.1968000495523401, -0.1924246823980369, -0.18833574641691242 ], [ -0.3436488166896208, -0.3466564460145094, -0.3494975023896718, -0.35214051655127654, -0.35455274943269055, -0.3567007476055395, -0.3585509963265108, -0.36007065094484414, -0.3612283198179338, -0.3619948655689269, -0.3623441874006199, -0.3622539460075265, -0.36170619482867794, -0.36068788691247367, -0.3591912349510644, -0.3572139120709157, -0.35475909147960216, -0.35183533282189106, -0.34845633109868057, -0.34464054965515567, -0.34041076188642294, -0.33579352713987, -0.33081862525475403, -0.3255184718177191, -0.31992753306959876, -0.31408175593521137, -0.30801802521195243, -0.3017736567761182, -0.29538593287715553, -0.28889168324068204, -0.28232691379016184, -0.27572648328936245, -0.26912382705429927, -0.26255072602805796, -0.2560371189016104, -0.24961095454983862, -0.243298081792503, -0.23712217335047692, -0.23110468081907642, -0.22526481750087202, -0.21961956601128363, -0.2141837076779587, -0.20896987088857433, -0.2039885956926557, -0.19924841212553668, -0.1947559298913959, -0.19051593721426663, -0.18653150683802044, -0.18280410732695507, -0.17933371798582054 ], [ -0.312021354721423, -0.31444483618996366, -0.31674358923475343, -0.3188905681065404, -0.3208574355752314, -0.3226150415120508, -0.32413398803783666, -0.32538526481006635, -0.32634093163866296, -0.3269748203287617, -0.3272632241671014, -0.32718554239176134, -0.3267248486476071, -0.3258683568002365, -0.324607764125481, -0.3229394600293527, -0.3208645971064843, -0.31838902952564374, -0.3155231306233004, -0.31228150666589616, -0.3086826268134646, -0.3047483904796142, -0.30050365284159253, -0.29597572762208846, -0.2911938838734096, -0.2861888507295185, -0.2809923412573705, -0.2756366038500502, -0.27015400719131644, -0.26457666274810787, -0.2589360870283115, -0.25326290445938726, -0.2475865906637773, -0.24193525508787572, -0.23633546133848604, -0.23081208315449708, -0.22538819365569673, -0.220084985335101, -0.21492171817139938, -0.20991569321308434, -0.20508224901064942, -0.200434778334323, -0.19598476270314724, -0.19174182235891868, -0.18771377943991618, -0.18390673223991616, -0.18032513857474552, -0.17697190641834082, -0.17384849011155223, -0.17095499058783958 ], [ -0.2830049724135515, -0.284900735590512, -0.2867091171783307, -0.28840701204552954, -0.28997001464910865, -0.29137283041686146, -0.29258976386874935, -0.29359526946349757, -0.29436454581095206, -0.29487414946581914, -0.29510260158600166, -0.29503095976636007, -0.294643328605535, -0.2939272860081419, -0.292874207534749, -0.2914794776902274, -0.28974258412990106, -0.28766709758281217, -0.2852605461804658, -0.28253419738343655, -0.279502763615163, -0.2761840490694736, -0.2725985551592698, -0.26876906102391795, -0.26472019374789846, -0.26047800078022876, -0.25606953474265404, -0.25152245856934474, -0.2468646768577316, -0.24212399750023916, -0.2373278261356666, -0.2325028947045753, -0.22767502439292597, -0.2228689224720366, -0.21810801195667895, -0.21341429257365818, -0.2088082312306665, -0.2043086799737126, -0.19993281929909767, -0.1956961246253095, -0.19161235371678575, -0.1876935528745114, -0.18395007975864575, -0.1803906407792195, -0.17702234107734194, -0.17385074521668975, -0.17087994681084084, -0.168112645423236, -0.16555022919146412, -0.16319286174460768 ] ], "zauto": true, "zmax": 3.1584895066647127, "zmin": -3.1584895066647127 }, { "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.21422423948164607, 0.19678102014986515, 0.18042178797841688, 0.1653338995327772, 0.15168858420664355, 0.13963027347330906, 0.129267420082394, 0.12066808063282566, 0.11386314804117645, 0.10885750976775735, 0.1056452646223632, 0.10422214345017805, 0.10458918351987012, 0.10674648913549946, 0.11068144874722274, 0.1163583305560681, 0.12371426450194811, 0.13266211679725054, 0.14309717477841735, 0.15490388373195124, 0.16796044112083128, 0.18214101747866351, 0.1973165195082139, 0.21335498853343132, 0.23012235470554163, 0.24748378892776676, 0.26530555231705094, 0.2834570888267303, 0.3018130939604883, 0.32025535327522164, 0.3386742259829626, 0.35696972215561634, 0.3750521757479895, 0.3928425492819694, 0.41027242344659054, 0.4272837309174733, 0.443828292634719, 0.45986720976990847, 0.47537015779002195, 0.4903146217035028, 0.504685104494432, 0.5184723342875435, 0.5316724900881954, 0.5442864610305159, 0.5563191499023795, 0.5677788282291393, 0.5786765473128541, 0.589025607266926, 0.5988410841907781, 0.6081394141364936 ], [ 0.20448632141841327, 0.1866189142852884, 0.16988446727840303, 0.15449177511746454, 0.1406342931092247, 0.12847555303349759, 0.11813446931611918, 0.10967529588608564, 0.10310783491061441, 0.09840070344063426, 0.09550394679717959, 0.09437116180934095, 0.09497102526612095, 0.09728464113014325, 0.10129348068368738, 0.10696683153757348, 0.11425540472526005, 0.12309197142363193, 0.13339554843927842, 0.1450751823608045, 0.15803153067348932, 0.1721566757880616, 0.18733356148686217, 0.2034362128387834, 0.22033119672283383, 0.23788016862702255, 0.25594304503566506, 0.27438130319832205, 0.2930610203665066, 0.31185541721424254, 0.3306468052335912, 0.34932793393597555, 0.36780279105378816, 0.38598693656733135, 0.40380745938289525, 0.4212026420891633, 0.43812141013832157, 0.454522630592905, 0.4703743142541497, 0.48565276454317674, 0.5003417073474612, 0.5144314282493565, 0.5279179370382975, 0.5408021740257222, 0.5530892682694605, 0.564787854220809, 0.5759094504010329, 0.5864679013851701, 0.5964788825298231, 0.6059594654549576 ], [ 0.1964654590219303, 0.17823225215214533, 0.16116705268938508, 0.14549878661004217, 0.13144366397042748, 0.11918710306109617, 0.10886310386313931, 0.10053706742383872, 0.09420097247332582, 0.0897875778351148, 0.08720092796404118, 0.08634963181373286, 0.08716721179044437, 0.08961305795423442, 0.09365998917680579, 0.09928016261528597, 0.10643743426202386, 0.11508650518465158, 0.1251743379775373, 0.13663983869895813, 0.1494110420368076, 0.16340151643222392, 0.17850810965877656, 0.19461117099362824, 0.21157718655682592, 0.22926303346407303, 0.24752088573218722, 0.2662029825589788, 0.2851657648273859, 0.3042731546953244, 0.3233989424367914, 0.3424283541919126, 0.36125892423901357, 0.3798008080452303, 0.39797666488149847, 0.4157212223981496, 0.43298061668114046, 0.4497115832118153, 0.4658805582226904, 0.48146273655285543, 0.4964411211464409, 0.5108055904966248, 0.5245520032603057, 0.5376813536224317, 0.5501989864908616, 0.5621138780240358, 0.5734379841549003, 0.5841856575371281, 0.5943731315969799, 0.6040180690434586 ], [ 0.19031088966103937, 0.17178477869950143, 0.15444323516078964, 0.13853042773907814, 0.12428164474606379, 0.11190308602326152, 0.1015464345413005, 0.09328467507056064, 0.08710101698551224, 0.08290203983980074, 0.08055429441001281, 0.07992734916814177, 0.08092165942096714, 0.08347230828399807, 0.08753690603891387, 0.09308248213702507, 0.10007971309538918, 0.1085025840871738, 0.11832711731440357, 0.12952553775061576, 0.14205721469888014, 0.1558602794913214, 0.17084712027994223, 0.18690472590146937, 0.20389895173050906, 0.22168097197970715, 0.24009428429167684, 0.258981149357285, 0.27818789563205776, 0.2975689236632148, 0.3169894815812522, 0.3363273919352691, 0.3554739394683829, 0.3743341179678377, 0.39282640610190156, 0.4108822102277831, 0.4284450825785438, 0.4454697981989107, 0.4619213537853819, 0.47777393568125087, 0.493009891926202, 0.5076187337178606, 0.5215961842708197, 0.534943287347392, 0.5476655832926044, 0.5597723569409209, 0.5712759590579529, 0.5821912008782983, 0.5925348196841298, 0.6023250121510374 ], [ 0.18613497393027223, 0.16740596094738786, 0.14985751138163828, 0.1337407044609919, 0.11930142904144199, 0.1067600657709979, 0.09628418321093271, 0.08796019117487881, 0.08177695163261, 0.07763550235170366, 0.07538648043692281, 0.0748768840624043, 0.07598109574043012, 0.07860643419902189, 0.08268412797217928, 0.08816221555985598, 0.09500646705843013, 0.10320322677481876, 0.11275554101972562, 0.12367018640479523, 0.13594032042040013, 0.14953079898814373, 0.16437077681887283, 0.18035421988298023, 0.1973461666327925, 0.2151917576986045, 0.23372558985084155, 0.2527799327204826, 0.2721912044152745, 0.29180465055341637, 0.3114774429321227, 0.3310805053955863, 0.35049937097954675, 0.369634331604501, 0.3884000892499857, 0.40672506902718053, 0.42455051439272523, 0.44182945331652407, 0.4585256003519996, 0.4746122416995095, 0.49007113705547123, 0.5048914621219411, 0.5190688082127936, 0.532604249769344, 0.5455034863120796, 0.5577760620655714, 0.5694346639602962, 0.580494496768158, 0.5909727326470713, 0.6008880312666877 ], [ 0.1839958309766758, 0.16517056238101932, 0.14750258341638917, 0.13123966141799914, 0.11662644102357429, 0.10388599516802834, 0.0931945467608018, 0.08465419783924008, 0.07827515202673563, 0.07398079977647373, 0.07163817333623469, 0.07109758846921166, 0.07221903530230661, 0.07487856267257822, 0.07896734537507, 0.08439773758832644, 0.09111640162026557, 0.09911271312950214, 0.10841210103925415, 0.11905446774904332, 0.1310668987916814, 0.14444150316148957, 0.15912459608964818, 0.17501734404677508, 0.19198418716803617, 0.2098646012196024, 0.22848486202689836, 0.24766801472041092, 0.2672414504907044, 0.2870421819291731, 0.3069201989613507, 0.32674034787925804, 0.3463831314974044, 0.3657447508515253, 0.3847366317215409, 0.4032846147554139, 0.421327938186357, 0.4388181052674702, 0.4557177017998957, 0.47199920987703864, 0.4876438501012686, 0.5026404744806077, 0.5169845248572941, 0.5306770662711753, 0.5437239005755701, 0.5561347625292743, 0.5679225982309739, 0.5791029239669937, 0.5896932621890193, 0.5997126503398642 ], [ 0.18388259508278118, 0.1650795906103542, 0.1473955900273154, 0.13106542617036465, 0.11632059213424917, 0.10337394109678527, 0.09239968694223898, 0.08351258606237819, 0.0767543574885523, 0.07209562372885145, 0.06945322872446287, 0.06871086204893997, 0.06973055463949376, 0.07235756466241851, 0.07643277786222011, 0.08181925940455936, 0.08843238825089345, 0.09625532754263234, 0.10532932223510108, 0.11572286775926875, 0.1274939536974026, 0.1406600776209327, 0.1551837921052733, 0.17097333153008215, 0.18789305155033265, 0.20577775696419628, 0.22444669679584636, 0.24371511854260716, 0.26340281197065707, 0.2833398881822554, 0.3033703388805828, 0.32335394490777153, 0.34316701660871524, 0.36270233749064384, 0.38186858279323904, 0.4005894060661703, 0.41880232900886327, 0.4364575286145645, 0.4535165867433787, 0.46995124703704205, 0.4857422099045197, 0.5008779862589495, 0.5153538234728262, 0.5291707117610424, 0.5423344753118782, 0.5548549495713295, 0.5667452438841671, 0.5780210870299649, 0.58870025194488, 0.5988020550077042 ], [ 0.18570799200298346, 0.16704908614819644, 0.14946154540485448, 0.133160463139094, 0.1183556903699908, 0.10524015425361767, 0.09397656234136169, 0.08468580800018069, 0.07744145318639097, 0.0722717408820919, 0.0691632780755115, 0.06805676593359451, 0.06883533702517063, 0.07132318533050189, 0.07531238242387238, 0.08061354395488865, 0.08710534928200259, 0.09475783443313388, 0.10362018436733389, 0.1137816652811863, 0.12532456069844336, 0.13828711587366466, 0.15264560445387065, 0.16831463164711657, 0.18515907808456086, 0.20301047473353873, 0.22168280787951222, 0.2409853644500946, 0.26073206314732167, 0.2807476438647752, 0.3008713947477062, 0.3209590895976266, 0.3408836865228693, 0.3605351999802139, 0.3798200400274835, 0.3986600228944374, 0.416991192818262, 0.43476255053835333, 0.45193475330041905, 0.46847883031426807, 0.484374943215383, 0.4996112110546386, 0.5141826122494212, 0.5280899708267434, 0.5413390305529957, 0.5539396177689193, 0.565904891665204, 0.5772506791676547, 0.5879948904336636, 0.5981570101135217 ], [ 0.1893111648240371, 0.17091147254021485, 0.1535314276380963, 0.13736330092430277, 0.12259188403484718, 0.10938638545509398, 0.09789349194745206, 0.08823436782853655, 0.08050702152357779, 0.07479008556920465, 0.07113697713536098, 0.06955095814345852, 0.06995079808698221, 0.07215892230618962, 0.075936720261114, 0.08105483071759066, 0.08735995725186428, 0.0948062120838198, 0.10344254606864067, 0.11336860752625627, 0.12468133413401902, 0.13743266624222805, 0.15160863791572382, 0.1671289151541462, 0.18385941558079713, 0.2016299230114006, 0.22025109722592728, 0.23952822976779145, 0.2592711589609483, 0.2793007833561101, 0.2994529384339527, 0.3195803797452775, 0.33955347174797856, 0.3592600241719964, 0.37860458646612105, 0.3975074131011363, 0.41590324367604015, 0.4337399946864451, 0.45097742798257423, 0.4675858394477513, 0.4835447968132178, 0.4988419454644973, 0.5134718940548548, 0.5274351867232575, 0.5407373650702044, 0.55338812035519, 0.5654005343725631, 0.5767904059603021, 0.5875756589816306, 0.5977758268130476 ], [ 0.19447025957809438, 0.17642952329562422, 0.1593564478306537, 0.14342060793306818, 0.1287826820446289, 0.11558960955858485, 0.10397265804567482, 0.09405033591224594, 0.08593545404404349, 0.07973959193832099, 0.07556209560460547, 0.07345462740139716, 0.07337419135235769, 0.07516207283995037, 0.07857840344003113, 0.08337976352892458, 0.08939567681013622, 0.09656686989553474, 0.10493551516853596, 0.11460077720652855, 0.1256633521887901, 0.1381806108546459, 0.1521435566965615, 0.1674751652469152, 0.18404271594529997, 0.2016756974820835, 0.2201833259045807, 0.23936879061415298, 0.2590395429914311, 0.27901405531306556, 0.2991258400134155, 0.31922550471535965, 0.3391814692547437, 0.35887980549090687, 0.3782235225016492, 0.3971315170414979, 0.4155373371256848, 0.4333878575887793, 0.450641933532129, 0.46726907547817387, 0.4832481751308109, 0.49856630044343325, 0.5132175716108582, 0.5272021245845759, 0.5405251650904518, 0.5531961134709508, 0.5652278387006591, 0.576635978452998, 0.5874383410082342, 0.5976543840083854 ], [ 0.20092120166448912, 0.18331841422623865, 0.16663323220588855, 0.15101461958191065, 0.13660246159808312, 0.12352544529355276, 0.11190247046661896, 0.10184848860711511, 0.09348267910776703, 0.08693160059861968, 0.0823157418126161, 0.07971270603535699, 0.07910968294621706, 0.0803793057601442, 0.0833076655653334, 0.08766616785860427, 0.09328707089977871, 0.10010512244196706, 0.10815278536421123, 0.11752012043828756, 0.1283018302164406, 0.14055287017109785, 0.1542644602073766, 0.16936102150525267, 0.18571137025930767, 0.20314600289686952, 0.22147443246260115, 0.24049950414624505, 0.2600278481216277, 0.27987680778093543, 0.2998785969023045, 0.31988245419680733, 0.33975542680552334, 0.3593822519914334, 0.37866466733114446, 0.39752037514828237, 0.4158818131165558, 0.4336948325434695, 0.450917351922559, 0.4675180305912393, 0.483474991996826, 0.49877461562116937, 0.513410409378865, 0.5273819692030431, 0.5406940288687224, 0.553355600427003, 0.565379203643957, 0.576780181367983, 0.587576096665155, 0.5977862067813122 ], [ 0.20837800222620376, 0.19126962709902068, 0.175031733411794, 0.15979548575839417, 0.14568379502413856, 0.13281122102244924, 0.12128719254664212, 0.1112224920244439, 0.10273622202302973, 0.09595660790162064, 0.09100685384803159, 0.08797223957393796, 0.0868595678683415, 0.08757564250955842, 0.0899479868479497, 0.09378365672738276, 0.09893518535187687, 0.10534065551237475, 0.11302370453044716, 0.1220605260554134, 0.1325329823754723, 0.1444874880820163, 0.15791149146040573, 0.1727291825511219, 0.18881101367123088, 0.2059896417026245, 0.22407647663520078, 0.24287567077328912, 0.2621945261178888, 0.2818505082890873, 0.301675529352525, 0.321518223681802, 0.34124483214174484, 0.3607391613159217, 0.37990195101878227, 0.39864988015515174, 0.41691436688226724, 0.4346402678055898, 0.45178454618712205, 0.46831495570929516, 0.48420877048966193, 0.49945158122575023, 0.514036169864678, 0.5279614699251701, 0.5412316158268337, 0.5538550818350602, 0.5658439092059905, 0.57721301861744, 0.5879796038686428, 0.5981626020374065 ], [ 0.2165508859882923, 0.19997185503920048, 0.18421943011093964, 0.1694096917292882, 0.15565181276670703, 0.14304926024692913, 0.13170366521004043, 0.12172064999598375, 0.1132147358980656, 0.10630800484033487, 0.10111662727310472, 0.09772390528487986, 0.09614899460157937, 0.09633045062796972, 0.09814117623938734, 0.10143294878019328, 0.10608888182680727, 0.11205793944667031, 0.11935782714559619, 0.12804958562295155, 0.13819860744521256, 0.14983879794368588, 0.162950902058145, 0.177457496440347, 0.19323068854159067, 0.210106263405044, 0.22789897181896723, 0.2464158378895457, 0.2654663067150548, 0.2848692414862882, 0.30445730095146917, 0.3240793443359132, 0.34360144131823983, 0.3629069391382491, 0.38189591697502523, 0.4004842594511753, 0.4186025085428257, 0.4361946019915091, 0.45321657106204405, 0.4696352464466805, 0.4854270047211514, 0.5005765765057649, 0.5150759296719868, 0.5289232354303609, 0.5421219211945175, 0.5546798112515741, 0.5666083541631605, 0.5779219342648106, 0.5886372634868798, 0.5987728488945763 ], [ 0.22516038849437214, 0.20912670972941583, 0.19387904116157104, 0.1795206230351902, 0.16614921821408302, 0.15385901279591882, 0.1427444304946605, 0.13290482335536094, 0.12444745906174096, 0.11748488297986212, 0.11212307826992375, 0.10844058879215937, 0.1064657721681955, 0.10616526614780988, 0.10745468134198277, 0.11023065011719797, 0.11440980989306627, 0.11995591945085744, 0.1268835613497956, 0.1352393043490677, 0.1450708571310693, 0.15639748834097944, 0.16919125821974632, 0.18337197144384831, 0.1988132364830316, 0.21535464565479423, 0.2328154906812825, 0.2510070903195746, 0.26974246188380635, 0.2888431738071089, 0.3081437587769346, 0.32749423291092067, 0.3467612410950768, 0.36582825274048675, 0.38459512728287176, 0.40297727905009206, 0.4209046022922204, 0.4383202672404751, 0.4551794629160696, 0.4714481380234857, 0.4871017744081053, 0.5021242158695651, 0.516506566945719, 0.5302461704925134, 0.5433456687285624, 0.555812149389062, 0.567656376409938, 0.5788921029199119, 0.5895354631085289, 0.5996044386627499 ], [ 0.23394718637094544, 0.21845919153155696, 0.20371988008397218, 0.18982136298326494, 0.17685152471885948, 0.16489621715163455, 0.15404270831564615, 0.14438327973121717, 0.13601686165413912, 0.12904598653021554, 0.12356705970529266, 0.11965479883089804, 0.11734618471459775, 0.11663260673599732, 0.11746723134541151, 0.11978706928147173, 0.12354034387493247, 0.12870616789930422, 0.13529766499970375, 0.14334821449236781, 0.1528879919019881, 0.16392075749190482, 0.17640860730485342, 0.19026753714904368, 0.2053722472761616, 0.2215664230731392, 0.2386747336382158, 0.25651395921589826, 0.27490198334639687, 0.29366435358605913, 0.31263864186288703, 0.33167703563148865, 0.3506476069544537, 0.36943464310324803, 0.3879383382680554, 0.40607406824217995, 0.423771407279595, 0.44097299919502164, 0.45763336064829385, 0.47371767032511436, 0.4892005806633139, 0.504065076759056, 0.5183013985807445, 0.5319060365393896, 0.5448808060706004, 0.5572320036721043, 0.5689696444718787, 0.580106779646849, 0.5906588907156407, 0.600643356785179 ], [ 0.24267832026803504, 0.22772394533618429, 0.21348427312105012, 0.20004156279042654, 0.1874748196310081, 0.17586206669537177, 0.16528338814926752, 0.15582372050285623, 0.1475737610589448, 0.14062717246316808, 0.13507303121862219, 0.13098451935809058, 0.12840767012938664, 0.12735581688745753, 0.12781414439653313, 0.12975399078002542, 0.13315088920843357, 0.13799770988136623, 0.14430657272241498, 0.1520988377502284, 0.16138790339601222, 0.17216191681080092, 0.18437224019600815, 0.1979301249783201, 0.21271071578485426, 0.22856166326862787, 0.24531341496790487, 0.26278901813015876, 0.28081226670172915, 0.29921382132779806, 0.3178354082216244, 0.336532414963916, 0.3551752490033515, 0.3736497915242192, 0.3918572177696027, 0.40971339156016107, 0.42714798743684385, 0.44410345117677125, 0.46053387744135216, 0.47640385995028994, 0.4916873527244665, 0.5063665688357205, 0.520430934386533, 0.5338761091290142, 0.546703080519363, 0.5589173346030026, 0.5705281045996091, 0.581547696174483, 0.5919908869831526, 0.6018743970486798 ], [ 0.2511507323740825, 0.23670852692278468, 0.22295060782630075, 0.20995037466614988, 0.1977786735086311, 0.18650607373273492, 0.17620561065579637, 0.16695511435939547, 0.15883789841118448, 0.1519405932462275, 0.14634757416319125, 0.14213284742276744, 0.13935199636644932, 0.13803780327372264, 0.13820229258647085, 0.1398450070028002, 0.14296380413690088, 0.14756267098317907, 0.15365232718335264, 0.16124296729894405, 0.17033217845937026, 0.18089286043694597, 0.19286528935836533, 0.20615520273407575, 0.22063742180768972, 0.2361631088211119, 0.25256847791058407, 0.26968324826761264, 0.2873378389433521, 0.3053689206989509, 0.32362334163290213, 0.3419606452582568, 0.36025446568480357, 0.3783930760274125, 0.3962793257404516, 0.41383015444282, 0.43097582531688405, 0.44765898435674567, 0.46383362301611564, 0.4794640001121499, 0.4945235627440455, 0.5089938941338678, 0.5228637075823771, 0.5361278993044488, 0.5487866681398947, 0.5608447065750276, 0.5723104648374713, 0.5831954878155603, 0.5935138230446174, 0.6032814968824649 ], [ 0.25919295089514766, 0.24523469683558016, 0.23193424063565873, 0.21935696525546067, 0.2075661803214893, 0.19662541772998465, 0.18660102954707772, 0.177564356060958, 0.16959253754776127, 0.16276712570346463, 0.15717016313604154, 0.1528783441752396, 0.1499569468907678, 0.1484558150379017, 0.14840913445493167, 0.14983900864187832, 0.1527607183514188, 0.15718639225851186, 0.1631244825726783, 0.1705745897101208, 0.17951950889541132, 0.18991757519012822, 0.20169800840741126, 0.2147605203596053, 0.22897888011854498, 0.24420713721678514, 0.26028695211266273, 0.2770547600256572, 0.2943479742232836, 0.3120098821641539, 0.32989320148954926, 0.3478624370241633, 0.3657952503723386, 0.3835830616050879, 0.40113107967066447, 0.418357924366114, 0.4351949684893352, 0.45158549873536075, 0.4674837693413798, 0.48285400321527594, 0.49766938050519816, 0.5119110433706088, 0.5255671372707004, 0.5386319027178804, 0.5511048266283882, 0.5629898587465262, 0.5742946958353118, 0.5850301342046792, 0.595209489536839, 0.6048480817565253 ], [ 0.26666554773191864, 0.25315845868627834, 0.24028708909599447, 0.22810959977863873, 0.2166823961915827, 0.2060624956244977, 0.19631013172865117, 0.18749098517056445, 0.17967731319138308, 0.1729473365387743, 0.1673826066867158, 0.16306369642701576, 0.16006523960857924, 0.1584517365671142, 0.1582752919848236, 0.15957551008790255, 0.16238057263708505, 0.16670780684697875, 0.1725623349491116, 0.17993355291974147, 0.1887904976043462, 0.19907786037816544, 0.21071419197734476, 0.22359299148309736, 0.23758642481408437, 0.2525507965580251, 0.2683327262724756, 0.2847751431458189, 0.30172252094365093, 0.31902507885107184, 0.3365419001691941, 0.35414305706865834, 0.37171089318982914, 0.38914063184612724, 0.4063404673708371, 0.42323127543427624, 0.4397460535644108, 0.4558291799788096, 0.4714355589400047, 0.4865297045515046, 0.501084801942406, 0.5150817746323525, 0.5285083789819083, 0.5413583405293098, 0.5536305422917693, 0.5653282714516398, 0.5764585280125724, 0.587031396815456, 0.597059482611421, 0.6065574065970992 ], [ 0.27346079832976455, 0.260369307827264, 0.2478964246885372, 0.23609389750146104, 0.22501191893470554, 0.21470162466472067, 0.205217824626175, 0.19662143946917635, 0.1889810313155433, 0.18237287751697764, 0.17687927933958195, 0.17258520436478483, 0.1695738208197465, 0.16792180072258617, 0.16769525329999577, 0.16894674803229848, 0.171713286445812, 0.17601464514061402, 0.18185153022237477, 0.1892034399755536, 0.1980267055293574, 0.20825348652938233, 0.21979237352597095, 0.2325308116074072, 0.2463390757841274, 0.26107521232339853, 0.2765902799163786, 0.2927333271010119, 0.30935572979134446, 0.3263147028498458, 0.3434759481114032, 0.36071549668266456, 0.3779208528111472, 0.3949915635985793, 0.4118393361755873, 0.4283878112980604, 0.4445720858860694, 0.46033806033684405, 0.4756416712385538, 0.49044805705000927, 0.5047306934726254, 0.5184705264320376, 0.5316551235147281, 0.5442778590662222, 0.5563371436776416, 0.567835705235503, 0.5787799258989927, 0.589179237151703, 0.5990455733359878, 0.6083928827280481 ], [ 0.2795018270828098, 0.2667889870777309, 0.25468318552125074, 0.24323061904096052, 0.23247603230718497, 0.22246539780928304, 0.21324885441375244, 0.2048834253990813, 0.19743495905879557, 0.19097876067198294, 0.18559853883741537, 0.18138356477004092, 0.1784242872680564, 0.17680696129077791, 0.1766080221714418, 0.17788890084723358, 0.18069175595303424, 0.18503632153482766, 0.19091788016074002, 0.1983063329216726, 0.20714639173548383, 0.21735894933110653, 0.22884361566710823, 0.2414822641711287, 0.2551432823977089, 0.26968613814110304, 0.2849658771754665, 0.3008372435428113, 0.31715822026790763, 0.33379289400624984, 0.3506136316874647, 0.3675026144064982, 0.3843528059579801, 0.4010684465189251, 0.4175651625070374, 0.43376977690386875, 0.44961989413087894, 0.46506332232093095, 0.4800573849213768, 0.49456816368547996, 0.5085697065177649, 0.5220432263571245, 0.5349763112111807, 0.5473621604488944, 0.5591988583596798, 0.570488692649602, 0.5812375228410857, 0.5914542013638702, 0.6011500483833205, 0.6103383800349778 ], [ 0.2847414285432858, 0.2723699463508827, 0.26060001848858627, 0.24947321605677172, 0.23902967063539907, 0.22931096417785868, 0.2203633172018453, 0.21224061300058564, 0.20500671108852583, 0.19873649780360503, 0.19351521744942848, 0.18943583076293957, 0.1865944446972444, 0.18508420553750388, 0.1849883714650757, 0.1863734864013994, 0.18928358459324449, 0.1937361458635719, 0.1997201608988702, 0.2071962798865943, 0.2160987249301248, 0.22633850126917898, 0.23780742646381392, 0.2503825558469017, 0.26393066680768384, 0.2783125470145076, 0.2933869048691945, 0.3090137845541396, 0.325057423607341, 0.34138853721964746, 0.3578860491901679, 0.37443831434140806, 0.39094389204721747, 0.40731193713347374, 0.423462274907564, 0.43932522350142605, 0.4548412207704823, 0.46996030594143046, 0.4846414989066989, 0.4988521130555521, 0.5125670311048144, 0.5257679676771946, 0.5384427374008692, 0.5505845430411476, 0.5621912945639637, 0.5732649670010083, 0.583811002465527, 0.5938377595888304, 0.6033560119501465, 0.6123784957037137 ], [ 0.28916070005518896, 0.277093649647702, 0.2656292060320312, 0.2548053125731186, 0.24465838396291134, 0.23522641252693302, 0.22655241503114115, 0.21868775103255048, 0.2116947470180759, 0.20564803173570123, 0.2006340506920756, 0.19674840117553008, 0.194090922909855, 0.19275887764730268, 0.1928389897077132, 0.19439947606025515, 0.19748331817411846, 0.20210381890553422, 0.2082429816346834, 0.21585262695837565, 0.22485765728426066, 0.23516064298121842, 0.2466469386407283, 0.2591897379614255, 0.2726547133077324, 0.28690407790968014, 0.3018000293119085, 0.3172075935069295, 0.3329969133175148, 0.34904503146655746, 0.36523721973693674, 0.3814679054211238, 0.3976412459750726, 0.4136714021351106, 0.42948255827662596, 0.44500873629246046, 0.4601934458293453, 0.4749892095924694, 0.48935699791486575, 0.5032656021690802, 0.5166909720940296, 0.5296155378726302, 0.5420275339177532, 0.5539203378501356, 0.5652918350928778, 0.5761438168522178, 0.586481416979463, 0.5963125912838547, 0.6056476412579083, 0.6144987828526883 ], [ 0.2927675892795164, 0.2809688448411286, 0.26978060733192705, 0.25923826209700934, 0.24937545717571719, 0.24022740906060933, 0.23183458912308702, 0.22424629842263918, 0.21752352841681127, 0.21174046145339612, 0.20698401562438326, 0.20335101191722157, 0.20094285908533654, 0.19985810564161932, 0.20018372881829985, 0.2019864666272309, 0.20530565708472306, 0.21014879469075465, 0.21649038810527663, 0.22427393456082112, 0.2334162142547201, 0.24381284473718717, 0.25534412144477464, 0.2678804631800643, 0.28128711076498125, 0.2954279826393935, 0.3101687397126355, 0.3253791713776829, 0.340935020391566, 0.35671934685611706, 0.3726235095967868, 0.3885478252078087, 0.4044019528351742, 0.42010504539752, 0.43558570362497745, 0.45078176648794255, 0.46563996927779455, 0.4801154982597683, 0.49417146825207037, 0.507778346695936, 0.5209133448579506, 0.5335597938615043, 0.5457065203811966, 0.5573472341316199, 0.5684799367933636, 0.5791063597749999, 0.5892314362228857, 0.5988628109609508, 0.6080103905614979, 0.6166859345013503 ], [ 0.2955954366490432, 0.2840298923732087, 0.27308972804174525, 0.2628089119077386, 0.25321932719841794, 0.24435423789637112, 0.23625217209644261, 0.22896069719427659, 0.22253943864674433, 0.21706164409495407, 0.21261365003557256, 0.20929180250928514, 0.20719674038657956, 0.20642545698354006, 0.20706212644329955, 0.20916914029769557, 0.21277993263803152, 0.21789484666257375, 0.22448057759472512, 0.23247288557103613, 0.24178163218236098, 0.25229695058624124, 0.26389549391474776, 0.27644605457543764, 0.2898142218718257, 0.3038660293580698, 0.3184707033093465, 0.33350268148169504, 0.34884306711812674, 0.3643806521693194, 0.3800126082494897, 0.39564491442278854, 0.4111925703112997, 0.4265796302291021, 0.4417390868258134, 0.4566126288740772, 0.47115029570888356, 0.48531004937039685, 0.4990572841429134, 0.5123642916709925, 0.5252096981119877, 0.5375778878911794, 0.5494584266384192, 0.56084549388558, 0.5717373341626864, 0.5821357333013898, 0.5920455250744497, 0.6014741317912387, 0.6104311411427004, 0.6189279204462265 ], [ 0.2977015674297611, 0.28633522594999955, 0.275616011944479, 0.2655776876629613, 0.2562514276908133, 0.2476693837704295, 0.23986870142834385, 0.2328954250352538, 0.22680759521820665, 0.22167679378650731, 0.21758746400783413, 0.21463356309834022, 0.21291250772526693, 0.2125169246046132, 0.2135253085946964, 0.21599312655134137, 0.21994597296546423, 0.22537597634797943, 0.23224187832963386, 0.24047235378967133, 0.24997153087630034, 0.26062547439515465, 0.27230857294755273, 0.28488914360943085, 0.2982339538082389, 0.3122116467205128, 0.32669521525950473, 0.3415637242075795, 0.3567034709416065, 0.37200873816457025, 0.387382250115333, 0.40273540817284703, 0.4179883560363226, 0.4330699080714596, 0.4479173647403679, 0.46247623390936976, 0.47669987433188477, 0.4905490763948211, 0.5039915944735263, 0.5170016445202512, 0.5295593796227069, 0.5416503551680106, 0.5532649939648898, 0.5643980602763625, 0.5750481502650715, 0.5852172049157126, 0.594910050122802, 0.6041339673536532, 0.6128982971396555, 0.6212140766276791 ], [ 0.29916595318378664, 0.2879659825452729, 0.27744141146928725, 0.2676270748206234, 0.2585545547766872, 0.2502557628661215, 0.2427670064464394, 0.23613294011117902, 0.2304096622070613, 0.22566617529047592, 0.22198352817430855, 0.21945122859787491, 0.2181609661013191, 0.21819826564246897, 0.21963327275559957, 0.2225122482229847, 0.22685132935323707, 0.23263363174234736, 0.23980996459079132, 0.24830261578679702, 0.25801112308161905, 0.26881881488745085, 0.28059911306480934, 0.2932209654951421, 0.30655314863296235, 0.32046745179950703, 0.33484090361581653, 0.3495572506512266, 0.3645078874171796, 0.3795923986903169, 0.3947188316875737, 0.40980377796428424, 0.42477231682284566, 0.4395578532377726, 0.4541018718905228, 0.46835362261736985, 0.4822697494684817, 0.4958138742220246, 0.5089561446441233, 0.5216727574679557, 0.533945465688605, 0.54576107921343, 0.557110967151428, 0.5679905691019734, 0.5783989217677651, 0.5883382061263241, 0.5978133193008922, 0.6068314742172527, 0.6154018291496529, 0.6235351483682832 ], [ 0.30008991360133114, 0.28902478489999817, 0.278669234842174, 0.26906050967045664, 0.26023177986421464, 0.25221563733472563, 0.24504810873284713, 0.2387725563701757, 0.23344269318184874, 0.22912390893875778, 0.22589223499929784, 0.2238305902638646, 0.2230224411008055, 0.22354359961410655, 0.2254534269813807, 0.22878700186997966, 0.23354969677734924, 0.23971506349051025, 0.247226140658658, 0.25599955395504687, 0.26593133155862203, 0.27690328979419837, 0.28878907189776926, 0.30145928202965505, 0.3147854990481977, 0.3286431997596139, 0.34291375430664, 0.3574857001462214, 0.37225549003371555, 0.3871278732616871, 0.40201602774354667, 0.41684152368589805, 0.4315341713487474, 0.44603178585620834, 0.46027988965737804, 0.47423136608692174, 0.4878460737504891, 0.5010904297695814, 0.5139369692883661, 0.5263638884482559, 0.5383545779141464, 0.5498971538095104, 0.5609839925196737, 0.5716112752532567, 0.5817785475440996, 0.5914882980758, 0.6007455603657235, 0.6095575399969845, 0.6179332692698609, 0.6258832903844564 ], [ 0.3005947661976848, 0.289634585595958, 0.27942318305366953, 0.2700015982157637, 0.26140583193783273, 0.25367013729895194, 0.24683085699265805, 0.24093016265211048, 0.2360189049052714, 0.23215776886649664, 0.22941609210723715, 0.22786805693957068, 0.22758648489473804, 0.22863504101446694, 0.23106013551867663, 0.23488400570795795, 0.24010025429230336, 0.2466725474489456, 0.2545364350844929, 0.26360361361867896, 0.2737676045714329, 0.2849098126523989, 0.2969051607563332, 0.30962682846609335, 0.3229499228532603, 0.3367541230317643, 0.3509254542978653, 0.36535738505015475, 0.3799514295323211, 0.3946174070326179, 0.4092734703754999, 0.4238459824415498, 0.43826929264512515, 0.4524854461754836, 0.466443846239917, 0.4801008819304834, 0.4934195301238718, 0.5063689377559084, 0.5189239899624761, 0.5310648693211891, 0.5427766113745696, 0.5540486615480018, 0.564874438392298, 0.5752509077504468, 0.585178171981692, 0.5946590778042382, 0.6036988456785674, 0.6123047229843147, 0.6204856625779489, 0.6282520276830246 ], [ 0.3008202573402009, 0.289937391312406, 0.2798463828482098, 0.2705934582705423, 0.26221873416928787, 0.2547591637226722, 0.24825205640726028, 0.24273852996745576, 0.2382661084644775, 0.23488968220166417, 0.2326702361497396, 0.23167113646527157, 0.23195228692481207, 0.2335630105649461, 0.2365349102290013, 0.240876056831136, 0.24656757738079996, 0.2535631437118644, 0.26179119972605813, 0.27115923777213297, 0.2815591857201858, 0.2928730025100344, 0.30497780583847833, 0.3177501453589924, 0.33106929152844766, 0.344819588015338, 0.35889201056352427, 0.3731851061146318, 0.387605477228976, 0.4020679490883671, 0.41649552354622654, 0.4308191945125461, 0.44497767466746013, 0.45891706566078183, 0.4725904918173083, 0.48595770968477814, 0.49898470126595273, 0.5116432563888031, 0.5239105485609988, 0.5357687082406035, 0.5472043973483067, 0.558208388814287, 0.5687751548693215, 0.5789024676007112, 0.5885910149893735, 0.5978440352398313, 0.6066669717368215, 0.6150671504412148, 0.6230534810030951, 0.6306361823463759 ], [ 0.3009225337865667, 0.29009258981341685, 0.28010010361317433, 0.2709978402536763, 0.26283132017665495, 0.2556412694457411, 0.24946666396727554, 0.2443477554331569, 0.24032832719117317, 0.23745644472722985, 0.23578317550922073, 0.2353591458701541, 0.2362293060262694, 0.23842675748214648, 0.24196680251791286, 0.2468423803570953, 0.2530217370850083, 0.2604486418008923, 0.26904489930241693, 0.27871450118348007, 0.28934859495769116, 0.30083051725645565, 0.3130403433882339, 0.3258586499961357, 0.33916939746294367, 0.35286198199408086, 0.3668325835050226, 0.38098496026779793, 0.39523083412595517, 0.40948998727731317, 0.4236901642403195, 0.43776684695211143, 0.4516629498026572, 0.46532846545574047, 0.4787200810903885, 0.49180077730538635, 0.5045394173771399, 0.51691033196696, 0.5288929030354116, 0.5404711501188815, 0.5516333218988553, 0.5623714959165185, 0.5726811892187001, 0.5825609825960839, 0.5920121608655015, 0.6010383713557006, 0.609645302395947, 0.6178403832014583, 0.6256325061224453, 0.6330317717964963 ], [ 0.3010713572592218, 0.29027452058542685, 0.2803617382310672, 0.27139354876569166, 0.26342209886991635, 0.2564929408305687, 0.250647434219518, 0.245925199668736, 0.2423659427841009, 0.24000999272424997, 0.23889711405732705, 0.23906352851452561, 0.24053753945360787, 0.2433345538589364, 0.2474525074629944, 0.252868634595607, 0.2595382015569292, 0.2673953563059781, 0.2763558002330238, 0.28632069239936647, 0.2971811045245419, 0.30882242554103306, 0.3211282918449292, 0.33398381616996986, 0.34727805247725135, 0.36090574525379754, 0.37476847055442786, 0.3887752954806221, 0.4028430773128835, 0.41689650554652746, 0.43086796812228123, 0.44469730214275344, 0.4583314716620593, 0.47172420141584775, 0.48483558540484123, 0.49763168243474, 0.5100841063187411, 0.5221696157834081, 0.5338697076164328, 0.5451702158188372, 0.5560609191593718, 0.5665351593618536, 0.5765894720524459, 0.5862232324767961, 0.5954383178303162, 0.6042387878182884, 0.6126305847819205, 0.6206212544058217, 0.6282196876793318, 0.6354358844363098 ], [ 0.30144625113068857, 0.29066889324818246, 0.28082156553309406, 0.2719735989970875, 0.26418482589770376, 0.2575065741083473, 0.25198326183846237, 0.24765413602705552, 0.24455458180731873, 0.24271645927382454, 0.24216712100534296, 0.24292709688528963, 0.24500681283753004, 0.2484030164283956, 0.25309570732685976, 0.2590462679019485, 0.2661971979342826, 0.27447348536455146, 0.2837853173946208, 0.2940316406819576, 0.3051040383751341, 0.3168904718744899, 0.32927857749079126, 0.34215835786219767, 0.35542423040089327, 0.3689764770786561, 0.3827221835529927, 0.3965757702273717, 0.41045921393904744, 0.4243020454757195, 0.4380411912640832, 0.45162071108931884, 0.4649914694666756, 0.4781107669478538, 0.4909419491590546, 0.5034540053472257, 0.5156211641495764, 0.5274224916983398, 0.5388414955924004, 0.5498657373606125, 0.5604864555460142, 0.5706982012695264, 0.5804984879619711, 0.5898874568081253, 0.5988675592844394, 0.6074432579752798, 0.6156207466192032, 0.6234076900737066, 0.6308129846059912, 0.6378465386315474 ], [ 0.3022313281790539, 0.29146770423382135, 0.2816778414234475, 0.2729405533001502, 0.2653241345436895, 0.2588864236529823, 0.2536754461442868, 0.24973031286769629, 0.2470819498616142, 0.24575325681217056, 0.24575844663850915, 0.24710157502253247, 0.24977454723988726, 0.2537550946238614, 0.25900527105427296, 0.26547091296035846, 0.27308227927540807, 0.28175582528457105, 0.29139685090821515, 0.30190265024904006, 0.31316578070764833, 0.325077138386327, 0.33752863111154363, 0.3504153459264901, 0.3636371929307129, 0.3771000642600361, 0.3907165775881476, 0.4044064840193743, 0.4180968177001041, 0.4317218549077788, 0.4452229380841798, 0.4585482079483639, 0.4716522758844296, 0.4844958598306689, 0.4970453999655979, 0.509272665386521, 0.5211543593861943, 0.5326717285100131, 0.543810179006096, 0.554558903300051, 0.5649105185290142, 0.574860718802118, 0.5844079426099943, 0.5935530566137627, 0.6022990568623385, 0.6106507882942862, 0.6186146831694997, 0.6261985188480997, 0.6334111950959393, 0.6402625308567582 ], [ 0.3036087073922137, 0.2928624684404006, 0.28312993521406027, 0.27449965314412955, 0.2670487483107569, 0.2608419696162898, 0.25593127676994903, 0.2523558115826014, 0.2501420120289719, 0.24930362863977445, 0.24984149092580604, 0.25174302221652484, 0.2549816606869323, 0.25951645224530495, 0.26529209727521536, 0.27223965519321436, 0.280277971760576, 0.2893157456009416, 0.29925403844185333, 0.30998898219684173, 0.3214144440791453, 0.33342446041436713, 0.34591531735527464, 0.3587872227943087, 0.37194556674203477, 0.38530180316644635, 0.39877400581911066, 0.4122871574963682, 0.4257732306616996, 0.43917111103691203, 0.45242640737601353, 0.46549118195277484, 0.478323628345981, 0.49088771637506695, 0.5031528186512336, 0.5150933290896023, 0.5266882806993464, 0.5379209678192183, 0.5487785764866875, 0.5592518256357617, 0.5693346211593305, 0.579023724428859, 0.5883184365505254, 0.5972202993926942, 0.6057328142062317, 0.6138611784547285, 0.6216120412656815, 0.6289932777039634, 0.6360137818581549, 0.6426832785237682 ], [ 0.3057506919289454, 0.2950358845074325, 0.28536956463889396, 0.27684972944843506, 0.26956219114998764, 0.2635785667158063, 0.25895476886014623, 0.255730020213728, 0.25392635474789715, 0.25354853784719017, 0.2545843359074762, 0.25700509142547584, 0.26076659355804066, 0.2658102581214242, 0.2720646320915472, 0.2794472140021283, 0.28786654212595886, 0.29722446174232603, 0.30741845500443354, 0.3183439096232858, 0.3298962157122758, 0.3419726077456109, 0.35447370238575626, 0.36730471548151, 0.38037636795812674, 0.3936055085874469, 0.40691549190928994, 0.4202363533062459, 0.43350482229293125, 0.44666421126446487, 0.45966421171029137, 0.4724606242763222, 0.48501504370986664, 0.4972945150080119, 0.5092711731584577, 0.5209218757210887, 0.5322278350782027, 0.5431742553710328, 0.5537499778189587, 0.5639471371691596, 0.5737608313469298, 0.5831888058867761, 0.5922311543573666, 0.6008900357021361, 0.6091694091697192, 0.6170747872842729, 0.6246130070941738, 0.6317920197341754, 0.6386206981408601, 0.6451086625766055 ], [ 0.3088112175885349, 0.29815246008911156, 0.2885706616266797, 0.2801724196184355, 0.2730515142950551, 0.2672858828508728, 0.26293504899183845, 0.26003822018529466, 0.2586132244114683, 0.2586563832743064, 0.2601433171792047, 0.2630305716833408, 0.2672578694458228, 0.2727507511604178, 0.27942337668858114, 0.2871813016753549, 0.2959241032473557, 0.30554778137568284, 0.3159469001563674, 0.32701645533640905, 0.33865346594144075, 0.3507582944981733, 0.36323570573708, 0.375995679075922, 0.38895399535970004, 0.4020326225004343, 0.41515992721928846, 0.4282707408523021, 0.4413063063164045, 0.4542141312412694, 0.4669477694179839, 0.4794665495225854, 0.4917352668747742, 0.5037238510172557, 0.5154070192801932, 0.5267639242824931, 0.5377778015163169, 0.5484356217284139, 0.5587277516977875, 0.5686476261541845, 0.5781914329273948, 0.587357812911991, 0.5961475760327772, 0.6045634340700232, 0.6126097509260665, 0.6202923106701472, 0.6276181034763757, 0.634595129365719, 0.6412322194751706, 0.6475388744064827 ], [ 0.3129174117954363, 0.3023490440642092, 0.29287891614114503, 0.2846208270236235, 0.2776752469497619, 0.27212538490428906, 0.26803367380198345, 0.2654390636461886, 0.2643554840501349, 0.26477171595896337, 0.26665271174178035, 0.2699421746039284, 0.2745660232872288, 0.2804362822515192, 0.28745496516387664, 0.295517630934566, 0.30451643454556876, 0.31434262215313813, 0.3248885056234135, 0.33604899279636563, 0.34772275752710174, 0.3598131230029859, 0.37222871529151697, 0.38488392880032646, 0.3976992341586305, 0.4106013520433211, 0.4235233125704412, 0.4364044177693924, 0.4491901233490564, 0.4618318548387938, 0.47428677195954433, 0.4865174936837806, 0.4984917949256681, 0.5101822842525765, 0.5215660705135767, 0.5326244249049223, 0.5433424437757145, 0.5537087164326087, 0.5637150013265673, 0.573355913280238, 0.5826286238193523, 0.5915325761810578, 0.6000692161638957, 0.6082417396385025, 0.6160548572402137, 0.6235145765031344, 0.6306280014628269, 0.6374031495472082, 0.6438487853905163, 0.6499742710428479 ], [ 0.3181623130521845, 0.30772650176939864, 0.2984024214043514, 0.2903092216931174, 0.28355231840605877, 0.27821872635912187, 0.2743727883694724, 0.2720528382236231, 0.27126931106125496, 0.2720046487517805, 0.27421506237256443, 0.27783388864711056, 0.28277601828936205, 0.28894276166815064, 0.29622656738178693, 0.3045151757747139, 0.3136949961544856, 0.32365367687622004, 0.3342819563687175, 0.34547493719306277, 0.35713293036386656, 0.3691619949327426, 0.381474266201617, 0.3939881360783015, 0.4066283259652231, 0.41932587699709, 0.432018073152765, 0.44464830787341, 0.45716590258761114, 0.46952588468616974, 0.4816887321818098, 0.4936200920823437, 0.505290479200404, 0.5166749616678289, 0.5277528388412988, 0.5385073166275754, 0.5489251845730188, 0.5589964983937337, 0.5687142709967191, 0.5780741744728715, 0.5870742550345195, 0.595714662421027, 0.6039973949009891, 0.6119260606517014, 0.6195056559897182, 0.6267423606549875, 0.6336433501113484, 0.6402166246153028, 0.6464708546215555, 0.652415241936809 ], [ 0.32459978422585833, 0.3143437846095873, 0.30520489743375384, 0.2973054752965699, 0.29075383043753666, 0.2856390493273574, 0.2820262007372499, 0.27995257979379806, 0.27942560298970365, 0.2804227677643101, 0.2828937451806071, 0.28676428576410745, 0.29194131509807486, 0.298318470073734, 0.30578139372083607, 0.3142123081670289, 0.32349363130550207, 0.33351061596920584, 0.344153130685252, 0.35531676477157065, 0.36690344605906483, 0.3788217316812007, 0.3909868922305909, 0.4033208706859172, 0.4157521663343592, 0.42821567201664057, 0.4406524793198745, 0.4530096587692542, 0.4652400185339561, 0.47730184398058917, 0.48915862039892843, 0.5007787416536028, 0.5121352079781292, 0.523205316439967, 0.5339703477138728, 0.5444152527198078, 0.5545283424539539, 0.5643009840151956, 0.5737273054475335, 0.5828039116148164, 0.5915296129208837, 0.5999051683008744, 0.6079330435465793, 0.6156171856946306, 0.6229628139028881, 0.629976226967831, 0.6366646273939778, 0.643035961714788, 0.6490987765826424, 0.6548620899928719 ], [ 0.33224236942970675, 0.3222153236702541, 0.3133026112756285, 0.3056275312947804, 0.29929913817389725, 0.2944067719014382, 0.29101499620848614, 0.2891596427324743, 0.2888456235610298, 0.2900469508989406, 0.29270902782256286, 0.2967528584404067, 0.302080505393515, 0.3085809928769277, 0.31613592707585164, 0.32462432069992797, 0.3339263698292064, 0.34392615922738734, 0.35451342445743306, 0.3655845707875747, 0.37704315815191103, 0.38880003362022003, 0.4007732500019646, 0.4128878661047356, 0.42507568834921877, 0.4372749872716163, 0.4494302052916902, 0.46149166207902614, 0.47341525877282203, 0.4851621803529394, 0.49669859523962584, 0.507995351786167, 0.5190276721585284, 0.5297748448651038, 0.5402199177737969, 0.5503493937990148, 0.5601529315759602, 0.5696230534047271, 0.5787548625874138, 0.5875457720396989, 0.5959952457679548, 0.604104554490222, 0.6118765463630246, 0.6193154334690875, 0.6264265944322741, 0.6332163932610817, 0.63969201428424, 0.6458613128334323, 0.651732681149768, 0.6573149288426356 ], [ 0.3410623546119443, 0.331312088094942, 0.3226654198647355, 0.31524441849447443, 0.3091568182820023, 0.30449049011100904, 0.301308345375467, 0.299644379413095, 0.2995015153872653, 0.30085167832503057, 0.30363815310489295, 0.3077798692174015, 0.3131769404312564, 0.3197166594167368, 0.327279217340552, 0.3357426268547992, 0.34498658373642693, 0.3548952301152354, 0.3653589385469747, 0.376275314342417, 0.387549629228413, 0.39909487614032746, 0.41083159416058046, 0.4226875693331266, 0.43459747958295386, 0.4465025234091693, 0.4583500524094367, 0.4700932155243857, 0.4816906162068904, 0.4931059806993346, 0.5043078347907981, 0.5152691867868248, 0.5259672152793414, 0.5363829612504505, 0.5465010248702232, 0.5563092679671975, 0.5657985235451111, 0.5749623139122656, 0.5837965790186512, 0.5922994165015746, 0.600470834760936, 0.6083125201522515, 0.6158276191244755, 0.6230205358595902, 0.6298967457061072, 0.6364626244488851, 0.6427252932299565, 0.6486924787336975, 0.6543723880773852, 0.6597735977060297 ], [ 0.3509957425980759, 0.34156597871574074, 0.3332215639939867, 0.3260813956975213, 0.3202500770702165, 0.3158125235158504, 0.31282902883951114, 0.3113314679869076, 0.3113212580686003, 0.31276947414417544, 0.3156191618537582, 0.3197895063971483, 0.32518122443489206, 0.3316824227595019, 0.3391742260347885, 0.34753566369545225, 0.35664754332085147, 0.3663952537064235, 0.376670594785901, 0.38737281427300707, 0.39840905421905976, 0.4096943949064381, 0.42115164820350803, 0.43271101219348307, 0.44430966218850454, 0.45589132400960625, 0.4674058543748389, 0.4788088394347306, 0.49006121431745503, 0.5011289023415144, 0.5119824709140923, 0.5225968009892654, 0.5329507675697103, 0.5430269296222412, 0.5528112286645109, 0.5622926960259612, 0.5714631693358759, 0.5803170191412795, 0.5888508867297236, 0.5970634342604426, 0.604955108227249, 0.6125279171210145, 0.6197852239565623, 0.6267315541010563, 0.6333724186063031, 0.6397141530188721, 0.6457637714293857, 0.6515288353321309, 0.6570173367026372, 0.6622375945661796 ], [ 0.3619484104071079, 0.3528766900045486, 0.3448652067432565, 0.33802808734766543, 0.3324653458411356, 0.32825777581749765, 0.3254623241509535, 0.32410856553963663, 0.3241968363681104, 0.325698377272102, 0.32855751569131375, 0.33269557989062015, 0.3380159743487031, 0.34440973160412736, 0.3517608986387762, 0.3599512749978432, 0.368864228234566, 0.3783875084328721, 0.38841512970516073, 0.3988484712781331, 0.4095967815676048, 0.4205772617204349, 0.43171487740371145, 0.44294201251171683, 0.4541980445249162, 0.4654288928686552, 0.4765865701839314, 0.4876287515885587, 0.4985183676087366, 0.5092232211160975, 0.5197156260391383, 0.5299720648008333, 0.5399728616063557, 0.5497018693480142, 0.5591461686810154, 0.5682957785657508, 0.5771433781766657, 0.5856840405117548, 0.5939149783028291, 0.6018353029460749, 0.6094457971735618, 0.6167487020993697, 0.623747519126357, 0.6304468270152807, 0.6368521142164015, 0.6429696263602496, 0.6488062286104309, 0.6543692824054907, 0.6596665359645073, 0.6647060278055553 ], [ 0.3738034913570468, 0.3651199101547936, 0.357465410312851, 0.3509481394466573, 0.3456624567094507, 0.34168421389024295, 0.33906652866898895, 0.3378365971207532, 0.33799402909125437, 0.339511003570794, 0.3423342665169098, 0.3463887026622042, 0.35158198673640434, 0.35780971447874477, 0.3649604408783934, 0.37292018095765456, 0.38157610389076296, 0.3908193230416422, 0.40054681871944514, 0.41066261425725764, 0.42107836285987404, 0.43171350452576684, 0.44249513310054717, 0.4533576849330833, 0.46424253084071143, 0.47509752679434536, 0.48587655786829864, 0.49653909479634933, 0.5070497722455387, 0.5173779916106956, 0.5274975476689328, 0.537386276879478, 0.5470257247386919, 0.5564008298725687, 0.5654996231119082, 0.574312940425028, 0.582834149152366, 0.59105888743602, 0.5989848170460585, 0.6066113899800233, 0.6139396292711808, 0.6209719244085207, 0.6277118416718648, 0.6341639495415751, 0.6403336591736977, 0.6462270797542657, 0.6518508883733934, 0.6572122139002837, 0.6623185342008444, 0.6671775859244935 ], [ 0.38642903483228624, 0.3781557580014696, 0.3708752975172304, 0.364689003429021, 0.35968489546373594, 0.35593339079776287, 0.35348352205132344, 0.35236011500459147, 0.35256233301793205, 0.35406383403409125, 0.3568145559106572, 0.36074390376613236, 0.3657649225174611, 0.3717789436789867, 0.37868020853401113, 0.3863600678594139, 0.39471050088424187, 0.40362684184699477, 0.41300972205460545, 0.4227663154299029, 0.43281101629330093, 0.44306568763405446, 0.45345960714006667, 0.4639292166769914, 0.47441775615087783, 0.4848748394055668, 0.49525601034041766, 0.5055223025144654, 0.515639814895132, 0.5255793094113148, 0.5353158317398671, 0.5448283544936428, 0.5540994410214503, 0.563114927863281, 0.5718636241613761, 0.5803370267632906, 0.5885290502146646, 0.5964357712415252, 0.604055187625107, 0.6113869915658569, 0.6184323577244956, 0.6251937461325391, 0.6316747201021394, 0.637879779155318, 0.6438142068540053, 0.6494839332604122, 0.6548954116051615, 0.6600555085980705, 0.6649714076909248, 0.6696505244976049 ], [ 0.3996851815037018, 0.3918365929867695, 0.3849404386478609, 0.37909080627291036, 0.3743690269976797, 0.3708398703893319, 0.36854821571637403, 0.3675165932638719, 0.36774393071543976, 0.369205703913906, 0.3718555029044057, 0.3756278270637576, 0.3804417657840989, 0.38620513854239263, 0.3928186702764201, 0.4001798500387507, 0.4081862330435604, 0.4167380663264686, 0.4257402217574266, 0.4351034941877382, 0.44474536483921734, 0.4545903454468572, 0.4645700149998144, 0.4746228461474826, 0.48469389889150327, 0.49473443948180873, 0.5047015250063738, 0.5145575801087178, 0.5242699817418907, 0.5338106605048745, 0.5431557223111569, 0.5522850912738875, 0.5611821731831816, 0.5698335383298749, 0.5782286223406033, 0.5863594438786952, 0.5942203383652844, 0.6018077071815913, 0.6091197820688208, 0.6161564046212475, 0.6229188208654629, 0.6294094909416337, 0.6356319138639551, 0.641590467253321, 0.6472902618211217, 0.6527370102535732, 0.6579369100133245, 0.6628965394490763, 0.6676227664921291, 0.6721226691260898 ], [ 0.4134303565743634, 0.4060136582701375, 0.3995058889858889, 0.39399370654813887, 0.38955167691793474, 0.3862389294406285, 0.3840962643219776, 0.38314403697139243, 0.3833810904539762, 0.3847848951738361, 0.38731290329023466, 0.3909049674429375, 0.39548654539930317, 0.4009723409738737, 0.4072700259844621, 0.41428373880175207, 0.42191714091858046, 0.43007590956625236, 0.4386696318139692, 0.44761313199532615, 0.4568273060438434, 0.4662395556444112, 0.4757839173773659, 0.48540097334397797, 0.4950376154784068, 0.5046467198519605, 0.5141867722951667, 0.5236214739286572, 0.5329193451679225, 0.5420533393723842, 0.5510004721860234, 0.5597414692986367, 0.5682604333786916, 0.5765445298838925, 0.5845836910164429, 0.5923703370106063, 0.5998991140462597, 0.6071666482581145, 0.614171315485363, 0.6209130265422633, 0.6273930278703742, 0.6336137174556917, 0.6395784758656226, 0.6452915121920676, 0.650757724590703, 0.6559825749948867, 0.6609719774666383, 0.6657321995360248, 0.6702697757812258, 0.6745914328196634 ], [ 0.4275262441705306, 0.4205423241369419, 0.414421654513424, 0.40924352851540785, 0.40507587658558253, 0.401972356047596, 0.3999698619552592, 0.3990867231938806, 0.39932180078386964, 0.4006546140484331, 0.40304649979180257, 0.4064426845502448, 0.41077504709288537, 0.4159652878574395, 0.4219282116525711, 0.4285748642689793, 0.43581532782310767, 0.44356105570190457, 0.451726700144239, 0.4602314434611971, 0.46899988333532416, 0.4779625440141837, 0.4870560918761715, 0.49622333023912374, 0.5054130386775003, 0.5145797099438373, 0.5236832252413309, 0.5326884974891734, 0.5415651030304757, 0.5502869151093486, 0.5588317472362833, 0.5671810109659051, 0.5753193902786196, 0.5832345333540969, 0.5909167617639846, 0.5983587967661408, 0.6055555022830632, 0.6125036441729923, 0.6192016654744971, 0.6256494773758046, 0.6318482657035076, 0.637800312731173, 0.643508834077018, 0.6489778303967586, 0.6542119534918467, 0.6592163863541961, 0.6639967365655223, 0.668558942370631, 0.6729091906560877, 0.6770538459933878 ], [ 0.4418415116142354, 0.43528593149080924, 0.4295466201918698, 0.4246957428917316, 0.4207948692903132, 0.4178924610065323, 0.4160217449273693, 0.41519918521104593, 0.4154237259925809, 0.41667690329571244, 0.4189238296733969, 0.42211495680363303, 0.426188439231376, 0.4310728717717834, 0.4366901602634894, 0.44295830743468484, 0.4497939425883423, 0.45711448257074083, 0.46483986991470183, 0.47289388345658856, 0.4812050526972367, 0.48970722902887964, 0.4983398765196739, 0.5070481452939537, 0.5157827849306291, 0.5244999465597816, 0.5331609126027399, 0.5417317837795199, 0.5501831448834442, 0.5584897242174771, 0.5666300565164358, 0.5745861554849893, 0.5823431995243109, 0.5898892325447277, 0.5972148807308191, 0.6043130855393335, 0.6111788529111237, 0.6178090185489213, 0.6242020290706451, 0.6303577388390489, 0.6362772222605072, 0.6419626013217561, 0.6474168880875059, 0.6526438418149403, 0.6576478402581671, 0.6624337646434624, 0.6670068977019052, 0.6713728340565732, 0.675537402182422, 0.6795065970927286 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "0_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "1_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.4578667189925909, 0.24299532451484057, 0.22299640339021803, 0.23711938833053203, 0.2467091273410232, 0.21220137855957621, 0.28863419875836893, 0.30057422095907255, 0.2835344795489383, 0.2563620277775888, 0.30597455605627544, 0.7475580340251327, 0.20129034813893398, 0.27255839757438316, 0.3478176851014452, 0.23284413245473298, 0.15848853319311815, 0.14676913551543092, 0.2111869947334017, 0.22467815385052597, 0.20568070619071005, 0.7892551543191075, 0.17286973260343075, 0.8961004242300987, 0.15614212397485971, 0.08780844533713415, 0.20367674177312067, 0.18704089866238405, 0.236329836681479 ], "xaxis": "x", "y": [ 0.5500427186489105, 0.5547458480331915, 0.4984044206111576, 0.5113867006907853, 0.47820624473341994, 0.5355049473806909, 0.413535573184249, 0.35500596395771367, 0.27145692610351146, 0.17383964016263612, 0.04800838413494002, 0.802451360039413, 0.12332320439699716, 0.15228104852233817, 0.171724939828821, 0.12177060995574464, 0.10647803994858994, 0.09885908238400296, 0.12748418169666575, 0.12463986119587729, 0.07306132322830892, 0.07251561060547829, 0.33239914290606976, 0.8948270911350846, 0.7524324106052518, 0.6742444561373978, 0.6613928648111014, 0.6692406041113531, 0.6224403331773365 ], "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", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "1_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.4578667189925909, 0.24299532451484057, 0.22299640339021803, 0.23711938833053203, 0.2467091273410232, 0.21220137855957621, 0.28863419875836893, 0.30057422095907255, 0.2835344795489383, 0.2563620277775888, 0.30597455605627544, 0.7475580340251327, 0.20129034813893398, 0.27255839757438316, 0.3478176851014452, 0.23284413245473298, 0.15848853319311815, 0.14676913551543092, 0.2111869947334017, 0.22467815385052597, 0.20568070619071005, 0.7892551543191075, 0.17286973260343075, 0.8961004242300987, 0.15614212397485971, 0.08780844533713415, 0.20367674177312067, 0.18704089866238405, 0.236329836681479 ], "xaxis": "x2", "y": [ 0.5500427186489105, 0.5547458480331915, 0.4984044206111576, 0.5113867006907853, 0.47820624473341994, 0.5355049473806909, 0.413535573184249, 0.35500596395771367, 0.27145692610351146, 0.17383964016263612, 0.04800838413494002, 0.802451360039413, 0.12332320439699716, 0.15228104852233817, 0.171724939828821, 0.12177060995574464, 0.10647803994858994, 0.09885908238400296, 0.12748418169666575, 0.12463986119587729, 0.07306132322830892, 0.07251561060547829, 0.33239914290606976, 0.8948270911350846, 0.7524324106052518, 0.6742444561373978, 0.6613928648111014, 0.6692406041113531, 0.6224403331773365 ], "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 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "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": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "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 }, "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": [ "