{ "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 05-14 21:18:29] ipy_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 05-14 21:18:29] 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 05-14 21:18:29] ax.service.managed_loop: Started full optimization with 30 steps.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:18:29] ax.service.managed_loop: Running optimization trial 1...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:18:29] ax.service.managed_loop: Running optimization trial 2...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:18:29] ax.service.managed_loop: Running optimization trial 3...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:18:29] ax.service.managed_loop: Running optimization trial 4...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:18:29] ax.service.managed_loop: Running optimization trial 5...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:18:29] ax.service.managed_loop: Running optimization trial 6...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:18:29] ax.service.managed_loop: Running optimization trial 7...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:18:34] ax.service.managed_loop: Running optimization trial 8...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:18:38] ax.service.managed_loop: Running optimization trial 9...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:18:41] ax.service.managed_loop: Running optimization trial 10...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:18:45] ax.service.managed_loop: Running optimization trial 11...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:18:48] ax.service.managed_loop: Running optimization trial 12...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:18:51] ax.service.managed_loop: Running optimization trial 13...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:18:55] ax.service.managed_loop: Running optimization trial 14...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:18:58] ax.service.managed_loop: Running optimization trial 15...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:19:01] ax.service.managed_loop: Running optimization trial 16...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:19:04] ax.service.managed_loop: Running optimization trial 17...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:19:07] ax.service.managed_loop: Running optimization trial 18...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:19:10] ax.service.managed_loop: Running optimization trial 19...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:19:14] ax.service.managed_loop: Running optimization trial 20...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:19:17] ax.service.managed_loop: Running optimization trial 21...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:19:20] ax.service.managed_loop: Running optimization trial 22...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:19:23] ax.service.managed_loop: Running optimization trial 23...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:19:26] ax.service.managed_loop: Running optimization trial 24...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:19:29] ax.service.managed_loop: Running optimization trial 25...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:19:31] ax.service.managed_loop: Running optimization trial 26...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:19:34] ax.service.managed_loop: Running optimization trial 27...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:19:37] ax.service.managed_loop: Running optimization trial 28...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:19:40] ax.service.managed_loop: Running optimization trial 29...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:19:41] ax.service.managed_loop: Running optimization trial 30...\n" ] } ], "source": [ "best_parameters, values, experiment, model = optimize(\n", " parameters=[\n", " {\n", " \"name\": \"x1\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " \"value_type\": \"float\", # Optional, defaults to inference from type of \"bounds\".\n", " \"log_scale\": False, # Optional, defaults to False.\n", " },\n", " {\n", " \"name\": \"x2\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x3\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x4\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x5\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x6\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " ],\n", " experiment_name=\"test\",\n", " objective_name=\"hartmann6\",\n", " evaluation_function=hartmann_evaluation_function,\n", " minimize=True, # Optional, defaults to False.\n", " parameter_constraints=[\"x1 + x2 <= 20\"], # Optional.\n", " outcome_constraints=[\"l2norm <= 1.25\"], # Optional.\n", " total_trials=30, # Optional.\n", ")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "And we can introspect optimization results:" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'x1': 0.21134335953178837,\n", " 'x2': 0.15774301412300856,\n", " 'x3': 0.4768948317845676,\n", " 'x4': 0.27901462844224617,\n", " 'x5': 0.3120886395661859,\n", " 'x6': 0.6663345408614724}" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "best_parameters" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'hartmann6': -3.318167378640171, 'l2norm': 0.9572033066650033}" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "means, covariances = values\n", "means" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "For comparison, minimum of Hartmann6 is:" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "-3.32237" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "hartmann6.fmin" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 3. Plot results\n", "Here we arbitrarily select \"x1\" and \"x2\" as the two parameters to plot for both metrics, \"hartmann6\" and \"l2norm\"." ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "autocolorscale": false, "autocontour": true, "colorbar": { "tickfont": { "size": 8 }, "ticksuffix": "", "x": 0.45, "y": 0.5 }, "colorscale": [ [ 0.0, "rgb(247,252,253)" ], [ 0.125, "rgb(229,245,249)" ], [ 0.25, "rgb(204,236,230)" ], [ 0.375, "rgb(153,216,201)" ], [ 0.5, "rgb(102,194,164)" ], [ 0.625, "rgb(65,174,118)" ], [ 0.75, "rgb(35,139,69)" ], [ 0.875, "rgb(0,109,44)" ], [ 1.0, "rgb(0,68,27)" ] ], "contours": { "coloring": "heatmap" }, "hoverinfo": "x+y+z", "ncontours": 25, "type": "contour", "x": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "xaxis": "x", "y": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "yaxis": "y", "z": [ [ -2.441780366037762, -2.507162741921352, -2.568687195027572, -2.625728545550768, -2.6776823245417245, -2.7239802917699025, -2.764104812373446, -2.7976021612505786, -2.8240953271906655, -2.843296397627499, -2.855017405102821, -2.8591777149203157, -2.8558063098482718, -2.8450383732870486, -2.8271067062733097, -2.8023292860489004, -2.7710945645511083, -2.7338460036260592, -2.6910670192808124, -2.643267117771256, -2.590969655091383, -2.5347013840335886, -2.4749837745436785, -2.412325988513039, -2.347219338689325, -2.280133044232346, -2.211511098359797, -2.14177007688751, -2.071297734289522, -2.0004522527398163, -1.9295620276414924, -1.8589258895682317, -1.7888136770617544, -1.7194670873606017, -1.6511007430342057, -1.5839034218647514, -1.5180394053688155, -1.4536499082772671, -1.390854557265743, -1.3297528923954394, -1.2704258692051762, -1.2129373432896902, -1.1573355225872337, -1.1036543755478272, -1.0519149859158612, -1.0021268470828222, -0.9542890908856754, -0.9083916473759013, -0.8644163334925945, -0.8223378697650403 ], [ -2.479631773927292, -2.5469525110289304, -2.610314789355253, -2.669054261435826, -2.722527944022682, -2.7701318531511667, -2.8113168979236467, -2.8456031208350607, -2.8725933925656664, -2.8919870780137185, -2.903592274888849, -2.9073339933985904, -2.903256170623422, -2.8915169394896125, -2.872378028616027, -2.846190042830292, -2.8133756058364634, -2.774412106288051, -2.7298153176797904, -2.6801246633166067, -2.625890485795898, -2.5676633928263346, -2.505985577352645, -2.4413839211572648, -2.3743646578575146, -2.305409370314256, -2.2349721131686056, -2.16347747388075, -2.0913194098666676, -2.018860722387578, -1.946433048569978, -1.8743372709883364, -1.8028442597101195, -1.7321958748485302, -1.6626061688100784, -1.5942627368757278, -1.5273281727937782, -1.4619415929317636, -1.398220198426231, -1.3362608498492012, -1.2761416333027955, -1.217923400665977, -1.1616512700294017, -1.1073560752348741, -1.0550557559367197, -1.0047566817693658, -0.9564549060743062, -0.9101373462437734, -0.865782889103552, -0.8233634209102336 ], [ -2.51346325555711, -2.5826026807327525, -2.647691857557284, -2.7080267118502914, -2.762924996716617, -2.8117464561374015, -2.8539104638601063, -2.888911110697845, -2.9163316258279717, -2.9358594039888857, -2.9472998255792096, -2.9505852317373695, -2.945776450977009, -2.933056435857166, -2.9127173417643983, -2.8851433154832575, -2.8507913908182574, -2.8101724683517553, -2.7638337128655825, -2.7123430868384673, -2.6562762738291386, -2.5962059505659307, -2.532693208854156, -2.4662808632354385, -2.3974883694992744, -2.326808096118092, -2.254702719279092, -2.1816035435538788, -2.1079095800547205, -2.0339872404101573, -1.9601705276169974, -1.886761623980077, -1.8140317923665703, -1.742222520369022, -1.6715468481501157, -1.602190830132821, -1.5343150886320847, -1.468056424269197, -1.403529453778592, -1.3408282507802225, -1.2800279693796401, -1.2211864341780836, -1.1643456835066797, -1.1095334555090073, -1.0567646091356435, -1.0060424742265555, -0.9573601266778111, -0.9107015862480294, -0.8660429358855646, -0.8233533625716594 ], [ -2.5428415631683015, -2.613647616534845, -2.68032171676271, -2.7421203052874947, -2.7983217876852637, -2.8482496516293914, -2.891292168766425, -2.9269182815586197, -2.954692542089318, -2.974291558703216, -2.9855195202206204, -2.988317848345581, -2.9827659600825003, -2.969072977882683, -2.947562252197909, -2.9186515302824114, -2.8828316006690287, -2.840645604226645, -2.7926703642136, -2.7395003571067056, -2.6817344422842626, -2.619965181934627, -2.554770452615625, -2.4867070147876578, -2.416305720723873, -2.344068076222051, -2.270463912160469, -2.195929960825565, -2.12086916620431, -2.0456505864136783, -1.9706097704613799, -1.896049511274581, -1.8222408931424707, -1.7494245650647953, -1.6778121825552992, -1.6075879696746491, -1.5389103608288826, -1.4719136884505213, -1.4067098883030513, -1.3433901989846762, -1.2820268363879328, -1.2226746274985605, -1.1653725910706354, -1.1101454554575212, -1.0570051062595898, -1.0059519585109684, -0.9569762499028511, -0.9100592530593898, -0.8651744061694011, -0.8222883623572583 ], [ -2.5673476114218476, -2.639633220840889, -2.7077162631310516, -2.770815082307684, -2.8281696584786173, -2.879067985371379, -2.9228682063471214, -2.9590154529024426, -2.9870571953999816, -3.0066610618289547, -3.0176319305969606, -3.019921968947007, -3.0136303681983883, -2.998992941139933, -2.9763639815649565, -2.9461938081626298, -2.909005257641189, -2.8653714992799193, -2.815896493960911, -2.7611985830397314, -2.7018971680268775, -2.6386021798025494, -2.571905943505163, -2.5023770440004576, -2.4305558360938786, -2.356951295392928, -2.2820389566229253, -2.2062597310106424, -2.1300194318113244, -2.053688867611328, -1.9776043877181169, -1.9020687838595058, -1.8273524685408589, -1.7536948635661542, -1.681305943059957, -1.6103678843310703, -1.5410367874775974, -1.4734444310382933, -1.407700036469509, -1.343892018937264, -1.2820897059914866, -1.22234500923016, -1.1646940371433585, -1.1091586400088462, -1.0557478800410354, -1.004459422010799, -0.9552808412888993, -0.9081908477475764, -0.8631604252086864, -0.8201538871747689 ], [ -2.5865890318958145, -2.660130670100208, -2.7294106489993837, -2.7936120800834967, -2.8519388645181714, -2.9036453455021123, -2.9480611407175146, -2.9846094226867823, -3.0128229595494425, -3.0323629805019423, -3.0430372163825563, -3.044809915145737, -3.0378004091059383, -3.022270588960314, -2.998604166078056, -2.967281736569953, -2.928855334534091, -2.8839249868332577, -2.8331185185876775, -2.777074930870441, -2.716431147151863, -2.6518117005044477, -2.583820883719919, -2.513036917342574, -2.44000775298753, -2.3652481952135926, -2.2892380841406856, -2.212421330029849, -2.1352056305117815, -2.0579627325008465, -1.9810291256796975, -1.9047070742202832, -1.8292659092842543, -1.7549435177229329, -1.681947972961033, -1.6104592628162075, -1.5406310763643827, -1.4725926182001472, -1.4064504237793893, -1.3422901541316854, -1.2801783522169219, -1.220164146668755, -1.1622808916885548, -1.1065477344847592, -1.0529711039387222, -1.0015461161559327, -0.9522578942621538, -0.9050828012544778, -0.8599895859413633, -0.816940443026497 ], [ -2.6002135729395, -2.674751712542273, -2.7449802950198507, -2.810051729297489, -2.8691379524524243, -2.9214630195435447, -2.966330639618344, -3.0031445790155002, -3.0314260568115685, -3.050833067341551, -3.061178364311009, -3.0624390213252903, -3.0547538226231667, -3.0384087855470563, -3.0138140888069893, -2.98147697209078, -2.941974672323293, -2.8959300022245706, -2.8439907167280745, -2.7868128188357444, -2.7250474477023277, -2.659330811381146, -2.5902766189379576, -2.5184705299900054, -2.4444662212058392, -2.368782746062616, -2.2919029287433164, -2.2142725847547213, -2.1363004013686906, -2.0583583425820575, -1.9807824680038006, -1.90387407458025, -1.8279010856342472, -1.7530996242788062, -1.679675718575587, -1.6078070943639744, -1.5376450188723814, -1.4693161643242365, -1.4029244659785114, -1.3385529535574006, -1.276265538930156, -1.216108746333342, -1.1581133743813705, -1.1022960817135763, -1.0486608903750092, -0.9972006029759295, -0.9478981313472248, -0.9007277358333274, -0.8556561755632306, -0.8126437710367738 ], [ -2.6079220059622332, -2.683164154481433, -2.7540590143229133, -2.819734439251902, -2.879336384470095, -2.932063832816608, -2.9771988261928795, -3.014129444441836, -3.0423690292265784, -3.061575515181046, -3.0715684891975408, -3.0723378329651867, -3.0640399488178165, -3.046981645681574, -3.0215952002549242, -2.988409584010967, -2.9480222058883365, -2.901073823064879, -2.848227658075416, -2.7901527257840204, -2.7275108887958135, -2.660947020559446, -2.5910816828048793, -2.5185058109674583, -2.4437769966389253, -2.3674170402438666, -2.289910515280797, -2.2117041386368643, -2.1332067824337884, -2.0547899943982704, -1.9767889182188407, -1.8995035245589855, -1.8232000786823659, -1.7481127829897907, -1.674445542878724, -1.602373812733351, -1.5320464859140221, -1.4635877986186534, -1.3970992226393406, -1.3326613264911051, -1.2703355882578453, -1.210166146873926, -1.152181481500993, -1.096396011224018, -1.042811609517273, -0.991419029855527, -0.9421992404962818, -0.8951246678624081, -0.8501603491327037, -0.8072649956242652 ], [ -2.609478994189222, -2.6851056484668545, -2.7563561189883696, -2.8223412079984067, -2.882188558511263, -2.9350791719820153, -2.980279535035304, -3.017167119285235, -3.0452514101516535, -3.0641930943518103, -3.073819773682845, -3.0741332738216522, -3.0653046860767494, -3.0476570252015636, -3.021639062573891, -2.987795521924329, -2.946738125921343, -2.899120151445326, -2.8456154508806466, -2.78690184409378, -2.72364832082549, -2.656505382055205, -2.58609789896309, -2.513019969729065, -2.4378313580208646, -2.3610551853350144, -2.2831766193520164, -2.204642354307313, -2.125860720435991, -2.047202290959927, -1.9690008793547353, -1.8915548386401115, -1.8151285895475306, -1.7399543166200064, -1.6662337812981738, -1.594140209359248, -1.5238202170715174, -1.455395746382239, -1.3889659845708087, -1.3246092482236522, -1.2623848152332218, -1.20233469187699, -1.144485304957156, -1.088849111530456, -1.0354261209690323, -0.9842053260024983, -0.935166041026958, -0.8882791473536862, -0.8435082462327526, -0.8008107214460187 ], [ -2.604720813578056, -2.6803940471264833, -2.7516700062877404, -2.8176508697926828, -2.8774548729856626, -2.930253595321534, -2.9753055645893745, -3.0119837872311033, -3.0397982318917456, -3.058414813718217, -3.067669665021141, -3.067574882023159, -3.0583124129328607, -3.040215957498508, -3.013744308983302, -2.9794512427445463, -2.9379563985275445, -2.889919782946386, -2.836020815985214, -2.7769417946923687, -2.7133551897985457, -2.6459140885140426, -2.575245153727849, -2.501943575887272, -2.4265695999215766, -2.3496462990996596, -2.2716583382223883, -2.1930515225531892, -2.114232969957683, -2.035571775089313, -1.957400058674752, -1.88001431391582, -1.803676977105751, -1.7286181617412972, -1.6550375054052708, -1.5831060870043865, -1.5129683789472648, -1.444744204806595, -1.378530678128274, -1.3144041024788338, -1.2524218166707293, -1.192623972459078, -1.1350352349271842, -1.0796663983224248, -1.0265159123108214, -0.9755713155198702, -0.9268105748652262, -0.8802033305334611, -0.8357120476433189, -0.7932930765540691 ], [ -2.593559835333017, -2.668933594182622, -2.7398965561884867, -2.8055510647297233, -2.8650154054568198, -2.9174610265935423, -2.962146850439308, -2.998448112616601, -3.025879791012431, -3.0441152714357176, -3.0529992063159312, -3.052551688394847, -3.0429611441990523, -3.0245659815046704, -2.997828178703532, -2.9633035851909657, -2.921613162477948, -2.873417723934145, -2.819397112951598, -2.7602337312866454, -2.696599865820062, -2.62914814746009, -2.558504523284722, -2.4852632231148712, -2.4099833045440655, -2.3331864483651708, -2.255355746135888, -2.176935275383997, -2.0983302990039348, -2.019907956851349, -1.9419983418869757, -1.8648958723225373, -1.7888608864336677, -1.714121399006798, -1.6408749684828576, -1.5692906322578395, -1.4995108746726222, -1.4316535982415923, -1.3658140738359625, -1.3020668500022161, -1.240467605472152, -1.181054932295067, -1.1238520399601897, -1.0688683734299507, -1.0161011402149611, -0.9655367435228919, -0.9171521201361965, -0.870915983044412, -0.8267899699992192, -0.7847297000975126 ], [ -2.5759865417585046, -2.650717384098743, -2.7210321946159137, -2.7860420344461128, -2.844874503221931, -2.8967101247337785, -2.940816558698617, -2.976577951306595, -3.003518726835028, -3.021321744239435, -3.029839819291274, -3.029098486644121, -3.0192881842401, -3.000746146445386, -2.973930889804134, -2.9393935565005176, -2.8977499898376475, -2.8496559898941407, -2.795786737230775, -2.736820391677563, -2.673425397001902, -2.606250879487491, -2.535919551731392, -2.4630226173005356, -2.3881162657653343, -2.311719430959314, -2.234312553022982, -2.15633713777164, -2.078195947848178, -2.000253691738265, -1.9228381013428884, -1.8462413081993096, -1.770721443930748, -1.6965044030516843, -1.6237857165574845, -1.5527324932958706, -1.483485393327789, -1.416160603614567, -1.3508517916213223, -1.2876320169597537, -1.2265555851221426, -1.167659830771156, -1.1109668210166654, -1.056484971683295, -1.0042105717953422, -0.954129213414826, -0.9062171255940077, -0.8604424125737853, -0.8167661974985858, -0.77514367385047 ], [ -2.552069770031273, -2.625826846142642, -2.695172407725948, -2.75923406087322, -2.817157161175433, -2.8681397394648998, -2.9114658697875773, -2.9465347578828527, -2.9728843064587633, -2.990208539144782, -2.9983678890209413, -2.9973908200722623, -2.987465657800386, -2.9689231643272853, -2.942212418181748, -2.907873688527173, -2.866511741688308, -2.818771875931974, -2.765319725542402, -2.7068249685763073, -2.64394858811474, -2.5773331583155814, -2.5075956157776753, -2.4353220371413276, -2.3610640233243205, -2.285336366323085, -2.208615738400271, -2.1313401948528847, -2.053909322008858, -1.976684893796781, -1.8999919251631148, -1.8241200303907608, -1.7493250102411055, -1.6758306047287774, -1.6038303589321905, -1.5334895580543038, -1.4649471953556508, -1.398317942868843, -1.3336941001827947, -1.2711475012154334, -1.2107313628983936, -1.152482063167488, -1.0964208386625252, -1.042555395144146, -0.9908814258804828, -0.9413840351807108, -0.8940390658872313, -0.8488143310131719, -0.8056707508527317, -0.7645633978222446 ], [ -2.521955119840227, -2.5944285314798, -2.6625064804054257, -2.7253399065943644, -2.782099135317712, -2.8320068903108857, -2.8743702039502548, -2.908608567963829, -2.9342767415445667, -2.9510812361829393, -2.9588894959044607, -2.957730693517211, -2.9477875648280065, -2.9293800041484044, -2.902942665489004, -2.8689996921012777, -2.828139551862686, -2.7809920865344457, -2.7282088503164075, -2.6704470041817308, -2.6083565532329436, -2.542570502420112, -2.473697457303042, -2.4023162277107164, -2.3289720526445272, -2.2541741292608917, -2.1783941868016283, -2.102065894920483, -2.025584935209718, -1.9493095962070806, -1.8735617772886275, -1.7986283069985842, -1.72476249764307, -1.6521858712519328, -1.5810900029510888, -1.5116384368927376, -1.4439686375402694, -1.3781939455881442, -1.314405513332705, -1.252674199064373, -1.1930524041524107, -1.1355758400387788, -1.0802652154235675, -1.027127836571398, -0.9761591159449468, -0.9273439863181303, -0.8806582191722239, -0.8360696475636149, -0.7935392947984694, -0.7530224111840214 ], [ -2.4858610220602544, -2.5567681244102793, -2.62330900796022, -2.68466355306194, -2.74003285613065, -2.7886700418885035, -2.829910264897958, -2.8631973945791964, -2.8881056433962726, -2.9043549573015386, -2.9118192234283216, -2.9105265438464523, -2.9006513802655975, -2.8824993990664054, -2.8564869674942477, -2.8231179122081667, -2.7829600772988856, -2.7366235803050607, -2.684741844690387, -2.627955790143238, -2.5669011054695017, -2.502198293568658, -2.4344450939643374, -2.3642108886469018, -2.2920327355483208, -2.2184127246423837, -2.143816401723137, -2.0686720492676316, -1.9933706511449991, -1.918266398656092, -1.8436776204153476, -1.7698880389489235, -1.6971482735041488, -1.6256775222151814, -1.5556653680625296, -1.4872736624811136, -1.4206384483874088, -1.3558718910993948, -1.2930641913373417, -1.2322854593909107, -1.173587533751866, -1.117005731145305, -1.0625605180271227, -1.0102590963144766, -0.9600968984332237, -0.9120589887419581, -0.866121370065883, -0.8222521954743609, -0.7804128865949924, -0.7405591606983493 ], [ -2.444072251412943, -2.513161822465989, -2.5779288227396098, -2.6375864735925205, -2.6913710190608744, -2.7385701854493605, -2.7785509891058062, -2.810784596139865, -2.8348664798099117, -2.8505306253879157, -2.8576568965996154, -2.8562710386744974, -2.846537361408123, -2.8287449607509387, -2.8032891632670545, -2.7706503668808526, -2.731372420175375, -2.6860422240216235, -2.635271604944527, -2.579681926893421, -2.519891489291131, -2.4565055141564884, -2.3901084130269723, -2.321257995865728, -2.250481299987518, -2.1782717521126216, -2.105087416937237, -2.031350124272282, -1.9574453010995347, -1.8837223641487109, -1.8104955530717883, -1.7380451045892766, -1.6666186847851574, -1.5964330106603737, -1.5276756036552994, -1.4605066275637277, -1.3950607714381547, -1.331449145014991, -1.269761160089017, -1.2100663763172808, -1.1524162942692926, -1.0968460822725845, -1.0433762268142486, -0.9920140990197666, -0.9427554320938909, -0.895585706621266, -0.8504814423256197, -0.8074113963091398, -0.7663376689684465, -0.7272167197380968 ], [ -2.396931247920036, -2.463985699551481, -2.5267762379043566, -2.5845526742674894, -2.636589450275145, -2.6822116987737004, -2.720820719564692, -2.7519168144931667, -2.7751178123930775, -2.790172057748891, -2.796965051724579, -2.7955193692801785, -2.785988023335794, -2.7686421046269336, -2.743854142345924, -2.7120789941907337, -2.6738340681599375, -2.6296803532902593, -2.5802052542588014, -2.526007749187407, -2.467686018571536, -2.405827451576119, -2.341000805530179, -2.273750241994951, -2.204590957328887, -2.134006144695359, -2.062445053806266, -1.9903219464399609, -1.918015775967331, -1.8458704461131206, -1.7741955275292094, -1.7032673306054122, -1.6333302496700886, -1.5645983077858485, -1.4972568431526818, -1.4314642880761008, -1.3673539998630235, -1.305036110143142, -1.2445993651936793, -1.1861129350469564, -1.129628173622339, -1.0751803159576863, -1.0227901019097778, -0.9724653185191217, -0.9242022556511968, -0.8779870715804718, -0.83379706691821, -0.7916018667343154, -0.7513645119195338, -0.7130424618060713 ], [ -2.344828012137926, -2.409663958650568, -2.4703096331160967, -2.526053636412727, -2.5762104917884985, -2.6201443392367856, -2.6572920581221395, -2.6871840114737715, -2.7094608852932813, -2.7238854786682523, -2.7303487151021004, -2.728869592915693, -2.7195892972745557, -2.7027602345554893, -2.6787312209123275, -2.6479303326154864, -2.6108469343250973, -2.5680141723573753, -2.5199928570161187, -2.467357276570217, -2.4106831649217346, -2.3505378170242013, -2.287472207146116, -2.2220148951458283, -2.1546674823014924, -2.0859013820994488, -2.016155689495214, -1.94583595621335, -1.8753137048949433, -1.8049265388798275, -1.7349787260406853, -1.6657421540368134, -1.5974575706865135, -1.5303360371051653, -1.4645605331171905, -1.4002876645259765, -1.3376494303924096, -1.2767550157708882, -1.2176925815846178, -1.1605310286591153, -1.1053217175116181, -1.0521001294255985, -1.0008874577158273, -0.9516921209825577, -0.9045111926248603, -0.8593317429833218, -0.8161320922532238, -0.7748829737897818, -0.7355486086482232, -0.6980876931943474 ], [ -2.2881894328485886, -2.350656988279662, -2.409022306601351, -2.4626140592100834, -2.510787756070405, -2.5529471615664883, -2.5885651281865187, -2.61720228243494, -2.638522205464051, -2.65230207579822, -2.658438126903277, -2.6569456958411926, -2.6479540905486174, -2.631696948850205, -2.60849913253266, -2.578761415587485, -2.5429442440495116, -2.5015516843224295, -2.4551164050286283, -2.4041862348814944, -2.3493125681257068, -2.2910406813572166, -2.229901886314494, -2.166407362490622, -2.101043475737785, -2.034268379684041, -1.9665097041984925, -1.8981631512833221, -1.8295918385280086, -1.7611262506284948, -1.6930646788370773, -1.6256740458127386, -1.5591910289267787, -1.4938234086600406, -1.4297515804517735, -1.3671301784312972, -1.3060897680947408, -1.246738572384956, -1.1891642019734856, -1.133435365985871, -1.0796035440876008, -1.0277046048658338, -0.9777603588927615, -0.9297800378136767, -0.8837616933285308, -0.8396935120817359, -0.7975550442851873, -0.7573183454127626, -0.7189490315546183, -0.6824072500370038 ], [ -2.227468787345408, -2.2874499573965696, -2.343430279101748, -2.394778999502831, -2.440892730741791, -2.4812147126645994, -2.5152534779784346, -2.5425995773909023, -2.5629391809778115, -2.5760636447062675, -2.581874473423251, -2.58038349297681, -2.5717084388712825, -2.556064540971035, -2.5337529824897205, -2.5051472864023197, -2.470678707703933, -2.4308215985018373, -2.3860795098087717, -2.3369725556654743, -2.2840263396146048, -2.2277625592078305, -2.16869127087368, -2.107304711852327, -2.0440725285203563, -1.9794382404612387, -1.9138167675742812, -1.8475928560762267, -1.7811202533661468, -1.7147214981104075, -1.6486882085793506, -1.5832817681266669, -1.518734321204109, -1.4552500062466462, -1.3930063631392335, -1.3321558628831416, -1.2728275156579396, -1.2151285208830198, -1.1591459292689286, -1.1049482923537248, -1.0525872797620026, -1.0020992485077667, -0.9535067521742553, -0.9068199808162687, -0.8620381250058229, -0.8191506596313918, -0.7781385449100224, -0.7389753436187569, -0.7016282548323045, -0.6660590654982934 ], [ -2.163135947940295, -2.2205424398398512, -2.2740614651245075, -2.3231027185938538, -2.367103416362484, -2.4055455529123893, -2.4379725506553855, -2.4640041594816826, -2.4833485878604833, -2.4958110738321637, -2.501298399611322, -2.4998191862423655, -2.4914801446172428, -2.476478771673272, -2.4550932269442574, -2.427670270961955, -2.3946121774343885, -2.356363455144377, -2.3133980640529916, -2.266207623297803, -2.2152909229364615, -2.161144890927134, -2.1042570432769474, -2.0450993595101834, -1.9841234725438264, -1.9217570342789179, -1.858401108317217, -1.7944284429608848, -1.730182486331517, -1.6659770177389872, -1.6020962831597898, -1.538795536497885, -1.47630190142997, -1.4148154806861142, -1.354510650435853, -1.2955374870233365, -1.2380232816913084, -1.1820741062530566, -1.1277763990301537, -1.0751985458856448, -1.0243924359514027, -0.9753949757690819, -0.9282295491170074, -0.8829074128490313, -0.839429021687313, -0.797785277138261, -0.7579586975856119, -0.7199245081943546, -0.6836516505704042, -0.6491037131932875 ], [ -2.0956686164436675, -2.150439329890612, -2.201446391835131, -2.2481393173128383, -2.2899949685149266, -2.3265329647141644, -2.3573304838380524, -2.382035488669816, -2.4003775094871687, -2.4121753023011845, -2.417340951784616, -2.4158802723060084, -2.4078896498224216, -2.393549730616546, -2.3731165692750693, -2.346910973715357, -2.315306819141379, -2.278719052656504, -2.2375919977144454, -2.1923884215831837, -2.1435796770880358, -2.0916370924605223, -2.03702467144404, -1.9801930832675059, -1.9215748667208123, -1.8615807396525426, -1.8005968892878625, -1.7389831147552919, -1.6770716969453412, -1.615166879156762, -1.5535448526885791, -1.4924541531247832, -1.4321163845964504, -1.3727272002515494, -1.3144574772319395, -1.257454633537697, -1.201844042239359, -1.147730505625412, -1.0951997581210071, -1.0443199722695968, -0.9951432468177626, -0.9477070600658732, -0.9020356752147165, -0.8581414875153761, -0.8160263056720676, -0.7756825622045522, -0.7370944493905869, -0.700238979018704, -0.6650869655210021, -0.6316039331557393 ], [ -2.0255447307857954, -2.0776431290761295, -2.1261104705535887, -2.1704350814462288, -2.2101321807992123, -2.244757603692342, -2.273920924674483, -2.297297166030844, -2.3146363554449834, -2.325770351754537, -2.330616566267048, -2.32917844668383, -2.321542834910918, -2.3078745319325873, -2.288408577609912, -2.263440862476851, -2.233317724989151, -2.1984251564772066, -2.1591781529706275, -2.116010639282316, -2.0693662672760675, -2.0196902737474978, -1.9674224842834114, -1.9129914723588843, -1.856809827840451, -1.7992704533466646, -1.7407437867510422, -1.6815758395325284, -1.6220869401600244, -1.5625710763920069, -1.5032957381353833, -1.4445021718126005, -1.386405967006598, -1.329197905838241, -1.2730450146951275, -1.2180917663739597, -1.1644613883409374, -1.1122572396447188, -1.0615642250710393, -1.012450220461604, -0.9649674877956413, -0.9191540627158881, -0.8750351007332595, -0.8326241714211828, -0.7919244925638289, -0.7529300984955449, -0.7156269388048668, -0.6799939052091093, -0.6460037857705017, -0.6136241467506554 ], [ -1.9532360572207617, -2.002647558021208, -2.0485677109075455, -2.090522362805486, -2.128063571780358, -2.1607817998594725, -2.188317522491143, -2.2103715689496486, -2.2267135735769386, -2.237188044340319, -2.2417177280918423, -2.240304151774186, -2.2330254235126423, -2.220031564347005, -2.2015377899634387, -2.1778162577454836, -2.1491868319996925, -2.1160074029688314, -2.0786642346127744, -2.037562727810449, -1.9931188857499424, -1.9457516703521203, -1.8958763519279531, -1.843898883822373, -1.7902112808435269, -1.7351879436492639, -1.6791828484540077, -1.6225275094611487, -1.5655296174433828, -1.508472259411234, -1.4516136293491262, -1.3951871470784636, -1.3394019103689732, -1.2844434137526979, -1.2304744756419062, -1.1776363230439069, -1.126049790261458, -1.0758165944073654, -1.027020656342379, -0.9797294407899839, -0.9339952939313096, -0.8898567607856323, -0.8473398681851421, -0.8064593622041558, -0.7672198915459243, -0.7296171306668349, -0.6936388383624899, -0.6592658491901149, -0.6264729964855358, -0.5952299668813414 ], [ -1.8792028965560164, -1.9259323708555545, -1.9693157043606955, -2.008914774456396, -2.0443168110862002, -2.075145207509101, -2.1010697697749023, -2.121815829463435, -2.137171698819532, -2.146994051448822, -2.151210954136062, -2.1498224407409574, -2.1428986895079705, -2.13057602189252, -2.113051067597123, -2.090573525167415, -2.063437985244288, -2.0319752766338066, -1.9965437519336606, -1.9575208612538606, -1.915295282082034, -1.8702597915503625, -1.8228049923854777, -1.7733139405385272, -1.722157672886366, -1.6696915972957653, -1.6162526832453126, -1.5621573769645933, -1.507700158412304, -1.453152656286561, -1.398763239888916, -1.3447570116654153, -1.2913361305913749, -1.238680403518886, -1.1869480886704225, -1.1362768623210948, -1.0867849061765185, -1.0385720789238175, -0.9917211408676452, -0.9462990054570344, -0.9023579958807579, -0.8599370887870423, -0.8190631306031626, -0.779752014928889, -0.7420098120897398, -0.7058338441975953, -0.6712137010091905, -0.6381321935285074, -0.6065662436959094, -0.5764877096720311 ], [ -1.8038897866345929, -1.8479592139272722, -1.8888316807600523, -1.9261034697186146, -1.9593952255550129, -1.9883615220888031, -2.012699893490083, -2.0321588478608787, -2.0465444272183007, -2.0557249637365897, -2.0596337989222206, -2.0582698682802065, -2.0516961947858414, -2.0400364653405556, -2.0234699720577956, -2.0022252749689335, -1.9765729799601115, -1.9468180264148889, -1.913291848863761, -1.8763447246769278, -1.8363385552293783, -1.7936402599795993, -1.7486158985528681, -1.7016255798134003, -1.6530191713500757, -1.6031327882575355, -1.5522860157855938, -1.5007798048775358, -1.4488949710853232, -1.3968912241282858, -1.3450066559421439, -1.2934576182030555, -1.2424389250388228, -1.1921243222395748, -1.1426671702429207, -1.094201294148367, -1.0468419597927106, -1.0006869403556244, -0.9558176429950171, -0.9123002696010747, -0.8701869899042618, -0.8295171088865618, -0.7903182137478475, -0.7526072885964452, -0.716391787591816, -0.6816706594959892, -0.648435318516857, -0.6166705579772109, -0.586355404744096, -0.5574639135291226 ], [ -1.7277220669779165, -1.7691683649885777, -1.807569447626218, -1.8425542925015086, -1.8737751556103543, -1.9009160216015784, -1.9237005460331689, -1.9418990864854229, -1.955334459186778, -1.9638861288473979, -1.9674926349657933, -1.9661521687074504, -1.9599213297436269, -1.948912200911033, -1.9332879697788086, -1.9132573921032354, -1.8890684282805181, -1.8610013901147529, -1.8293619152570297, -1.7944740470342977, -1.7566736457384164, -1.7163023011583567, -1.6737018612647692, -1.629209642727183, -1.583154347755421, -1.535852679449459, -1.4876066241346115, -1.4387013530798027, -1.3894036862466457, -1.3399610559321535, -1.2906009070815587, -1.2415304725738354, -1.1929368650440009, -1.1449874311280204, -1.097830318898592, -1.0515952143495555, -1.0063942078428765, -0.9623227562972201, -0.9194607114774347, -0.8778733889861139, -0.8376126564386106, -0.7987180228164847, -0.7612177141487386, -0.7251297234793452, -0.6904628255631398, -0.65721754890952, -0.62538709968879, -0.5949582336493495, -0.5659120735900045, -0.5382248711103417 ], [ -1.6511031759557764, -1.6899762035834733, -1.7259570467790073, -1.7587056213197676, -1.7879039757721222, -1.8132637413343016, -1.834533102111208, -1.8515029493906603, -1.8640119183802089, -1.871950065083221, -1.875261019021487, -1.873942537246247, -1.8680454786119716, -1.857671306438907, -1.8429683045614602, -1.8241267496563909, -1.8013733173230966, -1.7749650095258727, -1.7451828788852102, -1.7123257956674423, -1.6767044622300629, -1.6386358332534567, -1.598438053550801, -1.5564259824276823, -1.512907336802301, -1.4681794556304486, -1.4225266656531435, -1.3762182124969249, -1.3295067107627254, -1.2826270608697778, -1.2357957780393742, -1.1892106789852521, -1.1430508738516598, -1.0974770140907049, -1.0526317508283929, -1.0086403624854454, -0.9656115147486248, -0.9236381202593444, -0.8827982694882841, -0.8431562081265009, -0.8047633399058465, -0.7676592370441022, -0.7318726434889165, -0.6974224588116353, -0.6643186929886538, -0.6325633844172167, -0.6021514753604567, -0.5730716406217244, -0.5453070666281536, -0.5188361792772824 ], [ -1.5744125675851315, -1.6107732889098396, -1.6443949970707799, -1.6749667715386103, -1.7021986424466142, -1.725828145679445, -1.745626427029198, -1.761403615296594, -1.7730132152758498, -1.7803553212495513, -1.7833785152351764, -1.782080386350285, -1.7765066827992149, -1.7667491805798523, -1.7529424173499315, -1.7352594904931846, -1.7139071510463457, -1.689120437899505, -1.661157090499107, -1.6302919565411416, -1.5968115786464736, -1.5610091058716766, -1.523179636643995, -1.483616062749161, -1.4426054515529896, -1.400425976809591, -1.3573443874446158, -1.3136139882687123, -1.2694730959983482, -1.2251439274215692, -1.1808318732109992, -1.1367251099888942, -1.0929945041271085, -1.0497937628743164, -1.0072597913155277, -0.9655132170557055, -0.9246590481379202, -0.8847874333818901, -0.8459744979382613, -0.8082832303160636, -0.7717644004021229, -0.7364574910194275, -0.7023916283511766, -0.6695864990814291, -0.6380532443738574, -0.6077953228338719, -0.5788093363867135, -0.5510858145674236, -0.5246099540731135, -0.4993623115883017 ], [ -1.4980041567620432, -1.5319229501006826, -1.5632550272863124, -1.5917168616514008, -1.617044678486303, -1.6390002112265556, -1.6573760352121392, -1.6720002463734414, -1.6827402801346436, -1.6895057077561038, -1.6922498991579327, -1.6909704988725922, -1.6857087215765936, -1.6765475322282994, -1.663608829286522, -1.6470497933818409, -1.627058594100181, -1.6038496617919873, -1.5776587295256461, -1.5487378347594225, -1.5173504448102184, -1.4837668390263867, -1.4482598476299637, -1.4111010155295154, -1.3725572310503749, -1.3328878355848863, -1.2923422109915734, -1.2511578270156374, -1.2095587205982934, -1.1677543720747696, -1.125938939273492, -1.084290808799666, -1.042972423760129, -1.0021303483957706, -0.9618955321517324, -0.9223837383333979, -0.8836961054386243, -0.8459198123499225, -0.8091288216888579, -0.7733846786887058, -0.7387373458680053, -0.7052260565455086, -0.6728801728001592, -0.6417200358338271, -0.6117577988331584, -0.5829982343502904, -0.5554395099350824, -0.5290739272622063, -0.5038886213144202, -0.47986621732226786 ], [ -1.4222052228022477, -1.4537603197243487, -1.482879233424476, -1.509304083224466, -1.5327955408089433, -1.5531378743388422, -1.5701435983582088, -1.5836575367974282, -1.5935601316155643, -1.5997698651596204, -1.6022447065323813, -1.6009825380649663, -1.596020565238804, -1.5874337602873783, -1.575332433754887, -1.5598590660057647, -1.5411845583000074, -1.5195040778562767, -1.4950326726337293, -1.4680008208310125, -1.4386500602999603, -1.4072288177632368, -1.3739885302728976, -1.3391801244306987, -1.3030508943515309, -1.2658417982364156, -1.227785176144518, -1.1891028780855362, -1.1500047815838, -1.110687670942193, -1.0713344460506555, -1.032113626245386, -0.9931791139784887, -0.9546701835086582, -0.9167116611450736, -0.8794142654994062, -0.8428750785146637, -0.8071781205791657, -0.7723950056740925, -0.7385856551513583, -0.7057990513257406, -0.6740740145429784, -0.6434399897209058, -0.6139178305317516, -0.585520571386819, -0.5582541791957225, -0.5321182784990928, -0.5071068450203549, -0.4832088639550436, -0.46040895042431673 ], [ -1.3473157180695556, -1.376591760751709, -1.4035796159981104, -1.428045336933408, -1.449772340968662, -1.4685658204073364, -1.484256786677773, -1.4967055890109449, -1.5058047711689044, -1.5114811600225038, -1.5136971142077023, -1.512450897450346, -1.5077761783192183, -1.4997406954632422, -1.488444163398166, -1.4740155259420171, -1.4566096890863989, -1.436403879662263, -1.4135937795032336, -1.388389577749957, -1.3610120687547784, -1.3316889026756344, -1.3006510731545622, -1.268129703795818, -1.2343531741289322, -1.1995446073314944, -1.1639197266280334, -1.1276850750220473, -1.0910365836662095, -1.0541584674056468, -1.0172224214600099, -0.9803870904570375, -0.9437977797308976, -0.9075863786303615, -0.8718714662692324, -0.836758571460047, -0.8023405603153917, -0.7686981270250532, -0.7359003655022713, -0.7040054018469852, -0.6730610698245609, -0.6431056137549145, -0.6141684053071983, -0.5862706626750089, -0.5594261624457222, -0.5336419361651719, -0.5089189451297471, -0.4852527283118284, -0.46263401954282357, -0.4410493311481618 ], [ -1.273607939776044, -1.3006946491613613, -1.325637964913184, -1.3482262084824606, -1.3682638989651812, -1.385575601192472, -1.4000094347655452, -1.4114401128711682, -1.4197714001933621, -1.4249379049252666, -1.426906148044909, -1.4256748819366991, -1.421274659665011, -1.4137666857629716, -1.4032410086098013, -1.389814141320311, -1.3736262196646405, -1.3548378192463422, -1.3336265586779936, -1.3101836111618885, -1.2847102354168007, -1.257414420669603, -1.2285077218554132, -1.1982023422479187, -1.1667085029066184, -1.1342321224576901, -1.1009728172425606, -1.0671222208723634, -1.0328626136100354, -0.9983658455391963, -0.9637925328916697, -0.9292915039021918, -0.8949994688566412, -0.8610408883423324, -0.8275280138679109, -0.7945610757997841, -0.7622285947973939, -0.7306077944836078, -0.6997650948480727, -0.6697566677602576, -0.6406290378950883, -0.6124197142905792, -0.58515783962323, -0.5588648460699932, -0.5335551083039474, -0.5092365857276597, -0.4859114474760482, -0.463576675012461, -0.4422246382992747, -0.42184364254817397 ], [ -1.2013265290725064, -1.2263174796758736, -1.2493060635239026, -1.2701012604796933, -1.2885271108254568, -1.3044260648575068, -1.3176620200600686, -1.3281229380229687, -1.335722951556554, -1.3404038943294463, -1.3421362084875952, -1.340919208839074, -1.3367807052438803, -1.329776008242285, -1.3199863664737799, -1.3075169066245778, -1.2924941651055228, -1.2750633130627897, -1.2553851813125014, -1.233633189411328, -1.2099902745645805, -1.1846459033153565, -1.1577932339303438, -1.129626481789997, -1.1003385251374613, -1.070118775019933, -1.0391513215668975, -1.0076133590216092, -0.975673884127729, -0.9434926564275692, -0.9112194045524922, -0.8789932594684142, -0.8469423936646576, -0.8151838442442292, -0.7838234976059244, -0.7529562137411159, -0.7226660689620281, -0.6930266970121965, -0.6641017098838484, -0.6359451811962915, -0.6086021766054996, -0.5821093173626444, -0.5564953647735666, -0.5317818148986821, -0.5079834943470982, -0.48510914944107, -0.463162022344876, -0.4421404089575458, -0.42203819445780555, -0.4028453633624063 ], [ -1.1306887637384553, -1.15368026298106, -1.1748061825368092, -1.1938946133091957, -1.210787605213914, -1.2253440758662495, -1.2374424325992135, -1.2469828193329444, -1.253888916038128, -1.2581092371734064, -1.2596178945962282, -1.258414809099098, -1.2545253730336463, -1.247999585016724, -1.238910696515637, -1.2273534281662961, -1.2134418291007674, -1.1973068633768515, -1.1790938125533659, -1.1589595823999583, -1.1370699955277976, -1.1135971418344877, -1.0887168466577224, -1.062606303822694, -1.0354419083886146, -1.0073973125237288, -0.9786417179323863, -0.949338409764813, -0.919643529958103, -0.8897050823990693, -0.8596621580339481, -0.8296443649266123, -0.7997714461314944, -0.770153066948523, -0.7408887525263639, -0.7120679567455703, -0.6837702437310083, -0.6560655641092199, -0.6290146091523126, -0.6026692271590823, -0.5770728877509266, -0.5522611811512996, -0.5282623409278837, -0.5050977800717706, -0.48278263163838386, -0.46132628646086604, -0.44073292165146083, -0.42100201472018406, -0.4021288391563944, -0.38410493823430114 ], [ -1.0618851109091283, -1.0829751815637594, -1.1023318315984623, -1.1198007834169226, -1.1352406578973269, -1.14852549382287, -1.1595470053159724, -1.1682165048114312, -1.1744664334069432, -1.1782514563327966, -1.1795490971992484, -1.1783598998827989, -1.174707121585684, -1.1686359753139122, -1.160212454949113, -1.1495217905567927, -1.1366665941536356, -1.121764765268138, -1.104947230188519, -1.0863555885630736, -1.0661397365796685, -1.0444555283904888, -1.0214625280078238, -0.9973218936942303, -0.9721944267633327, -0.9462388072659531, -0.9196100305852701, -0.8924580516503986, -0.8649266373275497, -0.8371524225209503, -0.8092641615298772, -0.7813821631669986, -0.7536178959373945, -0.7260737481025747, -0.6988429266018323, -0.6720094784768982, -0.6456484185500286, -0.6198259475566852, -0.5945997456532812, -0.5700193271409608, -0.5461264433076585, -0.5229555214422241, -0.5005341292718235, -0.4788834552829213, -0.4580187965764333, -0.4379500470567783, -0.4186821798456697, -0.4002157188306703, -0.38254719519830904, -0.36566958565653596 ], [ -0.9950800058697311, -1.0143674699134388, -1.0320487339150568, -1.0479857438152052, -1.0620523282085763, -1.0741363747078219, -1.0841417677385958, -1.091990028530493, -1.0976216106212873, -1.1009968177919744, -1.1020963247025573, -1.1009212930258059, -1.097493087747813, -1.0918526100117636, -1.084059274652932, -1.0741896719778046, -1.0623359633527214, -1.0486040675863857, -1.0331116990399156, -1.0159863186214961, -0.997363055692098, -0.9773826532164278, -0.9561894811795135, -0.9339296552277756, -0.9107492893676927, -0.88679290383527, -0.8622020022144221, -0.8371138256719004, -0.8116602868372842, -0.7859670813788218, -0.7601529716695195, -0.7343292340434815, -0.7085992589434691, -0.683058291684651, -0.6577933005328167, -0.632882958243151, -0.6083977230574649, -0.5844000053429026, -0.5609444065098148, -0.5380780175116042, -0.5158407650505157, -0.49426579454391484, -0.4733798799042521, -0.45320385121755313, -0.433753032440634, -0.41503768225306326, -0.3970634321767643, -0.3798317170003789, -0.36334019340666157, -0.34758314349232267 ], [ -0.9304128229689945, -0.9479964843458828, -0.9640959882594151, -0.9785881701592218, -0.9913607798183601, -1.0023143558276968, -1.0113638835855334, -1.0184401884707395, -1.023491026872335, -1.02648184940902, -1.0273962219558976, -1.0262359005233652, -1.0230205657210656, -1.0177872318774739, -1.0105893550955436, -1.00149567336304, -0.9905888196017574, -0.9779637543717015, -0.9637260681803219, -0.9479902037524861, -0.93087764642606, -0.9125151266097422, -0.8930328726650849, -0.8725629463111959, -0.8512376862288265, -0.8291882793311101, -0.8065434734042585, -0.7834284396285971, -0.7599637889241646, -0.7362647421390118, -0.7124404507996551, -0.6885934624455383, -0.6648193224363266, -0.6412063025089723, -0.6178352452235862, -0.5947795127212281, -0.5721050278693496, -0.5498703958389588, -0.528127094387683, -0.506919721565591, -0.48628629016883873, -0.4662585589962265, -0.44686239177879705, -0.4281181355181489, -0.4100410108570052, -0.392641507992306, -0.3759257825063218, -0.35989604632091377, -0.3445509497616872, -0.3298859514445367 ], [ -0.8679990055328812, -0.8839769284256651, -0.8985873833834932, -0.9117208364236751, -0.9232777488682038, -0.9331701866331847, -0.9413232336480681, -0.9476761701196785, -0.9521833859522126, -0.9548150096611916, -0.955557242713321, -0.9544123979760095, -0.9513986489193555, -0.9465495036661888, -0.9399130251299461, -0.9315508252005578, -0.9215368667932584, -0.9099561119861277, -0.896903056970495, -0.8824801949457999, -0.8667964465493727, -0.8499655943053477, -0.8321047533965937, -0.8133329062857153, -0.7937695237298286, -0.7735332898311178, -0.7527409441249875, -0.7315062494382742, -0.7099390904074254, -0.6881447041586306, -0.6662230417258703, -0.6442682563154887, -0.622368312505198, -0.6006047088704602, -0.5790523053369354, -0.5577792457307889, -0.5368469655022814, -0.5163102743933574, -0.4962175038644927, -0.47661070934893157, -0.4575259178239133, -0.43899341174008044, -0.42103804099798925, -0.40367955537260847, -0.3869329505362544, -0.3708088215938907, -0.35531371880227014, -0.3404505008812788, -0.3262186820281576, -0.312614769405279 ], [ -0.8079313232526171, -0.8224002016876137, -0.8356128317664904, -0.8474721263561751, -0.8578901249245348, -0.8667893702023473, -0.8741041081628935, -0.8797812795030024, -0.8837812791875506, -0.8860784692627046, -0.8866614383391311, -0.885533008531449, -0.8827099972074328, -0.878222746841872, -0.8721144417549365, -0.8644402355149203, -0.8552662170559617, -0.8446682467464113, -0.8327306954465876, -0.8195451198929944, -0.8052089066347734, -0.7898239144817438, -0.7734951423378582, -0.7563294457210537, -0.7384343214858433, -0.7199167764743606, -0.7008822921603726, -0.6814338939059901, -0.6616713302740644, -0.6416903649654153, -0.621582181398149, -0.6014328977304062, -0.5813231882535301, -0.5613280055466527, -0.5415163965785521, -0.5219514050503737, -0.5026900516718789, -0.483783383726204, -0.46527658517286286, -0.4472091386335644, -0.42961503086592057, -0.41252299372517887, -0.3959567731116085, -0.3799354189735171, -0.36447359005681834, -0.34958186773995203, -0.3352670739479229, -0.3215325887859284, -0.30837866415819115, -0.2958027302319808 ], [ -0.7502812276349791, -0.76333584168914, -0.775239892212424, -0.7859076297388614, -0.7952616133297483, -0.8032338835219843, -0.8097669763546989, -0.8148147528475096, -0.8183430256171305, -0.820329971783645, -0.8207663283386843, -0.8196553723980149, -0.8170126941870248, -0.8128657753295809, -0.8072533891670683, -0.8002248434581836, -0.7918390887957452, -0.7821637182415486, -0.7712738848606744, -0.7592511639715576, -0.7461823860846506, -0.7321584648494242, -0.7172732420859469, -0.7016223693612611, -0.6853022427638755, -0.6684090046684126, -0.6510376234603481, -0.6332810594705471, -0.6152295227955686, -0.5969698262861236, -0.5785848348001628, -0.5601530098630427, -0.5417480471719236, -0.5234386029373668, -0.5052881038751595, -0.4873546347434712, -0.46969089665206054, -0.45234422893650295, -0.4353566871683101, -0.41876516983707535, -0.40260158636674803, -0.3868930593868549, -0.3716621545452137, -0.35692713159465206, -0.34270221099028264, -0.32899785077399546, -0.31582102908136145, -0.3031755281667723, -0.29106221639325924, -0.2794793251629284 ], [ -0.6951002784675773, -0.7068330319942295, -0.717515353592405, -0.7270717954755581, -0.7354344506921329, -0.7425439480020974, -0.7483503042110671, -0.7528136134701979, -0.7559045594338663, -0.7576047426187937, -0.7579068213293978, -0.756814469805343, -0.754342161725573, -0.7505147909343246, -0.7453671443533547, -0.7389432445803907, -0.7312955816414819, -0.7224842547028123, -0.7125760451986571, -0.7016434427849498, -0.6897636448397357, -0.677017549014993, -0.6634887567343335, -0.6492626036593996, -0.63442523112399, -0.6190627104366515, -0.6032602298368339, -0.5871013517970398, -0.570667346324542, -0.5540366039648006, -0.5372841303716958, -0.5204811226181314, -0.5036946258991215, -0.4869872679495777, -0.4704170673741732, -0.4540373111735807, -0.4378964960497065, -0.42203832757312365, -0.4065017709872434, -0.3913211472864375, -0.3765262682202035, -0.36214260401879006, -0.3481914778864532, -0.33469028164312764, -0.32165270729294715, -0.3090889897401765, -0.2970061563413975, -0.28540827946276726, -0.2742967286899485, -0.2636704198056461 ], [ -0.6424216166706638, -0.6529221512551706, -0.6624668547275017, -0.6709896163391913, -0.6784311481632814, -0.6847398246248899, -0.6898723945480647, -0.6937945494886264, -0.6964813376930374, -0.6979174185988899, -0.6980971579524036, -0.6970245680900207, -0.6947131016142865, -0.6911853096181009, -0.6864723778716364, -0.6806135560746212, -0.6736554964527068, -0.6656515186653824, -0.6566608182100826, -0.6467476352848813, -0.6359804004650325, -0.6244308726335475, -0.6121732834612683, -0.5992835014281179, -0.5858382269664446, -0.5719142288245807, -0.5575876302173925, -0.5429332517706327, -0.5280240166958672, -0.512930422078782, -0.4977200786533078, -0.4824573199981128, -0.4672028807602695, -0.45201364231122265, -0.436942443191495, -0.422037950818676, -0.4073445902243169, -0.39290252504861645, -0.3787476856520069, -0.36491183898772483, -0.3514226948048207, -0.3383040427989834, -0.32557591548075915, -0.31325477176780736, -0.3013536966115897, -0.28988261232155255, -0.27884849763557806, -0.2682556109902652, -0.25810571485565137, -0.2483982984066373 ], [ -0.5922614612763097, -0.6016163410151738, -0.6101045179346036, -0.6176683227894288, -0.6242562397575357, -0.629823610752734, -0.6343332260599157, -0.6377557885968554, -0.6400702439624082, -0.6412639732442775, -0.6413328499717919, -0.6402811663646968, -0.6381214370417405, -0.6348740906175756, -0.6305670612161971, -0.6252352929660363, -0.6189201711161916, -0.6116688936047892, -0.6035337967874983, -0.5945716486567232, -0.5848429223106792, -0.5744110617187759, -0.5633417510191305, -0.5517021977026777, -0.539560439098175, -0.526984680575137, -0.5140426728250147, -0.5008011344651897, -0.4873252250431903, -0.4736780723169558, -0.45992035647494767, -0.4461099527674277, -0.4323016328780016, -0.41854682430303036, -0.4048934260495167, -0.3913856781311713, -0.37806408164755245, -0.36496536568080407, -0.3521224968358201, -0.33956472697897166, -0.32731767458644967, -0.315403435083615, -0.3038407156265668, -0.2926449899304364, -0.28182866896988834, -0.2714012836504396, -0.26136967585983895, -0.2517381946442694, -0.24250889460201064, -0.23368173393850777 ], [ -0.5446206105696998, -0.55291307219629, -0.5604225761293593, -0.567099065658639, -0.57289801536456, -0.5777810180257406, -0.5817162704729251, -0.5846789486191357, -0.5866514661219238, -0.5876236152804646, -0.5875925925309038, -0.586562914058963, -0.5845462294946222, -0.581561043381676, -0.5776323551973375, -0.5727912292408808, -0.5670743058370136, -0.560523265122927, -0.5531842543069121, -0.5451072887831299, -0.5363456369242987, -0.5269551977944198, -0.5169938804455727, -0.5065209928887047, -0.49559664824022986, -0.48428119492445987, -0.47263467713180396, -0.4607163309813809, -0.4485841210088857, -0.436294320705791, -0.42390113989155465, -0.4114564007345445, -0.3990092632786948, -0.3866060004121086, -0.37428982135892275, -0.3621007420086768, -0.3500754997356268, -0.3382475098136315, -0.32664686010532007, -0.31530034039603017, -0.30423150254764697, -0.29346074755700613, -0.28300543560544744, -0.2728800152690203, -0.2630961682080202, -0.25366296585767323, -0.24458703488532563, -0.2358727284514981, -0.22752230060236567, -0.21953608141931924 ], [ -0.49948592965796546, -0.5067956924986903, -0.5134009756609188, -0.5192585697981777, -0.5243302204148714, -0.5285831131136951, -0.5319902693019898, -0.5345308449995883, -0.5361903290620369, -0.536960640695439, -0.5368401293308798, -0.5358334825554438, -0.5339515497631011, -0.5312110904815446, -0.527634457011058, -0.5232492211886235, -0.51808775489287, -0.5121867734647223, -0.5055868506516172, -0.4983319130833739, -0.49046872172221856, -0.482046347233106, -0.4731156458015746, -0.4637287415673441, -0.45393852151236413, -0.4437981483011426, -0.43336059618545586, -0.42267821462567956, -0.4118023237346031, -0.4007828450161406, -0.3896679701636925, -0.3785038699224339, -0.36733444423469486, -0.3562011141060213, -0.3451426548805989, -0.33419506992182857, -0.3233915030769554, -0.31276218777742204, -0.3023344301966697, -0.2921326235579944, -0.2821782904544281, -0.2724901499055772, -0.2630842058248406, -0.25397385359448266, -0.24517000153469137, -0.23668120419490868, -0.22851380457968062, -0.22067208263674254, -0.21315840757207383, -0.20597339180599494 ], [ -0.45683180892296105, -0.4632349391589099, -0.46900693930094595, -0.4741107430513285, -0.47851370646664915, -0.4821880054435963, -0.48511095413232974, -0.48726523890128814, -0.4886390656576969, -0.48922622137805694, -0.48902605339868344, -0.4880433721909059, -0.4862882849091845, -0.4837759679400111, -0.48052638705162565, -0.47656397365289793, -0.4719172652454817, -0.46661851753169814, -0.460703294946877, -0.4542100457178937, -0.4471796669770671, -0.4396550650163775, -0.4316807154516846, -0.42330222785514837, -0.41456591926612796, -0.4055184008567825, -0.3962061818649445, -0.3866752946758889, -0.37697094461681546, -0.36713718761279357, -0.35721663835011097, -0.3472502110162612, -0.33727689406072914, -0.32733355977294387, -0.3174548088312561, -0.30767284936357164, -0.29801740949740396, -0.28851568188059074, -0.27919229823430336, -0.2700693316632894, -0.2611663241958848, -0.25250033685647866, -0.24408601947970898, -0.2359356974528959, -0.22805947261090354, -0.2204653355980042, -0.2131592871430419, -0.2061454658597548, -0.1994262803728355, -0.19300254377544013 ], [ -0.41662157997824756, -0.4221904037192694, -0.4271964760537872, -0.43160822720827596, -0.4353980193257405, -0.43854246843610856, -0.4410226968457449, -0.44282451218623153, -0.44393851210968505, -0.4443601162192501, -0.44408952908734256, -0.44313163999909855, -0.4414958662843891, -0.43919594775825566, -0.43624969992738016, -0.43267873333773066, -0.4285081458619697, -0.42376619398805015, -0.4184839483975087, -0.41269493841311844, -0.40643478931851695, -0.39974085613940846, -0.3926518572261568, -0.38520751086249727, -0.377448178100142, -0.36941451503144895, -0.36114713771150475, -0.3526863028857752, -0.344071607541643, -0.3353417100678364, -0.3265340754755881, -0.31768474672025926, -0.3088281436817262, -0.29999689083929426, -0.29122167413825273, -0.2825311270133588, -0.27395174503142505, -0.26550782815778295, -0.2572214492517835, -0.24911244706370939, -0.24119844174292426, -0.2334948706751263, -0.22601504234330094, -0.21877020584671403, -0.2117696337090169, -0.2050207156528978, -0.19852906110620028, -0.1922986083255116, -0.18633173816964677, -0.18062939072017437 ], [ -0.37880887788377304, -0.3836119376438485, -0.38791582669130853, -0.39169387989508686, -0.39492291367563537, -0.3975834832286944, -0.3996600787463451, -0.4011412581846394, -0.40201971649160617, -0.4022922934183599, -0.40195992392647417, -0.4010275366563676, -0.3995039068666064, -0.39740147068418796, -0.3947361074690314, -0.3915268966820049, -0.3877958549735747, -0.38356765840753937, -0.3788693539192336, -0.3737300633787062, -0.36818068305231644, -0.3622535808624421, -0.3559822936344046, -0.34940122646366856, -0.3425453563908061, -0.3354499426821831, -0.3281502461295065, -0.32068125985563145, -0.31307745411611254, -0.3053725374960867, -0.29759923671598076, -0.2897890969831758, -0.28197230447459254, -0.2741775321277531, -0.2664318094772953, -0.2587604168232882, -0.2511868035765701, -0.24373253021364794, -0.2364172329017451, -0.22925860953438182, -0.22227242565432292, -0.2154725385372318, -0.20887093756491582, -0.20247779892914486, -0.19630155267089378, -0.19034896007046775, -0.18462519945334366, -0.17913395856009884, -0.17387753173725717, -0.168856920335124 ], [ -0.34333894045394553, -0.347440989756447, -0.35110283611714754, -0.3543021786162379, -0.35701978553611213, -0.3592396962857347, -0.36094937005005634, -0.3621397797637622, -0.3628054520370485, -0.3629444555277501, -0.36255834182242586, -0.3616520440581814, -0.3602337392291435, -0.3583146803738937, -0.3559090046745075, -0.3530335229984187, -0.349707495689471, -0.3459523985823605, -0.34179168238672397, -0.3372505278556013, -0.33235559858121566, -0.3271347928804995, -0.3216169960436239, -0.3158318341962685, -0.3098094311268469, -0.3035801696027214, -0.2971744588920828, -0.29062251037498843, -0.2839541232337415, -0.27719848223626453, -0.2703839695572319, -0.2635379924222123, -0.2566868281198904, -0.2498554876230501, -0.24306759870997796, -0.23634530910472007, -0.22970920977661602, -0.2231782781741254, -0.2167698408290364, -0.2104995544661159, -0.20438140449647624, -0.19842771956587235, -0.19264920067179725, -0.18705496325568416, -0.18165259061556727, -0.17644819696559377, -0.171446498487819, -0.16665089077201278, -0.16206353111582383, -0.15768542425476673 ] ], "zauto": true, "zmax": 3.0741332738216522, "zmin": -3.0741332738216522 }, { "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.1233846050933547, 0.11149343332607968, 0.10085537362835713, 0.09182982496818327, 0.08489660096047645, 0.0805848453002246, 0.07931343552242137, 0.08120790707391456, 0.08604078171706599, 0.09335547993252391, 0.10265809216297651, 0.11354342235558526, 0.12572874739617668, 0.13903353422815043, 0.153342967404287, 0.16857478488743285, 0.18465583389291546, 0.20150852094594934, 0.21904501577704197, 0.23716661434108435, 0.2557660113661838, 0.2747308374038035, 0.2939474083736036, 0.31330410413960547, 0.332694114878273, 0.3520174913994323, 0.37118254258990685, 0.3901066717504511, 0.4087167579516602, 0.4269491847902353, 0.4447496069389923, 0.46207253020372324, 0.47888076628914866, 0.4951448104322648, 0.5108421789308977, 0.5259567343969439, 0.5404780191246379, 0.554400611044712, 0.5677235120895735, 0.5804495751978552, 0.5925849734431825, 0.6041387127166232, 0.6151221878876193, 0.625548781299906, 0.6354335017333563, 0.6447926615023261, 0.6536435891027232, 0.6620043747120213, 0.669893645847125, 0.6773303705610985 ], [ 0.11052740750599184, 0.09848360341900608, 0.08755976880913498, 0.07810202807597579, 0.07063710518016542, 0.0658220239922774, 0.0642435048823326, 0.06611868172765414, 0.07116443773807901, 0.07879175074099239, 0.08840430090454617, 0.09955943002887749, 0.11198237260896388, 0.12551823374065138, 0.14007766817880402, 0.15559595723271538, 0.17200807230772333, 0.18923666131901684, 0.20718877785687595, 0.22575767212873551, 0.24482694351459916, 0.2642753280522368, 0.2839811617214301, 0.303826082472241, 0.3236978480012036, 0.34349231257084845, 0.3631146796791016, 0.3824801684703746, 0.4015142264123062, 0.42015240410038535, 0.43833998819539244, 0.45603146935151684, 0.4731899051571758, 0.48978622401590494, 0.5057985044289658, 0.5212112549837343, 0.5360147131302399, 0.5502041751941474, 0.5637793657229886, 0.5767438509425836, 0.5891044986041349, 0.6008709846624785, 0.6120553459054661, 0.6226715767425834, 0.6327352677669866, 0.642263283355106, 0.6512734754013264, 0.6597844302531101, 0.6678152459745953, 0.6753853371930054 ], [ 0.09861867199775937, 0.0865305909131327, 0.07541076948156432, 0.065562058213041, 0.05753502360100452, 0.052136324151390856, 0.05020734105807224, 0.05212440180460427, 0.05750591281246942, 0.06554871018473869, 0.07552203129676628, 0.08695613882962812, 0.0996041849191294, 0.11335113603477025, 0.12813965413211162, 0.14392382200040804, 0.1606454442016318, 0.17822548533289295, 0.19656434645826967, 0.21554644862834746, 0.23504624904663093, 0.2549340966233675, 0.2750811928852046, 0.295363431729869, 0.3156641539518913, 0.33587596528151675, 0.3559017980528196, 0.3756553888392962, 0.3950613210404848, 0.4140547543770574, 0.4325809378845987, 0.4505945812211976, 0.46805914124654635, 0.48494606654905326, 0.501234031341189, 0.5169081813507411, 0.5319594075143844, 0.5463836580243465, 0.5601812952626513, 0.5733565011240623, 0.5859167319733921, 0.5978722228439465, 0.6092355393302963, 0.6200211748556258, 0.63024519051492, 0.6399248944404927, 0.6490785575482267, 0.657725162554763, 0.6658841832706904, 0.6735753913424927 ], [ 0.08774270449119934, 0.07573977641559794, 0.06454780121924017, 0.05438638249100886, 0.04578028013403536, 0.03968674507134335, 0.03734244708032, 0.03942250378829849, 0.04534477355623522, 0.05394140296313465, 0.0643232921552406, 0.07602996033128998, 0.08887526475013172, 0.10280062272298317, 0.11778577083087333, 0.133803049435461, 0.15079882148362483, 0.16869033381300721, 0.1873702518919679, 0.20671406585875782, 0.2265877192884677, 0.24685422903131726, 0.2673788897278625, 0.28803307542290574, 0.30869682656670233, 0.32926045852553376, 0.3496254167441035, 0.36970457091303427, 0.38942210357399737, 0.4087131148685433, 0.42752303689254356, 0.4458069284472731, 0.46352870316639916, 0.4806603301492146, 0.49718103551719883, 0.51307652504603, 0.5283382416683658, 0.5429626667756948, 0.5569506705507363, 0.5703069137870417, 0.5830393016077431, 0.5951584880275318, 0.6066774292888417, 0.6176109832456256, 0.6279755516843069, 0.637788762295154, 0.6470691869834588, 0.6558360932942265, 0.664109225880732, 0.6719086151482976 ], [ 0.07806977981231392, 0.06631726908490505, 0.05524099108738215, 0.04493695379149482, 0.035822160473019456, 0.028933447893247734, 0.026087851055427103, 0.028547609746730058, 0.035279469592940496, 0.04452369861627814, 0.05528373689952323, 0.06719004977047495, 0.08015669954316285, 0.09419250157663214, 0.10931312883599503, 0.12550472603549126, 0.14271420171346752, 0.1608526843241922, 0.17980429856572605, 0.1994359509255513, 0.21960608121914812, 0.2401716601935903, 0.26099338370051334, 0.28193929362965325, 0.302887132669087, 0.32372572655260934, 0.3443556423255245, 0.36468932105251534, 0.3846508386354783, 0.40417541177084654, 0.4232087372652361, 0.4417062306790473, 0.4596322131993536, 0.4769590825622646, 0.493666493807356, 0.5097405679370672, 0.5251731406377034, 0.5399610586971882, 0.5541055283279847, 0.5676115170418554, 0.5804872088480263, 0.5927435112154823, 0.6043936113389143, 0.6154525786821852, 0.6259370104656411, 0.6358647166499946, 0.645254440997183, 0.6541256149147087, 0.6624981409798336, 0.6703922032667812 ], [ 0.06990957152089165, 0.05863498863707426, 0.04797896936883789, 0.03790871154680565, 0.028676277232248564, 0.02123397115500499, 0.017971303047048772, 0.02102035897346748, 0.028543610707970558, 0.03819071026896712, 0.04906050383253781, 0.0609473168455276, 0.07386841680385653, 0.08788489733956217, 0.1030327543951654, 0.1193004448020348, 0.136628425896178, 0.15491825578443053, 0.17404442084010555, 0.19386549300753414, 0.21423329397701574, 0.2349998318400733, 0.2560222455327816, 0.27716613398779194, 0.2983076420697821, 0.31933461907656974, 0.3401471005046738, 0.3606573058292036, 0.3807892982296163, 0.40047841592654027, 0.41967055716992324, 0.4383213799588684, 0.4563954616323611, 0.4738654512878727, 0.490711238633002, 0.5069191556781503, 0.5224812221428651, 0.5373944412120392, 0.5516601490677505, 0.5652834192284804, 0.5782725209847781, 0.5906384299970717, 0.6023943883079732, 0.6135555105289876, 0.6241384327147392, 0.634161000374625, 0.6436419921409278, 0.6526008757716865, 0.6610575933827891, 0.6690323730503641 ], [ 0.06374934225999937, 0.053265762900919826, 0.043491814516223276, 0.03433937945923278, 0.02600555013295299, 0.01937341625832192, 0.016661508780300986, 0.0197175349812767, 0.026828038187077536, 0.03594761621260222, 0.04631930158427836, 0.05779135982219417, 0.07039760726606939, 0.08419662906108905, 0.09921188755770195, 0.11541536840265104, 0.13273109991540594, 0.15104635931690275, 0.1702242276736954, 0.1901146726168802, 0.21056328420538506, 0.23141769792654557, 0.2525320679654931, 0.27377001162319076, 0.2950063999317173, 0.31612829733174885, 0.33703528463265064, 0.35763934301906647, 0.37786443303097556, 0.39764586914169486, 0.4169295653746806, 0.43567120828705913, 0.4538353990420453, 0.4713947950532831, 0.488329272992083, 0.5046251282132161, 0.5202743204471465, 0.535273771606999, 0.5496247185240063, 0.5633321211662679, 0.5764041252600226, 0.5888515770958731, 0.6006875875611564, 0.6119271420072271, 0.6225867523638542, 0.6326841478914372, 0.6422380010647685, 0.6512676852684866, 0.659793061221309, 0.6678342893079606 ], [ 0.06021122105596793, 0.050880445911889324, 0.04250633406808385, 0.035017604799468485, 0.02864288997798349, 0.02411279887572148, 0.0226292782724019, 0.024923804498762903, 0.0304004193095772, 0.03805395466097045, 0.04730176307370689, 0.057941405397038875, 0.06993886274083062, 0.08329662990820531, 0.09799408698614402, 0.11396924347487178, 0.13112064991333608, 0.14931705292078956, 0.16840841891547614, 0.1882356333299353, 0.2086380978997272, 0.22945928085022585, 0.25055055293401096, 0.2717736811188506, 0.29300230652834475, 0.3141226696228894, 0.335033786919422, 0.35564723570634404, 0.3758866659538442, 0.39568713001966577, 0.41499429880068167, 0.4337636160412396, 0.45195942934703, 0.4695541261698534, 0.4865272949713497, 0.5028649254658206, 0.51855865692812, 0.5336050797606509, 0.5480050926316483, 0.5617633153544201, 0.5748875561335761, 0.5873883307427359, 0.599278430519043, 0.610572535679416, 0.6212868703101526, 0.6314388953955951, 0.6410470363831784, 0.6501304419908559, 0.6587087712164117, 0.666802005781474 ], [ 0.0598478220230887, 0.0519227124348389, 0.045213886650069916, 0.039608599957771634, 0.035217911644052545, 0.03241369423644186, 0.03169853050179534, 0.03339895595096598, 0.03746098972616387, 0.04359823358393393, 0.05154731979292852, 0.0611597228109312, 0.07236522672077758, 0.08511299077213097, 0.09933441294491835, 0.11493004308480978, 0.13177113879085134, 0.14970737282589924, 0.16857573092241782, 0.18820840543205913, 0.20843902188290406, 0.2291072121347306, 0.25006177978556743, 0.2711627437582345, 0.2922825179976236, 0.31330644042288125, 0.33413282112045645, 0.3546726433090672, 0.37484902119723074, 0.39459649547134884, 0.413860228600353, 0.43259514739187827, 0.4507650684771601, 0.468341833021484, 0.48530446948626865, 0.5016383973489442, 0.5173346800351605, 0.5323893317110692, 0.546802679836509, 0.5605787833404828, 0.5737249048183993, 0.5862510341551408, 0.5981694603538028, 0.6094943880148563, 0.6202415947945757, 0.6304281262157054, 0.6400720243586254, 0.649192087187666, 0.657807655533095, 0.6659384250304923 ], [ 0.06283854270326761, 0.056285472454309086, 0.05106324891499078, 0.04695855650302637, 0.04392772032428375, 0.042110524948370455, 0.041756135082068234, 0.04310111575650035, 0.04627905302652523, 0.051316911559834394, 0.058187281577917326, 0.06684918343858633, 0.07725397235325406, 0.08933398312202068, 0.10299334209279781, 0.11810710637920814, 0.1345265904648743, 0.15208717515996048, 0.1706160930697911, 0.18993905783712126, 0.20988543934611253, 0.23029206439160543, 0.2510058494401578, 0.2718854900792885, 0.2928024105476562, 0.3136411455341573, 0.3342992957744565, 0.35468717198713845, 0.3747272188611818, 0.394353291790663, 0.41350984332661084, 0.43215106336865733, 0.45024000650735296, 0.46774773127764485, 0.4846524690839462, 0.5009388349459641, 0.5165970877726684, 0.5316224444121721, 0.5460144490869306, 0.5597763978676819, 0.5729148164438027, 0.5854389885064445, 0.5973605314810676, 0.6086930160472275, 0.6194516257970566, 0.629652853451041, 0.6393142302221919, 0.6484540851581936, 0.6570913315644056, 0.6652452778951059 ], [ 0.06886872430598544, 0.06337954652396469, 0.05918963950437551, 0.05601749996559975, 0.05373993073008629, 0.052405829299670095, 0.05218729069666773, 0.05330346172303681, 0.05595518710863853, 0.06029134024976887, 0.06640256646159932, 0.07432537011048676, 0.08404589418570124, 0.09550337646533663, 0.10859602682184838, 0.12318959067524497, 0.13912697334706126, 0.15623732199685073, 0.17434373057529795, 0.19326936169397976, 0.21284209201699628, 0.23289789241303924, 0.25328316537271633, 0.27385624185826235, 0.2944882123679467, 0.3150632403074517, 0.33547848162358723, 0.3556437132954142, 0.375480754576272, 0.3949227486692995, 0.41391335861755724, 0.4324059194006036, 0.45036257834272514, 0.467753447741031, 0.48455578690717005, 0.5007532253895287, 0.516335034824133, 0.531295453489513, 0.545633065066812, 0.5593502312006527, 0.5724525761012362, 0.5849485205204149, 0.5968488618822672, 0.6081663970722451, 0.6189155843198155, 0.6291122406892725, 0.6387732718741613, 0.6479164312334618, 0.6565601052816239, 0.6647231231268549 ], [ 0.07732248550664178, 0.0724847058135603, 0.06885091565466094, 0.06612788797700378, 0.06417550650615521, 0.06301780068540545, 0.06280447702099597, 0.06375078187225743, 0.06608061579210267, 0.06998594797296247, 0.07560382010570646, 0.08300663833727402, 0.09220185293077536, 0.10313859025310029, 0.11571867432730434, 0.12980910624116418, 0.14525373171458242, 0.161883023477851, 0.1795218108153097, 0.19799519326240705, 0.21713296045258992, 0.23677280491293143, 0.2567625602395835, 0.2769616534775595, 0.29724192911964326, 0.3174879782757556, 0.3375970866346061, 0.3574788971157981, 0.3770548670395872, 0.39625758516448006, 0.4150300011156288, 0.43332460857303656, 0.45110261406209173, 0.46833311518855203, 0.48499230554865885, 0.5010627181705766, 0.516532515051133, 0.5313948269929347, 0.5456471453817829, 0.5592907656451702, 0.5723302807836246, 0.5847731224638594, 0.5966291466145148, 0.607910260191292, 0.6186300857094843, 0.6288036602201474, 0.6384471655828536, 0.6475776871246983, 0.6562129980411315, 0.6643713671668829 ], [ 0.0875551450467077, 0.08299324313343547, 0.07953614107663388, 0.07691600260996266, 0.07500709636459822, 0.0738342268190138, 0.07354128609859699, 0.07434020917181275, 0.07645873335779421, 0.0800982410267633, 0.08540607125639747, 0.09246238600753635, 0.10127946389441694, 0.11180982520409653, 0.12395882264094148, 0.1375978965358229, 0.15257625895831972, 0.16873029154841718, 0.18589080108247535, 0.20388853806110843, 0.22255835430813486, 0.24174227863502307, 0.2612917124815219, 0.2810689018949418, 0.3009478170606489, 0.320814554544742, 0.34056736414271416, 0.3601163893522302, 0.379383197625891, 0.3983001640630927, 0.4168097605210065, 0.43486379159245026, 0.4524226096780775, 0.46945433350684496, 0.4859340878785216, 0.5018432770118484, 0.517168899554588, 0.5319029099123028, 0.5460416279488037, 0.5595851971772906, 0.5725370901822278, 0.584903659083057, 0.5966937282798971, 0.6079182264265055, 0.618589854487524, 0.6287227867964228, 0.638332402188772, 0.6474350425036207, 0.656047795993414, 0.6641883034370669 ], [ 0.09903635352919017, 0.09446319275986531, 0.0909141021348304, 0.08816383934441697, 0.08611421607776044, 0.08480080004338623, 0.08436707321112644, 0.08502013880996921, 0.08698225160569875, 0.0904490576357967, 0.09556114745886835, 0.10239118412857083, 0.11094477991275853, 0.12117039856013999, 0.13297288426152412, 0.14622661067854462, 0.16078637350737066, 0.1764957625405912, 0.1931934660573078, 0.21071805429241522, 0.2289116442655626, 0.24762269253064534, 0.26670806545642706, 0.28603449239418655, 0.3054794918199707, 0.3249318559403046, 0.344291775888718, 0.36347068423093115, 0.3823908838038225, 0.400985022782236, 0.41919546627083276, 0.4369736054117598, 0.45427913645953294, 0.47107933474950986, 0.4873483420587657, 0.5030664805112903, 0.5182196018366745, 0.5327984773489647, 0.5467982313537748, 0.5602178187011966, 0.5730595457679968, 0.5853286331727455, 0.5970328179094982, 0.6081819922477983, 0.6187878766190408, 0.6288637237319605, 0.6384240512843034, 0.647484400824151, 0.6560611205322104, 0.6641711699229325 ], [ 0.11137260868579708, 0.10658782307373256, 0.1027675734883333, 0.09973477356693523, 0.09742345399320523, 0.09588404760365585, 0.09526182854972795, 0.0957580276104887, 0.09758496840798707, 0.10092581198415554, 0.10590690490188882, 0.11258628149182438, 0.12095657580920756, 0.1309568156039276, 0.14248697112807923, 0.15542109668605877, 0.16961746974651837, 0.18492586327409863, 0.2011927254436341, 0.21826500238531657, 0.23599308117083426, 0.2542331000013186, 0.27284873772473284, 0.29171253845366796, 0.3107068142592984, 0.32972417301998896, 0.3486677250830523, 0.3674510257837606, 0.3859978100369889, 0.40424157104110986, 0.42212502892187986, 0.4395995280493284, 0.45662439460992693, 0.47316627932538574, 0.4891985042571642, 0.5047004275363888, 0.5196568356254037, 0.5340573693009344, 0.5478959868701728, 0.5611704660951744, 0.5738819448098457, 0.5860344991726216, 0.5976347578185374, 0.6086915497774598, 0.6192155838418272, 0.6292191570378836, 0.6387158899307727, 0.6477204866358238, 0.656248517585806, 0.6643162232932577 ], [ 0.12428260474409869, 0.11915474033756127, 0.11494922736744267, 0.11153689443853251, 0.1088847314829723, 0.10705968651427719, 0.10621011867050366, 0.10653125701874183, 0.1082238332865457, 0.11145599513922866, 0.11633716470106577, 0.12290814594077462, 0.13114587987901966, 0.14097692813343118, 0.15229310575870875, 0.164964915717579, 0.17885128856245677, 0.19380601082796864, 0.20968188157500847, 0.22633354008115247, 0.24361956705188362, 0.26140415734781275, 0.27955847556106256, 0.2979617210926418, 0.3165019062822779, 0.33507635595120233, 0.35359194926034265, 0.37196513566234085, 0.39012176294032397, 0.4079967569467822, 0.42553369084704085, 0.4426842777413775, 0.45940781556800714, 0.47567060794350463, 0.4914453795681577, 0.5067107002890044, 0.5214504280035887, 0.5356531773390206, 0.5493118184297084, 0.5624230080873818, 0.5749867541354939, 0.587006012588136, 0.5984863166131853, 0.6094354357579916, 0.619863063667713, 0.6297805324351171, 0.639200551738317, 0.648136971010868, 0.6566045630162872, 0.6646188273434505 ], [ 0.1375669800317073, 0.1320153745733803, 0.12735639239045615, 0.12350583072135078, 0.12046245035946782, 0.11831013641332343, 0.11720130129886407, 0.11732577273717569, 0.11887270443496606, 0.12199497921684112, 0.1267849047120934, 0.13326587845064422, 0.1413986273169822, 0.15109604364936627, 0.16223983875628822, 0.17469449348346472, 0.18831696541139636, 0.20296262731430106, 0.21848864743961813, 0.23475593732736616, 0.25163041522855045, 0.26898397255489065, 0.28669529158268536, 0.3046505402130398, 0.322743925106185, 0.34087808085706695, 0.3589642851919001, 0.37692250503512165, 0.39468129000939695, 0.4121775370071691, 0.42935615236065794, 0.44616963792825676, 0.4625776252300293, 0.47854637851695775, 0.4940482840094137, 0.5090613389245371, 0.5235686505903233, 0.5375579530513701, 0.5510211461577722, 0.563953860191349, 0.5763550475861964, 0.5882266021904008, 0.5995730057317658, 0.6104010006316158, 0.6207192879989737, 0.6305382494810319, 0.6398696916001025, 0.6487266112350709, 0.6571229809774847, 0.665073553185977 ], [ 0.15108457634301048, 0.14506521542596112, 0.13991702184639146, 0.13559664524449808, 0.13213242949853193, 0.1296248635383419, 0.12823113356034288, 0.12813667252977948, 0.12952003087128436, 0.13251983200933048, 0.137212402444433, 0.14360485957065186, 0.15164248536814312, 0.16122456756000644, 0.17222192605995826, 0.1844914803463356, 0.19788619600736485, 0.21226085810304768, 0.22747495848142832, 0.2433939569955394, 0.2598898024834119, 0.2768412073483037, 0.2941338873781313, 0.3116608174613249, 0.32932248211232956, 0.3470270805844058, 0.3646906523735295, 0.38223710344268924, 0.3995981280388253, 0.41671303213261734, 0.4335284715879062, 0.4499981216795327, 0.46608229543187457, 0.48174752734682963, 0.496966137170957, 0.5117157859660066, 0.5259790342681244, 0.5397429097830905, 0.5529984899981581, 0.5657405033538104, 0.5779669512213097, 0.5896787518540476, 0.6008794066862257, 0.6115746887961441, 0.6217723529873527, 0.6314818667248329, 0.6407141610557405, 0.6494814006114034, 0.6577967718016685, 0.6656742883530652 ], [ 0.16473579762107177, 0.15823119473143643, 0.15258143295859702, 0.14777948104368774, 0.14388054255586485, 0.14100083173782058, 0.13930272984713252, 0.13896838706089912, 0.14016719542341408, 0.1430251905774973, 0.14760456418020418, 0.15389800153889058, 0.16183688359481121, 0.1713078184960002, 0.18217085606203573, 0.19427467659945977, 0.20746694232864554, 0.22160015677889805, 0.23653431888205165, 0.25213771241144856, 0.2682868299755964, 0.284866030718555, 0.30176721955609787, 0.31888964142402393, 0.3361397843213918, 0.3534313466734797, 0.370685219879215, 0.38782944716894135, 0.40479913432675274, 0.4215363011357707, 0.4379896725627075, 0.4541144154144241, 0.4698718299513118, 0.48522900745419584, 0.5001584647246187, 0.5146377655459368, 0.5286491376936027, 0.5421790924717935, 0.5552180521745341, 0.567759989442952, 0.5798020812761342, 0.5913443794691443, 0.6023894984902847, 0.6129423212465337, 0.6230097227900135, 0.6326003117558185, 0.6417241891600898, 0.6503927240983766, 0.6586183458435182, 0.66641435183034 ], [ 0.17845104400147313, 0.17146316429386102, 0.16531671495999456, 0.16003640167163857, 0.15570127859502753, 0.15244197824644634, 0.1504261443930131, 0.1498336379284472, 0.15082627225039041, 0.15351946680471876, 0.15796349605921817, 0.16413887633902702, 0.1719651212294279, 0.1813176810280861, 0.1920466469325709, 0.2039925031757284, 0.21699696384077638, 0.23090909410221683, 0.24558794538415732, 0.2609030771920402, 0.276734047593449, 0.2929695646201499, 0.3095066642353892, 0.3262500607019975, 0.34311169037346456, 0.36001041197442435, 0.37687180878154025, 0.393628041313798, 0.41021771089778436, 0.42658570792517714, 0.44268303047100344, 0.4584665680009024, 0.47389885108253604, 0.4889477717497964, 0.503586281026167, 0.5177920706582626, 0.5315472458162588, 0.5448379947492338, 0.5576542604018712, 0.5699894179789192, 0.5818399614918283, 0.593205201494924, 0.6040869755384105, 0.6144893723319096, 0.6244184702110055, 0.6338820902096219, 0.6428895638398031, 0.6514515155450913, 0.6595796597044953, 0.66728661200426 ], [ 0.19218234756199465, 0.18472758297279235, 0.17810225443582567, 0.17235835317527146, 0.16759563772548405, 0.16395751170785702, 0.16161657637304666, 0.1607511411797733, 0.16151693784455903, 0.1640208045536185, 0.16830347591093286, 0.17433579651238515, 0.1820277671529797, 0.1912456270561218, 0.2018308422538952, 0.2136163227887275, 0.22643776463831053, 0.24014014685840895, 0.25458051535958154, 0.2696284173159394, 0.28516512025005086, 0.3010823837769532, 0.3172812218868416, 0.3336708567099162, 0.35016791933411545, 0.36669587709532575, 0.38318463560332006, 0.39957025836674137, 0.4157947541241349, 0.43180589387522317, 0.44755703176978967, 0.46300691441039904, 0.4781194710829622, 0.4928635829888956, 0.5072128330828981, 0.5211452400875425, 0.5346429811091052, 0.5476921073977264, 0.5602822574737125, 0.5724063712951082, 0.584060408515173, 0.5952430732634008, 0.60595554733174, 0.6162012331812704, 0.6259855078082422, 0.6353154882149744, 0.6441998090078686, 0.652648412476652, 0.6606723513815442, 0.6682836045753127 ], [ 0.205896996574043, 0.19800243680843044, 0.1909257493590535, 0.18474197987751545, 0.17956840988792883, 0.17555931297996727, 0.1728915948226626, 0.17174243594834981, 0.17226277312738636, 0.17455280634647716, 0.17864611915696485, 0.184506485548289, 0.1920369470906951, 0.201096777843299, 0.21152054288900116, 0.22313465395706775, 0.23576919297981877, 0.24926485214824354, 0.26347599362220925, 0.2782711501002975, 0.293532123848852, 0.3091525088460622, 0.3250361366815868, 0.3410957004226602, 0.35725164976328255, 0.37343135902910873, 0.38956852568431577, 0.405602742517924, 0.4214791883337935, 0.43714839102398956, 0.45256602819226105, 0.46769274125167215, 0.48249394791072675, 0.49693964483618086, 0.5110041971563354, 0.5246661146706728, 0.5379078165419189, 0.550715387225236, 0.5630783267390784, 0.5749892983398701, 0.5864438764011858, 0.5974402969366461, 0.6079792128205038, 0.6180634553953975, 0.6276978038347345, 0.6368887633545899, 0.6456443531448812, 0.6539739047049278, 0.6618878711158062, 0.6693976476523602 ], [ 0.2195724950063349, 0.21127299063023175, 0.20377959148701233, 0.19718643555417753, 0.1916251928238346, 0.18725894387589315, 0.18426795887434028, 0.18282839799404402, 0.18308741991971406, 0.1851403379810327, 0.18901587112816357, 0.19467331511270464, 0.202011395497105, 0.21088485611283408, 0.22112336394267187, 0.23254825350458236, 0.2449847756172987, 0.25826951106067253, 0.2722538005219978, 0.28680444007878464, 0.30180279722919084, 0.3171432097469315, 0.33273121950334206, 0.3484819441636103, 0.36431871812572625, 0.38017202974266195, 0.3959787265972664, 0.41168143732994616, 0.42722815411478793, 0.4425719252888269, 0.4576706171360166, 0.4724867140887661, 0.4869871359184739, 0.5011430581239709, 0.5149297275525132, 0.5283262694603827, 0.5413154850247985, 0.5538836400681494, 0.5660202467380244, 0.5777178403423896, 0.5889717536559452, 0.599779890928813, 0.6101425036376716, 0.6200619697844715, 0.6295425783062805, 0.6385903199314015, 0.6472126856102075, 0.6554184734651594, 0.6632176050408465, 0.6706209514876454 ], [ 0.23319256303953362, 0.22452828187454368, 0.21665773553865, 0.20969049298651093, 0.20376959792546517, 0.19906480982222227, 0.19575862231214525, 0.19402601389005877, 0.19401110177152134, 0.19580581427398572, 0.1994361001819504, 0.2048592561402413, 0.21197231564755672, 0.22062800760439777, 0.2306532765369236, 0.2418660466306463, 0.25408781179075757, 0.26715152352091076, 0.2809054575043115, 0.2952142103246091, 0.30995795437881896, 0.32503083222507495, 0.3403390820230811, 0.35579923960035204, 0.37133658501872185, 0.3868838876437829, 0.402380438832987, 0.4177713299921592, 0.43300692328533674, 0.4480424636081038, 0.46283778750083493, 0.4773570937601639, 0.49156874950285645, 0.5054451133082197, 0.5189623634277962, 0.5321003238907565, 0.5448422848230877, 0.5571748156846041, 0.5690875716640347, 0.580573094387539, 0.5916266085782603, 0.6022458165004123, 0.6124306920383125, 0.6221832761740161, 0.6315074754862455, 0.6404088651293027, 0.6488944975808391, 0.6569727182809262, 0.6646529891250283, 0.6719457206209716 ], [ 0.2467440719975497, 0.23775839826833317, 0.22955323928929275, 0.2222502586368166, 0.21600104457155178, 0.21097993729109937, 0.20737040820298233, 0.20534589184604016, 0.2050479436118901, 0.20656633265357735, 0.20992607312641867, 0.2150847343492765, 0.22194015490394534, 0.2303455343262929, 0.24012733780690446, 0.2511018961627706, 0.263088229470394, 0.27591638291078574, 0.2894317710790138, 0.30349656122406754, 0.31798917339804506, 0.33280277937945063, 0.3478434192045992, 0.36302811655665335, 0.3782831946976293, 0.3935428741472092, 0.40874816062128466, 0.4238459931993128, 0.43878860643157436, 0.4535330571759756, 0.46804087118169846, 0.48227777182697046, 0.49621346158082036, 0.5098214343934678, 0.5230788037250832, 0.5359661361198129, 0.548467284176609, 0.5605692156291606, 0.5722618372306846, 0.583537813448652, 0.5943923807879927, 0.6048231590244225, 0.6148299608547481, 0.6244146015410308, 0.6335807100985844, 0.6423335434932381, 0.6506798051963244, 0.6586274693117943, 0.6661856113476864, 0.673364246558779 ], [ 0.26021487534481014, 0.25095259732505976, 0.24245662070461751, 0.23485771123231966, 0.22831341455511922, 0.22300066916205158, 0.21910266801997771, 0.2167908168191082, 0.2162043754444087, 0.21743190380248967, 0.22049901504482283, 0.22536553822735797, 0.23193238838279956, 0.24005558428211216, 0.24956331798129697, 0.2602721999339471, 0.27200018891836614, 0.28457532482338377, 0.2978405673559964, 0.3116556300957132, 0.32589681592690845, 0.3404557182146428, 0.35523742111293133, 0.3701586084890361, 0.38514581349724475, 0.4001339165706556, 0.4150649209093724, 0.4298869898291703, 0.44455370870541083, 0.45902352709846855, 0.47325933780577184, 0.4872281549209121, 0.5009008599015653, 0.5142519916484196, 0.5272595628924464, 0.5399048904493886, 0.5521724310698175, 0.5640496177762788, 0.5755266938874882, 0.586596543550994, 0.597254518699455, 0.6074982630479852, 0.6173275341715382, 0.626744024927244, 0.6357511855794364, 0.6443540479900657, 0.6525590531845749, 0.6603738835142312, 0.6678073005233317, 0.6748689895027791 ], [ 0.27359249365714267, 0.26409827903544786, 0.25535508877985935, 0.24750015472208606, 0.24069467817838405, 0.23511639899030154, 0.23094704666237517, 0.2283554659711139, 0.22747872712418965, 0.22840487390171438, 0.23116133110687317, 0.2357118350553439, 0.2419623408149823, 0.2497738012455019, 0.2589782057295399, 0.26939428255139264, 0.2808403943059101, 0.293143594369879, 0.3061449525772422, 0.31970188258490356, 0.3336883849449245, 0.3479940350286397, 0.36252235088359563, 0.3771889707588102, 0.391919898600898, 0.4066499505386538, 0.42132145247281233, 0.4358831890469393, 0.4502895777820045, 0.4645000309196972, 0.4784784655079213, 0.4921929253025481, 0.5056152834335097, 0.5187210008304528, 0.5314889211886784, 0.5439010883207855, 0.5559425759179206, 0.5676013230409819, 0.5788679711682218, 0.5897357004686314, 0.6002000642827198, 0.6102588216951735, 0.6199117686800312, 0.6291605686711447, 0.6380085836223044, 0.646460706719751, 0.6545231979293161, 0.6622035235250803, 0.6695102006734606, 0.6764526480476741 ], [ 0.28686357288822306, 0.2771807520839018, 0.2682326021890792, 0.2601605454446884, 0.2531274502607984, 0.24731029583607758, 0.2428882969653165, 0.2400272220941113, 0.23886195002613758, 0.23948047627261645, 0.24191293152766064, 0.2461282379185944, 0.25203898801232577, 0.2595128714845812, 0.2683875232658225, 0.2784855094582705, 0.2896270417384983, 0.3016392659136864, 0.31436204385052485, 0.3276507939203593, 0.34137719470255057, 0.3554285290650126, 0.3697062924641726, 0.38412450700879586, 0.3986080211946237, 0.4130909516467662, 0.42751533788906626, 0.44183002726845855, 0.4559897763715382, 0.46995454016394084, 0.48368891489608307, 0.4971617014209718, 0.5103455591798235, 0.5232167259592339, 0.5357547835561948, 0.5479424541324357, 0.5597654160356692, 0.5712121311379401, 0.5822736783219026, 0.5929435897174914, 0.6032176877557125, 0.6130939221641041, 0.6225722067704036, 0.631654256482912, 0.6403434251389107, 0.6486445451034175, 0.6565637695949329, 0.6641084187391556, 0.6712868303250218, 0.6781082161740833 ], [ 0.30001398817018193, 0.2901836644612884, 0.2810706194209616, 0.2728185447075315, 0.2655903111120269, 0.25956083758999854, 0.2549059470652733, 0.251787879812358, 0.25033926007380164, 0.2506483147759778, 0.2527484759188628, 0.25661475635476716, 0.2621675863081006, 0.26928282907997547, 0.2778053236878179, 0.28756300537732754, 0.2983792957422131, 0.3100825188053353, 0.322512087199519, 0.3355218524306131, 0.34898130139956757, 0.36277530915657574, 0.3768030478568763, 0.3909764964762508, 0.4052188475567927, 0.41946298809305155, 0.4336501457536304, 0.44772873481414477, 0.4616534017148566, 0.47538425147138363, 0.4888862278763391, 0.5021286185307505, 0.5150846574485717, 0.5277312014476213, 0.5400484606306153, 0.552019767304327, 0.5636313713358463, 0.5748722530549626, 0.585733947353505, 0.5962103746437981, 0.6062976758875747, 0.6159940500709231, 0.6252995933552764, 0.6342161397448233, 0.6427471035325327, 0.6508973240646839, 0.6586729135322129, 0.6660811085831447, 0.6731301265743491, 0.6798290272583881 ], [ 0.31302942646553633, 0.30308991689665177, 0.29384933954556697, 0.2854520733437963, 0.2780596448993658, 0.2718438819621827, 0.26697653041254116, 0.26361594198579047, 0.26189239662454716, 0.2618944808459201, 0.26365925548214786, 0.2671683720471705, 0.27235089724288075, 0.27909191288492685, 0.28724468754822546, 0.2966438158345683, 0.3071171528181633, 0.3184952465911631, 0.33061785881388644, 0.3433377993706796, 0.35652262642028054, 0.3700548421060258, 0.38383114820861536, 0.3977612003916891, 0.41176616791280124, 0.42577729351473587, 0.43973456353819496, 0.45358553973215276, 0.4672843667988922, 0.4807909478095391, 0.4940702683766948, 0.5070918460778342, 0.5198292813475052, 0.5322598880289783, 0.544364384785198, 0.5561266318715294, 0.5675334009459724, 0.5785741684224177, 0.5892409252755678, 0.5995279981757341, 0.6094318784014298, 0.6189510561998968, 0.628085859196888, 0.6368382941513074, 0.6452118918549915, 0.6532115553329693, 0.660843411737393, 0.6681146684749816, 0.6750334741836308, 0.6816087851951649 ], [ 0.3258962595144483, 0.31588284929562954, 0.3065491993794902, 0.2980391075320886, 0.29051170760151346, 0.2841349614903809, 0.27907604255645246, 0.275489154515653, 0.2735021383746218, 0.273203948911305, 0.2746353722003747, 0.2777849223137846, 0.28259072002882124, 0.28894772019754505, 0.29671849612529755, 0.30574531967453716, 0.31586152775178505, 0.32690086051610534, 0.3387042331642077, 0.3511240096387036, 0.3640261958975149, 0.3772910940745833, 0.39081293573192233, 0.40449891823352985, 0.4182679555731312, 0.43204935221780866, 0.44578152691813494, 0.45941085436349566, 0.47289065291757554, 0.48618032199103434, 0.4992446186177524, 0.5120530559887445, 0.5245794044283242, 0.5368012757067931, 0.5486997734194219, 0.5602591946191683, 0.5714667704832355, 0.5823124362474869, 0.5927886228225019, 0.6028900643608495, 0.6126136175767442, 0.6219580898525432, 0.6309240741391116, 0.6395137894088649, 0.6477309259893759, 0.6555804955256045, 0.6630686856186248, 0.6702027193921506, 0.6769907203647204, 0.6834415830710752 ], [ 0.33860251694966126, 0.32854748798295863, 0.31915239057388284, 0.3105594537999406, 0.30292463655146945, 0.2964114896082859, 0.29118228944345304, 0.287386926856035, 0.2851507135018118, 0.2845628868851912, 0.285667861873723, 0.28846095864107185, 0.29288942755996483, 0.29885838638086837, 0.30624024575781744, 0.31488569109923115, 0.3246343928030707, 0.3353241458009179, 0.3467978015493761, 0.3589079190525179, 0.3715194217404319, 0.38451070722921704, 0.3977736736640114, 0.41121306395788915, 0.42474543741690796, 0.43829798691062605, 0.45180734293585817, 0.46521844761316083, 0.47848354065269166, 0.49156127239075126, 0.5044159425579032, 0.5170168543485965, 0.5293377691426926, 0.5413564460603909, 0.5530542511436312, 0.5644158225014488, 0.5754287796939911, 0.5860834676336072, 0.5963727271687873, 0.606291686197653, 0.6158375665988285, 0.6250095034690891, 0.6338083741365633, 0.642236635201151, 0.6502981664674025, 0.6579981211061319, 0.6653427817331112, 0.6723394223473264, 0.6789961762450211, 0.6853219101345028 ], [ 0.35113878757654654, 0.34107166305420744, 0.33164418589066197, 0.3229962716584525, 0.31528014901267304, 0.3086546047652179, 0.3032768353958891, 0.29929233077882395, 0.2968237861852712, 0.29596056075187205, 0.2967504457659951, 0.29919527999472134, 0.303251228815356, 0.30883354221390014, 0.31582468688275817, 0.32408422692816424, 0.33345881573776703, 0.34379104398943994, 0.35492643838730564, 0.36671841627540686, 0.3790313600691529, 0.3917421628835397, 0.4047406485535624, 0.4179292375643865, 0.4312221603633885, 0.44454444122955444, 0.4578308054348451, 0.4710246061471891, 0.4840768260625805, 0.496945180154797, 0.5095933274057212, 0.5219901882149247, 0.5341093581170345, 0.5459286057190802, 0.5574294421462807, 0.5685967498798405, 0.5794184601029858, 0.5898852691708739, 0.5999903863612347, 0.6097293065182958, 0.6190996025085508, 0.6281007335380907, 0.6367338663356138, 0.6450017069931315, 0.6529083418944087, 0.6604590866675387, 0.6676603424911849, 0.6745194593808134, 0.6810446062970954, 0.6872446480671071 ], [ 0.3634989113360303, 0.3534468460634087, 0.3440139121291087, 0.3353371683883475, 0.32756474141038233, 0.32085045160201997, 0.3153463378644371, 0.31119345405686893, 0.30851178842036686, 0.30739059859065127, 0.3078806782174804, 0.3099899167555387, 0.3136829483851525, 0.3188848598246906, 0.32548812206485556, 0.3333613979769588, 0.3423587795239983, 0.3523282661766335, 0.36311873947316897, 0.3745851403180093, 0.38659190213743966, 0.3990148981153643, 0.41174224182258023, 0.4246742772501148, 0.43772304595148115, 0.450811454781529, 0.4638723049700156, 0.47684729019766275, 0.48968603034412933, 0.5023451779673129, 0.5147876143933334, 0.5269817393254713, 0.5389008501114709, 0.5505226026198728, 0.561828543841924, 0.5728037059746335, 0.5834362522433261, 0.5937171656817234, 0.6036399732432117, 0.6132004988078742, 0.6223966397834187, 0.6312281630255366, 0.6396965167034108, 0.6478046555048461, 0.6555568772177948, 0.6629586692510574, 0.670016564078741, 0.6767380029233883, 0.6831312072438915, 0.6892050577779367 ], [ 0.37568037012679384, 0.3656686120858804, 0.356255470038191, 0.34757476309774693, 0.33977028349023297, 0.3329907907212243, 0.32738315761624603, 0.3230839946206975, 0.32021047959214655, 0.31885149408985686, 0.31906036955783607, 0.3208504466531128, 0.3241942100151226, 0.3290260831603713, 0.3352482708925206, 0.3427385460396286, 0.3513587192015692, 0.3609626859958862, 0.3714032931227717, 0.3825376549384771, 0.39423087781730015, 0.406358363178574, 0.418806963864619, 0.4314752902633913, 0.4442734350708383, 0.4571223358964777, 0.46995294085650186, 0.4827052935057912, 0.495327613831633, 0.5077754220981197, 0.5200107309791518, 0.5320013169602923, 0.5437200727224106, 0.555144436674248, 0.5662558928146939, 0.5770395328088906, 0.5874836719313082, 0.597579510930778, 0.6073208366162722, 0.6167037548590051, 0.6257264506376745, 0.6343889706489436, 0.6426930248257507, 0.6506418038330714, 0.6582398102383953, 0.6654927015840217, 0.672407144026071, 0.6789906755589468, 0.6852515781228495, 0.6911987581050284 ], [ 0.3876843359812102, 0.37773668898330426, 0.368367369610118, 0.3597066950823007, 0.35189398969002583, 0.34507292650399474, 0.339385240015786, 0.3349630952348019, 0.33192073583488035, 0.3303463510567687, 0.33029528332188446, 0.33178563825979707, 0.3347970165925391, 0.339272533589222, 0.34512369229681644, 0.352237218677816, 0.3604827709545539, 0.3697205107708265, 0.3798077859818695, 0.3906045047442319, 0.4019770789583868, 0.41380102900091115, 0.42596246147933053, 0.43835867438103704, 0.450898135587201, 0.4635000454058328, 0.47609364903924634, 0.4886174212657922, 0.5010182082014912, 0.5132503814414717, 0.5252750378766653, 0.5370592629001891, 0.5485754641932621, 0.5598007765295776, 0.5707165339866151, 0.5813078037649239, 0.5915629748676937, 0.6014733947342451, 0.6110330472394466, 0.6202382660536061, 0.6290874780636786, 0.6375809722967757, 0.6457206905056192, 0.6535100362408901, 0.6609536998306682, 0.668057497205643, 0.6748282209498533, 0.6812735023236807, 0.6874016833039962, 0.69322169792243 ], [ 0.39951538333363146, 0.3896546122814841, 0.38035231258604923, 0.371735123107684, 0.36393782977872635, 0.35709903004525273, 0.35135535776727966, 0.34683451928720904, 0.3436476757942283, 0.34188197674972715, 0.3415942121161151, 0.34280651911310894, 0.34550481398795574, 0.3496401675838606, 0.35513283124991757, 0.3618782000206628, 0.3697537843204504, 0.3786262758542852, 0.3883579836901352, 0.3988121891369641, 0.4098572352846744, 0.42136937438385386, 0.4332345255741154, 0.4453491545783975, 0.45762049536760013, 0.4699663121591158, 0.482314364936935, 0.4946017038592802, 0.5067738834609491, 0.5187841590244935, 0.5305927053657258, 0.5421658819662947, 0.5534755568781499, 0.5644984940508857, 0.5752158037333764, 0.5856124525895925, 0.5956768285358871, 0.6054003545997229, 0.6147771459901404, 0.6238037048276025, 0.6324786474463053, 0.6408024597490578, 0.6487772766933687, 0.6564066825734636, 0.6636955293096841, 0.6706497704496749, 0.6772763090177554, 0.6835828577185663, 0.6895778103099822, 0.6952701232122672 ], [ 0.41118091242391197, 0.401429049436855, 0.39221640453342554, 0.38366581785475234, 0.37590750127667893, 0.3690749991504486, 0.36329987417898, 0.35870534004376364, 0.3553993033043103, 0.3534675067529307, 0.352967610994798, 0.3539250380664705, 0.3563311950363008, 0.36014432708734995, 0.36529281404698744, 0.37168034595051297, 0.37919219143652183, 0.3877017432621557, 0.39707665640925566, 0.4071841145605816, 0.41789499509319705, 0.42908689814683737, 0.4406461383721104, 0.45246886902122946, 0.4644615305077646, 0.47654080643656344, 0.48863324436004835, 0.5006746669154633, 0.5126094680984659, 0.5243898625330995, 0.5359751338629108, 0.5473309117468005, 0.558428494747995, 0.5692442278137593, 0.5797589372317524, 0.5899574221995256, 0.5998279998768822, 0.6093620995596943, 0.6185539010841097, 0.6274000124993936, 0.6358991822629418, 0.6440520415918577, 0.6518608730694373, 0.6593294020968444, 0.6664626082644568, 0.6732665541716166, 0.6797482296349117, 0.6859154095873689, 0.6917765242819459, 0.6973405406734149 ], [ 0.42269035920836195, 0.41306888779055023, 0.4039681112660102, 0.39550698366224984, 0.3878111210949584, 0.3810090328629332, 0.3752272218095285, 0.3705843516123204, 0.36718488343154615, 0.36511278009875664, 0.36442600314487383, 0.36515252706083895, 0.3672884346210154, 0.3707983561754782, 0.37561814692915646, 0.3816593595002965, 0.3888148511862907, 0.39696480608633067, 0.40598253615967655, 0.41573959930965654, 0.42610997406254764, 0.43697321014417284, 0.4482166060705734, 0.4597365435677486, 0.47143914226843964, 0.48324040001452373, 0.49506596730836294, 0.5068506792265207, 0.5185379412114397, 0.5300790404179762, 0.541432433431648, 0.5525630446044866, 0.5634415966773111, 0.5740439861720987, 0.5843507095684317, 0.5943463418928061, 0.6040190665126004, 0.6133602532079737, 0.6223640806630649, 0.6310271991240913, 0.639348428933931, 0.64732849083942, 0.6549697642860955, 0.6622760703010324, 0.6692524759739331, 0.675905117950645, 0.6822410427334004, 0.6882680619273248, 0.693994620877496, 0.6994296794031001 ], [ 0.43405428180860256, 0.4245841945405203, 0.4156170871898276, 0.4072679566924876, 0.39965780248568467, 0.3929101039910303, 0.38714629468229284, 0.3824804108410342, 0.3790132676212204, 0.37682668179474593, 0.37597837118956173, 0.3764981667956444, 0.37838604727806757, 0.3816122592737514, 0.3861194753720247, 0.39182664535265765, 0.3986339892401676, 0.4064285030305658, 0.41508939529037187, 0.4244930069669561, 0.4345169367180059, 0.4450432557967315, 0.45596082315037506, 0.46716679384086784, 0.47856745578245724, 0.4900785409398068, 0.5016251485516036, 0.5131413989934636, 0.5245699142646999, 0.535861198912749, 0.5469729756504497, 0.5578695137967105, 0.5685209760157851, 0.5789027992807028, 0.5889951190249232, 0.5987822405400213, 0.6082521583456876, 0.6173961220993158, 0.6262082463047723, 0.6346851603753552, 0.642825695317431, 0.6506306032903104, 0.6581023064639314, 0.6652446718668295, 0.6720628092417446, 0.6785628892701219, 0.6847519798660535, 0.690637898559691, 0.6962290792807247, 0.701534452109373 ], [ 0.44528341510115643, 0.4359851557574316, 0.4271729982689935, 0.41895791754368766, 0.41145626964215953, 0.40478649456289323, 0.399064929178674, 0.3944008924473617, 0.39089135397491, 0.38861563877115274, 0.3876307162870491, 0.3879676309759169, 0.3896295312913844, 0.392591551715818, 0.3968025400738077, 0.40218836410670966, 0.40865633951459435, 0.41610023431055093, 0.4244053242892349, 0.43345307507323144, 0.4431251670082394, 0.45330672183503823, 0.46388870855086467, 0.4747695887469726, 0.4858563090811802, 0.4970647671153343, 0.5083198754095198, 0.5195553357809313, 0.5307132173659217, 0.5417434128114494, 0.5526030290181457, 0.5632557535178903, 0.5736712251242573, 0.5838244278091356, 0.5936951194775245, 0.6032673020088294, 0.6125287351919246, 0.6214704946376639, 0.6300865721033383, 0.6383735156672852, 0.6463301066612125, 0.6539570700605771, 0.6612568150436529, 0.6682332025796436, 0.674891337138984, 0.6812373798945519, 0.6872783810727823, 0.6930221293995754, 0.698477016855037, 0.7036519171959207 ], [ 0.4563877758797524, 0.44728108803315786, 0.43864444394610114, 0.43058473253794655, 0.42321363278556606, 0.4166445239862121, 0.4109886083693818, 0.40635039497321435, 0.4028228208482352, 0.4004824057616319, 0.39938491761772055, 0.39956203567342874, 0.4010194178487171, 0.40373641170277746, 0.40766742816197504, 0.4127447738403987, 0.4188825636940507, 0.4259812452365957, 0.43393226578533817, 0.4426224874261651, 0.45193806898652805, 0.4617676578549984, 0.4720048428529989, 0.48254989996354375, 0.4933109130819657, 0.5042043761036779, 0.5151553874608474, 0.5260975407101723, 0.5369726007900901, 0.5477300392760035, 0.5583264859813325, 0.5687251399869837, 0.5788951712118757, 0.5888111340363219, 0.5984524070608469, 0.607802667510172, 0.6168494047333906, 0.6255834743861792, 0.6339986929315108, 0.642091470832496, 0.6498604820519541, 0.6573063670755832, 0.6644314665305261, 0.6712395824966713, 0.6777357647435236, 0.6839261193264612, 0.6898176372107547, 0.6954180408372493, 0.7007356467848921, 0.70577924291214 ], [ 0.4673758844483567, 0.45847959502861646, 0.4500380557921566, 0.4421540057997435, 0.43493440883297135, 0.4284875565428103, 0.4229194765373546, 0.41832978315957037, 0.41480721709438756, 0.4124252212367247, 0.41123796836113, 0.4112772651522836, 0.4125506911960676, 0.4150411936411451, 0.41870817327454274, 0.4234899061937024, 0.42930698977237614, 0.43606641256540213, 0.4436658345215017, 0.45199771511965037, 0.46095301868922495, 0.47042433136990525, 0.480308321291851, 0.49050754983145783, 0.5009316929979692, 0.5114982599868684, 0.522132905696017, 0.5327694313352416, 0.5433495573410617, 0.5538225395813197, 0.564144685954663, 0.5742788175280064, 0.5841937070885671, 0.5938635186727528, 0.6032672642227691, 0.6123882878084268, 0.6212137835709273, 0.6297343504270595, 0.6379435843695561, 0.6458377077006295, 0.6534152335669162, 0.6606766635858674, 0.6676242160571559, 0.6742615821539705, 0.6805937075245764, 0.6866265968566209, 0.6923671391302679, 0.6978229514859472, 0.7030022398403232, 0.7079136745876669 ], [ 0.4782541480998304, 0.4695859163199698, 0.4613578210578365, 0.45366838980040214, 0.4466198335722483, 0.44031533128356276, 0.43485570324432005, 0.430335601856838, 0.4268394396532416, 0.4244373597790756, 0.4231816105307424, 0.4231036928652479, 0.4242125951787667, 0.4264943152234608, 0.42991271411914006, 0.43441158408878583, 0.4399176745603654, 0.4463443367649121, 0.45359542502972217, 0.4615691270253707, 0.4701614672204743, 0.47926931595004146, 0.48879282198048346, 0.49863725697276245, 0.5087143105302068, 0.5189429047465531, 0.5292496107227939, 0.5395687509815347, 0.5498422655131951, 0.5600194089505633, 0.5700563346756156, 0.5799156101681012, 0.5895656975290998, 0.5989804242629155, 0.6081384621608641, 0.6170228264013718, 0.6256204025744107, 0.6339215060384397, 0.6419194756132449, 0.6496103019126187, 0.656992289465304, 0.6640657510278982, 0.6708327320530315, 0.6772967630560547, 0.6834626375587388, 0.6893362133293934, 0.6949242347479518, 0.7002341742741832, 0.7052740911670496, 0.7100525057789522 ], [ 0.48902643091181675, 0.48060249126157645, 0.47260465090392945, 0.46512717002439463, 0.4582674758641139, 0.45212361898190007, 0.4467911953922735, 0.44235985379493353, 0.4389095851683414, 0.4365070627514772, 0.43520234669452246, 0.4350262728923794, 0.4359887996885982, 0.43807849089031115, 0.441263183987669, 0.4454917539914823, 0.45069676397620034, 0.45679771532565633, 0.46370458378704904, 0.47132134838123113, 0.47954927574488637, 0.488289795246372, 0.4974468742111906, 0.506928866478594, 0.5166498555290351, 0.5265305445325705, 0.5364987619027015, 0.5464896557651137, 0.5564456478521314, 0.5663162099132979, 0.5760575162269627, 0.5856320158676137, 0.5950079590378153, 0.6041589035362903, 0.6130632205024816, 0.6217036129494359, 0.6300666561589078, 0.6381423656035974, 0.6459237955085319, 0.6534066693021616, 0.6605890418921038, 0.6674709928067587, 0.6740543486703409, 0.6803424331431092, 0.6863398422957353, 0.6920522433462023, 0.6974861947304198, 0.7026489855743646, 0.7075484927640279, 0.7121930539536404 ], [ 0.49969381512482525, 0.49152873883075315, 0.48377618886632817, 0.47652611294330494, 0.4698711359875377, 0.46390418084773877, 0.45871562463993854, 0.45439010173610245, 0.4510031302136175, 0.44861779709388405, 0.4472817750408261, 0.44702494630926287, 0.4478578708528643, 0.44977125601334494, 0.4527364770268268, 0.4567070807391437, 0.46162110196485184, 0.46740395123846384, 0.4739716035685322, 0.4812338289979616, 0.489097247769987, 0.49746805211126827, 0.5062542997390963, 0.5153677410472186, 0.5247251867098937, 0.5342494533102351, 0.543869942505956, 0.5535229166768834, 0.5631515339111317, 0.5727057003344187, 0.5821417903913018, 0.5914222773537091, 0.6005153081078409, 0.6093942487606074, 0.6180372210996731, 0.6264266445182686, 0.6345487936346297, 0.6423933783890207, 0.6499531507550936, 0.6572235402198822, 0.6642023187405233, 0.670889294863554, 0.6772860359991971, 0.6833956173998538, 0.6892223961355372, 0.6947718082386584, 0.7000501871668112, 0.7050646017743458, 0.7098227120682729, 0.7143326411339397 ], [ 0.5102545436641778, 0.5023610372383172, 0.4948668366838675, 0.48785754710407775, 0.48142099024419904, 0.4756449834182328, 0.47061471727382564, 0.4664098355547168, 0.46310137520497363, 0.4607487731763581, 0.4593971760110087, 0.4590752894481535, 0.4597939720202739, 0.46154571012842704, 0.4643050218520116, 0.46802973856987445, 0.4726630253440929, 0.47813593806387744, 0.4843702858809877, 0.49128157162900027, 0.49878181400257593, 0.5067821027976529, 0.5151947915773538, 0.5239352819113074, 0.5329233942694309, 0.5420843503964334, 0.5513494106979951, 0.5606562194871291, 0.5699489131545282, 0.5791780437378792, 0.5883003649382376, 0.5972785208683979, 0.6060806707591554, 0.6146800761461424, 0.623054671068793, 0.6311866306852005, 0.6390619494621841, 0.646670036682195, 0.6540033343233224, 0.6610569603070573, 0.6678283785631207, 0.6743170962326777, 0.6805243875339694, 0.6864530432743794, 0.692107144649368, 0.6974918597721842, 0.7026132612893384, 0.7074781634243367, 0.712093976832078, 0.7164685797200371 ], [ 0.5207041218999859, 0.5130928751296441, 0.505867962451549, 0.49911063507431674, 0.4929039322785603, 0.48733061305238495, 0.4824707435127818, 0.4783990356497943, 0.4751820789371933, 0.4728756454423146, 0.47152227234551636, 0.4711493252985629, 0.47176771737148954, 0.47337140265410554, 0.47593768839956874, 0.4794283273938039, 0.48379127730601273, 0.48896295843300774, 0.49487081274570144, 0.5014359664170621, 0.5085758204520058, 0.5162064316786057, 0.5242445904233206, 0.5326095441693608, 0.5412243532574776, 0.5500168926729999, 0.5589205327402246, 0.5678745420958677, 0.5768242603280113, 0.5857210870049984, 0.5945223301714867, 0.6031909521192053, 0.6116952443456639, 0.6200084577618846, 0.6281084088012092, 0.6359770773211183, 0.6436002081515402, 0.6509669248161802, 0.6580693612801654, 0.6649023154780466, 0.6714629267639489, 0.6777503782162104, 0.683765623845552, 0.6895111401314735, 0.6949907008893167, 0.7002091742029953, 0.7051723400072045, 0.7098867268370378, 0.7143594662579171, 0.718598163525421 ], [ 0.5310355495915156, 0.523715139331941, 0.5167682497581055, 0.5102717885286479, 0.5043040572000913, 0.4989428303566922, 0.49426314149251493, 0.49033486373211765, 0.4872202115972, 0.4849713215844675, 0.4836280872578818, 0.48321642275087057, 0.48374710375294605, 0.4852152883572045, 0.48760075756902016, 0.49086884664965186, 0.4949719751116665, 0.4998516350407073, 0.5054406706844469, 0.5116656782788823, 0.5184493707987176, 0.52571278173874, 0.5333772181954142, 0.5413659101439026, 0.5496053353117205, 0.5580262248498041, 0.5665642732805085, 0.5751605874182878, 0.583761914297862, 0.5923206890622429, 0.6007949416740251, 0.6091480974209832, 0.6173487014181783, 0.6253700923192109, 0.6331900456629413, 0.6407904029433318, 0.6481566987146157, 0.6552777948611834, 0.6621455285478595, 0.6687543782687789, 0.6751011507659594, 0.6811846903228077, 0.6870056109874592, 0.6925660515862024, 0.6978694528962989, 0.7029203560158983, 0.7077242207596027, 0.7122872627914039, 0.7166163081577609, 0.7207186638833107 ], [ 0.5412396507254454, 0.5342165016672406, 0.5275541450825184, 0.5213251786499236, 0.5156032359282541, 0.5104612077455202, 0.505969215607873, 0.5021924179362727, 0.49918876132767387, 0.4970068143005672, 0.49568383455631865, 0.49524421798647483, 0.4956984561206559, 0.49704268951565167, 0.4992588925399056, 0.5023156678511292, 0.5061695755338366, 0.5107668803393994, 0.5160455759619764, 0.5219375393087755, 0.5283706783002668, 0.5352709594303915, 0.5425642306731989, 0.5501777861763231, 0.5580416475359808, 0.5660895598230476, 0.5742597178865484, 0.5824952498707588, 0.590744491116375, 0.5989610837737229, 0.6071039366877556, 0.615137077454857, 0.6230294248375995, 0.6307545055789777, 0.6382901355102427, 0.6456180809644056, 0.6527237130383562, 0.6595956642524021, 0.6662254946433278, 0.6726073722679651, 0.6787377714428624, 0.684615190748327, 0.6902398918272543, 0.6956136592592697, 0.7007395812421635, 0.7056218504248413, 0.7102655839744219, 0.7146766617958213, 0.7188615817313886, 0.7228273305317777 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "0_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "1_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.2554171597585082, 0.16836228289759916, 0.15383351920547317, 0.12554584914942554, 0.0855199226454489, 0.041923738642980365, 0.042435097313190666, 0.07388392934905631, 0.0028814072487392717, 0.08532625721387746, 0.11832700197006044, 0.09332532994449139, 0.12465862850424025, 0.10927987459039408, 0.1133127740249954, 0.11106552677626556, 0.13562084050921372, 0.1838158209520383, 0.20145471282315283, 0.20182879338321305, 0.21134335953178837, 0.3411679398268461, 0.5352822691202164, 0.9177997410297394, 0.7778274770826101, 0.18595571450545217, 0.23435220013874838, 0.16525102289053464, 0.1773562005290745 ], "xaxis": "x", "y": [ 0.24258662201464176, 0.5297565309485772, 0.45934036903775743, 0.36482439734619937, 0.23827713817772164, 0.09247507012780348, 0.17166928193304654, 0.15661013760289147, 0.181160308074951, 0.13924034381468114, 0.05788360015785916, 0.6103114727884531, 0.10593810772418724, 0.1149977330719707, 0.16821623185487736, 0.13603307285005425, 0.1918728874125481, 0.17661093222592275, 0.17125119155035753, 0.19292943778191388, 0.15774301412300856, 0.5152985500171781, 0.3241129443049431, 0.3311000978574157, 0.5080037554726005, 0.6264283813503558, 0.668607864048284, 0.5758856309903699, 0.6714439547848815 ], "yaxis": "y" }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "showlegend": false, "text": [ "0_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "1_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.2554171597585082, 0.16836228289759916, 0.15383351920547317, 0.12554584914942554, 0.0855199226454489, 0.041923738642980365, 0.042435097313190666, 0.07388392934905631, 0.0028814072487392717, 0.08532625721387746, 0.11832700197006044, 0.09332532994449139, 0.12465862850424025, 0.10927987459039408, 0.1133127740249954, 0.11106552677626556, 0.13562084050921372, 0.1838158209520383, 0.20145471282315283, 0.20182879338321305, 0.21134335953178837, 0.3411679398268461, 0.5352822691202164, 0.9177997410297394, 0.7778274770826101, 0.18595571450545217, 0.23435220013874838, 0.16525102289053464, 0.1773562005290745 ], "xaxis": "x2", "y": [ 0.24258662201464176, 0.5297565309485772, 0.45934036903775743, 0.36482439734619937, 0.23827713817772164, 0.09247507012780348, 0.17166928193304654, 0.15661013760289147, 0.181160308074951, 0.13924034381468114, 0.05788360015785916, 0.6103114727884531, 0.10593810772418724, 0.1149977330719707, 0.16821623185487736, 0.13603307285005425, 0.1918728874125481, 0.17661093222592275, 0.17125119155035753, 0.19292943778191388, 0.15774301412300856, 0.5152985500171781, 0.3241129443049431, 0.3311000978574157, 0.5080037554726005, 0.6264283813503558, 0.668607864048284, 0.5758856309903699, 0.6714439547848815 ], "yaxis": "y2" } ], "layout": { "annotations": [ { "font": { "size": 14 }, "showarrow": false, "text": "Mean", "x": 0.25, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 14 }, "showarrow": false, "text": "Standard Error", "x": 0.8, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" } ], "autosize": false, "height": 450, "hovermode": "closest", "legend": { "orientation": "h", "x": 0, "y": -0.25 }, "margin": { "b": 100, "l": 35, "pad": 0, "r": 35, "t": 35 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "width": 950, "xaxis": { "anchor": "y", "autorange": false, "domain": [ 0.05, 0.45 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "xaxis2": { "anchor": "y2", "autorange": false, "domain": [ 0.6, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "yaxis": { "anchor": "x", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x2" }, "type": "linear" }, "yaxis2": { "anchor": "x2", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "type": "linear" } } }, "text/html": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "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": [ [ 0.8962405199397685, 0.8964092338720768, 0.8969476171284326, 0.8978599785023441, 0.899149903835268, 0.9008204050951973, 0.9028741044838393, 0.9053134104063955, 0.9081406377554999, 0.9113580348970107, 0.914967694685678, 0.9189713458216069, 0.9233700472715687, 0.9281638350205484, 0.9333513823539098, 0.9389297254312738, 0.9448940823453738, 0.9512377694346468, 0.9579522022656786, 0.9650269619243388, 0.9724499071687357, 0.9802073160866512, 0.9882840447620339, 0.9966636939487054, 1.0053287775080053, 1.0142608884082873, 1.0234408595384332, 1.0328489176017541, 1.0424648290524094, 1.0522680375101403, 1.0622377924033142, 1.0723532687981694, 1.0825936785034234, 1.0929383726216628, 1.1033669357655638, 1.1138592721836011, 1.1243956840506681, 1.1349569421836234, 1.1455243494413327, 1.1560797970671566, 1.1666058142300555, 1.1770856110210102, 1.187503115161339, 1.1978430026838867, 1.208090722851219, 1.218232517581593, 1.228255435659352, 1.2381473420135998, 1.247896922355782, 1.25749368347276 ], [ 0.8971321825195846, 0.8973206110024606, 0.8978820816546568, 0.898821248084602, 0.9001419684718501, 0.9018474123793826, 0.9039402123457032, 0.9064226284879252, 0.9092966926583969, 0.9125642970341638, 0.9162271811405741, 0.9202867785248303, 0.9247439263519719, 0.9295984927623108, 0.9348490030684945, 0.9404923350289084, 0.9465235201108231, 0.9529356543949626, 0.9597199024328257, 0.9668655704291897, 0.9743602263811232, 0.9821898492558395, 0.9903389940699832, 0.9987909637197516, 1.0075279814008877, 1.0165313595828538, 1.0257816629738752, 1.0352588639139548, 1.044942489306749, 1.0548117586479346, 1.064845712998141, 1.0750233349350533, 1.0853236596321012, 1.0957258772786456, 1.1062094270916119, 1.1167540831844516, 1.1273400325644383, 1.1379479455269672, 1.1485590387115583, 1.1591551310802437, 1.1697186930746706, 1.1802328892077933, 1.1906816143462169, 1.201049523942198, 1.2113220584789017, 1.2214854623989928, 1.2315267977933337, 1.2414339531342986, 1.2511956473457035, 1.2608014295086691 ], [ 0.8983650437762641, 0.8985750811877834, 0.8991614714886748, 0.9001293129080334, 0.9014828371142752, 0.9032254505687941, 0.9053598250298476, 0.9078880249753267, 0.9108116719680109, 0.9141321256236443, 0.9178505939415731, 0.921968070899722, 0.9264850737983651, 0.9314012460634205, 0.9367149374759466, 0.9424228585945861, 0.9485198575279588, 0.9549988217616638, 0.9618506827946225, 0.9690644947822823, 0.976627561524426, 0.9845255922120717, 0.9927428721196453, 1.001262438924626, 1.0100662585555247, 1.0191353966814187, 1.0284501834485158, 1.0379903700607318, 1.047735276453471, 1.0576639297322408, 1.067755193316034, 1.0779878868893087, 1.0883408973639812, 1.0987932811040655, 1.1093243576903, 1.1199137955089153, 1.1305416894466058, 1.1411886309666925, 1.1518357708344102, 1.1624648747515267, 1.173058372156063, 1.1835993984407855, 1.1940718308440512, 1.2044603182701474, 1.2147503053009288, 1.2249280506678235, 1.234980640460322, 1.2448959963562682, 1.2546628791670666, 1.2642708879985147 ], [ 0.899945506375861, 0.9001792756838743, 0.9007926342695378, 0.9017912249161066, 0.9031797559528303, 0.9049619526202823, 0.9071405556433535, 0.9097173802448514, 0.9126934935649349, 0.916069525993506, 0.9198459614487401, 0.9240232047644895, 0.9286013581143382, 0.9335797908796991, 0.9389566589940234, 0.9447285061886023, 0.9508900088418888, 0.9574338648098545, 0.964350796696818, 0.971629634594553, 0.9792574489224227, 0.9872197119566555, 0.9955004734906918, 1.0040825411026908, 1.0129476589708841, 1.022076681485999, 1.0314497394269802, 1.0410463974519526, 1.0508458022862286, 1.0608268213892418, 1.0709681721258366, 1.0812485416110278, 1.091646697477549, 1.1021415898529452, 1.1127124448458112, 1.123338849840039, 1.1340008308873297, 1.1446789224762706, 1.1553542299464357, 1.1660084848058416, 1.1766240932055085, 1.1871841778203696, 1.1976726133879214, 1.2080740561580876, 1.2183739675142977, 1.2285586320326203, 1.2386151702551629, 1.24853154646246, 1.2582965717392893, 1.26789990263614 ], [ 0.9018796393821231, 0.9021395670107429, 0.9027822354198336, 0.9038139218247359, 0.9052399029606714, 0.9070642914021508, 0.9092899138241151, 0.911918274101208, 0.9149497374849385, 0.9183840114549436, 0.9222206701840576, 0.9264593877829337, 0.9310997644407444, 0.9361408543561192, 0.9415806086515973, 0.947415410895909, 0.9536397826342391, 0.9602462553972069, 0.9672253705859474, 0.9745657651020629, 0.9822543092091747, 0.9902762731974135, 0.9986155074627536, 1.0072546262382511, 1.0161751889454285, 1.0253578755507349, 1.034782653855187, 1.0444289376221665, 1.0542757350575058, 1.0643017875283294, 1.07448569862697, 1.084806053809507, 1.0952415308996422, 1.1057710017743572, 1.116373625548453, 1.1270289335679755, 1.1377169065067132, 1.148418043845393, 1.1591134259999987, 1.1697847693538659, 1.1804144744431242, 1.1909856675404267, 1.2014822358839603, 1.2118888568015467, 1.2221910209870026, 1.2323750501936601, 1.2424281096198453, 1.2523382152714904, 1.2620942365963934, 1.271685894694592 ], [ 0.9041731217774788, 0.9044620052275258, 0.9051366852249834, 0.906204140826016, 0.9076702826679699, 0.9095396493783123, 0.9118151416201119, 0.914497877904701, 0.9175873938171509, 0.9210823176161105, 0.9249811610491965, 0.9292827472061052, 0.9339860985788722, 0.9390899177440631, 0.9445919415512455, 0.9504884003930483, 0.9567736779422199, 0.963440162833409, 0.9704782432458853, 0.9778763942612659, 0.9856213199201793, 0.9936981243442123, 1.0020904956315886, 1.0107808925057264, 1.0197507277151694, 1.028980544709989, 1.038450185687351, 1.0481389500636387, 1.0580257430134727, 1.0680892140611955, 1.0783078859043251, 1.0886602737509041, 1.0991249954975535, 1.1096808730864662, 1.120307025372526, 1.1309829528158608, 1.1416886142954372, 1.1524044963215498, 1.1631116749081756, 1.1737918703564745, 1.1844274951913658, 1.1950016954917035, 1.2054983858556723, 1.2159022782467495, 1.2261989049741215, 1.236374636070063, 1.2464166913377825, 1.256313147354331, 1.2660529397237568, 1.2756258608866178 ], [ 0.9068311694161916, 0.9071522249919364, 0.9078620211214848, 0.9089682680567891, 0.9104775331756281, 0.9123947769996825, 0.9147229268252169, 0.9174626355073364, 0.9206125261684242, 0.9241700607040185, 0.9281325939792283, 0.9324980118408629, 0.9372646946856487, 0.9424309543459046, 0.9479942959269095, 0.9539507953774057, 0.9602947088811593, 0.9670183010222808, 0.9741118319041762, 0.9815636446962425, 0.9893603106896377, 0.9974868038775881, 1.005926687807655, 1.0146623044081324, 1.0236749588127854, 1.0329450968427205, 1.0424524733943221, 1.0521763109310094, 1.0620954478337343, 1.072188476681123, 1.0824338727012943, 1.0928101127193628, 1.1032957849539147, 1.1138696900168925, 1.1245109334546395, 1.1351990101469696, 1.1459138808575644, 1.1566360412078183, 1.1673465833294663, 1.178027250439226, 1.1886604845711808, 1.1992294677005353, 1.209718156494045, 1.2201113109284973, 1.2303945170264239, 1.2405542039692883, 1.2505776558600439, 1.2604530184188492, 1.2701693009078745, 1.2797163735922366 ], [ 0.9098584478994808, 0.9102153276953732, 0.9109637546071259, 0.9121121443514983, 0.9136676834751718, 0.9156356976764961, 0.9180190677393628, 0.920817920158456, 0.924029944182748, 0.9276514340409555, 0.9316785719720485, 0.9361082659163005, 0.9409381998170874, 0.9461662436289309, 0.9517896339522616, 0.9578042731639371, 0.9642042869306731, 0.9709818257419581, 0.9781270414878983, 0.9856281726186337, 0.9934716901310058, 1.0016424739575265, 1.0101240014620145, 1.0188985374059842, 1.0279473193858986, 1.037250735493783, 1.0467884925716509, 1.056539774367912, 1.0664833894399641, 1.0765979089393312, 1.0868617945666401, 1.0972535170489641, 1.1077516655093782, 1.1183350480901064, 1.1289827841679223, 1.1396743884751168, 1.1503898474126284, 1.1611096878198393, 1.1718150384475834, 1.182487684369059, 1.1931101145556597, 1.2036655628444204, 1.214138042525513, 1.224512374785968, 1.2347742112543745, 1.2449100509041, 1.2549072515850461, 1.2647540364666736, 1.2744394956891942, 1.2839535835304166 ], [ 0.9132589700455113, 0.9136557373205076, 0.9144466825386968, 0.9156408348025006, 0.9172458902090641, 0.9192674282031003, 0.9217081990559026, 0.9245677842757363, 0.9278429937298808, 0.9315290464180729, 0.9356210228215568, 0.9401148631777207, 0.9450075095620681, 0.9502963202004766, 0.9559781984405049, 0.9620488284524522, 0.9685021835539956, 0.9753302979515899, 0.9825232281721439, 0.9900691316141281, 0.9979544100912122, 1.0061638854677186, 1.0146809878919887, 1.0234879454994654, 1.0325659694351699, 1.0418954309478086, 1.0514560289731563, 1.061226947574135, 1.071187003129706, 1.0813147814452886, 1.091588765094564, 1.1019874513574117, 1.1124894611280212, 1.1230736391520915, 1.1337191459258813, 1.1444055415620085, 1.1551128618981015, 1.165821687102275, 1.176513203011711, 1.1871692554278115, 1.197772397587153, 1.208305931025304, 1.2187539400557053, 1.22910132009355, 1.2393338000654457, 1.2494379591587919, 1.2594012381787398, 1.2692119457955244, 1.278859259978092, 1.2883332249234374 ], [ 0.917035972259806, 0.9174770248095907, 0.9183146545339816, 0.919558348475779, 0.9212161362149147, 0.9232936957382154, 0.9257935649712121, 0.9287148102321835, 0.9320534946126042, 0.9358039419596057, 0.9399602793702956, 0.9445175380181888, 0.9494718844558694, 0.9548200792321105, 0.9605585997521497, 0.9666828400479099, 0.9731865782121871, 0.9800617159153426, 0.9872982187333815, 0.9948841821426428, 1.0028059678098729, 1.0110483748970367, 1.0195948254685856, 1.0284275521239659, 1.0375277813435035, 1.046875909137722, 1.0564516673559707, 1.0662342799975109, 1.0762026094112591, 1.0863352925526573, 1.096610867602514, 1.107007891304798, 1.117505047387115, 1.1280812464109278, 1.1387157173707994, 1.1493880913337757, 1.1600784773812547, 1.1707675310943988, 1.181436515805958, 1.1920673568317797, 1.2026426888898172, 1.2131458969154945, 1.223561150488093, 1.233873432091666, 1.2440685594467136, 1.254133202163699, 1.264054892983089, 1.2738220338848483, 1.2834238973628758, 1.2928506231746992 ], [ 0.9211917610377911, 0.9216817028428196, 0.9225703103182592, 0.9238673298711942, 0.925580909313582, 0.927716652174519, 0.9302768166345952, 0.9332600243008857, 0.936661778395184, 0.9404757441989373, 0.9446952954856116, 0.9493146529104414, 0.9543291941005827, 0.959734995039137, 0.9655279991159663, 0.9717032179139969, 0.978254172740203, 0.985172602204207, 0.9924483756027233, 1.0000695394818515, 1.0080224407849077, 1.0162918893622848, 1.024861337355595, 1.03371306253352, 1.0428283484335206, 1.052187657530226, 1.0617707955702977, 1.0715570662907645, 1.081525416326416, 1.0916545704210259, 1.1019231572083559, 1.1123098258878639, 1.122793354132936, 1.133352747554529, 1.1439673310194731, 1.1546168320939145, 1.165281456858346, 1.1759419583177941, 1.1865796976168903, 1.1971766982598264, 1.2077156935319766, 1.2181801673228732, 1.2285543885568215, 1.2388234394486213, 1.2489732378158287, 1.258990553694416, 1.2688630205217741, 1.2785791411671845, 1.2881282891063472, 1.2975007050509397 ], [ 0.925727524181309, 0.9262710063427357, 0.9272148330315115, 0.9285687994490388, 0.9303409563156133, 0.93253667420812, 0.9351578879361842, 0.9382028669590168, 0.9416667558940325, 0.9455428080858991, 0.9498238594553559, 0.9545034445736685, 0.9595761681624884, 0.9650373556226878, 0.9708823146511033, 0.9771055766455913, 0.9837003334358021, 0.990658118126622, 0.9979686881722561, 1.005620046315177, 1.0135985445168052, 1.021889032741482, 1.03047502864879, 1.0393388940248036, 1.0484620099131845, 1.0578249460704958, 1.0674076224983449, 1.0771894620175246, 1.087149533522386, 1.0972666859170028, 1.107519672917877, 1.1178872689890123, 1.1283483767010867, 1.1388821258012405, 1.1494679642625802, 1.160085741558672, 1.1707157843871385, 1.1813389650477988, 1.1919367626686121, 1.2024913174647576, 1.212985478216392, 1.2234028431543627, 1.2337277944513418, 1.2439455265301465, 1.2540420684146818, 1.2640043003671184, 1.2738199650729003, 1.2834776736522597, 1.2929669067951495, 1.30227801133066 ], [ 0.9306431235472667, 0.9312446886100804, 0.9322477652352386, 0.9336620043169269, 0.9354951775698852, 0.9377523025982968, 0.9404349737399552, 0.9435412024310977, 0.9470659533330039, 0.9510022829580819, 0.9553426863699686, 0.9600801452943436, 0.965208539623163, 0.9707224161340653, 0.9766163732244421, 0.9828843771172849, 0.9895192178869212, 0.9965121743132805, 1.0038528677135066, 1.011529253572177, 1.0195277012260813, 1.0278331242269259, 1.0364291365513736, 1.0452982192854239, 1.0544218887001031, 1.063780860560021, 1.073355207865104, 1.083124510608845, 1.093067996929961, 1.1031646754774709, 1.1133934590457235, 1.1237332796532382, 1.1341631952883593, 1.144662488556547, 1.1552107574573292, 1.165787998503418, 1.1763746823793735, 1.186951822322661, 1.1975010354016962, 1.2080045968605129, 1.2184454877024062, 1.2288074356899779, 1.2390749499519866, 1.2492333493994772, 1.2592687851729742, 1.2691682573595289, 1.2789196262386275, 1.2885116183349359, 1.2979338275738006, 1.307176711851242 ], [ 0.9359369115689604, 0.9366008689111878, 0.9376669074218481, 0.9391443768575674, 0.9410406383940977, 0.9433602832406975, 0.9461045702945652, 0.9492713333851003, 0.9528554916203033, 0.956850065022833, 0.961247365156097, 0.9660399473830388, 0.9712210408341425, 0.976784428598226, 0.9827239671483502, 0.9890330002352353, 0.9957038566470946, 1.0027275136250464, 1.0100934273477489, 1.0177894952545514, 1.0258021086452513, 1.0341162609875194, 1.0427156872431107, 1.0515830180085115, 1.0606999383890228, 1.070047345578346, 1.0796055016727129, 1.089354179810281, 1.0992728026606056, 1.109340572833909, 1.1195365950887048, 1.1298399903829899, 1.1402300018984752, 1.1506860932020955, 1.1611880387193503, 1.1717160066905525, 1.1822506347737987, 1.1927730984505842, 1.2032651723868129, 1.213709284900742, 1.2240885656950293, 1.2343868870189885, 1.2445888984403004, 1.2546800554224906, 1.264646641922617, 1.2744757872448376, 1.284155477405292, 1.2936745612848874, 1.303022751865137, 1.3121906228596707 ], [ 0.9416056077433781, 0.9423359506524716, 0.9434682902564635, 0.9450115613226578, 0.9469726340557679, 0.9493556410324515, 0.9521615242608102, 0.9553879988909562, 0.9590300235386914, 0.9630806833118798, 0.96753221754266, 0.9723768645210203, 0.977607291464676, 0.9832165693417877, 0.9891978224882157, 0.9955437499976126, 1.0022461820064446, 1.0092957568438745, 1.0166817375556496, 1.0243919486321902, 1.032412801475614, 1.0407293787528755, 1.0493255543611664, 1.0581841326386356, 1.0672869960108413, 1.0766152542343863, 1.0861493910574038, 1.0958694058289196, 1.105754948659924, 1.1157854483968122, 1.1259402330596897, 1.1361986426266124, 1.1465401341722987, 1.1569443794352656, 1.1673913549204369, 1.1778614246553916, 1.1883354157231265, 1.1987946866953274, 1.209221189091895, 1.2195975219976183, 1.2299069799760731, 1.2401335944328133, 1.2502621685963293, 1.2602783063041247, 1.270168434802311, 1.2799198217886976, 1.2895205869523974, 1.2989597082838338, 1.3082270234498, 1.3173132265454806 ], [ 0.9476442436304883, 0.9484446042308247, 0.9496461973668049, 0.95125746953901, 0.9532847614634044, 0.9557317439960594, 0.9585990654395973, 0.9618843583400275, 0.9655826625215292, 0.9696871794341377, 0.9741901454404337, 0.9790835693834622, 0.9843596488490691, 0.9900108187625694, 0.9960295163226205, 1.0024078083750159, 1.0091370155021253, 1.016207415706813, 1.0236080576078674, 1.0313266779747703, 1.0393497026723024, 1.0476623071774513, 1.0562485160177253, 1.0650913254171157, 1.0741728380628512, 1.0834744025489849, 1.0929767526731409, 1.1026601435552954, 1.1125044827286041, 1.1224894551138636, 1.132594641267793, 1.1427996285904254, 1.1530841153530973, 1.1634280075118888, 1.1738115083291387, 1.1842152008579312, 1.194620123362033, 1.2050078377559192, 1.2153604911595988, 1.2256608706743837, 1.2358924514989629, 1.2460394385226508, 1.2560868015512667, 1.266020304342827, 1.2758265276543999, 1.2854928865240582, 1.2950076420371437, 1.3043599078480757, 1.313539651750895, 1.3225376926104313 ], [ 0.9540461652831295, 0.9549197965382799, 0.9561932168937753, 0.9578743444534794, 0.9599689813292764, 0.9624803502073846, 0.9654088269611205, 0.9687519774977416, 0.9725049318971654, 0.9766610221687069, 0.9812125180020899, 0.9861512650073059, 0.9914690785117136, 0.9971578455101177, 1.0032093852677275, 1.0096151733274912, 1.0163660354768738, 1.0234518866472881, 1.0308615505485486, 1.0385826656014545, 1.0466016659024795, 1.0549038198726857, 1.0634733094301503, 1.0722933353986992, 1.081346238324976, 1.090613626969856, 1.1000765091687508, 1.1097154215329683, 1.1195105557046492, 1.1294418797184436, 1.139489253578263, 1.149632538515786, 1.1598516996259638, 1.1701269017160592, 1.1804385982925587, 1.1907676136646301, 1.2010952181770216, 1.2114031966106522, 1.221673909807669, 1.231890349598588, 1.2420361871265109, 1.252095814687254, 1.262054381225501, 1.2718978216532402, 1.281612880182303, 1.2911871278888625, 1.300608974753756, 1.3098676764470178, 1.3189533361475236, 1.3278569017084934 ], [ 0.9608030768463415, 0.9617528501929381, 0.9631003085582326, 0.9648528257006387, 0.9670156738269066, 0.9695916479149854, 0.9725808673162163, 0.9759808317974698, 0.9797867491408555, 0.9839920721614671, 0.9885891171260122, 0.9935696142478868, 0.9989250744789163, 1.0046469272219745, 1.0107264562698368, 1.017154606866465, 1.0239217460454195, 1.0310174409690371, 1.0384302925613134, 1.0461478372233957, 1.0541565133202782, 1.0624416812781539, 1.070987684019641, 1.0797779354547847, 1.0887950269675857, 1.098020844237304, 1.107436688835501, 1.117023400702471, 1.1267614788404758, 1.1366311984422135, 1.1466127232830203, 1.156686212616925, 1.1668319220925258, 1.1770302983835252, 1.187262067347305, 1.1975083156025756, 1.2077505654706688, 1.2179708432630565, 1.228151740929801, 1.2382764711107597, 1.2483289156579342, 1.2582936677256409, 1.2681560675511294, 1.2779022320790272, 1.2875190786101758, 1.2969943426854749, 1.3063165904423988, 1.3154752257083193, 1.3244604921189471, 1.333263470570643 ], [ 0.9679051114698741, 0.9689335212266065, 0.9703568806123701, 0.9721820190079209, 0.9744136964105283, 0.977054301313984, 0.9801037062065799, 0.9835593347505601, 0.987416447585959, 0.9916685952469764, 0.9963081394597143, 1.0013267286298853, 1.0067156361969667, 1.0124659201404274, 1.0185684156299097, 1.0250136101875742, 1.0317914633534846, 1.0388912248718105, 1.046301287200988, 1.0540090892471208, 1.062001073928723, 1.070262693750517, 1.0787784549463073, 1.0875319902248413, 1.0965061512218797, 1.1056831134166742, 1.1150444879553896, 1.124571436284064, 1.134244784654084, 1.144045136438401, 1.153952980831155, 1.1639487969524018, 1.1740131526905102, 1.184126797829437, 1.1942707511536028, 1.204426381325363, 1.214575481401571, 1.2247003369106437, 1.23478378745475, 1.2448092818391951, 1.254760926766354, 1.2646235291642487, 1.2743826322542884, 1.2840245454938986, 1.2935363685638221, 1.30290600960038, 1.3121221979036326, 1.3211744913803998, 1.330053279006337, 1.3387497786138158 ], [ 0.975340919974649, 0.9764500890604171, 0.9779508752979863, 0.9798495730586642, 0.9821504510454595, 0.9848555101848936, 0.9879643803222873, 0.9914743931321898, 0.9953808320078863, 0.9996773165526783, 1.0043562451950432, 1.0094092079730204, 1.0148272970270453, 1.0206012774144193, 1.0267216206323657, 1.0331784334546357, 1.0399613281832139, 1.047059278354919, 1.0544604925057397, 1.0621523245731659, 1.0701212274959218, 1.0783527484083406, 1.0868315594264768, 1.0955415164267175, 1.104465738323947, 1.1135867003063862, 1.1228863357123635, 1.132346142431581, 1.1419472907428938, 1.1516707303231442, 1.1614972947880358, 1.1714078025891639, 1.1813831534256705, 1.191404419569154, 1.2014529316700508, 1.2115103587383969, 1.2215587820813734, 1.2315807630508355, 1.2415594045103098, 1.2514784059789053, 1.2613221124536578, 1.2710755569519612, 1.2807244968552702, 1.2902554441720786, 1.2996556898758076, 1.3089133225064626, 1.3180172412589641, 1.3269571638102307, 1.3357236291647692, 1.3443079958219766 ], [ 0.9830977715081021, 0.9842894559456062, 0.9858688632001809, 0.9878417668447907, 0.9902119652048708, 0.992981087357188, 0.996148520979178, 0.9997114877284464, 1.0036652633428158, 1.0080035075451803, 1.0127186438559928, 1.0178022206965762, 1.0232451957160213, 1.0290381103737276, 1.0351711515422064, 1.0416341211870634, 1.048416348161592, 1.055506577489486, 1.062892865779656, 1.0705625013303022, 1.0785019577629484, 1.0866968826425984, 1.09513211793697, 1.103791746924894, 1.1126591615547046, 1.12171714459536, 1.130947961706177, 1.1403334594586305, 1.14985516619843, 1.1594943933674249, 1.1692323354916354, 1.1790501674950788, 1.1889291383418075, 1.198850660262784, 1.2087963930136003, 1.2187483227504867, 1.2286888352199477, 1.2386007830419807, 1.2484675469371413, 1.2582730908055302, 1.2680020106205045, 1.2776395771461782, 1.287171772534152, 1.2965853208984366, 1.30586771300566, 1.3150072252589795, 1.3239929331870748, 1.3328147196832545, 1.3414632782684974, 1.3499301116767994 ], [ 0.9911616630765778, 0.9924372548901716, 0.9940961473826553, 0.9961436095449858, 0.9985829888702653, 1.001415555537136, 1.0046404537855653, 1.0082547780360571, 1.0122537689676983, 1.0166311004930684, 1.0213792098914944, 1.0264896166181776, 1.0319531826599442, 1.0377602856812214, 1.0439008987954288, 1.0503645903319916, 1.0571404687377162, 1.0642171008003813, 1.0715824277414583, 1.0792236966407702, 1.0871274170281142, 1.0952793461175352, 1.1036645017517899, 1.112267199595677, 1.1210711100352624, 1.1300593301033393, 1.1392144661390335, 1.148518723504142, 1.1579540003389357, 1.1675019829505406, 1.1771442409480148, 1.1868623206601967, 1.19663783570733, 1.2064525538552617, 1.2162884794818547, 1.2261279311401947, 1.235953613824614, 1.2457486856458506, 1.2554968187012672, 1.2651822539980326, 1.2747898503478756, 1.284305127209302, 1.2937143015037849, 1.303004318482026, 1.3121628767603428, 1.3211784476898185, 1.3300402892591225, 1.3387384547664283, 1.347263796527331, 1.3556079649117398 ], [ 0.99951743632137, 1.000877965793798, 1.0026168779754032, 1.00473895395783, 1.0072471083696588, 1.0101422637569861, 1.0134233198284837, 1.017087229534135, 1.0211291761491135, 1.025542826745706, 1.0303206231320512, 1.0354540660743812, 1.040933954007798, 1.0467505513501725, 1.0528936790775694, 1.059352735997961, 1.0661166694340398, 1.0731739177177646, 1.0805123451708738, 1.088119185352617, 1.095981002504711, 1.1040836758459125, 1.1124124073967445, 1.120951751466943, 1.1296856625951008, 1.1385975582497567, 1.1476703926592564, 1.1568867384823114, 1.166228873492375, 1.1756788699221137, 1.185218684550468, 1.1948302479890673, 1.2044955519361724, 1.2141967334181976, 1.223916155242438, 1.2336364820483166, 1.243340751477209, 1.253012440091181, 1.2626355237639384, 1.272194532347481, 1.281674598489107, 1.2910615005369563, 1.3003416995318684, 1.3095023703356807, 1.3185314269972574, 1.327417542502018, 1.336150163093612, 1.3447195173922284, 1.3531166205686014, 1.3613332738593982 ], [ 1.008148900350833, 1.0095950392858513, 1.0114141770098346, 1.013610623191292, 1.0161868763774615, 1.019143522289988, 1.0224792167597407, 1.0261907614507992, 1.0302732660185763, 1.0347203753930125, 1.0395245296406634, 1.044677219764252, 1.0501692070521962, 1.0559906845665743, 1.0621313733256832, 1.0685805585584105, 1.0753270801517925, 1.0823592951124745, 1.0896650292465606, 1.0972315319227506, 1.1050454433760557, 1.1130927797609933, 1.1213589377386528, 1.129828717991026, 1.1384863656131337, 1.1473156246301328, 1.1562998036881709, 1.1654218500791724, 1.174664429529399, 1.1840100095169794, 1.193440944222438, 1.2029395595319925, 1.21248823678927, 1.2220694942283825, 1.2316660652203615, 1.2412609726313915, 1.2508375987318858, 1.2603797502141716, 1.2698717179790837, 1.2792983314408688, 1.2886450071799276, 1.2978977918431651, 1.3070433992584134, 1.3160692417870703, 1.324963455994581, 1.333714922767702, 1.3423132820517878, 1.3507489424224286, 1.35901308573956, 1.3670976671630173 ], [ 1.0170389591046283, 1.0185710268181272, 1.0204702718122294, 1.0227405484177756, 1.0253839552683, 1.0284007526324215, 1.0317893558986024, 1.0355464107413301, 1.0396669433780328, 1.0441445670790233, 1.048971717048354, 1.054139882646592, 1.0596398095644382, 1.065461653583109, 1.0715950789536173, 1.0780293049159173, 1.0847531111904507, 1.0917548166623003, 1.09902224546099, 1.1065426923860908, 1.1143028963633186, 1.122289027279008, 1.130486688688514, 1.138880936753034, 1.1474563143284862, 1.1561968983008284, 1.1650863578755708, 1.1741080214486115, 1.183244949786055, 1.1924800134414857, 1.2017959725805945, 1.2111755576322905, 1.2206015494193605, 1.2300568576371074, 1.2395245967360113, 1.2489881584298708, 1.2584312801945066, 1.2678381092466775, 1.2771932616036181, 1.286481875919479, 1.2956896618829845, 1.304802943038069, 1.3138086939611506, 1.3226945717925092, 1.3314489421788935, 1.3400608997375238, 1.3485202831994996, 1.3568176854336829, 1.3649444585892323, 1.3728927146261127 ], [ 1.0261697409798747, 1.0277877142846927, 1.0297666334928155, 1.0321099133125105, 1.0348192684738, 1.0378946463240446, 1.0413342284189322, 1.0451345048265823, 1.0492904145052757, 1.0537955348380117, 1.0586422959759774, 1.0638221932642615, 1.0693259743166201, 1.0751437849799448, 1.0812652679127641, 1.0876796161476876, 1.0943755900653012, 1.1013415091652194, 1.1085652303126063, 1.116034122645755, 1.1237350469505536, 1.1316543447434428, 1.1397778399867389, 1.148090854502391, 1.1565782367990076, 1.1652244031395569, 1.1740133891642892, 1.1829289101504068, 1.191954427948346, 1.201073222713244, 1.2102684676995554, 1.2195233055661654, 1.2288209248310271, 1.2381446352989325, 1.247477941461172, 1.2568046130234753, 1.266108751862725, 1.2753748548411172, 1.2845878720207966, 1.2937332599267166, 1.3027970295968163, 1.3117657892442687, 1.3206267814327428, 1.329367914734941, 1.3379777899080267, 1.3464457206769966, 1.3547617492672654, 1.3629166568739295, 1.370901969293699, 1.3787099579798805 ], [ 1.0355227277599153, 1.0372262553630447, 1.0392841156210273, 1.04169929900661, 1.0444731523965953, 1.047605324001244, 1.0510937710819146, 1.0549348329091575, 1.0591233624319008, 1.0636529013492466, 1.0685158770795002, 1.0737037983356834, 1.0792074290600495, 1.0850169271074064, 1.0911219420689477, 1.097511673808505, 1.1041748983078592, 1.111099969962558, 1.1182748099298259, 1.125686889179874, 1.133323213204786, 1.141170313401644, 1.1492142482934644, 1.157440616170637, 1.165834579492396, 1.1743809004907622, 1.1830639868247326, 1.1918679457879293, 1.2007766454141466, 1.2097737808020472, 1.2188429440420903, 1.2279676962472217, 1.2371316403316583, 1.2463184933390454, 1.2555121572767178, 1.2646967875612702, 1.2738568583220469, 1.2829772239369697, 1.292043176293477, 1.301040497375423, 1.309955506874192, 1.3187751046118403, 1.327486807645878, 1.3360787819981819, 1.3445398690188868, 1.3528596064553264, 1.3610282443510708, 1.3690367559468628, 1.3768768437978447, 1.3845409413555143 ], [ 1.0450788796764983, 1.0468673004118225, 1.0490030877044074, 1.0514888228243449, 1.0543255007971608, 1.0575124853752798, 1.0610475212324624, 1.0649268049501746, 1.0691451085238581, 1.07369594155793, 1.0785717330902793, 1.0837640126269656, 1.0892635727366677, 1.095060601302988, 1.1011447783220838, 1.1075053381532167, 1.114131102347046, 1.1210104904001572, 1.1281315163585395, 1.1354817786510516, 1.1430484493572064, 1.1508182676673189, 1.1587775408253749, 1.1669121545039791, 1.175207593435612, 1.1836489722415064, 1.1922210757601188, 1.2009084077518137, 1.2096952466092157, 1.2185657065932634, 1.2275038031051047, 1.2364935205627334, 1.2455188815517626, 1.2545640160456166, 1.2636132296256357, 1.27265106976929, 1.2816623894089711, 1.2906324070905555, 1.2995467631805893, 1.3083915716807666, 1.3171534673099956, 1.3258196476076989, 1.3343779098970128, 1.3428166830242967, 1.351125053862054, 1.3592927886249242, 1.3673103491065006, 1.3751689039932657, 1.3828603354564704, 1.3903772412588389 ], [ 1.0548187539389873, 1.0566911174105351, 1.0589035589504763, 1.0614582651970663, 1.0643558949773748, 1.067595542512184, 1.0711747527142397, 1.07508958953761, 1.079334751506668, 1.0839037220375516, 1.0887889377202282, 1.093981956632879, 1.0994736111795302, 1.1052541348568399, 1.111313258108567, 1.1176402735266624, 1.1242240742793195, 1.1310531716601342, 1.1381156983451457, 1.1453994037233592, 1.1528916468874406, 1.1605793918040976, 1.1684492080135713, 1.1764872790696104, 1.1846794199091686, 1.1930111034911235, 1.201467496378667, 1.2100335024640565, 1.2186938137196979, 1.2274329666846515, 1.2362354033238825, 1.2450855349075574, 1.253967807617099, 1.2628667686822386, 1.2717671319674184, 1.2806538420514961, 1.2895121359689097, 1.2983276019067942, 1.307086234268002, 1.3157744846230714, 1.3243793081766604, 1.332888205471016, 1.3412892591359136, 1.3495711655762417, 1.3577232615609531, 1.3657355457437328, 1.3735986952040657, 1.3813040771501963, 1.388843755970143, 1.396210495855461 ], [ 1.0647226152220564, 1.0666777029828325, 1.0689652898438626, 1.071587181771652, 1.074543716313373, 1.0778337326067426, 1.081454588676721, 1.085402226570121, 1.0896712799762578, 1.0942552133905286, 1.0991464780719977, 1.1043366690780063, 1.1098166696526155, 1.1155767733481103, 1.1216067791039546, 1.1278960588720253, 1.1344336005760463, 1.1412080311044857, 1.1482076248635982, 1.1554203034632016, 1.16283363163698, 1.1704348137156189, 1.1782106940291426, 1.1861477636325244, 1.1942321748180391, 1.2024497640605274, 1.2107860833723296, 1.2192264395344428, 1.22775594031116, 1.2363595465285204, 1.2450221287795884, 1.2537285274844758, 1.2624636150600956, 1.2712123590241267, 1.2799598849516651, 1.2886915383147655, 1.297392944351303, 1.306050065228569, 1.3146492538824017, 1.3231773040228414, 1.3316214959033814, 1.3399696375459635, 1.3482101012061345, 1.3563318549449166, 1.3643244892487192, 1.3721782387082613, 1.3798839988268445, 1.3874333380838033, 1.3948185054243776, 1.4020324333880367 ], [ 1.0747705380970825, 1.0768068835541191, 1.0791678917038763, 1.0818550010619365, 1.084868241750784, 1.0882062111957347, 1.091866092591756, 1.095843716437056, 1.1001336603827636, 1.1047293778790346, 1.1096233428164368, 1.1148071964222586, 1.1202718841949133, 1.1260077739813654, 1.1320047503447495, 1.1382522841353355, 1.1447394790833465, 1.1514550991154884, 1.1583875810753996, 1.1655250378024136, 1.1728552562956875, 1.1803656951198809, 1.1880434844359906, 1.1958754311799302, 1.2038480310521755, 1.2119474882000985, 1.2201597428078337, 1.2284705062809609, 1.2368653033238175, 1.245329519943757, 1.2538484562629169, 1.2624073829480926, 1.2709916000684665, 1.2795864972334663, 1.2881776139412822, 1.296750699163923, 1.3052917693023949, 1.313787163757832, 1.3222235974757084, 1.3305882099296218, 1.338868610114972, 1.3470529172207906, 1.3551297967395053, 1.3630884918585715, 1.370918850054787, 1.3786113448825559, 1.3861570930093006, 1.3935478666067354, 1.4007761012554523, 1.4078348995609105 ], [ 1.0849425027692359, 1.087058408532258, 1.0894909167626368, 1.0922411109601415, 1.0953087264449324, 1.0986921308852209, 1.1023883433823, 1.1063930922656529, 1.110700907479178, 1.1153052393971175, 1.1201985930538554, 1.1253726658062984, 1.1308184774985106, 1.136526484800657, 1.1424866747276865, 1.1486886356155515, 1.1551216065203518, 1.1617745079020085, 1.1686359575833392, 1.1756942764460376, 1.1829374882919814, 1.190353317891658, 1.197929190597146, 1.20565223612594, 1.2135092983246787, 1.2214869519703522, 1.2295715270107386, 1.23774914011088, 1.246005732964468, 1.2543271165414105, 1.2626990202606518, 1.2711071449816231, 1.2795372186806464, 1.2879750537019934, 1.2964066045321698, 1.3048180251287897, 1.3131957249333364, 1.3215264228010142, 1.3297971981886052, 1.3379955390467249, 1.3461093859660191, 1.3541271722237391, 1.362037859469271, 1.3698309688717416, 1.377496607631278, 1.3850254908262256, 1.39240895863249, 1.3996389890076877, 1.4067082059822427, 1.413609883742171 ], [ 1.0952184863427767, 1.0974120385244426, 1.0999139427240558, 1.1027249391447462, 1.1058444797338918, 1.1092707129143489, 1.1130005029930776, 1.1170294843291144, 1.1213521467579735, 1.1259619453498853, 1.1308514250807968, 1.136012349977989, 1.1414358269274614, 1.1471124162976216, 1.1530322242558095, 1.1591849745062057, 1.1655600596858193, 1.172146574573064, 1.178933334519548, 1.1859088831564903, 1.1930614935480768, 1.2003791666905994, 1.2078496307097182, 1.2154603434128721, 1.2231985001055348, 1.2310510478601173, 1.2390047067844407, 1.2470459983026363, 1.2551612800435674, 1.263336786628921, 1.2715586754507369, 1.2798130764115017, 1.2880861445533034, 1.2963641145064428, 1.3046333557324181, 1.3128804276051214, 1.321092133461985, 1.3292555728535054, 1.3373581913210844, 1.3453878271355402, 1.3533327545287674, 1.3611817230470127, 1.3689239927458445, 1.376549365031122, 1.384048209029539, 1.391411483443544, 1.3986307539097966, 1.4056982059383456, 1.4126066535595043, 1.4193495438488497 ], [ 1.1055785519743215, 1.1078476317569748, 1.1104166559082917, 1.1132860325274603, 1.1164549406618136, 1.119921318802105, 1.123681884533634, 1.1277321853940065, 1.1320666779923847, 1.1366788295518946, 1.1415612338325705, 1.1467057323348944, 1.1521035319542572, 1.1577453116953498, 1.1636213132618725, 1.1697214128238773, 1.1760351736058159, 1.182551880857198, 1.18926056211847, 1.1961499964686493, 1.2032087166887289, 1.2104250081090107, 1.217786907447048, 1.2252822043105205, 1.2328984473379596, 1.2406229562609699, 1.2484428405477492, 1.2563450247595573, 1.2643162803318901, 1.2723432631795741, 1.2804125563082067, 1.28851071648364, 1.2966243239453932, 1.304740034140785, 1.3128446304851122, 1.3209250772111358, 1.328968571447757, 1.3369625937583036, 1.3448949564626216, 1.3527538491659965, 1.3605278810148556, 1.3682061192930504, 1.3757781240626943, 1.3832339786378114, 1.3905643157573109, 1.3977603393957643, 1.404813842215273, 1.4117172187199818, 1.4184634742251132, 1.4250462297973714 ], [ 1.1160029377278182, 1.1183452311209532, 1.1209789360902875, 1.1239041395787217, 1.1271197576224778, 1.1306235273192844, 1.1344120267945619, 1.1384807231998406, 1.1428240462702213, 1.1474354825124942, 1.1523076831419898, 1.1574325778128336, 1.1628014861895193, 1.168405220428912, 1.1742341734242445, 1.18027838982823, 1.1865276190460192, 1.1929713512697768, 1.199598839034808, 1.2063991076418203, 1.2133609581402502, 1.2204729664920961, 1.22772348214914, 1.2351006287053252, 1.2425923086298352, 1.2501862134302735, 1.2578698399924093, 1.2656305133264014, 1.2734554155315354, 1.2813316204740084, 1.2892461334481413, 1.2971859349460353, 1.305138027584393, 1.3130894852124855, 1.3210275032420542, 1.3289394492864592, 1.3368129132639475, 1.344635756200597, 1.3523961570581218, 1.360082657004084, 1.3676842006357834, 1.3751901737602936, 1.3825904374212254, 1.3898753579466054, 1.397035832868546, 1.4040633126387387, 1.4109498181272628, 1.4176879539512757, 1.4242709177312414, 1.43069250541681 ], [ 1.126472145943802, 1.1288851529526642, 1.1315809444544125, 1.1345592972609029, 1.1378188741317539, 1.141357219026897, 1.145170777549713, 1.1492549425922245, 1.153604123085043, 1.1582118316600856, 1.1630707852990205, 1.1681730119850924, 1.1735099561972482, 1.1790725767952774, 1.1848514322875876, 1.1908367503564077, 1.1970184805117985, 1.203386330556361, 1.2099297889586356, 1.2166381361541425, 1.2235004482191079, 1.2305055963621174, 1.237642245365202, 1.2448988535917667, 1.2522636765727724, 1.259724775560463, 1.2672700318632546, 1.2748871672713298, 1.2825637704727932, 1.2902873290422323, 1.2980452663523532, 1.3058249826071853, 1.313613899106565, 1.3213995048159368, 1.3291694043215332, 1.3369113662859342, 1.3446133715781778, 1.3522636603249143, 1.3598507772119233, 1.3673636144529042, 1.3747914519314182, 1.3821239941102283, 1.3893514033881234, 1.39646432966585, 1.403453935959221, 1.4103119199685228, 1.4170305315780034, 1.4236025863170467, 1.4300214748668316, 1.4362811687401713 ], [ 1.136967032794491, 1.139448077200887, 1.1422032142644152, 1.1452319220799894, 1.1485326201161237, 1.1521026676220703, 1.1559383847385116, 1.1600350962825943, 1.1643871963922832, 1.1689882304158732, 1.1738309888954837, 1.1789076074863152, 1.1842096663696862, 1.1897282832076694, 1.1954541948638338, 1.2013778247501872, 1.2074893344749604, 1.2137786601723284, 1.2202355352790144, 1.226849502464609, 1.233609917898122, 1.2405059510987224, 1.247526583370538, 1.254660607367463, 1.2618966297787602, 1.2692230785439431, 1.2766282154580149, 1.2841001545437571, 1.291626886167207, 1.2991963065569678, 1.3067962521553291, 1.3144145380691672, 1.322038999792519, 1.3296575373260344, 1.337258160814747, 1.3448290368512856, 1.3523585346410567, 1.359835271291189, 1.3672481555606442, 1.3745864294911012, 1.3818397074225617, 1.3889980119827698, 1.396051806722022, 1.4029920251447723, 1.4098100959645472, 1.4164979644783346, 1.4230481100206773, 1.4294535595156415, 1.4357078971960209, 1.4418052706042368 ], [ 1.1474688967051219, 1.150015137397875, 1.1528267423510223, 1.1559029029985772, 1.1592418060749132, 1.1628406350682314, 1.1666955921699225, 1.1708019406296293, 1.1751540659007427, 1.1797455524072529, 1.1845692714070106, 1.1896174744952728, 1.194881886961997, 1.2003537955616643, 1.2060241262245892, 1.211883508659807, 1.2179223264304502, 1.2241307526615846, 1.2304987728598762, 1.237016197254134, 1.2436726655705233, 1.250457647273109, 1.2573604401119924, 1.26437016942937, 1.2714757901692004, 1.2786660930000364, 1.2859297154426834, 1.293255158434067, 1.3006308083700737, 1.3080449643606595, 1.3154858701969574, 1.3229417503673613, 1.3304008493541857, 1.3378514733899154, 1.3452820338375182, 1.3526810913760725, 1.360037400214951, 1.3673399516162736, 1.3745780160747767, 1.3817411835806606, 1.388819401470504, 1.3958030094524752, 1.4026827714715568, 1.4094499041579478, 1.4160961016751656, 1.4226135568516278, 1.4289949785448885, 1.4352336052423487, 1.4413232149550557, 1.4472581315055946 ], [ 1.1579595636667803, 1.1605680080681924, 1.1634330786093634, 1.166553692924129, 1.1699278163438107, 1.1735524662798746, 1.1774237351315398, 1.181536831550342, 1.185886138578174, 1.1904652858315157, 1.195267231715113, 1.2002843508109264, 1.2055085212556262, 1.2109312071756058, 1.21654353206026, 1.2223363401912235, 1.2283002446957092, 1.2344256622319791, 1.2407028355441114, 1.2471218460180749, 1.2536726188835756, 1.2603449238619746, 1.2671283739265422, 1.2740124245072582, 1.28098637502239, 1.2880393741279446, 1.2951604295948826, 1.3023384232870114, 1.3095621313404235, 1.3168202493440986, 1.324101422089298, 1.3313942772904057, 1.338687462568984, 1.3459696849333704, 1.353229751962951, 1.360456613915545, 1.3676394060092805, 1.3747674901803035, 1.3818304956799534, 1.3888183579455973, 1.3957213552543193, 1.4025301427449308, 1.4092357834709364, 1.4158297762204821, 1.4223040799115303, 1.4286511344360038, 1.4348638778901637, 1.4409357601829953, 1.4468607530665658, 1.4526333566758294 ], [ 1.1684214672153999, 1.1710889869401058, 1.1740044104234313, 1.1771663952266567, 1.1805726974596171, 1.184220178947825, 1.1881048311511573, 1.1922218155762736, 1.1965655192829583, 1.2011296229206139, 1.2059071776975274, 1.2108906869504976, 1.2160721876763876, 1.221443327591818, 1.2269954339791105, 1.2327195716521713, 1.2386065886600057, 1.2446471496381366, 1.2508317578444452, 1.2571507677583325, 1.263594390625196, 1.2701526955117717, 1.276815608349753, 1.2835729111660221, 1.2904142433017598, 1.2973291059784349, 1.3043068711241959, 1.3113367949653647, 1.3184080365331994, 1.3255096809452693, 1.3326307670928146, 1.3397603191993424, 1.346887381602091, 1.354001056040887, 1.3610905407103244, 1.3681451703312906, 1.375154456524616, 1.382108127811455, 1.3889961686212433, 1.395808856752974, 1.4025367988046171, 1.409170963158821, 1.415702710185053, 1.422123819390201, 1.4284265133181204, 1.4346034780637273, 1.4406478803274254, 1.4465533809911446, 1.4523141452471517, 1.4579248493547425 ], [ 1.1788377209698004, 1.181561069502706, 1.184523639195951, 1.1877238420982992, 1.1911592380935447, 1.1948265446709665, 1.1987216618387273, 1.20283971182705, 1.2071750922339357, 1.2117215402581736, 1.2164722047761165, 1.2214197223860028, 1.2265562932833936, 1.2318737530070158, 1.2373636366958372, 1.243017233434718, 1.248825629395593, 1.2547797396300058, 1.2608703293867267, 1.2670880266043096, 1.2734233277139642, 1.2798665990841684, 1.286408076390988, 1.2930378639683306, 1.2997459358478123, 1.306522139799883, 1.3133562052821608, 1.3202377558211884, 1.3271563260183286, 1.334101383092993, 1.3410623526531646, 1.3480286482187864, 1.3549897039068215, 1.3619350096154554, 1.3688541480091492, 1.375736832600808, 1.382572946245666, 1.3893525793972648, 1.3960660675259255, 1.4027040271582443, 1.4092573900617251, 1.415717435165738, 1.42207581787961, 1.4283245965368396, 1.4344562557598972, 1.440463726603956, 1.4463404033957592, 1.4520801572381745, 1.4576773462001051, 1.4631268222548774 ], [ 1.1891921820091422, 1.1919680139441846, 1.1949744467736956, 1.1982096623123322, 1.2016710379027187, 1.2053551585717857, 1.2092578428599476, 1.2133741818773665, 1.2176985902738995, 1.2222248669407147, 1.2269462625042502, 1.2318555501417356, 1.2369450960369917, 1.2422069259602757, 1.2476327849842808, 1.2532141881669778, 1.2589424610212037, 1.264808769604201, 1.2708041409694601, 1.27691947542939, 1.283145552533607, 1.289473032870652, 1.2958924577836637, 1.3023942489050695, 1.3089687091186202, 1.3156060262050056, 1.32229628005818, 1.3290294540109926, 1.3357954504940974, 1.3425841109876802, 1.3493852400105708, 1.3561886327285788, 1.3629841056464458, 1.3697615297722596, 1.3765108656025573, 1.3832221992642415, 1.3898857791618067, 1.396492052507147, 1.4030317011535103, 1.4094956762074897, 1.4158752309531857, 1.422161951685781, 1.4283477861170677, 1.434425069080166, 1.4403865453244589, 1.4462253892514407, 1.4519352215002033, 1.4575101223431242, 1.4629446419004064, 1.4682338072252334 ], [ 1.1994695039093743, 1.202294395158408, 1.2053413503344959, 1.208608336844241, 1.2120925636811353, 1.2157904957198453, 1.219697880332837, 1.223809785799455, 1.228120650220225, 1.2326243389046785, 1.237314207561987, 1.2421831681848852, 1.2472237543595188, 1.252428182893497, 1.2577884091250375, 1.2632961739936002, 1.2689430418147911, 1.2747204285932807, 1.2806196215102204, 1.2866317908584475, 1.2927479961199742, 1.2989591880829667, 1.305256208901422, 1.3116297918525448, 1.3180705622951066, 1.3245690410205833, 1.3311156508589326, 1.337700727080223, 1.3443145318424676, 1.3509472726849265, 1.3575891248612069, 1.3642302571463225, 1.370860860635101, 1.3774711799710873, 1.3840515463995904, 1.3905924120217443, 1.3970843846319503, 1.4035182625446097, 1.4098850688540905, 1.416176084618586, 1.422382880513966, 1.4284973465623563, 1.4345117196011694, 1.4404186082200163, 1.446211014953375, 1.4518823555747364, 1.4574264753930881, 1.462837662504036, 1.4681106579935055, 1.4732406631353507 ], [ 1.2096551788391299, 1.2125256471868993, 1.2156097450853471, 1.2189052417033515, 1.2224091921732232, 1.2261179537536144, 1.2300272130711605, 1.2341320238384708, 1.2384268537880978, 1.2429056389262783, 1.2475618426770725, 1.2523885171329332, 1.2573783635164701, 1.2625237891182621, 1.2678169583971826, 1.27324983655933, 1.2788142246844878, 1.2845017862464692, 1.2903040655808142, 1.2962124994205957, 1.3022184230064284, 1.3083130724727026, 1.314487585235159, 1.3207329999890454, 1.3270402577136042, 1.3334002048064257, 1.3398035991772468, 1.3462411198378923, 1.352703380258253, 1.3591809455214574, 1.36566435311626, 1.3721441370502943, 1.3786108548509284, 1.3850551169415217, 1.3914676178314078, 1.3978391685365497, 1.4041607296480176, 1.4104234444831598, 1.4166186717867708, 1.4227380174918316, 1.4287733650981964, 1.4347169042835217, 1.4405611574167305, 1.4462990037026784, 1.4519237007443184, 1.457428903363813, 1.46280867957741, 1.4680575236677382, 1.4731703663429148, 1.478142582012766 ], [ 1.2197355686538185, 1.2226480940764808, 1.2257659348076722, 1.229086678079287, 1.2326072397301926, 1.236323881957668, 1.2402322410019733, 1.244327364103873, 1.2486037545050679, 1.2530554227228639, 1.2576759418891166, 1.2624585046629244, 1.267395979156699, 1.272480961474861, 1.2777058228458142, 1.2830627498798768, 1.2885437771440102, 1.294140811919919, 1.299845651632717, 1.3056499949398623, 1.3115454478181876, 1.3175235261732066, 1.3235756565299668, 1.3296931762742181, 1.3358673347343502, 1.3420892961566655, 1.3483501453656577, 1.3546408966375654, 1.360952506068358, 1.3672758874984121, 1.3736019318709902, 1.3799215297521643, 1.3862255966267414, 1.392505100503024, 1.3987510913093528, 1.404954731537741, 1.4111073275873343, 1.4172003612714705, 1.4232255209804658, 1.4291747320282338, 1.435040185756486, 1.4408143670200462, 1.4464900797300735, 1.4520604701862185, 1.4575190479837519, 1.4628597043336438, 1.468076727685311, 1.4731648165883489, 1.4781190897744882, 1.482935093479664 ], [ 1.2296979253765077, 1.232648969627829, 1.2357971508233714, 1.2391398904821784, 1.2426739795936428, 1.2463955976774566, 1.2503003407225857, 1.2543832573028126, 1.2586388916760067, 1.2630613322194757, 1.2676442631933607, 1.2723810176065302, 1.2772646289231855, 1.2822878795094252, 1.2874433440616437, 1.2927234267466228, 1.29812039135615, 1.3036263843672287, 1.3092334513420272, 1.3149335475431247, 1.3207185439543991, 1.326580230070793, 1.332510314862585, 1.3385004272521308, 1.3445421172899796, 1.3506268590123747, 1.3567460557310693, 1.3628910482697199, 1.3690531264345251, 1.3752235438052662, 1.3813935357574265, 1.3875543404838677, 1.3936972226738287, 1.399813499426612, 1.4058945679235209, 1.4119319343531789, 1.4179172435762106, 1.423842309023814, 1.4296991423457717, 1.4354799823577507, 1.441177322875391, 1.4467839390709707, 1.4522929120359787, 1.4576976512848407, 1.4629919149856192, 1.4681698277544637, 1.4732258958984146, 1.478155020037026, 1.4829525050758714, 1.48761406754345 ], [ 1.2395304017881903, 1.242516426867505, 1.2456915603295022, 1.2490530739400245, 1.252597647980788, 1.2563213913461388, 1.2602198695517068, 1.26428813992622, 1.268520792836326, 1.272911997414107, 1.2774555499657145, 1.2821449230732296, 1.286973313396261, 1.2919336863357047, 1.2970188160348786, 1.3022213196219585, 1.3075336850983688, 1.3129482927893825, 1.3184574307467665, 1.3240533048822964, 1.3297280448908972, 1.3354737071828098, 1.3412822760913836, 1.3471456645706503, 1.35305571547257, 1.3590042043160069, 1.3649828442557328, 1.3709832937478836, 1.3769971672028767, 1.3830160487292047, 1.3890315089092116, 1.3950351244114747, 1.401018500137912, 1.4069732935239339, 1.4128912405555523, 1.4187641830354512, 1.424584096618169, 1.4303431191381661, 1.4360335787717764, 1.4416480216027079, 1.447179238195825, 1.452620288825894, 1.4579645270536337, 1.4632056213884688, 1.4683375748255632, 1.473354742092858, 1.478251844488908, 1.4830239822369182, 1.487666644320858, 1.492175715806599 ], [ 1.2492220530740616, 1.2522395383017548, 1.2554382652738099, 1.2588153715374113, 1.2623674403579785, 1.266090521596699, 1.2699801596162936, 1.2740314274736957, 1.278238966298249, 1.282597028439208, 1.2870995227313782, 1.291740060107204, 1.2965119977974644, 1.301408480517789, 1.3064224773180926, 1.3115468131542034, 1.3167741946751312, 1.3220972301669165, 1.3275084440059097, 1.3330002863156545, 1.3385651387717004, 1.3441953176447994, 1.349883075222329, 1.3556206007096416, 1.3614000216086757, 1.367213406418069, 1.3730527693209926, 1.3789100773358178, 1.3847772602202508, 1.3906462232463976, 1.3965088628128688, 1.4023570847315634, 1.4081828249241959, 1.4139780721848716, 1.419734892611344, 1.4254454552722864, 1.431102058663877, 1.4366971575085428, 1.4422233894623122, 1.447673601320758, 1.4530408743455443, 1.4583185483704826, 1.4635002443889695, 1.4685798853671201, 1.4735517150733508, 1.4784103147592007, 1.4831506175700526, 1.4877679206065746, 1.4922578945958398, 1.496616591168233 ], [ 1.2587628305926781, 1.2618082881229067, 1.2650272930441102, 1.2684168636633042, 1.2719734993549001, 1.275693201983623, 1.2795715035515494, 1.2836034993275287, 1.2877838854118957, 1.2921069994293328, 1.296566862856212, 1.3011572234043616, 1.3058715959134193, 1.3107033003525626, 1.3156454957879318, 1.3206912095071295, 1.3258333608743984, 1.3310647798782917, 1.3363782206931711, 1.3417663708759469, 1.3472218570404695, 1.3527372479865023, 1.3583050563080676, 1.363917739480154, 1.3695677013343857, 1.375247294704548, 1.3809488258642326, 1.3866645612107737, 1.392386736481655, 1.3981075686314908, 1.4038192703571997, 1.409514067138029, 1.4151842165591497, 1.420822029611295, 1.4264198936040762, 1.43197029629565, 1.4374658508233438, 1.4428993210167438, 1.448263646684871, 1.45355196848832, 1.4587576520351937, 1.4638743108739174, 1.46889582809322, 1.4738163762811138, 1.4786304356361657, 1.4833328100667398, 1.4879186411552119, 1.492383419903577, 1.49672299621477, 1.5009335860978479 ], [ 1.2681435688764673, 1.2712135575655885, 1.2744495802517695, 1.2778485503245542, 1.2814068957424347, 1.2851205807892705, 1.288985133326542, 1.2929956768096593, 1.2971469660787707, 1.3014334257212419, 1.3058491896575677, 1.310388140545316, 1.3150439476390223, 1.3198101018853177, 1.3246799472641024, 1.3296467076829162, 1.3347035090659303, 1.3398433966182162, 1.3450593475591344, 1.350344279882265, 1.3556910578953036, 1.361092495414657, 1.3665413575373744, 1.3720303618951606, 1.377552180221435, 1.3830994409508786, 1.3886647334331739, 1.394240614191205, 1.3998196155040343, 1.4053942564504889, 1.4109570564183258, 1.416500550972179, 1.4220173098789637, 1.4274999570166509, 1.432941191837606, 1.438333812021845, 1.4436707369356334, 1.4489450315048096, 1.4541499301190026, 1.4592788601984705, 1.4643254650802946, 1.4692836259097248, 1.4741474822585463, 1.4789114512280634, 1.483570244834881, 1.488118885516201, 1.4925527196304444, 1.4968674288669945, 1.5010590395139636, 1.5051239295667393 ] ], "zauto": true, "zmax": 1.5051239295667393, "zmin": -1.5051239295667393 }, { "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.009305160783897952, 0.00815483377640232, 0.007127949290893676, 0.006252097135878842, 0.005577061057767717, 0.005172391862719732, 0.005103898485297308, 0.00539340032860373, 0.006003697889582486, 0.006868499911255183, 0.007927910558198572, 0.009141710925298082, 0.010487370170842369, 0.011954154107586415, 0.013537960323308753, 0.015237719665843889, 0.01705314089398459, 0.01898343065035828, 0.021026674705870635, 0.02317964157169667, 0.02543783569890856, 0.02779568138700306, 0.030246760316067503, 0.03278405620030418, 0.03540018109324237, 0.03808757145648606, 0.04083865030680046, 0.043645956332099764, 0.046502243139401545, 0.049400552691210825, 0.05233426710741033, 0.055297142733663665, 0.05828332992812955, 0.06128738152049621, 0.06430425241651967, 0.06732929238796509, 0.07035823371287446, 0.07338717501528759, 0.07641256239223138, 0.07943116870242072, 0.08244007171844508, 0.08543663170549333, 0.08841846887826316, 0.09138344109864048, 0.0943296221046808, 0.09725528050322144, 0.10015885971026962, 0.10303895898312868, 0.10589431565384398, 0.10872378864365932 ], [ 0.008246628551054248, 0.007136283860441681, 0.006130272785522741, 0.00524832961912399, 0.0045368586619063045, 0.004074905804287527, 0.003953728763004231, 0.00421558523386774, 0.0048172118525372475, 0.005675060802513653, 0.006720042702549023, 0.007911481627939011, 0.00923004550089557, 0.010668669992423734, 0.012226172967019713, 0.013903383406090989, 0.01570098604479578, 0.017618460918442085, 0.019653694774511232, 0.021802980148606106, 0.02406121535458785, 0.026422188277427698, 0.028878875418711224, 0.0314237198136718, 0.034048871460418205, 0.03674638551793714, 0.03950837970881778, 0.04232715524159447, 0.04519528656811568, 0.04810568529894804, 0.0510516431369838, 0.05402685804829074, 0.05702544722200634, 0.060041949751211625, 0.06307132142344943, 0.06610892354924518, 0.06915050737628721, 0.07219219532562857, 0.07523046003582955, 0.07826210199986768, 0.08128422642018375, 0.08429421978039586, 0.08728972653205104, 0.0902686262152545, 0.09322901126819966, 0.09616916572926143, 0.09908754499293505, 0.10198275674509286, 0.10485354317249591, 0.10769876451420318 ], [ 0.0072863824157272435, 0.006230532057703679, 0.005262001651658497, 0.004389855408890641, 0.0036514480308952354, 0.003129712135192554, 0.002947664285041145, 0.0031826120107647004, 0.0037823264328085346, 0.00463680716438493, 0.005666790050416171, 0.006833555310410289, 0.008122810907025978, 0.009531931230682111, 0.011062729430184482, 0.012717675369774382, 0.014498069666530068, 0.016403327918345933, 0.01843087795079146, 0.02057636771357509, 0.022834002960099246, 0.025196912708304646, 0.02765749032353941, 0.03020768779607872, 0.0328392572605061, 0.03554394210036384, 0.03831362356078318, 0.041140429835597785, 0.04401681439203382, 0.04693560955805823, 0.049890060498438624, 0.052873843823258763, 0.055881074284619726, 0.05890630234425127, 0.061944504837735795, 0.06499107050649007, 0.06804178180247389, 0.07109279407818711, 0.07414061304214827, 0.07718207117677477, 0.08021430367130124, 0.08323472430917722, 0.08624100166070582, 0.08923103586146304, 0.09220293620147867, 0.0951549997050506, 0.09808569084375351, 0.10099362249370765, 0.10387753822050935, 0.10673629595048267 ], [ 0.006410572345984148, 0.005422299408338503, 0.004508140185942542, 0.003664717881693144, 0.0029146112520868584, 0.002334005112518445, 0.002080766436635918, 0.0022941534315401887, 0.0029057487379224724, 0.003762724763145384, 0.004777394165417279, 0.005917540290222908, 0.0071760972181731855, 0.008555397381736102, 0.01006003101298362, 0.011693661416055979, 0.013457767716159837, 0.01535136946474901, 0.01737123012267642, 0.019512258313667027, 0.021767955065846334, 0.024130832542651894, 0.026592773833769998, 0.029145326621716792, 0.03177993454547072, 0.034488114407657686, 0.03726158833314519, 0.040092379426884095, 0.04297287835050094, 0.045895887000987616, 0.04885464432813725, 0.05184283833877772, 0.054854607516379515, 0.057884534217696806, 0.060927632072873675, 0.06397932898838354, 0.06703544701355191, 0.07009218006378326, 0.07314607028332965, 0.07619398366556399, 0.07923308542020355, 0.08226081547652249, 0.08527486443362906, 0.08827315020739254, 0.0912537955749595, 0.09421510677832769, 0.09715555331561736, 0.10007374902038131, 0.10296843450432382, 0.10583846101580335 ], [ 0.005610178982625584, 0.004700445763216277, 0.003857042552738271, 0.0030640369775632205, 0.0023258003124232048, 0.0016972383208378346, 0.001361379591064511, 0.0015672334927294797, 0.002211094302259535, 0.0030735261336870823, 0.004069321845028667, 0.005179447989707634, 0.006405647692901172, 0.007754964899794295, 0.00923407207196827, 0.010847163606034799, 0.012595415070366607, 0.014477164373258461, 0.016488386475165036, 0.0186232397759519, 0.020874579049948678, 0.023234394077737558, 0.025694165564018382, 0.028245144350029405, 0.030878565010772387, 0.03358580562724735, 0.036358504426632646, 0.039188642335445195, 0.04206859883422237, 0.04499118704293648, 0.047949672750283244, 0.050937781116911676, 0.05394969399692606, 0.05698004019882789, 0.060023880513564866, 0.06307668894782512, 0.06613433129333207, 0.06919304192129726, 0.07224939950218104, 0.07530030220303012, 0.0783429428002917, 0.08137478405693167, 0.08439353464375883, 0.08739712583078788, 0.09038368913187453, 0.09335153505064998, 0.09629913304688183, 0.09922509281650921, 0.10212814695562966, 0.10500713505711637 ], [ 0.004886898065414284, 0.004064712733043189, 0.003308221168409971, 0.0025910256052060644, 0.0019020404803824064, 0.001268804278305893, 0.0008665487625638419, 0.0010846183684250811, 0.0017583877611215889, 0.002607947933430421, 0.003570600788663065, 0.004642554972822244, 0.005832532516861123, 0.007150370970728098, 0.00860340918204693, 0.010195460312932123, 0.011926883003978232, 0.01379510188466728, 0.01579525146820787, 0.01792079041650087, 0.020164027626207306, 0.022516548184590434, 0.02496954700296411, 0.027514084321270605, 0.030141277773675947, 0.0328424440158887, 0.03560920069052434, 0.03843353739848823, 0.04130786255501, 0.04422503156012561, 0.04717836056302584, 0.05016162919334141, 0.05316907491830854, 0.056195381121753915, 0.0592356605558031, 0.062285435464919436, 0.06534061540431131, 0.06839747355678796, 0.0714526221811689, 0.07450298769270366, 0.07754578577282312, 0.08057849682613684, 0.08359884204125766, 0.08660476026395302, 0.08959438585318474, 0.09256602765950629, 0.09551814923857009, 0.0984493503893417, 0.10135835008443735, 0.1042439708398212 ], [ 0.004261628343110615, 0.003535288235638056, 0.0028830807924473513, 0.0022725304650349255, 0.0016885774877359718, 0.00115658232538014, 0.0008341472646002067, 0.0010343211759431543, 0.0016353798064556895, 0.0024135672983040474, 0.0033137295356009833, 0.004332878791017361, 0.0054792755058232015, 0.006761641684596194, 0.008185872648526138, 0.00975429397410517, 0.011465923350852484, 0.013317079749980757, 0.015302042439274943, 0.017413640868170564, 0.019643741497803586, 0.02198363331842097, 0.024424325875684157, 0.02695677573843472, 0.029572055855602648, 0.032261479838288684, 0.03501669085452999, 0.03782972283045035, 0.040693040045119394, 0.04359955993476107, 0.04654266292092513, 0.0495161922861546, 0.052514446493983236, 0.05553216585116625, 0.058564515012793854, 0.06160706251450419, 0.06465575826494462, 0.06770690973360104, 0.07075715741378917, 0.07380345002007119, 0.07684301978598682, 0.0798733581565434, 0.08289219211458954, 0.08589746133739416, 0.08888729634558837, 0.09185999777845519, 0.09481401690536653, 0.09774793746114242, 0.10066045887231156, 0.10355038092132433 ], [ 0.003784719149020696, 0.0031630826317885796, 0.0026332722481222526, 0.0021604766640529053, 0.0017343540638060694, 0.0013900145204810272, 0.0012351326079827574, 0.0013945973609342023, 0.0018489002898887743, 0.002505228081950459, 0.0033151111702858192, 0.0042664823112957065, 0.005360790354843096, 0.006602110698505623, 0.007993022644867898, 0.009533437997897338, 0.01122063340091156, 0.013049700067351197, 0.015014075403929232, 0.01710603044627312, 0.019317077153561703, 0.021638294292726533, 0.02406058183909342, 0.026574855992464355, 0.029172196020145317, 0.03184395246009931, 0.03458182453082506, 0.037377913125411756, 0.04022475454834295, 0.04311533915875109, 0.04604311827418684, 0.049002002030888184, 0.05198635036066785, 0.05499095880885651, 0.05801104056481082, 0.06104220579140841, 0.0640804391123578, 0.06712207593512945, 0.07016377814560958, 0.07320250960037705, 0.07623551175755318, 0.07926027972246565, 0.0822745389344454, 0.08527622268256707, 0.08826345060716173, 0.091234508318533, 0.09418782824165325, 0.09712197177481241, 0.10003561283030736, 0.10292752280529371 ], [ 0.003538366462540613, 0.003027028195281338, 0.0026270986396952907, 0.0022992542297206845, 0.002030613082843277, 0.0018440047410810802, 0.001793985192430175, 0.0019368672280254686, 0.0022903655977027995, 0.002836872763547451, 0.003555479197325874, 0.004435593187048211, 0.005474203726687723, 0.006670813531063759, 0.008024427205092397, 0.009532390374370541, 0.011190219083551957, 0.012991837593569748, 0.014929935965226196, 0.01699632705416614, 0.019182260609292977, 0.02147868430430583, 0.02387645360083322, 0.0263664963206145, 0.028939938666925822, 0.0315881991425944, 0.03430305612663697, 0.03707669409175086, 0.0399017326872947, 0.04277124222187319, 0.04567874847030664, 0.04861822920294047, 0.05158410438643469, 0.05457122162822923, 0.05757483812362212, 0.06059060010808082, 0.06361452060967505, 0.06664295613124954, 0.0696725827618508, 0.07270037211592985, 0.07572356742158919, 0.07873966002004718, 0.08174636649365619, 0.08474160660477598, 0.08772348219997256, 0.0906902572103459, 0.09364033885791075, 0.09657226015784204, 0.09948466378697132, 0.10237628736904836 ], [ 0.00360654151287255, 0.003193660144091741, 0.002900445203931826, 0.002681524952535143, 0.0025180021393324484, 0.0024206654394192725, 0.0024219945390479376, 0.002560188517151795, 0.002862299380298417, 0.003338374384657121, 0.003987995745746735, 0.0048081595102891376, 0.005796236613785395, 0.006949707127527464, 0.008265302796224809, 0.009738532987976946, 0.011363614504840405, 0.013133624191980072, 0.015040738379841411, 0.017076487495159248, 0.0192319932606932, 0.021498175473760796, 0.023865924718391267, 0.026326241844694162, 0.028870347136818412, 0.031489762939501356, 0.034176373694412586, 0.036922467163004756, 0.03972076026016277, 0.0425644124983094, 0.045447029604714966, 0.0483626594605674, 0.051305782135432736, 0.05427129546260679, 0.057254497321668874, 0.06025106556156052, 0.0632570363071673, 0.06626878124021648, 0.06928298432506204, 0.07229661835713702, 0.07530692164102423, 0.0783113750509632, 0.08130767968613803, 0.08429373530097839, 0.08726761966528232, 0.09022756898716662, 0.09317195951159626, 0.09609929038814936, 0.09900816788200344, 0.10189729098232825 ], [ 0.0040149069746534755, 0.0036634212791364367, 0.0034269506911041767, 0.003260229028689345, 0.003143688860483746, 0.003083885654714121, 0.003105735368090606, 0.003241236313662017, 0.0035186565700411946, 0.003956429037795461, 0.004563312554668428, 0.005341789703138107, 0.00629101699073857, 0.007408256473328479, 0.008689372687762254, 0.010129021056623165, 0.011720795598279321, 0.013457399095322595, 0.015330833639077553, 0.017332596731580274, 0.0194538692786532, 0.021685685925930825, 0.024019082405598004, 0.02644521797398944, 0.028955473403613492, 0.03154152644338795, 0.03419540739450655, 0.036909537693733, 0.03967675433597066, 0.04249032273928151, 0.04534394034745507, 0.04823173293474045, 0.05114824525755253, 0.05408842740654948, 0.057047617958352205, 0.06002152481086697, 0.06300620440917416, 0.0659980399263662, 0.06899371885159697, 0.07199021035102945, 0.07498474270135565, 0.07797478104585262, 0.0809580056851313, 0.0839322910852582, 0.08689568576219359, 0.08984639318050182, 0.09278275378484548, 0.09570322826355937, 0.09860638212390152, 0.1014908716380885 ], [ 0.004716097643158851, 0.004380286586381392, 0.004150997338351566, 0.003988909078664801, 0.0038775580011436426, 0.0038228169042237624, 0.0038463948045837234, 0.003976932598850334, 0.0042415019450705955, 0.004660033874029027, 0.005243920457073711, 0.0059976431844687575, 0.0069211751984633715, 0.008011784147053315, 0.009265046564167132, 0.010675354315486362, 0.012236180844558004, 0.013940259327159766, 0.015779739194462607, 0.01774634114726896, 0.01983151035432925, 0.022026561291136552, 0.024322807924388522, 0.026711675334040813, 0.02918479135155095, 0.031734058662532115, 0.0343517089799863, 0.03703034147400334, 0.039762947823151915, 0.04254292618550866, 0.045364086184454734, 0.04822064674225575, 0.05110722831799819, 0.0540188408438432, 0.05695086841820906, 0.059899051612317906, 0.06285946807901169, 0.06582851201716601, 0.0688028729384631, 0.07177951410080473, 0.07475565091029922, 0.0777287295463545, 0.08069640602864069, 0.08365652591668601, 0.08660710480950103, 0.08954630979227221, 0.09247244195746393, 0.09538392010798633, 0.09827926572972791, 0.101157089299397 ], [ 0.0056383230959186, 0.005281719780317598, 0.005024934266372959, 0.0048364693384341274, 0.0047040868366690185, 0.00463423282386804, 0.004646909967446068, 0.0047683752506237406, 0.005023857013019643, 0.00543239997271023, 0.006005087092154934, 0.006746104491715797, 0.007654937873952661, 0.008728303515390863, 0.009961352332708121, 0.011348275582370244, 0.012882575170874485, 0.014557195156825867, 0.016364618244720765, 0.0182969668190035, 0.02034611482861, 0.02250380408277177, 0.02476175630844941, 0.027111774276534936, 0.0295458281707659, 0.03205612582807478, 0.03463516717686965, 0.037275784199405984, 0.03997116822366898, 0.04271488648562365, 0.04550088983361212, 0.048323513269365494, 0.05117747079855587, 0.05405784583540795, 0.056960078192324126, 0.059879948497781034, 0.06281356072728742, 0.06575732340324324, 0.06870792991708138, 0.07166233834789817, 0.07461775109127008, 0.07757159456612918, 0.08052149923245741, 0.08346528012460572, 0.08640091808182451, 0.0893265418362859, 0.09224041109865368, 0.09514090076019341, 0.09802648630908388, 0.10089573053573918 ], [ 0.006723535895444353, 0.006322572660236866, 0.006017441010950601, 0.00578417645432142, 0.005614795230686448, 0.00551685301621825, 0.005509413394759871, 0.005616920575123155, 0.005862739814357746, 0.006264322258473315, 0.006831342524583897, 0.007566600768978991, 0.008468228196467685, 0.009531770896833954, 0.010751537750399899, 0.012121257880320193, 0.013634318599680046, 0.015283821076619826, 0.017062591840789385, 0.018963208580349798, 0.0209780534678015, 0.0230993877832792, 0.025319436499958502, 0.027630472729982637, 0.030024895082963663, 0.0324952940753717, 0.03503450607989464, 0.03763565485265328, 0.04029218157189887, 0.04299786475590232, 0.04574683156353213, 0.048533561941881596, 0.05135288695408185, 0.054199982451420194, 0.05707035907832502, 0.05995984943565805, 0.06286459308497551, 0.06578101995730617, 0.06870583263387402, 0.07163598789077044, 0.07456867784097376, 0.0775013109623795, 0.08043149326532037, 0.08335700982469117, 0.0862758068774727, 0.0891859746639233, 0.09208573116882272, 0.0949734068966025, 0.09784743079083259, 0.10070631738426228 ], [ 0.007933586193658106, 0.007474443324848164, 0.00710924619823448, 0.006820611646238952, 0.006604480866895557, 0.006469763675023453, 0.006435079803738796, 0.0065235083628828435, 0.006756771030586486, 0.0071506771430282, 0.007713251495585745, 0.00844556961648294, 0.009344025232269154, 0.010402591794068255, 0.011614342212621418, 0.012972191041962762, 0.014469125505300743, 0.016098196216509587, 0.017852441256048956, 0.019724825849168754, 0.021708222732192004, 0.023795430663816237, 0.02597921897237853, 0.028252385360179603, 0.03060781690592224, 0.033038547568496994, 0.03553780837871876, 0.0380990686109928, 0.040716067605339516, 0.0433828377241036, 0.04609371934665436, 0.048843368969344575, 0.05162676148904928, 0.05443918767656904, 0.05727624773707019, 0.060133841735175, 0.06300815754867961, 0.06589565691454233, 0.06879306004643672, 0.07169732923494758, 0.07460565178694613, 0.07751542261778761, 0.08042422677516382, 0.08332982214450697, 0.08623012256021405, 0.08912318152275073, 0.092007176697757, 0.09488039534871018, 0.09774122082908245, 0.10058812023350815 ], [ 0.009244673288353563, 0.008719784258646734, 0.008288317527086772, 0.007938448180559275, 0.007669602307593391, 0.007492113729172978, 0.00742448462002893, 0.007488795780550331, 0.0077054247060038585, 0.008088752324349309, 0.00864529582986166, 0.00937447256790971, 0.01027090140093439, 0.011326827239563249, 0.012533834391774759, 0.013883720619227904, 0.015368770348971682, 0.016981716330252646, 0.018715595176205437, 0.02056360572473241, 0.02251901207005572, 0.02457509690971051, 0.026725155565223355, 0.028962517175664174, 0.03128058085446326, 0.033672857581985585, 0.03613301164981552, 0.038654897960086816, 0.04123259328985574, 0.043860420835787804, 0.04653296809705253, 0.04924509856997019, 0.05199195792781069, 0.054768975424296255, 0.05757186124808713, 0.06039660050427516, 0.06323944443241854, 0.06609689940198799, 0.06896571416276878, 0.07184286577300524, 0.07472554458155309, 0.07761113860203553, 0.08049721758400712, 0.08338151705764922, 0.08626192260188642, 0.08913645456011528, 0.09200325340166267, 0.09486056590037828, 0.09770673227369484, 0.10054017439682349 ], [ 0.010641747915852085, 0.010047424678628944, 0.009546808885385547, 0.009132711138732987, 0.008807580454627689, 0.00858312731002437, 0.008477932883354213, 0.008513368089608604, 0.008708770232521342, 0.009077396557477765, 0.009624559199149006, 0.010348285181930199, 0.011241594248069298, 0.012295043631786693, 0.013498633983046687, 0.01484285002443339, 0.016319024341398657, 0.01791931373936104, 0.019636517092838257, 0.021463869487027616, 0.023394873994744898, 0.025423188555386025, 0.02754256403111208, 0.02974682163337066, 0.03202985692029358, 0.03438565947536507, 0.036808340094020495, 0.039292159869809995, 0.04183155764012736, 0.04442117377386284, 0.04705586933075126, 0.04973074030113445, 0.05244112704755683, 0.055182619300563424, 0.057951057173919664, 0.060742528704952184, 0.06355336442485543, 0.06638012944154432, 0.069219613486368, 0.07206881934263111, 0.07492495004153892, 0.07778539518124188, 0.08064771669661042, 0.08350963438102044, 0.08636901143505288, 0.08922384029058583, 0.09207222893103893, 0.09491238789980871, 0.09774261815860608, 0.10056129992655223 ], [ 0.012114900077129146, 0.011449895042759114, 0.01087931765686358, 0.010399822532587272, 0.010016433422042396, 0.00974211395687676, 0.00959562013047713, 0.009597825065259876, 0.00976729756460059, 0.010116488141286819, 0.01064985875847262, 0.011364403564813507, 0.012251839996794349, 0.013301216715121062, 0.014500990792125586, 0.015840251440730486, 0.01730921208473873, 0.0188992427321588, 0.02060268453950528, 0.02241260357230288, 0.02432256500887163, 0.026326459219800768, 0.028418384022215293, 0.030592575212126362, 0.032843373676047366, 0.035165217681076395, 0.037552650877714325, 0.04000033885609603, 0.04250308920097737, 0.045055871693696445, 0.04765383658932574, 0.0502923298086587, 0.05296690450544689, 0.055673328873950274, 0.05840759031346582, 0.06116589621439623, 0.06394467171007524, 0.06674055477595522, 0.06955038906919488, 0.07237121489822515, 0.07520025870027021, 0.07803492138829607, 0.0808727659093224, 0.08371150433443017, 0.08654898477670725, 0.08938317840758563, 0.09221216681341778, 0.09503412990429683, 0.09784733455489704, 0.10065012412429324 ], [ 0.013657237762090019, 0.012921883815741353, 0.012281867620051772, 0.011737017388117608, 0.011294512305672346, 0.010968400499531905, 0.01077763384797742, 0.010742730799481081, 0.010881714902330974, 0.011206520703351238, 0.011721112430435237, 0.012421836197295318, 0.013299465518046985, 0.014341809911589086, 0.015535927367976722, 0.016869530643318597, 0.018331632217175115, 0.01991266703602705, 0.021604336722205634, 0.02339934907347696, 0.025291152679868617, 0.02727371283932653, 0.02934134289245041, 0.03148858870264313, 0.033710157184084835, 0.036000878133139985, 0.03835568943351021, 0.04076963745974661, 0.043237886418638606, 0.04575573209070371, 0.0483186168417529, 0.0509221438564521, 0.053562089342158906, 0.05623441201688941, 0.05893525958447407, 0.06166097216039781, 0.06440808278029792, 0.06717331522867546, 0.06995357948773819, 0.07274596514049729, 0.07554773307719277, 0.0783563058561226, 0.08116925706307161, 0.08398429999953225, 0.0867992760107605, 0.0896121427409198, 0.09242096257507629, 0.09522389149719179, 0.09801916856039572, 0.10080510613139289 ], [ 0.01526363725807167, 0.014459316250614454, 0.013751272362116857, 0.013141939562805346, 0.012640268499035476, 0.012261201048628457, 0.012023854301415943, 0.011948477494160293, 0.012052719690712118, 0.012348245982727645, 0.012838843739384717, 0.013520586767135849, 0.014383685421913359, 0.01541503353901733, 0.016600510377348825, 0.01792655474820863, 0.019380974752710407, 0.02095318686211882, 0.02263411878582917, 0.024415960368781606, 0.026291878387945857, 0.028255755917084697, 0.030301981007903128, 0.03242528921199373, 0.034620654631910136, 0.03688322044339194, 0.039208259309737536, 0.041591155094394, 0.04402739881147727, 0.046512593344200485, 0.04904246288313348, 0.05161286421046878, 0.054219797877739284, 0.05685941802122731, 0.05952804007087082, 0.06222214597545558, 0.06493838682414811, 0.06767358292098219, 0.07042472148714643, 0.0731889522422113, 0.07596358116187225, 0.07874606273473853, 0.08153399104963924, 0.08432509004220444, 0.08711720321718638, 0.0899082831437342, 0.0926963809956145, 0.09547963637871996, 0.09825626765533685, 0.10102456293972155 ], [ 0.016929980227496318, 0.01605877525591466, 0.015284710318672175, 0.014612342695006518, 0.01405204848830353, 0.013619467343972508, 0.01333381850901791, 0.01321512273764353, 0.013280775943594338, 0.013542369346087692, 0.01400378748245421, 0.014661175913617042, 0.015504557773977868, 0.01652026084886559, 0.01769325742158046, 0.01900887999772732, 0.020453796070671125, 0.02201638089461814, 0.023686703066324654, 0.025456310538310656, 0.027317945529537837, 0.029265262424576544, 0.03129258421790659, 0.03339470954080756, 0.03556676961487063, 0.037804128599805586, 0.040102318832046346, 0.04245700252234427, 0.044863952489638384, 0.04731904583833995, 0.049818265817788816, 0.05235770828839214, 0.05493359020684958, 0.05754225833075414, 0.060180196951116434, 0.06284403391995501, 0.06553054457808888, 0.06823665343328278, 0.07095943361278272, 0.07369610423446189, 0.07644402592158442, 0.07920069473649244, 0.08196373483671476, 0.08473089016755071, 0.08750001550262188, 0.09026906713075579, 0.09303609346653295, 0.09579922583444835, 0.09855666964505128, 0.10130669614677348 ], [ 0.018652671572611693, 0.01771712451210452, 0.0168794345601675, 0.016145871565409222, 0.01552792986297471, 0.015041757567130628, 0.014706596104069398, 0.014542246399073363, 0.01456592997439036, 0.01478930911031447, 0.015216585983545876, 0.015844276454296483, 0.016662567919971952, 0.017657575767507466, 0.018813667482012617, 0.020115284882033617, 0.02154807372142518, 0.023099399026994007, 0.024758432004734307, 0.026515992138548324, 0.02836428134902666, 0.030296595975711875, 0.03230706261150536, 0.03439041767847414, 0.03654183534692753, 0.038756800446481304, 0.04103101955289539, 0.04336036250632258, 0.04574082700029641, 0.04816851985160602, 0.050639649714358366, 0.05315052712486565, 0.05569756876047398, 0.058277303630287894, 0.06088637958979104, 0.06352156909965459, 0.0661797735548047, 0.06885802581492638, 0.0715534907929785, 0.07426346412144658, 0.0769853690307532, 0.07971675165161653, 0.08245527500186237, 0.08519871194403181, 0.08794493740912213, 0.09069192017647945, 0.09343771448458456, 0.09618045172385241, 0.09891833243330289, 0.10164961878975187 ], [ 0.020428331666738533, 0.01943126471775487, 0.01853258172912022, 0.017739915634676393, 0.017065610270785448, 0.016526147618220684, 0.016140706069029932, 0.015928854544973278, 0.015907684874169662, 0.01608902923569523, 0.016477573557068966, 0.017070449502282075, 0.017858321755745622, 0.01882743301415991, 0.019961860208655167, 0.021245402142915266, 0.022662844691175042, 0.024200619359891214, 0.02584700437998503, 0.02759204057498882, 0.02942730247106565, 0.03134561970548002, 0.0333408044220842, 0.03540741240734217, 0.03754054820221659, 0.039735714518460884, 0.041988701335316216, 0.044295508078336675, 0.046652291972514096, 0.04905533620023033, 0.05150103239823535, 0.053985873025972846, 0.056506450089044785, 0.05905945754087404, 0.06164169539193948, 0.0642500741301595, 0.06688161851177749, 0.06953347013585684, 0.07220288848532735, 0.0748872503189578, 0.07758404744558844, 0.08029088301564698, 0.08300546653438678, 0.08572560784381153, 0.0884492103412506, 0.09117426370701076, 0.09389883640493629, 0.09662106820110847, 0.09933916292021457, 0.10205138162837336 ], [ 0.022253606656545705, 0.021197986654491508, 0.020241060962829193, 0.01939152933562427, 0.018662353787670102, 0.018070195202978773, 0.017634086836240213, 0.01737334189947147, 0.017304941876534155, 0.017440948498352885, 0.017786646470872067, 0.018339973183362814, 0.01909233594251255, 0.02003041622803734, 0.021138310635587337, 0.022399439824041197, 0.023797922746708614, 0.02531937137050929, 0.02695121286318543, 0.028682693178016524, 0.030504700889123038, 0.03240951267019184, 0.03439052448582064, 0.03644200380817829, 0.038558878898567836, 0.04073656952467017, 0.042970857093669025, 0.04525778914473819, 0.047593612097190804, 0.04997472620151096, 0.05239765723904912, 0.05485904033641677, 0.057355612120583106, 0.059884208245240995, 0.062441764025479185, 0.06502531651298232, 0.06763200683079384, 0.07025908197562798, 0.07290389560005214, 0.07556390752053672, 0.07823668187269832, 0.08091988396266438, 0.08361127595320858, 0.08630871158173266, 0.08901013014141143, 0.09171354997116646, 0.09441706169950885, 0.09711882147459658, 0.09981704439165007, 0.10250999830150823 ], [ 0.024125064703845227, 0.02301389927917114, 0.022001509491830926, 0.02109741247777657, 0.020314992789505406, 0.019670957489263244, 0.01918412126142978, 0.01887351357843514, 0.01875600756172025, 0.018843922775014156, 0.019143212497968076, 0.019652755524600964, 0.020364914483710306, 0.021267082197082787, 0.022343667371863767, 0.02357798086944601, 0.02495368718615214, 0.026455721358258143, 0.028070733165869704, 0.02978718825251126, 0.03159525807090486, 0.033486602949234286, 0.03545411899084869, 0.0374916910481009, 0.03959397357695287, 0.04175620801867821, 0.04397407762126654, 0.046243596525038615, 0.04856102812552855, 0.05092282724958399, 0.05332560092893771, 0.055766083154643244, 0.05824111972431739, 0.0607476600290491, 0.06328275330432187, 0.06584354746128042, 0.06842728911377834, 0.07103132382601843, 0.07365309593408939, 0.07629014755276706, 0.07894011657734122, 0.08160073363870712, 0.08426981807765968, 0.08694527307811226, 0.0896250801457671, 0.09230729314356027, 0.09499003210279458, 0.09767147702286756, 0.10034986185654514, 0.10302346885442261 ], [ 0.026039157456366296, 0.02487541731197264, 0.02381030344326704, 0.02285394242907253, 0.02201997916882451, 0.021325057269836287, 0.02078771141546148, 0.020426660200936208, 0.020258659718643678, 0.020296291940451752, 0.020546210445978604, 0.02100832103224766, 0.02167610051223937, 0.022537879634382994, 0.023578642784052316, 0.02478185055831863, 0.02613093386450542, 0.02761031334283123, 0.02920596075069233, 0.030905603026388423, 0.032698688911414954, 0.03457622158268433, 0.03653053249925328, 0.03855504466672983, 0.04064405263404976, 0.04279253224106345, 0.04499598420698886, 0.04725031055091585, 0.04955172025075875, 0.05189665951230648, 0.054281761882037684, 0.05670381377833695, 0.05915973157914497, 0.061646547038666406, 0.06416139842785097, 0.06670152536034413, 0.06926426575865101, 0.07184705383116295, 0.07444741827198952, 0.07706298016985771, 0.07969145032782085, 0.08233062586080574, 0.08497838606071823, 0.08763268760655131, 0.09029155925528792, 0.09295309618439197, 0.09561545417250525, 0.09827684380609328, 0.10093552488934095, 0.10358980121614937 ], [ 0.027992231371285953, 0.026778795401481696, 0.025663612749077726, 0.024657248337925736, 0.02377347604555081, 0.023028789054575567, 0.02244139421325879, 0.022029676439681158, 0.02181026073298679, 0.02179597920330054, 0.02199418687564909, 0.022405858030382943, 0.023025690550143675, 0.023843130128432304, 0.024843963307066626, 0.02601204067288891, 0.02733077853034126, 0.028784257026457063, 0.030357888672928726, 0.0320387262580745, 0.03381551353039671, 0.03567857743848605, 0.037619639145333006, 0.03963159669477724, 0.04170831165792585, 0.04384441709540813, 0.046035154256202054, 0.048276239400171055, 0.0505637587846286, 0.05289408824444126, 0.05526383324229429, 0.05766978531769558, 0.06010889123176671, 0.06257823161247286, 0.0650750064484678, 0.06759652530144443, 0.07014020057776231, 0.07270354260863293, 0.07528415563180949, 0.07787973404978413, 0.08048805856602154, 0.08310699197776944, 0.08573447453909125, 0.08836851890659793, 0.09100720474938775, 0.0936486731488031, 0.09629112093765271, 0.09893279513653884, 0.10157198764052888, 0.10420703029586208 ], [ 0.029980575988468736, 0.028720196965807552, 0.027557488903051083, 0.026503316565045277, 0.025571479327949807, 0.024778254282470533, 0.024141486471930252, 0.02367921062998775, 0.02340790499644509, 0.02334062842085921, 0.023485415055164115, 0.023844311889552404, 0.024413296926716156, 0.025183057767398803, 0.026140367288463712, 0.027269678766715606, 0.028554601924881576, 0.029979053556104612, 0.03152801880181605, 0.033187959453983236, 0.03494695266316449, 0.03679465053536694, 0.03872213718082393, 0.04072173919930346, 0.04278682620898554, 0.04491162285148174, 0.047091043072154476, 0.0493205506242953, 0.05159604567157545, 0.05391377517254517, 0.05627026374224235, 0.05866226142353599, 0.061086704948597866, 0.06354068942823815, 0.0660214478510043, 0.06852633623257472, 0.07105282268991295, 0.07359847910310059, 0.07616097436386043, 0.0787380684916606, 0.08132760712929754, 0.0839275161142591, 0.08653579596577393, 0.08915051623522392, 0.09176980974536075, 0.09439186679607418, 0.09701492944597587, 0.09963728599370984, 0.1022572657844691, 0.10487323445870873 ], [ 0.03200049746979108, 0.03069578623804112, 0.029487974107425978, 0.028388115781104232, 0.027409957389466534, 0.026569513543535254, 0.025884246657814677, 0.02537183182377991, 0.025048585735482926, 0.024927763918088965, 0.025018040176981924, 0.025322508222490825, 0.02583844302419286, 0.026557853070337215, 0.027468637124788284, 0.02855603044862632, 0.029804025724623342, 0.031196549383759552, 0.03271829803312662, 0.03435523972691454, 0.03609484117006195, 0.03792609985459501, 0.03983945434902448, 0.0418266300595072, 0.0438804603926884, 0.04599470845367652, 0.04816390338607685, 0.050383197953606663, 0.05264824922586747, 0.05495512147254417, 0.05730020893575083, 0.0596801755535901, 0.062091908613659, 0.0645324835018417, 0.066999137038112, 0.06948924727122022, 0.07200031798705653, 0.07452996654329282, 0.0770759139617671, 0.07963597648436956, 0.08220805802775986, 0.08479014315939061, 0.08738029036565927, 0.0899766254973443, 0.09257733536181662, 0.09518066149090393, 0.09778489415125544, 0.10038836668501178, 0.1029894502757651, 0.10558654923137563 ], [ 0.03404840654215705, 0.03270183245523033, 0.031451220441462084, 0.030307730024804774, 0.029284996790102595, 0.02839874329438246, 0.02766604022447275, 0.027104200454075588, 0.026729366588885653, 0.02655495734808649, 0.02659023483868116, 0.026839289969274954, 0.027300675733180946, 0.027967756521953137, 0.028829652167687323, 0.029872522429393127, 0.031080908336205772, 0.032438908472061045, 0.03393107097999773, 0.035542977047334605, 0.03726155370829564, 0.03907518098019694, 0.040973660688116434, 0.04294810375476205, 0.04499077806771167, 0.04709494519158791, 0.04925470314002882, 0.051464844461658416, 0.05372073358872363, 0.05601820410504286, 0.05835347471102192, 0.06072308172068665, 0.06312382557250082, 0.06555272883424189, 0.0680070033749453, 0.07048402466448485, 0.07298131148144366, 0.07549650962690672, 0.07802737853503328, 0.08057177993121276, 0.08312766791106829, 0.08569307999893826, 0.08826612889431859, 0.09084499473258853, 0.09342791777568002, 0.09601319151287765, 0.09859915619579035, 0.10118419285776799, 0.10376671788061533, 0.10634517817286601 ], [ 0.03612091086738912, 0.03473481584682325, 0.03344360828396982, 0.03225848852931028, 0.031192942431951278, 0.030262385009739053, 0.029483495959783404, 0.0288732293971413, 0.028447543999992938, 0.02821998693567306, 0.028200349565519475, 0.028393652942380675, 0.02879967997296259, 0.029413147338499344, 0.030224449150105453, 0.031220774370526037, 0.032387349894053175, 0.03370859346089595, 0.03516904096747014, 0.03675399888351046, 0.038449936707806706, 0.04024466883130784, 0.0421273851123983, 0.04408858453873564, 0.04611995500391664, 0.048214229880320175, 0.05036504138106216, 0.05256678252798892, 0.054814483794899185, 0.05710370672521069, 0.05943045451692784, 0.061791098275929, 0.06418231701559934, 0.0666010492775176, 0.06904445429369475, 0.07150988079346755, 0.07399484180500909, 0.07649699406838348, 0.0790141209373181, 0.08154411788601139, 0.08408497994766853, 0.0866347905907633, 0.08919171168715292, 0.09175397434484071, 0.09431987047040921, 0.09688774499455767, 0.09945598874235445, 0.10202303196099721, 0.10458733853489267, 0.1071474009239827 ], [ 0.0382149030293853, 0.03679152623717027, 0.03546185439894937, 0.03423708232719176, 0.033130521767054326, 0.032157275975633094, 0.03133364207788573, 0.030676223614267188, 0.030200787972512334, 0.029920975996895145, 0.029847044709914783, 0.029984865875947318, 0.03033538144735792, 0.03089462422895525, 0.03165427787806474, 0.03260262848885451, 0.033725696690457704, 0.03500834726311675, 0.03643523195781768, 0.03799149593637327, 0.03966324137091491, 0.04143778116800224, 0.043303732365788446, 0.045250999453174165, 0.04727069023723918, 0.04935499651307989, 0.05149706185463642, 0.053690850715638366, 0.055931026993869024, 0.05821284604331994, 0.06053206141804466, 0.06288484599910507, 0.06526772625903658, 0.06767752800375818, 0.07011133182038663, 0.07256643652659556, 0.07504032908180888, 0.07753065962933214, 0.08003522055926615, 0.08255192869453643, 0.08507880989610252, 0.0876139855528185, 0.09015566056455376, 0.09270211254436135, 0.09525168205847609, 0.09780276379361695, 0.10035379859264328, 0.10290326633446222, 0.10544967965525952, 0.10799157851831397 ], [ 0.040327636831446384, 0.0388691466789379, 0.0375031018084175, 0.03624065946655956, 0.03509494459419293, 0.03408075293732399, 0.03321401289084341, 0.03251098875717616, 0.03198725105308533, 0.03165650004236142, 0.03152939252788371, 0.03161256344852519, 0.03190802609061037, 0.032413066988832034, 0.033120641781737924, 0.03402016752534712, 0.03509853677159089, 0.03634116793938856, 0.03773294529860554, 0.03925896380923632, 0.04090505339792728, 0.042658099364528364, 0.044506197575662494, 0.04643868909161313, 0.04844611516166332, 0.05052012549840903, 0.052653363918365975, 0.054839347623855665, 0.057072350252948274, 0.05934729435725263, 0.06165965592305698, 0.06400538159860471, 0.06638081812324918, 0.0687826528250349, 0.07120786377678819, 0.07365367814508944, 0.0761175373407654, 0.07859706772379675, 0.08109005579033676, 0.08359442695070601, 0.08610822717985829, 0.08862960697781205, 0.09115680721276972, 0.09368814653305259, 0.09622201012565346, 0.09875683967081454, 0.10129112439564168, 0.1038233931674701, 0.1063522075922704, 0.10887615609706167 ], [ 0.042456786383675914, 0.0409653164901155, 0.039564985712195216, 0.03826689298447023, 0.03708397246614318, 0.036030722467685634, 0.035122719717664674, 0.0343759021194391, 0.0338056385760303, 0.03342565509407265, 0.03324694164269664, 0.0332768041438294, 0.03351822791334948, 0.03396967077210499, 0.03462531562348075, 0.03547571408374227, 0.03650868055705596, 0.037710271593025944, 0.039065706871553266, 0.040560136946752895, 0.04217921644468413, 0.04390948405487694, 0.045738576553249824, 0.04765531475403018, 0.04964969945325071, 0.05171284999157061, 0.05383691065827706, 0.056014942925910055, 0.05824081543176178, 0.06050909897607709, 0.06281497048564536, 0.06515412765183169, 0.06752271452800669, 0.0699172575294955, 0.07233461083451137, 0.07477191000047265, 0.07722653258806231, 0.07969606465919377, 0.08217827213898628, 0.08467107617696935, 0.08717253179057029, 0.08968080921321002, 0.09219417749415887, 0.09471099000428951, 0.09722967159082203, 0.09974870719490023, 0.10226663180032451, 0.1047820216214174, 0.10729348646516036, 0.10979966321927073 ], [ 0.0446004844155653, 0.04307817023010907, 0.041645672098493125, 0.04031401839615326, 0.03909595457469759, 0.038005695007301575, 0.037058483019319806, 0.03626994289195094, 0.0356552370100748, 0.035228083838086094, 0.034999740211171346, 0.03497808891954346, 0.03516698092815025, 0.03556594859130275, 0.036170336011809266, 0.036971807313026794, 0.03795912294271028, 0.03911904030255086, 0.040437202214360334, 0.041898912921492254, 0.04348974783347763, 0.04519598455565119, 0.04700487108142141, 0.04890476153388098, 0.050885153641597757, 0.052936659386378544, 0.0550509345026515, 0.05722058609190809, 0.05943907180671632, 0.06170059936342876, 0.06400003162616956, 0.06633280002338716, 0.0686948273998032, 0.07108246036062434, 0.07349241055367865, 0.0759217040197471, 0.07836763761931399, 0.08082774154272955, 0.0832997469795059, 0.08578155812770702, 0.08827122784395697, 0.0907669363542513, 0.09326697255754454, 0.09576971755277079, 0.09827363010426815, 0.10077723382903896, 0.10327910594353738, 0.1057778674482223, 0.10827217465705878, 0.11076071199806133 ], [ 0.04675733822410965, 0.0452063513384976, 0.043743868106554486, 0.04238084011867108, 0.041129829895737983, 0.04000478270769753, 0.03902062619907037, 0.03819268239549662, 0.037535901203048276, 0.03706396038619203, 0.036788318379940205, 0.03671734094307748, 0.03685563501309202, 0.03720370153511655, 0.037757963968940704, 0.03851115611207563, 0.03945298615355275, 0.04057095454964888, 0.041851199304322594, 0.043279266981281976, 0.044840746624296136, 0.0465217423320389, 0.04830918958555979, 0.05019103784322734, 0.05215632893261182, 0.054195200663434785, 0.05629884111699734, 0.058459413662761674, 0.06066996738658143, 0.06292434300654112, 0.06521708073215042, 0.06754333385633482, 0.06989879000831484, 0.07227960076133945, 0.07468231951724638, 0.07710384714416335, 0.07954138461980872, 0.08199239185327216, 0.08445455186864512, 0.08692573959574935, 0.08940399460161905, 0.09188749719376167, 0.0943745474226556, 0.09686354659947644, 0.0993529810228283, 0.10184140767331888, 0.10432744168745613, 0.10680974546293923, 0.10928701927729273, 0.1117579933224694 ], [ 0.04892642350610279, 0.04734900118429034, 0.04585880542656648, 0.04446670868283959, 0.04318509803323203, 0.042027664094365466, 0.04100903462216429, 0.04014423829953019, 0.03944800485719381, 0.03893393812216823, 0.03861363443436262, 0.038495850506558175, 0.038585839365203, 0.038884959817845094, 0.039390622156785654, 0.040096571058786834, 0.04099344528017426, 0.04206951192206908, 0.04331146070196589, 0.044705158505793596, 0.046236295649398636, 0.04789089005683424, 0.04965564467653437, 0.05151817280176557, 0.053467115649402375, 0.055492178910799134, 0.05758411285590319, 0.059734656320863014, 0.061936460143031696, 0.06418300121838535, 0.06646849473049084, 0.068787809313785, 0.07113638789001814, 0.07351017551651563, 0.07590555466350893, 0.0783192877663654, 0.08074846657305075, 0.08319046764840259, 0.08564291334626563, 0.08810363757686299, 0.0905706557512871, 0.09304213835783681, 0.09551638770395508, 0.09799181743397237, 0.10046693450270859, 0.10294032334514437, 0.10541063203240093, 0.10787656024382651, 0.1103368489151172, 0.11279027144406628 ], [ 0.051107257887227295, 0.04950572596951391, 0.04799019985563093, 0.04657147256204306, 0.04526176331880073, 0.044074520826755226, 0.04302408580918995, 0.042125199370055835, 0.0413923612256462, 0.04083906787707691, 0.0404769919016644, 0.040315192147045376, 0.04035946010872851, 0.04061190061187457, 0.04107081204634548, 0.041730879722374055, 0.04258364062712408, 0.043618135797278364, 0.04482164842625586, 0.04618043246785867, 0.047680360362350654, 0.04930744888605797, 0.051048249973483416, 0.05289011369425693, 0.05482134230885429, 0.05683125886787655, 0.05891021347765021, 0.06104954734027101, 0.06324153063555, 0.06547928626584645, 0.06775670795127023, 0.07006837832755877, 0.07240949055891482, 0.0747757754406734, 0.07716343491194817, 0.07956908220917598, 0.08198968846794787, 0.08442253534242514, 0.08686517309959346, 0.08931538361421047, 0.09177114770916896, 0.09423061633227466, 0.09669208512014209, 0.09915397196275641, 0.10161479724256808, 0.10407316647606314, 0.10652775513196916, 0.10897729543796503, 0.11142056501726837, 0.11385637721841628 ], [ 0.05329975715266525, 0.05167654518527905, 0.050138191440777344, 0.04869540981052813, 0.04736025813230551, 0.04614595327887535, 0.045066558236883894, 0.0441365288006945, 0.043370122568449715, 0.04278069527195213, 0.0423799365207063, 0.04217712270921789, 0.04217848038048363, 0.04238675038150637, 0.042801018039262666, 0.04341683164222915, 0.04422658248472008, 0.04522007903324336, 0.046385226090529724, 0.04770872000118386, 0.049176688224876065, 0.05077522732901281, 0.05249081926331106, 0.05431062625538739, 0.05622267781958109, 0.05821596973154211, 0.060280496142249326, 0.06240723424695935, 0.06458809769822876, 0.06681587135267306, 0.06908413659408033, 0.0713871936641523, 0.07371998522761336, 0.07607802375758739, 0.07845732415986631, 0.08085434225957878, 0.08326591925766656, 0.08568923195008712, 0.088121748328854, 0.09056118810443148, 0.09300548767060171, 0.09545276905124984, 0.09790131240720912, 0.10034953172907925, 0.10279595339143469, 0.10523919729053327, 0.10767796032908977, 0.11011100204657166, 0.11253713222154105, 0.1149552002942347 ], [ 0.05550417795817668, 0.05386182608434771, 0.05230327038481926, 0.050839145413778125, 0.04948135207071629, 0.048242882268440326, 0.047137526722545266, 0.04617945466699579, 0.045382667351539764, 0.04476034649704492, 0.04432414244077819, 0.04408346958855451, 0.04404489178587365, 0.04421168007686324, 0.0445836062356069, 0.04515699995029722, 0.045925054600851126, 0.046878328303416476, 0.048005363372451905, 0.04929334265432511, 0.050728712772739284, 0.05229772545591951, 0.05398687137307607, 0.055783200818153474, 0.05767453952393854, 0.05964961566190595, 0.06169811687438176, 0.06381069564477598, 0.06597893894722105, 0.06819531504630186, 0.07045310724060791, 0.07274634162762667, 0.07506971375199484, 0.07741851729281483, 0.07978857669035672, 0.08217618472650018, 0.08457804547350956, 0.08699122263888703, 0.08941309310036198, 0.09184130529735389, 0.0942737420890047, 0.09670848767801561, 0.09914379821607455, 0.10157807573807678, 0.1040098451096435, 0.10643773371094917, 0.1088604536153056, 0.11127678605224899, 0.11368556797078236, 0.11608568053910183 ], [ 0.057721051163320665, 0.05606220892858905, 0.05448619409963869, 0.053003560359588746, 0.05162605358179266, 0.05036644412490148, 0.04923825210330003, 0.048255355661243934, 0.047431483694027464, 0.04677961125851607, 0.04631129645745544, 0.046036017870114875, 0.04596058566774984, 0.04608870118969594, 0.04642072528207963, 0.046953686434570374, 0.04768152250571868, 0.04859551462226301, 0.049684847818717404, 0.05093722484905823, 0.05233946644997184, 0.05387804814486792, 0.055539544100581484, 0.057310967340390526, 0.05918000979197903, 0.06113519441335176, 0.06316595566049688, 0.06526266514634943, 0.0674166178449118, 0.06961999170717263, 0.07186579081866566, 0.0741477796724694, 0.07646041395896808, 0.07879877154117176, 0.08115848596880106, 0.08353568392547676, 0.08592692733098752, 0.08832916036779401, 0.09073966141042046, 0.09315599966201037, 0.09557599620810565, 0.09799768915715712, 0.10041930253092979, 0.10283921858161059, 0.10525595323712016, 0.10766813440472427, 0.11007448289213093, 0.11247379573180978, 0.11486493171739733, 0.11724679898006425 ], [ 0.059951109927872344, 0.05827852765898101, 0.056687900552872796, 0.05518969805604717, 0.053795510139700575, 0.052517885584704396, 0.05137007205817622, 0.05036564925334585, 0.04951805643357749, 0.04884003039944397, 0.04834298782697306, 0.04803640381927077, 0.047927251427764196, 0.04801956956455611, 0.04831421574002493, 0.048808835962086135, 0.04949805206831159, 0.050373834922896966, 0.05142600837652617, 0.052642818520492796, 0.05401150582359658, 0.05551883065343781, 0.05715152019004993, 0.058896622018884126, 0.06074176361713419, 0.06267532629835132, 0.06468654716358849, 0.06676556418849151, 0.06890341891677117, 0.07109202935355281, 0.07332414330750903, 0.07559328009190648, 0.07789366641528699, 0.0802201705740229, 0.08256823771241557, 0.08493382790464868, 0.08731335808102438, 0.08970364831046602, 0.09210187260866413, 0.09450551422227595, 0.09691232520864908, 0.09932029006017941, 0.10172759309248505, 0.10413258931125322, 0.10653377848312938, 0.10892978215459297, 0.11131932338406374, 0.11370120897394374, 0.11607431400870438, 0.11843756852196353 ], [ 0.06219521642298473, 0.060511730214612314, 0.05890942248581922, 0.05739867299474529, 0.055990912144101124, 0.054698463935383995, 0.05353429868851807, 0.052511688037991805, 0.051643763663462856, 0.05094299408752417, 0.05042060952789574, 0.05008602049651764, 0.0499462874914391, 0.05000570228702009, 0.050265532947090956, 0.050723964834418295, 0.051376242438606314, 0.05221498843842491, 0.053230654040306045, 0.054412043012876395, 0.05574685198328542, 0.057222179085446724, 0.058824967713522025, 0.06054236765778284, 0.06236200919734702, 0.06427219529362066, 0.06626202270024131, 0.06832144522194691, 0.07044129246817651, 0.07261325617958572, 0.0748298542863458, 0.0770843807808815, 0.07937084754646999, 0.08168392261693985, 0.08401886799501182, 0.08637147911461361, 0.08873802725634045, 0.09111520566665195, 0.09350007974290907, 0.09589004138636034, 0.09828276745902505, 0.10067618218113872, 0.10306842325224237, 0.10545781145616058, 0.10784282350611014, 0.11022206789368202, 0.1125942635186748, 0.11495822089197918, 0.11731282571918655, 0.11965702468631077 ], [ 0.0644542905158154, 0.06276280209856486, 0.061151806305633084, 0.05963158562844657, 0.0582134046365071, 0.05690935658507499, 0.055732127075646454, 0.05469466849334555, 0.05380978694072123, 0.05308965471364037, 0.05254527502929089, 0.052185939435144046, 0.052018728691849044, 0.05204811121022661, 0.05227568667217272, 0.05270010608014448, 0.05331717607558825, 0.054120130298736545, 0.05510002977391392, 0.0562462421846074, 0.05754694791597897, 0.05898962741303629, 0.06056149641077576, 0.062249869248454874, 0.0640424428675705, 0.06592750356449045, 0.06789406466595208, 0.0699319463727175, 0.07203180981197022, 0.07418515665528705, 0.07638430417816096, 0.07862234385591473, 0.08089308982515797, 0.08319102196102014, 0.085511227000543, 0.08784934009180959, 0.09020148834401884, 0.09256423735814993, 0.09493454129079489, 0.09730969670713514, 0.09968730028048857, 0.10206521026860142, 0.10444151162056174, 0.1068144845263282, 0.10918257620244959, 0.11154437570323757, 0.11389859155120118, 0.11624403198926003, 0.11857958766778232, 0.1209042165900009 ], [ 0.06672924317285002, 0.06503269604954928, 0.06341603858371749, 0.06188944642629929, 0.06046400978655171, 0.05915158296104353, 0.05796455763793313, 0.05691555486640197, 0.05601703775686471, 0.05528085695935641, 0.05471775288396995, 0.05433685055425919, 0.05414519208574322, 0.05414735495632666, 0.054345199202990184, 0.054737773112701726, 0.05532138707967147, 0.056089843372345544, 0.057034790584748286, 0.058146159490526164, 0.059412633557875884, 0.06082211172511761, 0.06236213064936749, 0.06402022542348303, 0.06578421904896586, 0.06764244007071842, 0.06958387406270775, 0.07159825821230177, 0.07367612962148119, 0.07580883779609421, 0.07798853074708145, 0.08020812265999797, 0.08246124952754849, 0.0847422176783859, 0.08704594886999246, 0.08936792457611864, 0.09170413128297436, 0.09405100798812642, 0.09640539663851995, 0.09876449591634112, 0.10112581855381214, 0.10348715220504487, 0.10584652380458229, 0.10820216728224497, 0.11055249447049129, 0.11289606902451002, 0.11523158317050802, 0.11755783709933035, 0.11987372082784631, 0.12217819835715933 ], [ 0.06902091666568899, 0.06732226990892962, 0.06570298221415743, 0.0641731110829579, 0.0627435620085855, 0.06142594044916412, 0.060232333825463995, 0.059175019534425125, 0.05826610142644667, 0.057517085998685664, 0.05693841993298549, 0.056539020926359075, 0.05632584166452121, 0.056303509703129306, 0.056474082024848514, 0.05683694176310264, 0.05738884770148914, 0.058124128111795105, 0.0590349934325225, 0.0601119306923305, 0.06134413818656663, 0.06271996141292133, 0.06422729878804423, 0.0658539556522272, 0.06758793516708096, 0.06941766328429849, 0.07133215122618501, 0.07332110278788578, 0.07537497560067996, 0.07748500582296182, 0.07964320509010545, 0.08184233740568543, 0.08407588231792039, 0.08633798940487392, 0.08862342790480254, 0.09092753432424916, 0.09324616004505966, 0.09557562031867929, 0.09791264555720841, 0.1002543354781676, 0.1025981164072886, 0.10494170186747016, 0.10728305646301796, 0.10962036299075256, 0.11195199266157495, 0.11427647828823635, 0.11659249028085587, 0.1188988152860592, 0.12119433730518869, 0.12347802112945197 ], [ 0.07133003300969329, 0.06963223403510788, 0.06801332346517627, 0.06648322795791511, 0.0650526565953442, 0.06373295504508589, 0.06253589559018502, 0.06147340004041694, 0.06055719835544258, 0.05979843357397781, 0.059207232660084576, 0.05879227176214435, 0.058560371170414495, 0.05851615783315745, 0.05866183004983129, 0.05899704954206407, 0.059518971794621345, 0.06022240911038929, 0.06110010565690738, 0.06214309290142061, 0.06334108892150554, 0.0646829061627633, 0.06615683794293334, 0.06775100232189685, 0.06945363083118694, 0.07125329745350513, 0.07313908931668209, 0.0751007245905767, 0.07712862524677011, 0.0792139530690963, 0.08134861704517873, 0.08352525943161257, 0.08573722667903298, 0.08797853024155944, 0.0902438012052217, 0.092528241718423, 0.09482757541604121, 0.09713799839600515, 0.09945613181623285, 0.10177897680919507, 0.10410387213843648, 0.10642845482518416, 0.10875062383558527, 0.11106850682518944, 0.11338042987534387, 0.11568489011668533, 0.117980531111193, 0.12026612085109795, 0.1225405322264967, 0.12480272581145359 ], [ 0.07365715146265375, 0.07196310895240905, 0.07034753043512397, 0.06882019804868193, 0.0673916119378703, 0.06607284653348641, 0.0648753481853204, 0.06381067209442497, 0.06289016172990824, 0.06212458075495426, 0.06152371530168707, 0.06109597204589854, 0.06084800330988232, 0.06078439262335128, 0.06090743148272685, 0.06121701014536695, 0.061710633173819404, 0.06238355630522532, 0.06322902786656698, 0.06423860794436727, 0.06540253341317916, 0.0667100969654684, 0.06815001252570768, 0.06971074625251795, 0.07138080000998596, 0.0731489413329792, 0.07500437966791883, 0.07693689271516918, 0.07893690910003098, 0.08099555465094836, 0.08310466963842836, 0.0852568037839656, 0.08744519497429266, 0.08966373662283902, 0.09190693764289685, 0.09416987811247853, 0.09644816295388667, 0.09873787532984668, 0.10103553096442974, 0.10333803421536374, 0.10564263643624745, 0.10794689695449354, 0.11024864683709819, 0.11254595550762282, 0.11483710020264128, 0.11712053820538328, 0.11939488176118228, 0.12165887555857256, 0.1239113766474242, 0.1261513366585604 ], [ 0.07600263538265409, 0.0743151933549426, 0.07270582282447502, 0.07118414717509193, 0.0697604447559561, 0.06844550735507426, 0.06725044518671729, 0.0661864371728421, 0.06526443001264728, 0.06449479554863745, 0.06388696269022079, 0.06344904664330941, 0.06318750306402209, 0.06310683658273578, 0.06320939086308733, 0.06349524069351047, 0.06396219634050017, 0.06460591828128806, 0.0654201287656101, 0.06639689758340458, 0.06752697434830437, 0.06880013890255442, 0.0702055444788408, 0.07173203375923935, 0.07336841451857762, 0.07510368789893969, 0.07692722771137643, 0.0788289131153135, 0.0807992195551686, 0.08282927413017702, 0.08491088193107306, 0.08703652959975028, 0.08919937171841968, 0.0913932048132881, 0.09361243290231787, 0.09585202771131415, 0.09810748597226632, 0.10037478561898636, 0.1026503422078324, 0.10493096650570913, 0.10721382388975519, 0.10949639597779055, 0.11177644474157963, 0.11405197923320322, 0.11632122496790481, 0.11858259594572583, 0.1208346692522309, 0.12307616215040729, 0.1253059115572023, 0.12752285578636835 ], [ 0.07836662830638672, 0.07668854212816262, 0.07508815246489946, 0.0735749095758823, 0.07215885728859724, 0.0708504938551674, 0.06966058417794, 0.0685999229175738, 0.06767905222916264, 0.06690794314709127, 0.0662956554548549, 0.06584999637654596, 0.06557720249378253, 0.06548167076746378, 0.0655657625672488, 0.06582969896144196, 0.0662715568178983, 0.06688736492188689, 0.06767128918690841, 0.06861588791292351, 0.06971241317633904, 0.07095113323309214, 0.07232165288255388, 0.07381321311333924, 0.07541495686214708, 0.07711615329757124, 0.07890637792656457, 0.08077564960013009, 0.08271452806354282, 0.08471417716391712, 0.08676639941474139, 0.08886364757463075, 0.09099901845710143, 0.09316623353598827, 0.09535961018231714, 0.09757402665106414, 0.09980488328190174, 0.10204806181126085, 0.10429988422015922, 0.10655707215976878, 0.1088167076943806, 0.11107619586784342, 0.1133332294219685, 0.115585755862992, 0.11783194697470487, 0.12007017080635174, 0.12229896611306798, 0.12451701919113888, 0.12672314302585505, 0.1289162586529721 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "0_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "1_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.2554171597585082, 0.16836228289759916, 0.15383351920547317, 0.12554584914942554, 0.0855199226454489, 0.041923738642980365, 0.042435097313190666, 0.07388392934905631, 0.0028814072487392717, 0.08532625721387746, 0.11832700197006044, 0.09332532994449139, 0.12465862850424025, 0.10927987459039408, 0.1133127740249954, 0.11106552677626556, 0.13562084050921372, 0.1838158209520383, 0.20145471282315283, 0.20182879338321305, 0.21134335953178837, 0.3411679398268461, 0.5352822691202164, 0.9177997410297394, 0.7778274770826101, 0.18595571450545217, 0.23435220013874838, 0.16525102289053464, 0.1773562005290745 ], "xaxis": "x", "y": [ 0.24258662201464176, 0.5297565309485772, 0.45934036903775743, 0.36482439734619937, 0.23827713817772164, 0.09247507012780348, 0.17166928193304654, 0.15661013760289147, 0.181160308074951, 0.13924034381468114, 0.05788360015785916, 0.6103114727884531, 0.10593810772418724, 0.1149977330719707, 0.16821623185487736, 0.13603307285005425, 0.1918728874125481, 0.17661093222592275, 0.17125119155035753, 0.19292943778191388, 0.15774301412300856, 0.5152985500171781, 0.3241129443049431, 0.3311000978574157, 0.5080037554726005, 0.6264283813503558, 0.668607864048284, 0.5758856309903699, 0.6714439547848815 ], "yaxis": "y" }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "showlegend": false, "text": [ "0_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "1_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.2554171597585082, 0.16836228289759916, 0.15383351920547317, 0.12554584914942554, 0.0855199226454489, 0.041923738642980365, 0.042435097313190666, 0.07388392934905631, 0.0028814072487392717, 0.08532625721387746, 0.11832700197006044, 0.09332532994449139, 0.12465862850424025, 0.10927987459039408, 0.1133127740249954, 0.11106552677626556, 0.13562084050921372, 0.1838158209520383, 0.20145471282315283, 0.20182879338321305, 0.21134335953178837, 0.3411679398268461, 0.5352822691202164, 0.9177997410297394, 0.7778274770826101, 0.18595571450545217, 0.23435220013874838, 0.16525102289053464, 0.1773562005290745 ], "xaxis": "x2", "y": [ 0.24258662201464176, 0.5297565309485772, 0.45934036903775743, 0.36482439734619937, 0.23827713817772164, 0.09247507012780348, 0.17166928193304654, 0.15661013760289147, 0.181160308074951, 0.13924034381468114, 0.05788360015785916, 0.6103114727884531, 0.10593810772418724, 0.1149977330719707, 0.16821623185487736, 0.13603307285005425, 0.1918728874125481, 0.17661093222592275, 0.17125119155035753, 0.19292943778191388, 0.15774301412300856, 0.5152985500171781, 0.3241129443049431, 0.3311000978574157, 0.5080037554726005, 0.6264283813503558, 0.668607864048284, 0.5758856309903699, 0.6714439547848815 ], "yaxis": "y2" } ], "layout": { "annotations": [ { "font": { "size": 14 }, "showarrow": false, "text": "Mean", "x": 0.25, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 14 }, "showarrow": false, "text": "Standard Error", "x": 0.8, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" } ], "autosize": false, "height": 450, "hovermode": "closest", "legend": { "orientation": "h", "x": 0, "y": -0.25 }, "margin": { "b": 100, "l": 35, "pad": 0, "r": 35, "t": 35 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "width": 950, "xaxis": { "anchor": "y", "autorange": false, "domain": [ 0.05, 0.45 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "xaxis2": { "anchor": "y2", "autorange": false, "domain": [ 0.6, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "yaxis": { "anchor": "x", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x2" }, "type": "linear" }, "yaxis2": { "anchor": "x2", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "type": "linear" } } }, "text/html": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "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.010394934374708457, -0.49693227914399757, -0.49693227914399757, -0.49693227914399757, -0.49693227914399757, -0.49693227914399757, -1.015208145236463, -1.015208145236463, -1.1952166035410448, -1.1952166035410448, -1.5127832676058415, -1.8280360479472364, -2.162841815190993, -2.512858608040896, -2.563187195575572, -2.755229865106676, -2.755229865106676, -2.755229865106676, -3.0209088489644205, -3.0209088489644205, -3.0209088489644205, -3.1029206698394614, -3.1977426836476717, -3.1977426836476717, -3.2410138302300253, -3.292463450739059, -3.310621686036545, -3.310621686036545, -3.3181646506990954, -3.3181646506990954 ] }, { "fill": "tonexty", "fillcolor": "rgba(128,177,211,0.3)", "legendgroup": "mean", "line": { "color": "rgba(128,177,211,1)" }, "mode": "lines", "name": "mean", "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.010394934374708457, -0.49693227914399757, -0.49693227914399757, -0.49693227914399757, -0.49693227914399757, -0.49693227914399757, -1.015208145236463, -1.015208145236463, -1.1952166035410448, -1.1952166035410448, -1.5127832676058415, -1.8280360479472364, -2.162841815190993, -2.512858608040896, -2.563187195575572, -2.755229865106676, -2.755229865106676, -2.755229865106676, -3.0209088489644205, -3.0209088489644205, -3.0209088489644205, -3.1029206698394614, -3.1977426836476717, -3.1977426836476717, -3.2410138302300253, -3.292463450739059, -3.310621686036545, -3.310621686036545, -3.3181646506990954, -3.3181646506990954 ] }, { "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.010394934374708457, -0.49693227914399757, -0.49693227914399757, -0.49693227914399757, -0.49693227914399757, -0.49693227914399757, -1.015208145236463, -1.015208145236463, -1.1952166035410448, -1.1952166035410448, -1.5127832676058415, -1.8280360479472364, -2.162841815190993, -2.512858608040896, -2.563187195575572, -2.755229865106676, -2.755229865106676, -2.755229865106676, -3.0209088489644205, -3.0209088489644205, -3.0209088489644205, -3.1029206698394614, -3.1977426836476717, -3.1977426836476717, -3.2410138302300253, -3.292463450739059, -3.310621686036545, -3.310621686036545, -3.3181646506990954, -3.3181646506990954 ] }, { "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 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "text": "Model performance vs. # of iterations" }, "xaxis": { "title": { "text": "Iteration" } }, "yaxis": { "title": { "text": "Hartmann6" } } } }, "text/html": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "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.1" } }, "nbformat": 4, "nbformat_minor": 2 }