{ "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 08-10 23:09:21] 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 08-10 23:09:21] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x2. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:21] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x3. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:21] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x4. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:21] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x5. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:21] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x6. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:21] ax.modelbridge.dispatch_utils: Using GPEI (Bayesian optimization) since there are more continuous parameters than there are categories for the unordered categorical parameters.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:21] 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 08-10 23:09:21] ax.service.managed_loop: Started full optimization with 30 steps.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:21] ax.service.managed_loop: Running optimization trial 1...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:22] ax.service.managed_loop: Running optimization trial 2...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:22] ax.service.managed_loop: Running optimization trial 3...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:22] ax.service.managed_loop: Running optimization trial 4...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:22] ax.service.managed_loop: Running optimization trial 5...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:22] ax.service.managed_loop: Running optimization trial 6...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:22] ax.service.managed_loop: Running optimization trial 7...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:22] ax.service.managed_loop: Running optimization trial 8...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:22] ax.service.managed_loop: Running optimization trial 9...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:29] ax.service.managed_loop: Running optimization trial 10...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:33] ax.service.managed_loop: Running optimization trial 11...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:41] ax.service.managed_loop: Running optimization trial 12...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:10:21] ax.service.managed_loop: Running optimization trial 13...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:10:53] ax.service.managed_loop: Running optimization trial 14...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:11:31] ax.service.managed_loop: Running optimization trial 15...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:11:49] ax.service.managed_loop: Running optimization trial 16...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:12:44] ax.service.managed_loop: Running optimization trial 17...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:13:13] ax.service.managed_loop: Running optimization trial 18...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:13:25] ax.service.managed_loop: Running optimization trial 19...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:13:40] ax.service.managed_loop: Running optimization trial 20...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:13:54] ax.service.managed_loop: Running optimization trial 21...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:14:01] ax.service.managed_loop: Running optimization trial 22...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:14:10] ax.service.managed_loop: Running optimization trial 23...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:14:20] ax.service.managed_loop: Running optimization trial 24...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:14:32] ax.service.managed_loop: Running optimization trial 25...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:14:41] ax.service.managed_loop: Running optimization trial 26...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:14:50] ax.service.managed_loop: Running optimization trial 27...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:15:01] ax.service.managed_loop: Running optimization trial 28...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:15:13] ax.service.managed_loop: Running optimization trial 29...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:15:26] 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.34695371010224874,\n", " 'x2': 0.8585465623085132,\n", " 'x3': 0.4314455118737757,\n", " 'x4': 0.5140990471961608,\n", " 'x5': 0.49430755335188886,\n", " 'x6': 0.0}" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "best_parameters" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'l2norm': 1.2458977556846476, 'hartmann6': -2.781888129029068}" ] }, "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": [ [ -0.11436074002875118, -0.11375368403751007, -0.11365760688611803, -0.11405150511864126, -0.11490597291841886, -0.11618291915150059, -0.11783540677973314, -0.1198076691453196, -0.12203536930123826, -0.12444617351876086, -0.12696070502934387, -0.12949392680372085, -0.13195697248718563, -0.13425940455180563, -0.13631183261298774, -0.13802877870396202, -0.13933163686537986, -0.14015154799449647, -0.14043200222171015, -0.1401309923657197, -0.13922257257201853, -0.1376977225452135, -0.13556447409740657, -0.13284731605413136, -0.129585948777999, -0.12583350457186182, -0.12165438072001866, -0.11712184590688823, -0.11231557850445306, -0.10731927896662108, -0.10221847186716082, -0.09709858015492612, -0.09204331913696984, -0.08713342417074899, -0.08244569685186964, -0.07805233148404678, -0.07402046778087779, -0.0704119072964845, -0.067282929672975, -0.06468414969455416, -0.06266036635123151, -0.06125036944210682, -0.06048668630973342, -0.06039526952616059, -0.06099514400238282, -0.06229804720744114, -0.06430810714819424, -0.06702160796400047, -0.07042689152815496, -0.07450443530793482 ], [ -0.10783613913793488, -0.107409012897975, -0.10752849520375418, -0.10817292285696167, -0.10931169110221928, -0.11090488093068707, -0.11290299529035941, -0.11524686845635468, -0.11786782988250122, -0.1206882130030209, -0.12362229615230591, -0.1265777439258412, -0.12945758226781423, -0.13216269172618544, -0.1345947460526099, -0.1366594653132066, -0.1382700026051753, -0.13935024948357588, -0.13983783337919498, -0.1396865935066025, -0.1388683591283928, -0.1373739110309361, -0.13521307631641877, -0.13241397920811715, -0.12902153753238177, -0.12509534828234437, -0.12070714101665159, -0.11593799260057946, -0.11087549167927979, -0.10561101940676476, -0.10023727902802948, -0.09484616624782871, -0.08952703004735019, -0.08436533404940716, -0.07944169486034669, -0.07483124798994001, -0.07060327481669015, -0.06682101559532683, -0.06354159304707307, -0.06081597759153201, -0.05868893750777193, -0.05719893384167385, -0.05637793916880507, -0.05625117968947002, -0.05683681972261523, -0.0581456245180314, -0.060180649499799066, -0.06293700997634977, -0.06640178403322583, -0.07055409274864166 ], [ -0.10147908396431649, -0.10125263351170455, -0.10161031923110286, -0.10252990515625637, -0.10397967521333884, -0.10591795602871823, -0.10829272744901985, -0.11104139594791074, -0.11409083029893596, -0.1173577738395476, -0.12074974718869091, -0.12416653501256514, -0.12750230911683147, -0.13064838053086947, -0.13349650207900599, -0.13594257000026932, -0.1378905096563222, -0.13925608675906398, -0.13997036970216248, -0.13998258419117937, -0.13926214726490949, -0.13779973814770663, -0.13560734871722102, -0.13271734533883672, -0.12918065507719534, -0.12506425340440308, -0.1204481712749571, -0.1154222544883925, -0.11008289899680634, -0.10452995658340314, -0.09886396230381811, -0.09318378500330549, -0.08758475139500577, -0.08215724771048383, -0.07698576436769689, -0.07214832042423136, -0.06771618641930888, -0.0637538161577158, -0.06031889899019427, -0.057462452772002015, -0.055228892347777725, -0.053656027468546696, -0.052774965791652195, -0.052609919243965186, -0.05317793360822409, -0.054488579679390914, -0.05654365773033665, -0.05933697363331181, -0.06285424378355764, -0.06707317695618142 ], [ -0.09532347768989935, -0.09531971197327616, -0.09593954389766912, -0.09716027170413266, -0.09894918466319214, -0.1012629654134185, -0.10404714892591371, -0.10723572530318659, -0.11075100719307118, -0.11450390546278022, -0.11839476062223442, -0.12231485612945658, -0.12614869104750703, -0.1297770167055592, -0.13308055349547177, -0.13594421223162356, -0.13826156399346823, -0.13993924658826917, -0.14090097481523245, -0.14109084031120855, -0.14047564336607588, -0.13904608616829872, -0.1368167623305031, -0.13382498672380905, -0.13012860829054196, -0.12580302487285666, -0.12093766576113674, -0.11563222224539482, -0.10999289131072776, -0.1041288587614354, -0.09814919357605434, -0.09216026374357844, -0.08626372290734297, -0.0805550628212357, -0.07512268280488188, -0.07004739596626597, -0.06540227319393543, -0.0612527188899914, -0.057656675519121126, -0.054664865379129624, -0.05232099559271608, -0.050661874262898365, -0.04971741015501374, -0.049510493266548106, -0.05005677722817281, -0.05136440455690694, -0.05343373030277021, -0.05625710685403218, -0.059818791542521454, -0.06409502922951427 ], [ -0.08940503335249872, -0.08964724697186777, -0.09055448259166832, -0.09210370111888666, -0.09426134640106476, -0.09698261013376652, -0.10021070979649849, -0.10387627981301051, -0.10789702191503325, -0.11217779425500729, -0.11661132896430393, -0.12107974598028459, -0.12545697372244557, -0.12961209818111075, -0.13341355181189396, -0.13673393833591418, -0.13945518762328935, -0.14147366369488523, -0.14270482147510422, -0.14308703029276026, -0.14258425220333226, -0.1411873712391546, -0.13891410006441252, -0.13580752464964063, -0.13193346734690026, -0.12737693955663087, -0.12223800817911334, -0.1166274129731315, -0.1106622485914508, -0.10446197368030508, -0.09814494060207457, -0.09182556386780205, -0.08561217260868426, -0.0796055292918012, -0.07389794756800694, -0.0685729082760913, -0.06370505389761194, -0.05936043654154288, -0.055596900546373784, -0.052464495528589894, -0.05000583678210668, -0.04825635514344029, -0.04724440574913502, -0.046991232555925744, -0.0475108110505833, -0.04880961315150911, -0.05088635383636253, -0.05373178676593793, -0.057328615061905674, -0.06165157347811556 ], [ -0.08376123735453167, -0.08427403102267383, -0.0854952555923687, -0.08740168574815588, -0.08995910514509098, -0.09312141630384985, -0.09682970428083215, -0.10101136794226684, -0.10557949427784807, -0.11043269908920073, -0.11545567654842914, -0.12052067862674587, -0.1254900781533913, -0.13022006035841793, -0.13456535057536934, -0.13838474087734565, -0.14154704956555053, -0.143937056970196, -0.14546092553945522, -0.1460506393269697, -0.14566708501250547, -0.144301530900677, -0.14197542185950918, -0.13873857312452342, -0.13466599132169577, -0.1298536588128797, -0.12441367704903483, -0.11846917414903735, -0.11214934724138181, -0.10558494249012174, -0.09890438898741061, -0.09223071041947872, -0.08567925189963344, -0.07935618651505405, -0.07335771125116908, -0.06776980619886452, -0.06266841316097982, -0.05811988740378893, -0.05418158619159186, -0.05090247671688597, -0.04832367120923631, -0.04647882587793695, -0.04539437074493624, -0.04508956734880987, -0.045576418752621306, -0.046859479214301, -0.04893562725619516, -0.051793873974984805, -0.05541527724302531, -0.05977302205898671 ], [ -0.07843130750917848, -0.0792406071441989, -0.08080374512018629, -0.08309748439025444, -0.0860871728032474, -0.08972568033211847, -0.0939522114289062, -0.0986911201040751, -0.10385093731813566, -0.10932388722770614, -0.11498620061138498, -0.12069951401826806, -0.1263135643111436, -0.13167025493230577, -0.1366089993661943, -0.1409730652721668, -0.1446164801351124, -0.14741094462701465, -0.14925215431216743, -0.15006496352148457, -0.1498069335579575, -0.1484699746373419, -0.14607999131833316, -0.1426946442246526, -0.13839951743577383, -0.13330310845054805, -0.1275311237381912, -0.12122056649821178, -0.11451405310203844, -0.10755470612446127, -0.10048186286660865, -0.09342772583624115, -0.08651497931480745, -0.07985531276082036, -0.07354873156157804, -0.06768349888224456, -0.06233653674825235, -0.05757411626810405, -0.05345268185093477, -0.05001967841424837, -0.04731428050127284, -0.04536795515320868, -0.04420482403306614, -0.0438418226861923, -0.044288684028757186, -0.04554779722734614, -0.04761401013817246, -0.050474451764979444, -0.05410844981352825, -0.05848760752710369 ], [ -0.07345614918862187, -0.07458922505309806, -0.07652355170341596, -0.0792360783712428, -0.082691983315903, -0.08684342141842105, -0.09162804446848671, -0.0969674348548657, -0.10276570147743369, -0.10890857881332716, -0.11526341927692241, -0.1216804528577875, -0.1279955956278348, -0.13403492531272587, -0.13962072931030456, -0.14457880217331553, -0.1487464647591349, -0.1519806324280737, -0.15416520161502356, -0.15521706496799104, -0.15509020032892107, -0.15377748730041974, -0.1513101539019076, -0.14775500592599455, -0.1432098059686404, -0.13779731959446428, -0.13165861822506042, -0.12494622242571651, -0.11781759818043047, -0.1104294032648111, -0.10293274426964849, -0.09546956838295417, -0.08817019373158785, -0.08115188758973813, -0.07451833677848096, -0.06835981814784586, -0.06275386522695525, -0.057766234643496506, -0.05345199728192285, -0.04985660949094439, -0.047016855010535985, -0.044961585632033785, -0.0437122256122191, -0.043283039627048936, -0.04368119480290822, -0.04490667231145029, -0.046952101377277344, -0.04980259680319721, -0.05343567940934557, -0.057821347355047736 ], [ -0.06887831425814994, -0.07036380220370908, -0.0726999579772124, -0.07586413802214342, -0.07982166098773125, -0.08452435042068107, -0.08990871884336293, -0.095893945220069, -0.10237993921023902, -0.10924591074315182, -0.11634993640770908, -0.12353000429145655, -0.13060691077701614, -0.13738918240786357, -0.1436799309121518, -0.14928526335154169, -0.15402361210088034, -0.15773516713341862, -0.1602905196016593, -0.16159767622843302, -0.1616067725396435, -0.16031207294803773, -0.1577511547833116, -0.1540014816436499, -0.14917483164010636, -0.143410223088547, -0.13686605713146482, -0.12971217630652054, -0.12212243886885354, -0.1142682587702828, -0.10631339074497637, -0.09841007516893119, -0.09069651697171588, -0.08329556708238217, -0.07631440632496234, -0.06984499747415418, -0.0639650652831193, -0.05873937948814223, -0.05422114514023102, -0.050453342262530065, -0.04746989830048032, -0.045296618899212104, -0.043951842929046525, -0.043446824650244964, -0.04378587791819988, -0.04496634282099021, -0.04697845254249189, -0.049805186208646934, -0.0534221912822036, -0.057797847068769226 ], [ -0.06474196865852877, -0.06660989633934455, -0.06937990755767376, -0.0730300083509795, -0.07752601238748968, -0.0828198664857197, -0.0888474515364629, -0.09552601864560983, -0.1027516039203813, -0.11039693355499591, -0.11831043586543888, -0.12631697699118127, -0.13422081049042178, -0.1418109850426712, -0.1488691245870738, -0.15517913747703815, -0.16053808917090218, -0.16476724465826786, -0.16772219435187852, -0.16930103967964538, -0.16944982467541025, -0.16816472402678573, -0.1654908822636172, -0.1615181790170822, -0.1563745110793756, -0.15021738933929485, -0.14322472815383702, -0.13558566271724715, -0.1274920932571827, -0.11913146117103612, -0.11068105032730313, -0.10230390889199092, -0.0941463246769858, -0.08633667032485981, -0.07898536440629722, -0.07218566511958013, -0.06601501592630388, -0.06053668760127062, -0.05580150022042596, -0.05184945470644586, -0.048711151749566084, -0.04640892292203336, -0.0449576424858793, -0.04436522729518699, -0.044632865088954365, -0.04575503710520212, -0.047719418021107796, -0.05050674361224061, -0.054090733675740243, -0.05843814513707801 ], [ -0.06109287564531973, -0.0633746975577818, -0.06661200818002999, -0.07078372449790182, -0.07585655397649638, -0.08178309523733374, -0.08849920697876523, -0.09592080702176431, -0.10394050019164547, -0.11242465793345313, -0.12121172035435523, -0.13011250621228743, -0.13891316830697364, -0.14738112936499115, -0.15527392323358635, -0.162350420127087, -0.16838351318561828, -0.17317305894843282, -0.17655774854780826, -0.17842466346480823, -0.1787155309332934, -0.17742909791636496, -0.17461952036180695, -0.17039113383836546, -0.16489035497424698, -0.15829570498030432, -0.15080702484535247, -0.14263487866289037, -0.1339909550654228, -0.12508002755282632, -0.1160937723554144, -0.10720650650123553, -0.09857272301592968, -0.09032617392720799, -0.0825801827205287, -0.07542884674895856, -0.06894880451031493, -0.06320128040504147, -0.05823417017682708, -0.054083985893428665, -0.05077753476521174, -0.04833325810299394, -0.046762203468086794, -0.04606864350983875, -0.04625038830241035, -0.04729886331008193, -0.049199041453968695, -0.051929324259978094, -0.055461463381852316, -0.059760600493131144 ], [ -0.05797840265322751, -0.06070704906695834, -0.0644465696935771, -0.06917706922912048, -0.0748665895983619, -0.08146898461957341, -0.08892080747290942, -0.09713736610303036, -0.10600840525136956, -0.11539417027590126, -0.1251228124148458, -0.13499013103294277, -0.14476247471321257, -0.1541832509054034, -0.16298298421252677, -0.1708923092196566, -0.17765678593942458, -0.183052073090734, -0.18689784993821146, -0.18906897145322066, -0.18950266508820424, -0.1882010797621103, -0.1852290919143713, -0.18070785356384333, -0.17480503276078851, -0.1677229775529745, -0.1596861058305068, -0.1509287060495781, -0.14168408176301384, -0.1321756538657448, -0.1226103119159836, -0.11317402677348132, -0.10402952714204305, -0.09531570934370193, -0.08714838595744834, -0.07962197044557362, -0.07281172490097021, -0.06677625119671682, -0.06155996983490908, -0.05719539701299514, -0.05370509344298846, -0.05110321534615081, -0.04939664747698835, -0.04858573949035505, -0.04866470015112545, -0.049621728370188856, -0.05143897523262331, -0.05409243649383255, -0.057551870311734366, -0.06178082095747606 ], [ -0.05544756028361686, -0.058657506566548556, -0.06293568849998998, -0.06826368597724886, -0.0746113535079963, -0.08193447635637419, -0.0901711282249893, -0.09923686602741033, -0.10901928402601568, -0.11937283895298567, -0.13011513676826925, -0.1410259366966229, -0.15184992361855243, -0.16230384102543727, -0.17208794476266231, -0.1809010525488216, -0.18845785113306113, -0.19450668852574626, -0.19884589879005765, -0.20133681964195427, -0.20191206117918103, -0.20057820738926324, -0.19741287144654796, -0.19255674376810616, -0.18620183744751895, -0.17857745968386574, -0.16993549305896394, -0.16053639110904105, -0.1506369545676306, -0.14048054831459578, -0.130290024733677, -0.12026329227534593, -0.11057123531170499, -0.1013575553788224, -0.09274005116983641, -0.08481286422690104, -0.07764926731820676, -0.07130464416924287, -0.06581938847573432, -0.061221527708243295, -0.05752894789516394, -0.054751156981799776, -0.052890575890940594, -0.05194338822818745, -0.051900011991212525, -0.052745279733914296, -0.05445842721150396, -0.057012994331841704, -0.06037673633277074, -0.06451162830714663 ], [ -0.053551081648782084, -0.05727844614309752, -0.062133390181479564, -0.06809926130888544, -0.07514823522216174, -0.08323877183558193, -0.09231139813894373, -0.10228291581489746, -0.11303962125028033, -0.12443063365003526, -0.13626280327090834, -0.1482987759826957, -0.1602595477636527, -0.17183227565486803, -0.1826833296433571, -0.19247572777633204, -0.20088934819790594, -0.2076417813181684, -0.21250746113629893, -0.21533284598226587, -0.21604590416733838, -0.2146589311796302, -0.2112646454718194, -0.2060264004405597, -0.19916403857249299, -0.19093728513335673, -0.18162860468587771, -0.17152717817971153, -0.1609152081575641, -0.15005724491935302, -0.13919274802406145, -0.12853171922350903, -0.1182529901013003, -0.10850461545858547, -0.09940578913053011, -0.09104973318531506, -0.08350708645530291, -0.07682941170463875, -0.07105253683441615, -0.06619953493741071, -0.06228322609487025, -0.059308149101302, -0.05727200413248057, -0.05616660875261281, -0.055978440589260825, -0.05668886111844218, -0.058274126526108194, -0.06070529360346244, -0.06394812137168793, -0.06796305352415344 ], [ -0.052341548722882325, -0.05662422912657883, -0.06209584073854946, -0.06874178946566067, -0.07653710132290514, -0.08544371014355745, -0.09540562646931516, -0.10634202357979172, -0.11813889267505695, -0.13064057823510278, -0.1436430069730853, -0.156890579653447, -0.17007840445087175, -0.1828608476277399, -0.19486641201664667, -0.2057179267109161, -0.2150561275000905, -0.22256406629351877, -0.22798950754068587, -0.23116261496555107, -0.23200681571297016, -0.23054167946019982, -0.22687779708626993, -0.22120475148817692, -0.21377411258597767, -0.2048798107152885, -0.19483821962046655, -0.18396989611716263, -0.172584327944159, -0.1609683933967121, -0.14937866100009978, -0.13803722621600722, -0.12713051514409057, -0.11681036598942363, -0.10719669250137598, -0.09838110021504043, -0.0904309315453562, -0.08339333378253111, -0.07729905816296112, -0.07216579943181833, -0.06800097012858031, -0.06480387204116422, -0.06256728039651183, -0.06127849637946714, -0.06091995225561475, -0.06146947191668506, -0.06290029871754688, -0.06518100239089286, -0.06827536807584988, -0.07214235406065517 ], [ -0.05187356873910942, -0.056751428698021966, -0.0628816330970402, -0.07025192770253053, -0.07884072520715935, -0.08861427157590185, -0.0995211706974991, -0.11148420902809253, -0.12439019168303711, -0.13807935112620806, -0.15233655441139637, -0.16688675763664895, -0.18139680353406762, -0.1954847835297604, -0.20873699757913428, -0.2207313046604244, -0.23106458139475317, -0.2393812407134276, -0.24539940972460805, -0.24893151296260196, -0.2498966969817497, -0.24832369870986132, -0.24434419219104303, -0.23817803253252007, -0.23011284234846074, -0.22048086051186322, -0.20963587264473638, -0.19793249646557998, -0.18570931239425048, -0.17327651995035664, -0.16090811614593392, -0.1488381095209006, -0.13726001214580907, -0.12632875839852198, -0.11616423208798721, -0.10685569107081838, -0.09846651924631245, -0.09103888098229951, -0.08459798574757948, -0.07915578320291772, -0.07471399940348267, -0.07126649460504031, -0.06880097537032992, -0.06730013132181556, -0.06674229253229469, -0.06710171894432537, -0.0683486394068974, -0.07044915554042286, -0.07336511530973766, -0.07705404392334081 ], [ -0.05220399715042301, -0.05771911607519142, -0.06455214804683973, -0.07269344300250635, -0.08212532687921559, -0.0928192102136336, -0.10472945035034475, -0.11778377319693012, -0.13187101501080434, -0.14682803356578578, -0.1624285108650826, -0.17837667757362796, -0.194308554215193, -0.2098022105947961, -0.2243970871127421, -0.23762094197263478, -0.24902173375176767, -0.25820084964312895, -0.26484364049310555, -0.268743346059346, -0.26981528865752313, -0.26809963837564504, -0.26375284690963763, -0.2570295854249235, -0.24825828109350473, -0.23781387200042592, -0.2260911810702172, -0.21348154305881067, -0.2003542968021177, -0.18704375102489623, -0.17384142877121456, -0.16099286839760596, -0.14869799856330934, -0.13711405327627213, -0.12636007873616717, -0.11652224138187783, -0.10765932773347986, -0.09980800068361384, -0.09298752793126663, -0.08720382064784749, -0.08245271478445149, -0.07872249727374614, -0.07599572928698384, -0.07425045290877264, -0.0734608894208344, -0.07359774912096773, -0.07462827563237395, -0.07651614282657038, -0.07922131052456449, -0.08269992708300078 ], [ -0.053392193268232635, -0.05958919255281814, -0.067171975918623, -0.07613373639932264, -0.08646120887428843, -0.0981318013728576, -0.11110679189395367, -0.12532020907274888, -0.14066418843762474, -0.15697298225779643, -0.1740089388466899, -0.19145418313084106, -0.2089111839657538, -0.22591401771060843, -0.24195035360467193, -0.25649244894236334, -0.26903401814892103, -0.2791288064005986, -0.28642611716093763, -0.29069859010151317, -0.2918584090855023, -0.28995985308431493, -0.28518836032475003, -0.2778384731553371, -0.26828458117008175, -0.2569489474647119, -0.24427110577850492, -0.2306816524358805, -0.21658213258731224, -0.20233148815127655, -0.18823860743863696, -0.1745599586463643, -0.16150106123564179, -0.14922056052743593, -0.1378358247235516, -0.12742920043885408, -0.11805428845448995, -0.10974180491264895, -0.10250476117707874, -0.0963428257861767, -0.09124582798128411, -0.08719643024256685, -0.08417204338674655, -0.08214608745936458, -0.08108871894582059, -0.08096715245753805, -0.08174570467890474, -0.0833856809877318, -0.08584521158298808, -0.08907912516049243 ], [ -0.05550027958647952, -0.06242673629105566, -0.07080936536816362, -0.08064440835024067, -0.0919234485167435, -0.10463066065546467, -0.11873535766127596, -0.1341792018044793, -0.15085887627707306, -0.1686067646919822, -0.18717366019486958, -0.20621807833575717, -0.2253060500221606, -0.24392352625523872, -0.26150134716693085, -0.27745072818363353, -0.2912056635934354, -0.3022674953256187, -0.3102461268849418, -0.3148922443633226, -0.31611583589124165, -0.31398840140689455, -0.30872910407115356, -0.30067791217550033, -0.29026069397740606, -0.2779518179160996, -0.2642391505267333, -0.24959488264475588, -0.2344539120014989, -0.21920001622192437, -0.204159001356974, -0.1895974461750105, -0.1757254955528862, -0.16270225480773448, -0.15064257509997925, -0.13962430438803453, -0.12969535090889717, -0.12088013809557274, -0.11318521222852507, -0.10660389919584634, -0.10112000188826198, -0.09671059371622026, -0.09334800455651482, -0.09100111957802581, -0.0896361235372265, -0.08921682633714156, -0.08970470174527945, -0.09105876124833545, -0.09323536988543957, -0.09618809146686058 ], [ -0.058593355746992426, -0.06630030883831317, -0.07553663737209404, -0.08630179549314809, -0.09859256842886921, -0.1124005478212946, -0.1277040634224692, -0.14445361487760167, -0.16255156348419864, -0.18182903962333552, -0.20202491978040527, -0.22277245395908518, -0.24359822029124228, -0.2639358514413352, -0.2831543155381258, -0.3005982926525136, -0.3156365991638314, -0.3277133833244533, -0.33639577634453005, -0.3414112475700579, -0.34266880588197307, -0.3402607309620719, -0.3344451709906625, -0.32561353252368874, -0.3142489542312829, -0.3008827298731325, -0.2860545026184231, -0.2702800637428585, -0.25402842134357734, -0.23770801944738917, -0.22166083261955077, -0.20616252496273807, -0.1914267937381705, -0.17761223118288905, -0.16483037676926138, -0.15315399031959354, -0.1426248959238715, -0.13326100405955366, -0.1250623121976775, -0.1180158204498526, -0.1120993900811188, -0.10728463051909576, -0.10353893456347374, -0.10082679923224602, -0.09911057620818842, -0.09835079443862149, -0.09850619000386307, -0.09953356598848939, -0.10138758851782137, -0.10402060516970024 ], [ -0.06273959411067509, -0.07128213665945127, -0.08143046623642225, -0.09318736543802242, -0.10655505563331025, -0.12153300929012678, -0.1381093227518655, -0.1562442866942484, -0.17584682407999042, -0.19674718979566852, -0.2186717567317849, -0.24122666709924123, -0.26389594668897615, -0.286056794934899, -0.30701150306511726, -0.3260330266880018, -0.34241978948027557, -0.3555540749394031, -0.36495692102961985, -0.37033143006909924, -0.3715871239493261, -0.368841055293663, -0.36239609911844284, -0.3527014870512892, -0.3403035680686113, -0.3257952664561606, -0.3097711141346523, -0.29279205550204207, -0.27536149571578117, -0.25791196861311577, -0.24080057138244676, -0.22431085581266286, -0.20865894008830826, -0.1940019625318672, -0.180447451787221, -0.16806262315074738, -0.1568829746282474, -0.14691983427553823, -0.13816670865054348, -0.13060441541062084, -0.12420506734948589, -0.11893502473057704, -0.11475695884168058, -0.11163118035097952, -0.10951638668839214, -0.10836997662679249, -0.1081480693687934, -0.1088053507667962, -0.11029485147025098, -0.11256774147527226 ], [ -0.0680101189738248, -0.0774480506694536, -0.08857188844156094, -0.101387805297668, -0.11590353785176088, -0.13212664057776258, -0.15005537430264482, -0.16966037285456192, -0.19085759672159164, -0.21347642150852303, -0.2372298018172455, -0.2616947085629777, -0.2863094935371125, -0.31039106932031824, -0.3331707722312948, -0.3538452775923845, -0.37163792690030173, -0.385864767534059, -0.3959975542483735, -0.4017140009259646, -0.4029258953391222, -0.39977944911550145, -0.3926284044154123, -0.3819864424504446, -0.368469028907164, -0.3527351115674667, -0.3354367143192436, -0.3171809054231831, -0.2985052345704679, -0.27986533023364313, -0.2616321013264598, -0.24409567458585907, -0.22747346652318823, -0.2119203186387036, -0.19753920216531362, -0.1843915098064811, -0.17250635414300008, -0.16188858387788263, -0.1525254266448569, -0.14439179269551927, -0.1374543479866478, -0.1316745046760207, -0.1270104941281317, -0.1234186907136482, -0.1208543493969304, -0.11927190955914357, -0.11862500343091276, -0.11886629077699784, -0.11994722259725643, -0.12181781609456488 ], [ -0.07447855115735158, -0.08487703871740282, -0.09704586251205138, -0.11099459061396577, -0.12673636374611041, -0.1442866749721745, -0.16365386123418113, -0.1848188737078551, -0.20770458797765817, -0.23213894596961937, -0.25782012657226655, -0.28429361322920027, -0.31094902522715956, -0.33703962308265556, -0.361722387509872, -0.38411418418510235, -0.40335944014036307, -0.41870410313589324, -0.4295676758335207, -0.43560160544499144, -0.4367219279686037, -0.43310871521578476, -0.4251729749375212, -0.41349949484609183, -0.3987784851447532, -0.38173875725814654, -0.3630917288324592, -0.3434908624641823, -0.323507019995466, -0.30361753369369443, -0.2842056123499915, -0.26556661266006754, -0.24791821992436613, -0.23141230836956622, -0.21614695735610173, -0.2021776806781559, -0.18952735736397708, -0.1781946486927516, -0.16816087633247645, -0.15939545000110178, -0.15185999451456267, -0.14551135408069038, -0.14030365923292165, -0.13618963741995516, -0.133121337225927, -0.131050421454311, -0.12992816736141144, -0.1297052938462877, -0.1303317157311653, -0.13175630473978261 ], [ -0.08222009182846213, -0.09365025246880743, -0.10694018203671285, -0.12210279047446027, -0.13915629102428861, -0.1581235486056528, -0.17902226290077827, -0.2018429071747737, -0.226514338357094, -0.2528617716187507, -0.28056669052032335, -0.30914050412781824, -0.3379212168317648, -0.3660958251047155, -0.3927448231981358, -0.41690319520269864, -0.43763383836745895, -0.45410947478080604, -0.46569471717367855, -0.47201403811078557, -0.4729898928343374, -0.4688411079486634, -0.4600423987516653, -0.4472560587582267, -0.4312520768369139, -0.4128321374974564, -0.39276805938200393, -0.3717591791569084, -0.3504082602277289, -0.3292126185006206, -0.308566149657325, -0.2887681703048946, -0.2700357953282731, -0.2525175122388061, -0.23630644357665143, -0.22145242735717063, -0.20797249349533004, -0.19585960553256898, -0.18508971318897327, -0.1756272586897767, -0.16742932645079622, -0.16044864135358106, -0.1546356186759853, -0.14993965704172996, -0.14630984936125446, -0.1436952682431163, -0.14204496294944413, -0.14130778509123187, -0.14143214005871774, -0.1423657408245952 ], [ -0.09131003249321945, -0.10384932325072183, -0.11834355601255597, -0.13480887367353134, -0.153267989655962, -0.17375008662095548, -0.19628076254523363, -0.2208582597803867, -0.24741545148409588, -0.2757725996737957, -0.3055919004199634, -0.3363478415713303, -0.3673242545989538, -0.3976403005890652, -0.4262995187326592, -0.45225481159073316, -0.4744864968065085, -0.492091927458, -0.5043786719399118, -0.5109437580093077, -0.5117183806223656, -0.5069650333873095, -0.4972283150849056, -0.48325377679097903, -0.46589524146041056, -0.44602914498156276, -0.42448764814389606, -0.40201460915440557, -0.3792427624596021, -0.3566874739091504, -0.33475174660042656, -0.31373778833718663, -0.2938615982355967, -0.27526818453218743, -0.25804596714458616, -0.24223959871531836, -0.22786088840751495, -0.21489778936672838, -0.20332156704985482, -0.19309234389973828, -0.18416324639292636, -0.17648338356788928, -0.16999987459158472, -0.16465912443514175, -0.16040752558027238, -0.1571917419851463, -0.15495871014483198, -0.15365547117440337, -0.15322892738191662, -0.15362559678257803 ], [ -0.10182161823210256, -0.11555389070045063, -0.1313427302072082, -0.14920735040957855, -0.1691741449880586, -0.1912770360430599, -0.2155472133064199, -0.24198782073623853, -0.2705325515399278, -0.3009933761534808, -0.3330098582767301, -0.36601651952498027, -0.3992409782342448, -0.4317343122162742, -0.4624246194561498, -0.49018470325085584, -0.5139130983970668, -0.5326308900036837, -0.5455871664225775, -0.5523514266565471, -0.552866050072137, -0.547441882264442, -0.5366988890493456, -0.5214704847166838, -0.5026969597927811, -0.48132995210766105, -0.4582607187449151, -0.43427548375898883, -0.4100346272451726, -0.386069582705052, -0.36279107717972137, -0.3405034780785347, -0.31942151730315954, -0.2996870232924113, -0.2813843227150593, -0.2645536747345914, -0.2492025393544745, -0.23531473441161566, -0.22285766758838554, -0.21178788708813845, -0.2020552087622095, -0.193605668425751, -0.18638352790499746, -0.1803325388805529, -0.17539664341627237, -0.17152026579076973, -0.1686483273593523, -0.1667260946062884, -0.16569895007747526, -0.1655121563609403 ], [ -0.1138232585125587, -0.1288383349383344, -0.14601863435685536, -0.1653862229769013, -0.18697011313925416, -0.21080686348672495, -0.236930074176319, -0.2653437204915807, -0.2959777516758726, -0.32863127144707993, -0.36291709447298465, -0.3982266715803548, -0.4337301313681621, -0.4684117787549313, -0.5011279119268297, -0.5306754890690358, -0.5558740564191866, -0.5756690689359641, -0.5892507914034865, -0.5961617681229773, -0.5963581252482223, -0.5902031841972505, -0.5783965099388313, -0.5618622399384204, -0.5416278729566637, -0.5187190179709202, -0.494083557352935, -0.4685472385697661, -0.4427955600608107, -0.41737419663193664, -0.39270058791923645, -0.36908099743780676, -0.3467292172456327, -0.3257846336151998, -0.30632846178628503, -0.28839765876560214, -0.2719964365887327, -0.2571055211249683, -0.24368940610119788, -0.2317018878379904, -0.22109016455403996, -0.21179776394655858, -0.20376653499536673, -0.19693791044652165, -0.19125361804222374, -0.18665599235534847, -0.18308801518516427, -0.18049319058549151, -0.17881534034096236, -0.17799838680097335 ], [ -0.1273751660260819, -0.14376781670302807, -0.16244168974061557, -0.1834214134390456, -0.2067373273931371, -0.23242603615622215, -0.26051953682270174, -0.29101738207419087, -0.32383982816345336, -0.3587672870743381, -0.39538101948817245, -0.43302647677018663, -0.4708160727105032, -0.5076703312187181, -0.542379373209811, -0.5736705943826012, -0.6002893214490398, -0.6211079059294999, -0.6352590974649179, -0.6422601312043277, -0.642083556916502, -0.6351482922166279, -0.6222357962567159, -0.6043613813387972, -0.5826381581463398, -0.5581626323699576, -0.5319356875395469, -0.5048192730288512, -0.47752152418767707, -0.45060091004295066, -0.4244811122605123, -0.3994706040095814, -0.3757831014860177, -0.3535567445192599, -0.3328709862714075, -0.3137608531091128, -0.2962286139399834, -0.28025308660074794, -0.26579688565663934, -0.25281193126724644, -0.24124352282831374, -0.23103325134886354, -0.2221209905156375, -0.2144461729607307, -0.20794852747862735, -0.20256842541488718, -0.19824695998244612, -0.19492586035955306, -0.1925473225660278, -0.19105382091427414 ], [ -0.14252559333670667, -0.160393848202932, -0.18066656951875637, -0.20337054708425578, -0.22853593325282023, -0.2561963653396626, -0.2863775137536958, -0.3190682276391297, -0.35417189841355956, -0.39144334077776793, -0.43042699995849787, -0.47041990213490026, -0.5104778499514515, -0.5494621898554818, -0.5861039509745953, -0.6190686613631704, -0.6470339872047679, -0.6688040279490447, -0.6834577141742555, -0.6904901976658295, -0.6898932000893491, -0.6821428015326264, -0.6681019534932009, -0.6488745432641312, -0.6256550204603281, -0.599605846045457, -0.5717763205639066, -0.5430610766512808, -0.5141887232353272, -0.4857296664014356, -0.458114035754569, -0.4316534742745874, -0.40656304359535594, -0.3829812802624436, -0.3609875643490302, -0.3406166081495407, -0.32187020989992976, -0.304726570642462, -0.2891475227623893, -0.2750840156495151, -0.262480175798941, -0.2512762211175316, -0.2414104703742691, -0.23282065243514027, -0.22544468756646646, -0.21922108481833308, -0.21408907485585416, -0.20998857593587927, -0.2068600714057644, -0.20464445966010342 ], [ -0.15930691140224473, -0.17874971345467483, -0.2007268311718864, -0.2252666426642561, -0.2523973678997912, -0.2821463212517699, -0.3145276041918293, -0.34951235718765106, -0.38697909335953296, -0.42664945475335375, -0.46802576154066733, -0.5103550567505077, -0.5526391156092808, -0.5936859830269039, -0.6321752948208879, -0.6667189519448671, -0.6959350513055698, -0.7185671023554988, -0.7336470730210618, -0.7406532959222131, -0.7395993414892236, -0.7310178564971497, -0.7158494751556083, -0.6952805153675178, -0.6705796695813818, -0.6429686910794548, -0.6135400496238228, -0.5832176590548496, -0.5527490071046097, -0.5227163299242538, -0.49355716484812595, -0.4655879476127587, -0.43902704184201524, -0.4140154296357762, -0.3906343979870952, -0.36892015909689335, -0.3488756381127596, -0.33047978224607427, -0.31369477251622374, -0.29847150099110065, -0.2847536385859542, -0.2724805750745417, -0.2615894707437449, -0.25201662098489913, -0.2436983018861389, -0.23657123635516858, -0.23057279579684714, -0.22564103112006095, -0.2217146081550267, -0.2187327059009443 ], [ -0.17773181860639486, -0.19884610903942634, -0.222629903760368, -0.2491123436844514, -0.278317719877219, -0.3102634120085359, -0.34494643543205816, -0.38231292219792046, -0.42220824290972525, -0.4643132742817043, -0.5080834095979343, -0.552715308465235, -0.5971606562767708, -0.6401807241104643, -0.6804111175091827, -0.7164181005876376, -0.7467696278531364, -0.7701594724800342, -0.7855831617797232, -0.7925096864085376, -0.7909767883207417, -0.7815703879379843, -0.7653011181995646, -0.7434278553314758, -0.7172837365878288, -0.6881417317222432, -0.6571319156035994, -0.625204479273635, -0.5931249377690107, -0.5614880742629773, -0.5307405473177351, -0.5012058267762758, -0.47310800530135494, -0.446592895906982, -0.4217458991815263, -0.3986066834775726, -0.3771809790184902, -0.3574498796181547, -0.33937705447067495, -0.32291424242050476, -0.30800535634865883, -0.2945894779682401, -0.28260297904539333, -0.27198096599563093, -0.26265821131390016, -0.25456970689346475, -0.24765095016414818, -0.24183805327983865, -0.23706774756789123, -0.23327733955842 ], [ -0.19778997726968262, -0.22066737571373607, -0.24635289865129606, -0.27487529387147513, -0.306252657258692, -0.34048866359448093, -0.37755772948730476, -0.41737389436016237, -0.45974159457471264, -0.504294125112213, -0.5504362413390702, -0.597315055445343, -0.6438369684206966, -0.6887228860008137, -0.7305707528365433, -0.7679086064878897, -0.7992649650974656, -0.8232979070601757, -0.8389805555564043, -0.8457819131127111, -0.8437654665863368, -0.8335641558004911, -0.8162470537525225, -0.7931322592863835, -0.7656052713623369, -0.7349812097481057, -0.7024221944031992, -0.6689022665000979, -0.6352049115536154, -0.6019389632825809, -0.5695625828093993, -0.5384090303665978, -0.5087109236170486, -0.4806215388638537, -0.45423275016092235, -0.4295897234033904, -0.40670271033718497, -0.38555635953574563, -0.3661169570434173, -0.3483379715755385, -0.3321642301203242, -0.3175350003299226, -0.3043862109597467, -0.29265200240343336, -0.2822657661141746, -0.27316080373632884, -0.2652707131966994, -0.2585295889321496, -0.2528721060974584, -0.2482335434321249 ], [ -0.21944534850118685, -0.24416864290712587, -0.27183962870645756, -0.3024851232015928, -0.33611449981833064, -0.37271392232544315, -0.4122300002584428, -0.4545383341726798, -0.4993958242998211, -0.5463828827637803, -0.5948514313818619, -0.6439009058193648, -0.6923973711255662, -0.7390270227475525, -0.7823554822280135, -0.8208797155022224, -0.8531007976923499, -0.8776576869055368, -0.8935175973685336, -0.900159852717759, -0.8976741091708419, -0.8867313061514284, -0.8684441388437906, -0.8441738919791358, -0.8153447316122853, -0.7833043258681822, -0.7492414996369593, -0.7141523177758985, -0.6788388769895044, -0.6439261977143871, -0.6098868267049107, -0.5770669328956554, -0.5457106953835493, -0.5159816318500389, -0.48798052691960186, -0.461760116263939, -0.43733689110465795, -0.41470044752723645, -0.39382079341767173, -0.37465398420943236, -0.35714640790663843, -0.34123798994601157, -0.3268645435372121, -0.3139594524226096, -0.3024548403709912, -0.29228235441569295, -0.2833736659357161, -0.27566077426629354, -0.26907618085921614, -0.2635529875196034 ], [ -0.24263444278113022, -0.26927412506757636, -0.29899909073399594, -0.33183230637013006, -0.3677716917426194, -0.4067822135143807, -0.44877806638198, -0.4935912562065788, -0.5409262876382364, -0.590307380111619, -0.6410330656142664, -0.6921576152987393, -0.7425112144029815, -0.7907500554323608, -0.8354123324164076, -0.8749715833998718, -0.9079145808076722, -0.9328789353379066, -0.9488430758252695, -0.9553065858920508, -0.9523843037773448, -0.9407740961893704, -0.921615406220957, -0.8962951412269866, -0.8662616585150531, -0.832885447006194, -0.7973769834394672, -0.7607529870480716, -0.7238352664649924, -0.687267543999515, -0.6515399083426439, -0.6170147302838475, -0.5839508833678051, -0.5525249452419392, -0.5228490520413567, -0.4949855637760915, -0.46895890087528025, -0.4447649683479438, -0.42237857115427213, -0.4017591828282542, -0.38285537945479925, -0.36560820228595664, -0.3499536684986394, -0.3358246119672103, -0.3231520042476932, -0.31186587949506894, -0.30189596485498893, -0.2931720991249346, -0.28562450644010157, -0.2791839778497944 ], [ -0.26726563158077765, -0.29587670658845766, -0.32770551730024017, -0.3627689345642409, -0.40105059962338957, -0.44249089601860253, -0.4869678520202572, -0.534266218180787, -0.5840352595142133, -0.6357417922859916, -0.6886318760339657, -0.7417174037952771, -0.7937964247065451, -0.8434992236874521, -0.8893418748327651, -0.9297832528789682, -0.9633096350449297, -0.9885745485656152, -1.0045833081050715, -1.0108639818638752, -1.0075541592096229, -0.9953665955539229, -0.9754501010351546, -0.9491994891512616, -0.9180729095447178, -0.883454137253361, -0.8465704656433418, -0.8084580832672827, -0.7699597355321475, -0.7317404228407745, -0.6943109403835795, -0.6580531244454966, -0.6232436235906272, -0.5900748309747348, -0.5586726106873787, -0.529110941852999, -0.5014238124601038, -0.47561475670332515, -0.45166442143071417, -0.42953650959607004, -0.4091824018191229, -0.3905447108616418, -0.37355998204343116, -0.3581607165594142, -0.34427686420394543, -0.3318369064950311, -0.3207686297875915, -0.31099966987278316, -0.30245789409914753, -0.29507167369426346 ], [ -0.2932195832579053, -0.3238388447831718, -0.35779996175188244, -0.3951112503640679, -0.43573930320508314, -0.4795970116062498, -0.5265235168442586, -0.5762542623916929, -0.6283824200967849, -0.6823180861397256, -0.7372569385550624, -0.7921714111559854, -0.8458307174491214, -0.8968433685574516, -0.9437096787737494, -0.9848838344868962, -1.0188652713461244, -1.044338594287293, -1.0603485348393051, -1.0664571995483376, -1.062821258676726, -1.0501565194147902, -1.029604801429069, -1.0025522559447098, -0.9704532697997983, -0.9346957919647222, -0.8965191719232722, -0.8569777404633765, -0.8169361590528531, -0.7770830073529438, -0.7379526874508728, -0.6999495301220124, -0.6633708409561664, -0.6284274221718925, -0.5952611145252509, -0.5639594140436551, -0.5345674444742117, -0.5070976422280233, -0.48153751282780377, -0.4578557877286391, -0.4360072690322276, -0.4159366072483708, -0.3975812183077306, -0.3808735120127703, -0.36574257514141284, -0.35211542799051354, -0.3399179525601756, -0.32907557312929214, -0.3195137550436508, -0.3111583746457301 ], [ -0.3203508028734096, -0.3529947199527315, -0.3890932624151449, -0.4286436628880517, -0.47159290868985354, -0.5178241086120984, -0.5671358981027111, -0.6192139037496904, -0.6735960970262695, -0.7296380695806236, -0.7864881212143519, -0.8430823955202968, -0.8981646731101577, -0.9503264659415189, -0.9980598865968935, -1.0398251157580967, -1.0741472902319935, -1.0997540644763184, -1.1157380989339953, -1.1216980802131336, -1.117805222353074, -1.1047677087683387, -1.0837062100538684, -1.055983791418969, -1.0230389564282998, -0.9862553073042968, -0.9468794278557449, -0.9059820288489697, -0.8644500873056964, -0.8229974807743756, -0.7821846025344346, -0.7424408808597134, -0.7040868246962884, -0.6673539837468084, -0.6324022368485583, -0.5993343627819049, -0.5682081016149699, -0.539046012314646, -0.5118434503832208, -0.4865749702707363, -0.46319942370130984, -0.44166398803748946, -0.4219073235533083, -0.40386202702171226, -0.3874565218138736, -0.37261650150944475, -0.3592660243035534, -0.34732833868750396, -0.33672650644950186, -0.32738387655781614 ], [ -0.3484901788669742, -0.38315347763631014, -0.4213701481039142, -0.46312389197005366, -0.5083398892583084, -0.5568698803088954, -0.6084714490952979, -0.6627812462432564, -0.7192843400751395, -0.7772852030355833, -0.835888527023583, -0.8939978357009054, -0.9503354908957665, -1.003481710391032, -1.051928832731353, -1.0941535977153274, -1.128717459939938, -1.1543994739122732, -1.170344695092111, -1.176188170283002, -1.1721106976705045, -1.1588039130720942, -1.1373560257634865, -1.1090953044081169, -1.0754340556543365, -1.0377437401229153, -0.9972732256268247, -0.9551072125313707, -0.912154569852762, -0.8691553692586391, -0.8266976559557927, -0.7852379680352329, -0.7451221058484554, -0.7066043635813761, -0.6698644749940214, -0.6350221002713897, -0.6021489695345575, -0.5712789240966949, -0.5424161351352181, -0.5155417749362858, -0.4906193922527372, -0.46759921311896774, -0.4464215578313781, -0.4270195364525578, -0.4093211600842887, -0.3932509833683491, -0.37873137492002734, -0.3656834962598339, -0.35402805586318914, -0.34368589283593615 ], [ -0.37744837731563813, -0.41410334740795335, -0.4543941993629309, -0.49828887518363024, -0.545689004545786, -0.5964141035967758, -0.6501811321649635, -0.706579711629643, -0.7650453711165224, -0.824835732544475, -0.8850163581873823, -0.9444625367196878, -1.001880098128687, -1.05584452583949, -1.10485709322034, -1.1474207395372793, -1.1821414504286878, -1.2078545560193235, -1.2237585186736175, -1.2295224027178526, -1.2253316355052788, -1.211854347955426, -1.1901379544932427, -1.1614670724409915, -1.1272194550616679, -1.0887474583018106, -1.0472971771024986, -1.0039642194717233, -0.9596779775092883, -0.9152046435702414, -0.8711607068487863, -0.8280311099617623, -0.7861884722164455, -0.7459114106714797, -0.7074010312527624, -0.6707952700967433, -0.6361810914032481, -0.6036047056199169, -0.5730800347014582, -0.5445956641399986, -0.5181205099972856, -0.49360840727224325, -0.4710018009036492, -0.45023469610643463, -0.43123500211952204, -0.4139263833056011, -0.39822971388311973, -0.3840642171628285, -0.3713483567183988, -0.36000053516838826 ], [ -0.4070198821365914, -0.44561638809644194, -0.4879133646293378, -0.5338610918013325, -0.5833364259084581, -0.6361265094457905, -0.6919089412587413, -0.7502291230376001, -0.8104771930403385, -0.8718688669453493, -0.9334357168539806, -0.9940299613452517, -1.0523466299168938, -1.1069635557484798, -1.1563993267294606, -1.1991912364978594, -1.2339955199913162, -1.2597057157522582, -1.275572141912123, -1.2812941927449657, -1.277057321882296, -1.2635010966649813, -1.2416265364609078, -1.2126684188266603, -1.1779635029957185, -1.1388389771667953, -1.0965330934676945, -1.0521486508460258, -1.006633250500773, -0.960778115836338, -0.9152280304868154, -0.8704968381352123, -0.8269848684619739, -0.7849961568831356, -0.7447543482139911, -0.7064168069136928, -0.6700868186268468, -0.6358239587753376, -0.6036527936202846, -0.5735701119699943, -0.5455508883039674, -0.5195531659140407, -0.495522030248956, -0.4733928224934921, -0.4530937237495446, -0.43454782199803454, -0.4176747576399109, -0.4023920288453035, -0.3886160250542895, -0.3762628455958161 ], [ -0.43698745909802095, -0.47745360011210647, -0.5216657408507512, -0.5695549967889431, -0.6209727685998477, -0.675674324600958, -0.7332998558719663, -0.7933540044667184, -0.8551862298602845, -0.9179757989717827, -0.9807260038548935, -1.0422718371146324, -1.1013038629109484, -1.1564094472774598, -1.2061320696008249, -1.2490497997076162, -1.283872566262002, -1.3095518159627515, -1.3253865335344417, -1.3311021342788947, -1.3268800853197114, -1.3133279991643272, -1.291397183185128, -1.2622686637392213, -1.2272335005358939, -1.1875885707497216, -1.144559328747621, -1.0992515552356146, -1.0526279031022725, -1.0055025672581888, -0.9585475345401262, -0.9123052184107185, -0.8672038704967986, -0.8235735103814268, -0.7816610945754745, -0.741644289044043, -0.7036436018005802, -0.6677328552326309, -0.6339480949492504, -0.6022950859334637, -0.5727555649194996, -0.5452924167414421, -0.5198539315907922, -0.4963772851408208, -0.4747913673056281, -0.4550190695216505, -0.4369791255760431, -0.42058758743103103, -0.40575900525613273, -0.392407369930046 ], [ -0.46712682144798046, -0.5093701575487618, -0.555385356324338, -0.6050833047035653, -0.6582897949442135, -0.7147292939179368, -0.774007090184758, -0.835591000832725, -0.8987949076706099, -0.9627674500738839, -1.0264897713137442, -1.088785941314938, -1.1483486614269534, -1.2037817210195514, -1.2536599875907566, -1.296607016109057, -1.3313880069177575, -1.3570105029834145, -1.3728181258172423, -1.3785579473947678, -1.374404153420669, -1.360930382656771, -1.339036687645454, -1.3098482427433775, -1.2746071780279578, -1.2345758064279175, -1.1909620711915714, -1.1448702177528878, -1.0972741191837407, -1.0490080318428119, -1.000769177534115, -0.9531274009458746, -0.9065383985643796, -0.8613581851868626, -0.8178573760580428, -0.776234500024018, -0.7366279718545422, -0.6991266029622661, -0.6637786731775873, -0.6305996617842158, -0.5995787705739258, -0.5706843824748349, -0.5438685969777481, -0.5190709744869261, -0.4962216095494604, -0.4752436397434552, -0.45605528394518574, -0.4385714913105747, -0.42270527084927567, -0.40836876102829295 ], [ -0.49721129139250975, -0.5411205400525039, -0.5888077325534609, -0.6401629120803346, -0.6949866049542411, -0.7529740394074904, -0.8136985345161478, -0.8765953462859909, -0.940948121748593, -1.0058809058123366, -1.070359053670898, -1.1332022037562677, -1.19311173044729, -1.2487141548397753, -1.298621053588891, -1.3415046579115302, -1.3761856221497357, -1.4017248912944802, -1.4175064563367883, -1.4232950074280013, -1.419254907247137, -1.405924879663535, -1.384153479092789, -1.3550092836267158, -1.319683454664775, -1.2794003085641301, -1.2353459074737185, -1.1886183262335919, -1.1401983540125475, -1.0909367149104203, -1.0415531353329723, -0.9926430102231698, -0.9446883408314481, -0.8980705924714204, -0.8530839435813194, -0.8099480107821739, -0.7688195561827009, -0.729802955641678, -0.692959373453861, -0.6583146851106407, -0.6258662408814344, -0.5955885862819613, -0.5674382623067564, -0.5413578057098161, -0.5172790619852693, -0.495125913647363, -0.47481651546793435, -0.45626511736615927, -0.43938354513408745, -0.4240823993620697 ], [ -0.5270162793813887, -0.5724633809971598, -0.6216750460038987, -0.6745202947720388, -0.7307751765139101, -0.7901076494236101, -0.8520623135535653, -0.9160463334761493, -0.9813185746970687, -1.0469845790368864, -1.112000299768625, -1.1751873591060251, -1.2352620006068575, -1.2908790321631898, -1.3406909236584588, -1.383420532549538, -1.4179431991530054, -1.443370183673117, -1.4591217470967826, -1.4649767006739802, -1.4610877644333795, -1.4479586230430161, -1.4263869942336338, -1.3973850809930597, -1.3620919593786898, -1.3216912456900733, -1.2773431627217195, -1.230135030609902, -1.1810499820553444, -1.1309511203238765, -1.080577331217684, -1.0305470357574689, -0.9813667930741158, -0.933442441657212, -0.8870911853243071, -0.842553603097544, -0.8000049798278382, -0.7595656400888711, -0.7213101534152551, -0.6852753936695734, -0.6514675022641246, -0.6198678408482241, -0.5904380353927743, -0.5631242179820962, -0.5378605699883976, -0.5145722637691515, -0.49317789152866875, -0.47359146069599467, -0.45572402579511134, -0.43948501772615467 ], [ -0.5563234370414046, -0.6031658889194881, -0.6537407554344402, -0.7078962621560568, -0.7653851589212235, -0.8258504262485902, -0.8888114146546557, -0.9536517649876715, -1.0196110054508736, -1.0857821782789019, -1.151118057727238, -1.21444836949486, -1.2745098926528335, -1.3299904549781743, -1.379586583996523, -1.4220727605266248, -1.4563776626939773, -1.4816597301660726, -1.4973717989194424, -1.5033039334132776, -1.4995960404944064, -1.4867172427004607, -1.4654156834780108, -1.4366480685097698, -1.401500964671929, -1.3611152152640922, -1.3166216942314186, -1.2690925714606784, -1.2195086686023444, -1.1687410740572481, -1.117544035158757, -1.0665559532723206, -1.0163056719601202, -0.9672218376425253, -0.9196437170962659, -0.8738323749639771, -0.829981516013737, -0.7882275869042659, -0.7486589309314576, -0.7113239193269373, -0.6762380639714555, -0.6433901643215347, -0.61274756718761, -0.58426062960871, -0.5578664777708552, -0.5334921522421306, -0.5110572240452013, -0.4904759587284297, -0.4716590975587045, -0.45451531682028234 ], [ -0.5849243753191943, -0.6330077393534181, -0.6847736029261561, -0.7400499918862855, -0.7985678618696237, -0.859947753800625, -0.9236873690698302, -0.9891513956870797, -1.0555653534376026, -1.1220155718781153, -1.1874575504171707, -1.2507347818963008, -1.310609607207685, -1.3658067905361957, -1.4150692119552724, -1.4572232771697324, -1.4912493516330743, -1.5163500842674353, -1.5320077039876745, -1.5380212898302963, -1.5345173201669533, -1.521931263652914, -1.5009633323970084, -1.472516041600302, -1.4376235364478298, -1.3973823528569762, -1.3528909682382761, -1.3052022980628766, -1.2552902742647383, -1.2040294458882803, -1.1521853335138168, -1.1004128837920917, -1.049260520986208, -0.9991777083667812, -0.9505244221757945, -0.9035813963716599, -0.858560371324379, -0.8156138652433417, -0.7748441928265318, -0.7363115972111229, -0.700041454762948, -0.6660305711723665, -0.6342526223093906, -0.6046628121279503, -0.5772018281329727, -0.5517991763643846, -0.5283759751078787, -0.5068472813490277, -0.4871240174899808, -0.46911455879182806 ], [ -0.6126238738082328, -0.6617843714184394, -0.7145609348978269, -0.7707623059156167, -0.8300994162488925, -0.8921730780662487, -0.9564629963794454, -1.0223193977812992, -1.0889589165803042, -1.1554666356734393, -1.2208062502413013, -1.2838401261452246, -1.3433605067620191, -1.3981322432764265, -1.4469461452539196, -1.488680356320374, -1.5223651656396746, -1.5472447393249538, -1.562828050119644, -1.5689215288670044, -1.5656380654437605, -1.553380683376289, -1.5328035343467836, -1.5047565206558087, -1.470221829919237, -1.4302506161797321, -1.3859063716419913, -1.3382190160908412, -1.2881512147883418, -1.236576474243399, -1.1842673609807077, -1.1318916751021721, -1.0800143918800842, -1.0291034486138606, -0.9795378330100581, -0.931616816509881, -0.885569516203417, -0.84156424232643, -0.7997172948404204, -0.760101021383595, -0.7227510518064776, -0.6876726929020832, -0.6548465103260883, -0.6242331505007684, -0.5957774690449562, -0.5694120379640577, -0.5450601042904359, -0.5226380700378389, -0.5020575585630446, -0.48322712661446543 ], [ -0.6392425383591903, -0.6893096562057717, -0.7429113222496023, -0.7998381801933521, -0.8597831126946739, -0.9223300197401711, -0.9869442459154932, -1.0529658983498682, -1.1196075699778316, -1.1859581649567204, -1.2509945365093054, -1.3136024196880127, -1.3726076156727993, -1.426817519978124, -1.4750718658717707, -1.5163000131591513, -1.5495804131045852, -1.574196374583484, -1.5896814628319758, -1.5958482926284787, -1.5927963641576173, -1.5808976665376302, -1.5607622883129806, -1.5331892627606694, -1.4991095657877875, -1.459528291670341, -1.4154718056608986, -1.3679436991707314, -1.3178912902538529, -1.2661826858462937, -1.2135932657969324, -1.1607998600793783, -1.1083807445565859, -1.0568197166352216, -1.006512788992511, -0.9577763574122247, -0.9108559988023603, -0.8659353101033118, -0.8231444003736308, -0.7825677999611659, -0.7442516600604452, -0.7082101919382953, -0.6744313458206582, -0.6428817616660827, -0.6135110431321812, -0.586255415989245, -0.5610408359954172, -0.5377856109354279, -0.5164025986355952, -0.4968010383434761 ], [ -0.6646188908803816, -0.7154179315095205, -0.7696564859954437, -0.8271085065440951, -0.8874509482247979, -0.9502536607661363, -1.0149711879939278, -1.080937653036088, -1.1473661180200396, -1.2133539270905185, -1.277895505258343, -1.3399038291559413, -1.3982412570245808, -1.4517595716125942, -1.4993479529961928, -1.5399862268131712, -1.5727993061871204, -1.5971075778381019, -1.6124674810010968, -1.6186970508133238, -1.615882867979895, -1.6043674263608774, -1.5847188095183986, -1.557687026079311, -1.5241528035671732, -1.4850748459810412, -1.4414406796613135, -1.3942246689909048, -1.344355067753615, -1.2926904701137114, -1.24000494389304, -1.1869805058496263, -1.1342053617741565, -1.082176366343991, -1.0313043438770486, -0.9819211620164585, -0.9342877074339155, -0.8886021437497037, -0.8450080236072126, -0.8036019771675447, -0.7644408120717453, -0.7275479413782999, -0.6929191126982743, -0.6605274496559305, -0.6303278408408994, -0.6022607254844354, -0.5762553321623222, -0.552232429107888, -0.530106643823515, -0.5097884067643377 ], [ -0.688610897393402, -0.7399654197224121, -0.79465255648567, -0.8524311459509444, -0.9129644306453417, -0.9758110640459499, -1.0404182228141183, -1.1061179308079443, -1.1721278588833115, -1.2375579324336097, -1.3014240006048015, -1.362669542399837, -1.4201958615111059, -1.4729004321239434, -1.5197220206342, -1.5596900079869616, -1.5919741514116892, -1.6159301246218813, -1.6311358783792513, -1.6374144200543368, -1.6348400767260316, -1.6237274599557892, -1.604604726053899, -1.5781747639532868, -1.5452691908770233, -1.5068002992250977, -1.463715474275996, -1.4169573986861583, -1.3674319520258704, -1.3159844187944358, -1.2633836273239463, -1.2103130150343118, -1.1573673184224396, -1.1050535372691985, -1.0537949310843235, -1.0039369945449466, -0.955754572295852, -0.9094594779639824, -0.8652081602465791, -0.8231091043160143, -0.7832297699932195, -0.7456029528989073, -0.7102325160224515, -0.6770984817895066, -0.646161503162523, -0.6173667502236306, -0.5906472589705701, -0.5659267939362598, -0.5431222774026891, -0.5221458366613396 ] ], "zauto": true, "zmax": 1.6374144200543368, "zmin": -1.6374144200543368 }, { "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.5359173365585105, 0.5312609610176285, 0.5274218263545144, 0.5244485045887681, 0.5223664252363888, 0.521176278415038, 0.5208539156629207, 0.5213517824668815, 0.5226017380042283, 0.5245189638688209, 0.5270065619483298, 0.5299604053216331, 0.5332738323646506, 0.5368418482590509, 0.5405645990706189, 0.5443499912769164, 0.548115428454764, 0.5517887172212149, 0.5553082524083782, 0.5586226268294491, 0.5616898263157529, 0.5644761696795757, 0.5669551400532119, 0.5691062328241577, 0.5709139199562089, 0.5723668041155962, 0.5734570112013334, 0.574179848192805, 0.5745337353037464, 0.5745204070106312, 0.574145364636087, 0.5734185523992927, 0.5723552176502735, 0.5709769030389008, 0.5693125028081107, 0.5673992972295226, 0.5652838594569223, 0.5630227100280506, 0.5606825794696262, 0.5583401337235057, 0.5560810259865946, 0.5539981676042794, 0.5521891640783676, 0.5507529410409081, 0.5497856849531297, 0.549376333271992, 0.5496019510131679, 0.550523402753892, 0.5521817496607148, 0.5545957562633143 ], [ 0.5248643636639864, 0.5197782625191655, 0.5155721932395727, 0.5123026805310157, 0.5100007844453381, 0.5086700751690995, 0.5082863310043396, 0.5087990250912048, 0.5101344475705007, 0.5122001185252805, 0.5148900194389587, 0.5180901248176455, 0.5216837477440582, 0.5255563040274639, 0.5295992225827635, 0.5337128591910568, 0.5378083877950458, 0.5418087369142945, 0.5456487045386801, 0.5492744237055786, 0.5526423663619783, 0.5557180697738192, 0.5584747527323765, 0.560891963028, 0.562954367555885, 0.5646507657146295, 0.5659733782591636, 0.5669174392099646, 0.5674810984350853, 0.5676656267448926, 0.567475902627984, 0.5669211484957764, 0.5660158727553738, 0.5647809606858246, 0.5632448409990258, 0.5614446360219365, 0.5594271826453885, 0.5572497908538352, 0.5549805904939714, 0.5526983100115527, 0.5504913392099234, 0.5484559578279274, 0.5466936677727479, 0.5453076507144329, 0.544398480323543, 0.544059338044662, 0.5443710935022481, 0.5453976907601882, 0.5471823055548297, 0.5497446905128717 ], [ 0.5135342080682226, 0.5079834507544587, 0.5033767651461812, 0.4997798195572586, 0.4972303997357554, 0.49573584663868187, 0.49527246635822425, 0.49578702441582767, 0.4972001689668635, 0.4994113887434501, 0.5023049500742489, 0.5057561973986596, 0.50963763970634, 0.5138243562330888, 0.5181984041740759, 0.5226520668787306, 0.5270899196125985, 0.53142979870867, 0.5356028347550998, 0.5395527531048638, 0.543234660204486, 0.5466135279801413, 0.5496625669288124, 0.5523616474437882, 0.5546958934167188, 0.5566545365587513, 0.5582300873020398, 0.5594178504461955, 0.5602157915009668, 0.5606247424302154, 0.56064892187333, 0.5602967330840046, 0.559581790864413, 0.5585241150348239, 0.5571514114087135, 0.5555003416692701, 0.5536176619324409, 0.5515610884573422, 0.5493997317423281, 0.5472139324060775, 0.5450943402130712, 0.5431401080777056, 0.5414561313770065, 0.5401493514929041, 0.539324257214911, 0.5390778462450475, 0.5394944306499361, 0.5406407577513295, 0.5425619449491587, 0.5452786756765884 ], [ 0.5019762731327393, 0.495924213400909, 0.4908807224865709, 0.4869219424205711, 0.48409366597091746, 0.48240810465652545, 0.48184289802878105, 0.48234254418796874, 0.4838221054967249, 0.48617274517571907, 0.4892684443937856, 0.4929731695591387, 0.4971478025987438, 0.5016562812069545, 0.5063705772477326, 0.5111743288124639, 0.5159651060617457, 0.5206554179482517, 0.5251726523349709, 0.5294581888993799, 0.5334659389283823, 0.5371605561624598, 0.540515535712636, 0.5435113806520374, 0.5461339741881115, 0.5483732542056461, 0.5502222498973187, 0.55167650911939, 0.552733920519193, 0.5533949156456299, 0.5536630215788877, 0.5535457220629293, 0.5530555726215106, 0.5522115009380097, 0.5510402067646339, 0.5495775555806163, 0.5478698380745681, 0.5459747455954927, 0.5439618938656519, 0.5419127189162699, 0.5399195771162347, 0.5380839124937918, 0.5365134153650256, 0.5353181891458221, 0.5346060633210633, 0.534477327187877, 0.535019288963276, 0.5363011591432886, 0.5383697866288732, 0.5412467217493141 ], [ 0.49024752497351004, 0.4836560380110527, 0.47813708454069576, 0.4737787477582989, 0.47063631451530824, 0.46872821358094247, 0.4680344773088934, 0.46849800342188475, 0.4700284992230676, 0.47250861757551643, 0.4758015287556338, 0.4797590629817632, 0.4842296040386347, 0.4890650751255275, 0.4941265773777738, 0.49928846733593774, 0.5044408560241284, 0.5094906614270204, 0.5143614442646334, 0.5189923086936106, 0.5233361633586987, 0.5273576235592516, 0.5310308013584019, 0.5343371855283122, 0.5372637643413634, 0.5398014969089259, 0.541944196809707, 0.5436878570895437, 0.5450304186318292, 0.5459719633507282, 0.5465152977610214, 0.5466668789851449, 0.5464380219947782, 0.5458463120769272, 0.5449171290494426, 0.5436851694041657, 0.5421958302267056, 0.5405062966980843, 0.5386861570759556, 0.5368173607912502, 0.5349933436042603, 0.5333171761711051, 0.5318986553896727, 0.5308503544997086, 0.5302827744351521, 0.5302988822944192, 0.5309884596941106, 0.532422783460057, 0.5346501926566889, 0.5376930386231826 ], [ 0.47841233756325324, 0.471242166043703, 0.46520675376916815, 0.4604077185032253, 0.4569115493720772, 0.4547445258738592, 0.4538904426542945, 0.4542915527042906, 0.45585266929124046, 0.45844790089707954, 0.46192914913635874, 0.4661353465037725, 0.47090145345975376, 0.47606642427924734, 0.4814796161691746, 0.4870053894844102, 0.492525882818575, 0.49794212345391525, 0.5031737473573211, 0.5081576603016899, 0.5128459839274986, 0.5172036097464036, 0.5212056416552399, 0.5248349535368405, 0.5280800312883556, 0.5309332144011432, 0.5333894050342513, 0.5354452741741027, 0.5370989648478786, 0.5383502699766674, 0.5392012450855157, 0.5396572013119427, 0.5397280097826734, 0.5394296327676389, 0.5387857790509162, 0.5378295604971639, 0.5366050047028779, 0.53516825707956, 0.5335882884729086, 0.5319469169485801, 0.5303379616699165, 0.5288653805955673, 0.5276403088585155, 0.5267770144295575, 0.5263879184560991, 0.5265779761323109, 0.5274388559506189, 0.5290434586474555, 0.5314413497127334, 0.5346556192520209 ], [ 0.46654205008439714, 0.4587532795504388, 0.4521583203833656, 0.44687401936388854, 0.4429800045959484, 0.4405123659554758, 0.4394604030302109, 0.439767041002036, 0.4413329577186753, 0.44402388449102953, 0.44768009268887293, 0.4521268592343283, 0.457184733292025, 0.4626786469803483, 0.4684452330863024, 0.47433804567460985, 0.4802306658546361, 0.4860178868811131, 0.49161530606256576, 0.496957714981945, 0.5019966891443143, 0.5066977490900405, 0.511037411749503, 0.5150003857689073, 0.5185770975733363, 0.5217616730908359, 0.5245504474473154, 0.5269410329505632, 0.5289319435631983, 0.5305227497240441, 0.5317147181874844, 0.5325118749832328, 0.5329224135941052, 0.5329603535551982, 0.5326473360912416, 0.5320144230444148, 0.531103744016136, 0.5299698163630814, 0.528680346993144, 0.5273163190977727, 0.5259711779577935, 0.5247489655602451, 0.52376132093807, 0.5231233653383197, 0.5229486250330971, 0.5233432962462634, 0.5244003015977796, 0.5261936927957578, 0.5287739868108516, 0.5321649602111437 ], [ 0.45471417803564373, 0.4462668603001593, 0.43906757002978525, 0.43325013546662694, 0.4289094830725253, 0.42609383351903185, 0.42480017437487977, 0.42497386444313534, 0.42651258200672887, 0.4292741098696266, 0.4330868568601303, 0.43776169717534563, 0.44310370599546695, 0.4489226197547223, 0.4550412362602619, 0.46130137905076996, 0.46756740266380314, 0.4737274734187791, 0.479693018660385, 0.48539680908128235, 0.49079014387570913, 0.4958395679838529, 0.5005234833521599, 0.5048289374553508, 0.5087487940428329, 0.5122794209625005, 0.515418971893429, 0.5181662934792834, 0.5205204549367531, 0.522480870778304, 0.5240479657714135, 0.5252243121502401, 0.5260161506937375, 0.5264351886051594, 0.5265005477465639, 0.5262407167691915, 0.525695340760354, 0.5249166639341014, 0.5239704278114957, 0.5229360242261625, 0.5219057160324939, 0.5209827762545028, 0.5202784655473871, 0.5199078717260165, 0.5199847702455216, 0.5206158172531634, 0.5218945323001867, 0.5238956328939661, 0.5266703143830536, 0.5302430039916778 ], [ 0.44301122612672944, 0.4338661645483558, 0.42601663893357666, 0.4196152033956597, 0.41477443906553946, 0.4115574019548042, 0.4099714580195533, 0.40996669751314235, 0.4114394042353019, 0.4142401732776971, 0.41818548625435026, 0.4230710850226621, 0.4286854179771387, 0.4348217065551039, 0.44128764770932477, 0.4479122772705655, 0.4545499596660872, 0.46108178878831213, 0.46741487540395965, 0.4734800765095901, 0.47922871947041523, 0.48462881714506906, 0.48966118429767025, 0.4943157699976953, 0.49858842933531883, 0.5024782789710861, 0.5059857180263879, 0.5091111477965558, 0.5118543874422462, 0.5142147541118267, 0.5161917513593424, 0.5177862869910416, 0.5190023195882907, 0.5198488117266636, 0.5203418474957895, 0.5205067525986703, 0.5203800376222742, 0.5200109703141781, 0.5194625734998782, 0.5188118460552348, 0.5181490213585929, 0.5175757182554785, 0.5172019105455173, 0.5171417457211893, 0.5175083786210937, 0.5184081372158862, 0.5199344812419882, 0.5221623170820616, 0.5251432612784613, 0.5289023787175995 ], [ 0.4315190674154314, 0.42163876898301705, 0.41309276990262567, 0.4060539933051028, 0.40065517461677314, 0.39697729686212535, 0.3950413614072087, 0.39480512043864235, 0.39616564054134085, 0.3989675033423111, 0.40301541024207305, 0.4080892656688404, 0.4139596299021346, 0.42040171582827934, 0.4272066724040802, 0.4341895409049517, 0.441193831376514, 0.4480930690911808, 0.4547898928840009, 0.46121337532292034, 0.46731521890835404, 0.4730654027031168, 0.4784477431894284, 0.4834557165342363, 0.48808878314545945, 0.49234936788549727, 0.49624058233465634, 0.4997647259754983, 0.5029225655706357, 0.505713360769107, 0.5081355752107377, 0.510188184476131, 0.5118724653486625, 0.5131941260582716, 0.5141656154465523, 0.5148084308291259, 0.5151552299513246, 0.5152515424324954, 0.5151568722743872, 0.5149449890197009, 0.5147032266116756, 0.5145306528291863, 0.5145350448007562, 0.5148287107128166, 0.515523330857706, 0.5167241392441432, 0.5185239060133705, 0.520997279072612, 0.5241960689814891, 0.5281459936405988 ], [ 0.42032488255313766, 0.4096746680136249, 0.4003866424505225, 0.39265551719278674, 0.38663673492109546, 0.38243265514209657, 0.38008177834816315, 0.37955317457681387, 0.3807475530379804, 0.3835051610122112, 0.3876193288738442, 0.39285345137535, 0.39895881103760505, 0.4056909153643919, 0.41282271331648385, 0.4201538837623646, 0.4275161181215458, 0.43477483501223035, 0.4418280494371613, 0.4486032127694549, 0.4550528018043558, 0.46114932198816505, 0.4668802464490211, 0.47224326991789334, 0.4772421337243124, 0.4818831825574977, 0.4861727446835383, 0.4901153781891179, 0.4937129878695195, 0.4969647831433137, 0.4998680127768392, 0.5024193768557248, 0.5046169824948973, 0.5064626801022925, 0.5079645936904204, 0.509139642441402, 0.5100158410833668, 0.5106341631611275, 0.511049754606338, 0.5113322977322656, 0.5115653526994143, 0.5118445509295678, 0.5122745889193332, 0.5129650743569364, 0.5140254058228081, 0.5155590096989584, 0.5176573900884287, 0.5203945392802237, 0.5238222776872372, 0.5279670241635738 ], [ 0.4095146975633802, 0.3980639424118916, 0.38799028398101637, 0.3795112663659162, 0.37280751188659333, 0.3680064876518749, 0.36516866837521983, 0.364278899863183, 0.3652451873379197, 0.3679057275272138, 0.37204320939931895, 0.3774038909541489, 0.3837182414162769, 0.3907201375355934, 0.39816245492292546, 0.4058279796218237, 0.41353553137172505, 0.42114186008117893, 0.4285402269621946, 0.43565667471602426, 0.442444916583513, 0.4488806131413902, 0.45495561881088387, 0.46067260601013466, 0.46604033422368657, 0.47106972969007976, 0.4757708735876711, 0.48015095069524316, 0.4842131733995601, 0.4879566578501528, 0.49137718615288795, 0.4944687425667945, 0.49722566788406336, 0.4996452399987654, 0.5017304635820657, 0.5034928384655295, 0.5049548733379495, 0.5061521166256057, 0.5071344889477417, 0.5079667225616735, 0.5087277465487866, 0.5095089077832541, 0.5104109925700713, 0.5115401149647121, 0.5130026617521011, 0.5148996185493423, 0.517320724708617, 0.520338988368932, 0.5240061095185851, 0.5283492910173778 ], [ 0.3991706180399441, 0.38689407538395504, 0.3759946181380341, 0.3667131220388474, 0.359257598810632, 0.3537844973467891, 0.35038130104124743, 0.3490539326586567, 0.3497222403782107, 0.35222536354928047, 0.3563364678514804, 0.36178411397986615, 0.3682762675029004, 0.3755230060342475, 0.3832550344157818, 0.3912365664756496, 0.39927243338559437, 0.4072101584034695, 0.4149381654552229, 0.4223813679179015, 0.42949525095544355, 0.436259332370695, 0.4426706435561293, 0.4487376607162502, 0.45447495805423616, 0.4598987505820789, 0.46502343247485306, 0.46985917814323774, 0.4744106383703154, 0.4786767204523214, 0.48265138638487354, 0.4863253422204147, 0.4896884344567973, 0.49273252474626095, 0.4954545874505686, 0.49785976592471404, 0.4999641296690101, 0.5017968912629499, 0.5034018660934719, 0.5048379888812433, 0.506178741600967, 0.5075104025729438, 0.5089291015262979, 0.5105367629364314, 0.5124361367609462, 0.5147252404019448, 0.5174916481822273, 0.5208071389664044, 0.524723223790735, 0.5292680082052051 ], [ 0.38936792762871314, 0.376247061722824, 0.3644867695946578, 0.35435103575329074, 0.3460769806939568, 0.33985383732563124, 0.33580155725113636, 0.3339532640518387, 0.33424616038691923, 0.33652413417642657, 0.3405524154753488, 0.34604141242199304, 0.35267475189901043, 0.3601363076858328, 0.36813231216747766, 0.3764066132635111, 0.38474891437621883, 0.39299699673466587, 0.40103443874204636, 0.4087853879134684, 0.41620771764871983, 0.4232855794456091, 0.43002204602737854, 0.4364322865757281, 0.442537540701908, 0.44836005726988815, 0.45391911559414383, 0.45922822019559717, 0.4642935292440032, 0.46911352548146423, 0.47367986612225593, 0.4779792662534416, 0.48199619485033524, 0.4857161074860179, 0.4891289120091495, 0.49223236210894816, 0.4950350927209262, 0.49755904295286024, 0.4998410505860931, 0.5019334448274405, 0.503903512447888, 0.5058317712317492, 0.5078090588893723, 0.5099325380259594, 0.5123008257569418, 0.5150085698057071, 0.5181408932232712, 0.5217681940098229, 0.5259417917117803, 0.5306908472666689 ], [ 0.38017228910648054, 0.36619653032790883, 0.35354731510841475, 0.34251063538699916, 0.33335368859632686, 0.32630192269879404, 0.32151339837398124, 0.31905526977435855, 0.3188885857960671, 0.3208666933692496, 0.3247490424530991, 0.3302276077340779, 0.3369597425293466, 0.3446005179024711, 0.3528292405926826, 0.36136754593096904, 0.36998890707810317, 0.3785209369165948, 0.38684246462138255, 0.39487733258427565, 0.40258650116260064, 0.4099596015884967, 0.4170066737628893, 0.42375052439946503, 0.43021995475884495, 0.4364440192119556, 0.44244745011478714, 0.4482473772337101, 0.45385144394362636, 0.4592573588341903, 0.46445382380545625, 0.46942266849917413, 0.47414192157161467, 0.4785894818275025, 0.482747025000761, 0.4866037918560934, 0.4901599398276006, 0.4934291913063386, 0.4964405673109811, 0.49923905104806593, 0.5018850824358014, 0.5044528463418855, 0.5070273894059626, 0.5097006860986143, 0.5125668722356006, 0.51571696455964, 0.5192334721523888, 0.5231853588935567, 0.5276238166003296, 0.5325792445743683 ], [ 0.3716373413056177, 0.3568051648831932, 0.3432477353070884, 0.33127096652039173, 0.3211720820424883, 0.3132154257436118, 0.3076026131571733, 0.30444211142539207, 0.30372621165109176, 0.3053233981104804, 0.3089901844638832, 0.3144001228891047, 0.3211823596062704, 0.3289604657599481, 0.3373843148334667, 0.3461515216748837, 0.35501833789609966, 0.36380191987805677, 0.37237657194323703, 0.38066639319756335, 0.38863620423225675, 0.3962820191402262, 0.4036218195667203, 0.41068703788434435, 0.41751496662138626, 0.42414224840557746, 0.43059961047996664, 0.43690802786815613, 0.44307647882653006, 0.44910137341263034, 0.4549676019700664, 0.4606509989396267, 0.4661218872530743, 0.4713492871983423, 0.4763053502254601, 0.48096960514636694, 0.48533266447309276, 0.4893991137379428, 0.4931893826083036, 0.496740466702522, 0.5001054333495384, 0.5033517078131016, 0.5065582047891964, 0.5098114473491813, 0.5132009011221537, 0.5168138379583574, 0.5207301167185743, 0.5250173114872394, 0.5297266127954745, 0.5348898658784532 ], [ 0.3638030047021734, 0.3481227410386615, 0.3336483607355091, 0.32070261057163607, 0.30961143544840314, 0.30067957050704686, 0.29415691705926056, 0.29020055952007145, 0.28884211708166846, 0.2899718668980802, 0.2933470643454008, 0.2986233310777018, 0.30539985968191674, 0.313266097130544, 0.321840073631116, 0.33079373685796304, 0.3398653199011511, 0.34886141510560637, 0.35765216372261527, 0.3661625730084134, 0.374362151177054, 0.38225423423993404, 0.3898657507035925, 0.397237774862085, 0.404417037768606, 0.4114485438187564, 0.418369502279485, 0.4252048399642819, 0.43196454544952423, 0.43864298232502413, 0.44522012270496925, 0.45166444657251004, 0.4579370838565043, 0.4639966808398721, 0.4698044587012923, 0.4753289844965592, 0.4805502669491401, 0.4854628944847694, 0.49007803220307017, 0.49442417938447775, 0.49854666006394904, 0.5025058820763202, 0.5063744622526148, 0.5102333824807627, 0.5141674136268124, 0.5182601160369493, 0.5225887847931103, 0.5272197399634607, 0.5322043526563106, 0.5375761388279061 ], [ 0.35669477410778, 0.34018507923424957, 0.3247970969133646, 0.310866410262205, 0.2987449756905183, 0.2887777853801753, 0.2812663931340829, 0.276423186755591, 0.2743274824870664, 0.2748988998404663, 0.2779001175353735, 0.28297008677225244, 0.28967679008515107, 0.2975732688573171, 0.30624361210459666, 0.3153327625146827, 0.3245604118088858, 0.3337226842885573, 0.3426860424976576, 0.35137711048169523, 0.3597709308327521, 0.367879107330333, 0.375738528961779, 0.3834009384465384, 0.39092345117064997, 0.39836017145951835, 0.4057551857253125, 0.41313731656796904, 0.420517007214145, 0.4278855461820094, 0.43521658180913864, 0.44246959863766594, 0.4495948126302604, 0.4565388356154173, 0.46325046481878174, 0.4696860431049917, 0.4758139693196819, 0.4816180793254994, 0.4870997431627352, 0.49227862283693924, 0.4971921104586504, 0.5018935260677945, 0.5064492080849451, 0.5109346840190007, 0.5154301667869432, 0.5200156785613498, 0.5247661497362742, 0.5297468626021357, 0.5350095957050595, 0.5405897689969578 ], [ 0.35032417889884, 0.3330141257507095, 0.31672913952528015, 0.3018129639327896, 0.28863943641195566, 0.2775916616175165, 0.2690241202433617, 0.26320971667710885, 0.2602834634498445, 0.2602025360877558, 0.26274089932318656, 0.2675232693024431, 0.27408610622815954, 0.2819444969563521, 0.2906470823328173, 0.2998109318574403, 0.30913700640176955, 0.3184112500679501, 0.32749700530452364, 0.33632322218826566, 0.3448712958978573, 0.3531620167024469, 0.361243233437354, 0.36917837549938964, 0.3770358646073161, 0.38487957438410025, 0.3927607229435567, 0.4007117477292779, 0.4087426905992932, 0.4168403905976288, 0.42497041821923437, 0.4330813139413268, 0.4411104259277689, 0.4489905313282679, 0.45665646536054016, 0.46405112512447483, 0.471130402204827, 0.47786678136272326, 0.4842514939077928, 0.49029522522817787, 0.4960274517198551, 0.5014945349073283, 0.5067567424324592, 0.511884405913788, 0.5169534678942928, 0.5220407114299104, 0.5272189983125091, 0.5325528546385587, 0.5380947252914217, 0.5438821662597755 ], [ 0.34469043642889835, 0.3266192229770724, 0.3094677513774666, 0.2935829225151911, 0.27935506479218586, 0.26720101242715627, 0.25752664566978817, 0.25066809982206095, 0.24682278005222114, 0.245993850682801, 0.24797375084926512, 0.2523771047087121, 0.2587101108530087, 0.2664496078884978, 0.27510820953200704, 0.2842748691801576, 0.29363198002719126, 0.3029557257488247, 0.3121068740651388, 0.3210173314463519, 0.329675579666326, 0.3381124546670885, 0.3463877315158136, 0.35457751925182207, 0.3627624178373389, 0.3710166272703086, 0.3793985479166489, 0.38794364732568387, 0.39666032690507436, 0.4055291846879817, 0.4145055645816428, 0.42352479370530666, 0.4325091861107257, 0.4413757917101215, 0.45004396557648585, 0.45844204856876997, 0.46651270325608635, 0.47421667883823765, 0.4815349549328342, 0.4884693321081658, 0.49504160793649965, 0.501291518169329, 0.5072736495041112, 0.5130535545487959, 0.5187033257353568, 0.5242969114181362, 0.5299054775159001, 0.5355931225234228, 0.5414132338042107, 0.5474057238629922 ], [ 0.33978313980442254, 0.320999439129251, 0.3030259914920465, 0.28620796171138513, 0.27094587004626886, 0.2576836728969204, 0.24687377349771752, 0.238914673505878, 0.2340703666268605, 0.23239792456846992, 0.2337168058304274, 0.23763801432627085, 0.24364112083033937, 0.2511663304551859, 0.2596909602835483, 0.26877636134458405, 0.2780868389884243, 0.28738925332687204, 0.2965422049406384, 0.30548101414156215, 0.31420184640677945, 0.3227463613907919, 0.33118718463914265, 0.3396140582057531, 0.3481205496117678, 0.3567915719588341, 0.36569247117759895, 0.3748607578794806, 0.3843014749637348, 0.39398669770433264, 0.4038589652371054, 0.41383781068425524, 0.4238281839037778, 0.43372949862029314, 0.44344421972329645, 0.4528852191661112, 0.4619814596494126, 0.47068184266918595, 0.47895725330554845, 0.48680095169612647, 0.49422752008325954, 0.5012705981479462, 0.5079796479978699, 0.5144159967513792, 0.5206484147293089, 0.5267484997776163, 0.5327861473323291, 0.5388253833044018, 0.5449208150194444, 0.551114909865395 ], [ 0.33558565048312067, 0.31614664535196435, 0.29740911353166843, 0.27971216032045426, 0.26345980237170075, 0.2491146045363595, 0.23716705170341343, 0.22807264015834963, 0.22216229521023612, 0.21955333078842604, 0.2201019109195806, 0.22342481724467564, 0.22898191115884567, 0.23618104250469305, 0.24446667984508139, 0.25337393903117866, 0.26254974154635585, 0.27175191570064144, 0.28083701715963116, 0.28974397298776433, 0.2984770586819611, 0.30708945483118577, 0.3156675247389925, 0.3243155445991836, 0.333140712363313, 0.342238791116965, 0.35168143943170754, 0.36150670114623856, 0.3717139577389754, 0.38226392377783724, 0.39308331505535465, 0.4040730231456385, 0.4151182269437923, 0.42609888859671363, 0.436899393654885, 0.44741653040616786, 0.4575654199932491, 0.46728332960584856, 0.47653150632468033, 0.4852952756759613, 0.49358268756204965, 0.5014219937031192, 0.5088582285414511, 0.5159491539747506, 0.5227608229940444, 0.5293630172596372, 0.5358248133315021, 0.5422105241597632, 0.548576239567578, 0.5549671476974624 ], [ 0.33207875625262295, 0.3120489100132728, 0.29261724765006214, 0.27411346105778106, 0.25693857434910206, 0.24156396953357046, 0.22850647818298434, 0.21826821721362727, 0.21124227106853857, 0.20760957319182746, 0.20727318389440294, 0.2098683358458535, 0.21484625316823522, 0.2215901612552609, 0.22951626780746087, 0.23813574990063063, 0.2470789493323915, 0.2560946288169785, 0.2650369941220206, 0.27384844380769197, 0.28254162306803765, 0.2911818824285837, 0.2998701940965568, 0.3087262008566, 0.31787120325692575, 0.32741159107780576, 0.3374241655569354, 0.3479453292999183, 0.3589658075668361, 0.37043151666922625, 0.3822499210043638, 0.39430025139463426, 0.4064455675524633, 0.41854480483602935, 0.4304634351106342, 0.4420819522688284, 0.45330189580560576, 0.4640494773727798, 0.47427707429764, 0.4839629361732032, 0.49310946007411255, 0.5017403644708572, 0.5098970574228707, 0.517634465379476, 0.5250165698116135, 0.5321118882578371, 0.5389891285571345, 0.5457132328828457, 0.5523420051932565, 0.5589234779381733 ], [ 0.3292441387366859, 0.3086937668461233, 0.28864799318191964, 0.2694249711852407, 0.25141703665912657, 0.23509418981864166, 0.22098541729096408, 0.2096243143836933, 0.20145544944945948, 0.19672230204330388, 0.1953843011742757, 0.19711082780631223, 0.20136023429673514, 0.2075030057404726, 0.2149342510072916, 0.2231445401114654, 0.2317484463076961, 0.24048516449681706, 0.24920572666640212, 0.2578555358641351, 0.2664557610558849, 0.2750845937830878, 0.2838585012432697, 0.29291322462830716, 0.3023843503362581, 0.3123881593861699, 0.32300471251832746, 0.33426577621418, 0.3461496429192336, 0.3585833973948832, 0.37145151180973185, 0.3846085281628863, 0.39789328699051996, 0.41114254160655833, 0.4242025155671255, 0.43693770087189376, 0.44923677089851255, 0.46101584202425366, 0.4722194898506475, 0.4828199692003024, 0.49281505950583776, 0.502224901954426, 0.5110881381931456, 0.5194576152796825, 0.5273958910240784, 0.534970755030917, 0.5422509675273857, 0.5493024033949432, 0.5561847665471455, 0.5629490061149273 ], [ 0.3270672740755, 0.3060710082788321, 0.2854986785800802, 0.26565606508017114, 0.2469223678531348, 0.22975656791167814, 0.2146845091591665, 0.20225251621053986, 0.192940203678561, 0.1870468489370124, 0.18459515471657528, 0.18530609846414992, 0.18866539866842755, 0.1940472483821672, 0.20083584393046758, 0.20850574194161098, 0.2166566050869208, 0.22501706878385874, 0.2334336656841481, 0.24185409564734983, 0.25030823079196324, 0.25888790019305946, 0.26772599294794214, 0.2769749133347102, 0.2867842790553404, 0.29727881218011526, 0.30853902960050594, 0.32058809695412854, 0.3333872753368417, 0.34684027554906616, 0.3608047139948683, 0.37510764999007745, 0.3895620944622283, 0.4039820821879749, 0.41819489005271554, 0.43204987693562147, 0.4454240410394712, 0.45822472652059115, 0.47039003227792126, 0.4818874668360184, 0.49271132364148, 0.5028791659830917, 0.5124277344392026, 0.521408531872866, 0.5298833020916024, 0.5379195939142081, 0.5455865858381127, 0.5529513307532264, 0.5600755593180039, 0.5670131510479579 ], [ 0.32553953334012503, 0.30417481380230493, 0.2831682267711718, 0.2628134842337696, 0.24347368730995939, 0.22558861160419844, 0.20966621563391172, 0.19624525791135997, 0.18581960429792585, 0.17873149765026414, 0.17506902151272857, 0.17462135301161139, 0.17692479301431452, 0.1813780590650219, 0.18736806228699063, 0.19435964613614085, 0.20193877197771237, 0.20982224564453056, 0.2178504707226217, 0.22597271421516651, 0.23422795797508705, 0.24272270757869133, 0.2516072357015063, 0.2610508820957704, 0.27121638903762807, 0.28223450258589344, 0.2941822565906721, 0.3070691805590718, 0.32083414486782535, 0.3353526485768776, 0.3504517735240478, 0.3659288596340562, 0.38157024062170275, 0.3971675034669658, 0.4125300145860821, 0.42749346712144604, 0.44192481904225306, 0.4557242648304375, 0.46882493091777305, 0.4811909149667445, 0.49281417679379147, 0.5037106770283067, 0.5139160679102562, 0.5234811741223399, 0.5324674577192163, 0.540942633954519, 0.5489765868379238, 0.5566377176301032, 0.5639898406270535, 0.5710897150381958 ], [ 0.32465940015215744, 0.3030051704081728, 0.28165869387573617, 0.26090273938867636, 0.24108281881745194, 0.22261341879344554, 0.20597208573035566, 0.19167080195751424, 0.18019518824798086, 0.17191244394045377, 0.1669713696793956, 0.16524133221234663, 0.16633225382230407, 0.1696912956569188, 0.17472531638513605, 0.1808981335678596, 0.18778426166584675, 0.19508769818635, 0.20264124373201273, 0.2103953550857536, 0.21839901519309265, 0.2267747827986132, 0.2356912388096595, 0.24533443430607194, 0.2558783968580014, 0.26745623706395516, 0.28013626156524046, 0.2939082795402232, 0.30868288256989007, 0.32430260848239917, 0.34056094029980993, 0.35722419425896584, 0.3740522022024271, 0.39081531248143003, 0.4073067734640097, 0.42335062428149056, 0.4388057648779751, 0.45356704902485895, 0.46756420185440234, 0.4807592305557006, 0.49314284668528524, 0.5047302866943543, 0.5155568160788987, 0.5256731320398271, 0.5351408341393381, 0.5440281046348148, 0.552405722327512, 0.5603435191432528, 0.5679073720744094, 0.5751568013549732 ], [ 0.3244328292687777, 0.30256861027174164, 0.2809765374616483, 0.2599299784721406, 0.2397566241641041, 0.22084201673145265, 0.20362431069081896, 0.18857321129467247, 0.17614529135380613, 0.166711888489253, 0.16047031295233183, 0.1573734971625091, 0.15712314476964706, 0.15923899840780809, 0.16316807011708334, 0.1683849272482835, 0.17445705112746804, 0.18107598052648036, 0.1880664003578884, 0.19538048086699392, 0.2030788630825288, 0.21130190285121797, 0.22023721411970057, 0.2300865594547293, 0.24103217211946693, 0.2532044033835632, 0.26665626763634526, 0.28135097310568147, 0.297164892639666, 0.31390351135921424, 0.33132477777212294, 0.34916397047749026, 0.36715579047222136, 0.3850515087714521, 0.40263071018143387, 0.4197081854338268, 0.43613693856030716, 0.4518083183533003, 0.46665014717426073, 0.4806235316792669, 0.4937188616874106, 0.505951360034808, 0.5173564419618075, 0.5279850724078323, 0.5378992654479129, 0.5471678435365027, 0.5558625575619783, 0.5640546556124172, 0.5718119740865495, 0.5791966064650005 ], [ 0.32487280860260354, 0.3028782614456607, 0.28113350825849587, 0.2599040961607934, 0.23950059906254953, 0.22027838343112124, 0.20263152408751944, 0.18697761620798375, 0.17372829069536094, 0.16323877656280558, 0.15573641450701944, 0.1512499601457286, 0.14958100110653022, 0.15034144227508206, 0.15303933892202068, 0.15717496365864464, 0.16231662554584847, 0.16814656432131314, 0.17448297995785633, 0.18128189356226837, 0.1886182841172279, 0.19665234891464814, 0.20559102255992806, 0.2156497174196065, 0.2270143356732087, 0.23980587244743592, 0.2540544698388662, 0.26968966530529914, 0.2865483801617104, 0.3043963173037403, 0.32295557470148173, 0.34193189365426263, 0.36103740316043686, 0.3800072491331895, 0.3986102346350344, 0.41665445267285217, 0.4339891255367452, 0.45050376819758986, 0.4661255743529549, 0.48081569392744866, 0.494564877055186, 0.5073888136939765, 0.5193233963724508, 0.5304200671547843, 0.5407413689693971, 0.5503567971844151, 0.5593390323671529, 0.5677606237383258, 0.575691180729806, 0.5831951147332106 ], [ 0.32599817648248436, 0.30395312768545174, 0.2821468445433609, 0.26083840501186156, 0.2403225737525295, 0.22092545249395468, 0.20299666903038005, 0.1868983255344, 0.17298818774131994, 0.161589119538256, 0.15293719266660125, 0.14711889802264486, 0.14403024620169963, 0.1433844719345398, 0.14476769579971002, 0.14772246877862252, 0.1518299026023597, 0.15677042382542375, 0.16236089595537462, 0.16856570212565142, 0.17547802521049824, 0.18328009805696815, 0.19219782001506533, 0.20245702135649624, 0.21424139736809447, 0.227654982760122, 0.24269728275825525, 0.2592579425255088, 0.2771308803266646, 0.2960413268285671, 0.3156771228517634, 0.3357174381403351, 0.3558553098788905, 0.37581314150474904, 0.395351898275836, 0.41427535050462927, 0.4324307470043115, 0.4497070800683507, 0.4660318226975806, 0.4813667664717991, 0.4957033919333815, 0.509058062547701, 0.5214672383894678, 0.5329828450661392, 0.5436678965716739, 0.5535924491696462, 0.5628299502500773, 0.5714540362332547, 0.5795358233549803, 0.5871417223597823 ], [ 0.3278317322582164, 0.3058164710324678, 0.2840383409504458, 0.2627509463100775, 0.24223486912597272, 0.2227895036319894, 0.20472330617247644, 0.18834537957299122, 0.1739579852560189, 0.16184170073900891, 0.1522218174476762, 0.14521861878351341, 0.14080405053622008, 0.13878712482076136, 0.13883933526922237, 0.1405597351268685, 0.14355703868515945, 0.14752211998943524, 0.15228002691801978, 0.15781079028266629, 0.16423075827915776, 0.17174635757093765, 0.18060148646116744, 0.19102837978340653, 0.203202127067032, 0.21720243124361616, 0.23299169518618132, 0.25041568327722435, 0.2692243999207076, 0.28910434674269525, 0.3097125088227314, 0.330705505072816, 0.35176115298531324, 0.3725924113640184, 0.3929549803425803, 0.41265017469945064, 0.43152453380667544, 0.44946731617412206, 0.4664067105231759, 0.48230533782708157, 0.4971554292192855, 0.5109739336936251, 0.5237977232862904, 0.5356790091482315, 0.546681049223516, 0.5568742091342003, 0.5663324262616789, 0.5751301184082436, 0.5833395696803811, 0.5910288154672939 ], [ 0.3303977053587178, 0.30849323685649094, 0.286831985740227, 0.2656627077918882, 0.24525351129949277, 0.22588063820240545, 0.20781706692330817, 0.19132557761763908, 0.17665719568428345, 0.164047159105768, 0.15369610247692772, 0.1457346468314366, 0.14018438972878167, 0.13693054770372948, 0.13572386382744456, 0.13622657141482133, 0.1380886004555185, 0.141026198162499, 0.14488546410214465, 0.1496713033236265, 0.15552854905943017, 0.1626896681308401, 0.17141541815950118, 0.18194081665313439, 0.19442721804163565, 0.20892498061457207, 0.22535623412005937, 0.243522513795007, 0.26313224163250765, 0.28383725460417075, 0.30526834047174284, 0.32706393723736515, 0.3488902405001338, 0.370453441706209, 0.3915057900219477, 0.4118472462868857, 0.4313242012828526, 0.44982635646110763, 0.467282536514254, 0.4836559524364389, 0.49893925631165253, 0.5131496094700172, 0.5263239080628568, 0.5385142616139663, 0.5497837909134519, 0.5602027944698785, 0.5698453222682872, 0.5787861878949215, 0.5870984424861094, 0.59485132481082 ], [ 0.3337187283868938, 0.3120066419074365, 0.2905502099585575, 0.26959362741660886, 0.24939410366066594, 0.2302085619750924, 0.21228113964935705, 0.19583692010720047, 0.18108346076256426, 0.16821319329250642, 0.15739527320011285, 0.14875268073565312, 0.14233009839111224, 0.13806196843981314, 0.13576086869940257, 0.13514867860571753, 0.13592407289144018, 0.13784148094854332, 0.1407803937962445, 0.14477881042360935, 0.1500137762680963, 0.1567445782830314, 0.16524805613226826, 0.17576046860671957, 0.18842800819183317, 0.20327155816314327, 0.2201750316406804, 0.23889997832735116, 0.2591188304543946, 0.2804545740051568, 0.30251693608055036, 0.32493017134684626, 0.347351629272305, 0.369482430985313, 0.3910722248803889, 0.41191985725748254, 0.4318714002583987, 0.4508165746597962, 0.46868427711903327, 0.485437682234986, 0.5010692250112828, 0.5155956599645021, 0.5290533227266432, 0.5414936760319374, 0.5529791953665384, 0.5635796337502862, 0.573368695375854, 0.582421140747294, 0.5908103391948794, 0.598606276773265 ], [ 0.33781256802916493, 0.31637427490516595, 0.2952092296836613, 0.2745570394361972, 0.25466524702929505, 0.23577489793800374, 0.2181075129363182, 0.20185897372388387, 0.18720211424515731, 0.17429231993840394, 0.16326631501498842, 0.154228582868423, 0.14722593414646543, 0.14221645926911713, 0.1390533112744841, 0.1375070943095834, 0.13732490910433415, 0.13830559103524687, 0.1403687640246971, 0.14358847794149318, 0.1481731539293283, 0.15440694830098264, 0.16258202097246002, 0.1729372730390678, 0.1856076071380771, 0.20059076322928615, 0.21774066221035981, 0.2367878364838076, 0.25737714927271826, 0.27910967363945005, 0.30157914922066886, 0.32439892717633856, 0.3472193130096202, 0.36973706484969165, 0.3916991918375911, 0.412902918396605, 0.43319322385495934, 0.4524589462892339, 0.47062811549780675, 0.48766295059771136, 0.5035548025374523, 0.5183192198407346, 0.5319912504648733, 0.5446210516848176, 0.5562698548892695, 0.5670063171041225, 0.5769032816725002, 0.5860349637875285, 0.5944745704156659, 0.6022923572920618 ], [ 0.3426889558570674, 0.32160423559212215, 0.3008142916303459, 0.28055379643476797, 0.2610613429441568, 0.24256465888709924, 0.22526753510941097, 0.20934360890745055, 0.19493882231083023, 0.18217813461603238, 0.17116831067235638, 0.16199051789178068, 0.1546805631839613, 0.14920191097590393, 0.14543069356214872, 0.14317407254089357, 0.1422222267554394, 0.14241749386426347, 0.14371852180221853, 0.146230833166616, 0.15018694984934963, 0.15588941658271868, 0.16364317846546203, 0.17369258278407465, 0.18616921556051283, 0.2010594642814487, 0.21820071266642455, 0.23730534573434653, 0.25800133613895904, 0.27987566635551053, 0.30251115756738484, 0.3255130818611001, 0.348525891397123, 0.37124208268126674, 0.3934054576060861, 0.4148106778828387, 0.43530051351538657, 0.4547617525905786, 0.4731204152577612, 0.4903366891640465, 0.5063998527557262, 0.5213233543751649, 0.535140151995749, 0.5478983787920391, 0.5596573753109338, 0.5704841141075326, 0.5804500333575938, 0.5896282893658007, 0.5980914321543476, 0.6059095022638565 ], [ 0.3483468875215238, 0.3276918839966419, 0.30735570988692684, 0.28756742364224813, 0.26855678003780414, 0.25053965635689895, 0.23370529961879127, 0.2182099622536777, 0.2041786823753701, 0.19171191214856093, 0.1808902327626735, 0.17177078906368823, 0.16437238287405803, 0.15865413217539953, 0.15450452846761867, 0.15175837401808345, 0.1502427031310338, 0.14983831211465695, 0.15053614322044617, 0.15246314853750823, 0.1558638289641509, 0.1610482836383501, 0.16832818469774982, 0.1779541805929426, 0.1900625089268108, 0.2046415269712007, 0.22152772573914103, 0.2404302693562886, 0.2609724450179366, 0.2827359232394853, 0.3052981962297439, 0.32825952863491376, 0.3512598091619384, 0.3739874034679008, 0.3961823397856429, 0.41763576992349516, 0.4381871316882611, 0.45771999171398137, 0.4761572155280596, 0.4934558821901581, 0.5096022081953255, 0.5246066460271741, 0.5384992591721413, 0.5513254353263763, 0.5631419746423183, 0.5740135745303192, 0.5840097228713786, 0.5932020048289516, 0.601661822959827, 0.6094585248865098 ], [ 0.35477270747443707, 0.33461766916191094, 0.3148063897438611, 0.29556131847236117, 0.2771029092853559, 0.25963563350565394, 0.24333581411060248, 0.22834522072163957, 0.2147720602505309, 0.2026969408385562, 0.19217823444992205, 0.18325092883252522, 0.17591607926136293, 0.1701255481361543, 0.16577586622812188, 0.1627246875095664, 0.16083099048370242, 0.1600080390543334, 0.16027071335390444, 0.16175632440641446, 0.16470854464756304, 0.16943264557136128, 0.17623789885215213, 0.18537796427593886, 0.1969975209349935, 0.21109694311774196, 0.22752554689505186, 0.24600355469858495, 0.26616203539983385, 0.28758687681918194, 0.3098567487544736, 0.33257087337874497, 0.35536664875383883, 0.3779290887478618, 0.3999944016447665, 0.4213496922807954, 0.44183026381610585, 0.4613155391129723, 0.4797242772853743, 0.4970095211367383, 0.5131535510902565, 0.5281630168562688, 0.5420643511296438, 0.5548995272308674, 0.5667221961100868, 0.5775942216748048, 0.5875826230136446, 0.5967569250713348, 0.6051869138769407, 0.6129407874027991 ], [ 0.36193918106092327, 0.3423462980178297, 0.3231211713181028, 0.30447840065383164, 0.2866282467255221, 0.2697634708167394, 0.2540479620215078, 0.23961048601454488, 0.22654502035277352, 0.21491588280800053, 0.20476309951239588, 0.19610293164129644, 0.18892126649063565, 0.18316406148052927, 0.17873559695063038, 0.17551446552900177, 0.17338811700685158, 0.17229694433390244, 0.17227250724229498, 0.1734536661723279, 0.1760732588240823, 0.1804211160909847, 0.18679434413847487, 0.19544290664547753, 0.20651825698720244, 0.22003680044052437, 0.23586926850675952, 0.25375785929411665, 0.2733523618080296, 0.29425227060356834, 0.3160446162151114, 0.33833257194255867, 0.36075420641593214, 0.38299296011717743, 0.40478202844927424, 0.42590463192550604, 0.4461916971319377, 0.4655180239048088, 0.48379766075305974, 0.5009789581309732, 0.5170395979803587, 0.5319817852176414, 0.5458277139359892, 0.5586153745890117, 0.5703947390927128, 0.5812243423980074, 0.591168267448369, 0.6002935327155479, 0.6086678758180418, 0.6163579218791192 ], [ 0.3698056097180138, 0.35082726327931324, 0.33223793616975034, 0.3142430150253781, 0.2970414611491878, 0.28081363393957454, 0.2657108737347468, 0.2518496257495487, 0.23931136438266318, 0.22814696299824047, 0.21838185051192902, 0.21001783564085902, 0.20302992689039795, 0.19736160398944247, 0.19292651581568848, 0.18962364207312546, 0.18736629390931306, 0.1861176756963409, 0.18592075480868692, 0.18691037003410332, 0.1893024735537701, 0.1933643380946969, 0.19937284557052729, 0.20756653985106094, 0.21809816130605877, 0.23099847004791535, 0.2461621993902317, 0.26335952393685835, 0.2822667437712168, 0.30250491693978737, 0.3236764446730462, 0.34539401154020616, 0.367300417093367, 0.38908028159468483, 0.4104655093869086, 0.43123639695296595, 0.45121991954995405, 0.47028631919795577, 0.48834476740939614, 0.5053386151248889, 0.5212405600639761, 0.5360479391231108, 0.549778272912136, 0.5624651374374657, 0.5741544046586193, 0.5849008725261433, 0.5947652916474637, 0.6038117868843697, 0.6121056659401605, 0.6197116020507771 ], [ 0.37831890480676406, 0.3599965423160572, 0.3420801230681981, 0.32476448278351777, 0.3082361917527343, 0.2926624675048261, 0.2781818362183786, 0.26489883323451485, 0.2528837807539064, 0.24217659536164515, 0.2327917377383285, 0.22472109635389736, 0.21793361454090562, 0.2123743015839827, 0.20796829451889884, 0.20463477026229734, 0.20231069529423612, 0.20097868890884837, 0.20068968131704643, 0.2015716781398405, 0.20382109731326395, 0.20767901899218716, 0.21339677591680012, 0.22119481975907684, 0.23122042519864613, 0.2435135477750647, 0.2579907156620414, 0.2744512484206014, 0.2926018870232614, 0.31209074044095647, 0.332541419512007, 0.35358146109563, 0.37486281307962577, 0.3960746666452601, 0.4169500832053415, 0.4372681018645318, 0.45685280669574757, 0.47557049266385676, 0.4933257440231868, 0.5100569799314842, 0.5257318329725407, 0.5403425950333346, 0.5539018765914433, 0.5664385671209624, 0.5779941463455741, 0.588619371560915, 0.5983713504352235, 0.6073109983144093, 0.6155008719142803, 0.6230033659523659 ], [ 0.38741542917315097, 0.36977914740870893, 0.352560148163367, 0.33594154684984273, 0.32009663589440107, 0.305178954122636, 0.29131410609309394, 0.27859519151120904, 0.26708266647959966, 0.25680780930439734, 0.24777754283680162, 0.23997816667795518, 0.23337712250353673, 0.22792466244623893, 0.2235592810180077, 0.22022004904375952, 0.21786557406986387, 0.21649522211580272, 0.2161657824279315, 0.21699747678965503, 0.21916683797216518, 0.22288775077241973, 0.22838330506884597, 0.23585118629589374, 0.24542709523931117, 0.25715389054899096, 0.27096495794784226, 0.28668634084396355, 0.3040556105044933, 0.3227505882951367, 0.34242007913820594, 0.3627108607949116, 0.3832881709759864, 0.4038493176385528, 0.4241313536352534, 0.443914208575449, 0.46302062906047214, 0.4813140354321393, 0.49869512437717145, 0.515097803594997, 0.5304848567545937, 0.5448436008660635, 0.5581817034851291, 0.5705232629336668, 0.5819052119043683, 0.592374076599919, 0.6019831050322382, 0.610789765845002, 0.6188536106752796, 0.6262344870771809 ], [ 0.3970233563193921, 0.3800921602474408, 0.36358321173620406, 0.34766701512967485, 0.33250302687396177, 0.31823091452593566, 0.3049635664500066, 0.29278334127857053, 0.28174218208977203, 0.2718649279036262, 0.26315408204849144, 0.2555941769703721, 0.249155038101914, 0.24379515959095746, 0.2394677002066213, 0.23613105122745168, 0.23376356643216017, 0.23237923173180078, 0.23203945449326244, 0.23285678695550602, 0.23498883417148872, 0.23862296695009752, 0.24395337416433485, 0.2511523667530356, 0.26033950755685603, 0.2715547330923256, 0.28474247622237236, 0.29975107310709903, 0.3163467322476, 0.33423712035105846, 0.35309817963610923, 0.37259892751255547, 0.3924212545840884, 0.4122738262497234, 0.4319005339124535, 0.45108454525418146, 0.46964911502791096, 0.4874561840480617, 0.504403578288595, 0.5204214068875213, 0.5354680805162854, 0.5495262363497578, 0.5625987579376907, 0.5747050096397471, 0.5858773582251029, 0.5961580224367724, 0.6055962699940778, 0.6142459671815061, 0.6221634764042605, 0.6294058902110116 ], [ 0.4070652847335471, 0.3908479050380223, 0.37505105473448547, 0.35983207882855883, 0.34533642128243786, 0.3316900724541013, 0.31899375597893515, 0.30732002932408636, 0.29671375321980875, 0.2871953788542613, 0.2787656990133107, 0.27141062953797346, 0.26510541371044455, 0.259818940802626, 0.255519710787485, 0.25218458035902186, 0.24980984565825126, 0.2484223618154515, 0.24808740560430492, 0.2489104809782464, 0.2510318428268194, 0.2546139757605193, 0.2598228983109835, 0.2668046593265388, 0.2756598341293943, 0.28642084986582067, 0.29903772725744904, 0.3133759927348611, 0.329226817450568, 0.34632598386273467, 0.36437670044149273, 0.38307173887637225, 0.4021119579035205, 0.421219988141419, 0.4401491049225619, 0.45868799338123944, 0.47666234165364657, 0.493934168401035, 0.5103996458099653, 0.5259860066542454, 0.540647966305486, 0.5543639626214114, 0.567132419532144, 0.5789681694635781, 0.5898991196948417, 0.5999632129680266, 0.6092057087688151, 0.6176767953320857, 0.6254295311537431, 0.6325181068843134 ], [ 0.41746086968860385, 0.401956979646845, 0.38686535269408934, 0.3723299857949742, 0.3584825087762674, 0.34543578682298537, 0.3332792319216825, 0.32207673474612775, 0.3118675312756663, 0.3026695366991657, 0.2944840776047429, 0.2873008884016106, 0.2811028031439953, 0.2758704421030181, 0.2715877426193869, 0.26824892807057216, 0.2658664994017495, 0.26447866826981087, 0.2641540679000976, 0.2649919378514936, 0.2671169629942507, 0.2706688260902845, 0.27578697240922934, 0.2825915800924504, 0.2911629076589377, 0.3015227222821476, 0.3136221406868395, 0.3273389986001834, 0.3424852000654135, 0.35882179200760156, 0.37607801231725174, 0.3939705826380437, 0.4122205546185347, 0.43056633770887065, 0.44877262691718955, 0.4666356276885122, 0.4839852814876006, 0.5006852517867636, 0.5166313537066819, 0.5317489834974537, 0.5459899725575463, 0.5593291757284907, 0.5717610115446087, 0.5832961022081786, 0.5939581097788558, 0.6037808283153636, 0.6128055657682941, 0.6210788312612292, 0.6286503306876102, 0.6355712645857261 ], [ 0.4281292827531636, 0.41333094744291565, 0.3989305624387036, 0.3850589263433958, 0.3718343804455741, 0.3593575052464828, 0.34770747367182153, 0.3369407566214196, 0.3270923812861612, 0.3181793339912952, 0.31020524332441024, 0.3031654155542326, 0.2970516669725991, 0.2918569717250776, 0.2875803126024239, 0.284231983962146, 0.281838993913359, 0.2804495296515258, 0.28013514157329705, 0.2809895601392567, 0.283123654451587, 0.28665654933298684, 0.2917032080259276, 0.2983592110885925, 0.30668437567801093, 0.31668799094956235, 0.32831894101945397, 0.34146319169538963, 0.35594923594609557, 0.3715600461885073, 0.3880487824371871, 0.40515529414957346, 0.42262107933099097, 0.4402013307380147, 0.4576735944068228, 0.47484319221878785, 0.4915458975929345, 0.5076484700943094, 0.5230476371010138, 0.5376680283758747, 0.5514594672933621, 0.5643939246178649, 0.5764623573779463, 0.5876715890304508, 0.5980413365217295, 0.607601452386304, 0.6163894228102188, 0.6244481430605807, 0.6318239777508814, 0.6385651034636174 ], [ 0.4389913666857187, 0.42488457461180196, 0.41115614475718687, 0.39792411841626596, 0.38529433175903244, 0.37335612418206027, 0.36217963050998475, 0.3518151777887034, 0.34229489681702197, 0.3336361814276182, 0.3258462763829645, 0.3189272070856024, 0.3128805003120954, 0.30771152284813896, 0.30343352348970837, 0.3000714184918883, 0.29766504324177556, 0.2962712387087574, 0.29596401556184915, 0.296832229799269, 0.29897455207917634, 0.30249178378173186, 0.3074767416949954, 0.3140022498296996, 0.32210844719935233, 0.3317914334259769, 0.3429956528795702, 0.355611908822845, 0.3694815977387969, 0.3844062505001562, 0.40016040638466205, 0.41650553588403133, 0.43320306947865245, 0.45002526481241373, 0.46676334490912696, 0.4832328826489032, 0.49927673959157504, 0.5147660186513754, 0.5295995171981516, 0.5437021243799737, 0.5570225335824414, 0.5695305622299446, 0.5812142990745132, 0.5920772386699923, 0.6021355146772114, 0.6114153067853562, 0.6199504684396007, 0.6277804022408703, 0.6349481950632657, 0.6414990141775532 ], [ 0.449971409590716, 0.43653756725761644, 0.4234581651918257, 0.41083915932523224, 0.39877484600198965, 0.38734448591701764, 0.37661042194326133, 0.3666180714257424, 0.35739783245791745, 0.3489685656967921, 0.3413420351411714, 0.33452761925852065, 0.32853674631037233, 0.32338675740034006, 0.31910409394432016, 0.31572673132413337, 0.3133056579954743, 0.31190506522820144, 0.3116009082424294, 0.31247765087188456, 0.3146232027004921, 0.31812217618900956, 0.3230476584426631, 0.32945189162635763, 0.33735671431025865, 0.34674518066821775, 0.35755605744224517, 0.3696825843285224, 0.3829760050638391, 0.39725330296821915, 0.41230774877876164, 0.4279205431423861, 0.4438719944746446, 0.45995112412507466, 0.47596311568349225, 0.49173447155266914, 0.507116044079485, 0.5219842723767277, 0.5362410126643296, 0.5498123387688171, 0.5626466429106705, 0.5747123073749388, 0.5859951582007987, 0.5964958591216858, 0.6062273599847249, 0.6152124788430874, 0.6234816698394927, 0.631071008502651, 0.6380204107785881, 0.6443720908005535 ], [ 0.4609985103907386, 0.4482158148706606, 0.4357603256801485, 0.42372675227199763, 0.41219892619353055, 0.40124723707114845, 0.3909274597997412, 0.3812812421763685, 0.37233823781699144, 0.36411956589312183, 0.3566420544237181, 0.3499226492729626, 0.34398245169215513, 0.3388500153410332, 0.3345636891742999, 0.33117286894739995, 0.32873802793527956, 0.3273294077724839, 0.32702432596101666, 0.32790318716825795, 0.33004439141403386, 0.3335183520419503, 0.3383808189764859, 0.34466579021737365, 0.35237857573284703, 0.36148995168319675, 0.3719325501447293, 0.38360044831236995, 0.3963523478779208, 0.4100179925528021, 0.4244068550895062, 0.4393178300241153, 0.4545487181747402, 0.46990457699441274, 0.4852043896508321, 0.5002858571467543, 0.5150083798710249, 0.529254454527148, 0.5429297850147475, 0.5559624174225916, 0.5683011846399425, 0.5799137041649605, 0.5907841259218222, 0.6009107823820616, 0.6103038543842791, 0.6189831338229607, 0.626975938632232, 0.6343152154356164, 0.6410378498892532, 0.6471831931573548 ], [ 0.4720075446555338, 0.45985218165844843, 0.4479945072048672, 0.4365189295632219, 0.4254999377118056, 0.41500024415027276, 0.4050702079766168, 0.395748719618781, 0.3870654901631488, 0.3790444413916161, 0.3717077071351005, 0.36507968202588376, 0.3591905953505355, 0.3540792051552052, 0.3497943420827641, 0.3463951446300305, 0.34394992020132886, 0.34253366896914306, 0.3422244348452513, 0.34309876835181424, 0.3452266384562379, 0.3486660856486969, 0.35345782298691303, 0.35961998178744814, 0.3671433375764268, 0.37598758101046587, 0.3860793468602603, 0.3973126231953653, 0.4095518074480998, 0.42263718238897147, 0.4363921442135484, 0.4506312711039563, 0.4651683127995483, 0.4798233566439559, 0.49442868926244377, 0.508833139319246, 0.5229049020072177, 0.5365329903469048, 0.5496275359550987, 0.5621191879546286, 0.5739578507084713, 0.5851109741284609, 0.5955615753524505, 0.6053061345524252, 0.6143524743852543, 0.622717703867595, 0.6304262836892818, 0.6375082509075491, 0.64399762599415, 0.6499310136495617 ], [ 0.48293976520315407, 0.4713869072896654, 0.4601009141678171, 0.44915689154836647, 0.43862110469109616, 0.42854972542656944, 0.4189887442648978, 0.40997516003508705, 0.4015393583001886, 0.39370838615198556, 0.3865096753770948, 0.3799746940888344, 0.37414202529596313, 0.36905945792328493, 0.36478479863642754, 0.3613852488023308, 0.3589353366981466, 0.3575135542588108, 0.35719800634806576, 0.35806149563476436, 0.36016648657504363, 0.36356030501367304, 0.36827079193366624, 0.3743025409873631, 0.38163387839235136, 0.39021486488749646, 0.3999667023179352, 0.4107828965036277, 0.42253232606886026, 0.4350640573396365, 0.44821344625352644, 0.46180888162475214, 0.4756784914390298, 0.48965623411286835, 0.5035869738155081, 0.5173303336493947, 0.5307632899668174, 0.5437815946250172, 0.5563001866610648, 0.5682527882629748, 0.5795908834955468, 0.590282263204836, 0.6003092948421305, 0.609667047896521, 0.6183613781075288, 0.6264070487521217, 0.6338259459562673, 0.6406454273191711, 0.6468968289034754, 0.6526141444005203 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "0_0", "1_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0" ], "type": "scatter", "x": [ 0.3495166003704071, 0.8901249477639794, 0.9341307515278459, 0.3981546014547348, 0.06442984566092491, 0.9731279211118817, 0.711693842895329, 0.1791477669030428, 0.8779646440472175, 0.14022108949578363, 0.09837225623964749, 0.11075198162139444, 0.10829836083976369, 0.10872853671537026, 0.10914581140006792, 0.12024785046452524, 0.08537573049631343, 0.17077557058138923, 0.21000401373768696, 0.24696115301702115, 0.2962356566033925, 0.36734076551444717, 0.43322577469363455, 0.41069337393545535, 0.4005874678848605, 0.38221464246998454, 0.3558818561433652, 0.331137795186129, 0.34695371010224874 ], "xaxis": "x", "y": [ 0.9523188471794128, 0.329069453291595, 0.20295190438628197, 0.4246944095939398, 0.3867763029411435, 0.15313099510967731, 0.1465086881071329, 0.5693084038794041, 0.4360744726366273, 0.6036733211181039, 0.4634080944818754, 0.5092513682109966, 0.5277565977477967, 0.4607432013198608, 0.5565129348904627, 0.5935678101617056, 0.6624495890680604, 0.5832755741016528, 0.6101906909591976, 0.62820829580725, 0.6436286584623306, 0.6586832477174029, 0.6693203368365506, 0.6700966880204665, 0.6919379811476656, 0.722567603621774, 0.7769128537385162, 0.8253338964468004, 0.8585465623085132 ], "yaxis": "y" }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "showlegend": false, "text": [ "0_0", "1_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0" ], "type": "scatter", "x": [ 0.3495166003704071, 0.8901249477639794, 0.9341307515278459, 0.3981546014547348, 0.06442984566092491, 0.9731279211118817, 0.711693842895329, 0.1791477669030428, 0.8779646440472175, 0.14022108949578363, 0.09837225623964749, 0.11075198162139444, 0.10829836083976369, 0.10872853671537026, 0.10914581140006792, 0.12024785046452524, 0.08537573049631343, 0.17077557058138923, 0.21000401373768696, 0.24696115301702115, 0.2962356566033925, 0.36734076551444717, 0.43322577469363455, 0.41069337393545535, 0.4005874678848605, 0.38221464246998454, 0.3558818561433652, 0.331137795186129, 0.34695371010224874 ], "xaxis": "x2", "y": [ 0.9523188471794128, 0.329069453291595, 0.20295190438628197, 0.4246944095939398, 0.3867763029411435, 0.15313099510967731, 0.1465086881071329, 0.5693084038794041, 0.4360744726366273, 0.6036733211181039, 0.4634080944818754, 0.5092513682109966, 0.5277565977477967, 0.4607432013198608, 0.5565129348904627, 0.5935678101617056, 0.6624495890680604, 0.5832755741016528, 0.6101906909591976, 0.62820829580725, 0.6436286584623306, 0.6586832477174029, 0.6693203368365506, 0.6700966880204665, 0.6919379811476656, 0.722567603621774, 0.7769128537385162, 0.8253338964468004, 0.8585465623085132 ], "yaxis": "y2" } ], "layout": { "annotations": [ { "font": { "size": 14 }, "showarrow": false, "text": "Mean", "x": 0.25, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 14 }, "showarrow": false, "text": "Standard Error", "x": 0.8, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" } ], "autosize": false, "height": 450, "hovermode": "closest", "legend": { "orientation": "h", "x": 0, "y": -0.25 }, "margin": { "b": 100, "l": 35, "pad": 0, "r": 35, "t": 35 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "width": 950, "xaxis": { "anchor": "y", "autorange": false, "domain": [ 0.05, 0.45 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "xaxis2": { "anchor": "y2", "autorange": false, "domain": [ 0.6, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "yaxis": { "anchor": "x", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x2" }, "type": "linear" }, "yaxis2": { "anchor": "x2", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "type": "linear" } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "render(plot_contour(model=model, param_x='x1', param_y='x2', metric_name='hartmann6'))" ] }, { "cell_type": "code", "execution_count": 8, "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": [ [ 1.2326512508349132, 1.2337488977675009, 1.2351039064790053, 1.236718235600503, 1.238593219620512, 1.2407295480939373, 1.2431272483455442, 1.245785671889315, 1.248703484735932, 1.2518786617082465, 1.255308484831365, 1.2589895458113314, 1.2629177525653144, 1.2670883397189796, 1.2714958829433556, 1.2761343169658244, 1.280996957057246, 1.2860765237711738, 1.291365170690285, 1.296854514920102, 1.3025356700602382, 1.3083992813777832, 1.3144355629057494, 1.3206343361911768, 1.326985070421193, 1.3334769236614172, 1.340098784947922, 1.3468393169819426, 1.353686999184898, 1.3606301708792967, 1.3676570743697996, 1.3747558977062477, 1.3819148169185604, 1.3891220375206041, 1.39636583508763, 1.4036345947190951, 1.4109168492062492, 1.4182013157315425, 1.4254769309356592, 1.4327328841968272, 1.4399586489778087, 1.4471440121069035, 1.45427910087244, 1.4613544078242413, 1.4683608131909756, 1.4752896048395472, 1.4821324957204365, 1.488881638762517, 1.495529639200703, 1.5020695643403235 ], [ 1.2256504603401124, 1.2267222939411742, 1.2280583230006583, 1.229660691309914, 1.2315308928569122, 1.2336697492965105, 1.236077391180687, 1.238753243195934, 1.2416960135984192, 1.2449036879780133, 1.2483735274211991, 1.2521020710827098, 1.256085143118295, 1.260317863877304, 1.2647946652058804, 1.2695093096697032, 1.2744549134703245, 1.2796239728009662, 1.2850083933668568, 1.2905995227800438, 1.2963881855299377, 1.3023647202269, 1.308519018816421, 1.3148405674651824, 1.321318488826668, 1.3279415854020156, 1.3346983837212052, 1.3415771790796231, 1.348566080575349, 1.355653056202559, 1.3628259777662999, 1.37007266539332, 1.3773809314224335, 1.3847386234667636, 1.3921336664480477, 1.399554103411634, 1.4069881349388595, 1.4144241569819656, 1.4218507969557306, 1.429256947929957, 1.4366318007772956, 1.4439648741434128, 1.4512460421191793, 1.4584655595097056, 1.4656140846107624, 1.4726826994208904, 1.4796629272360697, 1.4865467475937881, 1.4933266085538983, 1.4999954363249381 ], [ 1.2188724621475102, 1.2199168090645474, 1.2212320753491532, 1.2228205980879276, 1.224684038575221, 1.2268233579084358, 1.2292387966271867, 1.2319298586726657, 1.2348952998789715, 1.238133121139843, 1.241640566324273, 1.2454141249461659, 1.2494495395275376, 1.253741817534768, 1.2582852477137396, 1.2630734206038696, 1.268099252973294, 1.2733550158879658, 1.2788323661060161, 1.2845223804746908, 1.2904155929994876, 1.2965020342534623, 1.3027712727971914, 1.3092124582862756, 1.3158143659521568, 1.322565442152742, 1.3294538507013487, 1.3364675196944458, 1.3435941885713476, 1.3508214551508375, 1.3581368224012276, 1.3655277447113747, 1.3729816734402096, 1.38048610153231, 1.388028606996031, 1.395596895049914, 1.403178838751982, 1.4107625179358, 1.4183362562867052, 1.4258886564022002, 1.4334086326916662, 1.4408854419830626, 1.4483087117181745, 1.4556684656329806, 1.4629551468365318, 1.470159638219545, 1.477273280143444, 1.4842878853806907, 1.491195751298751, 1.4979896693014845 ], [ 1.212347609464866, 1.2133629721999548, 1.21465583638798, 1.2162287402555454, 1.218083520050692, 1.2202212836174762, 1.2226423883163977, 1.2253464236006057, 1.2283321984834217, 1.231597734054612, 1.2351402611227502, 1.238956222982744, 1.2430412832335935, 1.2473903385033618, 1.2519975358791349, 1.2568562947891648, 1.261959333044035, 1.2672986967127313, 1.2728657934882486, 1.2786514291841096, 1.2846458469978124, 1.2908387691775298, 1.2972194407339568, 1.3037766748487456, 1.310498899642255, 1.3173742059776699, 1.324390395992466, 1.331535032063327, 1.3387954859250157, 1.3461589876777833, 1.3536126744310948, 1.3611436383440334, 1.368738973834266, 1.3763858237384707, 1.3840714242173726, 1.3917831482087841, 1.3995085472415894, 1.4072353914338727, 1.4149517075087226, 1.4226458146723602, 1.4303063582111, 1.4379223406768833, 1.445483150545349, 1.45297858824626, 1.460398889483135, 1.4677347457775727, 1.4749773221934082, 1.4821182722168555, 1.4891497497903563, 1.4960644185199363 ], [ 1.2061071634206748, 1.20709225123256, 1.2083612462747915, 1.2099168953463952, 1.21176121704563, 1.2138954731683989, 1.2163201447722067, 1.2190349132536593, 1.2220386467022792, 1.225329391704044, 1.2289043706760128, 1.2327599847243556, 1.2368918219337706, 1.2412946709201935, 1.245962539412473, 1.2508886775737789, 1.2560656057300386, 1.2614851461409207, 1.2671384584278167, 1.2730160782616573, 1.279107958910293, 1.2854035152485055, 1.2918916698425094, 1.298560900733465, 1.3053992905595062, 1.3123945766725595, 1.319534201923668, 1.326805365807642, 1.3341950756750551, 1.3416901977353075, 1.3492775075898964, 1.356943740049011, 1.364675637997605, 1.372460000089461, 1.3802837270593573, 1.3881338664544904, 1.395997655597244, 1.403862562602354, 1.4117163252828282, 1.4195469877908677, 1.4273429348527178, 1.4350929234700889, 1.4427861119759857, 1.4504120863487968, 1.4579608837063809, 1.46542301292077, 1.4727894723144235, 1.480051764420147, 1.4872019078087027, 1.4942324460109082 ], [ 1.2001831372332812, 1.201136898362236, 1.20238075928219, 1.2039176822407307, 1.2057498752239726, 1.2078787610143251, 1.210304951249539, 1.213028225874281, 1.2160475182786399, 1.2193609063147972, 1.2229656092782304, 1.2268579908377777, 1.2310335678036313, 1.2354870245364953, 1.2402122327281848, 1.2452022762235377, 1.250449480507984, 1.255945446451885, 1.2616810878828895, 1.26764667254786, 1.2738318660255379, 1.280225778158141, 1.2868170115822726, 1.293593711955821, 1.3005436194961133, 1.307654121464691, 1.3149123052540292, 1.3223050117518822, 1.3298188886779592, 1.3374404436058427, 1.345156096400101, 1.3529522308143054, 1.3608152450103927, 1.3687316007734465, 1.3766878712089743, 1.3846707867221084, 1.3926672790903343, 1.4006645234531871, 1.4086499780551316, 1.4166114215901406, 1.4245369880105339, 1.4324151986769174, 1.4402349917417678, 1.4479857486762522, 1.4556573178679522, 1.4632400352365025, 1.4707247418350067, 1.4781027984264217, 1.485366097046308, 1.4925070695861613 ], [ 1.194608110032005, 1.1955297649631103, 1.1967474597574586, 1.198264378262426, 1.2000829244035647, 1.2022046887291273, 1.2046304203046816, 1.2073600043987471, 1.2103924462899451, 1.2137258614077908, 1.2173574718994087, 1.2212836095979835, 1.2254997252607207, 1.2300004038482406, 1.2347793855361688, 1.2398295920844895, 1.2451431581416996, 1.2507114670274995, 1.256525190518749, 1.262574332156436, 1.2688482735944309, 1.275335823521508, 1.282025268704341, 1.288904426719505, 1.2959606999644293, 1.3031811305611236, 1.3105524557891564, 1.318061163707511, 1.3256935486464685, 1.3334357662706882, 1.3412738879340993, 1.3491939540643174, 1.357182026330966, 1.3652242383674906, 1.373306844830479, 1.3814162685944467, 1.389539145893374, 1.3976623692339891, 1.4057731279189665, 1.4138589460325448, 1.4219077177554407, 1.4299077398914477, 1.437847741504685, 1.4457169105837129, 1.4535049176677834, 1.46120193639016, 1.4687986609141384, 1.4762863202595695, 1.4836566895394756, 1.4909020981493497 ], [ 1.1894150079191905, 1.1903040833079375, 1.1914948446459843, 1.1929907026107682, 1.1947942629840973, 1.196907290504248, 1.1993306784255566, 1.2020644242834202, 1.2051076122368258, 1.208458402225085, 1.212114026038552, 1.2160707902704542, 1.2203240859949054, 1.2248684049086576, 1.2296973615847775, 1.2348037214157557, 1.2401794337725254, 1.2458156698723069, 1.2517028648309172, 1.257830763371206, 1.2641884686658744, 1.2707644938082046, 1.2775468154242957, 1.2845229289650137, 1.2916799052417445, 1.2990044477967293, 1.3064829507252462, 1.3141015565921303, 1.3218462141091956, 1.329702735262601, 1.3376568516001985, 1.3456942694081784, 1.3538007235248082, 1.3619620295558612, 1.3701641342727429, 1.3783931639897207, 1.386635470731947, 1.3948776760209483, 1.4031067121190646, 1.4113098605900873, 1.4194747880486935, 1.4275895789880941, 1.4356427655924684, 1.4436233544590347, 1.4515208501738612, 1.4593252757055974, 1.467027189602497, 1.474617699999775, 1.4820884754665764, 1.4894317527442322 ], [ 1.1846368501428859, 1.1854932129155598, 1.1866565702480356, 1.1881305637322552, 1.1899180061162864, 1.192020842280798, 1.1944401162822107, 1.1971759450259825, 1.200227498989976, 1.2035929902643847, 1.2072696680177852, 1.2112538213487292, 1.2155407893443297, 1.2201249780472587, 1.2249998839340002, 1.2301581234310444, 1.2355914679418987, 1.2412908838243601, 1.247246576742131, 1.2534480398140746, 1.2598841049953036, 1.2665429971436675, 1.2734123902499574, 1.2804794653388925, 1.2877309695775123, 1.2951532761580242, 1.3027324445514963, 1.3104542807567112, 1.3183043971950896, 1.326268271927236, 1.3343313068895335, 1.3424788848709905, 1.3506964249704314, 1.358969436293488, 1.3672835696667542, 1.375624667164308, 1.3839788092588723, 1.3923323594264836, 1.400672006050839, 1.4089848014899276, 1.417258198185103, 1.4254800817103839, 1.4336388006778984, 1.4417231934346064, 1.4497226115048765, 1.4576269397542054, 1.465426613270285, 1.4731126309794476, 1.4806765660383328, 1.4881105730627204 ], [ 1.1803064587458236, 1.181130349750995, 1.1822661613316319, 1.1837177686780591, 1.1854881956113101, 1.187579572500147, 1.1899931005962343, 1.1927290234256442, 1.1957866057129205, 1.1991641201395178, 1.2028588420609396, 1.2068670521362335, 1.2111840466685064, 1.215804155321351, 1.2207207657672006, 1.2259263547417643, 1.2314125249214625, 1.2371700470078622, 1.2431889063891428, 1.2494583537515742, 1.255966959028894, 1.2627026681012463, 1.26965286168491, 1.2768044158866527, 1.2841437639306321, 1.2916569585990478, 1.2993297349606472, 1.3071475729916615, 1.315095759722856, 1.3231594505731061, 1.3313237295554001, 1.339573668064575, 1.3478943819787081, 1.3562710868272594, 1.3646891507997392, 1.3731341453886643, 1.3815918934797187, 1.3900485147214894, 1.3984904680258854, 1.4069045910691729, 1.4152781366825276, 1.4235988060399674, 1.4318547785710265, 1.440034738545026, 1.4481278982943337, 1.456124018064232, 1.4640134224984547, 1.4717870137905769, 1.4794362815530675, 1.4869533094770306 ], [ 1.1764561308483203, 1.177248197275318, 1.1783566814705382, 1.1797856932240098, 1.1815384703126726, 1.1836173331784736, 1.1860236463550455, 1.1887577873658464, 1.1918191236364069, 1.1952059977663738, 1.198915721306812, 1.2029445769957892, 1.2072878292315092, 1.21193974241286, 1.2168936066575444, 1.2221417703185988, 1.2276756786595433, 1.2334859180144069, 1.2395622647466427, 1.2458937383267654, 1.252468657867545, 1.259274701483791, 1.266298967878005, 1.2735280395902866, 1.2809480473889636, 1.2885447353156043, 1.296303525933809, 1.3042095853650528, 1.312247887725895, 1.3204032786103665, 1.3286605372890183, 1.3370044373217773, 1.3454198053069133, 1.3538915775123481, 1.362404854158488, 1.3709449511449874, 1.3794974490354883, 1.3880482391366589, 1.3965835665287998, 1.4050900699268645, 1.4135548182709596, 1.42196534396656, 1.4303096727148203, 1.4385763498940303, 1.4467544634739, 1.4548336634650836, 1.4628041779270111, 1.4706568255782457, 1.4783830250741459, 1.4859748010372125 ], [ 1.1731172739184348, 1.1738785995126408, 1.1749603646267341, 1.1763669126653236, 1.1781016967789955, 1.1801672311350955, 1.182565049227389, 1.185295670044503, 1.188358572718062, 1.1917521800514799, 1.1954738511067828, 1.199519882810699, 1.20388552034692, 1.2085649759348795, 1.2135514554626796, 1.2188371923430095, 1.2244134878953348, 1.2302707575210432, 1.2363985819263106, 1.2427857626557266, 1.249420381221958, 1.2562898611499982, 1.2633810322932022, 1.2706801968207466, 1.278173196318456, 1.2858454794865875, 1.2936821699572676, 1.301668133790918, 1.3097880462451963, 1.318026457441472, 1.3263678565840158, 1.3347967344153522, 1.3432976436190622, 1.3518552569078963, 1.360454422561707, 1.3690802172055518, 1.3777179956437362, 1.386353437590618, 1.394972591163281, 1.4035619130248576, 1.412108305090271, 1.4205991477286204, 1.4290223294180808, 1.4373662728306849, 1.445619957345174, 1.4537729380068423, 1.461815360973618, 1.469737975507896, 1.4775321425932195, 1.485189840274513 ], [ 1.170320006111459, 1.1710521380129533, 1.1721082096913946, 1.17349279488019, 1.1752095618008958, 1.1772612208766615, 1.1796494797106505, 1.182375006259192, 1.1854374009137048, 1.188835177964287, 1.1925657566697307, 1.1966254619188976, 1.2010095342506997, 1.2057121488139255, 1.2107264426989246, 1.216044549961439, 1.221657643585004, 1.2275559835859675, 1.2337289704519645, 1.2401652031133836, 1.2468525406734339, 1.2537781671600827, 1.2609286586081474, 1.2682900518275833, 1.2758479142625123, 1.2835874143914396, 1.2914933921628307, 1.2995504289995348, 1.3077429169428187, 1.3160551265402836, 1.3244712731146977, 1.3329755810815327, 1.341552346013519, 1.3501859941808612, 1.3588611393254915, 1.3675626364576983, 1.3762756324928764, 1.3849856135745195, 1.3936784489577068, 1.4023404313539352, 1.4109583136635504, 1.419519342046538, 1.428011285305443, 1.4364224605763845, 1.4447417553451807, 1.452958645826245, 1.4610632117611724, 1.469046147713755, 1.4768987709558967, 1.484613026057447 ], [ 1.1680927261724008, 1.168797697000273, 1.16982954210535, 1.1711930596585607, 1.1728921306722218, 1.1749296630336878, 1.1773075429339808, 1.1800265947452384, 1.183086550173054, 1.1864860272513755, 1.1902225194765068, 1.1942923951123579, 1.198690906456228, 1.2034122086438659, 1.20844938740108, 1.2137944950193078, 1.219438593743011, 1.2253718057053655, 1.2315833685296245, 1.2380616957224382, 1.2447944410144391, 1.2517685658476276, 1.2589704092616962, 1.2663857594871832, 1.273999926609174, 1.281797815717442, 1.289764000006796, 1.297882793334633, 1.3061383217817588, 1.314514593798691, 1.322995568553725, 1.3315652221329148, 1.340207611275286, 1.3489069343605302, 1.3576475894006497, 1.3664142288213053, 1.3751918108524723, 1.3839656473813147, 1.3927214481518853, 1.4014453612266975, 1.4101240096533596, 1.4187445243062016, 1.4272945728970254, 1.4357623851723458, 1.444136774335235, 1.452407154750193, 1.4605635560079433, 1.4685966334450502, 1.4764976752299497, 1.4842586061432885 ], [ 1.1664616606371956, 1.1671420042698426, 1.1681515499754442, 1.1694953115994315, 1.1711773784476296, 1.1732008555539108, 1.1755678113371684, 1.1782792338403463, 1.1813349965148976, 1.1847338342445732, 1.1884733300133854, 1.19254991233333, 1.1969588632752681, 1.2016943367042865, 1.2067493861175569, 1.2121160013237349, 1.2177851530893842, 1.2237468448095776, 1.229990170231505, 1.23650337626752, 1.2432739299680877, 1.2502885887787287, 1.2575334732691679, 1.2649941415904011, 1.2726556649809824, 1.2805027037038452, 1.2885195828478675, 1.2966903674744448, 1.3049989366301393, 1.3134290557834472, 1.3219644472792467, 1.330588858440263, 1.3392861269810656, 1.3480402434382177, 1.356835410359274, 1.3656560980330434, 1.3744870965828517, 1.3833135642833319, 1.3921210719977002, 1.400895643666936, 1.4096237928138882, 1.4182925550540857, 1.4268895166308753, 1.4354028390161149, 1.4438212796384005, 1.4521342088201303, 1.460331623022064, 1.468404154510001, 1.4763430775734079, 1.484140311439406 ], [ 1.165450400239854, 1.1661091596600874, 1.1670988064303691, 1.168424558248873, 1.170090705805387, 1.172100549239568, 1.1744563417994338, 1.1771592420481676, 1.1802092757519982, 1.1836053083149727, 1.1873450283258522, 1.191424942469174, 1.1958403817442544, 1.200585518649525, 1.205653394739009, 1.2110359577533862, 1.216724107376885, 1.222707748576487, 1.22897585143883, 1.235516516426883, 1.2423170440222686, 1.2493640077884418, 1.2566433299722632, 1.2641403588460134, 1.2718399470713322, 1.2797265304353818, 1.287784206367656, 1.295996811693112, 1.3043479991177882, 1.3128213119790633, 1.3214002568281438, 1.3300683734491014, 1.3388093019584009, 1.347606846671276, 1.3564450364664495, 1.3653081814270511, 1.374180925581789, 1.3830482956155041, 1.391895745460626, 1.4007091967200624, 1.4094750749073477, 1.4181803415210104, 1.4268125219974213, 1.435359729610116, 1.4438106854040211, 1.452154734271055, 1.4603818572890919, 1.4684826804603806, 1.4764484799980016, 1.4842711843202188 ], [ 1.1650794424958226, 1.165720168164874, 1.1666927953329127, 1.1680027306127687, 1.1696544566378866, 1.1716514647117393, 1.1739961942305375, 1.1766899804010027, 1.179733011598953, 1.1831242974691267, 1.1868616485664996, 1.1909416680008804, 1.1953597551909056, 1.200110121482216, 1.2051858170621836, 1.2105787683296068, 1.2162798246712307, 1.2222788134646034, 1.2285646020708951, 1.2351251655921327, 1.2419476592301784, 1.2490184941810625, 1.2563234161089631, 1.2638475853534807, 1.2715756581207522, 1.279491867987933, 1.2875801071113333, 1.2958240065739643, 1.3042070153442638, 1.3127124773498375, 1.3213237062022007, 1.3300240571464716, 1.3387969958516892, 1.3476261637061948, 1.3564954393348614, 1.365388996109644, 1.374291355479931, 1.3831874360018328, 1.3920625979950054, 1.400902683799915, 1.409694053647799, 1.4184236171889726, 1.4270788607539768, 1.4356478704452211, 1.444119351176913, 1.4524826417967203, 1.4607277264364749, 1.4688452422504417, 1.476826483709258, 1.4846634036264312 ], [ 1.1653657630630772, 1.1659925006734013, 1.1669514636118457, 1.1682482294746068, 1.1698874608585024, 1.1718728342364426, 1.174206974884195, 1.1768913995766153, 1.1799264686702369, 1.1833113489943943, 1.1870439886869528, 1.191121104743592, 1.195538183625663, 1.2002894948234455, 1.2053681168402024, 1.2107659746875625, 1.2164738876975414, 1.222481626277643, 1.228777976167381, 1.2353508087812253, 1.2421871563222395, 1.2492732904909398, 1.2565948037676997, 1.264136692390132, 1.2718834402650208, 1.2798191031416533, 1.287927392431959, 1.2961917580997444, 1.3045954700664433, 1.313121697603201, 1.3217535862061789, 1.330474331488019, 1.3392672496647804, 1.3481158442732686, 1.3570038688163575, 1.365915385099245, 1.3748348170855629, 1.383747000164613, 1.3926372257785335, 1.401491281408611, 1.410295485963684, 1.4190367206491137, 1.4277024554244286, 1.4362807711808276, 1.4447603777874687, 1.4531306281697947, 1.461381528593384, 1.4695037453354218, 1.4774886079319773, 1.4853281091948365 ], [ 1.166322443867792, 1.166939711117481, 1.1678888295873078, 1.1691755272724393, 1.1708046323308194, 1.1727799982285716, 1.1751044338669958, 1.1777796406363674, 1.1808061583641554, 1.1841833220177667, 1.1879092307648258, 1.1919807305874033, 1.1963934111198689, 1.201141616786418, 1.2062184717247972, 1.2116159174664152, 1.217324761955956, 1.223334738264328, 1.229634571279093, 1.2362120507227166, 1.2430541090097802, 1.2501469026644456, 1.2574758962338017, 1.265025947820054, 1.2727813954942955, 1.2807261439448483, 1.2888437507586148, 1.2971175117515297, 1.3055305447678356, 1.3140658713739861, 1.322706495890499, 1.3314354812394662, 1.34023602113759, 1.3490915082307082, 1.3579855978421436, 1.366902267087273, 1.3758258691863157, 1.3847411828815845, 1.3936334569326094, 1.4024884497195407, 1.4112924640331757, 1.4200323771677728, 1.428695666462337, 1.4372704304579809, 1.4457454058544157, 1.4541099804599174, 1.462354202335963, 1.4704687853424336, 1.478445111292051, 1.4862752289241885 ], [ 1.1679583896034824, 1.168571142892266, 1.1695146811144927, 1.1707948599764484, 1.1724166565994243, 1.1743840909436258, 1.1767001507589243, 1.179366722281066, 1.1823845290991843, 1.1857530816421262, 1.1894706395138228, 1.1935341884365331, 1.1979394328771855, 1.2026808046268556, 1.2077514867934669, 1.2131434519673807, 1.2188475128121032, 1.2248533830586712, 1.231149746835959, 1.237724334409354, 1.2445640026608689, 1.2516548189548842, 1.258982147331096, 1.2665307362051421, 1.2742848069160815, 1.282228142538671, 1.290344176394571, 1.298616079676022, 1.307026847564512, 1.3155593832072683, 1.3241965789187362, 1.3329213940084024, 1.3417169286976103, 1.3505664936705257, 1.3594536748997303, 1.36836239348679, 1.3772769603546402, 1.386182125717905, 1.3950631233344717, 1.4039057096062149, 1.4126961976483956, 1.4214214864865105, 1.4300690855680533, 1.4386271347962207, 1.4470844203051647, 1.455430386203439, 1.4636551425151676, 1.4717494695490083, 1.47970481892347, 1.4875133114746364 ], [ 1.1702781637789983, 1.170891757335387, 1.1718343975576, 1.173112043744099, 1.1747298034367475, 1.1766918500364834, 1.1790013420988597, 1.1816603468749336, 1.1846697711228742, 1.1880293024080977, 1.1917373639281628, 1.1957910853140383, 1.2001862909419576, 1.2049175061896034, 1.2099779809743603, 1.2153597289897822, 1.2210535804238583, 1.2270492456451143, 1.233335387358946, 1.2398996989980255, 1.246728987518966, 1.2538092592287402, 1.2611258076682137, 1.2686633028764185, 1.2764058815242794, 1.2843372374512143, 1.2924407120961625, 1.3006993842310128, 1.3090961583198535, 1.3176138507716584, 1.3262352733443719, 1.3349433129952768, 1.343721007551293, 1.352551616679635, 1.3614186877618675, 1.3703061163992911, 1.3791982013965045, 1.3880796941751101, 1.396935842659006, 1.405752429743703, 1.414515806517167, 1.423212920438668, 1.4318313387090937, 1.4403592670820495, 1.448785564373411, 1.4570997529291951, 1.4652920253098085, 1.4733532474442594, 1.481274958502145, 1.4890493677244099 ], [ 1.173281968275063, 1.1739021097702738, 1.1748489222353222, 1.1761284436131259, 1.1777458914832661, 1.1797055766269195, 1.1820108160738076, 1.184663848654208, 1.1876657568611648, 1.1910163992160225, 1.1947143571530614, 1.1987568996619062, 1.203139967673328, 1.2078581786909957, 1.2129048507351083, 1.2182720435055943, 1.223950613929807, 1.2299302829723928, 1.2361997107112985, 1.2427465771221575, 1.2495576666261778, 1.256618955095381, 1.2639156985468238, 1.2714325231120747, 1.2791535160169871, 1.2870623172789828, 1.295142211688289, 1.3033762204573591, 1.3117471917620385, 1.3202378892981272, 1.3288310779539552, 1.3375096057499334, 1.3462564813040234, 1.3550549462254822, 1.3638885419988251, 1.3727411710780089, 1.3815971520546317, 1.3904412688886925, 1.399258814290504, 1.4080356274198764, 1.416758126124798, 1.4254133339795754, 1.4339889024050898, 1.4424731281651502, 1.450854966535688, 1.4591240404398043, 1.4672706458347533, 1.475285753626824, 1.483161008379867, 1.4908887240718252 ], [ 1.1769657742846036, 1.1775984816821747, 1.1785548942624156, 1.1798411030814315, 1.1814624132531046, 1.183423253037006, 1.1857270799637152, 1.1883762876365394, 1.1913721180052679, 1.1947145844834166, 1.1984024110327707, 1.2024329912518257, 1.206802369805434, 1.2115052465975191, 1.216535002298351, 1.221883742463847, 1.2275423566641153, 1.2335005887930715, 1.2397471150056125, 1.2462696263990345, 1.253054914440253, 1.260088958030697, 1.2673570118084723, 1.2748436956979854, 1.2825330858109525, 1.290408806643834, 1.298454124216542, 1.3066520394717127, 1.314985380991586, 1.3234368959403273, 1.3319893381138297, 1.3406255520590815, 1.3493285523812597, 1.3580815975531468, 1.3668682577498403, 1.3756724764296417, 1.38447862555522, 1.393271554492414, 1.4020366327348472, 1.410759786683479, 1.4194275307652215, 1.4280269932087113, 1.4365459368120517, 1.4449727750423647, 1.4532965838025789, 1.46150710919117, 1.469594771567064, 1.477550666216782, 1.4853665609050777, 1.4930348905752808 ], [ 1.1813215879734256, 1.1819731512108955, 1.1829449206781644, 1.1842430140191114, 1.1858727983675041, 1.187838794392249, 1.19014457486844, 1.1927926622288672, 1.1957844310999453, 1.1991200225273815, 1.202798276149248, 1.206816685030134, 1.2111713756303428, 1.2158571129925864, 1.220867329145908, 1.2261941712046696, 1.2318285647664597, 1.237760287998931, 1.2439780522273662, 1.2504695857848298, 1.2572217191387054, 1.2642204705482962, 1.2714511324443651, 1.2788983591801928, 1.2865462567794468, 1.2943784749262173, 1.3023783009002312, 1.3105287546340048, 1.3188126836826153, 1.3272128567024648, 1.3357120540280933, 1.3442931540737564, 1.3529392145156565, 1.3616335474800203, 1.3703597882315102, 1.3791019571001122, 1.3878445145887712, 1.396572409764272, 1.4052711221519563, 1.4139266974361433, 1.4225257773187967, 1.4310556239158256, 1.4395041390797116, 1.4478598790334596, 1.4561120646892598, 1.4642505880077343, 1.4722660147342166, 1.4801495838273808, 1.4878932038750246, 1.495489446772415 ], [ 1.1863378060826661, 1.1870147535433322, 1.1880079369636787, 1.1893234718408536, 1.1909667572495615, 1.1929423742931027, 1.1952539767540038, 1.1979041794302463, 1.2008944515430828, 1.2042250232996983, 1.2078948128582505, 1.2119013787934314, 1.216240900356696, 1.2209081851000856, 1.22589670123225, 1.2311986305018159, 1.2368049364303118, 1.242705442410351, 1.2488889146774917, 1.2553431464485023, 1.262055041298108, 1.2690106956101248, 1.276195481195139, 1.2835941296528888, 1.2911908198082913, 1.2989692688155154, 1.3069128266278687, 1.3150045727422452, 1.3232274136031963, 1.3315641788342356, 1.3399977145128346, 1.348510971939565, 1.3570870906861008, 1.3657094750687113, 1.3743618635350097, 1.383028390743695, 1.3916936423502373, 1.400342702683827, 1.4089611956221235, 1.4175353190463926, 1.4260518733024425, 1.434498284109712, 1.4428626203602994, 1.451133607236326, 1.459300635053859, 1.4673537642168617, 1.4752837266382075, 1.4830819239584778, 1.4907404228679706, 1.498251947813751 ], [ 1.1919995947060718, 1.1927086588664337, 1.1937295785372355, 1.1950684342842122, 1.1967306205577704, 1.1987207382718545, 1.2010424777476734, 1.203698498714753, 1.206690316195754, 1.2100182015879735, 1.2136811068119988, 1.2176766165382926, 1.2220009302571408, 1.2266488732111351, 1.2316139331961546, 1.2368883186771114, 1.2424630323721038, 1.2483279537356833, 1.2544719241705946, 1.2608828305272834, 1.2675476850546032, 1.2744527025357297, 1.2815833770427685, 1.2889245611923812, 1.2964605501334683, 1.304175171216608, 1.3120518789086066, 1.3200738534076155, 1.3282241007627145, 1.3364855521079826, 1.3448411597832042, 1.3532739884926748, 1.3617673001261315, 1.3703046313378222, 1.3788698633982153, 1.3874472841709873, 1.3960216423230414, 1.4045781940541557, 1.4131027427488194, 1.42158167201955, 1.4300019726410953, 1.4383512638799167, 1.4466178097104399, 1.4547905303864181, 1.462859009806297, 1.470813499079243, 1.4786449166657407, 1.4863448454352985, 1.4939055269539405, 1.5013198532873897 ], [ 1.1982892200151456, 1.1990372914347183, 1.2000924823929626, 1.2014607998067786, 1.203147588860357, 1.2051574200200659, 1.2074939653779888, 1.2101598722844948, 1.213156644392904, 1.2164845402583333, 1.2201424973798947, 1.2241280860225212, 1.228437493805243, 1.2330655398134418, 1.238005715557636, 1.2432502484811159, 1.2487901815894646, 1.2546154610644202, 1.2607150238248057, 1.267076879443576, 1.2736881847642212, 1.2805353133401849, 1.2876039240711135, 1.2948790336644842, 1.3023450962213543, 1.3099860911719736, 1.3177856187735197, 1.325727000928943, 1.333793384354981, 1.3419678430342787, 1.3502334772349514, 1.3585735069575073, 1.3669713583084961, 1.3754107418921027, 1.3838757228032175, 1.392350782181271, 1.4008208705512464, 1.4092714533530901, 1.417688549165053, 1.4260587611775475, 1.4343693024889321, 1.442608015784797, 1.4507633879370927, 1.4588245600255354, 1.4667813332454582, 1.4746241711270511, 1.4823441984523646, 1.489933197220465, 1.4973835999775076, 1.5046884807987373 ], [ 1.2051862792510053, 1.2059803366010216, 1.2070764653704744, 1.2084805531050842, 1.2101978426663025, 1.2122328148343058, 1.2145890602292135, 1.2172691496444061, 1.2202745138059927, 1.223605342869395, 1.2272605128034588, 1.231237541781452, 1.2355325768156933, 1.240140409851264, 1.2450545220187912, 1.2502671527207312, 1.2557693864098516, 1.2615512464858958, 1.267601785443424, 1.273909164098549, 1.2804607186990078, 1.287243020145284, 1.294241932350595, 1.3014426765263032, 1.3088299058068662, 1.3163877915080329, 1.3241001195763669, 1.3319503940229904, 1.33992194341853, 1.3479980266358034, 1.356161934637703, 1.364397085925312, 1.3726871140819847, 1.3810159465575862, 1.389367874390739, 1.397727612965452, 1.4060803541640914, 1.4144118104399674, 1.4227082514174163, 1.4309565336595027, 1.439144124239771, 1.447259118729742, 1.4552902541755206, 1.4632269175934474, 1.4710591504677555, 1.4787776496880813, 1.4863737653210949, 1.4938394955703416, 1.5011674792421683, 1.5083509860030226 ], [ 1.2126678189917488, 1.213514827492872, 1.2146585766375868, 1.2161047823849536, 1.2178585254284127, 1.2199241314613687, 1.2223050418219055, 1.2250036843636611, 1.2280213557904132, 1.2313581251163066, 1.2350127639628987, 1.2389827053531632, 1.2432640309450995, 1.2478514874373323, 1.2527385333407035, 1.2579174142171416, 1.2633792579954162, 1.2691141762251854, 1.2751113566532413, 1.2813591382224623, 1.2878450683434897, 1.2945559496189312, 1.3014778863363512, 1.3085963398820168, 1.3158961984444006, 1.323361862030199, 1.3309773403617406, 1.3387263592540122, 1.3465924704983576, 1.3545591606952994, 1.3626099554106759, 1.3707285161082896, 1.378898728308001, 1.387104780225072, 1.3953312317408681, 1.403563073958146, 1.4117857798448803, 1.4199853466092376, 1.4281483305089966, 1.4362618748088212, 1.4443137315770258, 1.4522922779734004, 1.460186527630101, 1.467986137674713, 1.4756814118910202, 1.483263300462676, 1.4907233966970168, 1.4980539310836207, 1.5052477630030765, 1.5122983703674273 ], [ 1.2207083691018807, 1.2216151495260852, 1.222813073270911, 1.2243076283816565, 1.2261036703682149, 1.2282053029299327, 1.2306157509866156, 1.233337236006464, 1.2363708642725986, 1.239716536347257, 1.2433728816639302, 1.247337218746876, 1.2516055415700207, 1.2561725353039386, 1.2610316256949967, 1.2661750613609777, 1.271594018494698, 1.2772787093989697, 1.2832184762090397, 1.2894018596167103, 1.295816644291476, 1.3024498917892304, 1.3092879747845267, 1.3163166239646162, 1.3235209935199201, 1.330885745596326, 1.338395150033732, 1.3460331936991567, 1.353783693422486, 1.3616304073315937, 1.3695571406553242, 1.377547843387974, 1.3855866983519585, 1.3936581990709767, 1.4017472174763392, 1.409839061859906, 1.417919525712582, 1.4259749281976948, 1.4339921470436532, 1.441958644628774, 1.4498624879918283, 1.4576923634488965, 1.4654375864373728, 1.47308810714764, 1.4806345124442348, 1.4880680245233546, 1.4953804967032205, 1.5025644066986208, 1.5096128476903732, 1.51651951746515 ], [ 1.2292799456611592, 1.2302530261303493, 1.2315113922914538, 1.2330602476280912, 1.2349041610253961, 1.23704695098955, 1.239491564533513, 1.242239960147326, 1.2452930041515933, 1.2486503868834697, 1.252310561109075, 1.25627070285877, 1.2605266967173783, 1.2650731516711133, 1.2699034542242216, 1.2750098581763443, 1.2803835976912608, 1.2860150007792615, 1.2918935814173915, 1.2980080998923753, 1.304346595548805, 1.3108964063557071, 1.3176441921830535, 1.3245759746889183, 1.3316771998027017, 1.3389328222343124, 1.346327407043527, 1.3538452413998314, 1.3614704497028536, 1.3691871063968133, 1.3769793423868673, 1.384831442488044, 1.3927279325832282, 1.400653656076769, 1.4085938398356685, 1.4165341501763669, 1.4244607396506554, 1.432360285465921, 1.4402200203860425, 1.44802775692801, 1.4557719056161893, 1.4634414879919255, 1.4710261450092403, 1.4785161413809242, 1.485902366377057, 1.493176331520245, 1.500330165569293, 1.5073566071366444, 1.514248995243418, 1.5210012580797407 ], [ 1.2383520752555204, 1.2393975428835575, 1.2407221797086296, 1.2423308517702334, 1.2442277858676494, 1.246416459931201, 1.2488994903418178, 1.2516785244347624, 1.2547541457301028, 1.2581257966501997, 1.261791720359255, 1.2657489226741658, 1.269993158095596, 1.274518948175698, 1.27931963968791, 1.284387500646214, 1.289713837965476, 1.2952891111561255, 1.3011030191954371, 1.3071445512286264, 1.3134020078062842, 1.3198630097844564, 1.326514513644104, 1.3333428467596022, 1.340333768193917, 1.3474725534858316, 1.3547440974076084, 1.3621330269741099, 1.3696238173412894, 1.3772009046922937, 1.38484879199897, 1.3925521451933944, 1.4002958785816397, 1.4080652292469245, 1.4158458207752938, 1.423623716974437, 1.4313854664233108, 1.4391181387470897, 1.446809353503415, 1.4544473025199953, 1.4620207664596034, 1.469519126316672, 1.4769323704772903, 1.4842510979045493, 1.4914665179461768, 1.4985704472020904, 1.5055553038359335, 1.5124140996675735, 1.5191404303416063, 1.5257284638307198 ], [ 1.2478918728880575, 1.249015239925905, 1.2504114019319206, 1.2520848415271317, 1.2540393967333845, 1.256278159297757, 1.2588033718038187, 1.2616163303221009, 1.2647172984437922, 1.2681054363365816, 1.271778746616789, 1.275734039410604, 1.2799669223261096, 1.2844718240491528, 1.2892420577070365, 1.2942699197073222, 1.2995468060707336, 1.3050633205140407, 1.3108093528263065, 1.316774120255906, 1.3229461804339784, 1.3293134340327541, 1.3358631361706808, 1.342581929733682, 1.3494559055139566, 1.3564706869110184, 1.3636115325897573, 1.3708634490061717, 1.3782113052771352, 1.3856399444887508, 1.3931342874224386, 1.4006794263658224, 1.408260707976828, 1.415863805067791, 1.4234747777373473, 1.4310801245907783, 1.4386668249339225, 1.4462223728659616, 1.4537348041741343, 1.4611927168784404, 1.4685852862035627, 1.4759022746789734, 1.4831340379928553, 1.4902715271535611, 1.497306287446338, 1.5042304546129879, 1.5110367486285274, 1.5177184654014428, 1.524269466682636, 1.5306841684321204 ], [ 1.257864182306443, 1.2590702748678426, 1.2605425338260283, 1.2622850208649958, 1.2643011481656985, 1.266593585521832, 1.269164167561658, 1.2720138064168673, 1.2751424144068533, 1.278548839938078, 1.2822308191419074, 1.2861849469687654, 1.290406674074219, 1.2948903369714413, 1.2996292248594281, 1.3046156765016392, 1.309841189127844, 1.315296516046839, 1.3209717348700472, 1.326856281496962, 1.3329389590719716, 1.3392079393851504, 1.3456507744324382, 1.352254430127317, 1.3590053463149134, 1.3658895205156492, 1.3728926087800075, 1.38000003571406, 1.3871971063582633, 1.3944691142158827, 1.4018014415808127, 1.4091796499626639, 1.4165895596718303, 1.4240173184947487, 1.4314494599273841, 1.4388729517300651, 1.4462752356995063, 1.4536442595849273, 1.4609685020475003, 1.4682369915032452, 1.4754393196164126, 1.4825656501323625, 1.489606723663121, 1.4965538589664198, 1.5033989511931416, 1.510134467518277, 1.51675344051738, 1.5232494596035242, 1.5296166607988702, 1.535849715079177 ], [ 1.2682317730162054, 1.2695246444113466, 1.271076805750291, 1.2728918689032502, 1.2749727923961738, 1.2773217974449869, 1.2799402850657142, 1.2828287585124176, 1.2859867548490238, 1.289412788860196, 1.2931043125507513, 1.2970576946040033, 1.3012682255393933, 1.3057301537120978, 1.3104367525722922, 1.3153804111027814, 1.3205527310160234, 1.3259446114713338, 1.3315463074412917, 1.3373474590928327, 1.3433371009919144, 1.3495036665015598, 1.3558350026906325, 1.36231840604177, 1.3689406823942663, 1.3756882286234013, 1.382547129932642, 1.3895032654173398, 1.3965424151004555, 1.4036503631076098, 1.4108129933586786, 1.41801637569302, 1.425246841539283, 1.432491049067556, 1.4397360382788624, 1.4469692767732425, 1.4541786970676582, 1.461352726365784, 1.4684803096557753, 1.4755509269537268, 1.4825546054393608, 1.489481927153558, 1.4963240328527327, 1.5030726225439712, 1.5097199531600347, 1.516258833774587, 1.522682618705999, 1.528985198812, 1.5351609912375104, 1.54120492784309 ], [ 1.278955584406411, 1.2803384520077805, 1.281973494819079, 1.2838638542006147, 1.286012015778086, 1.288419734189644, 1.2910879597590748, 1.294016770623455, 1.297205313717175, 1.3006517578996009, 1.3043532627802619, 1.308305967416534, 1.3125050032163674, 1.3169445336613583, 1.321617818937592, 1.3265172971092494, 1.3316346680632993, 1.3369609655218797, 1.3424866073304333, 1.3482014230466441, 1.3540946665162827, 1.360155026012409, 1.366370644355062, 1.3727291573773337, 1.3792177535223853, 1.3858232524075422, 1.3925321970623346, 1.3993309534067222, 1.4062058109130469, 1.41314307961836, 1.4201291801409377, 1.4271507247325281, 1.4341945884923326, 1.441247970644612, 1.4482984462788189, 1.4553340092343527, 1.4623431069460573, 1.4693146681052545, 1.4762381239708806, 1.483103424113986, 1.4899010473117307, 1.4966220082344466, 1.5032578604974558, 1.5098006965811257, 1.5162431450596503, 1.5225783655224694, 1.5288000415215348, 1.5349023718331956, 1.5408800602845867, 1.5467283043608537 ], [ 1.289995008949174, 1.2914702127402395, 1.2931902515103744, 1.2951577830355463, 1.297374808820857, 1.2998426072835674, 1.3025616697219604, 1.3055316421320022, 1.3087512759981867, 1.312218391249291, 1.3159298547226697, 1.3198815775158246, 1.3240685339171698, 1.3284848024673768, 1.3331236259159314, 1.3379774823721586, 1.3430381568354917, 1.3482968025179076, 1.3537439854917739, 1.35936971272021, 1.3651634497216878, 1.3711141375778588, 1.3772102188204929, 1.3834396786802918, 1.3897901038925418, 1.3962487573319944, 1.402802664151007, 1.409438704040087, 1.4161437044227168, 1.4229045303372125, 1.4297081679813048, 1.4365418000766028, 1.4433928721820273, 1.4502491497985033, 1.457098766579783, 1.4639302642455885, 1.4707326249351602, 1.477495296789087, 1.4842082135381267, 1.490861808836006, 1.4974470260135102, 1.5039553238648782, 1.5103786790104152, 1.516709585314676, 1.522941050779964, 1.5290665922805562, 1.5350802284547638, 1.5409764710291438, 1.5467503148119721, 1.5523972265607717 ], [ 1.3013082081548897, 1.3028771891166937, 1.304683455349215, 1.3067291750608636, 1.3090158619275383, 1.3115443164346299, 1.3143145708670616, 1.3173258406588706, 1.3205764849246262, 1.3240639790300774, 1.3277849019747519, 1.33173494094552, 1.3359089143013259, 1.340300812189395, 1.344903851126293, 1.3497105360215347, 1.3547127215528543, 1.3599016655824108, 1.3652680705451314, 1.3708021133660837, 1.376493468714524, 1.3823313327476263, 1.3883044543453555, 1.3944011786490311, 1.4006095045726528, 1.4069171549805604, 1.4133116561490489, 1.4197804221884478, 1.4263108401366074, 1.4328903521057283, 1.43950653181799, 1.4461471538369177, 1.4528002546359846, 1.4594541852837808, 1.466097655965812, 1.4727197728386312, 1.479310067861331, 1.485858522311343, 1.4923555846956453, 1.4987921837382285, 1.5051597370747933, 1.5114501562273184, 1.5176558483701372, 1.523769715339634, 1.5297851502840802, 1.5356960322990025, 1.5414967193477958, 1.5471820397268308, 1.5527472822987929, 1.5581881856873376 ], [ 1.3128524551109981, 1.314515751609863, 1.3164085932789424, 1.3185326592557836, 1.3208889784757767, 1.3234778788536103, 1.326298940896035, 1.3293509581297047, 1.332631906788808, 1.3361389271273745, 1.3398683184241618, 1.343815549089802, 1.3479752821075903, 1.3523414143116619, 1.3569071259890257, 1.361664935584532, 1.3666067536416766, 1.3717239310445206, 1.3770072990580866, 1.3824472018500051, 1.3880335250126445, 1.393755725152535, 1.3996028654961092, 1.40556366094903, 1.4116265338272318, 1.41777967930158, 1.4240111380013125, 1.430308872416899, 1.436660843670395, 1.443055085663797, 1.4494797743245371, 1.455923290433568, 1.462374275213333, 1.4688216784055201, 1.4752547989684808, 1.4816633187869106, 1.488037329939475, 1.4943673561425173, 1.500644369004959, 1.506859799711893, 1.513005546715149, 1.5190739799599917, 1.5250579421233204, 1.5309507472853312, 1.5367461774055498, 1.5424384769271107, 1.5480223457903748, 1.5534929310993646, 1.5588458176508215, 1.5640770175070513 ], [ 1.3245844965778186, 1.3263417569366698, 1.328320653666142, 1.3305223830400685, 1.332947498174994, 1.335595865637361, 1.338466627107455, 1.341558168147867, 1.3448680960994863, 1.3483932289341376, 1.3521295964677043, 1.3560724546085836, 1.360216312247072, 1.3645549690582532, 1.3690815611418279, 1.373788610459048, 1.378668073867088, 1.3837113884216004, 1.3889095113802847, 1.3942529554930967, 1.3997318220291604, 1.4053358349989353, 1.4110543799507134, 1.4168765497099256, 1.4227911979100167, 1.4287869996232365, 1.4348525172114395, 1.4409762688617334, 1.4471467971412038, 1.4533527351751014, 1.4595828685551593, 1.4658261916665325, 1.472071957674991, 1.4783097218788834, 1.4845293784809908, 1.490721191078148, 1.496875817316764, 1.5029843282416047, 1.5090382228935613, 1.515029438705502, 1.520950358217718, 1.5267938125944862, 1.5325530823776352, 1.538221895866199, 1.543794425465493, 1.549265282306282, 1.5546295093956384, 1.5598825735261304, 1.5650203561389744, 1.5700391433098413 ], [ 1.3364609266536296, 1.338310936236119, 1.3403745283983306, 1.3426524275885894, 1.3451447247822184, 1.3478508409989218, 1.3507694963074346, 1.353898686029731, 1.3572356657531854, 1.360776946489434, 1.3645183008486996, 1.3684547804071583, 1.3725807435579256, 1.3768898921568393, 1.3813753143985503, 1.3860295308388164, 1.3908445405386818, 1.3958118650256304, 1.400922589012495, 1.4061673982558403, 1.4115366161567022, 1.4170202413683537, 1.4226079886358682, 1.4282893344396848, 1.4340535680051925, 1.4398898471809394, 1.4457872578328304, 1.4517348748905423, 1.4577218230344555, 1.4637373351614449, 1.4697708071092042, 1.4758118475443813, 1.4818503223467052, 1.4878763931952477, 1.4938805503598183, 1.4998536399158096, 1.5057868857420462, 1.5116719067425983, 1.5175007297688503, 1.5232657987220468, 1.5289599802982798, 1.534576566807583, 1.5401092764612496, 1.5455522514813, 1.550900054346365, 1.5561476624500912, 1.561290461412959, 1.566324237256774, 1.5712451676225454, 1.5760498121877227 ], [ 1.348438563374641, 1.3503792847057747, 1.3525254150287331, 1.354877221961297, 1.357434351761489, 1.3601957991707943, 1.3631598829864289, 1.3663242287613189, 1.3696857598717285, 1.3732406978906029, 1.3769845727472978, 1.3809122425516014, 1.3850179222586756, 1.389295219648105, 1.393737176525121, 1.3983363127781716, 1.4030846710584428, 1.4079738603997412, 1.4129950979626296, 1.418139249049614, 1.4233968663451089, 1.4287582297802313, 1.4342133884211166, 1.4397522053782699, 1.4453644060854063, 1.4510396295903785, 1.4567674819055523, 1.4625375900830497, 1.46833965554183, 1.474163505246421, 1.4799991395604857, 1.4858367758985243, 1.4916668876172439, 1.497480237879715, 1.50326790846721, 1.5090213236969536, 1.514732269730761, 1.5203929096376483, 1.525995794612478, 1.531533871763562, 1.5370004888723332, 1.5423893965060784, 1.5476947478349055, 1.5529110964707238, 1.5580333926120662, 1.563056977745259, 1.567977578121531, 1.5727912972008702, 1.5774946072282892, 1.582084340085181 ], [ 1.3604748193799436, 1.3625034439106825, 1.364729210367171, 1.3671519477173633, 1.369770877841871, 1.3725845910980679, 1.3755910276989716, 1.3787874660300277, 1.3821705188401554, 1.385736137941153, 1.389479627635617, 1.393395666590517, 1.3974783373304438, 1.4017211620187542, 1.4061171428224304, 1.4106588050078495, 1.4153382410459783, 1.4201471544094304, 1.4250769023385959, 1.430118537501626, 1.4352628490170074, 1.4405004036240496, 1.4458215878193434, 1.451216651551281, 1.456675753667385, 1.4621890088579308, 1.4677465354404486, 1.4733385030587907, 1.4789551792539302, 1.4845869738934119, 1.4902244805862346, 1.4958585144149903, 1.5014801455459337, 1.507080728496764, 1.5126519270312218, 1.5181857347990892, 1.5236744919484717, 1.529110898007491, 1.5344880213715395, 1.539799305746636, 1.5450385738959171, 1.5502000290209081, 1.5552782540860235, 1.560268209367913, 1.5651652284824058, 1.569965013113628, 1.5746636266427156, 1.5792574868484774, 1.583743357829642, 1.5881183412781403 ], [ 1.372528057980196, 1.3746410680043524, 1.3769428866395792, 1.3794329249435335, 1.3821100030450477, 1.3849723308451094, 1.3880174945027137, 1.391242449598563, 1.394643521674428, 1.398216414562821, 1.4019562265616063, 1.4058574740958312, 1.4099141220887292, 1.4141196198925154, 1.418466941371661, 1.422948627640011, 1.4275568310567373, 1.432283359369206, 1.4371197192982708, 1.4420571593024194, 1.447086711636287, 1.4521992340577123, 1.4573854515992755, 1.4626359987146718, 1.467941461887039, 1.473292422514931, 1.4786794996389399, 1.4840933918908068, 1.4895249179588612, 1.4949650548718656, 1.5004049734878881, 1.5058360707106342, 1.5112499981141168, 1.5166386868150408, 1.5219943685744655, 1.5273095932265173, 1.5325772426197637, 1.5377905413162223, 1.5429430643284672, 1.5480287421904206, 1.5530418636575938, 1.5579770763222092, 1.56282938541088, 1.5675941510109037, 1.5722670839476094, 1.576844240511211, 1.5813220162084223, 1.5856971386925007, 1.5899666600051756, 1.5941279482462107 ], [ 1.3845579266423969, 1.386751165643655, 1.389124841684498, 1.3916779707165037, 1.3944089955577301, 1.3973157711922732, 1.4003955557462144, 1.4036450078459901, 1.4070601908750042, 1.410636584388768, 1.4143691026406056, 1.4182521198334734, 1.422279501382506, 1.4264446401910622, 1.4307404967507558, 1.4351596418081816, 1.4396943004091365, 1.4443363963246216, 1.449077596140898, 1.4539093526035827, 1.4588229470801741, 1.4638095311978998, 1.4688601677975555, 1.4739658713205643, 1.4791176476421017, 1.4843065332171812, 1.4895236332612287, 1.494760158575311, 1.50000746056801, 1.5052570640262335, 1.510500697237646, 1.515730319154279, 1.5209381433926725, 1.5261166589758406, 1.5312586478238779, 1.5363571990861138, 1.5414057204745366, 1.546397946805373, 1.5513279459846534, 1.55619012268729, 1.5609792199807515, 1.5656903191370513, 1.5703188378630781, 1.5748605271619593, 1.579311467018723, 1.5836680610834062, 1.587927030505235, 1.5920854070526695, 1.596140525636974, 1.6000900163413339 ], [ 1.3965256610110226, 1.3987944104673469, 1.4012352157194667, 1.4038467220827267, 1.4066270209493845, 1.4095736392033114, 1.4126835341515875, 1.4159530945294632, 1.4193781479570655, 1.422953974999185, 1.4266753297173824, 1.4305364663255804, 1.4345311712945346, 1.4386528000266605, 1.4428943170691721, 1.447248338772253, 1.4517071773364771, 1.4562628853212467, 1.4609072998781025, 1.465632086192677, 1.4704287798275217, 1.475288827821604, 1.4802036285017532, 1.4851645699924716, 1.490163067386173, 1.4951905984766771, 1.5002387378900934, 1.5052991893896568, 1.5103638161004056, 1.5154246683996684, 1.5204740092507014, 1.5255043368106531, 1.5305084042117312, 1.5354792364872925, 1.5404101446827276, 1.5452947372508947, 1.5501269288794828, 1.5549009469311972, 1.5596113356997026, 1.5642529586939249, 1.5688209991645081, 1.573310959080195, 1.5777186567507127, 1.582040223278494, 1.5862720980054168, 1.5904110231040223, 1.5944540374458875, 1.5983984698639682, 1.6022419319110317, 1.6059823102025343 ], [ 1.4083943540196007, 1.410733414520494, 1.4132361688351818, 1.4159009174325268, 1.4187254272825018, 1.4217069249549423, 1.4248420950431342, 1.428127084349535, 1.4315575121068476, 1.4351284863079696, 1.4388346259934865, 1.4426700891131026, 1.4466286053577457, 1.450703513174035, 1.4548878000429895, 1.4591741450442597, 1.463554962740772, 1.4680224475008337, 1.4725686175091415, 1.477185357880759, 1.4818644624575041, 1.4865976740110562, 1.4913767226855537, 1.4961933625793746, 1.5010394063935508, 1.5059067580740297, 1.5107874433602382, 1.5156736381351703, 1.520557694464847, 1.5254321642197521, 1.530289820192356, 1.5351236746579557, 1.5399269953675954, 1.5446933190066883, 1.5494164621959803, 1.5540905301492425, 1.5587099231323864, 1.5632693408904395, 1.5677637852220285, 1.5721885608864758, 1.5765392750276572, 1.5808118352926241, 1.5850024468130768, 1.5891076082054412, 1.5931241067315218, 1.5970490127473944, 1.6008796735539965, 1.60461370674927, 1.6082489931689115, 1.6117836694913419 ], [ 1.4201291862510064, 1.422532960743084, 1.4250921152827982, 1.427804632278615, 1.4306679820864912, 1.433679119405697, 1.4368344847865697, 1.4401300115912172, 1.4435611385987328, 1.4471228282702269, 1.4508095904949285, 1.454615511441116, 1.4585342869496174, 1.4625592597502044, 1.4666834596669192, 1.4708996459175947, 1.4752003506098645, 1.4795779225876708, 1.4840245708781645, 1.4885324071139046, 1.4930934864416556, 1.497699846559942, 1.5023435446407576, 1.5070166919784962, 1.5117114862708434, 1.51642024147445, 1.5211354152005407, 1.5258496336282525, 1.530555713924139, 1.535246684168804, 1.5399158008082172, 1.5445565636689407, 1.5491627286006044, 1.5537283178342778, 1.5582476281695188, 1.5627152371232846, 1.5671260071900908, 1.5714750883733886, 1.5757579191535798, 1.5799702260583535, 1.5841080219972508, 1.5881676035149692, 1.592145547108323, 1.596038704740047, 1.599844198670796, 1.6035594157175446, 1.6071820010347408, 1.610709851502451, 1.6141411087947803, 1.6174741521919573 ], [ 1.4316976153226206, 1.4341601923952798, 1.4367699125409739, 1.4395244675715302, 1.442421059524734, 1.4454564000050885, 1.448626714409513, 1.451927751299857, 1.4553547970488483, 1.4589026957294222, 1.4625658740486884, 1.4663383709570332, 1.470213871402635, 1.4741857435649273, 1.4782470787980533, 1.4823907334553543, 1.4866093717527393, 1.4908955088606064, 1.495241553484694, 1.4996398492956544, 1.5040827146833557, 1.5085624804314572, 1.5130715250216837, 1.517602307376025, 1.5221473969265962, 1.5266995009658355, 1.531251489275864, 1.5357964160699709, 1.5403275393040343, 1.544838337435039, 1.5493225237206423, 1.5537740581687052, 1.5581871572593273, 1.5625563015747002, 1.5668762414821022, 1.5711420010235382, 1.575348880170089, 1.5794924556006862, 1.583568580163279, 1.5875733811715995, 1.5915032576838244, 1.5953548769001866, 1.59912516980614, 1.6028113261765353, 1.6064107890444939, 1.6099212487273027, 1.6133406364903378, 1.616667117919682, 1.6198990860643865, 1.6230351544005088 ], [ 1.4430695235797177, 1.4455847589093382, 1.4482390048931268, 1.451029690569014, 1.453953778118875, 1.4570077648287942, 1.4601876896969639, 1.4634891448855396, 1.4669072920895407, 1.470436883756728, 1.4740722889437774, 1.4778075234452714, 1.4816362836921557, 1.4855519837962055, 1.4895477950244163, 1.493616686930021, 1.4977514693480638, 1.5019448344824953, 1.5061893983663988, 1.510477741058557, 1.514802445040511, 1.5191561313886974, 1.5235314934067712, 1.52792132750698, 1.5323185612213261, 1.5367162783002557, 1.5411077409184717, 1.545486409055397, 1.5498459571532277, 1.5541802881816196, 1.5584835452559411, 1.5627501209687913, 1.5669746646023626, 1.57115208739358, 1.5752775660256644, 1.5793465445184185, 1.583354734686043, 1.5872981153256045, 1.591172930291647, 1.5949756856033432, 1.5987031457202379, 1.6023523291114485, 1.6059205032315966, 1.6094051790050532, 1.612804104908534, 1.6161152607310982, 1.619336851080025, 1.6224672986916358, 1.6255052375971277, 1.6284495061858966 ] ], "zauto": true, "zmax": 1.6284495061858966, "zmin": -1.6284495061858966 }, { "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.08378999335893934, 0.08304600668723273, 0.08237380989990495, 0.08177420031126477, 0.08124749203829203, 0.0807935051462265, 0.08041156457146294, 0.08010050919740333, 0.07985871104584757, 0.07968410412844275, 0.07957422211091632, 0.07952624360526754, 0.07953704364407282, 0.0796032497211186, 0.07972130070796059, 0.07988750697351998, 0.08009811013134864, 0.0803493410004306, 0.08063747457043775, 0.08095888099154004, 0.08131007184382562, 0.0816877411669916, 0.08208880093577305, 0.08251041084354296, 0.08295000240164614, 0.08340529747534797, 0.08387432146039939, 0.08435541136098557, 0.0848472190648538, 0.08534871012948785, 0.0858591583995765, 0.08637813677481279, 0.08690550444252815, 0.08744139088474036, 0.08798617696637522, 0.08854047341233924, 0.0891050969864993, 0.08968104469577622, 0.09026946635679363, 0.09087163587999894, 0.0914889216451388, 0.09212275636080314, 0.09277460681718187, 0.09344594395319523, 0.09413821366465842, 0.09485280877723347, 0.09559104259534346, 0.096354124414807, 0.09714313735269361, 0.09795901880284935 ], [ 0.08066723325779482, 0.07989169163038533, 0.07919249309993417, 0.07857063442412464, 0.07802657794523304, 0.07756023581313198, 0.07717096565868273, 0.07685757830337885, 0.07661835756499254, 0.07645109167833503, 0.07635311533813524, 0.07632136092784363, 0.07635241715626621, 0.07644259310345339, 0.07658798558578604, 0.07678454778152984, 0.07702815719595323, 0.07731468126503091, 0.0776400391715356, 0.07800025874874257, 0.078391527650821, 0.07881023825477908, 0.07925302601276817, 0.07971680118679081, 0.08019877406740222, 0.08069647390442285, 0.0812077618649921, 0.08173083838815698, 0.08226424533244982, 0.08280686332013344, 0.08335790467589846, 0.08391690234415199, 0.08448369515270152, 0.08505840977528906, 0.0856414397338752, 0.0862334217754983, 0.08683520995878043, 0.08744784779182677, 0.08807253877546117, 0.08871061572225801, 0.08936350924080032, 0.09003271579377264, 0.09071976575555558, 0.09142619190738752, 0.09215349881364461, 0.09290313351929906, 0.09367645799452572, 0.09447472372678405, 0.09529904882328594, 0.09615039793787464 ], [ 0.07754778738628025, 0.07673878368386597, 0.07601083641916394, 0.07536518066813847, 0.07480246141000052, 0.07432271134220035, 0.07392534210307132, 0.07360914979270163, 0.07337233501152281, 0.0732125369329356, 0.07312688025196287, 0.07311203326480857, 0.07316427488084193, 0.07327956807946966, 0.07345363720996691, 0.07368204658416756, 0.07396027800574508, 0.07428380518084127, 0.07464816332362888, 0.0750490126682996, 0.07548219499224298, 0.07594378261762444, 0.07643011967247229, 0.0769378556483304, 0.07746397148722098, 0.07800579856909737, 0.07856103105888963, 0.07912773211855459, 0.0797043345036079, 0.08028963605497569, 0.08088279057398409, 0.08148329453814686, 0.08209097008401674, 0.08270594465497373, 0.08332862768959598, 0.08395968471190735, 0.08460000917905874, 0.08525069244464371, 0.08591299220568038, 0.08658829981689435, 0.08727810687462625, 0.08798397149239862, 0.08870748470763604, 0.08945023747185116, 0.09021378868191093, 0.09099963470563699, 0.09180918083934451, 0.09264371510673107, 0.09350438476780504, 0.0943921758537177 ], [ 0.07444109902932784, 0.0735965695059211, 0.07283794851660749, 0.07216675469047414, 0.07158385646600963, 0.07108944159451083, 0.07068300232301875, 0.07036333758747403, 0.07012857269005335, 0.06997619601604678, 0.06990311145150493, 0.0699057043773756, 0.06997991850846977, 0.0701213404611172, 0.07032528878814613, 0.07058690430105376, 0.07090123877178084, 0.07126333951936, 0.07166832788363103, 0.07211147011463269, 0.07258823971636745, 0.07309437074280681, 0.07362590193106823, 0.07417921186154387, 0.07475104555739151, 0.07533853308303187, 0.0759392007841422, 0.07655097584329588, 0.07717218481925667, 0.07780154680648392, 0.07843816180544391, 0.07908149484281506, 0.07973135633032094, 0.0803878791067667, 0.08105149257298976, 0.08172289430557302, 0.08240301952263278, 0.08309300877328635, 0.08379417422980637, 0.08450796497593277, 0.08523593170350754, 0.08597969124959873, 0.08674089142431426, 0.0875211765924516, 0.0883221544771473, 0.08914536464829691, 0.08999224914091146, 0.09086412561774475, 0.09176216344627955, 0.09268736300327277 ], [ 0.0713571730512394, 0.0704748987198515, 0.06968349526248166, 0.06898481722743728, 0.06838000475321386, 0.0678694423309404, 0.06745273585266304, 0.06712870990865114, 0.06689542620514305, 0.0667502227697634, 0.06668977241797311, 0.06671015789369411, 0.06680696027389442, 0.06697535670873758, 0.06721022338068061, 0.06750623968948413, 0.0678579900532616, 0.06826006028388275, 0.06870712616675935, 0.0691940325734646, 0.06971586209781191, 0.07026799278743405, 0.07084614501780831, 0.07144641791521329, 0.07206531598337049, 0.07269976673830424, 0.0733471302248532, 0.07400520129537448, 0.07467220549520759, 0.07534678933650893, 0.0760280056660385, 0.07671529475389748, 0.07740846165675688, 0.07810765034628503, 0.07881331504409936, 0.07952618917008013, 0.0802472522911726, 0.08097769545149139, 0.0817188852695747, 0.08247232720217205, 0.08323962839267497, 0.08402246054274674, 0.08482252326413595, 0.08564150838069651, 0.08648106565512179, 0.08734277040812666, 0.08822809347809275, 0.08913837393536524, 0.090074794917574, 0.09103836289136383 ], [ 0.06830651402867277, 0.06738412762162539, 0.06655764777346848, 0.0658293251765398, 0.06520062840202867, 0.06467218883981614, 0.0642437668614315, 0.06391424207456006, 0.06368162915182864, 0.06354311913479244, 0.06349514451049128, 0.06353346491391025, 0.0636532691811948, 0.06384928876979411, 0.06411591731267173, 0.06444733125765482, 0.06483760708245379, 0.06528083136060986, 0.0657712008650164, 0.06630311082462176, 0.06687123031046868, 0.06747056446178842, 0.06809650384210175, 0.0687448616335384, 0.06941189964650304, 0.07009434426366808, 0.07078939347876909, 0.07149471615982131, 0.07220844458759794, 0.07292916121526652, 0.07365588048025147, 0.07438802638739764, 0.0751254064815983, 0.07586818274355721, 0.07661683987699953, 0.0773721514097646, 0.07813514400412393, 0.07890706036098835, 0.07968932110567155, 0.0804834860557247, 0.08129121529040888, 0.08211423046229663, 0.08295427681029745, 0.0838130863463802, 0.08469234269179264, 0.08559364803028156, 0.08651849262351817, 0.087468227296984, 0.08844403925298987, 0.08944693150258533 ], [ 0.06530004054724442, 0.06433504068538837, 0.06347100983542978, 0.06271066351218142, 0.06205586502919894, 0.06150755273908891, 0.061065691720137615, 0.06072925406582922, 0.06049623018914262, 0.06036367147506952, 0.06032776245018312, 0.06038391865468636, 0.06052690483804171, 0.06075096711643925, 0.06104997239262823, 0.061417548608524164, 0.06184722016209677, 0.06233253390814972, 0.06286717240386805, 0.06344505229884341, 0.06406040688796799, 0.06470785277098356, 0.06538244126293, 0.06607969567736095, 0.066795635883037, 0.06752679165178939, 0.06827020631043267, 0.06902343212191601, 0.06978451868348931, 0.07055199546929092, 0.07132484948157673, 0.07210249882226852, 0.07288476286380956, 0.07367182958977203, 0.07446422059298678, 0.07526275416174705, 0.07606850685035456, 0.07688277391597081, 0.07770702900514953, 0.07854288348632273, 0.07939204584403059, 0.08025628157233318, 0.08113737402390664, 0.08203708668390036, 0.08295712734004988, 0.08389911461009894, 0.08486454726254745, 0.08585477672636407, 0.08687098312992797, 0.08791415514083545 ], [ 0.06234897243580019, 0.06133874685059264, 0.06043452200303655, 0.0596395556939071, 0.05895618286863833, 0.05838572033573089, 0.05792839932445334, 0.05758333185875269, 0.05734851475643652, 0.05722087233819517, 0.05719633599772266, 0.057269956039182716, 0.05743603899576163, 0.05768830226009554, 0.058020037387813715, 0.058424273827009744, 0.05889393590297772, 0.05942198740300906, 0.06000155980310717, 0.06062606183442577, 0.06128926954133, 0.0619853971437526, 0.06270914985392857, 0.06345576032876472, 0.0642210107086238, 0.06500124225952902, 0.06579335455791016, 0.06659479598806137, 0.06740354710611376, 0.06821809819316997, 0.06903742209752024, 0.06986094326599346, 0.07068850369576347, 0.07152032640353594, 0.07235697690895786, 0.07319932316081322, 0.07404849429432882, 0.07490583859089378, 0.07577288101249, 0.07665128069660831, 0.07754278881799248, 0.07844920724597206, 0.07937234844531622, 0.08031399708046598, 0.08127587378373358, 0.08225960153520535, 0.08326667507380725, 0.08429843371506963, 0.08535603789207212, 0.08644044966391305 ], [ 0.05946468842429715, 0.05840654820914113, 0.05745934027886857, 0.056626950853356714, 0.055912274753271735, 0.05531709168944813, 0.05484197372471429, 0.0544862324342212, 0.054247911652526085, 0.0541238281452209, 0.0541096585597567, 0.0542000671847542, 0.054388865942451396, 0.05466919606448401, 0.055033720231673675, 0.0554748145211719, 0.05598475103207567, 0.0565558641804999, 0.057180695984735914, 0.05785211787930691, 0.058563428485156076, 0.059308428210380126, 0.06008147254188893, 0.0608775064563596, 0.06169208260698122, 0.06252136592012288, 0.06336212704827414, 0.06421172684407955, 0.06506809370020866, 0.06592969528026399, 0.06679550587199036, 0.0676649703401666, 0.06853796544867458, 0.06941475916037343, 0.0702959684065912, 0.07118251574041835, 0.07207558524346792, 0.0729765780378051, 0.07388706775654112, 0.07480875634170683, 0.07574343056002523, 0.07669291965045262, 0.07765905453654916, 0.07864362904740206, 0.07964836358949537, 0.08067487169602994, 0.08172462984849824, 0.0827989509176111, 0.08389896150820005, 0.08502558341759793 ], [ 0.056658553134509744, 0.05554977999154492, 0.054556688482488576, 0.05368388724421322, 0.05293493089879649, 0.05231216082611111, 0.05181657998026722, 0.05144777380221693, 0.05120388617784203, 0.0510816548109593, 0.05107650497463521, 0.05118269524330494, 0.05139350436859938, 0.0517014456038612, 0.052098493802729094, 0.05257631141919569, 0.05312646171181838, 0.05374060043464666, 0.054410640507348854, 0.055128887134202005, 0.055888143289475334, 0.0566817872764894, 0.05750382520350223, 0.05834892179108264, 0.059212413061498534, 0.060090304295714096, 0.06097925629706308, 0.06187656256700844, 0.06278011954564036, 0.0636883916421555, 0.06460037240419278, 0.06551554286111133, 0.06643382782802205, 0.06735555077087671, 0.06828138770173936, 0.06921232048916955, 0.07014958992254425, 0.07109464885245846, 0.07204911573373812, 0.07301472891528996, 0.07399330204501123, 0.07498668098206865, 0.07599670262760333, 0.07702515609383595, 0.07807374662753214, 0.07914406268436487, 0.08023754651522293, 0.08135546857415414, 0.08249890599205686, 0.08366872528294034 ], [ 0.053941714694012675, 0.05277962291081413, 0.0517376854353527, 0.05082133338953893, 0.05003489239022649, 0.04938137953712811, 0.048862336202548234, 0.04847771347561126, 0.04822582365943056, 0.048103365412110806, 0.04810552280971586, 0.04822613106783961, 0.048457895254039235, 0.04879264413120492, 0.049221599803938566, 0.049735644973292775, 0.0503255727141902, 0.05098230789792286, 0.05169709382256722, 0.05246164161523687, 0.053268243133965845, 0.054109850286032976, 0.054980124948273965, 0.055873464190244915, 0.05678500546818527, 0.05771061607523542, 0.05864687056452196, 0.05959101922791609, 0.060540950094939844, 0.061495146361053875, 0.06245264068542658, 0.0634129674215142, 0.06437611355577894, 0.06534246892115865, 0.06631277611048503, 0.06728808042847635, 0.06826968017691144, 0.06925907755509195, 0.0702579304665815, 0.07126800554457455, 0.07229113273470752, 0.07332916179871582, 0.07438392112018857, 0.07545717920019052, 0.07655060922296462, 0.07766575704866649, 0.07880401295050574, 0.07996658735897608, 0.08115449080768393, 0.08236851819706306 ], [ 0.05132487781917728, 0.05010689217210377, 0.04901315110463602, 0.048050011235546114, 0.04722269008695828, 0.0465350100137908, 0.045989177586631444, 0.04558562167729881, 0.045322910013017255, 0.04519775679703604, 0.045205124176048765, 0.045338409707771705, 0.04558970267461188, 0.045950085864593676, 0.04640995719128029, 0.046959347111004454, 0.04758821225524361, 0.04828669166712376, 0.049045318195714706, 0.049855182983556026, 0.05070805505443727, 0.05159646064505287, 0.052513728277319684, 0.05345400592806599, 0.05441225633971614, 0.05538423581391247, 0.05636646095894529, 0.0573561669711596, 0.0583512602112841, 0.05935026713468427, 0.06035228106525561, 0.06135690786329969, 0.062364211214209535, 0.06337465804012324, 0.06438906439139004, 0.06540854209154372, 0.06643444637213371, 0.06746832472886828, 0.0685118672457479, 0.06956685866029291, 0.070635132471597, 0.07171852741795409, 0.07281884666676029, 0.07393782006272161, 0.0750770697686487, 0.07623807960548432, 0.07742216835471248, 0.07863046722857739, 0.07986390164406476, 0.08112317735850688 ], [ 0.04881806202818063, 0.04754181189904145, 0.046393399965458465, 0.045380209497286744, 0.04450847739453258, 0.04378297522968355, 0.043206721862269, 0.04278075915686519, 0.04250401950829591, 0.04237330540272557, 0.04238338823468459, 0.042527218643597646, 0.0427962270303254, 0.04318068357059513, 0.04367008352786911, 0.04425352586454073, 0.044920059569461, 0.04565898063173665, 0.046460071178116374, 0.047313779530615566, 0.048211345147950814, 0.0491448755238295, 0.05010738345164684, 0.05109279311474395, 0.05209592270969177, 0.05311245015614392, 0.05413886717544662, 0.05517242580919487, 0.05621108039312237, 0.057253427137694164, 0.05829864279551967, 0.05934642339864261, 0.06039692369900983, 0.06145069771405539, 0.06250864063930049, 0.0635719323172336, 0.06464198242670258, 0.06572037756308535, 0.06680883040353708, 0.06790913118321253, 0.0690231017394718, 0.07015255240533853, 0.07129924204675592, 0.07246484153719596, 0.07365090094666368, 0.0748588206898545, 0.07608982683112332, 0.07734495068415892, 0.07862501277469401, 0.07993061115881545 ], [ 0.04643036052343045, 0.04509378921382421, 0.043888034921144986, 0.04282160011457776, 0.041901869833095254, 0.04113472030609287, 0.04052414980842017, 0.040071973592122084, 0.03977762383654816, 0.03963808623051493, 0.039647987920970865, 0.03979983061618421, 0.04008434268377638, 0.04049090993082025, 0.041008039173905775, 0.041623811702967806, 0.0423262930107637, 0.04310387734717064, 0.043945557652963034, 0.04484112115768218, 0.04578127752657765, 0.04675772999984436, 0.04776320110493626, 0.04879142402810204, 0.04983710932355121, 0.05089589486288663, 0.051964285140770325, 0.05303958445410699, 0.054119827147911526, 0.0552037070866666, 0.056290507742363716, 0.05738003374805955, 0.058472544403931556, 0.059568689398572114, 0.06066944688463797, 0.0617760639947936, 0.06288999987696253, 0.06401287134857062, 0.06514640130372432, 0.06629237004449319, 0.06745256973994515, 0.06862876223919176, 0.0698226404738366, 0.0710357936788686, 0.07226967663946784, 0.0735255831340514, 0.07480462369422358, 0.07610770774174455, 0.07743553009503872, 0.07878856176650005 ], [ 0.0441697215558887, 0.04277120814713472, 0.04150576061466289, 0.04038307578066728, 0.03941180900252989, 0.038599102491065775, 0.037950118666076095, 0.037467632542481394, 0.03715174031098452, 0.036999732300194196, 0.03700615730769781, 0.037163076237330464, 0.03746047371605401, 0.0378867747801844, 0.038429404751223986, 0.03907533442382888, 0.03981156610368604, 0.04062553354775267, 0.04150540565178937, 0.04244029677899311, 0.04342039489000477, 0.04443702252615334, 0.04548264633258911, 0.046550849429112036, 0.047636278582895486, 0.04873457553171485, 0.04984229937601234, 0.05095684490621802, 0.052076360116814754, 0.05319966495738613, 0.054326172523053794, 0.05545581332015215, 0.0565889628896404, 0.05772637287122882, 0.05886910549779761, 0.06001847148560404, 0.06117597130292013, 0.06234323983813884, 0.06352199453375602, 0.06471398709464735, 0.06592095891179633, 0.06714460036154862, 0.0683865141441954, 0.06964818281321572, 0.0709309406191461, 0.07223594975136276, 0.0735641810096593, 0.07491639887853471, 0.07629315091393901, 0.07769476128831722 ], [ 0.0420427794387245, 0.04058126872686652, 0.0392542397107301, 0.03807263071853713, 0.03704647224682014, 0.03618433067606149, 0.03549272926624786, 0.03497561362423028, 0.034633939401274204, 0.034465453826240076, 0.034464717375811256, 0.034623372242559305, 0.03493062147216283, 0.03537384959564847, 0.035939301034205826, 0.03661273773949827, 0.03738001697549701, 0.03822755539060418, 0.03914266906332753, 0.04011379663860909, 0.04113062285552168, 0.04218412372357936, 0.04326655425831382, 0.04437139694711959, 0.04549328544494953, 0.04662791432002777, 0.047771942462314004, 0.048922895207626105, 0.05007906831876582, 0.051239435616616584, 0.05240356115623074, 0.05357151628319699, 0.054743801587942065, 0.055921273622359456, 0.057105076195369836, 0.058296576078786036, 0.05949730300148062, 0.06070889386804872, 0.06193304119386933, 0.06317144579402145, 0.06442577379384334, 0.06569761804249241, 0.06698846400730377, 0.0682996602077628, 0.06963239321519647, 0.07098766720118148, 0.07236628796699776, 0.07376885133167496, 0.07519573570081842, 0.07664709858495443 ], [ 0.04005476482433083, 0.03852989907208249, 0.037140017846943214, 0.035897308393250796, 0.03481325016686277, 0.033897975644310935, 0.03315956753147956, 0.03260337209123067, 0.03223143098627135, 0.03204213511717627, 0.03203017616837969, 0.0321868188178136, 0.03250045450101458, 0.03295734700348608, 0.03354245643807019, 0.03424023456020875, 0.03503531253760375, 0.03591303872521767, 0.03685985697197653, 0.0378635391461323, 0.03891329783212586, 0.039999808665816546, 0.04111516972985377, 0.042252820688322326, 0.043407438892870236, 0.04457482466971457, 0.04575178388701837, 0.04693601280265005, 0.04812598800320798, 0.04932086279127098, 0.05052037047573776, 0.0517247345090565, 0.05293458516660948, 0.05415088238071433, 0.05537484435550331, 0.05660788165145438, 0.05785153650823421, 0.05910742725235948, 0.060377197700568236, 0.061662471515626774, 0.0629648114963517, 0.06428568378948195, 0.06562642699911272, 0.06698822614373241, 0.06837209137429484, 0.06977884132350598, 0.07120909090970921, 0.07266324337201582, 0.0741414862692739, 0.07564379113637253 ], [ 0.03820952099406142, 0.03662176566713907, 0.03516853999981517, 0.03386323618813839, 0.032718809582517265, 0.03174706688098551, 0.030957835064056777, 0.030358099725854692, 0.0299512422358531, 0.02973652053774684, 0.0297089123906089, 0.029859372229458468, 0.03017546406068912, 0.030642255576847677, 0.03124331996814866, 0.03196169913445295, 0.0327807226565561, 0.03368462944580594, 0.03465898510548518, 0.03569091856479037, 0.03676921587795729, 0.03788431129551581, 0.03902821094977221, 0.04019437692283326, 0.04137759170908878, 0.04257381644257266, 0.04378005114954578, 0.044994201652657634, 0.0462149553390726, 0.04744166651235022, 0.048674251204751814, 0.04991309091586045, 0.0511589446018436, 0.05241286825264829, 0.05367614148428205, 0.05495020069021754, 0.05623657841001055, 0.057536848668367495, 0.05885257810693019, 0.0601852827726988, 0.061536390443649454, 0.06290720836775043, 0.06429889627104313, 0.06571244445894159, 0.06714865679721223, 0.06860813831902877, 0.07009128716614467, 0.0715982905376514, 0.07312912429164452, 0.07468355582402851 ], [ 0.03650964265129499, 0.034860396957876044, 0.03334427062616404, 0.031975755772746625, 0.03076924699792299, 0.029738278015162725, 0.028894568930035763, 0.028246974015059597, 0.027800485227493347, 0.02755548645826707, 0.027507437606491224, 0.027647085654660255, 0.027961175748188866, 0.028433518536916644, 0.029046207071752175, 0.029780783283178607, 0.030619212301619972, 0.031544598452596904, 0.032541640992337396, 0.03359686749128355, 0.03469869884474359, 0.03583739948209943, 0.03700495748112225, 0.038194927875759926, 0.03940226179668373, 0.04062313557199602, 0.04185478775895944, 0.043095367964334365, 0.04434379876482611, 0.04559965060109306, 0.046863028813478015, 0.04813447173546723, 0.04941485876585359, 0.05070532747258917, 0.05200719895819431, 0.05332191089024964, 0.054650957745964075, 0.0559958379266698, 0.05735800746565115, 0.058738840085181446, 0.06013959336304989, 0.06156138075318026, 0.06300514917633668, 0.06447166186262877, 0.06596148609242389, 0.06747498545086564, 0.06901231618626691, 0.07057342724563845, 0.07215806355261278, 0.07376577209366914 ], [ 0.034956735510677836, 0.03324841720262969, 0.031670911163827746, 0.03023963785295495, 0.028970315794305597, 0.027878179273739995, 0.026976925710506486, 0.026277471133322523, 0.025786687543225262, 0.025506372643872652, 0.025432710595221918, 0.02555639169959919, 0.025863390806909227, 0.026336230587464485, 0.02695545425424593, 0.02770103526223967, 0.028553533751082966, 0.02949491739844965, 0.030509053269569014, 0.03158192866503113, 0.032701676026436, 0.033858472049455954, 0.03504436643421487, 0.036253079274453585, 0.037479791957071684, 0.03872094587048869, 0.039974056042606974, 0.04123754235196351, 0.04251057841013096, 0.04379295694694981, 0.04508497005129555, 0.04638730258727772, 0.04770093729347809, 0.04902707034149296, 0.05036703639886724, 0.05172224246852038, 0.05309410994624228, 0.054484024447643976, 0.055893293014511625, 0.05732310832808161, 0.05877451954662163, 0.06024840935764387, 0.061745476801573954, 0.06326622539118876, 0.06481095602472904, 0.06637976417431625, 0.06797254082580116, 0.0695889766522512, 0.07122856891963053, 0.07289063064836265 ], [ 0.03355177124846249, 0.031787863434717636, 0.030151683619961803, 0.028659343579424207, 0.02732768159561918, 0.026173503842512276, 0.025212471219658125, 0.02445768177980566, 0.023918125641328253, 0.0235973157958985, 0.02349245058728632, 0.023594377799256067, 0.0238884131897015, 0.024355814472905964, 0.02497555032725819, 0.025725996041662157, 0.026586300850056973, 0.027537324241525007, 0.02856216058970647, 0.029646337082047808, 0.03077778675636529, 0.03194668660092618, 0.033145228021333684, 0.03436736428920201, 0.03560856143989431, 0.03686556635353985, 0.03813619766400058, 0.03941916047271553, 0.040713883465361894, 0.04202037606467069, 0.043339103090742986, 0.044670874641204304, 0.0460167493014404, 0.047377949208699435, 0.04875578585052043, 0.050151595748469883, 0.051566685358934126, 0.053002284625133726, 0.05445950865508148, 0.055939326999282876, 0.057442539976119304, 0.05896976145800482, 0.060521407498322535, 0.06209769015559144, 0.06369861586168866, 0.06532398768697846, 0.06697341087588596, 0.06864630106047413, 0.0703418946035751, 0.07205926057417533 ], [ 0.032295489317472156, 0.030480535088476222, 0.028789625265020578, 0.027239270022377336, 0.02584713308259288, 0.024631344631974098, 0.02360938373804333, 0.022796533728419627, 0.02220406662169653, 0.021837497681943714, 0.021695371955148382, 0.021768988854021547, 0.02204320912443524, 0.022498136525598057, 0.023111215880655237, 0.023859256329778776, 0.02472003932317802, 0.025673381796589227, 0.02670169075365108, 0.02779012864300517, 0.02892652404237214, 0.03010114054552247, 0.0313063839009181, 0.03253649726588995, 0.03378727183575408, 0.035055785220270023, 0.03634017112282601, 0.03763941923420302, 0.03895320222092634, 0.040281726153485076, 0.04162560095304569, 0.042985727989892614, 0.04436320258692397, 0.04575922973520418, 0.047175051759134536, 0.04861188696562949, 0.050070878488699636, 0.05155305262321403, 0.05305928595838759, 0.05459028059983592, 0.05614654673134026, 0.05772839173114275, 0.05933591503378672, 0.06096900792370965, 0.06262735746291868, 0.06431045379130997, 0.06601760009093278, 0.06774792457125277, 0.06950039390555596, 0.0712738276258065 ], [ 0.03118878380202479, 0.029328313628465098, 0.027587828740947343, 0.025983907506643346, 0.024534665664268946, 0.023259185999352557, 0.022176463388642143, 0.021303807072911705, 0.020654806217356356, 0.020237206497413642, 0.020051256583196248, 0.020089094387469395, 0.02033545814057976, 0.020769540582697903, 0.021367428462457906, 0.022104487013655555, 0.02295723778852563, 0.023904562665849394, 0.024928289157321065, 0.02601331748915616, 0.027147462292688267, 0.02832114759422027, 0.02952704855420668, 0.03075973459707688, 0.03201534118579583, 0.03329128053957245, 0.034585992271351375, 0.0358987305228336, 0.037229382654915044, 0.03857831454948714, 0.03994623825815976, 0.04133409861634409, 0.042742976275427814, 0.04417400527960216, 0.04562830379501579, 0.04710691690057162, 0.04861077050639042, 0.05014063551903667, 0.05169710136288985, 0.05328055792845629, 0.054891184976811044, 0.0565289480028072, 0.05819359955683441, 0.05988468505013051, 0.06160155211999601, 0.06334336270441586, 0.06510910706478774, 0.06689761909401566, 0.0687075923490923, 0.07053759634722744 ], [ 0.030233018138412043, 0.028333398329425184, 0.026549576263963467, 0.02489785715298735, 0.023396381263394623, 0.022064703556445103, 0.020922868301668594, 0.019989853537539345, 0.01928141440963406, 0.018807635363100143, 0.0185708112847277, 0.018564397059131585, 0.0187735023272647, 0.01917683340408441, 0.01974944730651016, 0.020465511363648558, 0.021300476515486406, 0.022232441342980257, 0.02324277719889828, 0.02431621965783318, 0.02544064178175191, 0.026606676153382768, 0.027807293210683436, 0.029037395043458557, 0.030293451390095046, 0.031573185640309705, 0.032875309014791666, 0.03419929710671211, 0.035545202069559835, 0.036913494315582045, 0.03830492872159171, 0.039720431531009015, 0.04116100515896168, 0.04262764886799734, 0.044121293784336865, 0.04564275100957503, 0.04719267170641993, 0.0487715180579257, 0.05037954396799907, 0.05201678432592383, 0.05368305162633355, 0.05537793873348775, 0.05710082661107, 0.058850895904928646, 0.06062714136058104, 0.06242838817202501, 0.06425330948481962, 0.06610044440635003, 0.06796821600274205, 0.06985494887986379 ], [ 0.0294302345495466, 0.027498436178544222, 0.02567835907701604, 0.023985712621992703, 0.022438217225404265, 0.021055347062391025, 0.019857587074916565, 0.018865020689319775, 0.01809518581040249, 0.01756042382149343, 0.017265338941016613, 0.017205243075671645, 0.017366287131122166, 0.017727341725911974, 0.018262975229370412, 0.01894656448128303, 0.019752779153100624, 0.020659132500619556, 0.021646669540466543, 0.02270003960755339, 0.02380721305902301, 0.024959039296361972, 0.026148768827377697, 0.027371603479458807, 0.028624301149315252, 0.02990484054632852, 0.031212141491864787, 0.032545832799922576, 0.03390605947817157, 0.03529332211195019, 0.03670834282549478, 0.03815195365952045, 0.03962500435509564, 0.04112828734110039, 0.04266247821843497, 0.044228090287399636, 0.04582544175271164, 0.04745463423618566, 0.04911554118741398, 0.0508078047494293, 0.052530839633208704, 0.054283842593632045, 0.05606580617971686, 0.05787553554824561, 0.05971166727155841, 0.06157268922682917, 0.06345696081475256, 0.06536273291171674, 0.06728816710404711, 0.0692313538820456 ], [ 0.028783257923809934, 0.02682656555327708, 0.02497782774396046, 0.02325188190520824, 0.021665610637674217, 0.0202378371089713, 0.018988790786979938, 0.01793892376274307, 0.017106930227377627, 0.016507075001276152, 0.0161463662284088, 0.01602249982392313, 0.01612348537020201, 0.016429253363873367, 0.016914679707408616, 0.017552959759861278, 0.018318395433455394, 0.01918816543038499, 0.02014311882514129, 0.02116786569247391, 0.022250465130093194, 0.023381938997785522, 0.024555751190109415, 0.02576732319953346, 0.027013613330891393, 0.02829276371445186, 0.029603808880324597, 0.030946436362784085, 0.0323207899443864, 0.033727307657785636, 0.03516658846900135, 0.036639283172461484, 0.038146006250479834, 0.03968726626723926, 0.04126341284040616, 0.04287459845439121, 0.044520753443593186, 0.04620157246349958, 0.04791651074321997, 0.049664788414013894, 0.05144540125408221, 0.05325713628442204, 0.05509859078855985, 0.05696819349852395, 0.05886422687759984, 0.06078484962360561, 0.06272811870430779, 0.06469201041013992, 0.06667444006358325, 0.06867328015641001 ], [ 0.028295714964370493, 0.026321417634098402, 0.02445174958439273, 0.022700467153661832, 0.021083264336110134, 0.0196177896970601, 0.018323315193076898, 0.017219830872150003, 0.01632636107026558, 0.01565848519716765, 0.015225447856315093, 0.015027718639282681, 0.015056032990212034, 0.015292483744648385, 0.015713320033823107, 0.01629240341648893, 0.017004239586535717, 0.017825995743110213, 0.0187384614294437, 0.019726219443872088, 0.020777354170311207, 0.02188295498226364, 0.02303657428868395, 0.02423372111792654, 0.025471421634671882, 0.026747851760706123, 0.02806203549605873, 0.02941359889964471, 0.030802569810290642, 0.03222921497020463, 0.033693908094426364, 0.03519702408388029, 0.0367388558160846, 0.0383195507553806, 0.039939065078569126, 0.04159713321984419, 0.04329325080659683, 0.04502666897148762, 0.04679639804569869, 0.04860121869728393, 0.05043969868935713, 0.052310213592977835, 0.0542109699870967, 0.05614002989819667, 0.058095335459014394, 0.06007473298662673, 0.06207599588431797, 0.06409684595288613, 0.06613497285160916, 0.06818805157609052 ], [ 0.027971980559264285, 0.025987101169684015, 0.024104021217552812, 0.02233528382541967, 0.02069514059616997, 0.01919964675392663, 0.017866499485527428, 0.016714415690902998, 0.01576182832335752, 0.015024790993989382, 0.014514297214953118, 0.014233691188032947, 0.014177171813518675, 0.014330172709359964, 0.014671602391608033, 0.015177090221645049, 0.015822117458058945, 0.01658427603984208, 0.017444466622938637, 0.018387237177994373, 0.019400585819394568, 0.020475506124239883, 0.021605456327536424, 0.022785848805120083, 0.024013600539403372, 0.025286754800591994, 0.02660417015970672, 0.027965267858545383, 0.029369827881694743, 0.03081782524425229, 0.032309299700033274, 0.03384425365207792, 0.03542257425706987, 0.037043976516728305, 0.038707964611203786, 0.040413808960500966, 0.04216053660885663, 0.04394693259880065, 0.04577155009135973, 0.04763272712310062, 0.049528608075193305, 0.05145716815483689, 0.053416239441332815, 0.055403537309068884, 0.05741668629390707, 0.05945324470507433, 0.061510727494195255, 0.06358662707210473, 0.0656784319114004, 0.06778364288928863 ], [ 0.027817026958906914, 0.025828137436900548, 0.023938697241842007, 0.022159980540378762, 0.02050465402656402, 0.01898690565366788, 0.017622403019378938, 0.01642791904111757, 0.01542042601437543, 0.014615504117911817, 0.01402511536567907, 0.013655172827837058, 0.013503714583208848, 0.013560523855632039, 0.013808512074394616, 0.014226380407313844, 0.014791586694476678, 0.015482759150732512, 0.016281176494869425, 0.017171373135373612, 0.018141134461905635, 0.019181157937921006, 0.020284580558020928, 0.0214464904510698, 0.022663479956573956, 0.02393326141431892, 0.025254348239212666, 0.026625795603442838, 0.02804699240807469, 0.02951749630899804, 0.03103690472659103, 0.032604756131514166, 0.03422045704965666, 0.03588323104117406, 0.037592086414093624, 0.03934579972676583, 0.041142912318728235, 0.04298173726565765, 0.04486037432983396, 0.04677673069299869, 0.04872854551318403, 0.05071341662936126, 0.05272882803034975, 0.054772176991272, 0.056840800048611674, 0.05893199722366239, 0.06104305410980459, 0.06317126160861708, 0.0653139332355076, 0.06746842001915301 ], [ 0.027836118260617083, 0.02584925531477574, 0.02395990704426189, 0.022178090813795646, 0.02051485579403022, 0.018982408994422387, 0.01759414328014806, 0.01636445328608358, 0.01530818628107645, 0.014439578189817457, 0.013770627436017526, 0.013309101891858322, 0.01305669845784251, 0.013008065569690511, 0.013151206191415287, 0.013469210938067633, 0.013942700293797055, 0.014552179555707678, 0.015279761769822228, 0.016110110037735957, 0.01703072993520326, 0.01803183917206306, 0.019106018666822884, 0.0202477857967264, 0.021453171191141547, 0.02271933858373479, 0.02404426192716391, 0.025426460469353908, 0.026864786406588518, 0.02835825785480556, 0.029905930073684476, 0.03150679883105198, 0.03315973081737612, 0.03486341683307922, 0.03661634403435847, 0.03841678389963505, 0.040262792856310764, 0.04215222275691715, 0.04408273865572746, 0.04605184162675183, 0.04805689467793527, 0.050095150140764225, 0.05216377723421267, 0.05425988880226339, 0.056380566494638844, 0.05852288389484953, 0.06068392729538868, 0.06286081397787197, 0.0650507079784386, 0.06725083341015847 ], [ 0.028034303883010366, 0.026054960010363514, 0.024171522979062474, 0.022392820327113434, 0.020728347490872635, 0.01918836908794259, 0.01778397749613316, 0.016527039239570593, 0.01542992797384384, 0.014504926410538807, 0.013763210237546364, 0.013213442968259471, 0.012860219212758976, 0.01270281439166465, 0.012734755983326199, 0.012944488876269268, 0.013316958513438889, 0.013835580025613999, 0.014484022214523388, 0.015247460544550331, 0.01611323217393611, 0.017071005756102584, 0.01811263618375346, 0.019231856260957688, 0.02042391258843499, 0.021685209475197316, 0.02301299235034338, 0.024405081741055153, 0.025859657840806825, 0.027375090821180923, 0.028949810635555098, 0.030582210252483793, 0.032270576959668694, 0.034013047093423544, 0.035807580118383725, 0.03765194841419712, 0.03954373947972589, 0.04148036759339878, 0.04345909230312656, 0.045477041468458955, 0.047531236935880926, 0.0496186212820065, 0.05173608439485014, 0.05388048896902814, 0.05604869425865771, 0.05823757765873757, 0.06044405387146665, 0.06266509156082675, 0.06489772751060281, 0.06713907838274442 ], [ 0.028415734547259958, 0.026448875795926103, 0.024576549106194584, 0.022806499495581584, 0.021146808087086588, 0.019605961923402294, 0.018192920965057244, 0.01691714744236619, 0.015788539656487962, 0.014817189544034534, 0.014012874576936956, 0.013384225444235249, 0.012937610547625721, 0.012675945312889514, 0.012597792565683988, 0.012697132791668645, 0.012963971878245568, 0.013385619002276706, 0.013948227072660243, 0.014638176528512523, 0.015443049130368236, 0.016352138855356652, 0.017356581221360513, 0.01844923098418304, 0.01962440872703959, 0.020877603407881976, 0.022205182977166834, 0.02360413854595691, 0.025071870896627307, 0.02660601931975596, 0.028204328953736424, 0.029864551643534975, 0.0315843753245424, 0.03336137730224498, 0.03519299722034658, 0.037076525904860734, 0.039009106643143096, 0.04098774582756589, 0.043009330274769705, 0.04507064892229658, 0.0471684169937862, 0.049299301098082816, 0.051459944073414206, 0.05364698869601235, 0.05585709963805637, 0.058086983280489134, 0.0603334051650453, 0.06259320500856454, 0.0648633093076456, 0.06714074163732914 ], [ 0.02898291815339684, 0.02703298682897548, 0.02517635905433051, 0.02341983122124495, 0.021770261286371197, 0.02023461233598221, 0.018820020792555618, 0.01753387712418231, 0.0163838896477759, 0.015378078232099362, 0.014524619528423882, 0.013831454897634378, 0.01330560468531154, 0.01295223204223269, 0.012773650191238826, 0.012768588435508495, 0.012932017240155122, 0.01325564619341878, 0.013728947489373389, 0.01434038202100626, 0.015078501975653283, 0.01593273151795607, 0.016893782125155892, 0.017953765279938843, 0.019106104842900668, 0.02034534433031239, 0.021666917702306287, 0.023066924721810045, 0.0245419313430671, 0.02608880284727707, 0.02770457062894982, 0.029386330345228674, 0.031131167857237806, 0.03293610900692909, 0.034798089281713594, 0.03671393960839343, 0.03868038480358392, 0.040694051556738796, 0.04275148321089131, 0.04484915901472139, 0.04698351592628109, 0.04915097143572425, 0.05134794622746013, 0.05357088581315759, 0.055816280531414866, 0.058080683527956714, 0.06036072650484852, 0.06265313316207023, 0.06495473035639714, 0.0672624570746195 ], [ 0.02973608862441679, 0.02780697614599849, 0.025970011450173185, 0.024231190396091052, 0.022596365956711488, 0.02107127650472893, 0.019661616053500176, 0.01837314611504044, 0.017211834164689646, 0.01618398074450724, 0.015296268828660042, 0.014555646527201987, 0.013968958687791445, 0.013542297039661897, 0.013280145859821305, 0.013184524864533014, 0.013254400851348875, 0.013485588910693645, 0.013871195297021223, 0.014402456017318549, 0.015069710249313367, 0.01586326303458462, 0.016773995703122633, 0.017793698054354587, 0.018915171770150035, 0.02013218098804182, 0.021439319778573027, 0.022831847219353343, 0.02430552150163212, 0.02585645000598952, 0.027480962945013027, 0.02917551271397477, 0.03093659810501281, 0.032760711001229896, 0.03464430245210047, 0.036583764795787364, 0.03857542654784308, 0.04061555700713951, 0.04270037786619554, 0.044826079501096024, 0.046988840017144186, 0.049184845513126456, 0.0514103103805469, 0.05366149676476333, 0.05593473257856278, 0.058226427674619746, 0.06053308795603488, 0.0628513273372766, 0.06517787756773855, 0.06750959600160307 ], [ 0.030672839377073605, 0.028767840631486723, 0.026953848177562252, 0.025236208069966026, 0.02361998957382367, 0.02211000870973104, 0.020710902329678607, 0.01942725619531723, 0.01826377689186593, 0.017225476542041703, 0.016317814173300575, 0.015546716995847466, 0.014918403008211794, 0.014438957689362, 0.014113686714561417, 0.013946358366947213, 0.013938525541877465, 0.014089130328395259, 0.01439451852776421, 0.014848853679099277, 0.01544479129500903, 0.01617421881041626, 0.017028896945430316, 0.018000915376511915, 0.019082951003623623, 0.02026836357145657, 0.021551179324861107, 0.022926009835266065, 0.02438794176670706, 0.02593242136650637, 0.0275551478130701, 0.029251982721601177, 0.03101887862443353, 0.03285182646223702, 0.03474682050586189, 0.036699838291384325, 0.03870683282524423, 0.04076373431964698, 0.04286645892116803, 0.045010922207280944, 0.047193055582939084, 0.04940882407037463, 0.051654244323399934, 0.05392540199793839, 0.05621846786689578, 0.058529712278812686, 0.06085551772860183, 0.06319238943965896, 0.06553696395490773, 0.06788601580536582 ], [ 0.03178808927715724, 0.029909861251954058, 0.028121467211136685, 0.026427745936638214, 0.024833186634468266, 0.023341954150526336, 0.021957965980785345, 0.020685023802084666, 0.01952698965017526, 0.01848797925712625, 0.017572525734342256, 0.016785652463236534, 0.01613279362008116, 0.01561952181055313, 0.015251086570315422, 0.015031827078229027, 0.014964578308338507, 0.015050215686287928, 0.015287458124969663, 0.015672975139370757, 0.016201752058757932, 0.016867601327088363, 0.01766369288376023, 0.01858300648386556, 0.01961865764947913, 0.02076409224275366, 0.022013171001125122, 0.023360175236805333, 0.024799764009914644, 0.026326907223499202, 0.027936812070550168, 0.029624853968676805, 0.031386518190347615, 0.0332173548655338, 0.03511294768884068, 0.03706889523713818, 0.039080803046316274, 0.04114428429855425, 0.043254966972325205, 0.04540850548499974, 0.04760059512703902, 0.049826987888679126, 0.052083508578679015, 0.05436607040809872, 0.05667068944966038, 0.05899349758189094, 0.061330753687048815, 0.06367885299700372, 0.06603433457557888, 0.0683938869947716 ], [ 0.033074352753149336, 0.031224897436853503, 0.029464038033098137, 0.027796231501220188, 0.026225558729207586, 0.024755753180440595, 0.023390277276118792, 0.022132446823843157, 0.020985592857912575, 0.01995323652804659, 0.019039239266426564, 0.01824788217974324, 0.01758383061299093, 0.017051955494344694, 0.016657012023318016, 0.01640321332960947, 0.016293771926366128, 0.0163305019345845, 0.016513568619310623, 0.016841436434874353, 0.01731101425628228, 0.01791794802903603, 0.01865698503636134, 0.019522335555853983, 0.02050797883641179, 0.02160788779912152, 0.022816170180707494, 0.024127138482413803, 0.02553532733494415, 0.02703547721352469, 0.028622500537789187, 0.030291442108001533, 0.03203744179784308, 0.03385570404213658, 0.03574147611554331, 0.037690035459793006, 0.03969668524787456, 0.041756756810416, 0.04386561734026543, 0.04601868131019496, 0.04821142419032263, 0.05043939726835779, 0.05269824261207399, 0.05498370744201105, 0.05729165738781323, 0.059618088276633015, 0.06195913624587738, 0.06431108608574851, 0.06667037780365179, 0.06903361146607145 ], [ 0.03452222095196323, 0.032702903124308326, 0.03097085008393675, 0.029330240023950828, 0.02778487935340926, 0.026338233409932604, 0.024993497829013306, 0.023753708571589587, 0.022621879786736743, 0.02160114875706071, 0.020694898661062507, 0.019906825959969603, 0.019240922645216853, 0.01870135551688716, 0.01829224385456842, 0.01801735960727821, 0.017879794995867112, 0.01788165477980131, 0.018023829074140935, 0.018305886049791286, 0.018726096491143367, 0.01928157317296971, 0.01996848698529544, 0.02078231408381453, 0.02171807342975047, 0.02277052696948764, 0.023934329484979304, 0.02520412749545768, 0.026574614590226954, 0.028040554241912645, 0.02959678154516896, 0.031238193756057898, 0.03295973709140369, 0.03475639475027246, 0.03662317896500588, 0.03855512824510129, 0.04054730985051803, 0.04259482684719115, 0.04469282875299082, 0.04683652467455768, 0.04902119787863701, 0.05124222086958981, 0.05349507021090722, 0.05577534050320032, 0.0580787570949402, 0.06040118724667639, 0.06273864958963991, 0.06508732181654138, 0.06744354661623538, 0.0698038359190981 ], [ 0.036120941415183044, 0.03433254237602148, 0.03262996369993563, 0.03101718435139882, 0.02949783363206197, 0.028075221434250508, 0.026752401083406933, 0.025532261292248646, 0.024417637104916592, 0.023411422984188864, 0.022516666219162065, 0.02173661754982838, 0.021074719670774164, 0.020534523208476426, 0.020119532504089918, 0.019832997489334137, 0.0196776799000759, 0.019655628906915523, 0.01976800074987988, 0.020014948732601342, 0.020395595879940397, 0.02090808657435274, 0.021549700008369907, 0.022317000588806497, 0.02320599947718162, 0.024212305993512012, 0.025331255123633815, 0.026558005254285005, 0.02788760666459413, 0.029315045402944963, 0.030835269004219654, 0.03244320058273223, 0.034133746853371394, 0.03590180419233876, 0.03774226537960976, 0.039650028410496405, 0.04162000782133772, 0.04364714834645128, 0.04572644036267492, 0.047852936419325254, 0.05002176813135356, 0.052228162778365186, 0.05446745906137648, 0.0567351215949816, 0.05902675383671332, 0.06133810926753292, 0.06366510073288548, 0.06600380793100936, 0.06835048309492583, 0.07070155495824657 ], [ 0.037858998971918585, 0.03610180023401647, 0.03442885169209468, 0.0328439913607454, 0.03135073839333103, 0.029952320582752087, 0.02865172677894129, 0.027451780142141963, 0.026355223426461533, 0.02536480318283426, 0.024483337110834415, 0.02371374889166382, 0.023059058277760842, 0.022522320726731167, 0.02210651929555182, 0.021814420104294758, 0.021648409550556365, 0.021610335058599432, 0.021701370634826356, 0.0219219239599937, 0.02227159422664185, 0.02274918121081347, 0.02335273817622099, 0.024079655812095136, 0.02492676233510235, 0.025890425985988983, 0.026966649490099352, 0.028151150347581994, 0.029439424902604157, 0.03082679724352001, 0.032308455821039486, 0.03387948134056904, 0.03553486930173947, 0.037269549889669434, 0.03907840707992461, 0.04095629801550819, 0.04289807306337824, 0.04489859649785784, 0.04695276747857648, 0.04905554085766258, 0.051201947324531316, 0.05338711243799051, 0.055606274175154, 0.05785479872165116, 0.060128194323139664, 0.06242212310556924, 0.06473241084616194, 0.06705505473707518, 0.06938622922983895, 0.07172229008178288 ], [ 0.03972463152420828, 0.03799851856538025, 0.03635495615617185, 0.03479768246136855, 0.03333015064306347, 0.031955552145627585, 0.030676858322619963, 0.029496876353133313, 0.028418312186188257, 0.027443830630822747, 0.02657610145027188, 0.0258178210249746, 0.025171702011249564, 0.024640428079316774, 0.024226576395209393, 0.023932515861309244, 0.02376029313055944, 0.023711520262451557, 0.023787277296846487, 0.02398804021501409, 0.0243136404105956, 0.024763256850110847, 0.025335437560530718, 0.026028143764871052, 0.026838808366152683, 0.0277644005869517, 0.02880149003751929, 0.029946305701437668, 0.03119478765103278, 0.032542631240612144, 0.033985324814058644, 0.03551818257461546, 0.037136374327122024, 0.038834953512268885, 0.040608884500998824, 0.04245306965100951, 0.04436237623565261, 0.04633166307623179, 0.04835580654470615, 0.05042972553752303, 0.05254840502694142, 0.05470691784862753, 0.05690044446122707, 0.05912429049940585, 0.06137390202486256, 0.06364487845408309, 0.06593298320381459, 0.06823415214389342, 0.07054449998371679, 0.07286032474371201 ], [ 0.04170624609976022, 0.04001082110753473, 0.03839612261905686, 0.036865817294011484, 0.03542332067281069, 0.03407181564563174, 0.0328142839820955, 0.03165354724656755, 0.030592311323721616, 0.029633207261295508, 0.02877882067008763, 0.028031702811722813, 0.02739435876955587, 0.02686921140471171, 0.026458543527409305, 0.02616442410889269, 0.025988626740376063, 0.02593254948007561, 0.025997144621127233, 0.026182864996813722, 0.026489630684393813, 0.026916816958419302, 0.027463261641175376, 0.028127288038873793, 0.02890673867063625, 0.029799014996974918, 0.030801119131412123, 0.031909694740692315, 0.033121065649464786, 0.034431271775893994, 0.03583610277474756, 0.037331130121124184, 0.03891173839729659, 0.04057315635959419, 0.042310488079486626, 0.044118744166869374, 0.0459928728513385, 0.047927790546033154, 0.04991841144825425, 0.05195967572951999, 0.05404657591477114, 0.05617418112763561, 0.05833765896868189, 0.06053229488480119, 0.06275350897193051, 0.06499687022563265, 0.0672581083128439, 0.06953312298329956, 0.0718179912714485, 0.07410897266127645 ], [ 0.0437927252294439, 0.04212741867717083, 0.04054090311320217, 0.039036793112305686, 0.03761848460696568, 0.03628916857620598, 0.03505185371605104, 0.03390939492789505, 0.03286452312898722, 0.03191987106337297, 0.031077989746625345, 0.03034135105892845, 0.029712333757611356, 0.029193192543692455, 0.02878601235443224, 0.028492652267634488, 0.02831468486506392, 0.028253337357091957, 0.028309440194164166, 0.028483387474468106, 0.02877511154545807, 0.029184072191419122, 0.029709259069636246, 0.030349204867387874, 0.031102006119908793, 0.031965348721646136, 0.03293653572323035, 0.03401251581026563, 0.03518991168018431, 0.03646504819431473, 0.03783398059149313, 0.03929252319699221, 0.040836278997198765, 0.04246067025765793, 0.044160970122116346, 0.045932334907578885, 0.04776983664525316, 0.04966849532467677, 0.05162331027616387, 0.05362929016139051, 0.05568148111640598, 0.05777499268771481, 0.059905021306071546, 0.062066871143695884, 0.06425597229138094, 0.06646789626920979, 0.06869836894638916, 0.07094328099305222, 0.07319869602048425, 0.07546085658846308 ], [ 0.04597362950249339, 0.04433780251412342, 0.04277873850575934, 0.04130001333262212, 0.03990501469310743, 0.038596951436848166, 0.03737886876962296, 0.036253666707466485, 0.035224118313551954, 0.03429288384649114, 0.033462517115363195, 0.03273546113644357, 0.032114031550484506, 0.03160038798072754, 0.031196495288705967, 0.030904078180172892, 0.03072457354607218, 0.030659085128528777, 0.03070834457726709, 0.03087268185311431, 0.031152006500214154, 0.031545799844726496, 0.03205311695620481, 0.032672596414432785, 0.033402475630408414, 0.03424060963185619, 0.035184491707506975, 0.03623127493658436, 0.03737779423962595, 0.038620589049763863, 0.03995592695859701, 0.04137982873820937, 0.042888095026341, 0.044476334752600176, 0.046139995146750455, 0.04787439295839017, 0.049674746363724154, 0.051536206951437576, 0.05345389116376036, 0.0554229106077555, 0.057438400729784504, 0.0594955474460937, 0.06158961143077655, 0.06371594986800229, 0.06587003557168984, 0.06804747345802784, 0.07024401442376083, 0.0724555667348217, 0.07467820506837237, 0.07690817737679394 ], [ 0.04823931036789401, 0.04663234237366513, 0.04510003967734463, 0.04364594864816069, 0.04227345578346059, 0.040985793182196056, 0.039786047601145555, 0.038677170905219244, 0.03766198924017966, 0.03674320810249086, 0.03592341074585802, 0.03520504806840243, 0.034590419199199834, 0.03408164329365142, 0.03368062433680503, 0.03338901180823005, 0.03320816068524199, 0.03313909433915156, 0.033182473410844675, 0.03333857284805805, 0.033607268140132644, 0.03398803062856639, 0.03447993081485629, 0.03508164797961878, 0.03579148422505382, 0.03660738121987954, 0.037526938353254456, 0.038547431548485805, 0.03966583250919704, 0.04087882856671685, 0.04218284351498549, 0.04357405985710493, 0.0450484427810095, 0.04660176598685685, 0.04822963926330079, 0.04992753750107253, 0.0516908306725124, 0.053514814208276, 0.055394739168446755, 0.05732584162592138, 0.05930337074096859, 0.061322615092690234, 0.06337892693270997, 0.06546774412715031, 0.06758460964789184, 0.06972518855796093, 0.07188528250624658, 0.07406084180313173, 0.07624797519155267, 0.07844295745845609 ], [ 0.0505809502364619, 0.04900230884020379, 0.04749618984512842, 0.04606611640773548, 0.04471547781795027, 0.04344753169371349, 0.04226540802127054, 0.041172113235403686, 0.040170532268366324, 0.03926342649052433, 0.03845342577153026, 0.037743013507539114, 0.037134504328241814, 0.036630015198771654, 0.036231431606682296, 0.03594037130390547, 0.035758148513278, 0.0356857415244397, 0.035723766190846294, 0.03587245708000408, 0.03613165707070601, 0.03650081521713925, 0.036978991883479424, 0.037564869620290806, 0.03825676806126157, 0.03905266124299361, 0.03995019610907322, 0.04094671143503172, 0.042039256886229434, 0.04322461230185274, 0.0444993075339914, 0.04585964324864361, 0.04730171303930934, 0.04882142705552087, 0.0504145371567292, 0.05207666340989358, 0.05380332158773767, 0.05558995121237716, 0.057431943630987366, 0.0593246696022769, 0.06126350590607129, 0.0632438605503842, 0.06526119623020817, 0.06731105177867025, 0.06938906143706541, 0.0714909718492284, 0.07361265675507314, 0.07575012941561207, 0.07789955284779941, 0.08005724798198961 ], [ 0.05299054688490216, 0.05143983886950111, 0.04995948931652432, 0.04855300213833474, 0.047223771053709576, 0.045975078998869566, 0.044810098073960136, 0.0437318885294529, 0.04274339517112199, 0.04184743964439653, 0.041046707375619544, 0.04034372849270715, 0.03974085276782949, 0.039240219429499866, 0.0388437234598332, 0.03855298059684917, 0.03836929359052047, 0.038293622248211194, 0.038326559442615614, 0.03846831460360929, 0.03871870538871593, 0.03907715737245721, 0.039542710856504196, 0.04011403339400082, 0.040789436397813614, 0.04156689425946579, 0.04244406468306765, 0.04341830934404781, 0.04448671441784735, 0.04564611090203183, 0.0468930949238503, 0.04822404836123446, 0.04963516011788045, 0.05112244831083707, 0.0526817834898486, 0.054308912848431694, 0.0559994852382997, 0.05774907668103701, 0.05955321599408402, 0.061407410113849946, 0.06330716870206023, 0.06524802765486298, 0.06722557118817916, 0.0692354522384716, 0.07127341098830475, 0.07333529139453605, 0.07541705565981212, 0.07751479664331425, 0.07962474825205912, 0.08174329389082394 ], [ 0.05546085764717904, 0.053937861558251275, 0.05248306132424953, 0.051099943622714285, 0.049791906225054874, 0.04856225503495312, 0.04741420066965636, 0.04635085333743482, 0.045375214729701935, 0.04449016577918091, 0.043698449450559645, 0.04300264821635209, 0.042405156483701766, 0.041908148905869864, 0.04151354613996166, 0.041222980100562176, 0.04103776101851771, 0.040958848590231224, 0.04098682918519149, 0.04112190051215016, 0.04136386441666729, 0.041712127713209646, 0.0421657102670656, 0.04272325903463144, 0.04338306650512251, 0.04414309196935372, 0.0450009842343316, 0.04595410473514962, 0.046999550385414014, 0.04813417587811492, 0.04935461544415091, 0.050657304267101834, 0.05203849983470956, 0.05349430349690371, 0.0550206824226936, 0.05661349203474499, 0.05826849887779481, 0.0599814037671249, 0.06174786497836163, 0.06356352118667105, 0.06542401384173259, 0.06732500867068071, 0.0692622160288274, 0.07123140986023253, 0.07322844508106782, 0.07524927325248648, 0.07728995646226948, 0.07934667938291719, 0.08141575951627773, 0.08349365567014003 ], [ 0.057985316837824215, 0.05648999864362035, 0.055060734540916624, 0.05370099421020811, 0.05241417728048927, 0.05120360832422661, 0.05007253064344836, 0.04902409780132253, 0.04806136187856422, 0.04718725759612362, 0.04640458175229709, 0.04571596786086892, 0.04512385641016308, 0.04463046173144395, 0.04423773699358295, 0.04394733924796023, 0.04376059666165282, 0.043678480050189185, 0.043701580542887884, 0.04383009471470847, 0.04406381787014361, 0.0444021454630937, 0.04484408198707147, 0.0453882561625215, 0.04603294094209214, 0.0467760767688627, 0.04761529663482107, 0.04854795174664572, 0.049571136944787375, 0.05068171537342313, 0.05187634220853483, 0.05315148748380252, 0.05450345819585166, 0.05592841992545158, 0.057422418195877116, 0.058981399726988265, 0.06060123365601086, 0.06227773270424912, 0.06400667418752123, 0.06578382070578477, 0.06760494030859426, 0.06946582591701833, 0.07136231378680931, 0.0732903008173684, 0.07524576054213165, 0.07722475767295932, 0.07922346111087308, 0.08123815537450553, 0.08326525043373183, 0.08530128996797033 ], [ 0.06055793774678013, 0.05909045175411239, 0.057686914952089455, 0.05635077862091537, 0.05508544038606033, 0.05389423743244635, 0.052780437945132395, 0.05174722989668722, 0.05079770636580607, 0.04993484674965755, 0.0491614935275569, 0.04848032463209079, 0.047893821954622405, 0.047404237005289805, 0.04701355520100989, 0.04672346060259876, 0.04653530310291947, 0.04645007004208702, 0.04646836398053745, 0.04659038791951285, 0.04681593867669314, 0.04714440848239397, 0.04757479424821294, 0.04810571345558711, 0.04873542527547898, 0.049461855386683594, 0.050282623001902164, 0.05119506880041121, 0.05219628275158787, 0.053283131136032086, 0.054452282380146017, 0.05570023157762013, 0.05702332375751502, 0.058417776068013606, 0.059879699085601354, 0.06140511744636097, 0.06298998994750228, 0.0646302292009081, 0.06632172085135095, 0.06806034231024304, 0.06984198090845584, 0.07166255134097017, 0.07351801226228141, 0.07540438189225775, 0.07731775250474807, 0.07925430369205308, 0.0812103143243503, 0.08318217315123178, 0.08516638802076178, 0.08715959371769567 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "0_0", "1_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0" ], "type": "scatter", "x": [ 0.3495166003704071, 0.8901249477639794, 0.9341307515278459, 0.3981546014547348, 0.06442984566092491, 0.9731279211118817, 0.711693842895329, 0.1791477669030428, 0.8779646440472175, 0.14022108949578363, 0.09837225623964749, 0.11075198162139444, 0.10829836083976369, 0.10872853671537026, 0.10914581140006792, 0.12024785046452524, 0.08537573049631343, 0.17077557058138923, 0.21000401373768696, 0.24696115301702115, 0.2962356566033925, 0.36734076551444717, 0.43322577469363455, 0.41069337393545535, 0.4005874678848605, 0.38221464246998454, 0.3558818561433652, 0.331137795186129, 0.34695371010224874 ], "xaxis": "x", "y": [ 0.9523188471794128, 0.329069453291595, 0.20295190438628197, 0.4246944095939398, 0.3867763029411435, 0.15313099510967731, 0.1465086881071329, 0.5693084038794041, 0.4360744726366273, 0.6036733211181039, 0.4634080944818754, 0.5092513682109966, 0.5277565977477967, 0.4607432013198608, 0.5565129348904627, 0.5935678101617056, 0.6624495890680604, 0.5832755741016528, 0.6101906909591976, 0.62820829580725, 0.6436286584623306, 0.6586832477174029, 0.6693203368365506, 0.6700966880204665, 0.6919379811476656, 0.722567603621774, 0.7769128537385162, 0.8253338964468004, 0.8585465623085132 ], "yaxis": "y" }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "showlegend": false, "text": [ "0_0", "1_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0" ], "type": "scatter", "x": [ 0.3495166003704071, 0.8901249477639794, 0.9341307515278459, 0.3981546014547348, 0.06442984566092491, 0.9731279211118817, 0.711693842895329, 0.1791477669030428, 0.8779646440472175, 0.14022108949578363, 0.09837225623964749, 0.11075198162139444, 0.10829836083976369, 0.10872853671537026, 0.10914581140006792, 0.12024785046452524, 0.08537573049631343, 0.17077557058138923, 0.21000401373768696, 0.24696115301702115, 0.2962356566033925, 0.36734076551444717, 0.43322577469363455, 0.41069337393545535, 0.4005874678848605, 0.38221464246998454, 0.3558818561433652, 0.331137795186129, 0.34695371010224874 ], "xaxis": "x2", "y": [ 0.9523188471794128, 0.329069453291595, 0.20295190438628197, 0.4246944095939398, 0.3867763029411435, 0.15313099510967731, 0.1465086881071329, 0.5693084038794041, 0.4360744726366273, 0.6036733211181039, 0.4634080944818754, 0.5092513682109966, 0.5277565977477967, 0.4607432013198608, 0.5565129348904627, 0.5935678101617056, 0.6624495890680604, 0.5832755741016528, 0.6101906909591976, 0.62820829580725, 0.6436286584623306, 0.6586832477174029, 0.6693203368365506, 0.6700966880204665, 0.6919379811476656, 0.722567603621774, 0.7769128537385162, 0.8253338964468004, 0.8585465623085132 ], "yaxis": "y2" } ], "layout": { "annotations": [ { "font": { "size": 14 }, "showarrow": false, "text": "Mean", "x": 0.25, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 14 }, "showarrow": false, "text": "Standard Error", "x": 0.8, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" } ], "autosize": false, "height": 450, "hovermode": "closest", "legend": { "orientation": "h", "x": 0, "y": -0.25 }, "margin": { "b": 100, "l": 35, "pad": 0, "r": 35, "t": 35 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "width": 950, "xaxis": { "anchor": "y", "autorange": false, "domain": [ 0.05, 0.45 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "xaxis2": { "anchor": "y2", "autorange": false, "domain": [ 0.6, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "yaxis": { "anchor": "x", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x2" }, "type": "linear" }, "yaxis2": { "anchor": "x2", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "type": "linear" } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "render(plot_contour(model=model, param_x='x1', param_y='x2', metric_name='l2norm'))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We also plot optimization trace, which shows best hartmann6 objective value seen by each iteration of the optimization:" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "hoverinfo": "none", "legendgroup": "", "line": { "width": 0 }, "mode": "lines", "showlegend": false, "type": "scatter", "x": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30 ], "y": [ -0.03323671121351609, -0.2875432040208057, -0.2875432040208057, -0.2875432040208057, -0.2875432040208057, -0.2875432040208057, -0.2875432040208057, -0.2875432040208057, -0.2875432040208057, -0.31442989607489036, -0.31442989607489036, -0.31442989607489036, -0.31442989607489036, -0.31442989607489036, -0.31442989607489036, -0.31442989607489036, -0.31442989607489036, -0.38631651824481084, -0.5284939808767951, -0.6883284058235001, -0.9119599224158144, -1.1696881359905962, -1.2380410084305586, -1.3679834323558528, -1.5010746244595108, -1.8936296527007572, -2.3875551914462294, -2.5939145584737933, -2.7818909360568456, -2.7818909360568456 ] }, { "fill": "tonexty", "fillcolor": "rgba(128,177,211,0.3)", "legendgroup": "objective value", "line": { "color": "rgba(128,177,211,1)" }, "mode": "lines", "name": "objective value", "type": "scatter", "x": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30 ], "y": [ -0.03323671121351609, -0.2875432040208057, -0.2875432040208057, -0.2875432040208057, -0.2875432040208057, -0.2875432040208057, -0.2875432040208057, -0.2875432040208057, -0.2875432040208057, -0.31442989607489036, -0.31442989607489036, -0.31442989607489036, -0.31442989607489036, -0.31442989607489036, -0.31442989607489036, -0.31442989607489036, -0.31442989607489036, -0.38631651824481084, -0.5284939808767951, -0.6883284058235001, -0.9119599224158144, -1.1696881359905962, -1.2380410084305586, -1.3679834323558528, -1.5010746244595108, -1.8936296527007572, -2.3875551914462294, -2.5939145584737933, -2.7818909360568456, -2.7818909360568456 ] }, { "fill": "tonexty", "fillcolor": "rgba(128,177,211,0.3)", "hoverinfo": "none", "legendgroup": "", "line": { "width": 0 }, "mode": "lines", "showlegend": false, "type": "scatter", "x": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30 ], "y": [ -0.03323671121351609, -0.2875432040208057, -0.2875432040208057, -0.2875432040208057, -0.2875432040208057, -0.2875432040208057, -0.2875432040208057, -0.2875432040208057, -0.2875432040208057, -0.31442989607489036, -0.31442989607489036, -0.31442989607489036, -0.31442989607489036, -0.31442989607489036, -0.31442989607489036, -0.31442989607489036, -0.31442989607489036, -0.38631651824481084, -0.5284939808767951, -0.6883284058235001, -0.9119599224158144, -1.1696881359905962, -1.2380410084305586, -1.3679834323558528, -1.5010746244595108, -1.8936296527007572, -2.3875551914462294, -2.5939145584737933, -2.7818909360568456, -2.7818909360568456 ] }, { "line": { "color": "rgba(253,180,98,1)", "dash": "dash" }, "mode": "lines", "name": "Optimum", "type": "scatter", "x": [ 1, 30 ], "y": [ -3.32237, -3.32237 ] } ], "layout": { "showlegend": true, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "text": "Model performance vs. # of iterations" }, "xaxis": { "title": { "text": "Iteration" } }, "yaxis": { "title": { "text": "Hartmann6" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# `plot_single_method` expects a 2-d array of means, because it expects to average means from multiple \n", "# optimization runs, so we wrap out best objectives array in another array.\n", "best_objectives = np.array([[trial.objective_mean for trial in experiment.trials.values()]])\n", "best_objective_plot = optimization_trace_single_method(\n", " y=np.minimum.accumulate(best_objectives, axis=1),\n", " optimum=hartmann6.fmin,\n", " title=\"Model performance vs. # of iterations\",\n", " ylabel=\"Hartmann6\",\n", ")\n", "render(best_objective_plot)" ] } ], "metadata": { "kernelspec": { "display_name": "python3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.11" } }, "nbformat": 4, "nbformat_minor": 2 }