{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Tune a CNN on MNIST\n",
"\n",
"This tutorial walks through using Ax to tune two hyperparameters (learning rate and momentum) for a PyTorch CNN on the MNIST dataset trained using SGD with momentum.\n"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"execution": {
"iopub.execute_input": "2022-09-28T16:24:03.480876Z",
"iopub.status.busy": "2022-09-28T16:24:03.480309Z",
"iopub.status.idle": "2022-09-28T16:24:05.251669Z",
"shell.execute_reply": "2022-09-28T16:24:05.251009Z"
}
},
"outputs": [
{
"data": {
"text/html": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:24:05] ax.utils.notebook.plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.\n"
]
},
{
"data": {
"text/html": [
" \n",
" "
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"import torch\n",
"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.utils.notebook.plotting import render, init_notebook_plotting\n",
"from ax.utils.tutorials.cnn_utils import load_mnist, train, evaluate, CNN\n",
"\n",
"init_notebook_plotting()"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {
"collapsed": true,
"execution": {
"iopub.execute_input": "2022-09-28T16:24:05.312240Z",
"iopub.status.busy": "2022-09-28T16:24:05.311480Z",
"iopub.status.idle": "2022-09-28T16:24:05.316598Z",
"shell.execute_reply": "2022-09-28T16:24:05.315933Z"
}
},
"outputs": [],
"source": [
"torch.manual_seed(12345)\n",
"dtype = torch.float\n",
"device = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## 1. Load MNIST data\n",
"First, we need to load the MNIST data and partition it into training, validation, and test sets.\n",
"\n",
"Note: this will download the dataset if necessary."
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"execution": {
"iopub.execute_input": "2022-09-28T16:24:05.319330Z",
"iopub.status.busy": "2022-09-28T16:24:05.319114Z",
"iopub.status.idle": "2022-09-28T16:24:06.560827Z",
"shell.execute_reply": "2022-09-28T16:24:06.560154Z"
},
"scrolled": true
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Downloading http://yann.lecun.com/exdb/mnist/train-images-idx3-ubyte.gz\n",
"Downloading http://yann.lecun.com/exdb/mnist/train-images-idx3-ubyte.gz to ./data/MNIST/raw/train-images-idx3-ubyte.gz\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "356eddf9f2914e3c8743ec4111aef2a1",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
" 0%| | 0/9912422 [00:00, ?it/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Extracting ./data/MNIST/raw/train-images-idx3-ubyte.gz to ./data/MNIST/raw\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"Downloading http://yann.lecun.com/exdb/mnist/train-labels-idx1-ubyte.gz\n",
"Downloading http://yann.lecun.com/exdb/mnist/train-labels-idx1-ubyte.gz to ./data/MNIST/raw/train-labels-idx1-ubyte.gz\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "b2a078d900424a7bb4d17acf79a034be",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
" 0%| | 0/28881 [00:00, ?it/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Extracting ./data/MNIST/raw/train-labels-idx1-ubyte.gz to ./data/MNIST/raw\n",
"\n",
"Downloading http://yann.lecun.com/exdb/mnist/t10k-images-idx3-ubyte.gz\n",
"Downloading http://yann.lecun.com/exdb/mnist/t10k-images-idx3-ubyte.gz to ./data/MNIST/raw/t10k-images-idx3-ubyte.gz\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "fbb2dbefe78a46ebbe85076412e3656f",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
" 0%| | 0/1648877 [00:00, ?it/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Extracting ./data/MNIST/raw/t10k-images-idx3-ubyte.gz to ./data/MNIST/raw\n",
"\n",
"Downloading http://yann.lecun.com/exdb/mnist/t10k-labels-idx1-ubyte.gz\n",
"Downloading http://yann.lecun.com/exdb/mnist/t10k-labels-idx1-ubyte.gz to ./data/MNIST/raw/t10k-labels-idx1-ubyte.gz\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "5cc863b43e02461a826ceb1462e2cf22",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
" 0%| | 0/4542 [00:00, ?it/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Extracting ./data/MNIST/raw/t10k-labels-idx1-ubyte.gz to ./data/MNIST/raw\n",
"\n"
]
}
],
"source": [
"BATCH_SIZE = 512\n",
"train_loader, valid_loader, test_loader = load_mnist(batch_size=BATCH_SIZE)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## 2. Define function to optimize\n",
"In this tutorial, we want to optimize classification accuracy on the validation set as a function of the learning rate and momentum. The function takes in a parameterization (set of parameter values), computes the classification accuracy, and returns a dictionary of metric name ('accuracy') to a tuple with the mean and standard error."
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {
"collapsed": true,
"execution": {
"iopub.execute_input": "2022-09-28T16:24:06.564720Z",
"iopub.status.busy": "2022-09-28T16:24:06.564105Z",
"iopub.status.idle": "2022-09-28T16:24:06.569609Z",
"shell.execute_reply": "2022-09-28T16:24:06.569021Z"
}
},
"outputs": [],
"source": [
"def train_evaluate(parameterization):\n",
" net = CNN()\n",
" net = train(net=net, train_loader=train_loader, parameters=parameterization, dtype=dtype, device=device)\n",
" return evaluate(\n",
" net=net,\n",
" data_loader=valid_loader,\n",
" dtype=dtype,\n",
" device=device,\n",
" )"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## 3. Run the optimization loop\n",
"Here, we set the bounds on the learning rate and momentum and set the parameter space for the learning rate to be on a log scale. "
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {
"execution": {
"iopub.execute_input": "2022-09-28T16:24:06.572620Z",
"iopub.status.busy": "2022-09-28T16:24:06.572400Z",
"iopub.status.idle": "2022-09-28T16:26:17.877901Z",
"shell.execute_reply": "2022-09-28T16:26:17.877227Z"
}
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:24:06] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter lr. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:24:06] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter momentum. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:24:06] ax.service.utils.instantiation: Created search space: SearchSpace(parameters=[RangeParameter(name='lr', parameter_type=FLOAT, range=[1e-06, 0.4], log_scale=True), RangeParameter(name='momentum', parameter_type=FLOAT, range=[0.0, 1.0])], parameter_constraints=[]).\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:24:06] ax.modelbridge.dispatch_utils: Using Bayesian optimization since there are more ordered parameters than there are categories for the unordered categorical parameters.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:24:06] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+GPEI', steps=[Sobol for 5 trials, GPEI for subsequent trials]). Iterations after 5 will take longer to generate due to model-fitting.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:24:06] ax.service.managed_loop: Started full optimization with 20 steps.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:24:06] ax.service.managed_loop: Running optimization trial 1...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/home/runner/work/Ax/Ax/ax/core/observation.py:274: FutureWarning:\n",
"\n",
"In a future version of pandas, a length 1 tuple will be returned when iterating over a groupby with a grouper equal to a list of length 1. Don't supply a list with a single grouper to avoid this warning.\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:24:13] ax.service.managed_loop: Running optimization trial 2...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:24:19] ax.service.managed_loop: Running optimization trial 3...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:24:25] ax.service.managed_loop: Running optimization trial 4...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:24:31] ax.service.managed_loop: Running optimization trial 5...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:24:37] ax.service.managed_loop: Running optimization trial 6...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:24:44] ax.service.managed_loop: Running optimization trial 7...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:24:50] ax.service.managed_loop: Running optimization trial 8...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:24:57] ax.service.managed_loop: Running optimization trial 9...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:25:04] ax.service.managed_loop: Running optimization trial 10...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:25:10] ax.service.managed_loop: Running optimization trial 11...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:25:17] ax.service.managed_loop: Running optimization trial 12...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:25:23] ax.service.managed_loop: Running optimization trial 13...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:25:30] ax.service.managed_loop: Running optimization trial 14...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:25:37] ax.service.managed_loop: Running optimization trial 15...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:25:43] ax.service.managed_loop: Running optimization trial 16...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:25:50] ax.service.managed_loop: Running optimization trial 17...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:25:57] ax.service.managed_loop: Running optimization trial 18...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:26:03] ax.service.managed_loop: Running optimization trial 19...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:26:10] ax.service.managed_loop: Running optimization trial 20...\n"
]
}
],
"source": [
"best_parameters, values, experiment, model = optimize(\n",
" parameters=[\n",
" {\"name\": \"lr\", \"type\": \"range\", \"bounds\": [1e-6, 0.4], \"log_scale\": True},\n",
" {\"name\": \"momentum\", \"type\": \"range\", \"bounds\": [0.0, 1.0]},\n",
" ],\n",
" evaluation_function=train_evaluate,\n",
" objective_name='accuracy',\n",
")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We can introspect the optimal parameters and their outcomes:"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {
"execution": {
"iopub.execute_input": "2022-09-28T16:26:17.881297Z",
"iopub.status.busy": "2022-09-28T16:26:17.881062Z",
"iopub.status.idle": "2022-09-28T16:26:17.887726Z",
"shell.execute_reply": "2022-09-28T16:26:17.887158Z"
}
},
"outputs": [
{
"data": {
"text/plain": [
"{'lr': 0.0001265259671705583, 'momentum': 0.38405384292670985}"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"best_parameters"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {
"execution": {
"iopub.execute_input": "2022-09-28T16:26:17.890384Z",
"iopub.status.busy": "2022-09-28T16:26:17.890170Z",
"iopub.status.idle": "2022-09-28T16:26:17.895457Z",
"shell.execute_reply": "2022-09-28T16:26:17.894822Z"
}
},
"outputs": [
{
"data": {
"text/plain": [
"({'accuracy': 0.916846296153124},\n",
" {'accuracy': {'accuracy': 0.010730091792421155}})"
]
},
"execution_count": 7,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"means, covariances = values\n",
"means, covariances"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## 4. Plot response surface\n",
"\n",
"Contour plot showing classification accuracy as a function of the two hyperparameters.\n",
"\n",
"The black squares show points that we have actually run, notice how they are clustered in the optimal region."
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {
"execution": {
"iopub.execute_input": "2022-09-28T16:26:17.898287Z",
"iopub.status.busy": "2022-09-28T16:26:17.898069Z",
"iopub.status.idle": "2022-09-28T16:26:18.447175Z",
"shell.execute_reply": "2022-09-28T16:26:18.446573Z"
}
},
"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": [
1e-06,
1.3011511650442548e-06,
1.692994354296022e-06,
2.2028415765056147e-06,
2.866229883678204e-06,
3.729398352432554e-06,
4.852511011181743e-06,
6.3138503555892e-06,
8.215273746089953e-06,
1.0689313005882424e-05,
1.390841207112662e-05,
1.809694657026198e-05,
2.354686311364001e-05,
3.063802837345029e-05,
3.986470631277378e-05,
5.1870009063012666e-05,
6.749072272319499e-05,
8.781563250096393e-05,
0.00011426141253772724,
0.00014867137004306603,
0.00019344392634026088,
0.0002516997901283655,
0.0003274994751669172,
0.0004261263236648159,
0.0005544547624925005,
0.0007214294601814526,
0.000938688782612345,
0.0012213760031100258,
0.0015891948094037057,
0.002067782677737912,
0.0026904978401970136,
0.0035007443993213955,
0.004554997653699184,
0.005926740503884541,
0.007711585311544345,
0.010033938212454078,
0.013055670395116691,
0.01698740074503987,
0.02210317627048227,
0.028759573555516536,
0.03742055263793628,
0.04868979566145066,
0.06335278435066323,
0.0824315491666629,
0.10725590623460621,
0.13955614735503497,
0.18158364372009145,
0.23626776957937787,
0.3074200836506151,
0.4
],
"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.28473684318553555,
0.30110162416837255,
0.32251504888551497,
0.34864893188621787,
0.379008550386607,
0.41301324821743124,
0.4500414223696386,
0.4894526520274332,
0.5305949802843816,
0.5728021021200996,
0.6153832647406701,
0.6576078499043329,
0.6986867188027117,
0.7377533687332595,
0.7738497725094144,
0.8059245487824601,
0.8328529546329513,
0.8534582254798002,
0.8665107834404406,
0.8707677579663955,
0.8650794841368276,
0.8485637718886662,
0.8208178872631385,
0.7820325022359792,
0.7330529671218754,
0.6755182986784145,
0.6118658091251349,
0.5449784124811453,
0.4778348875965036,
0.413270437876069,
0.35380452027166676,
0.3014848131533902,
0.25769047663942446,
0.22288690376970355,
0.1966639302842328,
0.1780885578327141,
0.16599356142358135,
0.1591647727821408,
0.15645687779088796,
0.15685978223068653,
0.15953131537056792,
0.16380725828504478,
0.16919607389216007,
0.17536305732226642,
0.182106804193915,
0.18932990037794173,
0.19700561960275703,
0.20514314379485815,
0.21375503180115046,
0.22283147803287018
],
[
0.2861507651730705,
0.3027250788424272,
0.3243964371954122,
0.35084236408409425,
0.3815693706241246,
0.41599334896449724,
0.45348484736064565,
0.4933919527506116,
0.5350486476454184,
0.5777731878938291,
0.6208590915871123,
0.6635605205001208,
0.7050739940673075,
0.7445194068187759,
0.7809252154851405,
0.8132255130082652,
0.8402781833767183,
0.8608843401990303,
0.8737889278872332,
0.877723606583368,
0.8715194407266267,
0.8542890844384766,
0.8256437402764776,
0.785811196971444,
0.7356962868088985,
0.6770082147119194,
0.6122489762184106,
0.5443569284156687,
0.47635034041538965,
0.4110843360477621,
0.3510793899204213,
0.2983686807085938,
0.2543060138074662,
0.21933123622675577,
0.19301298860802857,
0.1743971014052641,
0.16229668953456894,
0.15548064175594112,
0.15279006011296076,
0.15320492627883542,
0.15587692267448394,
0.16013948604636397,
0.16550249396760258,
0.1716362571783776,
0.17834760094015584,
0.18554977445417847,
0.19322782438191255,
0.20140194205880924,
0.21009280558928412,
0.2192940816014598
],
[
0.28792081666361863,
0.3046885893371085,
0.32659031919498405,
0.35331408338301573,
0.384370854568468,
0.41917487227275346,
0.45708952604703457,
0.4974513038682266,
0.539579521415788,
0.5827761622996485,
0.6263181966482955,
0.6694439685249018,
0.7113354521977666,
0.7510992751381902,
0.7877513813216959,
0.8202130745666221,
0.8473264237265093,
0.8678706060279435,
0.8805654074250624,
0.8841183225725622,
0.8773440770092003,
0.859354986717324,
0.8297801801049363,
0.7888897501079783,
0.7376575952625306,
0.6778696146946809,
0.6120873224816016,
0.5432970232340015,
0.4745489580202686,
0.40870971608871925,
0.34829085564935225,
0.295299251493277,
0.2510505962930128,
0.2159560200519673,
0.18957063727361562,
0.17092623863316952,
0.15882146980630302,
0.15201198942632804,
0.1493279290994447,
0.14974114343132655,
0.1523983664297689,
0.15663146667875938,
0.16195224267641062,
0.16803639608253973,
0.17469935142625348,
0.18186547953559395,
0.18953217383370458,
0.19773124428127503,
0.20649194844666435,
0.2158115356084903
],
[
0.2900422360320445,
0.3069877713473047,
0.3290930701001102,
0.35606104071913375,
0.38741032099288086,
0.4225553185047228,
0.46085296217777977,
0.501628026735524,
0.5441845403807666,
0.5878073702470941,
0.6317561206997806,
0.6752527407855345,
0.717464500148028,
0.7574851598567116,
0.7943192179086456,
0.8268768348720675,
0.8539856931086345,
0.8744037592053275,
0.8868262931500441,
0.8899381025146333,
0.8825404512814159,
0.8637492586105561,
0.8332157724151634,
0.7912581154451729,
0.7389274877055156,
0.678091324686043,
0.6113680677006986,
0.5417851462764491,
0.4724170197604027,
0.40613286476561095,
0.34542500537223536,
0.2922622535792665,
0.24791157651021994,
0.21275247552183701,
0.18633169930411175,
0.16767376262567224,
0.15556810713114977,
0.14876099934348097,
0.14607432944248927,
0.14647371355012523,
0.14910219906869088,
0.1532908969919347,
0.15855403974351678,
0.16457307875272054,
0.17117237761464743,
0.17828785995901608,
0.18592983328636897,
0.1941423569830052,
0.2029637630644167,
0.2123950121999763
],
[
0.29250657980386346,
0.3096146457274058,
0.3318979689573673,
0.35907768309399346,
0.3906831253053302,
0.42613068861311953,
0.4647715538726209,
0.5059186758623577,
0.548860178248434,
0.5928629753285781,
0.6371685084309238,
0.6809817945550356,
0.7234553023849449,
0.7636704036627412,
0.800621255131249,
0.8332083712189624,
0.860246425343871,
0.8804733986867637,
0.892561080930125,
0.8951732788614155,
0.8871004906514683,
0.8674653686644394,
0.8359455167478308,
0.7929130479004979,
0.7395029657599574,
0.677667842701223,
0.610082606448326,
0.5398102152807605,
0.46994150658297656,
0.4033389505086956,
0.3424650311063765,
0.2892392781005602,
0.24487160888576626,
0.20970716354497454,
0.18328700372897655,
0.16463420414118496,
0.15253419492227027,
0.14572779332067348,
0.14303150417985044,
0.14340670352618962,
0.1459940950587652,
0.15012489181176686,
0.15531629008325037,
0.16125583810062022,
0.1677771469527473,
0.17482809054388754,
0.18243244356309868,
0.19064716350804367,
0.1995201882883984,
0.20905633990825867
],
[
0.2953026460101016,
0.3125584365911551,
0.3349957023306871,
0.36235626437722634,
0.39418285544802933,
0.4298956065998888,
0.4688406645292772,
0.5103190700489453,
0.5536024412350474,
0.5979389264007864,
0.6425510431410311,
0.6866263951131789,
0.7293026293293376,
0.7696492826357175,
0.8066512850113748,
0.8392008693050321,
0.8661011059716519,
0.8860716204487317,
0.8977622312487011,
0.8998176440195911,
0.8910200616237118,
0.8705013915251205,
0.8379696372190948,
0.7938565781942806,
0.7393859249847982,
0.676598272865665,
0.6082260715362766,
0.537363624487387,
0.46711045826698105,
0.40031274726431687,
0.33939245679329105,
0.28620954848791325,
0.2419104334317675,
0.2068032580479109,
0.18042415517059468,
0.16179930150242056,
0.14971500699731188,
0.14291061243262676,
0.14020020353928297,
0.14054302761964893,
0.1430788781674145,
0.14713998916348653,
0.1522470756198414,
0.15809412116798344,
0.164524258654346,
0.17149766730708504,
0.1790521171147128,
0.18725812370059758,
0.19617379911089622,
0.2058080004253124
],
[
0.29841726518125095,
0.3158063306391593,
0.3383749288265857,
0.36588722170547494,
0.39790157790970604,
0.4338434765023717,
0.47305471550506517,
0.51482433499456,
0.5584068684485857,
0.6030309190916516,
0.6478993684432699,
0.6921819915447558,
0.7350016746589595,
0.7754167476090392,
0.812404027656228,
0.8448487513561133,
0.8715438643947699,
0.8911925756604047,
0.9024246238717426,
0.9038677156696246,
0.8942980577900488,
0.8728589101036676,
0.839292299956947,
0.7940946227107966,
0.7385819102941154,
0.6748853332341489,
0.6057968545517436,
0.5344392377893827,
0.4639133697928217,
0.3970394368534591,
0.33618838984000915,
0.2831514402446356,
0.23900639526192763,
0.20402184119442823,
0.17772841655142746,
0.15915857050823617,
0.14710386278656556,
0.14030604896510285,
0.13757982812040148,
0.13788452994666617,
0.14036056170485983,
0.14434216129623617,
0.1493541472975849,
0.15509727093100611,
0.16142442294504078,
0.16830838966643025,
0.17580142518765496,
0.18398826446487737,
0.192937797211854,
0.2026631152885366
],
[
0.30183597412032426,
0.3193441482157843,
0.34202284202622674,
0.3696595827261149,
0.4018301159409018,
0.4379666644376256,
0.47740729545299637,
0.5194289547344737,
0.5632685341328724,
0.6081343528829454,
0.6532089996409037,
0.6976440766356685,
0.7405478528282765,
0.7809681492493171,
0.8178747956553504,
0.8501473003553301,
0.876570047815205,
0.8958319897821914,
0.9065449809815136,
0.9073220171299874,
0.8969355437169797,
0.8745419870909252,
0.8399204285494544,
0.7936358204349003,
0.7370991248904737,
0.6725345488555996,
0.6027961800707792,
0.5310334015799252,
0.46034160964025156,
0.39350541432910746,
0.3328346670644651,
0.28004374789280617,
0.23613771172862386,
0.20134308662469458,
0.17518360924047943,
0.15669992414348327,
0.14469253966380136,
0.13790931508785081,
0.1351685983596861,
0.13543208435391896,
0.137842398746935,
0.14173682940925925,
0.14664491541335667,
0.15227450199753073,
0.15848843102370247,
0.16527233168697814,
0.17269337358317333,
0.18085115886769515,
0.18982598977857018,
0.19963542021714603
],
[
0.3055435857862046,
0.3231569195671127,
0.3459256943463841,
0.3736613743876609,
0.4059583423938356,
0.44225669563801706,
0.4818912806166268,
0.5241268288860728,
0.5681820506791041,
0.6132442844724463,
0.658475227660888,
0.7030080368479742,
0.745936587030334,
0.7862989596137572,
0.8230591608596792,
0.855092281627296,
0.8811757895670242,
0.8999866712976765,
0.9101213010671212,
0.9101804193222887,
0.8989349923889658,
0.8755562657446074,
0.8398627101862615,
0.7924906166935124,
0.7349476783822714,
0.6695536573250587,
0.5992277921138995,
0.5271450033591143,
0.45638884523063095,
0.38969904340446393,
0.329314842563657,
0.276866723211689,
0.23328351249731466,
0.19874727833146388,
0.17277296141275444,
0.15441029644833748,
0.14247170583392932,
0.13571453296886038,
0.13296374136098715,
0.1331857063571812,
0.13552693902327873,
0.139328879796363,
0.1441264363494723,
0.14963486816059435,
0.15572711333573536,
0.16240179964460782,
0.16974136421951364,
0.17786089110075815,
0.18685275400113527,
0.19673922451046433
],
[
0.30952466696637576,
0.32722937202889385,
0.35006926378592906,
0.3778800117944716,
0.4102754717395426,
0.44670445673255166,
0.4864989602473994,
0.5289113324987803,
0.5731415711979553,
0.6183553780868427,
0.6636930183861413,
0.7082689979606206,
0.7511630960921786,
0.7914044986842077,
0.8279526266147038,
0.8596795635457419,
0.8853575785546106,
0.9036540287862229,
0.913152332330764,
0.9124435758846723,
0.9002996510067758,
0.8759082431167847,
0.8391288323362702,
0.7906705899004602,
0.7321390582255881,
0.6659522221636874,
0.5950977789648799,
0.5227755911300789,
0.45205146415822617,
0.38561133185328245,
0.32561500676910027,
0.27360290959271105,
0.23042467645802212,
0.19621565430828108,
0.17047986257105707,
0.15227623403509993,
0.14043134952838843,
0.13371503134392082,
0.13096168599217695,
0.13114467161851084,
0.1334160890537221,
0.1371226791318088,
0.14180539385879293,
0.1471872198281009,
0.15315128368457426,
0.15970927293155474,
0.16695913934581436,
0.17503200424345178,
0.1840329842740328,
0.19398935255655697
],
[
0.31376393390370894,
0.33154633648967324,
0.3544392574519057,
0.382302653252242,
0.4147703388852789,
0.4513003945258969,
0.49122216153874243,
0.533775375291016,
0.5781407903774322,
0.623461853316157,
0.6688569099852056,
0.7134216712628197,
0.7562221871270081,
0.7962796724148695,
0.8325503100999585,
0.8639047401631277,
0.8891118327771916,
0.9068316055834309,
0.9156371019015774,
0.9141124725687912,
0.9010330655583143,
0.8756047452700874,
0.8377289592220869,
0.7881880056555143,
0.7286858063400893,
0.6617414387488322,
0.5904145408038323,
0.5179295582128557,
0.44732898267314086,
0.38123651358010363,
0.32172444363213815,
0.27023779464730135,
0.2275444867304363,
0.19373108128181338,
0.16828850333892492,
0.15028442926746105,
0.13856118430882963,
0.13190363494394497,
0.1291582575838361,
0.12930763558426128,
0.13151117222751124,
0.13512208678417648,
0.13968807327189403,
0.1449401495505751,
0.1507716667632681,
0.15720732513593944,
0.16436070487932414,
0.17237942735396145,
0.18138201872833742,
0.19140106409705948
],
[
0.3182465746478681,
0.33609308138040345,
0.3590216520696984,
0.3869165137510895,
0.4194316556800981,
0.45603470391634715,
0.49605236897503446,
0.5387114571922247,
0.5831729423308296,
0.6285574308997627,
0.6739609104737307,
0.7184602043689667,
0.7611080594054395,
0.800918728243579,
0.8368466420182767,
0.8677627616514465,
0.8924344769722302,
0.9095166338738683,
0.9175745074304258,
0.9151880995637067,
0.9011387890885533,
0.8746526241106256,
0.8356734370333231,
0.7850555738612648,
0.7246013807606129,
0.6569341144311899,
0.5851888920330918,
0.5126143896427946,
0.4422244341703397,
0.3765725336580601,
0.3176361382154809,
0.26676029996292994,
0.22462912235323645,
0.19127857289616407,
0.1661843937389474,
0.14842217889593834,
0.13685101511240622,
0.13027293532068274,
0.12754886449917585,
0.12767274936155126,
0.1298129858307483,
0.13333046236144253,
0.1377803273672355,
0.14290192424640757,
0.14859880691726624,
0.154908522035619,
0.16196022895798146,
0.16991837796293718,
0.1789155412692836,
0.18898994944789987
],
[
0.32295850561229617,
0.3408555815973452,
0.36380297458333366,
0.39170913346818276,
0.4242482389554033,
0.4608974991136846,
0.5009808336612775,
0.5437117173516232,
0.5882307941654293,
0.6336352767433522,
0.6789983973293907,
0.7233780399068739,
0.7658141238152899,
0.8053150338364605,
0.8408350935773974,
0.8712475858629483,
0.895320522678571,
0.9117056086648542,
0.9189629719091046,
0.9156712358910606,
0.900620288946757,
0.8730586873159231,
0.8329726957331358,
0.7812863779279137,
0.7199001814979038,
0.6515448041729163,
0.5794342833036905,
0.5068409597422769,
0.43674472994760055,
0.3716214363689597,
0.3133471466902963,
0.2631631236295972,
0.22166800275805615,
0.18884566522065838,
0.16415476165583004,
0.14667775994675303,
0.13529105453579487,
0.12881553415050012,
0.12612867012907902,
0.1262377676111977,
0.12832185250753314,
0.13175066714616734,
0.13608753317028988,
0.14108040330390614,
0.1466429564146235,
0.15282529332440375,
0.15977191144224823,
0.1676642355455616,
0.17664945479542077,
0.18677179538237004
],
[
0.3278865686184566,
0.34582072872750313,
0.3687705269877485,
0.3966686006327138,
0.4292092063447062,
0.46587896376610693,
0.5059986689283547,
0.5487679740885961,
0.5933066340752804,
0.6386879443151896,
0.683962020581714,
0.7281677845787006,
0.7703328413183711,
0.8094608843353178,
0.8445079420406854,
0.8743518757489825,
0.8977636619341499,
0.913393901012606,
0.9198001606045925,
0.9155623091627763,
0.8994810275082497,
0.8708298426359349,
0.8296372897671129,
0.7768939425889316,
0.7145977212015222,
0.6455900837639849,
0.5731671240773762,
0.5006238650280762,
0.4309009823789594,
0.3663896560791943,
0.3088588381314333,
0.2594429480674399,
0.21865399890560527,
0.18642266322882012,
0.16218883789797167,
0.14504072067498225,
0.1338721832650258,
0.12752425273572715,
0.12489274535155331,
0.12500014510625956,
0.12703766424939877,
0.1303850586492828,
0.13461453961582265,
0.1394829425418171,
0.1449139422747957,
0.150969775241882,
0.1578098198122153,
0.16563238100151845,
0.17459972072228241,
0.18476241684060357
],
[
0.3330186735874674,
0.3509764878797317,
0.3739125595990739,
0.40178372965271747,
0.4343041378902789,
0.47096947685016977,
0.5110969292149065,
0.5538717536073411,
0.5983922528804383,
0.6437073154856049,
0.6888436104592436,
0.7328210904423754,
0.7746555828851692,
0.813347342182167,
0.8478560844200955,
0.8770667723540264,
0.899755969052318,
0.9145754723893889,
0.9200827571409229,
0.9148612766306707,
0.8977245525113211,
0.8679732837364558,
0.8256780059281904,
0.771892411539165,
0.7087109250704348,
0.6390889433033989,
0.566407182822681,
0.49398177147881334,
0.4247087772638788,
0.36088820832905916,
0.3041770141505488,
0.255600522946191,
0.21558352308701417,
0.18400277112459873,
0.16027803670050395,
0.14350208863696728,
0.1325861522734177,
0.12639230393956913,
0.12383619804470619,
0.1239571195703894,
0.12595991769832515,
0.12923547815939318,
0.13336560679383253,
0.13811628503965823,
0.14342101187162543,
0.14935362206561187,
0.15608768678679996,
0.16383799657744907,
0.17278215931878443,
0.1829774490403413
],
[
0.33834389098494944,
0.3563120053774757,
0.3792183965387166,
0.4070441961089375,
0.4395232026100815,
0.4761597121498423,
0.5162666698498033,
0.5590143056531948,
0.6034789181022953,
0.6486845398593891,
0.6936340904358322,
0.7373285497414783,
0.7787725124937401,
0.8169641117732622,
0.8508689038210369,
0.8793817568234672,
0.9012877959605683,
0.9152427266965761,
0.9198062899682846,
0.9135674870795946,
0.8953543861838998,
0.8644964583517829,
0.8211059945481339,
0.7662968192953957,
0.702258550181965,
0.6320632827622503,
0.5591780369550814,
0.48693774966373027,
0.4181883778874721,
0.35513277506448027,
0.2993119091431423,
0.25164063076452375,
0.2124565079476603,
0.18158211857686157,
0.15841604165972661,
0.14205450078954818,
0.13142572736804714,
0.12541342503908348,
0.12295427774514178,
0.1231057793966121,
0.12508774027015412,
0.12830323184767511,
0.13234433836144927,
0.13698644108496938,
0.14217265914918548,
0.1479877858709991,
0.15461866523757362,
0.16229582003139392,
0.1712122046810517,
0.18143209394312132
],
[
0.3438524971295909,
0.3618176705509017,
0.38467851652654284,
0.4124406303513281,
0.4448572498516919,
0.4814407098283333,
0.5214989858626564,
0.5641866046333406,
0.6085573398849122,
0.653609972726434,
0.6983233964041307,
0.7416796042590127,
0.7826724940137382,
0.8202994492146138,
0.8535341866337998,
0.8812845869643227,
0.9023477503212356,
0.9153864401998871,
0.9189649938270438,
0.9116795226843515,
0.8923738112510298,
0.8604069607295053,
0.8159329448485944,
0.7601234598505573,
0.6952617202401313,
0.6245384869487329,
0.5515075371562138,
0.47951956501043896,
0.41136483874401114,
0.3491436744175969,
0.2942780712674154,
0.24757194111455483,
0.2092762843477471,
0.1791596942890733,
0.15659880757339378,
0.14069226236340593,
0.13038477891186206,
0.12458197188542236,
0.12224245491706437,
0.12244311579168238,
0.12441990730717817,
0.1275890666555114,
0.13155360957867107,
0.1360985608658763,
0.14117643539853697,
0.14688226635748747,
0.15341503696547687,
0.16101984619885246,
0.1699046074076973,
0.1801408144302984
],
[
0.3495359745346933,
0.3674851338746641,
0.390284591269603,
0.41796467118296576,
0.4502978654976605,
0.4868039189880732,
0.5267850283189235,
0.5693793350552284,
0.6136176283543534,
0.6584731119380867,
0.7029004027371655,
0.7458624700213249,
0.7863430223052689,
0.8233401059432193,
0.8558380844017935,
0.8827612823768322,
0.9029226822323558,
0.9149957072540239,
0.9175516904222871,
0.9091950464644991,
0.8887857451381378,
0.8557125881304036,
0.8101713717942665,
0.7533903709524106,
0.6877445743605195,
0.6165440460521386,
0.5434282400993534,
0.47175988371017585,
0.4042680024819725,
0.3429457025536309,
0.2890941226033674,
0.24340675894664288,
0.20604936729330647,
0.17673719797639093,
0.1548244888438849,
0.13941134239772973,
0.1294583211805415,
0.12389297629696444,
0.12169647548704704,
0.12196605974270641,
0.12395485110426152,
0.12709314278841416,
0.1309954942353656,
0.13545680495267864,
0.14043875107690174,
0.1460458361806692,
0.15248787438345224,
0.1600229685986465,
0.16887307719355654,
0.1791169691328383
],
[
0.3553869685643936,
0.37330728272662705,
0.39602948285414197,
0.42360898061228824,
0.455837392996548,
0.4922412102458474,
0.5321159969142234,
0.5745828604590755,
0.6186492423650554,
0.6632625343184796,
0.707352856188116,
0.7498640782569406,
0.7897701787739005,
0.8260713044218259,
0.8577651134396805,
0.8837961406351615,
0.9029976773977086,
0.9140578862386033,
0.9155576784082837,
0.9061106738594535,
0.8845927295348686,
0.8504215917221807,
0.8038350813926318,
0.7461179621357001,
0.6797350216519444,
0.6081141666660377,
0.5349777502395486,
0.46369634808073235,
0.39693235006268857,
0.3365678334539594,
0.283782396584637,
0.23916067240273287,
0.20278515938779607,
0.1743188217786013,
0.15309330517763248,
0.13820931449481377,
0.1286425069404526,
0.12334216978866902,
0.1213123922754119,
0.12167150492362311,
0.12369066318197891,
0.12681500511196864,
0.13067119438761915,
0.13506421889392822,
0.13996467789576061,
0.145485752285482,
0.1518466593740332,
0.1593165537410089,
0.1681298566152618,
0.17837238118715482
],
[
0.361399200858887,
0.37927817508640316,
0.4019072006263803,
0.42936721997823946,
0.4614689188471268,
0.49774485725502515,
0.5374831076881111,
0.5797871753555894,
0.6236409300317877,
0.6679658326512663,
0.7116673189219469,
0.7536700338198821,
0.7929386119964754,
0.8284767446633632,
0.8592981873973504,
0.8843717793741954,
0.9025560650941731,
0.9125585506433604,
0.9129726294565603,
0.9024218641849608,
0.8797969790040245,
0.844543057795011,
0.7969398537616937,
0.7383298170490257,
0.6712655632376315,
0.5992882848053591,
0.5261988971733842,
0.45537146975818993,
0.3893966721232568,
0.33004276268240296,
0.27836845204381977,
0.2348521070944296,
0.1994955820662876,
0.17191097239067665,
0.15140735537613553,
0.13708525171251917,
0.1279345835581986,
0.1229259775885998,
0.12108657570672188,
0.1215563182250678,
0.12362509157213886,
0.12675355604635358,
0.13058097721788176,
0.13492261918701348,
0.13975776294886877,
0.1452074699472154,
0.15149887341104423,
0.15890994292919364,
0.16768521633056066,
0.17791683712132833
],
[
0.36756733923278206,
0.3853929305465739,
0.4079128170911621,
0.43523398695246757,
0.4671862216131764,
0.5033074858217252,
0.5428775347645137,
0.584981840058415,
0.6285806620090217,
0.6725695548486695,
0.7158291224556923,
0.757264592781327,
0.7958315448272341,
0.8305386418745049,
0.86041868128415,
0.8844692069113754,
0.9015794510977277,
0.910481456310523,
0.9097844922994094,
0.8981228117789775,
0.8744004080768142,
0.8380872907859096,
0.78950432643736,
0.7300536992048943,
0.6623740616275369,
0.59011135117784,
0.5171396640129303,
0.44683228627298793,
0.3817035299253999,
0.3234062837827846,
0.2728804663108547,
0.230501796093941,
0.19619464623112498,
0.1695219456915335,
0.14977039008678666,
0.13603958465594418,
0.12733281735705215,
0.12264148744726838,
0.12101570671253459,
0.12161733999048563,
0.12375553511631227,
0.12690703265112147,
0.13072412339276157,
0.1350324982420349,
0.13981986838861354,
0.14521438251424618,
0.15144958898066957,
0.15880988634667664,
0.16754686074147163,
0.17775752384899757
],
[
0.37388682311119553,
0.39164757707482056,
0.4140423413680693,
0.44120471202556044,
0.47298368283101844,
0.5089219888264467,
0.548290325045442,
0.5901558987674601,
0.6334555591793811,
0.6770591476128609,
0.7198223348808919,
0.7606306615040708,
0.7984308104652165,
0.8322377977842514,
0.8611065289582542,
0.8840679275269898,
0.9000477870445726,
0.9078085398450935,
0.905979411968458,
0.8932063152606822,
0.8684045540037646,
0.8310660019587959,
0.7815508657972972,
0.7213227492675186,
0.6531041777481446,
0.5806337261694323,
0.5078527792946128,
0.43812972769514047,
0.37389847798083,
0.316696491605345,
0.2673485149181817,
0.22613217831977594,
0.19289797570012285,
0.1671615663093226,
0.1481875544472568,
0.13507393180832467,
0.1268363930847911,
0.12248639804603206,
0.12109675506272416,
0.12185137627369463,
0.124079036849997,
0.12727299046549623,
0.13109889096304989,
0.13539295555034553,
0.14015105039955772,
0.14550761407309426,
0.15170111258967106,
0.15901995033362648,
0.16771923186673154,
0.17789844941234279
],
[
0.38035364309866115,
0.3980388510521825,
0.42029254771869917,
0.44727551210448735,
0.4788561573176029,
0.5145814046256365,
0.553712284851839,
0.5952977818715474,
0.6382518172699921,
0.6814189077346857,
0.7236297444184292,
0.7637498201411304,
0.8007169210683454,
0.8335537109229831,
0.8613403600290004,
0.8831460886119524,
0.897939488884977,
0.9045199686179921,
0.9015416790422519,
0.8876636151980832,
0.8618103338792173,
0.8234920899685992,
0.7731057563845005,
0.7121761479137736,
0.643505038660614,
0.5709105243563182,
0.49839489411595145,
0.4293176459223581,
0.3660290285688358,
0.30995281617412124,
0.2618037526102671,
0.22176674224772758,
0.18962229892878407,
0.16484080525994432,
0.14666511156835033,
0.13419091097482444,
0.12644529529678816,
0.12245895189399797,
0.12132694649708053,
0.12225518550768216,
0.12459227846028254,
0.12784829632820738,
0.1317024981282654,
0.1360016610077937,
0.14074948942229676,
0.1460858916753502,
0.15225274440508801,
0.1595400291411151,
0.16820272567039224,
0.17833997633506427
],
[
0.3869640730758506,
0.4045639472496205,
0.4266607555915779,
0.45344299779181285,
0.4847987994127536,
0.5202787560383562,
0.5591338377305458,
0.6003951942648702,
0.642954631941356,
0.6856319451278325,
0.7272328630782766,
0.766602374037149,
0.8026691733223671,
0.8344647336732229,
0.8610976878895076,
0.8816806768748586,
0.8952316193126824,
0.9005942706037757,
0.8964537337279515,
0.8814842114930381,
0.8546176218660824,
0.8153789002145626,
0.7641979756413927,
0.7026574006179901,
0.6336297998046079,
0.561000303336897,
0.48882528734664366,
0.42045147005373296,
0.358143352357811,
0.3032149041842153,
0.2562775192934282,
0.21742933661950709,
0.18638492653115474,
0.16257138939052718,
0.1452101576932141,
0.13339394040125652,
0.12616017821923503,
0.1225578575019795,
0.12170372200034679,
0.12282546190835653,
0.1252915775820731,
0.12862913187516345,
0.1325311271251527,
0.13685485429539035,
0.14161147965147375,
0.14694551647902498,
0.15310071212386894,
0.16036618130746716,
0.1689933034945873,
0.17907866628363672
],
[
0.39371435344889877,
0.4112202146560263,
0.433144556517979,
0.4597040297848931,
0.4908068406132841,
0.5260068465363917,
0.5645448531893187,
0.6054349925841468,
0.6475481290790173,
0.6896801627394946,
0.730611954935336,
0.7691674368774958,
0.804265795599479,
0.8349482852911034,
0.8603551686583712,
0.8796477759642336,
0.8919001603713321,
0.8960085811577305,
0.8906962602751558,
0.8746556966308036,
0.8468246938620637,
0.8067390471158337,
0.7548568632803311,
0.6928110416976391,
0.6235331790872987,
0.5509630818910018,
0.47920406925510706,
0.41158646750293837,
0.35028873125006915,
0.29652138298316966,
0.2508004046879789,
0.21314347454216104,
0.18320323389518905,
0.16036541669211685,
0.14383033957507835,
0.13268703766207968,
0.1259822302619909,
0.12278220536669765,
0.12222469239696632,
0.12355881775309774,
0.12617288936581877,
0.1296110087542618,
0.13357995020286295,
0.13794738162492254,
0.14273148030062655,
0.1480804399285438,
0.15423829915273152,
0.16149089643688314,
0.17008305823744158,
0.18010752767559013
],
[
0.4006003250838419,
0.4180047935716634,
0.43974148203099483,
0.4660554186235728,
0.4968753129067614,
0.5317580100559717,
0.5699344472073407,
0.6104030557359376,
0.6520153063192264,
0.6935442595598518,
0.7337460942686939,
0.7714230495990624,
0.8054841407859474,
0.8349811290104592,
0.8590889555577207,
0.8770229446781834,
0.8879204382747781,
0.8907390481027189,
0.8842484158977133,
0.8671636638530091,
0.8384276429255475,
0.7975830480095325,
0.7451095914893764,
0.682679371172669,
0.6132683492317967,
0.5408577504115699,
0.46958987864049795,
0.40277561478504303,
0.3425098119667266,
0.2899085632435805,
0.24540131566814138,
0.20893166139526564,
0.1800941693270931,
0.15823499145619224,
0.14253358406438071,
0.13207462377516077,
0.12591303881544624,
0.1231313819153862,
0.12288759116326109,
0.1244517663988815,
0.1272318133440652,
0.1307887958698593,
0.13484317726237038,
0.13927276838223812,
0.1441022250768222,
0.14948243581672555,
0.15565613726777827,
0.16290364119149925,
0.17146100738499392,
0.18141653461932683
],
[
0.4076170154060961,
0.4249141894134958,
0.4464486055790149,
0.4724935607249304,
0.5029987109490739,
0.5375238113073286,
0.5752907572920869,
0.615284154925368,
0.6563379931559926,
0.6972037639839539,
0.7366132595354583,
0.773346339097892,
0.8063009276005348,
0.8345397172515983,
0.8572751632687334,
0.8737818084431938,
0.8832677667019188,
0.8847614286554856,
0.8770882428045756,
0.8589917655836438,
0.829419901953272,
0.7879180577183249,
0.7349789533171254,
0.6722995148933819,
0.6028835550615202,
0.5307389651749651,
0.460037082951092,
0.39406712368853736,
0.334846753776806,
0.2834091593062813,
0.24010659898255982,
0.20481477950727695,
0.17707380832636654,
0.1561918925973927,
0.14132784903589446,
0.13156133918584184,
0.125954460306282,
0.1236049850752437,
0.12369022799091062,
0.1255007075665731,
0.12846360618344638,
0.13215675824565382,
0.136314123421989,
0.14082332365697592,
0.14571488101181657,
0.15114134682656122,
0.1573426020488538,
0.1645914727912695,
0.1731137833891579,
0.1829932234182976
],
[
0.41475818161101285,
0.43194377981864257,
0.4532620701988852,
0.47901400226993296,
0.5091705852075729,
0.5432946952406553,
0.5806006979540179,
0.6200618315729125,
0.6604968381337156,
0.700637105616758,
0.7391904698516307,
0.7749137207618835,
0.8066925316541183,
0.8336006031011738,
0.8548904330414402,
0.8699008106259727,
0.8779182791498086,
0.8780518919212394,
0.8691933110353331,
0.8501220047529013,
0.8197920159819221,
0.7777469384234802,
0.7244816551746639,
0.6617009053231999,
0.5924187168491629,
0.5206535997678463,
0.4505924946546096,
0.3855017494084364,
0.32733341926528703,
0.27705112615351696,
0.23493927722598845,
0.20081156284738588,
0.17415697350349507,
0.15424728714914904,
0.14022090358681233,
0.13115187727041133,
0.1261084997200505,
0.12420274456777608,
0.12463044521221694,
0.12670191604457187,
0.12986320047049454,
0.13370860643992366,
0.1379852936660892,
0.1425902706833302,
0.14755924424625583,
0.15304537826855075,
0.15928424777126893,
0.16653961169377945,
0.17502622463194872,
0.18482325793265997
],
[
0.422015821440368,
0.43908725502055196,
0.46017653263407576,
0.48561092104578746,
0.5153830577429314,
0.5490595885623601,
0.5858497070327092,
0.6247182938416274,
0.6644713323654245,
0.7038217340307973,
0.7414539712982289,
0.7761011489816997,
0.8066353261823201,
0.8321409111374591,
0.851912571675596,
0.8653580293800909,
0.8718498767267326,
0.8705880181941368,
0.860541632871863,
0.8405353403703358,
0.8095317919114253,
0.7670678197244332,
0.7136272046835258,
0.650903331912459,
0.5819023117194281,
0.5106368051897432,
0.4412916376789458,
0.3771101568518841,
0.3199958117289403,
0.27085672297872343,
0.22991845552866508,
0.1969381923843715,
0.1713569371294537,
0.15241149891916322,
0.13922014389751097,
0.1308508398531164,
0.12637720294500332,
0.12492444940892333,
0.12570607873909884,
0.12805153458193635,
0.13142522927636818,
0.13543755491381737,
0.13984848094072444,
0.1445638960393384,
0.14962395895921848,
0.15518141231900034,
0.16146623557563378,
0.16873194357551136,
0.1771818788610504,
0.18689092922573808
],
[
0.42937966985981835,
0.4463359992135212,
0.4671845141178482,
0.4922765147951518,
0.5216262537090703,
0.5548054645720453,
0.5910214993413657,
0.6292343446419267,
0.668239878592581,
0.7067342926537169,
0.7433794808615146,
0.7768844202035482,
0.806106071822754,
0.8301388582398576,
0.8483212359924328,
0.860134026739297,
0.8650432457262993,
0.8623499659393374,
0.8511128735574293,
0.8302126809070024,
0.7986249283242188,
0.7558742302254136,
0.7024174524376892,
0.6399157441323942,
0.5713490027083242,
0.500707929220278,
0.43215486051014773,
0.3689108305575347,
0.3128509918745875,
0.26484190865464624,
0.22505894894550044,
0.19320803700423883,
0.16868521933450176,
0.15069383960156796,
0.1383324493025928,
0.13066261794032996,
0.12676256437731448,
0.1257698844461183,
0.12691492469679583,
0.1295455713707903,
0.13314405590241513,
0.13733638737511034,
0.14189487362434033,
0.14673371009929015,
0.151896746169898,
0.1575353208968046,
0.163872728562988,
0.17115144903539264,
0.17956342969986144,
0.18917958520006767
],
[
0.4368367098511651,
0.4536784359764594,
0.4742756501827099,
0.4990002829744013,
0.5278876487981624,
0.5605168969703819,
0.5960978509822652,
0.6335893553896528,
0.6717799138501743,
0.709350854417184,
0.744942495897795,
0.7772395338905251,
0.805082355262519,
0.8275743152285612,
0.8440986396170094,
0.8542127072974113,
0.857482907751855,
0.8533217550435346,
0.840889848166861,
0.81913632719288,
0.7870561966860697,
0.7441558100549983,
0.6908468079323734,
0.6287359678640517,
0.5607586216691789,
0.4908678468814703,
0.4231848407365879,
0.36090913576582756,
0.30590667906117053,
0.25901614983944465,
0.2203711656809808,
0.18963155614521499,
0.16615148972758625,
0.1491025063964228,
0.1375640810408873,
0.13059129949461268,
0.12726645128374564,
0.12673877710749487,
0.12825471247045156,
0.1311799021781616,
0.13501380794155043,
0.1393975269089734,
0.14411516821659348,
0.1490886115963806,
0.15436463102081127,
0.16009226168461105,
0.16648724209493587,
0.17378056689595844,
0.18215305568389956,
0.19167199494553966
],
[
0.44437073561905216,
0.4610993868443046,
0.48143584519300986,
0.5057681870745879,
0.5341513567323413,
0.5661756489726903,
0.6010584438117418,
0.6377612997932023,
0.6750680912252526,
0.7116472224626382,
0.7461186760919631,
0.7771431179904705,
0.8035430780328578,
0.8244294015322557,
0.8392302614561676,
0.847582158860909,
0.8491582583131077,
0.8434925895365851,
0.8298602232243351,
0.8072919095769185,
0.7748111885901826,
0.7318995321116144,
0.6789030982936125,
0.6173514020419647,
0.550116902865859,
0.4811002107098271,
0.4143677617268849,
0.35309792739156803,
0.29916164490330055,
0.2533826795322391,
0.2158612604453784,
0.18621636931792823,
0.16376357404966446,
0.14764454657383913,
0.1369206239410622,
0.13064060465738087,
0.12789054547908812,
0.12783075490066031,
0.12972308444629121,
0.13295027689184635,
0.13702841460693588,
0.14161310865702093,
0.1464996833034075,
0.1516170500334787,
0.15701415969828458,
0.16283694778281044,
0.16929294626563635,
0.1766014984082077,
0.1849327302419025,
0.1943506546258309
],
[
0.4519620131536926,
0.4685795260323279,
0.48864639436077056,
0.5125616733515058,
0.5403974439149756,
0.5717603661101784,
0.6058808022788568,
0.641726859921675,
0.6780805221333454,
0.713599293509719,
0.7468843016430864,
0.7765729271050049,
0.8014689989956801,
0.8206891053826707,
0.8337055332650151,
0.840235443039271,
0.8400645448501947,
0.8328581243511943,
0.8180182316175195,
0.794670763513357,
0.7618784591630541,
0.719091278970041,
0.666568987210238,
0.6057406266449785,
0.5393978101267913,
0.4713756101462032,
0.40567726935186155,
0.34545958224490947,
0.29260686608785297,
0.24793919099545308,
0.2115315483224623,
0.18296748558643688,
0.16152756091624576,
0.14632588568555632,
0.13640696907932265,
0.13081384744820196,
0.12863630198010123,
0.12904531360235144,
0.13131758233449037,
0.1348523300021871,
0.13918164617857542,
0.1439750528946228,
0.14903847129584957,
0.15430718085660539,
0.1598315997889878,
0.16575388620389098,
0.17227292201214905,
0.1795964594985946,
0.18788447011244963,
0.19719804181974349
],
[
0.4595870816031441,
0.47609503840424566,
0.4958832966974578,
0.5193566338966912,
0.5466014661932909,
0.5772464512772616,
0.6105403514041466,
0.6454616124833149,
0.6807930753265166,
0.715183473269178,
0.7472168032299594,
0.775508423178195,
0.7988433369148016,
0.8163419180204797,
0.827518478042187,
0.8321713016366623,
0.8302037374141066,
0.8214215845795407,
0.8053661374658114,
0.7812720344356567,
0.7482515046948274,
0.7057175914808423,
0.6538238406350185,
0.5938757382512466,
0.5285668760062772,
0.4616561649851638,
0.39707889824077575,
0.3379689182893104,
0.2862272755980951,
0.24267890161729183,
0.20738114629806176,
0.17988767427957497,
0.15944799733649667,
0.1451514125473385,
0.13602733335433187,
0.13111392169187003,
0.129504923483304,
0.13038179554772744,
0.13303563962061776,
0.13688159435641778,
0.1414671543931218,
0.1464751365535138,
0.15172142502019642,
0.1571470095799778,
0.16280312024668409,
0.16882758373299084,
0.17541037439393625,
0.182747887621318,
0.19099053885489453,
0.2001968247590138
],
[
0.46721872627801275,
0.4836175716482618,
0.5031171344878085,
0.5261231466958013,
0.5527344691278443,
0.5826061827908064,
0.615010613666288,
0.6489402969547327,
0.6831817233400346,
0.7163771234285596,
0.747095342079253,
0.7739314481883585,
0.7956524424333127,
0.8113804563159036,
0.8206682632194566,
0.8233947455057783,
0.8195852549113286,
0.809194678681776,
0.7919152895834372,
0.7671035765819312,
0.7339300938309936,
0.6917674737110034,
0.640645927789817,
0.581725184878582,
0.517584972372686,
0.4518998301922339,
0.3885341859898924,
0.3305964316452348,
0.2800038836197699,
0.23759188471267828,
0.20340679058461708,
0.17697794802338906,
0.1575281560998837,
0.1441251109653814,
0.1357853100973811,
0.13154330782009782,
0.1304973488165297,
0.1318393769781444,
0.1348745794161863,
0.13903351739541792,
0.14387851264124546,
0.1491050615080613,
0.15453837687854594,
0.1601245222747944,
0.16591494907908955,
0.17204272081393535,
0.17868880734901554,
0.18603860912661513,
0.19423361136731804,
0.2033300322930625
],
[
0.47482613221334297,
0.49111450615456365,
0.5103136412856579,
0.5328264840752237,
0.5587635199285497,
0.5878090884704466,
0.6192635457640965,
0.6521371599593783,
0.6852229225449379,
0.7171590110265456,
0.746501389846437,
0.7718269818252772,
0.7918865461721105,
0.8058020171475347,
0.8131596259776044,
0.8139174965617244,
0.8082265236714943,
0.7961982946836296,
0.7776868328132434,
0.7521824073611721,
0.7189213111001207,
0.6772342709715029,
0.627014876605849,
0.5692569004044242,
0.5064121621421163,
0.44206437156664846,
0.38000439255518137,
0.32331146927920185,
0.27391603759976485,
0.23266654986381446,
0.19960376543204617,
0.17423812167431402,
0.15577035378611237,
0.14325022569979878,
0.1356839433936864,
0.13210409632362097,
0.13161425296441154,
0.13341706305439793,
0.1368316167726083,
0.14130347901252177,
0.14640925492699558,
0.15185651825649982,
0.15747918893997404,
0.16322780091354616,
0.16915350832618564,
0.1753842953773599,
0.1820921643670722,
0.1894519724225524,
0.19759690465551755,
0.20658118979671675
],
[
0.48237520322507765,
0.4985494846859691,
0.5174346473790759,
0.5394283415955581,
0.5646525867631296,
0.5928225333957315,
0.6232699983322902,
0.6550263635420901,
0.6868940106873277,
0.7175097279607812,
0.7454192283683735,
0.7691838736255254,
0.7875405072603866,
0.7996089655465907,
0.8050031284137451,
0.8037582610319904,
0.7961533582912032,
0.7824630035171433,
0.7627122629113381,
0.7365354259211476,
0.7032408324701642,
0.6621177262306258,
0.6129143450949474,
0.5564416081144995,
0.4950114856141023,
0.4321110325130514,
0.3714538254360977,
0.3160851353929017,
0.26794363013456624,
0.2278911529129985,
0.19596687397757728,
0.17166740646996542,
0.15417629541806444,
0.14252944853059796,
0.13572581782805532,
0.13279802304032096,
0.13285605588913174,
0.1351136888991728,
0.13890386438969782,
0.14368681015625728,
0.1490529126709914,
0.15472124395475123,
0.16053383291614454,
0.16644512295324498,
0.17250552693216137,
0.1788377391876227,
0.18560493934590577,
0.19297195162164138,
0.20106427949801386,
0.20993442566058507
],
[
0.48982901384746663,
0.5058831015831613,
0.5244390857335179,
0.5458879396171555,
0.5703635296773887,
0.5976124455302748,
0.6270002680972193,
0.6575824400870558,
0.6881736064736866,
0.717412054870096,
0.7438362901409019,
0.765995220735277,
0.782614149911338,
0.7928088517219793,
0.7962152137665649,
0.7929428223695445,
0.7834001633977632,
0.7680293997566093,
0.7470339442397157,
0.7202003858656698,
0.6869145484068823,
0.6464263145171457,
0.5983349077460786,
0.54325623728524,
0.4833526376679518,
0.42200788869086897,
0.362852758558047,
0.3088928311804361,
0.26206911391633136,
0.22325522965531658,
0.1924913831546627,
0.16926499779679166,
0.15274742080013826,
0.14196510962435815,
0.1359131549448389,
0.13362651118563434,
0.13422293717368794,
0.13692792490309402,
0.14108834058948483,
0.1461788113279871,
0.15180304859114446,
0.15769107407813798,
0.16369245949470757,
0.1697650452357798,
0.17595813278999634,
0.1823890095605421,
0.18921226158836024,
0.19658322483072427,
0.20462031711569117,
0.21337455247702275
],
[
0.49714835511018807,
0.5130736598318782,
0.5312839378883483,
0.5521630088910532,
0.5758570683435342,
0.6021441018556293,
0.6304247058450707,
0.6597807743398015,
0.6890419990559201,
0.716851259219268,
0.741743315672803,
0.7622582187692974,
0.7771119182111708,
0.7854142285781842,
0.7868180617952032,
0.7815039544814152,
0.7700099579865167,
0.7529482915392016,
0.7307055930445513,
0.7032269741430074,
0.6699804217791143,
0.6301798869501272,
0.5832771819752354,
0.5296874551814059,
0.4714155085088218,
0.41173284458359427,
0.3541799090260377,
0.3017163710483207,
0.25627922711651274,
0.2187508663370839,
0.18917388118693262,
0.16703061710617928,
0.1514852283550981,
0.1415593597219576,
0.13624790784886953,
0.1345907150729544,
0.13571485350881302,
0.13885828451264165,
0.14338197843508704,
0.14877477019451346,
0.1546532870596939,
0.16075798727983182,
0.16694545693589274,
0.1731764727951985,
0.17949892564251957,
0.18602465934258589,
0.19289995853835024,
0.2002712307619382,
0.20825037447474615,
0.2168871265586214
],
[
0.504292338863131,
0.5200779373584408,
0.5379251016516481,
0.5582106805618241,
0.5810936803375326,
0.6063829162710426,
0.6335143447203226,
0.6615980932398774,
0.6894815197837805,
0.7158153356791508,
0.7391343807324231,
0.757973800422286,
0.771042316785058,
0.7774422551854775,
0.7768392730572332,
0.769481168308268,
0.7560342226158211,
0.7372807237757885,
0.7137926505717822,
0.6856778150653366,
0.6524903647547675,
0.6134125498308254,
0.5677552358579615,
0.5157353485704679,
0.4591935021490433,
0.4012761717482026,
0.3454244135813305,
0.2945456340590961,
0.25056636523462444,
0.21437374042654467,
0.18601299595453935,
0.1649649731607501,
0.1503915546421693,
0.1413143299331816,
0.13673184605178373,
0.13569156082277467,
0.13733155621845883,
0.14090313280878036,
0.14578163494637514,
0.15146997763746517,
0.15759734050436114,
0.163914143274708,
0.17028349918059205,
0.17666871351512792,
0.18311603272985733,
0.1897318879419282,
0.19665459948936348,
0.20402220691081097,
0.2119406214224152,
0.22045848899839576
],
[
0.5112190349778778,
0.5268519355430994,
0.5443181910719292,
0.5639882994531464,
0.5860344231466149,
0.610295193005589,
0.6362415191693388,
0.6630129462811339,
0.6894768924973623,
0.714295209265803,
0.7360068830194831,
0.7531463469032997,
0.764417456172156,
0.7689142220754488,
0.7663114362819321,
0.7569203156475388,
0.7415325663416168,
0.7210977944542465,
0.6963724338892361,
0.6676291975315322,
0.6345118343890116,
0.5961755223253927,
0.5518003274602359,
0.5014172578775065,
0.44669640972974134,
0.390642434137695,
0.33658723225548726,
0.28737971623190467,
0.24492955832891217,
0.21012388411958782,
0.18300993401822874,
0.16307011435103652,
0.14946879146397773,
0.14123225802263506,
0.13736662383026432,
0.13692977998845496,
0.13907260635381025,
0.14306069437039487,
0.14828409949024152,
0.15425974168778783,
0.1606290315870486,
0.16715191379876165,
0.17369758397743124,
0.18023151980380964,
0.1867981491402766,
0.19349857602539666,
0.2004635231475324,
0.20782321216060312,
0.21567806247139,
0.22407579109762704
],
[
0.5178861268764205,
0.5333516041193838,
0.550419285553676,
0.5694541778551948,
0.5906416858132837,
0.6138488266320272,
0.6385804521966089,
0.6640061618467311,
0.6890155605258662,
0.7122849234449652,
0.7323615610652622,
0.7477835488865733,
0.7572527580307995,
0.7598551116683172,
0.7552716445463608,
0.7438730825290646,
0.7265722068345675,
0.7044802082262045,
0.6785339425938951,
0.6491713205474653,
0.6161287841234362,
0.578539404231984,
0.5354649528704941,
0.48677146399662075,
0.43395242442010845,
0.37985161402205325,
0.327681906644521,
0.28022755680845235,
0.23937502928233473,
0.20600613978214777,
0.180168812297186,
0.16134965172165194,
0.14872002725210293,
0.14131557284201535,
0.13815382692047673,
0.13830593288414772,
0.14093738535374273,
0.14532905917956945,
0.15088610059240176,
0.15713939893700007,
0.1637423110501986,
0.17046390687640978,
0.1771790617214845,
0.18385511857757159,
0.19053456479526737,
0.19731330628185934,
0.20431485160335605,
0.21166213632579167,
0.2194505457063191,
0.2277270066446926
],
[
0.5242515807715605,
0.5395335486337666,
0.556185646061698,
0.5745683050137907,
0.5948798784934657,
0.617013940170112,
0.6405077952589053,
0.6645612675255566,
0.6880879880201854,
0.7097818278112566,
0.7282025803099396,
0.7418964244121073,
0.7495668379781892,
0.7502932693754628,
0.7437610276385989,
0.7303964103294787,
0.7112272546419212,
0.6875175048450863,
0.6603772064873428,
0.6304078751300163,
0.5974416146526991,
0.5605949667247172,
0.5188259608336544,
0.47185936570032916,
0.4210087691388611,
0.36893927048253783,
0.31873461850798007,
0.27310802341992846,
0.23391632234687715,
0.20203029120609456,
0.1774967668164968,
0.1598088411175489,
0.14814910493662103,
0.14156693180768898,
0.1390949942119694,
0.13982041942256157,
0.1429250998346518,
0.1477061856457358,
0.15358431061730926,
0.16010432316913953,
0.1669312712645712,
0.1738429847723667,
0.18071965581977956,
0.18753023089109383,
0.19431517991404657,
0.20116537242593863,
0.2081974929650915,
0.21552769883822853,
0.2232467609801742,
0.23140093322232236
],
[
0.5302743317839806,
0.5453557329955239,
0.5615764159747278,
0.5792930247529974,
0.5987160666128257,
0.6197634576305369,
0.6420031100390631,
0.6646648643221206,
0.6866879308259175,
0.7067867676852206,
0.7235376876462475,
0.7354994826820465,
0.7413815826064588,
0.7402602394347801,
0.7318243665386137,
0.7165518857761536,
0.6955777911175539,
0.67030690114826,
0.6420120770262475,
0.6114548304166751,
0.5785658803968933,
0.5424517102375933,
0.5019829060921757,
0.4567640606213067,
0.40793056873967254,
0.3579556453580991,
0.30978353012011334,
0.2660494575175952,
0.22857400337818612,
0.19821086791810738,
0.17500383548843362,
0.15845452213271904,
0.14776059441603234,
0.14198920981485286,
0.14019161309229256,
0.14147347638277774,
0.145034779693487,
0.15018990017952433,
0.1563753479794534,
0.16314993111090054,
0.1701901556399137,
0.17728227611431696,
0.18431147547008897,
0.19124808254546732,
0.1981305106814823,
0.20504477839027452,
0.21210113463330077,
0.21940943850336442,
0.22705622929578995,
0.23508718444796434
],
[
0.5359149958039962,
0.5507781930335929,
0.5665533228314764,
0.583593689600669,
0.6021205527963602,
0.6220736086147498,
0.6430492844135185,
0.6643069458797148,
0.6848126689060093,
0.7033042655747064,
0.7183784114601526,
0.7286110058131984,
0.7327224315130273,
0.7297908135617808,
0.7195098560446144,
0.702405138201148,
0.6797087289704716,
0.6529516939339574,
0.6235563891457627,
0.5924383581077205,
0.5596297027926778,
0.5242342163443342,
0.4850521042603493,
0.44158558454980523,
0.39479804922004924,
0.3469637602322394,
0.3008774338161967,
0.25908870039167997,
0.22337494457670648,
0.19456663292098442,
0.1727026247488178,
0.15729492098300862,
0.14755968369660183,
0.1425854414797217,
0.14144508908924802,
0.1432651611525339,
0.14726526934127543,
0.15277789311069323,
0.15925577676958869,
0.16627168534523412,
0.17351336416976426,
0.1807751827510446,
0.1879470217703399,
0.1950004069595193,
0.20197168670345367,
0.20894222943806823,
0.21601622894924188,
0.2232976960077327,
0.23086928502520992,
0.2387761748090078
],
[
0.5411366200739117,
0.5557637789203616,
0.5710813942936,
0.5874392937343902,
0.6050674050290321,
0.6239243618233823,
0.6436328765794772,
0.663481154619558,
0.6824631895310642,
0.6993426748277995,
0.7127402671396637,
0.721253396430423,
0.7236188532526181,
0.7189233421875832,
0.7068690836092488,
0.6880252657770529,
0.6637084454612333,
0.6355591899688647,
0.6051334457216616,
0.5734918940662844,
0.5407700300504055,
0.5060770521627056,
0.4681601451013904,
0.4264350520386867,
0.3817025768033216,
0.33603667558620437,
0.292073783120254,
0.25226963829377685,
0.2183512174512498,
0.1911197786279379,
0.17060778325350462,
0.15633933364846792,
0.14755199838709998,
0.1433587218633819,
0.1428566923198037,
0.14519532304745647,
0.14961521248783255,
0.15546771109423507,
0.16222210389029262,
0.16946509456925463,
0.17689545547215635,
0.1843153819618812,
0.19161918807561695,
0.19877944151909122,
0.2058304416861152,
0.2128491167246524,
0.219933972728107,
0.22718359063961502,
0.2346770524035185,
0.24245909853847014
],
[
0.5459054885064194,
0.5602789454891322,
0.5751296952884248,
0.5908030783400832,
0.6075349240625276,
0.6252997826989688,
0.6437443821531731,
0.6621849674652758,
0.6796443090043602,
0.6949142804493059,
0.7066429172136057,
0.713453509035339,
0.7141049477507937,
0.7077003602261291,
0.6939572880654472,
0.6734842683123087,
0.647667184457081,
0.618238165467573,
0.5868688031063463,
0.5547523814595587,
0.5221279832119963,
0.4881190611457589,
0.4514378741039007,
0.4114289995314685,
0.36874217781405494,
0.32525416616430963,
0.28343621082006004,
0.24564131921090565,
0.2135386291867845,
0.18789487327512056,
0.16873531969050654,
0.15559771410836537,
0.14774336411385558,
0.14431207361769244,
0.14442748485240248,
0.14726356423058384,
0.15208303143289037,
0.1582567464633131,
0.16527077398513446,
0.17272571149519078,
0.18033114575855785,
0.1878968246610907,
0.19532125549594137,
0.2025779185325538,
0.20969909862786928,
0.21675749664942456,
0.2238462819896861,
0.23105899248973683,
0.23847141754188478,
0.24612790378467547
],
[
0.5501920001482307,
0.5642946096019368,
0.5786720798835618,
0.5936630913924298,
0.6095060376307122,
0.6261883088335483,
0.64337841969045,
0.6604198049546577,
0.676364721117084,
0.6900353215840942,
0.7001102323375921,
0.7052428574195676,
0.7042200002255994,
0.6961695481883138,
0.6808338921066318,
0.6588563860867229,
0.6316752418432942,
0.601095921580072,
0.5688863704331392,
0.5363557575249221,
0.503843533784458,
0.4704975956370299,
0.43501493995258544,
0.3966842847243004,
0.35601705825764485,
0.3146990948322618,
0.27503165498097,
0.23925570127362245,
0.2089749538820005,
0.18491762268710366,
0.16710181531977664,
0.15508019948466478,
0.14813953015121362,
0.14544829059329306,
0.1461582343125561,
0.14946919298037725,
0.15466690225242313,
0.16114222424922187,
0.16839816260500756,
0.17604912878902645,
0.18381530521380035,
0.1915137302485191,
0.19904688438709078,
0.2063890518258853,
0.21357055066971536,
0.22066006616822625,
0.22774576302186522,
0.2349164912254892,
0.24224499703411723,
0.2497752631579559
],
[
0.5539716411490719,
0.5677870894177143,
0.581687925664606,
0.5960026706591584,
0.6109686046951106,
0.6265829359353066,
0.6425338309916199,
0.6581910592867349,
0.6726369629506023,
0.6847259145541147,
0.6931702066080244,
0.6966575870046686,
0.6940086902623724,
0.6843846739515883,
0.6675629069953141,
0.6442171706557717,
0.6158209866333589,
0.5842351033380928,
0.5513039112176348,
0.518431737992849,
0.48604974246434407,
0.45334305526558877,
0.4190149982999277,
0.3823136536348436,
0.34362546642295533,
0.3044537641808248,
0.26692721749814435,
0.2331650927659995,
0.2046979430993287,
0.18221354008454732,
0.16572359324544422,
0.1547966085009435,
0.14874587476892964,
0.1467697691991855,
0.1480493198310368,
0.15181117254238907,
0.1573647275781075,
0.16412118778385937,
0.17160056817662855,
0.17943097351234422,
0.18734295230027986,
0.19516057874867948,
0.20279010263366398,
0.21020651991215022,
0.21743823861385797,
0.22455013508095,
0.23162568075453172,
0.2387493623783159,
0.24599110407988128,
0.2533945415862494
],
[
0.5572260699525493,
0.5707391108845978,
0.5841627775446436,
0.5978108075810098,
0.6119156111410403,
0.6264813076230891,
0.6412136940341407,
0.6555080392760773,
0.6684772927763761,
0.6790098637960127,
0.6858546986012466,
0.6877381355524863,
0.683520669734373,
0.6724051766360146,
0.654212174689771,
0.6296421446015197,
0.6001888261748736,
0.5677505764931172,
0.534228248451621,
0.5010979282108545,
0.46886690237290807,
0.43677407703213433,
0.40355169581845823,
0.3684220497469234,
0.3316601142750818,
0.29459652124395247,
0.25918690614350953,
0.227419339195374,
0.2007432718103625,
0.17980664440422417,
0.1646159126326644,
0.1547559509314121,
0.14956711321154204,
0.148278339111085,
0.1501006367097844,
0.15428806902721853,
0.1601741088396645,
0.16719048392130414,
0.17487420341745852,
0.1828669005770655,
0.19090924651112912,
0.19883210085708153,
0.20654529146228,
0.21402444657164477,
0.2212961259935466,
0.2284215961690838,
0.23547992528108652,
0.2425515319475144,
0.24970371291387428,
0.25697976227765423
]
],
"zauto": true,
"zmax": 0.9200827571409229,
"zmin": -0.9200827571409229
},
{
"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": [
1e-06,
1.3011511650442548e-06,
1.692994354296022e-06,
2.2028415765056147e-06,
2.866229883678204e-06,
3.729398352432554e-06,
4.852511011181743e-06,
6.3138503555892e-06,
8.215273746089953e-06,
1.0689313005882424e-05,
1.390841207112662e-05,
1.809694657026198e-05,
2.354686311364001e-05,
3.063802837345029e-05,
3.986470631277378e-05,
5.1870009063012666e-05,
6.749072272319499e-05,
8.781563250096393e-05,
0.00011426141253772724,
0.00014867137004306603,
0.00019344392634026088,
0.0002516997901283655,
0.0003274994751669172,
0.0004261263236648159,
0.0005544547624925005,
0.0007214294601814526,
0.000938688782612345,
0.0012213760031100258,
0.0015891948094037057,
0.002067782677737912,
0.0026904978401970136,
0.0035007443993213955,
0.004554997653699184,
0.005926740503884541,
0.007711585311544345,
0.010033938212454078,
0.013055670395116691,
0.01698740074503987,
0.02210317627048227,
0.028759573555516536,
0.03742055263793628,
0.04868979566145066,
0.06335278435066323,
0.0824315491666629,
0.10725590623460621,
0.13955614735503497,
0.18158364372009145,
0.23626776957937787,
0.3074200836506151,
0.4
],
"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.19356517116870317,
0.19419762730947887,
0.19982763632882353,
0.20835439310573306,
0.21755106101910188,
0.22560432643062536,
0.23124335952676459,
0.23368049727892196,
0.23251793254608447,
0.22768198126018493,
0.21939895202653378,
0.20820761207919108,
0.19499011323671853,
0.18097967169371051,
0.16766006453437332,
0.15643372339801753,
0.14803178881203924,
0.14217604729418054,
0.1380690987739933,
0.1351298016203599,
0.13338577661805034,
0.13331383122900703,
0.135308237913101,
0.13941550852169404,
0.14533542927474055,
0.15231477552564154,
0.15921929438332633,
0.16504441390868624,
0.1693660060538372,
0.17254790666615333,
0.1757163918954405,
0.1804432148181257,
0.18807660073525387,
0.19894642203413562,
0.21224518965963587,
0.2266442924705827,
0.24084413749627728,
0.25383511996974933,
0.2649530961491583,
0.2738435660633655,
0.2804035014884814,
0.2847295153117506,
0.28707930625178907,
0.2878431495094323,
0.2875173951431409,
0.28667008088690454,
0.2858903558989368,
0.28572009784759445,
0.2865777614594104,
0.2886959509269389
],
[
0.19269354504363553,
0.19316559267452582,
0.19864731912797765,
0.2070498208226551,
0.21614546780440191,
0.22411295005613519,
0.22967060208578044,
0.23201924206921345,
0.23074982179848513,
0.22577819031081162,
0.21732141492741328,
0.2059111851768439,
0.1924270713455091,
0.17810902011776902,
0.16446373173799272,
0.1529355878606543,
0.14430652501335972,
0.13833303192755667,
0.13421219799016573,
0.13133642543940402,
0.1297170106687025,
0.12983122802635783,
0.13207816188188712,
0.13649406515695445,
0.1427498504892155,
0.1500629088670445,
0.1572867133688237,
0.1634153443440005,
0.16802679579335456,
0.17148411926652696,
0.17490510956995658,
0.1798433346736572,
0.18762329838768851,
0.1985626191846569,
0.21185894907301836,
0.22619330854280717,
0.24027394285362458,
0.25309503064738115,
0.26399260661313534,
0.2726103915125731,
0.278843724937875,
0.2827901616562316,
0.28471368268561,
0.2850191137099239,
0.28422805504645543,
0.28294511279101514,
0.28180436357181404,
0.2813932422340697,
0.2821649810539632,
0.28436539937402994
],
[
0.19242722972199372,
0.19269573241920648,
0.19794440233257862,
0.20612624107734762,
0.2150338455809176,
0.22284776358350397,
0.22827811679117965,
0.23051353954013395,
0.22913213050501868,
0.2240377219121155,
0.2154367882094945,
0.20385228241630182,
0.19015811488458037,
0.1755948186307476,
0.1616813655897605,
0.14989031034941233,
0.14104989593486122,
0.13496653412880974,
0.13084657156856866,
0.1280593367537779,
0.1265931761311568,
0.12691457618912427,
0.12942420925743114,
0.13414916826621323,
0.14072830732854283,
0.14835238617727967,
0.15587889819561399,
0.16231451806449107,
0.16724423016953424,
0.17102535756433226,
0.1747519703300151,
0.17993526737788176,
0.18785135792471358,
0.19880263526466463,
0.21201156607932864,
0.22618830702608753,
0.24006108992316993,
0.252633300384926,
0.2632422511223587,
0.27152868027235877,
0.2773840558920931,
0.2809043443959301,
0.282357504623385,
0.28216133358829015,
0.2808623952378329,
0.2791033943384601,
0.2775667990080723,
0.27689021930421753,
0.2775656371332325,
0.2798533709139451
],
[
0.19271778529255648,
0.19274269741785502,
0.1976797322905583,
0.20555068170274654,
0.21418848764087967,
0.22178525890501607,
0.22704556910852527,
0.22914526114548336,
0.22764802291693448,
0.22244418837146823,
0.2137283863571271,
0.2020133204003103,
0.18816437523590257,
0.17341681329116945,
0.15929162937980826,
0.14727723342120144,
0.13824503123094573,
0.13206250507160003,
0.1279578150163392,
0.12527985271542244,
0.12398815979131447,
0.12453067710624142,
0.1273068285316281,
0.13233482343251327,
0.1392208783589603,
0.14713436334497002,
0.15494980085258367,
0.16169833703769684,
0.16697577222315135,
0.1711283250642264,
0.1752115027961331,
0.18067176779992025,
0.188716621622043,
0.1996307558359131,
0.21267661770185034,
0.2266111575804428,
0.24019423915774113,
0.252443988163785,
0.26270040493224156,
0.27060034358651236,
0.2760293718631105,
0.27907942920099166,
0.280020118621442,
0.27928050584309294,
0.2774316894853374,
0.2751559775212401,
0.27318793125948215,
0.2722204758686998,
0.27278888699422993,
0.2751695031545202
],
[
0.1934988566370182,
0.1932441637132816,
0.19780023884863668,
0.2052796653679405,
0.21357399888011913,
0.22089626966846398,
0.22594828813334722,
0.22789267629451931,
0.2262772985044405,
0.22097762329182466,
0.21217528258353083,
0.20037133393131598,
0.1864199639603108,
0.17154570898078964,
0.15726229713592416,
0.14506405088857832,
0.13586338170532516,
0.12959583281472495,
0.12552030589267757,
0.12296671659016728,
0.12186145244171871,
0.12263008762149122,
0.12566895763024646,
0.1309871933842371,
0.1381606610325457,
0.1463442963815361,
0.15443915802058528,
0.16150963282750583,
0.16716476291811622,
0.17173398040289486,
0.1762204312581366,
0.18198670273223228,
0.19015677560201125,
0.20099550098137506,
0.21381535573383884,
0.22743465512778552,
0.24065562873588942,
0.25251677459589766,
0.26236262434999136,
0.2698256933997716,
0.2747839558711824,
0.2773230705009318,
0.27771197819691584,
0.27638920165006303,
0.2739497736101473,
0.2711170261198347,
0.2686815061993621,
0.2673971223343562,
0.26784761223054854,
0.27032712460123437
],
[
0.19469144539627442,
0.19412543205387814,
0.1982421068729788,
0.20526128114365697,
0.21314867293958661,
0.22014693954778128,
0.22495800571107474,
0.22673107735932785,
0.2249969874266072,
0.219615126825126,
0.21075309856975602,
0.19889904154042432,
0.18489350866732546,
0.16994546013261572,
0.15555356138826404,
0.14321063812123655,
0.13386831941009417,
0.12753345665646618,
0.12350036320688547,
0.12108001078496343,
0.1201631611282719,
0.12115281708897595,
0.12444195209382669,
0.13003087231086602,
0.1374698858349513,
0.14590720886499411,
0.15427675516596098,
0.16168137721978182,
0.16774407356410134,
0.17277162387301603,
0.1777026363414792,
0.18380083337048264,
0.1920968031397877,
0.20283364304573562,
0.21537924888844473,
0.22862403533100126,
0.2414219441036457,
0.25283744253456536,
0.2622218990190961,
0.26920356578781146,
0.2736515564917625,
0.27564325763469727,
0.2754447201258537,
0.2735020150503171,
0.27043330092701934,
0.2670041943591314,
0.2640652354014233,
0.2624374927515276,
0.262758999941323,
0.2653438061473128
],
[
0.19620911899703905,
0.1953042174457205,
0.19893435465379403,
0.20543760952437978,
0.2128661252369366,
0.2194998706815891,
0.2240437273047896,
0.22563350939894572,
0.22378204035341817,
0.21833161007701632,
0.20943491453552932,
0.197566070628547,
0.18354989911143482,
0.16857578152425068,
0.15412136496015091,
0.14167280320090717,
0.1322189419879133,
0.12583786555500198,
0.12185979921402824,
0.11957541334618747,
0.11883920477843266,
0.12003434208027589,
0.12355206424585873,
0.12938546375499202,
0.13706610401988642,
0.145743206342484,
0.15438707542033978,
0.16214080247648074,
0.16864019843891753,
0.1741634563227701,
0.1795744973263647,
0.18602759951334621,
0.1944544026704829,
0.20507454053448124,
0.21731291560042515,
0.23013880127498643,
0.2424654032012167,
0.25338849619944265,
0.2622689863048126,
0.26873148584307793,
0.2726354594607036,
0.2740483503981856,
0.2732312152396813,
0.2706356800923522,
0.26690197263374493,
0.26283899887401574,
0.25936130297130117,
0.25736374308063803,
0.2575451693008259,
0.2602419492607968
],
[
0.1979627291224916,
0.1966950980129029,
0.19980238876039377,
0.2057472550729244,
0.21267704938547444,
0.2189153779902126,
0.223172688234207,
0.22457156980546064,
0.2226060791551493,
0.21710059723145453,
0.20819223760103078,
0.1963402374113288,
0.1823520553544371,
0.1673945541639017,
0.1529203725979343,
0.14040558244829093,
0.13087351359412994,
0.12447039124496449,
0.12055925093156471,
0.11840808534616554,
0.11783599289385861,
0.1192110826365615,
0.12292643040715814,
0.12897155550070402,
0.13686776722082564,
0.1457725526840866,
0.15469376159138176,
0.16281345658575502,
0.16977731285658393,
0.1758290392456815,
0.1817499115352745,
0.1885783197701918,
0.19714486318784058,
0.20764424204263565,
0.21955709694912015,
0.2319346743332092,
0.2437549633610635,
0.25414987290065894,
0.2624928056786185,
0.2684058629854673,
0.2717385639071018,
0.2725470969167281,
0.27108558368266833,
0.2678091422168924,
0.2633787246378875,
0.258647164297931,
0.2545968731267816,
0.2522034743559816,
0.2522338319606218,
0.2550493976298436
],
[
0.19986436814003705,
0.1982133204652147,
0.20077122692647356,
0.20612777833706783,
0.21253097425016715,
0.21835277708585724,
0.2223113489911526,
0.2235162428830238,
0.22144217507082425,
0.2158950449219959,
0.20699596978264145,
0.1951887877571108,
0.181262564701068,
0.1663599041557133,
0.1519063546650534,
0.13936579819305742,
0.12979214466519673,
0.12339381236752316,
0.11956078141995052,
0.11753565335585733,
0.11710404141482746,
0.11862471165571638,
0.12249784898079884,
0.12871550933404097,
0.136798751558507,
0.14591988806397563,
0.1551234824412535,
0.16362682315008148,
0.17108092102588693,
0.17768922974352616,
0.18414454506621794,
0.19136646286327733,
0.20008508969388003,
0.2104690197338504,
0.22205139429543022,
0.2339654996816965,
0.2452575563376768,
0.25509969848009245,
0.26288086841138175,
0.2682222042014755,
0.27096345576675473,
0.2711486266846674,
0.26902316413727717,
0.2650435674790817,
0.25988984796217474,
0.25445891575743845,
0.24980457257429442,
0.2469903582519688,
0.246858965654249,
0.24980004999105826
],
[
0.20183045198781915,
0.1997778304461478,
0.20176821377107818,
0.20651787949352693,
0.21237792296475103,
0.2177716431715485,
0.22142638777900805,
0.22243873717756218,
0.22026362389110907,
0.21468814303618278,
0.2058173264220993,
0.19407952682139407,
0.18024508633107672,
0.16543184117954057,
0.15103788321166942,
0.1385137260505314,
0.12893848171369124,
0.12257396457339877,
0.11882943978495934,
0.1169199848788951,
0.11660020814833241,
0.11822495114216525,
0.12220800189831837,
0.1285528146653528,
0.13679164125988053,
0.14611740752645141,
0.15560898494955444,
0.16451327953446154,
0.1724808593167448,
0.1796693480636572,
0.1866791142480929,
0.19431085920408062,
0.2031966573389366,
0.21347817043475587,
0.2247365952919321,
0.2361849749843852,
0.24693926951961054,
0.25621503987348626,
0.26341971763277494,
0.268175332295962,
0.27031247100063727,
0.2698624120744772,
0.2670604267129604,
0.26236227188658223,
0.2564650155162485,
0.25030918328823715,
0.24502291032291681,
0.24176472978179467,
0.24146146739690702,
0.244534439307396
],
[
0.2037839467326613,
0.20131352272643915,
0.2027251670372177,
0.20685925134708386,
0.2121699062493139,
0.21713299282166387,
0.220485655927722,
0.22131129838030586,
0.21904469266534604,
0.21345406831099598,
0.20462866885539036,
0.19298179183020814,
0.17926547676211568,
0.16457343716361114,
0.15027735817797053,
0.13781385975013918,
0.1282803418949264,
0.121980253150908,
0.1183337119081557,
0.11652770640684958,
0.11628847005895646,
0.11797077887080906,
0.12200908947348679,
0.12843003265074296,
0.13678980426504764,
0.14630700334682287,
0.1560912784924321,
0.16541230589476938,
0.17391355958262264,
0.18170150187611253,
0.18928168368071535,
0.19733788628254884,
0.20640791875131614,
0.2166060565210007,
0.22755650601437172,
0.23854811700945658,
0.24876641004257566,
0.2574726146230944,
0.2640953556609837,
0.26825959684368517,
0.2697877419210571,
0.26869819269291645,
0.26521482022966986,
0.25979055281296093,
0.25313718423531495,
0.2462376740888654,
0.2402965833708198,
0.2365740947735342,
0.23608973489669752,
0.23930022670182988
],
[
0.20565583914946522,
0.20275278886373854,
0.2035799728835538,
0.20709807578984463,
0.21186221361719718,
0.21640035680776376,
0.21945907088922914,
0.22010797686431377,
0.21776131854773406,
0.21216867042613707,
0.20340422908970363,
0.1918672478104343,
0.17829263471112,
0.16375159565088518,
0.14959148149768745,
0.13723490395833182,
0.12778937131525683,
0.12158515630637123,
0.1180450388166723,
0.11632965244813162,
0.11613936999320189,
0.11783017769384069,
0.12186408157092371,
0.12830554458026935,
0.13674843075166185,
0.14644149006609353,
0.15652100993493773,
0.1662719642620061,
0.17532358565687456,
0.18372611108397477,
0.19188908331120133,
0.20038276178602155,
0.20965528058485278,
0.21979344646119545,
0.23045928071810165,
0.24101242519069893,
0.2507064099522857,
0.25884942621349893,
0.2648936389857489,
0.2684690670258084,
0.26939122117979936,
0.2676658586828376,
0.2635045467018525,
0.25735540563275916,
0.24994233924104825,
0.24228875951836895,
0.2356766000838985,
0.2314734780596451,
0.2308001016062493,
0.2341525372954097
],
[
0.20738599129153715,
0.20403648249704343,
0.20427769747492228,
0.2071861793664984,
0.21141449283959715,
0.21554072759530965,
0.21831943069205537,
0.21880533542522257,
0.2163917467407117,
0.21081007861553894,
0.2021207170610075,
0.19071050662710032,
0.17729909493335413,
0.16293750391857573,
0.14895136670094444,
0.13674927334813836,
0.12743992440545218,
0.12136299429166235,
0.11793678998131878,
0.11629963600923512,
0.11612842159836599,
0.11777870103424162,
0.12174594878728498,
0.1281494113492124,
0.1366347641505696,
0.14648508245636163,
0.15685914879019958,
0.1670497323169825,
0.1766645242276299,
0.18569274473603423,
0.19444760196533536,
0.20339012110071134,
0.21288380670299598,
0.22298826167294578,
0.23339828974772264,
0.24353873721599192,
0.25272855117256177,
0.26032330419920297,
0.2658006258149316,
0.2687976977257719,
0.26912467971419896,
0.266775291416693,
0.2619482590878218,
0.2550851119754149,
0.2469190469830436,
0.2385111164853971,
0.23122013542434228,
0.22652551260767873,
0.2256570225089792,
0.22915403996201508
],
[
0.20892352571717243,
0.20511443402014645,
0.20477130431800641,
0.20708188927163287,
0.2107916279402463,
0.21452537800229635,
0.21704314188418336,
0.21738308877405457,
0.21491710033072628,
0.2093592241808605,
0.20075781135554116,
0.1894895835581533,
0.17626141588294703,
0.16210687207200877,
0.14833249555443234,
0.13633251230041696,
0.1272075640129312,
0.12128852509437055,
0.11798320241042122,
0.11641306356667105,
0.11623395883714846,
0.11779728484548109,
0.12163634241873446,
0.12794266238985366,
0.1364277502133382,
0.14641329962867441,
0.15707711990475468,
0.16771280535618738,
0.1778993425675182,
0.18756040681984842,
0.1969131253521015,
0.20631405766932237,
0.2160473102590292,
0.22614585209326807,
0.23633259272584733,
0.24609179721795577,
0.2548045064570014,
0.261873337916892,
0.26680286607551607,
0.2692394628925052,
0.2689896770515993,
0.2660361629173771,
0.26056468286543205,
0.253008691827226,
0.24410778875692662,
0.23495705996732638,
0.2269900163763765,
0.22180014250712468,
0.2207328763135625,
0.22437464633002827
],
[
0.2102268742828003,
0.2059456377811501,
0.205022070062267,
0.2067506431228174,
0.209964438512545,
0.2133305568314344,
0.2156108593434355,
0.2158246711716291,
0.21332187961114957,
0.2078002801531065,
0.19929854157543733,
0.1881862128379817,
0.17516040745088068,
0.16124004901831196,
0.14771469877448212,
0.13596306722630652,
0.12706833105093326,
0.12133629978179379,
0.11815875774833062,
0.116645913387142,
0.11643534291108278,
0.11787022519753955,
0.12152420099780356,
0.12767627781720228,
0.13611728531062778,
0.1462124421898651,
0.1571565127245253,
0.16823798267700324,
0.1790003299433508,
0.1892974045083197,
0.19925087090177207,
0.20911778331798966,
0.2191080802495597,
0.2292289184562025,
0.23922709363614972,
0.24864057242042964,
0.25690870563414403,
0.2634802011918232,
0.26788762867282123,
0.2697884529998843,
0.26898750467852767,
0.26545769861548546,
0.2593721676318852,
0.2511552204601003,
0.2415500561480843,
0.2316815084197187,
0.22305372697005646,
0.21737378902628007,
0.21610722032879692,
0.21989068119597008
],
[
0.2112635997189779,
0.20649821563609613,
0.20499978301830524,
0.2061654076331341,
0.20891022899164335,
0.21193807280157942,
0.2140080404627787,
0.21411773192481043,
0.21159439193564825,
0.2061210234975197,
0.19772957495909138,
0.1867860454552507,
0.1739812366422221,
0.16032207204963514,
0.1470822505077782,
0.1356226119725218,
0.126999703731575,
0.12148131644651763,
0.11843823825799656,
0.11697439369928826,
0.11671244520427212,
0.11798440104596901,
0.12140459109343191,
0.12735002632215556,
0.13570318153481944,
0.14587875101649478,
0.15708847494844494,
0.16861124217472528,
0.1799487276862695,
0.19088091391239032,
0.20143484434030073,
0.21177303499517303,
0.22203636205300978,
0.23220718410352156,
0.2420524526310224,
0.2511583610231888,
0.2590185451864255,
0.26512637233650954,
0.26904306525776983,
0.27043893619935605,
0.2691191055038628,
0.2650484114737076,
0.258388181406829,
0.24955302280087036,
0.2392872071111045,
0.22874054104965152,
0.21948182766494506,
0.21332781786663021,
0.21186531635180242,
0.21578336559558076
],
[
0.21201007280657375,
0.2067492374328663,
0.20468279406814968,
0.205306956246475,
0.2076132169284089,
0.21033578000012135,
0.2122254179838184,
0.2122545601035382,
0.2097271151137524,
0.20431312773154833,
0.19604142199987837,
0.1852787510094818,
0.17271343599075178,
0.15934266619985976,
0.14642405857750163,
0.13529676676653415,
0.12698217641478365,
0.12170041040510629,
0.11879738838929098,
0.11737526955049726,
0.11704609873254412,
0.11812933396020923,
0.12127778715647669,
0.1269712046879632,
0.13519390176727109,
0.14541731934578594,
0.15687287459561283,
0.1688270880104813,
0.18073413352736897,
0.19229633416570358,
0.20344711318970907,
0.21425932322688182,
0.22480968403025076,
0.23505690004506766,
0.24478482133221482,
0.25362273504809535,
0.26111446405881483,
0.2667962587389094,
0.27025831347141477,
0.2711853852735537,
0.26938497459215344,
0.26481581877411664,
0.2576287671144825,
0.24822877177318214,
0.23735910597817317,
0.22618953938231132,
0.21634571298228877,
0.20974616021879386,
0.20809575375516418,
0.21213646768282046
],
[
0.2124510630249756,
0.20668445591819476,
0.2040579727499467,
0.20416404662998594,
0.2060648656161874,
0.20851797676311326,
0.21025939520349954,
0.21023243975195965,
0.20771699785091274,
0.2023723948042705,
0.19422857636584487,
0.1836580427317576,
0.17135082692502973,
0.15829617392827341,
0.14573384769135803,
0.13497586235140677,
0.1270005881465409,
0.12197364137359384,
0.1192138945673779,
0.11782659874279436,
0.11741872866160256,
0.11829720930322957,
0.12114837558939726,
0.12655323075933153,
0.1346050683325115,
0.1448408043456119,
0.15651729450592958,
0.16888773631615545,
0.1813537446751396,
0.19353649667498318,
0.20527696568523737,
0.2165630905877818,
0.22741209782577107,
0.23776024815806251,
0.24740545771695682,
0.25601535904563116,
0.2631799104012873,
0.26847623854391134,
0.2715235454984925,
0.2720224745954158,
0.2697850481278466,
0.26476615562150807,
0.257107987078086,
0.24720653201922005,
0.2358026014971757,
0.2240809574180771,
0.21371469391384754,
0.20671199540015384,
0.20488704720730805,
0.20903303012431554
],
[
0.21257927894732342,
0.2062979926495393,
0.20312060427023126,
0.20273352751163626,
0.20426413970602775,
0.20648572581376745,
0.20811236457180235,
0.2080539351286281,
0.20556569982812947,
0.2002989347785617,
0.19228960405009277,
0.18192164259786628,
0.16989136237327926,
0.157181374599862,
0.1450101961830903,
0.13465543874618383,
0.12704496766408724,
0.12228531540558252,
0.11966835700768,
0.1183085641715807,
0.11781483138287434,
0.11848259849710101,
0.1210241483424374,
0.12611399765700937,
0.1339577276101549,
0.14416797654819885,
0.15603590963878985,
0.16880218577160935,
0.1818114844839988,
0.1946007757205533,
0.20692000220556497,
0.21867682734400623,
0.22983338035122014,
0.2403046910459675,
0.2499002657427487,
0.2583217207502342,
0.2652012235903626,
0.27015463359735153,
0.2728299697433743,
0.27294505287426585,
0.270318588831266,
0.2649041011072327,
0.25683738636513836,
0.24650680417409934,
0.23464993056999306,
0.22246183284033527,
0.21165249432221153,
0.20430351145640704,
0.2023231964941764,
0.20655118879487883
],
[
0.21239487691439912,
0.20559199338610723,
0.20187424700713638,
0.2010203917811881,
0.2022176934673457,
0.20424709704575886,
0.2057929460451537,
0.20572710226767324,
0.20327977183024826,
0.19809730042544374,
0.1902271957654636,
0.1800712028193795,
0.1683368921131407,
0.1560011514482397,
0.14425629608105306,
0.13433628000942063,
0.1271107822004874,
0.12262448222642373,
0.12014500634417348,
0.11880417295600192,
0.11822123452418014,
0.1186818839693086,
0.12091465461142971,
0.12567390838321454,
0.13327637332956707,
0.14342215742820313,
0.15544828947165584,
0.16858520421701453,
0.18211704097978257,
0.19549413060201162,
0.20837719076119485,
0.2205981762254451,
0.23206823079865346,
0.24268230395992263,
0.2522592949570139,
0.2605308042349645,
0.26716745413207565,
0.271821628262817,
0.2741697945942702,
0.27394809847287915,
0.27098407666155727,
0.26523253378923584,
0.2568255085341646,
0.24614563492497896,
0.23392716577195935,
0.2213712272329636,
0.21021339118671076,
0.20258892617998686,
0.20047836782342277,
0.20475926145901965
],
[
0.2119049424418576,
0.20457625601500426,
0.2003305549284922,
0.19903777950136917,
0.19993999054222228,
0.2018173258417844,
0.20331613522940475,
0.20326561862946066,
0.2008707730096385,
0.19577658135154521,
0.1880481951825136,
0.17811220097983788,
0.1666928611473063,
0.15476198161218468,
0.14347934604771403,
0.13402388036859034,
0.12719852877283225,
0.12298484196043369,
0.12063203392108467,
0.11929970952377533,
0.11862716517851231,
0.11889250204950284,
0.12082942532277556,
0.12525356552033365,
0.13258680968201228,
0.14262962118441658,
0.15477816186221752,
0.16825624886754695,
0.18228483263731599,
0.19622609858369883,
0.2096539080496993,
0.22232904833254177,
0.23411548587191863,
0.2448891142969489,
0.2544762270178405,
0.2626347306416857,
0.2690701415410988,
0.2734691482571645,
0.27553616366436423,
0.27502666450035107,
0.2717791135455031,
0.26575233246343744,
0.25707749697102267,
0.2461338617942631,
0.23365284430833402,
0.22083784897667608,
0.20943838902781756,
0.20162116930523452,
0.19941106844530251,
0.20371050411630431
],
[
0.21112293800797252,
0.2032678209437291,
0.1985090550799432,
0.1968069205806792,
0.19745334161502923,
0.19921886956677565,
0.2007033437100882,
0.20068881713907885,
0.19835531809212562,
0.19335045871051415,
0.18576361339454167,
0.17605382783464993,
0.16496796392400745,
0.15347325983258417,
0.14268954638912196,
0.13372730802570332,
0.12731265942785686,
0.12336407340696974,
0.12112151327793479,
0.11978492538985727,
0.11902420191624619,
0.11911220808416426,
0.12077611211418347,
0.12487119933674025,
0.13191407717274078,
0.14181805942836817,
0.15405216613528283,
0.1678383256967136,
0.1823329081246801,
0.1968097520301333,
0.21075898238774307,
0.22387476648840446,
0.23597736988105739,
0.24692446709522983,
0.25654786940896623,
0.26462838657877,
0.2709030674619521,
0.2750907125649294,
0.2769230717153728,
0.2761758207585323,
0.2727003500657268,
0.2664622360703341,
0.2575948111433497,
0.2464765569425381,
0.23383691723296035,
0.22087814519935903,
0.20935195598174366,
0.20143290172986442,
0.1991583868930204,
0.20343820922690803
],
[
0.2100681030276673,
0.20169050270758598,
0.1964368566377946,
0.19435699228106781,
0.19478783253829843,
0.19648133328157663,
0.1979823056091456,
0.19802160500219543,
0.19575504235242158,
0.1908372168233966,
0.18338863641352857,
0.17390888768123414,
0.16317379159709247,
0.1521465129808734,
0.14189874643638198,
0.13345749653197284,
0.12745989231487442,
0.12376268258833643,
0.12160897576404749,
0.12025300743106226,
0.11940619794904958,
0.11933859364424879,
0.1207591466714992,
0.12454047767596454,
0.13128079059258235,
0.14101520198340411,
0.1532986082993012,
0.16735678345716887,
0.18228178297795616,
0.19726063226830132,
0.21170375367306382,
0.2252432498757905,
0.23765879249506427,
0.24879043005508744,
0.2584736714986879,
0.26650905595668556,
0.2726619984368212,
0.27668127001670695,
0.27832526981075617,
0.27739059901323787,
0.2737434405989732,
0.26735877312405715,
0.25837507984648334,
0.24717272066343376,
0.2344801357974974,
0.22149512693069898,
0.20995989054527808,
0.2020328877401315,
0.19973106892671708,
0.20395213826156416
],
[
0.20876478691527417,
0.19987433222792989,
0.1941482548932455,
0.19172485154984747,
0.19198110048068925,
0.1936412235343164,
0.19518681627762383,
0.19529424211329927,
0.19309646691123863,
0.18825970211318932,
0.18094262689364474,
0.17169372918903905,
0.16132452011791126,
0.15079461009033726,
0.14111890746000286,
0.13322506288301428,
0.12764704442723665,
0.124182570082564,
0.12209275906161451,
0.12070038967530321,
0.11976923784654188,
0.11956899796263046,
0.12077953633169075,
0.12427008473010277,
0.13070615078723663,
0.1402476377563144,
0.1525462107434683,
0.16683803134140704,
0.1821532185356055,
0.19759567672785455,
0.21250116753938572,
0.2264442535469278,
0.23916670492484735,
0.25049124831362307,
0.26025527418413663,
0.268276067385232,
0.27434442999728476,
0.2782370304299061,
0.27973816723974115,
0.2786659470699476,
0.27490303145090195,
0.2684362665781505,
0.25941210354853406,
0.24821525385699186,
0.23557394746654522,
0.22267810562831675,
0.21124875780706565,
0.20340488356510483,
0.20111155351023013,
0.20523737759037597
],
[
0.2072416945222307,
0.19785487211340838,
0.1916841813096709,
0.18895458690846423,
0.18907790047851702,
0.19074147768927166,
0.19235626264271133,
0.1925419497620055,
0.19041074197119126,
0.18564521276401363,
0.17844911310622172,
0.16942821776286926,
0.15943668766634722,
0.14943110286169164,
0.14036068233569132,
0.13303789312681447,
0.12787871725545122,
0.12462560946420671,
0.12257326776716503,
0.12112646766241607,
0.12011164075623205,
0.11980078313777474,
0.1208356002081631,
0.12406453093929003,
0.1302055570972722,
0.13953980183044068,
0.15182282860692567,
0.1663081697903394,
0.18196895844194827,
0.19783216436508605,
0.21316492502392767,
0.2274886773987725,
0.2405095243373269,
0.2520328569322035,
0.26189610136474056,
0.2699304662093862,
0.2759493412447747,
0.2797552984413619,
0.2811577365167638,
0.27999669586915626,
0.27617278427378467,
0.26968691500971725,
0.26069600645993457,
0.24959121265453188,
0.23710091468866834,
0.2244033837957397,
0.2131870244885531,
0.20550951648937837,
0.20325691089068096,
0.20725605833018063
],
[
0.2055310256696019,
0.19567236366941573,
0.18909144055922597,
0.18609682066608244,
0.18612939119744576,
0.18783070804005964,
0.18953490231050654,
0.18980431924170757,
0.18773324196243793,
0.1830252948723461,
0.17593574729113823,
0.1671357477925459,
0.15752909631876374,
0.1480698232423518,
0.13963249323762106,
0.13289933603538762,
0.128155621434361,
0.12509255240965966,
0.12305226566397037,
0.12153324917468382,
0.12043397115453806,
0.12003179851572304,
0.12092396989471393,
0.12392500678599927,
0.1297904953124146,
0.13891303098858962,
0.15115409495630303,
0.16579153622464257,
0.1817494568782825,
0.19798671619964164,
0.2137087141217122,
0.2283879605368289,
0.24169663571654862,
0.2534224573432585,
0.26340099910682163,
0.2714747177009928,
0.2774769668122668,
0.2812343164005722,
0.28258042639823144,
0.28137754239851986,
0.27754543469070087,
0.27110094594818873,
0.2622135274440911,
0.2512823217528008,
0.23903560716097652,
0.2266357938675084,
0.21572764978730458,
0.2082884222757079,
0.20610409372086128,
0.20995129593840955
],
[
0.20366749810815157,
0.1933706657440558,
0.18642166925971512,
0.18320768215069225,
0.18319205994224835,
0.18496209868742208,
0.1867708530775927,
0.1871244937712381,
0.18510298552282722,
0.1804354134673617,
0.17343420235220147,
0.1648432747501558,
0.15562284456028452,
0.14672480747466635,
0.1389403633760038,
0.132808210720794,
0.12847435496039872,
0.12558245665187565,
0.12353226516386435,
0.12192494229548291,
0.12073898370262318,
0.1202608247961563,
0.12104045617494998,
0.12385003878635942,
0.129468412093961,
0.1383845762908738,
0.15056196570125266,
0.1653091976361655,
0.1815126602452625,
0.19807440086119735,
0.21414555404762278,
0.22915357772597805,
0.24273797963670607,
0.2546681624667692,
0.26477592634660524,
0.2729124457336723,
0.2789285910623157,
0.28267312100144976,
0.2840030864596733,
0.2828030497651793,
0.2790128837983542,
0.27266683262883423,
0.26394842884186215,
0.25326570026215084,
0.2413458663233706,
0.22933086092796076,
0.21881162435436427,
0.21166943861736862,
0.209575794644482,
0.21325223229784473
],
[
0.20168725733079684,
0.19099595506025002,
0.18372995220489075,
0.18034737059564224,
0.18032620792562876,
0.18219190415821498,
0.1841147694897299,
0.18454810785676565,
0.18256185642928904,
0.17791446117434245,
0.17097996176510333,
0.16258132485996923,
0.153741459154078,
0.14541052606875754,
0.13828844510333801,
0.13276007535927528,
0.12882830153145725,
0.12609261154876886,
0.12401601177732294,
0.12230745324864975,
0.12103142058113857,
0.12048784364453505,
0.12118067486358712,
0.12383595744015799,
0.12924247384793058,
0.1379665032728944,
0.1500631668586407,
0.1648774775005515,
0.1812729368072729,
0.19810800596109213,
0.2144872852050951,
0.22979665407134164,
0.24364373307293805,
0.25577871356959525,
0.266027699141686,
0.27424820934629807,
0.28030636755607935,
0.28407141675120495,
0.28542290541685233,
0.28426766438896456,
0.2805663182696816,
0.2743715618579633,
0.2658819948988303,
0.25551473837215216,
0.24399430903210387,
0.23243730540740917,
0.2223718781036385,
0.21557190760918166,
0.2135862062738607,
0.21707925032963163
],
[
0.1996266982444743,
0.18859517926082192,
0.18107304454117495,
0.17757823789782243,
0.17759393431195886,
0.1795775285587296,
0.18161821158631375,
0.18212198741346217,
0.1801536108074566,
0.17550406575312716,
0.16861194486636097,
0.16038391728640464,
0.15191105573327138,
0.14414231350467166,
0.1376799462273883,
0.13274868319153327,
0.12920882771430808,
0.126618774086693,
0.1245060116852484,
0.12268775234352879,
0.12131759571531442,
0.12071406596122641,
0.12134045995399367,
0.12387727530565946,
0.12911130683435904,
0.13766449348838272,
0.14966760657320075,
0.16450669041262245,
0.18104027768964323,
0.19809754050461367,
0.2147442362211679,
0.23032771160914464,
0.24442408817678363,
0.25676327002817323,
0.26716378869437324,
0.2754873178699394,
0.28161316520516283,
0.2854294679361037,
0.2868373641151807,
0.2857657490541242,
0.28219635327023596,
0.2762009383286719,
0.2679935874469436,
0.25800005654012065,
0.24693992941531956,
0.23589960613735672,
0.22633706266516837,
0.21991148657427184,
0.21804615554849266,
0.2213487504531247
],
[
0.1975212526238006,
0.1862142925948969,
0.17850717783356143,
0.174962352974216,
0.17505660012340352,
0.17717521909817532,
0.1793317540738191,
0.17989264192660068,
0.17792267269107093,
0.1732476632405622,
0.16637190187053885,
0.15828831484047753,
0.15016042663999704,
0.1429368421930773,
0.1371181386141338,
0.13276730998931574,
0.12960641265819428,
0.12715552280646528,
0.12500404495867842,
0.12307307272638875,
0.1216047342733314,
0.12094173842735939,
0.12151616088880196,
0.12396713005269365,
0.12906898568682793,
0.13747673581214073,
0.14937697629863617,
0.16420035695601942,
0.18081990234265102,
0.19805002723447968,
0.21492509291808526,
0.23075655684370097,
0.2450891307815609,
0.2576312708949446,
0.2681921715690819,
0.2766356837076814,
0.2828524410792412,
0.28674800946605117,
0.2882442029995036,
0.2872916295588866,
0.28389319142324393,
0.27813990973290054,
0.2702612259011553,
0.26069048095034053,
0.25013967108021906,
0.2396603957466465,
0.23063487142002437,
0.22460413507923888,
0.2228672965279131,
0.22597714292551485
],
[
0.19540422982272496,
0.18389636514598512,
0.17608548099844668,
0.1725585659225939,
0.17277183160672213,
0.17503749092108525,
0.17730293873868921,
0.17790461469745583,
0.17591274486709738,
0.17118931932318718,
0.16430351467358456,
0.15633450908262359,
0.1485209389764144,
0.14181248066102367,
0.13660723784178563,
0.1328098824442507,
0.13001163683470732,
0.12769663816956603,
0.12551065854182036,
0.12346993454808372,
0.1219000846421985,
0.1211738291511885,
0.1217049547380959,
0.12409795247600743,
0.1291056126109311,
0.1373936660165397,
0.1491842896952008,
0.16395520772080086,
0.18061237610024258,
0.1979696245547583,
0.21503698264306367,
0.2310923115504984,
0.24564881635196026,
0.2583923645845165,
0.2691212287010647,
0.27769971039888264,
0.2840281385822604,
0.2880281758787017,
0.28964140294391105,
0.28883965196776584,
0.2856467906294798,
0.28017289731089173,
0.2726621610647303,
0.2635539778816121,
0.2535498692078194,
0.24366253464447243,
0.23519472151440488,
0.22956915379906148,
0.22796525250552174,
0.2308839179327296
],
[
0.19330582965673349,
0.1816797406154124,
0.1738551384360768,
0.17041917219356745,
0.17079025396652314,
0.17321050403823093,
0.1755742295343152,
0.176198793842331,
0.1741652937076735,
0.1693723107959096,
0.162451156475615,
0.15456434956228446,
0.14702612919317953,
0.14078940582193483,
0.13615305286041596,
0.13287190245447045,
0.1304160548613093,
0.12823553348297853,
0.12602474303502398,
0.12388303525656479,
0.12220990090556375,
0.12141377071216444,
0.12190530473729036,
0.12426246399845983,
0.12920869755469847,
0.13739963127888777,
0.14907533475393545,
0.16376215192825774,
0.18041428213853905,
0.1978580871173519,
0.21508577200578616,
0.23134358087665352,
0.24611303638705181,
0.25905640019294135,
0.2699596879839769,
0.2786862122775571,
0.2851446086320246,
0.2892714468708023,
0.29102717758856134,
0.29040424701485207,
0.2874470336355215,
0.2822841178552092,
0.27517341691431746,
0.2665585027488867,
0.2571274955092938,
0.24785078482315806,
0.23994975273807576,
0.23473130085302352,
0.23326175544316777,
0.23599380671267928
],
[
0.19125246443455507,
0.1795965097014128,
0.17185458699528464,
0.16858637769540546,
0.16915235434315104,
0.171731711321966,
0.1741811727050971,
0.1748108173588128,
0.17271800147645647,
0.16783752248746137,
0.16085830205672683,
0.15302024959742214,
0.14571090398675537,
0.1398893909888708,
0.1357633894796157,
0.13295120587131873,
0.13081301758676497,
0.1287658341718621,
0.1265434395507878,
0.12431418590527687,
0.12253860161258916,
0.12166549242010642,
0.1221176612699304,
0.12445500950658815,
0.12936523985829512,
0.13747598256244212,
0.1490315934472378,
0.16360810591181113,
0.1802194018420783,
0.19771553796681965,
0.2150765588172836,
0.231518743718583,
0.24649176328576836,
0.25963347111137375,
0.2707166035042052,
0.27960236087706564,
0.28620655059266925,
0.29047960700811376,
0.29239997480547847,
0.2919799980185114,
0.28928389276977845,
0.28445788534802646,
0.27777228052639996,
0.2696727342681698,
0.26083117160386604,
0.2521730665958191,
0.24483818648674915,
0.24002210222080114,
0.23868592441758654,
0.24123814069501
],
[
0.1892665187850994,
0.17767161875633303,
0.17011140202894343,
0.16708903147004844,
0.1678861294970122,
0.17062814042440322,
0.17315097528548012,
0.17376972096107246,
0.1716033104800279,
0.16662176947378382,
0.1595656479145502,
0.15174344625412356,
0.14461030059976446,
0.13913526092801765,
0.13544825702844387,
0.13304862142285648,
0.13119851652443063,
0.1292822108192036,
0.12706268714873967,
0.12476214914671249,
0.12288879329675377,
0.12193394534201904,
0.12234543156540878,
0.12467312660005601,
0.12956416011175445,
0.13760438247348888,
0.14903349539949334,
0.16347835116194198,
0.1800202784676984,
0.19754149129561827,
0.21501432240636065,
0.23162634150131053,
0.24679525681480013,
0.26013399890082906,
0.27140136295940037,
0.2804556522818669,
0.2872189690317098,
0.2916547167502944,
0.29375848459526366,
0.2935617087220926,
0.29114758412468644,
0.28667888303155536,
0.2804367267145968,
0.27286667822477706,
0.2646219436069758,
0.2565813246549504,
0.24980413688507447,
0.2453805131656786,
0.2441748627763966,
0.2465555591484754
],
[
0.18736663321175576,
0.17592287746444832,
0.16864178436971664,
0.1659414950397607,
0.16700623068743065,
0.16991561152232837,
0.17250168151364678,
0.17309696956759354,
0.17084720115285984,
0.16575620927698617,
0.15860910160759198,
0.15077186412011903,
0.1437578217182958,
0.13855009925982545,
0.13521997790405793,
0.1331686029349841,
0.13157210424308424,
0.12978151430026627,
0.12757855312103952,
0.1252243581329051,
0.1232626542637631,
0.12222616591706242,
0.12259615157956821,
0.12491917464580327,
0.12979868755768567,
0.13776980463716737,
0.14906347087929517,
0.1633590540308483,
0.1798099953825085,
0.19733604031218208,
0.21490468279524622,
0.23167553373577016,
0.24703431101003673,
0.2605688430773109,
0.2720237135664787,
0.28125388892939485,
0.28818714191885114,
0.29279909161423867,
0.29510165059015075,
0.2951444677320732,
0.2930287065398294,
0.2889323994851549,
0.2831457700433535,
0.27611213723773465,
0.26846383059892076,
0.26103205494026693,
0.25479798453375896,
0.25075309186879463,
0.2496737529673499,
0.25189222299034014
],
[
0.18556852481459388,
0.17436194236314773,
0.1674519725577857,
0.16514569472613513,
0.1665148613004907,
0.16959902051186754,
0.17224204913030022,
0.1728059789737874,
0.1704683414166264,
0.16526504521142488,
0.15801792269736742,
0.15013775760346024,
0.1431834488529376,
0.13815641930607514,
0.135093328082731,
0.1333198936592788,
0.13193790481157414,
0.13026416929332812,
0.12808915791139502,
0.1256995531454386,
0.12366414003149347,
0.12255269574167318,
0.12288270023200869,
0.1252018080765028,
0.1300683958163692,
0.1379630284364735,
0.14910860199253745,
0.16323966684240263,
0.17958399698726488,
0.1971011127180543,
0.21475470987742648,
0.2316765827859479,
0.24722051697171976,
0.2609494207246435,
0.2725937959375905,
0.2820051689678591,
0.2891165956659646,
0.2939152861844662,
0.29642868238738074,
0.29672370663846753,
0.2949183619224451,
0.291204524954765,
0.28587974216818257,
0.2793830519992609,
0.27232417213006,
0.2654865543036129,
0.25977642165480186,
0.2560938297337171,
0.2551356057103678,
0.2572016778463971
],
[
0.18388627453233486,
0.17299611935488476,
0.16654092846873764,
0.16469432298538908,
0.16640402319530928,
0.16967359753315572,
0.17237212360658918,
0.17290217696644736,
0.1704777118266037,
0.1651647168210439,
0.15781339231538902,
0.14986563210248235,
0.14291171613395648,
0.13797563347511213,
0.13508582675356418,
0.13351624573010934,
0.13230567910634602,
0.13073569927231085,
0.1285968106536138,
0.1261903083248301,
0.12410119041504343,
0.12292901756437698,
0.12322432814455687,
0.12553707192163865,
0.13038068077803955,
0.13818252475060058,
0.14916277138402603,
0.16311503562589755,
0.1793418045060993,
0.19684169578262387,
0.21457371908402298,
0.23164132653229355,
0.24736651487245231,
0.26128781888580815,
0.27312217507540054,
0.2827178762180245,
0.2900130824345193,
0.2950060797529515,
0.2977390661368733,
0.29829524942445085,
0.2968082546312896,
0.2934823065672225,
0.2886204966590015,
0.2826557256316224,
0.27617380612005504,
0.2699109553412122,
0.26470226465487207,
0.26136375689729435,
0.2605207894379999,
0.26244448493538114
],
[
0.182333937369791,
0.17183067117432063,
0.1659034899178418,
0.16457425138069376,
0.16665845373073948,
0.17012687590454056,
0.17288440536865776,
0.17338358342960422,
0.1708787519926694,
0.16546371089271764,
0.15800835040333183,
0.14997147558317633,
0.14296105588021996,
0.1380281479595936,
0.1352182305325949,
0.13377716411026974,
0.1326918603043773,
0.13120820983097725,
0.1291100045332434,
0.12670515323204506,
0.12458750911217348,
0.12337664961065298,
0.12364724719797511,
0.1259489135456892,
0.13075154968060224,
0.1384356826402892,
0.14922826155932425,
0.162987116794498,
0.17908851209899682,
0.19656694007767017,
0.21437398944277333,
0.23158359618595042,
0.24748620778660166,
0.26159688262318986,
0.27361985788410587,
0.28340066409497944,
0.2908825554080704,
0.2960744606184298,
0.29903257113172793,
0.29985535135758407,
0.29869076877038864,
0.2957538630531126,
0.2913515465209538,
0.2859089463524159,
0.27998711000810955,
0.2742761031257175,
0.26954411287094926,
0.26653041410185685,
0.2657964349302472,
0.2675877117377677
],
[
0.18092728551194306,
0.1708712774276055,
0.16553348569156312,
0.16476983820962918,
0.16725870760958916,
0.1709410280594785,
0.17376542842908946,
0.17424182144940212,
0.17166799951635434,
0.1661630145007177,
0.15860770540989436,
0.15046381381467883,
0.1433451465091675,
0.13833414548174583,
0.13551517825638806,
0.13412858092018837,
0.13312043165579499,
0.13170164670004805,
0.1296450356037869,
0.1272601590270713,
0.12514373157175757,
0.1239236197345118,
0.12418454666247748,
0.12646893862660463,
0.1312056492349006,
0.13873936777748963,
0.14931679165164374,
0.16286625029493912,
0.17883597801486956,
0.19629106098893961,
0.21417134235660842,
0.2315195373311256,
0.2475949107952878,
0.2618902625810943,
0.27409828745434583,
0.2840624275282024,
0.29173113823277974,
0.2971236064762714,
0.30030925057046626,
0.301400726163433,
0.30055902323695144,
0.29800846115117446,
0.2940581416075015,
0.2891240250873284,
0.2837419363920773,
0.2785573220606866,
0.27427591462785733,
0.2715672574143857,
0.2709357829708067,
0.27260435005413175
],
[
0.17968547601850066,
0.1701263322620508,
0.16542650120362068,
0.16526585887451578,
0.16818400464132685,
0.17209523503135007,
0.17499753256893327,
0.17546342025760372,
0.17283612078590924,
0.1672571049670862,
0.15960970661386678,
0.15134570649526263,
0.1440749923109208,
0.138914745705839,
0.13600581160431807,
0.13460330512950575,
0.13362348551683587,
0.1322446530526894,
0.130227094142333,
0.12787991015211678,
0.12579790623146264,
0.12460416138980583,
0.1248752609677804,
0.12713529535178755,
0.13177552407883686,
0.13911983454119775,
0.14944999431466985,
0.16277195692548443,
0.17860364460354933,
0.19603396664906073,
0.2139855238865138,
0.2314677952685728,
0.24770941130256696,
0.2621824078821344,
0.2745693058694773,
0.2847122579627332,
0.2925650855465349,
0.2981568588586526,
0.30156943514686757,
0.302928560880188,
0.3024069052106241,
0.3002365569796809,
0.2967272941793992,
0.2922847645834806,
0.2874194709892216,
0.2827341118196536,
0.2788764859202929,
0.27645304201119925,
0.27591752111759255,
0.2774727088278558
],
[
0.17863243787099325,
0.1696088244076744,
0.16558207248761436,
0.16604984355168662,
0.169414590664524,
0.17356781938941201,
0.17656061586317615,
0.17703124557723005,
0.17436918137900143,
0.16873527567224736,
0.16100758148229144,
0.15261674683859514,
0.1451607156547653,
0.1397930503914501,
0.13672411209532373,
0.13524104883003937,
0.13424128347345085,
0.13287486390048284,
0.13089072043428077,
0.12859781421911917,
0.12658528961349655,
0.12545762285831416,
0.12576250792474916,
0.1279906653873036,
0.13250018171079092,
0.13961203658968657,
0.1496593358010796,
0.1627332296605179,
0.17841892934670178,
0.19582154842929897,
0.2138403394034161,
0.23144953093254605,
0.247847920671045,
0.2624884932459302,
0.27504507937029116,
0.28535937789556476,
0.2933907324131709,
0.2991776902102508,
0.3028137186479589,
0.30443651835370866,
0.30422908344602034,
0.3024298063750023,
0.29934776119311224,
0.29537737547945875,
0.2910040365550456,
0.28678980257526077,
0.2833290139214554,
0.2811712156056777,
0.28072513926077347,
0.28217581335598535
],
[
0.1777977889154052,
0.16933760063265998,
0.16600514857337964,
0.16711367783595985,
0.17093345933099807,
0.17533795628489554,
0.17843369056239067,
0.17892589601413758,
0.17624998408006165,
0.17058306032230205,
0.16279114467118766,
0.154274634990348,
0.1466127113015357,
0.14099464186890184,
0.13770867638323186,
0.136087818864175,
0.13502163862412667,
0.1336384914740783,
0.13167953489250636,
0.12945571923705848,
0.1275475122988582,
0.12652676653434802,
0.12689076272394276,
0.12907953866240915,
0.13342314295500407,
0.14025839367664505,
0.1499854715811551,
0.16278827983168936,
0.17831712969529534,
0.19568557628269298,
0.21376349757373586,
0.23148824126828782,
0.24802990318003762,
0.26282427328007846,
0.2755379823351158,
0.2860130530397431,
0.2942144315070237,
0.3001896628722511,
0.3040429352756365,
0.3059227278368044,
0.30602100323821735,
0.304581048574012,
0.3019099916980213,
0.29839035311032963,
0.2944828620778988,
0.2907111920928513,
0.28762056723012325,
0.2857093405786882,
0.2853463217934428,
0.2867008308238476
],
[
0.17721711693010203,
0.1693378628753206,
0.16670671929204078,
0.1684543951700683,
0.17272736915606485,
0.17738686294959857,
0.18059611960907251,
0.1811269312620046,
0.1784593160454699,
0.17278354211302582,
0.16494809870640334,
0.15631613206789946,
0.1484419957357816,
0.14254726373448004,
0.13900170158155245,
0.13719449320259244,
0.13601847251263735,
0.13458908258326116,
0.1326451648767232,
0.13050281372665,
0.12873119918492926,
0.12785580230594146,
0.12830283628215014,
0.13044537756832944,
0.1345902317878911,
0.14110707215315843,
0.1504770149470629,
0.16298368688791579,
0.17834078290205604,
0.19566314872846388,
0.21378613197197002,
0.23160936834188403,
0.2482757758989532,
0.2632058618327835,
0.27606043956549137,
0.2866824820301521,
0.2950424779984547,
0.30119637995931453,
0.30525812892677934,
0.30738576459120787,
0.3077788652828308,
0.30668426772207347,
0.3044060471584562,
0.3013143268910576,
0.2978458325278303,
0.29448818096791873,
0.29174162701809675,
0.29005855570990136,
0.2897723859955777,
0.29103853375726196
],
[
0.1769314912290862,
0.1696407967765718,
0.167703561393834,
0.17007415801606876,
0.17478716387668738,
0.17969844244113148,
0.18302847038360454,
0.18361384032536004,
0.18097698571799808,
0.17531839817518466,
0.1674648824564995,
0.15873733169560644,
0.15065969900287748,
0.14447957627696895,
0.140647056731813,
0.13861448320948824,
0.13728947184162013,
0.13578538014070457,
0.13384531489884463,
0.1317937924630147,
0.13018611609059677,
0.12948848580576225,
0.13003796641778667,
0.1321285335089934,
0.13604733251894263,
0.14220982452795117,
0.15118868678814626,
0.16337289482085957,
0.17853842540557335,
0.19579566030970003,
0.21394198492411498,
0.23183969494503834,
0.24860648219740303,
0.2636494398942602,
0.27662472964818635,
0.2873766654835179,
0.2958810232087418,
0.30220142881109574,
0.3064605151472131,
0.30882461974745407,
0.3094995908656586,
0.3087345365881651,
0.30682950173902146,
0.3041418921539186,
0.3010852308839003,
0.29811341729946794,
0.2956856475975699,
0.29421308282281816,
0.293997770727082,
0.2951828072360911
],
[
0.17698611657686297,
0.17028228275253593,
0.169017113637301,
0.1719794863641222,
0.1771074637196302,
0.18225941757989442,
0.18571297681663013,
0.18636670570625505,
0.18378258210602483,
0.17816860833298515,
0.1703270442094884,
0.16153330149458509,
0.1532757663294847,
0.14681902888287054,
0.14268745780609843,
0.14040051812524662,
0.1388928905574447,
0.13728830781979617,
0.13534097796240238,
0.13338629346476008,
0.1319628822192605,
0.13146635817892946,
0.13213101297861743,
0.1341649908606624,
0.13783821226724838,
0.14361942273906964,
0.15217882323102205,
0.16401400985759954,
0.17896271272107492,
0.19612727294774265,
0.21426626121671244,
0.23220654109290215,
0.24904295190706108,
0.26417090145944566,
0.27724275547894456,
0.2881042580771885,
0.2967359791635025,
0.3032083183429881,
0.30765143689598834,
0.31023866195272226,
0.3111807759117509,
0.3107279466228988,
0.30917532871145864,
0.3068674324562726,
0.30419548116876377,
0.3015819582641623,
0.29944865094251805,
0.29816977996649435,
0.298019575981673,
0.29913020188428324
],
[
0.1774281055762882,
0.17130070692501442,
0.170671555402111,
0.1741798489297303,
0.17968584108517863,
0.18505903462746595,
0.18863364485766781,
0.18936656389250273,
0.1868559413494816,
0.18131483007947397,
0.17351920982094313,
0.16469725108188069,
0.15629706020333747,
0.14958902719352773,
0.1451609221630939,
0.14260076975169336,
0.14088370465872113,
0.13915722171159983,
0.13719287194824362,
0.135337664042166,
0.13411027388604999,
0.133826969296936,
0.1346116326664112,
0.1365853248150603,
0.14000238759850306,
0.14538673250225154,
0.15350625532816117,
0.16496689218130714,
0.1796678978027314,
0.196702916461307,
0.21479418992447744,
0.23273679498777639,
0.2496054719297237,
0.26478545257028047,
0.2779257911299972,
0.28887340898295805,
0.2976129171076678,
0.30422041217353046,
0.30883231560104757,
0.3116275925288674,
0.31282063642064,
0.31266152815416115,
0.3114397782389985,
0.30948693870300936,
0.3071728987762631,
0.30489095319745674,
0.3030288569658101,
0.30192774041687875,
0.3018371516784361,
0.30287953220048824
],
[
0.178303431919734,
0.1727339710082073,
0.17269123717527868,
0.17668578581718455,
0.1825216274197962,
0.18808844414254097,
0.19177606695668206,
0.19259549768600592,
0.19017734865543634,
0.1847374963910415,
0.17702477810736145,
0.16821946355744194,
0.15972518012912792,
0.15280568594530658,
0.14809683297926457,
0.14525474208085623,
0.1433095019864996,
0.14144572265836722,
0.13945730238378412,
0.13770119891549454,
0.13667218235639952,
0.13660194448405882,
0.1375031827177307,
0.13941355969496938,
0.1425730130093183,
0.1475575295951568,
0.15522664625094867,
0.16628960372282744,
0.18070672886505437,
0.197565900359101,
0.21555936971670492,
0.23345583216772975,
0.2503130013308207,
0.2655071838954407,
0.2786842168490166,
0.28969159735016314,
0.29851696378664594,
0.30524085983647764,
0.31000459924228924,
0.3129913959741508,
0.3144179477327032,
0.31453316411911747,
0.31362025092381535,
0.3119978299772693,
0.3100154524369064,
0.308039350704573,
0.3064263495412048,
0.3054879353755313,
0.3054517328225064,
0.3064315183026113
],
[
0.17965323030159883,
0.17461589392732024,
0.1750976967557994,
0.17950677988646574,
0.18561451876682195,
0.19133988017747713,
0.19512702860366493,
0.19603651914855721,
0.19372753265676096,
0.18841672452160504,
0.18082550263454647,
0.17208626755874412,
0.16355444269559463,
0.15647455711063563,
0.15151210818721508,
0.14838953621685005,
0.14620662597542863,
0.14419746655512533,
0.14218178308143875,
0.14052209795241666,
0.139684376736574,
0.1398149368516926,
0.14082148317185772,
0.1426659742702004,
0.14557486671131076,
0.15016925245442794,
0.1573884697731073,
0.1680343693529013,
0.18212691916768078,
0.19875529217480983,
0.21659201245753637,
0.23438639501660657,
0.2511824733600786,
0.2663486410833784,
0.2795272558250712,
0.2905654704562144,
0.29945269979267625,
0.3062725286690009,
0.31116970935457033,
0.3143302876764514,
0.3159719799286751,
0.31634150031094443,
0.31571517069782606,
0.31439877974855945,
0.3127225406582394,
0.3110276308425099,
0.3096427771055543,
0.3088528974695931,
0.30886611753526805,
0.3097884683216848
],
[
0.1815097143375767,
0.17697229582897547,
0.17790659023028135,
0.18264913045294556,
0.18896315411308787,
0.19480576009178777,
0.19867399540371875,
0.19967331300726154,
0.19748752298767905,
0.1923321326817259,
0.18490111182370977,
0.1762793092119239,
0.16777053787349025,
0.1605880460520918,
0.15540831915823183,
0.1520171748927425,
0.14959713008281322,
0.14744250391341712,
0.14540086411616238,
0.14383348388981063,
0.14317133494244075,
0.14347968635630984,
0.14457365402662758,
0.14635003374847794,
0.14902261775438042,
0.15324799828040153,
0.16002892305645355,
0.17024331243120905,
0.18396746330457397,
0.20030329746718062,
0.21791723401970164,
0.2355475180612171,
0.25222813198256233,
0.267320419179234,
0.28046272722163407,
0.2915006925397768,
0.30042406448335546,
0.3073179390878597,
0.3123289888974917,
0.315644660668653,
0.31748243147528477,
0.318085854695976,
0.3177238599139489,
0.3166895501164059,
0.3152947843288614,
0.3138575623882677,
0.312681085984112,
0.3120264417981594,
0.3120843842175515,
0.3129539982748684
],
[
0.1838920709652483,
0.17981717315673607,
0.1811249585475455,
0.18611409439677068,
0.19256383073407848,
0.19847781720624397,
0.20240456468010412,
0.20348991078226986,
0.20143844221844712,
0.19646265169420415,
0.18922908362092752,
0.18077530107104609,
0.17235026635358056,
0.16512494496794594,
0.1597710043580643,
0.15613351395963207,
0.1534869984907798,
0.15119468081013857,
0.14913271524636182,
0.1476528633606992,
0.14714353135920683,
0.14759851199473192,
0.14875726584941484,
0.15046365209888743,
0.15291961131621304,
0.15680616553188587,
0.16317019025588414,
0.17294431172178604,
0.18625523051225049,
0.20223294159895708,
0.21955355962440892,
0.2369535888586894,
0.2534609511458253,
0.26843080720511286,
0.28149682971061246,
0.29250181214970794,
0.30143427188236177,
0.30837920591714696,
0.31348365289220304,
0.3169350331556733,
0.31894936300781135,
0.31976612794705767,
0.31964641886030326,
0.3188708359281661,
0.3177338363170631,
0.31653198452056314,
0.3155452842057344,
0.3150134211764296,
0.31511164411636544,
0.3159327861201771
]
]
},
{
"hoverinfo": "text",
"legendgroup": "In-sample",
"marker": {
"color": "black",
"opacity": 0.5,
"symbol": 1
},
"mode": "markers",
"name": "In-sample",
"text": [
"Arm 0_0
accuracy: 0.846667 (SEM: None)
lr: 2.12166e-05
momentum: 0.71107",
"Arm 1_0
accuracy: 0.876 (SEM: None)
lr: 3.4181e-05
momentum: 0.952158",
"Arm 2_0
accuracy: 0.1015 (SEM: None)
lr: 0.30446
momentum: 0.426471",
"Arm 3_0
accuracy: 0.887167 (SEM: None)
lr: 7.35479e-05
momentum: 0.243055",
"Arm 4_0
accuracy: 0.929 (SEM: None)
lr: 0.000399505
momentum: 0.41368",
"Arm 5_0
accuracy: 0.951167 (SEM: None)
lr: 0.000356141
momentum: 0.825244",
"Arm 6_0
accuracy: 0.919167 (SEM: None)
lr: 0.000161962
momentum: 0.633514",
"Arm 7_0
accuracy: 0.198833 (SEM: None)
lr: 1e-06
momentum: 0",
"Arm 8_0
accuracy: 0.896667 (SEM: None)
lr: 0.000531213
momentum: 0",
"Arm 9_0
accuracy: 0.099 (SEM: None)
lr: 0.00113386
momentum: 1",
"Arm 10_0
accuracy: 0.660167 (SEM: None)
lr: 1.08404e-06
momentum: 1",
"Arm 11_0
accuracy: 0.109833 (SEM: None)
lr: 0.00404795
momentum: 0",
"Arm 12_0
accuracy: 0.916167 (SEM: None)
lr: 0.000213559
momentum: 0",
"Arm 13_0
accuracy: 0.099 (SEM: None)
lr: 0.000150634
momentum: 1",
"Arm 14_0
accuracy: 0.8755 (SEM: None)
lr: 5.73441e-05
momentum: 0.473446",
"Arm 15_0
accuracy: 0.412333 (SEM: None)
lr: 2.12047e-06
momentum: 0.647815",
"Arm 16_0
accuracy: 0.923833 (SEM: None)
lr: 0.000224188
momentum: 0.248682",
"Arm 17_0
accuracy: 0.8245 (SEM: None)
lr: 5.02348e-05
momentum: 0",
"Arm 18_0
accuracy: 0.109833 (SEM: None)
lr: 0.000817008
momentum: 0.57685"
],
"type": "scatter",
"x": [
2.1216593661487738e-05,
3.418102921796241e-05,
0.30446023318884685,
7.354792459527615e-05,
0.0003995053549220097,
0.0003561405577577039,
0.0001619618060294094,
1e-06,
0.0005312131964898637,
0.0011338627998790328,
1.0840398013430348e-06,
0.004047947936947224,
0.00021355925366393599,
0.00015063441278614041,
5.7344146359053686e-05,
2.1204736705284946e-06,
0.00022418753489441637,
5.023480858655514e-05,
0.0008170083978651174
],
"xaxis": "x",
"y": [
0.7110699415206909,
0.9521583393216133,
0.42647070437669754,
0.2430550940334797,
0.4136803150177002,
0.8252436209762177,
0.6335143315661393,
0.0,
0.0,
1.0,
1.0,
0.0,
0.0,
1.0,
0.4734459373341858,
0.6478150303867298,
0.24868177351052298,
0.0,
0.5768499932962745
],
"yaxis": "y"
},
{
"hoverinfo": "text",
"legendgroup": "In-sample",
"marker": {
"color": "black",
"opacity": 0.5,
"symbol": 1
},
"mode": "markers",
"name": "In-sample",
"showlegend": false,
"text": [
"Arm 0_0
accuracy: 0.846667 (SEM: None)
lr: 2.12166e-05
momentum: 0.71107",
"Arm 1_0
accuracy: 0.876 (SEM: None)
lr: 3.4181e-05
momentum: 0.952158",
"Arm 2_0
accuracy: 0.1015 (SEM: None)
lr: 0.30446
momentum: 0.426471",
"Arm 3_0
accuracy: 0.887167 (SEM: None)
lr: 7.35479e-05
momentum: 0.243055",
"Arm 4_0
accuracy: 0.929 (SEM: None)
lr: 0.000399505
momentum: 0.41368",
"Arm 5_0
accuracy: 0.951167 (SEM: None)
lr: 0.000356141
momentum: 0.825244",
"Arm 6_0
accuracy: 0.919167 (SEM: None)
lr: 0.000161962
momentum: 0.633514",
"Arm 7_0
accuracy: 0.198833 (SEM: None)
lr: 1e-06
momentum: 0",
"Arm 8_0
accuracy: 0.896667 (SEM: None)
lr: 0.000531213
momentum: 0",
"Arm 9_0
accuracy: 0.099 (SEM: None)
lr: 0.00113386
momentum: 1",
"Arm 10_0
accuracy: 0.660167 (SEM: None)
lr: 1.08404e-06
momentum: 1",
"Arm 11_0
accuracy: 0.109833 (SEM: None)
lr: 0.00404795
momentum: 0",
"Arm 12_0
accuracy: 0.916167 (SEM: None)
lr: 0.000213559
momentum: 0",
"Arm 13_0
accuracy: 0.099 (SEM: None)
lr: 0.000150634
momentum: 1",
"Arm 14_0
accuracy: 0.8755 (SEM: None)
lr: 5.73441e-05
momentum: 0.473446",
"Arm 15_0
accuracy: 0.412333 (SEM: None)
lr: 2.12047e-06
momentum: 0.647815",
"Arm 16_0
accuracy: 0.923833 (SEM: None)
lr: 0.000224188
momentum: 0.248682",
"Arm 17_0
accuracy: 0.8245 (SEM: None)
lr: 5.02348e-05
momentum: 0",
"Arm 18_0
accuracy: 0.109833 (SEM: None)
lr: 0.000817008
momentum: 0.57685"
],
"type": "scatter",
"x": [
2.1216593661487738e-05,
3.418102921796241e-05,
0.30446023318884685,
7.354792459527615e-05,
0.0003995053549220097,
0.0003561405577577039,
0.0001619618060294094,
1e-06,
0.0005312131964898637,
0.0011338627998790328,
1.0840398013430348e-06,
0.004047947936947224,
0.00021355925366393599,
0.00015063441278614041,
5.7344146359053686e-05,
2.1204736705284946e-06,
0.00022418753489441637,
5.023480858655514e-05,
0.0008170083978651174
],
"xaxis": "x2",
"y": [
0.7110699415206909,
0.9521583393216133,
0.42647070437669754,
0.2430550940334797,
0.4136803150177002,
0.8252436209762177,
0.6335143315661393,
0.0,
0.0,
1.0,
1.0,
0.0,
0.0,
1.0,
0.4734459373341858,
0.6478150303867298,
0.24868177351052298,
0.0,
0.5768499932962745
],
"yaxis": "y2"
}
],
"layout": {
"annotations": [
{
"font": {
"size": 14
},
"showarrow": false,
"text": "Mean",
"x": 0.25,
"xanchor": "center",
"xref": "paper",
"y": 1,
"yanchor": "bottom",
"yref": "paper"
},
{
"font": {
"size": 14
},
"showarrow": false,
"text": "Standard Error",
"x": 0.8,
"xanchor": "center",
"xref": "paper",
"y": 1,
"yanchor": "bottom",
"yref": "paper"
}
],
"autosize": false,
"height": 450,
"hovermode": "closest",
"legend": {
"orientation": "h",
"x": 0,
"y": -0.25
},
"margin": {
"b": 100,
"l": 35,
"pad": 0,
"r": 35,
"t": 35
},
"template": {
"data": {
"bar": [
{
"error_x": {
"color": "#2a3f5f"
},
"error_y": {
"color": "#2a3f5f"
},
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
},
"pattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
}
},
"type": "bar"
}
],
"barpolar": [
{
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
},
"pattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
}
},
"type": "barpolar"
}
],
"carpet": [
{
"aaxis": {
"endlinecolor": "#2a3f5f",
"gridcolor": "white",
"linecolor": "white",
"minorgridcolor": "white",
"startlinecolor": "#2a3f5f"
},
"baxis": {
"endlinecolor": "#2a3f5f",
"gridcolor": "white",
"linecolor": "white",
"minorgridcolor": "white",
"startlinecolor": "#2a3f5f"
},
"type": "carpet"
}
],
"choropleth": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "choropleth"
}
],
"contour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "contour"
}
],
"contourcarpet": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "contourcarpet"
}
],
"heatmap": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "heatmap"
}
],
"heatmapgl": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "heatmapgl"
}
],
"histogram": [
{
"marker": {
"pattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
}
},
"type": "histogram"
}
],
"histogram2d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "histogram2d"
}
],
"histogram2dcontour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "histogram2dcontour"
}
],
"mesh3d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "mesh3d"
}
],
"parcoords": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "parcoords"
}
],
"pie": [
{
"automargin": true,
"type": "pie"
}
],
"scatter": [
{
"fillpattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
},
"type": "scatter"
}
],
"scatter3d": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatter3d"
}
],
"scattercarpet": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattercarpet"
}
],
"scattergeo": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergeo"
}
],
"scattergl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergl"
}
],
"scattermapbox": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattermapbox"
}
],
"scatterpolar": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolar"
}
],
"scatterpolargl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolargl"
}
],
"scatterternary": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterternary"
}
],
"surface": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "surface"
}
],
"table": [
{
"cells": {
"fill": {
"color": "#EBF0F8"
},
"line": {
"color": "white"
}
},
"header": {
"fill": {
"color": "#C8D4E3"
},
"line": {
"color": "white"
}
},
"type": "table"
}
]
},
"layout": {
"annotationdefaults": {
"arrowcolor": "#2a3f5f",
"arrowhead": 0,
"arrowwidth": 1
},
"autotypenumbers": "strict",
"coloraxis": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"colorscale": {
"diverging": [
[
0,
"#8e0152"
],
[
0.1,
"#c51b7d"
],
[
0.2,
"#de77ae"
],
[
0.3,
"#f1b6da"
],
[
0.4,
"#fde0ef"
],
[
0.5,
"#f7f7f7"
],
[
0.6,
"#e6f5d0"
],
[
0.7,
"#b8e186"
],
[
0.8,
"#7fbc41"
],
[
0.9,
"#4d9221"
],
[
1,
"#276419"
]
],
"sequential": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"sequentialminus": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
]
},
"colorway": [
"#636efa",
"#EF553B",
"#00cc96",
"#ab63fa",
"#FFA15A",
"#19d3f3",
"#FF6692",
"#B6E880",
"#FF97FF",
"#FECB52"
],
"font": {
"color": "#2a3f5f"
},
"geo": {
"bgcolor": "white",
"lakecolor": "white",
"landcolor": "#E5ECF6",
"showlakes": true,
"showland": true,
"subunitcolor": "white"
},
"hoverlabel": {
"align": "left"
},
"hovermode": "closest",
"mapbox": {
"style": "light"
},
"paper_bgcolor": "white",
"plot_bgcolor": "#E5ECF6",
"polar": {
"angularaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"radialaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"scene": {
"xaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"yaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"zaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
}
},
"shapedefaults": {
"line": {
"color": "#2a3f5f"
}
},
"ternary": {
"aaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"baxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"caxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"title": {
"x": 0.05
},
"xaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
},
"yaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
}
}
},
"width": 950,
"xaxis": {
"anchor": "y",
"autorange": false,
"domain": [
0.05,
0.45
],
"exponentformat": "e",
"range": [
-6.0,
-0.3979400086720376
],
"tickfont": {
"size": 11
},
"tickmode": "auto",
"title": {
"text": "lr"
},
"type": "log"
},
"xaxis2": {
"anchor": "y2",
"autorange": false,
"domain": [
0.6,
1
],
"exponentformat": "e",
"range": [
-6.0,
-0.3979400086720376
],
"tickfont": {
"size": 11
},
"tickmode": "auto",
"title": {
"text": "lr"
},
"type": "log"
},
"yaxis": {
"anchor": "x",
"autorange": false,
"domain": [
0,
1
],
"exponentformat": "e",
"range": [
0.0,
1.0
],
"tickfont": {
"size": 11
},
"tickmode": "auto",
"title": {
"text": "momentum"
},
"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": [
"