{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Visualizations\n", "\n", "This tutorial illustrates the core visualization utilities available in Ax." ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "data": { "text/html": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-08 19:00:58] ax.utils.notebook.plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.\n" ] }, { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "import numpy as np\n", "from ax import (\n", " Arm,\n", " ComparisonOp,\n", " RangeParameter,\n", " ParameterType,\n", " SearchSpace, \n", " SimpleExperiment, \n", " OutcomeConstraint, \n", ")\n", "\n", "from ax.metrics.l2norm import L2NormMetric\n", "from ax.modelbridge.cross_validation import cross_validate\n", "from ax.modelbridge.registry import Models\n", "from ax.plot.contour import interact_contour, plot_contour\n", "from ax.plot.diagnostic import interact_cross_validation\n", "from ax.plot.scatter import(\n", " interact_fitted,\n", " plot_objective_vs_constraints,\n", " tile_fitted,\n", ")\n", "from ax.plot.slice import plot_slice\n", "from ax.utils.measurement.synthetic_functions import hartmann6\n", "from ax.utils.notebook.plotting import render, init_notebook_plotting\n", "\n", "init_notebook_plotting()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 1. Create experiment and run optimization\n", "\n", "The vizualizations require an experiment object and a model fit on the evaluated data. The routine below is a copy of the Developer API tutorial, so the explanation here is omitted. Retrieving the experiment and model objects for each API paradigm is shown in the respective tutorials" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### 1a. Define search space and evaluation function" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "noise_sd = 0.1\n", "param_names = [f\"x{i+1}\" for i in range(6)] # x1, x2, ..., x6\n", "\n", "def noisy_hartmann_evaluation_function(parameterization):\n", " x = np.array([parameterization.get(p_name) for p_name in param_names])\n", " noise1, noise2 = np.random.normal(0, noise_sd, 2)\n", "\n", " return {\n", " \"hartmann6\": (hartmann6(x) + noise1, noise_sd),\n", " \"l2norm\": (np.sqrt((x ** 2).sum()) + noise2, noise_sd)\n", " }\n", "\n", "hartmann_search_space = SearchSpace(\n", " parameters=[\n", " RangeParameter(\n", " name=p_name, parameter_type=ParameterType.FLOAT, lower=0.0, upper=1.0\n", " )\n", " for p_name in param_names\n", " ]\n", ")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### 1b. Create Experiment" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "exp = SimpleExperiment(\n", " name=\"test_branin\",\n", " search_space=hartmann_search_space,\n", " evaluation_function=noisy_hartmann_evaluation_function,\n", " objective_name=\"hartmann6\",\n", " minimize=True,\n", " outcome_constraints=[\n", " OutcomeConstraint(\n", " metric=L2NormMetric(\n", " name=\"l2norm\", param_names=param_names, noise_sd=0.2\n", " ),\n", " op=ComparisonOp.LEQ,\n", " bound=1.25,\n", " relative=False,\n", " )\n", " ],\n", ")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### 1c. Run the optimization and fit a GP on all data\n", "\n", "After doing (`N_BATCHES=15`) rounds of optimization, fit final GP using all data to feed into the plots." ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "N_RANDOM = 5\n", "BATCH_SIZE = 1\n", "N_BATCHES = 15\n", "\n", "sobol = Models.SOBOL(exp.search_space)\n", "exp.new_batch_trial(generator_run=sobol.gen(N_RANDOM))\n", "\n", "for i in range(N_BATCHES):\n", " intermediate_gp = Models.GPEI(experiment=exp, data=exp.eval())\n", " exp.new_trial(generator_run=intermediate_gp.gen(BATCH_SIZE))\n", "\n", "model = Models.GPEI(experiment=exp, data=exp.eval())" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 2. Contour plots\n", "\n", "The plot below shows the response surface for `hartmann6` metric as a function of the `x1`, `x2` parameters.\n", "\n", "The other parameters are fixed in the middle of their respective ranges, which in this example is 0.5 for all of them." ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "autocolorscale": false, "autocontour": true, "colorbar": { "tickfont": { "size": 8 }, "ticksuffix": "", "x": 0.45, "y": 0.5 }, "colorscale": [ [ 0.0, "rgb(247,252,253)" ], [ 0.125, "rgb(229,245,249)" ], [ 0.25, "rgb(204,236,230)" ], [ 0.375, "rgb(153,216,201)" ], [ 0.5, "rgb(102,194,164)" ], [ 0.625, "rgb(65,174,118)" ], [ 0.75, "rgb(35,139,69)" ], [ 0.875, "rgb(0,109,44)" ], [ 1.0, "rgb(0,68,27)" ] ], "contours": { "coloring": "heatmap" }, "hoverinfo": "x+y+z", "ncontours": 25, "type": "contour", "x": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "xaxis": "x", "y": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "yaxis": "y", "z": [ [ -0.4753301583895515, -0.46896647789267765, -0.4626990325644931, -0.45662489588520705, -0.4508476954026206, -0.4454745755231706, -0.4406123343861079, -0.43636280451660636, -0.43281763880490653, -0.43005276738951936, -0.4281228955507608, -0.4270565007087872, -0.4268518375143999, -0.4274744537227555, -0.42885664206970553, -0.43089910271550513, -0.433474880675647, -0.4364354018982981, -0.43961819876397, -0.4428557296568494, -0.4459845874183985, -0.4488543713414326, -0.4513355624863624, -0.453325873640801, -0.4547547163854804, -0.4555856107521161, -0.45581653472582206, -0.45547835572913864, -0.45463159651802343, -0.4533618624428528, -0.451774298878856, -0.4499874618980715, -0.4481269772376164, -0.4463193368131695, -0.44468614187159083, -0.4433390500674057, -0.4423756228252751, -0.4418762022669256, -0.44190187740449804, -0.4424935315451328, -0.44367190145016067, -0.44543852788132066, -0.44777743984936835, -0.45065739277794425, -0.45403447388437534, -0.45785489483366293, -0.4620578094908543, -0.46657802009892113, -0.47134846503171124, -0.47630241228366565 ], [ -0.4722232893782121, -0.4656791872870438, -0.4592507712409317, -0.4530418382292911, -0.4471630788381291, -0.4417287658205953, -0.43685253731625373, -0.4326423490255662, -0.429194771364674, -0.42658892371252, -0.4248804554584982, -0.4240960835252221, -0.42422925489849517, -0.42523749710166414, -0.4270419328889954, -0.42952926480379205, -0.43255629609793544, -0.43595678022534967, -0.43955012653817205, -0.4431512802405968, -0.446580974227879, -0.4496755340645733, -0.4522954988569867, -0.4543324771052819, -0.4557138557960738, -0.45640519054711715, -0.45641029803751687, -0.4557692319902751, -0.4545544428419428, -0.4528654987641769, -0.4508227864875316, -0.448560620975337, -0.446220179813545, -0.44394264634431346, -0.4418628987242421, -0.44010402290513007, -0.4387728585344872, -0.4379567110752862, -0.43772128516359543, -0.438109818357193, -0.4391433262971056, -0.4408218147297176, -0.4431262743412232, -0.4460212526106211, -0.44945779255354035, -0.45337653918932763, -0.4577108374377361, -0.462389675938615, -0.46734036598106155, -0.47249087979139315 ], [ -0.46924819461158584, -0.46254517356817226, -0.45598076852659286, -0.4496659044150222, -0.44371871439977806, -0.4382609249714058, -0.4334132500189303, -0.429289873744896, -0.4259922148412143, -0.4236022936654833, -0.4221761560901425, -0.4217379207970824, -0.42227508433456973, -0.42373571325643367, -0.42602805550972467, -0.4290229099759506, -0.4325588211015543, -0.43644985340105835, -0.4404954004065993, -0.44449124708650145, -0.44824097328217993, -0.4515667748680803, -0.45431888073626503, -0.4563829292746593, -0.4576848996310685, -0.45819343271434687, -0.45791959424089335, -0.4569143082086162, -0.45526381634935675, -0.45308359860923986, -0.450511228055809, -0.447698639188046, -0.4448042691523282, -0.44198549263996867, -0.4393917170384809, -0.4371584372431576, -0.4354024717806295, -0.4342185167839825, -0.43367706648611537, -0.43382366406507833, -0.43467937113851685, -0.43624228361118633, -0.4384898799441792, -0.44138196694903953, -0.4448639871716922, -0.4488704679727278, -0.4533284212752611, -0.4581605397954662, -0.4632880757126625, -0.4686333272042851 ], [ -0.4664336623197789, -0.4595971058387174, -0.45292603790153363, -0.4465389525779788, -0.4405618363116788, -0.4351242163001925, -0.4303541252083285, -0.42637206875566, -0.4232842072702052, -0.42117510618992426, -0.4201005581782975, -0.42008110701635704, -0.4210969804201903, -0.42308513434640393, -0.42593900216562286, -0.42951132311500984, -0.4336201152582799, -0.43805750316871017, -0.44260077021623134, -0.4470247409578345, -0.45111445620915913, -0.45467710027451824, -0.45755226540549376, -0.45961985871785926, -0.4608052261003315, -0.46108134155034985, -0.46046815414842146, -0.4590293777624297, -0.456867143406533, -0.45411501413848443, -0.45092989647011783, -0.4474833811237995, -0.443953018869653, -0.4405139906300026, -0.4373315688294417, -0.4345546912664868, -0.43231088163928133, -0.4307026555326756, -0.4298054522800332, -0.4296670383904211, -0.43030824456025707, -0.4317248323060927, -0.43389024255797914, -0.43675895887837135, -0.4402702210652658, -0.4443518470197332, -0.4489239566024401, -0.4539024349447929, -0.4592020188783601, -0.4647389343695967 ], [ -0.4638099587257356, -0.45686935061805545, -0.4501255426402557, -0.44370508166805456, -0.43774225551234425, -0.4323747670544309, -0.42773822409075235, -0.4239595394558313, -0.4211494738481816, -0.41939471378356497, -0.41875004214642053, -0.41923130211712145, -0.4208099425062284, -0.42340992809418965, -0.4269076755634045, -0.43113542736106947, -0.43588812433066715, -0.44093343425664844, -0.4460242077590646, -0.4509123364671279, -0.4553628336804978, -0.4591669651777701, -0.46215341293128187, -0.4641967157672817, -0.46522254426774867, -0.4652096801642662, -0.46418884336571353, -0.4622387199955458, -0.4594796861675454, -0.45606580051733303, -0.45217566593655945, -0.44800275096554554, -0.44374572500270615, -0.4395993061209633, -0.4357460494713412, -0.43234941955648654, -0.4295483925707577, -0.427453728693969, -0.42614594435286324, -0.4256749088692753, -0.42606089732443353, -0.42729685971471865, -0.4293516208388384, -0.4321737075831149, -0.4356955084635221, -0.4398374996135721, -0.4445123153257706, -0.4496284927975642, -0.455093773615306, -0.46081789382133853 ], [ -0.4614087344830382, -0.45439786391850157, -0.4476200718739809, -0.4412104902430627, -0.43531220063520903, -0.43007149209812146, -0.4256318247402828, -0.42212660335851226, -0.41967101787854877, -0.4183533853182846, -0.41822661225643376, -0.4193005575413675, -0.4215361734499474, -0.42484229894055847, -0.4290758397305996, -0.43404578824829, -0.4395211366970935, -0.44524227720468024, -0.4509350456928096, -0.4563262335595488, -0.46115922443284796, -0.46520843482996055, -0.4682914288003901, -0.4702778870881139, -0.4710949761609784, -0.4707290200947156, -0.46922368320048036, -0.4666750990693431, -0.4632245277296134, -0.4590491962758716, -0.45435199595612263, -0.44935068720729143, -0.44426721678520154, -0.4393176858985015, -0.4347034283431048, -0.43060356363511687, -0.4271692826863902, -0.42452000556216785, -0.4227414285383553, -0.4218853601707637, -0.42197114374635203, -0.4229883855700025, -0.4249006611457158, -0.42764985616073203, -0.43116081357852765, -0.435345995952203, -0.4401099252616867, -0.4453532228857686, -0.4509761325247168, -0.4568814635931677 ], [ -0.4592629215830655, -0.4522200726669594, -0.44545210452948125, -0.4391033212395876, -0.4333261425676451, -0.4282758982508441, -0.4241042076704553, -0.4209510602071691, -0.41893588088947165, -0.4181480638522761, -0.4186376618171255, -0.42040709994566927, -0.42340489329295616, -0.42752234214589513, -0.43259402238568634, -0.43840256807867917, -0.44468778827488187, -0.45115963685209937, -0.4575140576584442, -0.4634503538428354, -0.46868855101626683, -0.4729852641660237, -0.4761468140284839, -0.47803870832924233, -0.47859102896852246, -0.4777996751798157, -0.4757237526525142, -0.4724796435904113, -0.4682324405476459, -0.463185491890439, -0.4575688104917155, -0.4516270609780906, -0.44560778031178394, -0.43975041031692363, -0.4342766314022808, -0.4293823833492505, -0.425231840976825, -0.4219534821871931, -0.4196382501646987, -0.41833968100129604, -0.41807575504293015, -0.4188321457788611, -0.42056649118547274, -0.4232133007534722, -0.42668913328817837, -0.4308977282594062, -0.43573483724153594, -0.4410925720643539, -0.4468631544535282, -0.4529420122961205 ], [ -0.45740662198516313, -0.45037474736441085, -0.4436656638106313, -0.43743349629076844, -0.4318406071742611, -0.427051874955479, -0.42322742541731784, -0.42051394332807535, -0.41903488084633556, -0.41888009917617386, -0.4200957097406588, -0.42267508303608725, -0.4265521181369629, -0.43159786042648807, -0.4376213772164186, -0.4443754371584181, -0.451567020223018, -0.4588720878454653, -0.4659534775094427, -0.4724803658461312, -0.4781475523323717, -0.4826928805712982, -0.48591140521292475, -0.48766535423641333, -0.4878894343158764, -0.48659149505340427, -0.4838489459965465, -0.4798015813445389, -0.47464161281907247, -0.46860176210523763, -0.46194224894632185, -0.45493745587211754, -0.44786297435086464, -0.44098364900887654, -0.43454313766034103, -0.42875539234859716, -0.4237983379677732, -0.41980988196624125, -0.4168862385707135, -0.4150824063561309, -0.4144145134446593, -0.414863653198857, -0.41638078316596827, -0.41889225279415077, -0.42230555618051646, -0.42651496522375987, -0.43140677427904994, -0.43686396830251306, -0.4427702031912599, -0.4490130532329928 ], [ -0.4558749886396456, -0.448901867245888, -0.4423061642332813, -0.43625254250678935, -0.4309139801524964, -0.4264654764157443, -0.42307606252356744, -0.42089925986660415, -0.4200623372823331, -0.42065496490771603, -0.4227181189515381, -0.42623431831105707, -0.4311204147578185, -0.4372241528311511, -0.444325514280971, -0.45214344792531924, -0.4603479925604854, -0.468577116737414, -0.47645695309033176, -0.4836236301305019, -0.4897446992542358, -0.4945382519463295, -0.4977881824396073, -0.49935458092719043, -0.4991788269868602, -0.49728348921245935, -0.4937675563342636, -0.488797799669483, -0.48259720409106, -0.47543143436278457, -0.46759426268496695, -0.45939280450662, -0.4511333150520609, -0.4431081979616296, -0.43558476924893164, -0.4287961987205844, -0.422934912174056, -0.4181485816180128, -0.4145386655123833, -0.41216130115826566, -0.41103021430089437, -0.4111212122670398, -0.4123777760553402, -0.4147172651296953, -0.4180372898573328, -0.42222187874825057, -0.42714715680040616, -0.432686343999132, -0.43871396885789915, -0.44510926406639717 ], [ -0.4547040986748725, -0.44784247816675005, -0.4414202520510997, -0.43561341333380055, -0.430606306577789, -0.4265846988470732, -0.42372699075840004, -0.42219372597208693, -0.42211579058630955, -0.42358196837093764, -0.42662680556272714, -0.4312199938427361, -0.43725863970970513, -0.4445637835329177, -0.45288230436024524, -0.4618948751447909, -0.4712299534291169, -0.48048300622647266, -0.48923942535675957, -0.49709904995621845, -0.5036999939489308, -0.5087396159762445, -0.5119909169445307, -0.5133132891716667, -0.512657229940847, -0.5100632475580449, -0.5056556509892494, -0.49963219804219094, -0.4922506978869421, -0.4838136626827185, -0.47465202814117413, -0.465108854588691, -0.4555238040320677, -0.4462190740692731, -0.43748735272260686, -0.4295822298821095, -0.4227113528436146, -0.4170324443842328, -0.4126521206420013, -0.4096272698066621, -0.4079686020515043, -0.4076458747152105, -0.4085942455422664, -0.4107212119586259, -0.41391364773237216, -0.41804453547864173, -0.42297909754983243, -0.4285801334752133, -0.43471246755972826, -0.4412464884214278 ], [ -0.4539308173056176, -0.44723854198453195, -0.44105563818923477, -0.43557030310463274, -0.4309790854011437, -0.4274792538959169, -0.4252591215328032, -0.42448649985064324, -0.42529571929113885, -0.42777395786482875, -0.4319479438678444, -0.4377723861044436, -0.4451216672447038, -0.45378633341529606, -0.4634756578554051, -0.4738270196164507, -0.4844220574529605, -0.49480865026398946, -0.5045269163038844, -0.5131368054951058, -0.5202446255945918, -0.5255260386051503, -0.5287436228046329, -0.5297578704196655, -0.5285313060843237, -0.5251261177401343, -0.5196961998914893, -0.5124747955229927, -0.5037590159047911, -0.49389247363982736, -0.48324714527570145, -0.472205435288098, -0.4611432725263316, -0.4504149415892307, -0.44034022763652914, -0.4311943192796639, -0.4232007579983741, -0.4165275409006055, -0.4112862859466624, -0.4075341749923369, -0.4052782249265905, -0.40448132275867854, -0.40506940961139004, -0.4069392119974993, -0.4099659861827176, -0.41401084532591925, -0.41892735963134653, -0.4245672392203159, -0.4307850148685557, -0.437441715817398 ], [ -0.4535926495181599, -0.44713277435224774, -0.44126092054734034, -0.43617845218765994, -0.4320950559569514, -0.42922033554117855, -0.4277531531668419, -0.4278689107313125, -0.4297052537681332, -0.4333470259433252, -0.4388116656896768, -0.4460365628282861, -0.4548701028316269, -0.4650681292607739, -0.47629727021121404, -0.48814596368082586, -0.5001431169822939, -0.5117832786444922, -0.5225561987326397, -0.531977938997344, -0.5396204447177828, -0.5451367596655374, -0.5482797676065954, -0.5489132889790589, -0.547015330087457, -0.5426740937072578, -0.5360779133694522, -0.527500552046839, -0.5172833555837664, -0.5058156490259611, -0.49351458858173536, -0.4808054934601367, -0.4681035132271343, -0.4557973439594609, -0.4442355775085238, -0.43371613154491806, -0.4244790459057177, -0.41670273735918184, -0.4105035902938181, -0.4059385485098035, -0.4030101927329346, -0.40167366578040586, -0.4018447574195343, -0.40340848418817643, -0.406227582915363, -0.4101504592846905, -0.4150182712920589, -0.4206709616495188, -0.42695216887328225, -0.4337130365141213 ], [ -0.45372757485824033, -0.44756846565411723, -0.4420853898111119, -0.4374939362930168, -0.43401796947817495, -0.43188037293349746, -0.431291304940288, -0.432434175152274, -0.4354498771659403, -0.44042019884866357, -0.44735174327132543, -0.45616206469801224, -0.4666699681031603, -0.47859193366859065, -0.49154631349841593, -0.5050662538817137, -0.5186212566003832, -0.5316460559620586, -0.5435743070356911, -0.5538737446418986, -0.5620792052143486, -0.5678202713537019, -0.5708411860526454, -0.5710118443125052, -0.5683298258065828, -0.5629143638505469, -0.5549937413543149, -0.5448878595185427, -0.5329877109094214, -0.5197333086803819, -0.5055913772912393, -0.49103386906278823, -0.47651817140144237, -0.4624697144658676, -0.44926755830652754, -0.4372334027613971, -0.42662429810694324, -0.4176291305849582, -0.41036872527050816, -0.40489917689534627, -0.4012178222731497, -0.39927113680958093, -0.39896378952001954, -0.40016812568881055, -0.4027334478895681, -0.40649460935098825, -0.4112795915529639, -0.416915887605827, -0.42323563899283, -0.4300795682489993 ], [ -0.454373858786427, -0.4485892774089466, -0.44357880984853537, -0.4395734296490572, -0.4368123338508101, -0.4355327558069988, -0.4359570228563203, -0.43827708369647644, -0.44263709482946645, -0.44911509131679184, -0.45770523270774177, -0.4683025403178671, -0.4806923286273155, -0.4945465634443793, -0.5094290375869674, -0.5248104692842257, -0.5400934239637127, -0.5546455023089001, -0.5678378308009875, -0.5790848999408382, -0.5878815072537791, -0.593833060863139, -0.5966766279956723, -0.5962915471589278, -0.5926998069307661, -0.5860574614343195, -0.5766389823217144, -0.5648166566784678, -0.5510370356521794, -0.5357961572385401, -0.5196149323140429, -0.5030157803312312, -0.48650136824294754, -0.4705361406214419, -0.45553120091322086, -0.4418329737219828, -0.42971591327302683, -0.41937931073730605, -0.410948004563783, -0.40447654578251235, -0.39995615601502954, -0.3973236761798702, -0.3964716585737016, -0.3972588029697042, -0.39952005917818223, -0.4030758843268363, -0.4077403216983413, -0.4133277336546133, -0.4196581574488081, -0.4265613524455647 ], [ -0.45556983220039804, -0.45023900399680983, -0.44579116055153967, -0.4424739276374039, -0.44054311462332074, -0.44025151259627715, -0.44183463407167034, -0.4454936316970264, -0.4513760420939332, -0.45955549288346154, -0.47001204014072306, -0.4826152925685032, -0.497112818180802, -0.5131263852823578, -0.5301582244232952, -0.5476086132768463, -0.564804688918018, -0.5810386618737304, -0.5956119121784018, -0.6078802556371918, -0.6172953558823946, -0.6234379322611021, -0.6260398588215026, -0.6249940325518286, -0.6203525508190479, -0.6123149551493006, -0.6012089478756679, -0.5874661212606038, -0.5715950092777677, -0.5541533606235074, -0.5357210901496914, -0.5168749923019891, -0.4981660325351429, -0.4800998601859079, -0.46312106695033717, -0.4476015968203637, -0.4338335537571665, -0.42202643480264057, -0.4123085514673659, -0.40473212910411793, -0.399281341777735, -0.39588239180889406, -0.39441470163574355, -0.39472234866069167, -0.39662501783147586, -0.39992793681672767, -0.4044304589783452, -0.4099331413811189, -0.4162433112843231, -0.4231792182946148 ], [ -0.4573536290148177, -0.45256128722995226, -0.44877232786092214, -0.4462524103706922, -0.4452753699754768, -0.44611091462127006, -0.44900891845751323, -0.4541805569886377, -0.46177698778185117, -0.4718668370675563, -0.484414356065042, -0.49926067562714094, -0.5161109926344385, -0.5345306155100764, -0.5539524156628115, -0.5736972425290898, -0.5930072381711993, -0.6110899209247167, -0.6271688438928482, -0.640535178335329, -0.6505942296179883, -0.6569018051055406, -0.6591872159973966, -0.6573619224506642, -0.6515148288135648, -0.6418966142769946, -0.6288961283438663, -0.613011894638229, -0.5948213690490742, -0.5749500224511848, -0.5540417489757792, -0.532731647512876, -0.5116219219587199, -0.49126147187328373, -0.47212964223614273, -0.4546245018452124, -0.4390558710697958, -0.42564309814428514, -0.4145173029587963, -0.4057275128997666, -0.39924986460294987, -0.39499888870541855, -0.3928398580209338, -0.39260125944311586, -0.39408661817278623, -0.3970851187994522, -0.401380690671848, -0.4067594234189913, -0.41301533407455593, -0.41995461413416346 ], [ -0.45976287032001095, -0.4555992693221431, -0.45257172297609616, -0.45096542497890235, -0.45107379239254564, -0.45318497319921724, -0.45756455737063884, -0.4644347371845061, -0.4739506776548579, -0.48617548911641806, -0.5010558848175037, -0.5184012612567268, -0.5378694237745909, -0.5589623260805707, -0.5810348078554, -0.6033182196350244, -0.6249589450598214, -0.6450693489546357, -0.6627861379481064, -0.6773293151321205, -0.6880545312798585, -0.694492869086841, -0.6963745118178788, -0.6936355415055617, -0.6864095114714932, -0.6750069819223934, -0.6598868068208634, -0.6416227985619765, -0.620868777882901, -0.5983242375927154, -0.574702129733784, -0.5506997455048537, -0.5269733231048066, -0.5041168512860108, -0.4826454593074283, -0.4629837127231913, -0.44545900288229556, -0.4302999973582209, -0.4176398243785553, -0.4075233486780985, -0.39991762676445997, -0.3947244646788681, -0.39179397068839017, -0.3909380937788274, -0.39194333301555373, -0.39458204578995826, -0.39862202887936826, -0.40383426078208395, -0.409998857977367, -0.41690940675650134 ], [ -0.4628342828083871, -0.45939516846768336, -0.457237810729608, -0.4566685614556214, -0.45800212570846743, -0.4615467909471229, -0.46758541219299876, -0.4763523890664203, -0.4880074494070141, -0.502607772293947, -0.5200807775333578, -0.5402006712829441, -0.5625724191380006, -0.586627032576861, -0.6116316811812641, -0.6367169464371476, -0.6609213636641427, -0.6832504065613372, -0.7027439060403511, -0.7185436229917217, -0.7299522706057688, -0.7364769561808531, -0.7378531600385718, -0.73404888258633, -0.7252514652295843, -0.7118412920004478, -0.6943570745525869, -0.6734570113741387, -0.6498792068330854, -0.6244037103340718, -0.5978176456317505, -0.5708842684006166, -0.5443164297117737, -0.518754772717871, -0.49475095008844105, -0.47275611639659876, -0.4531148427602236, -0.4360643857117288, -0.42173893618753744, -0.41017813812727133, -0.401338878096307, -0.39510917482100294, -0.3913229740441584, -0.3897747725941172, -0.39023321700389, -0.3924530927386374, -0.39618538901396416, -0.40118535418902534, -0.4072186284676471, -0.41406565060460054 ], [ -0.4666032390630517, -0.46398976078541976, -0.4628175261435685, -0.463415795251396, -0.46612242354962996, -0.47126772457363875, -0.4791535794223516, -0.49002800451651707, -0.5040560396528986, -0.5212886381155684, -0.5416321586314163, -0.5648219514376196, -0.5904042290659159, -0.6177307124737283, -0.6459701980477217, -0.6741399037025386, -0.7011569642956423, -0.7259068315661388, -0.747321362255662, -0.7644564785137078, -0.7765588061076143, -0.7831129758476425, -0.7838653947037828, -0.7788247155757875, -0.7682426592869698, -0.7525806722129678, -0.7324682102264695, -0.7086576828365343, -0.6819798240694839, -0.653301938186664, -0.6234903872668296, -0.5933779634816965, -0.5637364119462078, -0.5352542502854967, -0.5085200420228331, -0.48401129659925446, -0.46208909469288106, -0.44299833254935095, -0.42687316358750116, -0.4137468594419955, -0.40356500643628856, -0.39620077407714027, -0.39147097694535327, -0.38915179108580444, -0.38899323553804166, -0.3907318283467529, -0.39410111783545787, -0.3988400343745264, -0.40469918591310083, -0.4114453302235779 ], [ -0.47110320813677475, -0.4694217530688938, -0.46935555861979217, -0.4712586698370671, -0.4754941146233882, -0.482416314901672, -0.49234816605179366, -0.505552952183725, -0.5222019951107506, -0.5423398738832743, -0.5658501195477927, -0.5924253410864333, -0.6215465776088098, -0.6524770740312593, -0.6842753773270138, -0.7158312903122745, -0.7459253938278001, -0.7733084817004103, -0.7967922277945956, -0.8153386574791281, -0.828135453853633, -0.834647246660744, -0.83463844501544, -0.8281687353540303, -0.8155664094672781, -0.7973865872811201, -0.7743614004317303, -0.7473479829613587, -0.7172783992062199, -0.6851139795661685, -0.6518052475624931, -0.6182578102878342, -0.5853042056179869, -0.5536816272795793, -0.5240155256884875, -0.4968091591869779, -0.4724391374874808, -0.4511568100857295, -0.4330950307923038, -0.418279455456698, -0.4066432067924193, -0.3980435549227066, -0.3922792563023072, -0.38910735539835906, -0.38825853137470956, -0.3894503982476105, -0.3923984798918445, -0.3968248387558049, -0.40246451998481847, -0.4090700807278358 ], [ -0.47636510677746147, -0.4757270328380929, -0.47689348535586995, -0.48024529461632404, -0.4861728423293312, -0.4950569415004238, -0.5072437297176067, -0.5230136731211801, -0.5425455964290928, -0.5658777331124085, -0.5928690406868091, -0.6231652752412402, -0.6561753307692573, -0.6910638688255697, -0.7267660193297074, -0.7620285220825511, -0.7954785102329112, -0.8257158789710128, -0.8514187877705748, -0.8714469501881019, -0.8849267559404128, -0.8913065520801258, -0.890377533104282, -0.8822626550643589, -0.8673807011954386, -0.8463944953993128, -0.8201517990299585, -0.7896256013663197, -0.7558582529100295, -0.7199118441847638, -0.6828257307039414, -0.6455812190287444, -0.6090730687177994, -0.5740874603086661, -0.5412862387116741, -0.5111973915013401, -0.4842117388432263, -0.4605856445758836, -0.4404492340459727, -0.4238192147590514, -0.4106150574755463, -0.4006771054617333, -0.3937851836948012, -0.3896764637471464, -0.3880616457385242, -0.3886388712989315, -0.3911051142126163, -0.3951650641215809, -0.4005377046378469, -0.40696089234099686 ], [ -0.4824165448062976, -0.48293778579188307, -0.48546873967930937, -0.4904191382016829, -0.49820905134021487, -0.5092481648853622, -0.5239083337020125, -0.54248940345503, -0.5651792058052787, -0.5920098732607217, -0.6228140957660686, -0.6571864418066471, -0.6944560955235366, -0.7336780152760609, -0.7736493267316573, -0.812956317707014, -0.8500539072071076, -0.883373169248501, -0.911444324009874, -0.9330161613114551, -0.9471521949700312, -0.9532897525229995, -0.9512575752673382, -0.9412561712110228, -0.9238105583270728, -0.899706717404529, -0.8699219500253577, -0.8355567398597983, -0.7977728067568353, -0.7577395687497719, -0.7165895117539338, -0.6753820284496226, -0.6350749729544867, -0.596503264066597, -0.5603641289941463, -0.5272088153006471, -0.4974406747233677, -0.4713193832879763, -0.44897074045223473, -0.4304010883997875, -0.4155150413430273, -0.40413502166377224, -0.3960211144018577, -0.390889957252768, -0.3884317153252448, -0.3883245667902917, -0.3902464758313229, -0.39388430706928124, -0.39894052291761173, -0.4051378061678459 ], [ -0.4892809626023489, -0.49108147603006524, -0.4951134062244402, -0.5018176044400147, -0.511646302501445, -0.5250407294004764, -0.5424011783690135, -0.5640493693373705, -0.590183960999753, -0.620831493575217, -0.6557967953277062, -0.6946187115747224, -0.7365385289280744, -0.780489278768673, -0.8251139393516334, -0.8688190688297028, -0.9098666140810487, -0.9464991837352723, -0.9770836293512042, -1.0002492367593399, -1.0149961481382865, -1.020757805276967, -1.0174134955634881, -1.0052577607528308, -0.9849394602402552, -0.9573845535080023, -0.9237146321025871, -0.8851696720968414, -0.8430398168855018, -0.7986080667995956, -0.7531038378634562, -0.7076663938473091, -0.6633169190951489, -0.6209382023874324, -0.581261278838394, -0.5448587100527562, -0.5121443254952533, -0.4833791430372556, -0.45868287240579697, -0.43804999588659776, -0.4213690597270878, -0.40844361530983875, -0.3990132746427475, -0.39277357084857867, -0.3893936705486196, -0.3885313833958619, -0.38984527897007615, -0.39300400555937753, -0.3976930920179731, -0.4036196091709978 ], [ -0.49697666440363, -0.5001796913862344, -0.5058528433126417, -0.5144703888061273, -0.5265193098557253, -0.5424752150548615, -0.5627697888107568, -0.587749420517788, -0.6176257611279254, -0.6524205876984075, -0.6919094431150707, -0.7355707664709439, -0.782549133425475, -0.8316422402854151, -0.8813210794477322, -0.9297911664459317, -0.9750986325681994, -1.015276272336803, -1.0485113051975983, -1.0733052726759156, -1.0885959029901051, -1.0938220843190187, -1.088929108151714, -1.074324320077729, -1.050799857985878, -1.0194397272883724, -0.9815252233140059, -0.9384479797996936, -0.8916354064063312, -0.8424898693299527, -0.7923408869125295, -0.742408678540013, -0.6937772856337341, -0.6473758303587809, -0.6039669891713049, -0.5641421995221281, -0.528323334918668, -0.49677051905105474, -0.46959544877350057, -0.4467791838439725, -0.42819299469815997, -0.4136206657799064, -0.4027806880220406, -0.3953470186292667, -0.39096746338866084, -0.3892791528949495, -0.38992096026982503, -0.39254299601731635, -0.39681349971648805, -0.4024235367666922 ], [ -0.5055157581335519, -0.5102468648290286, -0.5177041434837935, -0.5283976258329957, -0.5428517098025301, -0.5615793468504773, -0.5850467638206478, -0.6136281000067572, -0.6475505262319381, -0.6868322654472696, -0.7312184170746261, -0.7801222814852438, -0.8325823311330576, -0.8872462879780174, -0.9423934963171448, -0.9960049439057912, -1.0458859636483762, -1.0898365827927656, -1.1258475666996102, -1.1522852047486158, -1.16802761645538, -1.1725309611107257, -1.1658245961787306, -1.1484497242243312, -1.12136290253415, -1.0858252911464608, -1.0432937309938106, -0.9953236144071786, -0.9434880447563037, -0.8893139011334654, -0.8342332237786096, -0.7795474833993687, -0.7264023391908982, -0.6757710091343865, -0.6284450381793945, -0.5850318080619827, -0.5459584299489746, -0.5114816432373877, -0.48170306270709795, -0.45658870793299844, -0.4359913810968503, -0.4196742683048096, -0.4073341855365742, -0.3986231504317945, -0.39316735486488663, -0.39058304276291667, -0.3904891810961555, -0.39251710075247703, -0.39631746344646235, -0.4015649914617214 ], [ -0.5149030205504121, -0.52128889298494, -0.53067445567837, -0.5436078538856879, -0.5606535920610358, -0.5823649951860095, -0.6092461235895215, -0.6417021888707426, -0.6799787649121798, -0.7240921604264436, -0.7737562543766996, -0.8283145801090592, -0.8866896615139481, -0.9473634002499607, -1.0084019190306004, -1.067535912370435, -1.1223028011996607, -1.1702455019813087, -1.2091413476830035, -1.2372150660165668, -1.2532902016697545, -1.2568547127119771, -1.2480427145698276, -1.22755247370031, -1.1965275744872648, -1.1564261909719802, -1.1088966838478882, -1.0556699749326164, -0.99847265601738, -0.9389604652134902, -0.8786695168913703, -0.8189819676357051, -0.7611030505712191, -0.7060471281445941, -0.6546312396751228, -0.6074753022560238, -0.5650085069687885, -0.5274814871256794, -0.4949835808331302, -0.4674641122834642, -0.4447562523664861, -0.4266018330066401, -0.4126755444778789, -0.4026072168588022, -0.39600129217528135, -0.39245303148502253, -0.3915613875429902, -0.39293875998383787, -0.39621802277523943, -0.4010572854949792 ], [ -0.5251347154451969, -0.5333016841283462, -0.5447592067539397, -0.5600958413901467, -0.5799188446353964, -0.6048249299297068, -0.6353593316912887, -0.6719618162251393, -0.7148995522962283, -0.7641890278475734, -0.8195126256008991, -0.8801397981558956, -0.9448670568636082, -1.0119935820796246, -1.0793488023576305, -1.1443850363811823, -1.2043426542428404, -1.2564820881758263, -1.298350638162936, -1.328026859117532, -1.3442872861912762, -1.346668971593243, -1.3354339741171866, -1.3114627057795296, -1.2761094939506807, -1.231049758824815, -1.1781391387061344, -1.1192952357641899, -1.056405071247206, -0.9912566329312518, -0.9254906969930654, -0.8605686285439027, -0.7977523711721728, -0.7380937772017704, -0.6824314319551037, -0.6313939371201094, -0.5854090921318553, -0.5447185056264265, -0.5093969485057086, -0.4793753799141727, -0.4544662229235017, -0.4343892874169146, -0.4187967997445692, -0.4072962780813283, -0.3994704037164647, -0.39489347874300607, -0.393144445225442, -0.39381672142979207, -0.39652527493448186, -0.400911414528335 ], [ -0.5361974020202089, -0.5462696800634577, -0.5599402753563574, -0.5778403379911494, -0.6006223895280767, -0.6289294224137969, -0.6633511089798252, -0.7043652822012727, -0.7522641013796627, -0.8070667489806247, -0.8684244319452663, -0.9355287728608535, -1.007040349804299, -1.0810580127584921, -1.1551493343465786, -1.2264579786680179, -1.291896360274333, -1.34841655345651, -1.3933202371750628, -1.424537335889816, -1.4408076101661702, -1.4417371247879562, -1.4277412237385891, -1.3999089747744278, -1.359829788764186, -1.3094164783785605, -1.2507471114377877, -1.1859362003833906, -1.1170370707018493, -1.0459722594956924, -0.9744867549612715, -0.9041187172626819, -0.8361831293380291, -0.7717650124203062, -0.7117200266961152, -0.6566812229424399, -0.6070712790615025, -0.563119712506889, -0.5248843801546601, -0.49227622187965747, -0.4650858642247233, -0.4430105299206033, -0.425679766294055, -0.41267878749815323, -0.4035686364953641, -0.3979028094704984, -0.3952403633248631, -0.395155798275469, -0.39724616133781865, -0.40113586810037205 ], [ -0.5480667799891699, -0.5601644086357329, -0.5761841870164235, -0.5968018342606904, -0.6227174114519447, -0.6546228222557888, -0.6931552001508661, -0.7388338013914162, -0.7919791973394816, -0.852616086803579, -0.9203654456556398, -0.9943381296241127, -1.0730494860269624, -1.1543803208691963, -1.2356100440480051, -1.313541621878542, -1.38472734958868, -1.4457852654654975, -1.4937574972227854, -1.5264253256985505, -1.5425045236218764, -1.5416923035692496, -1.5245842307495345, -1.4925053459379782, -1.4473045043263237, -1.391151445073952, -1.3263607973659215, -1.2552529966452184, -1.1800522891363534, -1.1028168620001217, -1.025394385321169, -0.9493964710174612, -0.876186704588988, -0.8068783542956925, -0.7423392390261592, -0.6832023185710947, -0.6298812358588801, -0.5825902668746252, -0.5413680023875926, -0.5061037621437892, -0.4765654218616622, -0.4524271728117195, -0.4332958038318391, -0.41873437482229137, -0.40828255500283084, -0.40147332631064003, -0.39784611875638354, -0.3969567034946164, -0.3983843108291647, -0.40173648090271086 ], [ -0.5607066267407983, -0.5749431354440853, -0.5934404148924768, -0.6169204335689935, -0.6461327070730627, -0.6818202677869933, -0.7246702947944899, -0.7752464301094693, -0.8339008461180559, -0.900666664452743, -0.9751361150714797, -1.0563373473594102, -1.1426323541231946, -1.2316669626943166, -1.3204059897027778, -1.4052788543261663, -1.4824452006377404, -1.5481643715480158, -1.5992071798835805, -1.6332086904687055, -1.6488755811569158, -1.6460198638712766, -1.6254450540384875, -1.5887394917266253, -1.5380351424435346, -1.4757770169454743, -1.4045289982740399, -1.3268249645448211, -1.2450632800042651, -1.1614376096748744, -1.0778956861236573, -0.9961183394212876, -0.9175126292115752, -0.8432146436637422, -0.7740991044188981, -0.7107941398090154, -0.6537003556177554, -0.6030136324546795, -0.5587510009106513, -0.5207786599582778, -0.4888409074358999, -0.4625886018363279, -0.4416058447903479, -0.42543384479270174, -0.41359131377554204, -0.40559115951867963, -0.4009535870072314, -0.39921596516845304, -0.39993994288870893, -0.4027163270884584 ], [ -0.5740678893606319, -0.5905476937857019, -0.6116398847999469, -0.6381139584292328, -0.6707703061047339, -0.7104047183352828, -0.757756341030893, -0.8134354870920053, -0.877828553370207, -0.9509797400995532, -1.0324543295070125, -1.1211968818468705, -1.2154096290449434, -1.3124883895297925, -1.4090584122456424, -1.501143602739029, -1.5844794808714584, -1.6549439573018636, -1.7090271710082139, -1.744222455215588, -1.7592435828287631, -1.754041518309149, -1.7296551962534805, -1.6879626161158185, -1.6314010124482046, -1.5627072180884078, -1.484705217921098, -1.4001481166584668, -1.3116100513689464, -1.2214186827391071, -1.131618123824831, -1.0439533730908672, -0.9598692516501512, -0.8805188620624416, -0.8067783662261001, -0.7392662484863606, -0.6783661014783988, -0.6242523491585668, -0.5769183016254162, -0.5362056928596011, -0.5018345825929289, -0.4734323650730674, -0.45056069490013995, -0.432739398068279, -0.419466808116044, -0.41023635723249474, -0.404549581461771, -0.4019259238631292, -0.40190983138019365, -0.4040756579279232 ], [ -0.5880879995423469, -0.6069035798621274, -0.6306937947683258, -0.6602764296132246, -0.6965035364341832, -0.7402245222635435, -0.7922315195720648, -0.8531828105584032, -0.9235006888235395, -1.0032424065156311, -1.0919480354393754, -1.1884786152135454, -1.2908723859322242, -1.3962633055220732, -1.5009156263197296, -1.6004191230147697, -1.6900568240609282, -1.7653054090616322, -1.8223673646040914, -1.858600079005578, -1.8727407236954807, -1.864902515019528, -1.8363856904298475, -1.7893821501529186, -1.726654157254624, -1.651244510059882, -1.5662459233536792, -1.4746345732719166, -1.3791603967324284, -1.2822822564918657, -1.1861359632432407, -1.0925249270428965, -1.002925574879366, -0.9185019980690408, -0.8401262906776679, -0.7684025602065698, -0.7036935702861356, -0.6461494310083766, -0.5957377930119832, -0.5522748027380562, -0.515455834694232, -0.4848848888574593, -0.46010160312160364, -0.44060507070170507, -0.42587399937414405, -0.41538311276151574, -0.40861599825846606, -0.40507480958695385, -0.4042873268703684, -0.405811881351261 ], [ -0.6026904814773566, -0.6239194045294791, -0.6504928667426084, -0.6832770677702302, -0.7231757215539552, -0.7710917550608447, -0.8278701686466945, -0.894217214898765, -0.9705914030182412, -1.0570638421654825, -1.1531505830748898, -1.2576298937429704, -1.3683742819458273, -1.4822484686709836, -1.5951402303057112, -1.7021829825414823, -1.7981846153928747, -1.8782050124735779, -1.9381543412727906, -1.975260111999086, -1.9882977512445226, -1.9775634416729952, -1.9446414057104364, -1.8920582472537266, -1.8229176724486027, -1.7405795832409465, -1.6484114932083191, -1.5496143871858716, -1.4471123464638591, -1.3434913598852463, -1.2409733467454254, -1.1414138087679757, -1.0463143557887742, -0.9568440114008769, -0.873865435435945, -0.7979638784214018, -0.7294777700297637, -0.6685303777988367, -0.6150620729334593, -0.5688625864252952, -0.5296024256308132, -0.496862503416001, -0.47016108539289303, -0.4489773787259237, -0.43277140345963216, -0.42100011961978967, -0.4131300592979601, -0.4086468926373188, -0.4070624333037065, -0.40791958041719756 ], [ -0.6177849206995067, -0.6414867919743039, -0.6709071492906533, -0.7069599717803619, -0.7505997072781867, -0.8027815747258102, -0.8644019650971302, -0.9362135204360578, -1.0187095560407315, -1.1119741962759009, -1.215499576358621, -1.3279822201609046, -1.4471297843550945, -1.5695360176105129, -1.6907051221619849, -1.8053015753003625, -1.9076442352912348, -1.992366649192145, -2.055084497995628, -2.092900613861741, -2.1046401728568243, -2.0907983442483715, -2.0532609272565168, -1.9949051474790604, -1.919188261722635, -1.829794837659882, -1.730370384926876, -1.6243401753266142, -1.51479905772837, -1.4044548405319226, -1.2956091818410114, -1.1901629706773231, -1.089636518572974, -0.9951979126973838, -0.9076953646031811, -0.827691231058753, -0.7554965772751945, -0.6912057618297582, -0.6347306800768338, -0.5858341925047035, -0.5441620786291252, -0.5092727471210883, -0.4806639755277513, -0.45779614558976145, -0.4401117244622099, -0.4270510399170202, -0.4180646422902572, -0.41262270002334045, -0.41022193305866117, -0.4103905666519043 ], [ -0.6332673546747849, -0.6594808082217876, -0.6917864831794907, -0.7311446226997318, -0.7785584123484806, -0.835032843278871, -0.9015126715755455, -0.9787935316639262, -1.067400102858855, -1.1674266321218658, -1.278339859531636, -1.3987553954192886, -1.5262194582630086, -1.6570595817387332, -1.7863998324371761, -1.9084359931928965, -2.0169960610277213, -2.106286085664704, -2.1716281951333847, -2.2100037367427654, -2.2202935965911674, -2.2032008641606837, -2.1609233560465806, -2.0966984655334326, -2.0143438635729503, -1.9178722196549696, -1.8112070480756595, -1.6979949618795542, -1.5814964384902674, -1.4645346370471573, -1.349483959527142, -1.23828380717825, -1.1324668957139874, -1.0331949393485196, -0.9412972684701435, -0.8573099547981622, -0.7815143133454139, -0.7139743272078205, -0.6545727498841982, -0.6030455689301197, -0.5590143537499042, -0.5220159067960279, -0.49152866746995083, -0.4669954830903422, -0.44784260989396873, -0.4334950677954419, -0.4233886839668759, -0.4169792873093823, -0.413749553280387, -0.4132139636002583 ], [ -0.649021133001904, -0.6777609871311068, -0.7129617243983344, -0.7556273436575469, -0.8068065793045098, -0.8675502472325529, -0.9388467474027462, -1.0215293289239216, -1.1161483618658299, -1.2228030049893772, -1.340931161527135, -1.4690676960154363, -1.6046030093398205, -1.7436100261107794, -1.8808482526691346, -2.0100607162718753, -2.1245982154198226, -2.218249273168193, -2.2860474586423005, -2.324852821983666, -2.3336001888708298, -2.313199974538335, -2.266163265058616, -2.1960893834154023, -2.107157143176617, -2.003706055915062, -1.8899340858326918, -1.7697036035292355, -1.6464337570373906, -1.5230555089088633, -1.4020085729691414, -1.2852640656805172, -1.1743612634745848, -1.0704507665698983, -0.9743394109254688, -0.8865344422511914, -0.8072858531497351, -0.7366265187288996, -0.6744100180868302, -0.6203459924911201, -0.5740327519485482, -0.5349867429708726, -0.5026685065284242, -0.47650489149846087, -0.45590750046875983, -0.4402875670985389, -0.4290676409572338, -0.4216905547761065, -0.417626165944333, -0.41637631585598567 ], [ -0.664918276201343, -0.6961729978164652, -0.7342467901067036, -0.7801838114932147, -0.8350738627295233, -0.9000081079484674, -0.9760120794473275, -1.0639492012303537, -1.1643875591286506, -1.2774236091245128, -1.4024608463738826, -1.5379525550636928, -1.6811406582244894, -1.8278616860731047, -1.9725390788999644, -2.1084970165083727, -2.228641462142173, -2.326367282885404, -2.3964297261834346, -2.4355641181401992, -2.4427479115843043, -2.4190866018796733, -2.367394838748267, -2.2916266058021955, -2.196315574689272, -2.086121475164166, -1.9655091100378996, -1.8385480988276985, -1.708807411640193, -1.579317295820847, -1.4525751326214535, -1.3305773158632541, -1.214864583932514, -1.1065726481005111, -1.0064832917433895, -0.9150734393771482, -0.8325611589955721, -0.7589483408363489, -0.6940600823896683, -0.6375808016640305, -0.5890869804476873, -0.5480763437326808, -0.5139932834256502, -0.48625044194138933, -0.4642465456174676, -0.4473807614584926, -0.43506399237701476, -0.4267275967488964, -0.4218300143424403, -0.41986171925890003 ], [ -0.6808213376147074, -0.714550965422484, -0.7554415516507968, -0.8045726635796777, -0.8630693275465253, -0.9320559966305537, -1.0125870042954315, -1.1055464598085227, -1.2115099565164216, -1.3305613479147023, -1.4620621245345302, -1.6043820775356237, -1.7546232452119503, -1.9084098227570514, -2.0598703305706128, -2.20196312800474, -2.3272027116090426, -2.4286303006811045, -2.5007396627057097, -2.5401346232127437, -2.5458136198333268, -2.519051983628234, -2.4629459571905716, -2.381786790560698, -2.280448743766289, -2.1638989137341595, -2.0368566249884017, -1.9035869610570795, -1.7677979112707933, -1.632609664235309, -1.5005696751870699, -1.373693840693464, -1.2535203020763133, -1.1411673326693421, -1.0373903753851366, -0.9426357548770226, -0.8570901137439146, -0.7807254348085524, -0.7133398245703333, -0.654594248973773, -0.6040453087613076, -0.5611740487932408, -0.5254107839386166, -0.49615600373047886, -0.4727975560337272, -0.4547244554103478, -0.4413377688122657, -0.43205907370780405, -0.42633695950791206, -0.4236519687783731 ], [ -0.6965857440755039, -0.7327204182048346, -0.7763355464993629, -0.8285401738688467, -0.8904873394137969, -0.9633261532815591, -1.0481296512734646, -1.1457912067251166, -1.2568816914554166, -1.3814604939951907, -1.5188378714668387, -1.6672974181608207, -1.8238109397003044, -1.9838191955551587, -2.1412081883378846, -2.2886419135720026, -2.418318142931088, -2.522981640013042, -2.596889764326793, -2.636506514368149, -2.640820367880446, -2.6112381665284876, -2.551102744793528, -2.4650140164382144, -2.3581633539838043, -2.235805025060533, -2.102895075146381, -1.9638786315917276, -1.8225899328596564, -1.682229141173153, -1.5453865375637097, -1.4140927160434396, -1.2898804753194382, -1.1738495518182375, -1.0667292033180793, -0.9689362205484837, -0.8806275134680532, -0.8017472540948329, -0.7320688910362108, -0.671232387363021, -0.6187769446766163, -0.5741693862881772, -0.5368283482923355, -0.5061444809209847, -0.48149696620151405, -0.4622667667590934, -0.4478470939068697, -0.4376515981908602, -0.43112074134825584, -0.42772672170353454 ], [ -0.7120625597103556, -0.7505017905513884, -0.7967124210860808, -0.851825889765847, -0.9170147166025422, -0.993442556928501, -1.0821894350352208, -1.1841448761297202, -1.2998611425406557, -1.4293598435813792, -1.5718897889322787, -1.7256455242014577, -1.8874795655223895, -2.0526821153529218, -2.2149579947489557, -2.366763605998406, -2.500073495490745, -2.607409610778159, -2.6828281581107616, -2.7226472207161567, -2.7258085486419583, -2.693800714969494, -2.63016491082609, -2.5397686443433614, -2.428086144534742, -2.3006299836587636, -2.1625688542498858, -2.0185086030294888, -1.8723950630659065, -1.727498033116508, -1.5864440153643868, -1.4512747366673084, -1.3235164371001185, -1.2042508241508236, -1.0941826747019845, -0.9937017224410822, -0.9029380695731846, -0.8218112134406821, -0.7500731293436682, -0.6873459067252541, -0.6331543623123712, -0.5869539681046232, -0.5481543978007457, -0.5161390255399632, -0.49028078269828956, -0.46995485291511585, -0.4545487268925392, -0.4434701272936665, -0.43615325073512157, -0.4320636749601128 ], [ -0.7271015861410923, -0.7677143677612164, -0.8163549546000715, -0.8741690337092851, -0.9423388885265997, -1.022031319191747, -1.1143202814517617, -1.220077029177125, -1.3398201873328697, -1.473519502111001, -1.6203519725285502, -1.7784209795212522, -1.9444725700655066, -2.1136827167916463, -2.2796424538897835, -2.434697149531797, -2.5707044816443254, -2.680050930432435, -2.7566390060761883, -2.7966424926643603, -2.7989197320495274, -2.7649833495044893, -2.6985118832331945, -2.604585474140084, -2.4889143670225353, -2.357230597510553, -2.2148845535539117, -2.0666194949535317, -1.9164765053785011, -1.7677845888641543, -1.6232007578784102, -1.4847757325590423, -1.3540296218330066, -1.2320282745247466, -1.1194552529939608, -1.0166771083530608, -0.9238012645605247, -0.8407266870296699, -0.7671878809254409, -0.7027928411500324, -0.6470555194170233, -0.5994232946032354, -0.5592998909743214, -0.5260641991093287, -0.49908549765351373, -0.47773561689484567, -0.4613985968179737, -0.44947835648281775, -0.4414048102793684, -0.43663875648681016 ], [ -0.741554684557389, -0.7841805187277402, -0.8350504567967671, -0.8953153910299048, -0.9661566865679532, -1.0487318990905359, -1.1440949166630974, -1.253083515767139, -1.3761671940472493, -1.5132498157546417, -1.6634270163318725, -1.8247105992662036, -1.993755503722859, -2.1656627889430116, -2.3339799159862302, -2.4910405506186497, -2.6286966491612294, -2.7392958911441925, -2.816648088549462, -2.856797870907172, -2.858490859668848, -2.823203330785062, -2.7546787879262915, -2.6581400516537705, -2.5394724394369232, -2.4045777456310047, -2.2589500146988097, -2.1074427968243787, -1.954174660488051, -1.8025235120372982, -1.6551721849499523, -1.5141797139035438, -1.3810621138315162, -1.256873129477941, -1.142279836735189, -1.0376307694066356, -0.9430159049338, -0.8583187343612892, -0.7832610359725853, -0.7174410740376884, -0.6603659077545023, -0.6114784258551571, -0.5701796768630696, -0.535847058816221, -0.5078489506276531, -0.485556381776969, -0.468352321618813, -0.45563911121567857, -0.4468444627860506, -0.4414263314581943 ], [ -0.7552791837036801, -0.7997300319522807, -0.8525962884665457, -0.9150243407955361, -0.9881832972751481, -1.0732084949339635, -1.1711193364556958, -1.2827047963441436, -1.4083701084292475, -1.54794025096374, -1.7004217642384845, -1.8637370628907701, -2.0344682919024497, -2.207683012274258, -2.3769545563422887, -2.53470002033183, -2.6728734748343568, -2.7838845009021593, -2.8615244518007708, -2.901741772627842, -2.903154119772132, -2.867144098371014, -2.797439133259018, -2.6993200356630047, -2.5787718127459502, -2.441805466309225, -2.2940139104287787, -2.1403304253068223, -1.984932120367454, -1.8312356985300577, -1.6819460714854895, -1.539131201415508, -1.4043064382538657, -1.2785185285057261, -1.1624240250643023, -1.0563596939893198, -0.9604042199497922, -0.8744314401388131, -0.7981557648595106, -0.7311705766509873, -0.6729803882464254, -0.6230274834348617, -0.5807137192814333, -0.5454181494926182, -0.5165111259695525, -0.49336552527846744, -0.47536570724771976, -0.46191473427172136, -0.45244026726009356, -0.4463994245988214 ], [ -0.7681412254027336, -0.8142043527022913, -0.8688052279682064, -0.9330756497951618, -1.0081608543989353, -1.095160889490499, -1.1950464531711478, -1.3085430338377098, -1.435977713659703, -1.5770855807625406, -1.7307791241391566, -1.8948968321125466, -2.0659692478478795, -2.2390724115017195, -2.4078705848616275, -2.5649496968474605, -2.702464081199029, -2.8129845202656583, -2.8903688001917813, -2.930521142635345, -2.9319341885049943, -2.895847729264289, -2.825887585908773, -2.7272958388737942, -2.606069164828712, -2.4682577391234486, -2.3195027640115917, -2.1647837510319214, -2.008316330105449, -1.8535459148741524, -1.7031963619697525, -1.5593460598175173, -1.4235140982463819, -1.2967462907753489, -1.1796955157134348, -1.0726938029759219, -0.975815366756233, -0.8889307662381125, -0.8117528515421195, -0.7438753255710557, -0.6848047711103153, -0.6339869539924641, -0.5908281713838428, -0.5547123871151489, -0.5250148761129938, -0.5011130685221434, -0.4823952236562665, -0.4682674675970848, -0.45815960270334233, -0.45152995981071165 ], [ -0.7800188975544526, -0.8274605173670182, -0.8835104056207543, -0.9492756487971248, -1.0258661466394727, -1.1143340279418699, -1.2155879260497535, -1.3302765838059436, -1.458637173877733, -1.6003067908229567, -1.7541024473660953, -1.9177877557470315, -2.0878651546622726, -2.2594598519101745, -2.4263847880898695, -2.5814670166601004, -2.71714551020536, -2.8262449524455664, -2.902780066598912, -2.9426790250504915, -2.9443310735413664, -2.9087957383676195, -2.8395126922887, -2.7415821743817843, -2.6209163610430686, -2.483528011681539, -2.335051776260669, -2.1804774787886076, -2.0240380527626836, -1.8691970951964123, -1.7186942788291213, -1.5746201713895487, -1.4385023879792538, -1.311392303157593, -1.1939463977966387, -1.086499396996242, -0.9891282213842867, -0.9017068299283868, -0.8239525678580617, -0.7554648556741428, -0.6957571102773208, -0.6442827729978067, -0.6004562855720208, -0.5636698236045963, -0.5333065641064731, -0.5087512148689004, -0.4893984553857538, -0.4746598277758043, -0.4639694797667575, -0.4567890178142717 ], [ -0.790805014130334, -0.8393745959385537, -0.8965695509346017, -0.9634624465400505, -1.0411169751969094, -1.1305256987810202, -1.232523325343783, -1.3476707420508154, -1.4761063433733863, -1.6173647167566005, -1.7701699409728742, -1.9322233056158848, -2.100024081455153, -2.2687844660157577, -2.432514912228494, -2.584341580512154, -2.7170566417184947, -2.823820012395242, -2.898892271511585, -2.938303145921089, -2.9403755402944247, -2.9059648696664593, -2.8382475947515644, -2.7420808684650257, -2.623194938813997, -2.4874862643431603, -2.3405258098368025, -2.187275853550358, -2.031963894805709, -1.878060055319113, -1.7283158940772723, -1.584835373475852, -1.4491590807159143, -1.322350250064349, -1.2050761443462026, -1.0976815797478647, -1.00025336096836, -0.9126755427154418, -0.8346760433844644, -0.7658654174224482, -0.7057686906924201, -0.653851174038008, -0.6095391487880277, -0.5722362861992112, -0.5413366208750403, -0.5162348358567115, -0.49633452488257124, -0.481054973989953, -0.46983685963519006, -0.4621471115293032 ], [ -0.8004094217471205, -0.8498444837114194, -0.9078683433120958, -0.9755099064595394, -1.0537768018776184, -1.1435918524417539, -1.2457060360426624, -1.3605840071447455, -1.4882599450239193, -1.628165391545812, -1.778938066698764, -1.9382325813310182, -2.1025705330567686, -2.267285153930392, -2.426624141213896, -2.5740569997412375, -2.7027814242343484, -2.8063585192278504, -2.879373583336084, -2.9180347983104995, -2.9206447262493374, -2.8878452814523214, -2.822487582637855, -2.729096157161986, -2.6131287475780427, -2.4802892070301903, -2.3360275501796197, -2.1852391904824775, -2.032121546373117, -1.8801377150286882, -1.7320455467072726, -1.5899622382349274, -1.4554447029345292, -1.329573486864847, -1.2130331688688605, -1.1061855648616288, -1.0091341746350604, -0.9217795678992511, -0.8438661030673149, -0.7750207202076522, -0.7147846965364559, -0.6626392957754621, -0.6180262378515957, -0.5803638876111961, -0.5490600143377382, -0.5235219018976904, -0.5031644864970528, -0.48741706661963335, -0.47572897843460393, -0.46757447760589277 ], [ -0.8087607409678499, -0.858791925496025, -0.9173227195427256, -0.9853302047827823, -1.0637574689777571, -1.153449303910831, -1.2550656258444026, -1.3689695950371932, -1.4950894382665694, -1.6327571347360201, -1.7805343719960474, -1.9360471905671208, -2.095864835977187, -2.2554715957040337, -2.4093838706745796, -2.551446642659673, -2.6752999993491127, -2.7749540874918788, -2.84537963985689, -2.8830278459803838, -2.8862272435814327, -2.855411475329708, -2.7930667932274194, -2.7033169025048696, -2.591270958255894, -2.462371113865802, -2.3218912166733245, -2.1746196655516363, -2.024697034993008, -1.8755633612383362, -1.7299747919362956, -1.5900594827884027, -1.4573922515587943, -1.3330749610110133, -1.217814882445193, -1.11199682515381, -1.0157470771510737, -0.9289885811831704, -0.8514875636262775, -0.7828922568626642, -0.7227645578021431, -0.6706055450929786, -0.625875793675085, -0.5880114056438019, -0.556436628676253, -0.5305738555844355, -0.5098516886138746, -0.4937116136267725, -0.4816136741237722, -0.47304138100731974 ], [ -0.8158074846818872, -0.8661637052887705, -0.9248800637224284, -0.9928748941728327, -1.0710199263770739, -1.160075790535143, -1.260606728476012, -1.3728724115385833, -1.4966970562085598, -1.6313203104764304, -1.775241344615906, -1.9260774521722483, -2.0804700850306364, -2.234080700785843, -2.3817187697788613, -2.5176266755333776, -2.6359097095740363, -2.7310557305781784, -2.7984578422579025, -2.834852655852112, -2.8386329404688535, -2.8100430410894646, -2.7511929189799793, -2.665765555117565, -2.5584656205775502, -2.4344155353338, -2.298662026678207, -2.1558465140418672, -2.0100240928394815, -1.8645930183236812, -1.7222969265298445, -1.5852700405063038, -1.455104377186588, -1.3329251993419462, -1.2194662673272, -1.115140098617331, -1.0201008383864407, -0.9342988460651962, -0.8575269989546448, -0.7894592178335331, -0.7296819818161453, -0.6777197210345574, -0.6330550170031897, -0.5951445330801657, -0.5634315529411733, -0.5373559254389164, -0.5163621006970638, -0.49990580076219526, -0.48745971145402733, -0.4785184280249599 ], [ -0.8215185324450078, -0.8719319862637396, -0.930519279027703, -0.9981345018092072, -1.0755730491414255, -1.1635075632497593, -1.2624047790560118, -1.3724220732280914, -1.4932849907757277, -1.6241512933085231, -1.763473573480622, -1.908881087985911, -2.0571107394512476, -2.204023479605507, -2.3447400455142793, -2.473913389979717, -2.586124144352534, -2.6763478572886727, -2.740411672975731, -2.775353789141715, -2.779656361722771, -2.7534043099824217, -2.6983480717233648, -2.6177203102304842, -2.515788426137713, -2.3973110766352246, -2.267063536236787, -2.1295020362505652, -1.988566558648439, -1.8475925353020706, -1.7092974977444029, -1.5758140695361886, -1.4487482234765787, -1.3292484950070467, -1.2180770625439643, -1.1156773208262476, -1.0222350802265217, -0.9377321426412346, -0.8619920034201691, -0.7947180163641747, -0.7355246849947465, -0.6839629098449207, -0.6395400918435399, -0.6017360005914683, -0.5700152789702317, -0.5438373779007215, -0.5226646014188177, -0.5059688006354119, -0.49323709934299176, -0.4839768817446317 ] ], "zauto": true, "zmax": 2.9443310735413664, "zmin": -2.9443310735413664 }, { "autocolorscale": false, "autocontour": true, "colorbar": { "tickfont": { "size": 8 }, "ticksuffix": "", "x": 1, "y": 0.5 }, "colorscale": [ [ 0.0, "rgb(255,247,251)" ], [ 0.14285714285714285, "rgb(236,231,242)" ], [ 0.2857142857142857, "rgb(208,209,230)" ], [ 0.42857142857142855, "rgb(166,189,219)" ], [ 0.5714285714285714, "rgb(116,169,207)" ], [ 0.7142857142857143, "rgb(54,144,192)" ], [ 0.8571428571428571, "rgb(5,112,176)" ], [ 1.0, "rgb(3,78,123)" ] ], "contours": { "coloring": "heatmap" }, "hoverinfo": "x+y+z", "ncontours": 25, "type": "contour", "x": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "xaxis": "x2", "y": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "yaxis": "y2", "z": [ [ 0.8253369063506373, 0.8224806730714265, 0.8193278122312436, 0.8159039718724715, 0.8122529566264066, 0.8084385219614967, 0.8045448870888395, 0.8006754814800142, 0.7969495306200954, 0.7934962929180538, 0.7904470848836277, 0.7879256436725107, 0.7860377998090397, 0.7848617581530926, 0.7844403956219776, 0.7847768019207364, 0.7858338173554008, 0.7875376584601481, 0.7897850358772242, 0.7924526368763849, 0.7954075878727649, 0.7985175568272781, 0.8016594385668683, 0.8047259736293707, 0.8076300654614618, 0.810306895899511, 0.8127141548832966, 0.8148307981549244, 0.8166547530285173, 0.818199943569885, 0.8194929363789345, 0.8205694407563576, 0.821470844981561, 0.8222409361929247, 0.8229229303769167, 0.8235569233336659, 0.8241778553437283, 0.824814056340284, 0.8254864033005882, 0.8262080798061513, 0.8269848845752765, 0.8278159975923555, 0.8286950848374492, 0.8296116090315951, 0.83055221501234, 0.8315020725540294, 0.8324460830700119, 0.8333698853002257, 0.8342606245465047, 0.8351074768133017 ], [ 0.8239069338786021, 0.8207728251799331, 0.8173064380751422, 0.8135345037851578, 0.8095039566727444, 0.8052841244501459, 0.8009675201604902, 0.7966686633240516, 0.792520445843404, 0.7886677827636193, 0.7852586584788326, 0.782433163324565, 0.780311627637125, 0.7789833670378782, 0.7784977074716205, 0.778858758369878, 0.7800248438167141, 0.7819127038487365, 0.7844057504497917, 0.7873650271607772, 0.790641226559646, 0.7940861942679538, 0.7975627071566195, 0.8009518114199551, 0.804157498061933, 0.8071088781472066, 0.8097602557521917, 0.8120895905136841, 0.8140958311054389, 0.8157955319663609, 0.8172190785939375, 0.8184067690641617, 0.8194049439469293, 0.8202623240247472, 0.8210266977361147, 0.8217420872353076, 0.8224465033725245, 0.823170369545564, 0.8239356512976138, 0.8247556767968471, 0.825635580388372, 0.8265732557002641, 0.8275606733430241, 0.8285854049938822, 0.829632200830792, 0.8306844878639327, 0.8317256876261153, 0.8327402871779209, 0.8337146322397216, 0.8346374415607134 ], [ 0.822396014576408, 0.8189653121045194, 0.8151633647006539, 0.8110177869156133, 0.8065785933694577, 0.8019208508988207, 0.7971458163777639, 0.7923798876650655, 0.7877707764318072, 0.7834805524559854, 0.7796756280537966, 0.7765143184080968, 0.7741332312656894, 0.7726342473691965, 0.7720740670284479, 0.7724580822153705, 0.7737396739980389, 0.7758250751286849, 0.7785829383114636, 0.7818569904355525, 0.7854798163120603, 0.789285930992034, 0.7931227544682109, 0.7968587106733304, 0.8003882555283163, 0.8036340782362289, 0.8065469731461435, 0.8091039637664386, 0.8113052264145096, 0.813170266494804, 0.8147336936862205, 0.8160408540095507, 0.8171435192321573, 0.8180958051537812, 0.8189504787442988, 0.8197558053730356, 0.8205530688114537, 0.8213748610422162, 0.822244185892336, 0.8231743562943609, 0.8241695998520095, 0.8252262324695119, 0.826334223907768, 0.8274789666624136, 0.8286430699657241, 0.8298080293484229, 0.8309556620559206, 0.8320692422536404, 0.8331343110252005, 0.8341391702670045 ], [ 0.8208026658432744, 0.8170559570329669, 0.8128954660206251, 0.8083494288234315, 0.803470829811111, 0.7983405912383562, 0.793069136509516, 0.7877955410802215, 0.7826835533057951, 0.7779140212827004, 0.7736737319186267, 0.7701413297002976, 0.7674717264411914, 0.7657810474890463, 0.7651344533151339, 0.7655389478396771, 0.7669425068208159, 0.7692397025232915, 0.7722827912127348, 0.7758963186855332, 0.7798929153259511, 0.7840881241541146, 0.7883126815159227, 0.7924214129450823, 0.7962985962930544, 0.7998601430859577, 0.8030532159249162, 0.8058539661289014, 0.8082640096508682, 0.8103061329541574, 0.8120195909814093, 0.8134552602944499, 0.8146708530469641, 0.8157263755746545, 0.8166800128629538, 0.8175846178820715, 0.818484966869169, 0.8194158996353148, 0.8204013986147217, 0.8214545806134387, 0.8225784949996474, 0.8237675559384936, 0.8250093952104787, 0.8262869110562693, 0.8275803056924365, 0.828868942839686, 0.8301329073534689, 0.8313542023345718, 0.8325175672613794, 0.8336109388573698 ], [ 0.819125299895727, 0.8150424108499777, 0.8104993430040845, 0.8055246175222448, 0.8001740026852039, 0.7945343272016887, 0.788725563990989, 0.7829002699558252, 0.7772395147617721, 0.7719446926629828, 0.7672251338877598, 0.76328219976826, 0.7602914404105516, 0.7583851863065855, 0.7576383455708956, 0.7580599472724064, 0.7595920542937304, 0.7621162706291835, 0.7654665979871674, 0.7694463000998962, 0.77384599711231, 0.7784604618785659, 0.7831023215671431, 0.7876117769055963, 0.7918622664398026, 0.7957625657194232, 0.7992560854499199, 0.8023181698718279, 0.8049520873656544, 0.8071842393858106, 0.8090589580243286, 0.8106331531351442, 0.8119710156683341, 0.8131389732222628, 0.8142011043445354, 0.8152152250207318, 0.8162298443041164, 0.8172821363879318, 0.818396995767743, 0.819587143086828, 0.8208541504413965, 0.8221901751692713, 0.8235801441254105, 0.8250041215134744, 0.8264396192639036, 0.8278636601169922, 0.8292544674737552, 0.8305927207033461, 0.8318623707893704, 0.8330510536591996 ], [ 0.8173621985979537, 0.8129221182985712, 0.8079712770972507, 0.80253805584077, 0.7966807281853808, 0.7904919966252754, 0.7841017104218033, 0.7776767066315542, 0.7714167314074453, 0.7655456583771056, 0.7602977946069527, 0.7558999516199132, 0.7525510340886064, 0.7504018913039715, 0.7495387214344467, 0.7499730972796753, 0.7516406018436884, 0.754408364918077, 0.7580899956108931, 0.7624650796446323, 0.7672999161957855, 0.7723665253915436, 0.7774578899012689, 0.7823985092095554, 0.7870503080282238, 0.7913145695252439, 0.79513083509931, 0.7984737049504066, 0.8013483071841566, 0.803784988499124, 0.8058335939158603, 0.8075575845298061, 0.8090281953650031, 0.8103188414387422, 0.8115000087345874, 0.8126348862184883, 0.8137759809133864, 0.8149628991557525, 0.8162213776163498, 0.8175635247811497, 0.8189891119575066, 0.8204876566928564, 0.8220409876693338, 0.8236259744099756, 0.8252171421296165, 0.8267889585611801, 0.8283176592609547, 0.8297825557370418, 0.8311668359323536, 0.8324579134812318 ], [ 0.8155115129074905, 0.8106923171422648, 0.8053072272889281, 0.7993839524342116, 0.7929828797131868, 0.7862024460916552, 0.7791826260731554, 0.7721053155153589, 0.7651903622763955, 0.758686239722606, 0.7528549794282975, 0.7479519983197159, 0.7442027469169646, 0.7417793516207168, 0.7407811661167891, 0.7412229579943088, 0.7430331842610928, 0.7460627386931874, 0.7501023432570499, 0.7549051408083525, 0.7602104884212292, 0.765765455610884, 0.7713417263055503, 0.7767469768792501, 0.7818309397553858, 0.7864870585241338, 0.7906508924126179, 0.7942963544816286, 0.7974306260769727, 0.8000883156662453, 0.8023252114010166, 0.8042118515473471, 0.8058271032004335, 0.8072519693407381, 0.808563897125803, 0.8098318963265279, 0.8111127661639856, 0.8124486587160263, 0.8138660842870833, 0.8153763119678131, 0.8169769691611749, 0.8186545279851066, 0.820387304955214, 0.8221485991953427, 0.8239096453596483, 0.8256421426382101, 0.8273202196365393, 0.8289217880226173, 0.8304293129779801, 0.8318300798222343 ], [ 0.8135712942004811, 0.8083500806917364, 0.8025028855370027, 0.7960560901215243, 0.7890716659278758, 0.7816535104680012, 0.7739518659898675, 0.7661644233626841, 0.758532620612222, 0.7513318578495716, 0.7448550070198734, 0.7393897568657745, 0.7351918835788174, 0.7324581081759677, 0.7313032146949251, 0.7317459830776355, 0.7337069927549769, 0.7370188089021591, 0.7414463179971299, 0.7467129952054533, 0.7525282593139879, 0.7586117843226469, 0.7647121781167048, 0.7706191383892045, 0.776169538472593, 0.7812486553352047, 0.7857879602719664, 0.7897607243637271, 0.7931763507276844, 0.7960739989132392, 0.7985158120022591, 0.8005799291825189, 0.8023534538185892, 0.8039256089917854, 0.8053813970475009, 0.8067961370576805, 0.8082312481457671, 0.809731562938823, 0.8113243041817452, 0.8130196696215916, 0.8148127871196644, 0.8166866626541056, 0.8186156738150967, 0.8205691665751043, 0.8225147814341698, 0.8244212428289676, 0.8262604662041779, 0.8280089477035609, 0.8296484874548425, 0.831166353063353 ], [ 0.81153956342079, 0.8058924124455114, 0.799553803447738, 0.7925479903993459, 0.7849378362681194, 0.7768322574457404, 0.7683917635966403, 0.7598305018954394, 0.7514130352559502, 0.7434442369280725, 0.7362513582553514, 0.7301586383979228, 0.7254566829676931, 0.7223708253637503, 0.7210340724968469, 0.7214702435292082, 0.7235911491090196, 0.7272085072132586, 0.7320578456233262, 0.737829178010126, 0.7441985417937429, 0.7508554949891396, 0.757523674317381, 0.7639736318565119, 0.7700287503901297, 0.7755658483059346, 0.7805122129021221, 0.7848404983228112, 0.7885624575897476, 0.791722045377715, 0.794388135994423, 0.7966469772911698, 0.7985945197996099, 0.8003288653580072, 0.8019432046331246, 0.8035196971519952, 0.8051247474728515, 0.8068060309018381, 0.8085914362715266, 0.8104898619891064, 0.8124935778840726, 0.814581698441281, 0.8167242335834609, 0.8188861969293709, 0.8210313412502678, 0.8231252257263236, 0.8251374659090067, 0.827043147604597, 0.828823483607178, 0.8304658518219851 ], [ 0.8094144217789585, 0.8033163986659464, 0.796455599406184, 0.7888531885929474, 0.7805720362517058, 0.7717254304836038, 0.762483959969424, 0.7530787692078599, 0.7437990949585236, 0.7349820491348389, 0.7269932744801241, 0.7201985601577778, 0.7149287259819227, 0.711442606627112, 0.7098948767304187, 0.7103156847991747, 0.712606998840347, 0.7165566261212705, 0.7218664901635256, 0.7281886537595189, 0.7351618078569795, 0.7424423790335735, 0.749727040406375, 0.756766057195288, 0.7633687590637597, 0.7694032675845072, 0.7747926008297527, 0.7795087879153377, 0.783565998154013, 0.7870131561487468, 0.789926185880455, 0.7923999173757611, 0.7945397528633422, 0.7964533502398639, 0.7982427575660056, 0.799997549440758, 0.8017895233178388, 0.8036693934693036, 0.8056656924523604, 0.8077858063978953, 0.8100187984188754, 0.8123394751633505, 0.8147130620826225, 0.8170998781438858, 0.8194595168031072, 0.8217542071045477, 0.8239512048966429, 0.826024216549576, 0.8279539676361326, 0.8297280920438518 ], [ 0.8071942036505407, 0.8006194204671605, 0.7932042497016408, 0.7849656268962012, 0.7759653261608808, 0.7663201137647395, 0.7562102268687375, 0.7458841672994782, 0.7356573562372393, 0.7259021074387089, 0.7170269756394436, 0.7094451302476205, 0.7035340476413585, 0.6995920271143766, 0.6977996740669633, 0.6981950879250247, 0.7006690847705921, 0.7049818067997444, 0.7107964293402486, 0.7177217373419827, 0.7253545162760356, 0.733314749084155, 0.7412700987633515, 0.7489494843724367, 0.7561477332927392, 0.7627241067590353, 0.7685972763526286, 0.7737385846119739, 0.7781645923584062, 0.7819292683422417, 0.7851158183243432, 0.7878280705951386, 0.7901814601489883, 0.7922938857757306, 0.794276952308497, 0.7962282667613498, 0.7982254724992318, 0.8003225607268045, 0.8025487203133491, 0.8049096410884813, 0.8073908565830011, 0.8099624755013028, 0.8125845512781897, 0.8152123790936935, 0.8178011576585069, 0.8203096579574366, 0.8227027513620334, 0.8249528263040679, 0.8270402455853093, 0.8289530619419139 ], [ 0.804877668550014, 0.7977994215969314, 0.7897964597062102, 0.780880162547756, 0.7711098639545337, 0.7606046273831942, 0.7495536043042376, 0.7382227551621328, 0.7269550787490815, 0.7161611987072414, 0.7062976198475196, 0.6978316521777179, 0.6911951190111026, 0.686733059207166, 0.6846572925566391, 0.6850159088189359, 0.6876869643259896, 0.6923983147029399, 0.6987681391893857, 0.7063556277292001, 0.7147104488512125, 0.7234125603712731, 0.7320985895953299, 0.7404752118752288, 0.7483224719477988, 0.7554907022539327, 0.7618941477546467, 0.7675033182494081, 0.7723370101445447, 0.776454169847957, 0.7799453953641022, 0.7829238434500223, 0.7855155181334657, 0.7878492368335869, 0.7900468824097291, 0.7922147517489666, 0.7944368356243333, 0.7967706899720349, 0.7992462204004223, 0.8018672821634888, 0.804615601819335, 0.8074562473009355, 0.8103437625917784, 0.8132281422621823, 0.8160600072280815, 0.8187945919541091, 0.821394402087746, 0.8238306048410403, 0.826083350282532, 0.8281412886157777 ], [ 0.8024642248820042, 0.7948552219139688, 0.7862301022514091, 0.7765931759691622, 0.7659997366581274, 0.7545696399334834, 0.7424998483213703, 0.7300735290939543, 0.7176624240145807, 0.7057186238872216, 0.6947521049277404, 0.6852920809364665, 0.6778338544436143, 0.6727780604079451, 0.6703742817240286, 0.6706831653366083, 0.6735680278347235, 0.6787187399623823, 0.6857008985181486, 0.6940166363821529, 0.7031626106147184, 0.712674974880942, 0.722157433252067, 0.7312937884101477, 0.7398492548800246, 0.7476652773844041, 0.7546515668463736, 0.7607775231764142, 0.7660638381544158, 0.7705741786253719, 0.7744064813610366, 0.7776834423484362, 0.7805421006865547, 0.7831228448826758, 0.7855585675220028, 0.7879649481798022, 0.7904328770184254, 0.7930238210246646, 0.7957685256764893, 0.7986689390928261, 0.8017027723868544, 0.8048297820983976, 0.8079987397559563, 0.8111541366521025, 0.8142419032018452, 0.8172137216526223, 0.8200298026864271, 0.8226602282535243, 0.8250851115887423, 0.8272938921603731 ], [ 0.7999541740243056, 0.7917868601678154, 0.7825047007202934, 0.7721032496575139, 0.7606319048518262, 0.7482094595647495, 0.7350391520048479, 0.7214206438084423, 0.7077552124928643, 0.6945394722489457, 0.6823427775487744, 0.6717650346129668, 0.6633757792206977, 0.6576419781114632, 0.6548590826320652, 0.6551035300918412, 0.6582214615544585, 0.663857742456789, 0.6715162025056557, 0.6806331677991978, 0.6906457243385952, 0.701042380056575, 0.7113923361783641, 0.7213562973787506, 0.7306849001796785, 0.7392108524917675, 0.7468391509400955, 0.7535376107288853, 0.759328225758295, 0.7642788749765959, 0.7684945677957313, 0.7721075929681416, 0.7752663916260857, 0.778123529141808, 0.78082363555055, 0.7834924942124523, 0.7862284980188173, 0.789097438922075, 0.7921311048732409, 0.7953295530648958, 0.7986663667643364, 0.8020958213291831, 0.8055607547287298, 0.8090000505515776, 0.8123549255321021, 0.815573570334075, 0.818614031428339, 0.8214454837276914, 0.824048204422089, 0.8264126233465555 ], [ 0.7973489597164751, 0.7885959438473448, 0.7786219250563767, 0.767411874250693, 0.7550072036206293, 0.7415234347148679, 0.7271680633043801, 0.7122559595969649, 0.6972181796311032, 0.68259860121586, 0.6690320648024713, 0.6571989238905273, 0.6477554612511126, 0.6412479026954353, 0.6380275713292046, 0.6381907694664927, 0.6415634790639935, 0.6477369363514365, 0.6561421443349571, 0.6661394761012642, 0.6770993167952218, 0.6884588453738406, 0.6997517210210078, 0.7106158889867228, 0.7207880192552493, 0.7300923177898566, 0.7384287376987007, 0.7457627446526399, 0.7521167023013131, 0.7575618721445039, 0.7622098039920718, 0.7662022353753958, 0.7696992463865777, 0.7728661144714576, 0.7758599137191695, 0.7788172712208344, 0.7818447368566953, 0.7850129182934905, 0.7883549464623749, 0.7918691184557299, 0.7955249038344739, 0.799271059616728, 0.8030444609697672, 0.8067784031949138, 0.810409475358481, 0.8138825266681221, 0.8171536370899282, 0.8201912966360716, 0.8229761696789348, 0.8254998815625343 ], [ 0.7946514053193812, 0.7852859794894236, 0.7745860611902379, 0.7625241252032896, 0.7491313225538047, 0.7345173644021693, 0.7188914791319548, 0.7025817832887064, 0.6860486031243604, 0.6698852200892808, 0.6547979733935304, 0.6415582031207543, 0.6309232663259847, 0.6235340689099097, 0.6198100952164216, 0.6198726469393613, 0.6235239185350275, 0.6302909756976881, 0.6395187836513336, 0.6504801784264084, 0.6624713537292584, 0.6748749670588374, 0.6871889380086099, 0.6990295306064505, 0.7101204539014887, 0.7202776624472281, 0.7293954700347053, 0.7374358150850016, 0.7444200558613826, 0.7504216080923063, 0.7555577084505372, 0.7599791616780932, 0.7638577626380096, 0.7673719403265157, 0.7706918790658399, 0.7739657968063413, 0.7773091036902033, 0.7807977997422985, 0.784466776890418, 0.7883128455724991, 0.792301535298701, 0.7963762142355645, 0.8004679287748176, 0.8045045552557099, 0.8084182694729242, 0.8121508307712669, 0.8156566226169424, 0.8189037160803163, 0.8218734042971978, 0.8245587106550842 ], [ 0.7918659208777057, 0.7818626549097322, 0.7704044097990786, 0.7574492440719406, 0.7430156699039193, 0.7272047884181334, 0.7102245494797259, 0.6924136062608163, 0.6742600913927711, 0.6564078824801873, 0.6396403081663201, 0.6248306654735443, 0.6128534347958146, 0.6044623628570588, 0.6001600911906884, 0.600099380928021, 0.6040542700219736, 0.6114748594577413, 0.6216044689462338, 0.6336154522164834, 0.6467223328283224, 0.6602510152240441, 0.6736646919194381, 0.6865599343901436, 0.6986488753524764, 0.709739352992419, 0.7197190088244478, 0.728544506838119, 0.7362342629679278, 0.7428621395371885, 0.7485498329960826, 0.7534565600924605, 0.7577657165988818, 0.7616692020002488, 0.7653509160003573, 0.768971408106769, 0.7726556974964736, 0.7764858474901559, 0.7804990665177018, 0.7846911234964066, 0.7890239752195009, 0.7934359319003695, 0.7978525398221469, 0.8021966007534955, 0.8063962375623529, 0.8103904827039045, 0.8141323686248395, 0.8175898551318367, 0.8207451182993241, 0.8235927715857203 ], [ 0.7889986635660154, 0.7783340462509317, 0.7660875703921185, 0.7522010549343612, 0.7366780153185762, 0.7196080045094845, 0.7011942829849787, 0.6817825754121776, 0.661886228738037, 0.6421995757324366, 0.6235873371153313, 0.6070355905211495, 0.5935533880151393, 0.5840283295901547, 0.5790643308299462, 0.5788537087234196, 0.5831371510762454, 0.5912724157839411, 0.6023830134313295, 0.6155267772665772, 0.6298296897425781, 0.6445602611808785, 0.6591495997543131, 0.6731776147043971, 0.6863465259366249, 0.6984558570941147, 0.709384873721277, 0.7190824587754542, 0.727561458411973, 0.7348939181956997, 0.7412043506313225, 0.7466594282173884, 0.7514538211782101, 0.7557930753823564, 0.7598753292258156, 0.7638741829289811, 0.7679250537282276, 0.7721168405343958, 0.7764897804471953, 0.7810392462126418, 0.7857242163697545, 0.7904785089976757, 0.7952227229915005, 0.7998751275910416, 0.8043603136716695, 0.8086150681266485, 0.8125914938621182, 0.8162577845562888, 0.8195972586652004, 0.8226062923666541 ], [ 0.7860576393298743, 0.7747107282338095, 0.7616495728377602, 0.7467981514196109, 0.7301428056029992, 0.7117586483598575, 0.691840613518941, 0.6707373699218361, 0.648983670189314, 0.6273224544765219, 0.6067024646475393, 0.5882323889292336, 0.5730740360461328, 0.5622725764360533, 0.5565547661818335, 0.5561625455324637, 0.560797178288453, 0.5697058405502821, 0.5818715329443976, 0.5962230017079215, 0.6117923126498978, 0.6277923292444033, 0.6436267825261461, 0.658863029575929, 0.6731950907513138, 0.6864133152960621, 0.6983859162552755, 0.70905051229418, 0.718410933895965, 0.72653452850187, 0.7335465379717477, 0.7396198195461724, 0.7449597647716503, 0.7497855805784999, 0.7543100657547417, 0.7587205527954338, 0.7631636791465137, 0.7677360577991291, 0.7724818401216555, 0.7773968740757616, 0.7824380117849803, 0.7875354096529079, 0.7926055211051725, 0.7975628406683533, 0.8023291191068368, 0.8068395006465101, 0.8110456536511724, 0.8149163818638386, 0.8184364022195726, 0.8216039974730284 ], [ 0.7830527403220264, 0.7710057758215116, 0.7571078315428655, 0.7412638053322638, 0.7234410628163951, 0.7036976796094678, 0.6822166756486261, 0.6593451092258464, 0.6356341785818641, 0.6118716024591153, 0.5890902589193162, 0.5685291521468308, 0.5515206414266368, 0.5392932955303275, 0.5327218188228052, 0.5321101134129775, 0.5371130621721217, 0.5468460343178843, 0.5601286279794324, 0.5757464105053566, 0.5926348988420265, 0.6099563923446698, 0.6270943951731068, 0.6436087727545722, 0.6591867003670728, 0.6736073725318291, 0.6867239332412878, 0.6984580469152839, 0.7088001528293125, 0.7178093653040429, 0.7256091244399268, 0.732376891219277, 0.738327996252393, 0.7436951489342217, 0.7487061110004726, 0.753562574804102, 0.7584232440906657, 0.7633934321236971, 0.768522275925974, 0.7738072165252928, 0.7792041128650871, 0.7846405777322277, 0.7900299884919565, 0.7952840502243113, 0.8003225411742241, 0.8050796861333007, 0.8095072818013853, 0.8135751409220118, 0.8172696222179866, 0.8205910207115504 ], [ 0.7799957216230371, 0.7672346593191604, 0.7524829176775517, 0.7356255751590298, 0.7166098071128836, 0.6954746504100444, 0.672388057346047, 0.6476909031426566, 0.6219450169676667, 0.5959770349812504, 0.5709009087845004, 0.5480901773336352, 0.529063448547241, 0.5152593274269154, 0.5077287072378773, 0.5068521968188886, 0.5122305389074767, 0.5228232731450587, 0.5372624137849529, 0.5541783534857043, 0.572411828449594, 0.591084022048835, 0.6095680169911951, 0.627421808158262, 0.644326085046138, 0.6600451908224976, 0.6744114296561151, 0.687324397615153, 0.6987557647072944, 0.7087522285780787, 0.7174324828958496, 0.7249767279855913, 0.7316092329182503, 0.7375758728792757, 0.7431195416433856, 0.7484568488710942, 0.7537594231505818, 0.7591423687838111, 0.7646610712237359, 0.7703159408197695, 0.7760632723766652, 0.7818295537152637, 0.7875264318149725, 0.7930640383379276, 0.7983612203372952, 0.8033521206187333, 0.8079892862497398, 0.8122439508425833, 0.8161043357709131, 0.8195728071974454 ], [ 0.776900130765356, 0.7634150515810092, 0.7477981710437784, 0.7299146315483875, 0.709690999917472, 0.6871461982697276, 0.6624308646022808, 0.6358756967889532, 0.6080470831984793, 0.5798030059864271, 0.552331876151959, 0.5271410777453631, 0.5059467510387777, 0.49042266464242207, 0.48182594443503823, 0.4806307681622912, 0.48637537110430684, 0.4978374146150523, 0.5134376542040524, 0.5316438503062122, 0.5512101875450164, 0.5712315219205776, 0.5910828664469945, 0.6103257762292436, 0.628632922856013, 0.6457476699861558, 0.6614735346541423, 0.6756803390755547, 0.6883145946700917, 0.6994058093215854, 0.7090646398776687, 0.7174719273022525, 0.7248596839355326, 0.7314864385660302, 0.7376102420705282, 0.7434630932366086, 0.7492304023951775, 0.7550382510539563, 0.7609497236128461, 0.7669698346194462, 0.7730570409272152, 0.7791384244978045, 0.785125520632225, 0.7909283276544431, 0.7964659669392589, 0.8016734397842379, 0.8065047133058204, 0.8109328560800851, 0.8149481414070854, 0.8185550114650028 ], [ 0.7737812132811946, 0.7595665834280375, 0.7430792028399759, 0.724164864558942, 0.7027300750308553, 0.6787738051532702, 0.6524285566717538, 0.6240121883247464, 0.5940902479111628, 0.5635436217085401, 0.5336252156605167, 0.505969517361242, 0.4824942797370888, 0.4651284242967175, 0.4553643041303179, 0.45378747050744095, 0.4598649883754269, 0.4721663199011475, 0.48888092326353366, 0.5083144466292109, 0.5291515656080095, 0.5504816314499318, 0.5716958717318823, 0.5923634478456579, 0.6121444410940614, 0.630751897448614, 0.6479500571746047, 0.6635696035425991, 0.6775245706894576, 0.6898220360444983, 0.7005610879153612, 0.7099209431628077, 0.7181400015953132, 0.7254887666510484, 0.7322403205121857, 0.7386424226705708, 0.7448951034006391, 0.7511366863915018, 0.7574395779581012, 0.7638152758061271, 0.7702264073119678, 0.7766026521466813, 0.7828573084234184, 0.7889018873439544, 0.794657136749277, 0.8000599438399879, 0.8050663993588375, 0.8096518122840153, 0.8138086576731026, 0.8175433996193537 ], [ 0.770655824987566, 0.7557105986677678, 0.738353369450267, 0.7184118885919712, 0.6957742102468747, 0.6704209966127694, 0.642467697934922, 0.6122188318224733, 0.5802355912293721, 0.5474138876644071, 0.5150588811524494, 0.4849190208620539, 0.459107746977535, 0.43981897489455224, 0.42880314396981456, 0.42677313750675777, 0.43311625102786727, 0.4461704069205905, 0.46388231294913657, 0.48440848505375633, 0.5063923105703865, 0.5289445980392359, 0.5514877185830238, 0.5735994446655512, 0.5949183302690809, 0.6151138218249483, 0.6338976330826949, 0.651050369124362, 0.6664455318737034, 0.6800622447519763, 0.6919843873734303, 0.7023872009429943, 0.7115139951394868, 0.7196464148111896, 0.7270722930970143, 0.7340554078091603, 0.7408112083163829, 0.7474915791249724, 0.7541800150339331, 0.760896588301274, 0.7676103542070734, 0.7742558444277089, 0.7807502176800504, 0.7870083207580102, 0.7929540012489581, 0.7985271260586486, 0.8036866317083364, 0.8084104540502073, 0.8126933744349726, 0.8165437636524919 ], [ 0.7675423849338731, 0.7518699697163823, 0.7336493197754713, 0.7126921068781121, 0.6888705784273358, 0.6621503051212281, 0.6326330144104043, 0.6006122911611177, 0.5666446825809529, 0.5316357601444918, 0.4969305496214004, 0.46437296645729564, 0.43625425549013397, 0.4150270741803413, 0.4027088166381707, 0.400148466947902, 0.40664518624751966, 0.42029023726040754, 0.4387917935314238, 0.4601879450448064, 0.4831220847106395, 0.5067587799829442, 0.5305650936297794, 0.554123363598007, 0.577035994497446, 0.5989110868311889, 0.6193918594405219, 0.6381966136629725, 0.6551498377738416, 0.670197128102954, 0.683403551129719, 0.6949380112640092, 0.7050471648686, 0.7140228236073742, 0.7221671351448133, 0.7297600262957473, 0.7370331017657891, 0.7441531448240433, 0.7512166054615262, 0.7582543843617144, 0.7652444180679093, 0.7721285431827833, 0.7788300522592463, 0.7852690858192588, 0.7913741527587818, 0.7970892356243314, 0.8023768413051802, 0.807217890983193, 0.8116095282716537, 0.8155618554610908 ], [ 0.7644608999526952, 0.7480690350978908, 0.7289967279568558, 0.7070420270574725, 0.6820648871748123, 0.6540204657608436, 0.6230024099552888, 0.5892991619925256, 0.5534667320797754, 0.5164196626445517, 0.47953337599827445, 0.44472627638612816, 0.41443764370244196, 0.391350972871597, 0.37773515495434223, 0.37456819170108646, 0.381052471054311, 0.39503296761698564, 0.4140080963046752, 0.4359512060464612, 0.459560855608849, 0.4840911443394676, 0.5090634075952117, 0.5340534030694565, 0.5586060690838904, 0.5822458625067711, 0.6045292324068998, 0.6250991789424157, 0.6437226739720496, 0.660306413847331, 0.6748932125334409, 0.687643326207204, 0.6988051348230497, 0.7086795110884803, 0.7175823243258794, 0.7258096417044012, 0.733609869271674, 0.7411660028504228, 0.7485893565883072, 0.7559240080846817, 0.7631593526835645, 0.7702471139237138, 0.7771191047334748, 0.7837028015555934, 0.789932985304678, 0.7957589051843189, 0.8011473492468182, 0.8060825471743697, 0.8105640118974835, 0.8146033466517558 ], [ 0.7614330812630582, 0.7443337080124298, 0.7244263133423311, 0.7014980206871019, 0.6754005485069355, 0.6460844134996708, 0.6136428336295955, 0.5783682558746633, 0.5408253003231641, 0.5019432943940794, 0.46312493422356704, 0.4263442097702661, 0.39414988628242315, 0.36940382186600157, 0.3545758646731183, 0.35073855331541487, 0.3569867120351266, 0.370942976230566, 0.3899582862607107, 0.4120216258364801, 0.43595486833125974, 0.4611381965197566, 0.4871502516843805, 0.5135404432894239, 0.5397679631648095, 0.5652473664041943, 0.5894286098395043, 0.6118663395281421, 0.632261930311747, 0.6504782222041277, 0.6665325860701262, 0.6805743944601025, 0.6928520771949213, 0.7036743366236103, 0.7133700147359401, 0.7222511592282984, 0.7305835028659524, 0.7385674920931595, 0.7463311858222594, 0.7539341981729091, 0.7613799969282576, 0.7686328193233173, 0.7756354245018059, 0.7823246914127809, 0.788643288931364, 0.7945468701850046, 0.8000071856666913, 0.8050120562367035, 0.8095633249044976, 0.8136738179256615 ], [ 0.7584825553562582, 0.7406917792290045, 0.719970215800969, 0.6960966820052599, 0.6689187922733042, 0.6383886666664973, 0.604608018149968, 0.5678851156718999, 0.5288071041561702, 0.488331219848583, 0.4478934194666043, 0.4095116694176889, 0.37580310221511126, 0.3497331469028424, 0.3338802763343015, 0.3293384682966132, 0.3350783727642661, 0.34855329572537547, 0.3670675530377642, 0.38873277898942216, 0.41257257626333754, 0.43812789378532724, 0.4650296153305497, 0.49277223168296636, 0.520694921738796, 0.5480735898444744, 0.5742318259384451, 0.5986236351541521, 0.6208775242075338, 0.6408080605517104, 0.6584042412973218, 0.6738023811529923, 0.6872492274712989, 0.6990599568165159, 0.7095754800863961, 0.7191235034346701, 0.7279874584803461, 0.7363863469648392, 0.744466744713903, 0.7523060780837484, 0.7599244371613255, 0.7673011494890919, 0.7743923032668494, 0.7811462056702729, 0.7875149878227157, 0.7934618007164954, 0.7989639942575728, 0.8040132195248485, 0.8086135694041211, 0.8127787788280078 ], [ 0.7556351467244822, 0.7371733986759383, 0.715662736235432, 0.690875859584158, 0.6626599333562643, 0.6309745721681007, 0.595939046356497, 0.5578905379896446, 0.5174559941882382, 0.47564019566085963, 0.43392839074067785, 0.39438232341203044, 0.3596516548202703, 0.33271697854592125, 0.31613447170644216, 0.31090375052281355, 0.3158442773238105, 0.3283194640651104, 0.3457216370925242, 0.36641244153188074, 0.389701705226574, 0.41532275042688266, 0.44294636311232977, 0.471976837498373, 0.5015957665870031, 0.5309115703282635, 0.5591030259227685, 0.5855127261621306, 0.6096900626083627, 0.6313974346983213, 0.6505927233077722, 0.6673970211191149, 0.6820535834954571, 0.6948825833268256, 0.7062359456178416, 0.7164565408709872, 0.7258456848795355, 0.7346418450937118, 0.7430116929482512, 0.75105255809546, 0.7588035333702129, 0.7662614631492594, 0.7733980184226158, 0.7801748518190206, 0.7865550414902742, 0.7925102575722207, 0.7980240284321805, 0.8030920294295887, 0.807720489647446, 0.811923715163474 ], [ 0.7529191818570379, 0.7338116722081207, 0.7115413737498072, 0.6858763115865922, 0.6566658196971478, 0.6238816338219956, 0.5876683857669959, 0.5484045611670458, 0.5067750527094514, 0.4638557272525017, 0.42120555575159035, 0.3809425928692676, 0.34572541176180416, 0.31846159653054434, 0.30153242223018134, 0.2956954429708926, 0.2995789533982269, 0.3105469945758418, 0.3262284951002469, 0.3453684157079719, 0.367648170094945, 0.3930234049746099, 0.421189561160977, 0.45142390009620953, 0.48271414563031956, 0.5139754516321264, 0.544226309638786, 0.5726890900056566, 0.59882878926143, 0.6223520890064655, 0.643183065051992, 0.6614253690086037, 0.6773168629074993, 0.6911811236526041, 0.703379892453678, 0.7142705300211196, 0.724172201808159, 0.7333434965895769, 0.7419724822871646, 0.7501781984736793, 0.7580208473135311, 0.7655169677714341, 0.7726558533363279, 0.7794142443156559, 0.7857675144146807, 0.7916967733473191, 0.7971922366956009, 0.8022537531845724, 0.8068895498274182, 0.8111141577453727 ], [ 0.7503657369083392, 0.7306432601842393, 0.707648002656096, 0.6811437848160139, 0.650983241221687, 0.6171527567596707, 0.5798274499065381, 0.5394365605028952, 0.49673871805995945, 0.4529042579343479, 0.40959461434996125, 0.3690074090140613, 0.33380281263737643, 0.3067429667965067, 0.28988810848092555, 0.28360151635244274, 0.28627036723667904, 0.29533497792518126, 0.3087895411264653, 0.325879108158131, 0.3467360057830327, 0.37157026396382276, 0.4000920357661033, 0.43142156940322113, 0.46432395346604516, 0.4975016512573044, 0.5298014221663823, 0.5603185065211108, 0.5884288470912017, 0.6137799273956867, 0.636259244255807, 0.655950694564341, 0.6730847625720402, 0.6879867439932964, 0.701026868758069, 0.7125761276773676, 0.7229712506565437, 0.732491292251667, 0.7413466620468614, 0.7496795399687081, 0.7575729741629367, 0.7650650361165469, 0.7721643888161623, 0.7788643655809026, 0.7851538043345073, 0.7910240477838536, 0.7964724260538888, 0.801503066130721, 0.8061260395287109, 0.8103557627576256 ], [ 0.7480087311991732, 0.7277088222637194, 0.7040299499659043, 0.6767311640224726, 0.645667804955244, 0.6108407681379313, 0.572456961437302, 0.5310008382770435, 0.4873148977871144, 0.44268247239300357, 0.398894985951809, 0.3582592658434478, 0.3234472963612418, 0.297032760904829, 0.2806455065828006, 0.27413194349084896, 0.27558699229290706, 0.2825627853776944, 0.29349081465702087, 0.308189474629179, 0.32730473376396013, 0.35133872579060493, 0.38002243694712595, 0.4123067924495314, 0.4467198222714181, 0.48174081921664613, 0.5160375321172427, 0.5485724710291116, 0.5786279828535065, 0.6057887022411046, 0.6299026351296927, 0.6510315461953052, 0.6693965238667591, 0.6853228437326115, 0.6991877861660638, 0.71137492183992, 0.7222379820583257, 0.7320764720218546, 0.7411236665965464, 0.7495458630975593, 0.7574502412601125, 0.7648978256599213, 0.7719180352569175, 0.7785220107830372, 0.784713004634624, 0.7904932355494086, 0.7958674842080323, 0.8008442175964685, 0.8054351922515336, 0.8096543912837009 ], [ 0.7458847610813537, 0.7250531289181216, 0.7007406761977697, 0.6727002136226597, 0.6407875331448457, 0.6050151041590519, 0.565618541968969, 0.5231356171130216, 0.47849452927175967, 0.4331009975351865, 0.38889713678926685, 0.3483299635584609, 0.31411069077884995, 0.2886207070444563, 0.27300870843674224, 0.26653574812696346, 0.26696177096792956, 0.2719352476711346, 0.28031818590007973, 0.2925087372319003, 0.3096976131348158, 0.33272197200741555, 0.36136595686946593, 0.3944273071330809, 0.43020247201776185, 0.4669469692549057, 0.503145559719008, 0.5376228820223018, 0.5695629014094338, 0.598483572917266, 0.6241904881772243, 0.6467209728914931, 0.666284764862605, 0.6832053816440183, 0.6978656263586194, 0.7106604060008791, 0.7219595904543951, 0.7320827237681213, 0.7412859990685737, 0.7497602973869725, 0.7576377037716223, 0.7650031397892478, 0.7719077532184558, 0.7783813722466579, 0.7844423637949723, 0.7901042955480108, 0.7953796348730355, 0.8002812082007102, 0.8048222996313912, 0.8090161738885581 ], [ 0.744032578464372, 0.7227246642605406, 0.6978397481576024, 0.669122374576546, 0.6364252829984732, 0.599767196753276, 0.5594052244764202, 0.5159219584916391, 0.47032354947989724, 0.4241354318591969, 0.3794596288242797, 0.33891078558009463, 0.30528236466079617, 0.28080318949871863, 0.2661560345367135, 0.26000718550081003, 0.2597518820221758, 0.2630760560878747, 0.26919011188066794, 0.27900269294453356, 0.29423359138499217, 0.31609647953583436, 0.34449203455190036, 0.37811591938060873, 0.4150603198443532, 0.45336507584368546, 0.4913299294904572, 0.5276364921581974, 0.5613655005931887, 0.5919646170079854, 0.6191944399861153, 0.6430658590036133, 0.6637755022766864, 0.6816434533511234, 0.6970564403724909, 0.7104192670025369, 0.7221167642057642, 0.7324876837600364, 0.7418106906593419, 0.7503011715951986, 0.7581163418096769, 0.7653654493234905, 0.7721218942974255, 0.7784347073544424, 0.7843377961865087, 0.7898563648636924, 0.7950106966634966, 0.7998179550842588, 0.8042928028503464, 0.8084475458434186 ], [ 0.7424921479036758, 0.7207745832156186, 0.6953918362590932, 0.6660781153511816, 0.6326790800783413, 0.59521296575373, 0.5539481817520008, 0.5094981820791921, 0.46293033673308837, 0.41587423997502043, 0.3705864149610658, 0.32986785087239134, 0.2966480732448832, 0.2730835587865808, 0.2594662296843473, 0.25390634051236705, 0.2534164421187419, 0.25563647360435643, 0.25999363721669644, 0.2677749279293779, 0.2811611617303712, 0.30177172168743766, 0.32971284891890024, 0.36366131926141726, 0.4015506741924397, 0.4412191934398921, 0.4807808129204861, 0.5187695937924963, 0.5541591560209509, 0.5863243237156345, 0.6149790164376256, 0.6401062975894551, 0.6618882612987215, 0.6806399957887752, 0.6967504995079868, 0.7106328352077489, 0.7226852973077045, 0.7332645892762353, 0.7426708961466268, 0.7511434797225814, 0.7588643501118179, 0.765966982163844, 0.7725470860202397, 0.7786730280217005, 0.7843943947302465, 0.7897481183241264, 0.7947623151747584, 0.7994584217319423, 0.8038523435681348, 0.8079552398467698 ], [ 0.7413032645409162, 0.719254959295098, 0.6934645762330381, 0.6636544849164884, 0.6296596460165462, 0.5914910198370811, 0.5494170759011024, 0.5040651804473081, 0.4565408726258219, 0.4085512452664044, 0.3624861689449232, 0.32133684376435834, 0.2882224996507991, 0.2653347468232102, 0.2526942685835017, 0.2479269384414056, 0.24765444027850003, 0.24938316901738192, 0.2526111157691695, 0.258840738949262, 0.27060541748584666, 0.28993717530070084, 0.3172440343867638, 0.35128338272921317, 0.3898850179748724, 0.43070321538286443, 0.47166768303857864, 0.5111631841416507, 0.5480550862051145, 0.5816450301396547, 0.6116000638280704, 0.6378749174325576, 0.6606361676852534, 0.6801924927139357, 0.696933455397753, 0.7112785444701772, 0.7236377075492623, 0.734383932646489, 0.7438374852163748, 0.7522603367634892, 0.7598584108058587, 0.766788788746291, 0.7731690848811466, 0.7790867508147493, 0.7846068975123038, 0.7897780767628618, 0.7946361403776034, 0.7992066917945818, 0.8035067595638383, 0.8075462259418571 ], [ 0.7405037772533049, 0.7182163604397303, 0.6921252980251346, 0.6619407729401283, 0.6274847945027358, 0.5887557403883933, 0.5460121933053659, 0.4998788867890118, 0.451474572365829, 0.4025505732036558, 0.3555949317123086, 0.3137718753575023, 0.28042574054010605, 0.2578925045716037, 0.24606445030143845, 0.2421783153606044, 0.24247133224505313, 0.24424346764519433, 0.24693519180952395, 0.2521105996681016, 0.262534261642111, 0.2806305251789139, 0.30718387125923124, 0.3411215843014905, 0.38022194585178953, 0.4219753210643574, 0.4641342848484332, 0.5049384833988017, 0.5431486751980678, 0.5779962179064366, 0.6091030451782156, 0.6363960971046455, 0.6600259382854237, 0.6802935769326335, 0.6975873875529095, 0.7123312691911489, 0.7249447246106162, 0.7358149831887624, 0.7452805045426112, 0.7536243115448207, 0.7610748512814207, 0.7678117007927522, 0.7739735301252434, 0.7796662542273951, 0.7849700671219152, 0.7899448331466484, 0.7946339270500578, 0.7990669714845628, 0.803262015003782, 0.8072275925999887 ], [ 0.7401275281583114, 0.717704905071555, 0.6914368208862376, 0.6610225155984296, 0.6262709279403738, 0.5871653361629956, 0.5439479638946931, 0.49722825070660975, 0.44811644255963984, 0.3983746974399186, 0.3505451894344672, 0.30792360151850834, 0.2740752371015975, 0.25155480515424755, 0.24026483793177833, 0.23717184752242185, 0.2381663604794184, 0.2403029497857689, 0.24287732494586156, 0.24740287667097557, 0.25677020865102895, 0.2737482461957645, 0.2995220878356174, 0.3332400398864521, 0.3726677197826119, 0.41515516653960977, 0.45829422885413523, 0.5001923656490805, 0.5395155718693564, 0.5754316196766158, 0.6075211923705006, 0.6356850513800152, 0.6600577322404355, 0.6809314662270379, 0.6986916549392926, 0.7137644417587109, 0.7265765453800491, 0.73752707462687, 0.7469704135260871, 0.7552085484977755, 0.7624906102275545, 0.7690171186914643, 0.7749465459274782, 0.7804023023743556, 0.7854789523612167, 0.7902471751171438, 0.7947575441230794, 0.7990435122273847, 0.8031240614377645, 0.807006368286642 ], [ 0.7402021795661314, 0.7177590583125276, 0.6914527077571699, 0.6609744348882511, 0.6261224946297196, 0.5868660735421497, 0.5434294136361999, 0.4964003535129295, 0.4468663474081874, 0.3965732493194884, 0.3480719300058088, 0.304726059146747, 0.270262909411498, 0.24745735121294107, 0.2363240260734437, 0.23370619933503856, 0.23524265117055387, 0.23775816872301123, 0.24037084912576856, 0.2444867637080283, 0.2530485790221898, 0.2690962545361499, 0.2941726531491335, 0.3276429473604953, 0.36727974275005976, 0.4103210903174266, 0.4542259518389016, 0.4969922828848651, 0.5372075265683992, 0.5739862231433853, 0.606873611680012, 0.6357468549906464, 0.6607248874056625, 0.6820902227855046, 0.7002235160314942, 0.71555089855822, 0.7285037959746741, 0.739490594648114, 0.7488790319519703, 0.7569876214373411, 0.7640839619014094, 0.7703875858248088, 0.7760751590021924, 0.7812863106509003, 0.7861290156851066, 0.7906840940761196, 0.7950088886311304, 0.7991404535779766, 0.8030986326721453, 0.8068892887532336 ], [ 0.7407471405600274, 0.7184065067664088, 0.6922125218585027, 0.6618531862835626, 0.6271208181254418, 0.5879749507646015, 0.5446251439430452, 0.49763817352754686, 0.4480732781506418, 0.39764241083429225, 0.3488644305265507, 0.30509336069677156, 0.27010540467872773, 0.24680535538331652, 0.23535756493987664, 0.23265343775374514, 0.2342507641042178, 0.2368305216844612, 0.23935830247137496, 0.24312736877339558, 0.2510861015393065, 0.2664482847604262, 0.2910074333179813, 0.32428667500332997, 0.3640661430744438, 0.4075046367618555, 0.45196635433084426, 0.4953707880406378, 0.536248289741966, 0.5736734861959578, 0.6071635779340304, 0.6365755572916957, 0.6620136306243428, 0.6837498788745203, 0.7021585298814017, 0.7176634483072425, 0.7306981833007188, 0.7416776538782159, 0.7509801750157189, 0.7589380956554597, 0.7658349777393642, 0.7719071330988518, 0.7773475198087876, 0.782310446671227, 0.7869161246018307, 0.7912546833750418, 0.7953897103383599, 0.7993615950561735, 0.8031909838351081, 0.8068825211932569 ], [ 0.7417718178605136, 0.7196614799558656, 0.6937376949964876, 0.6636909350693084, 0.6293140252827761, 0.5905637658451006, 0.547641911209744, 0.5010997290362361, 0.45196945467909777, 0.40191918922917025, 0.35340060784248645, 0.30967475561759367, 0.2744196671269273, 0.25050890212161225, 0.23822708304808626, 0.23468724000945845, 0.2355999231814182, 0.2376579296453692, 0.2397530008620971, 0.24309722939869918, 0.250613412327166, 0.2655728600175047, 0.28986684745240276, 0.3230776062927819, 0.36297811368045096, 0.4066823330918274, 0.4515040606308815, 0.49532066830827454, 0.5366303646027111, 0.57448331112493, 0.6083773726300936, 0.6381536101636807, 0.6639028984802807, 0.6858865124083539, 0.7044707898740655, 0.7200751952075668, 0.733132857045813, 0.7440624480681524, 0.7532499852509632, 0.7610388055978934, 0.767725731870564, 0.7735614007579348, 0.7787529358608745, 0.7834675769420525, 0.7878364195787454, 0.791957940036174, 0.7959013628873758, 0.7997101135563338, 0.8034055914434108, 0.8069913616190003 ], [ 0.7432743945924044, 0.7215228566883102, 0.6960285765744213, 0.6664907317749186, 0.6327097536951057, 0.5946475380504539, 0.5525061104328776, 0.5068282601895103, 0.45862206185193427, 0.4095033379814895, 0.36182251658956543, 0.3186647351863876, 0.2834603497454229, 0.2588755268125422, 0.2452484809064236, 0.2400546370233613, 0.23940327575232137, 0.24020019809910287, 0.24138553907654997, 0.24414720736144283, 0.2513574331499456, 0.2662185193319797, 0.290545042471731, 0.32385866269219227, 0.36389952107019297, 0.4077686849739944, 0.4527751365153914, 0.4967925205072524, 0.5383137360645093, 0.5763814482964223, 0.6104840649094754, 0.6404518506012316, 0.6663644208760422, 0.6884723750771397, 0.7071330650994303, 0.722759675867199, 0.7357825311179458, 0.7466213556058544, 0.7556669982083761, 0.7632708808218494, 0.7697402800566235, 0.7753375647734443, 0.7802817430323289, 0.7847510844062037, 0.788886083191414, 0.792792494420353, 0.7965445053930237, 0.8001882494307402, 0.8037458363519173, 0.8072199257451784 ], [ 0.7452412876358506, 0.7239733070207763, 0.6990630850615557, 0.6702244057904284, 0.6372718838435636, 0.600179479320415, 0.5591561186541224, 0.5147407393330456, 0.46791635702425793, 0.42023320639093165, 0.3739029616529753, 0.3317581444513528, 0.29686016550100847, 0.2715341988015541, 0.2561092782931127, 0.2485057929783123, 0.24542886679333195, 0.24420387057305715, 0.24397070198511303, 0.24597059826813625, 0.2530069189310268, 0.2680873121983809, 0.29277371457317747, 0.3264017149971272, 0.36664480351809947, 0.410616896422539, 0.45566490855698094, 0.4996967500178343, 0.5412276413677222, 0.5793109061229297, 0.6134365575222313, 0.643430230003491, 0.6693631943317939, 0.6914761679073775, 0.7101169283715655, 0.7256908805111592, 0.7386234294034324, 0.7493328303955518, 0.7582119971859111, 0.7656175708230694, 0.7718644581786723, 0.7772241099393774, 0.7819250536088094, 0.7861545928039031, 0.7900610441054744, 0.7937562993156965, 0.7973187838888346, 0.8007969884938413, 0.8042136945094321, 0.8075708558192557 ], [ 0.7476473576095838, 0.726979589970885, 0.7027971570277476, 0.6748332942576476, 0.642921811478162, 0.6070533529880547, 0.567446853419896, 0.5246368835990894, 0.47957357276434054, 0.433720742995515, 0.38911089272194654, 0.34826151215082063, 0.3137910169942691, 0.2876195109658176, 0.27003125021318064, 0.25941394174742166, 0.2531820479951763, 0.24925434008509523, 0.24713304372222575, 0.24820989610923028, 0.2552137496791455, 0.2708414732201744, 0.29623604266625614, 0.33042477872655823, 0.37097535091239076, 0.41503243571613735, 0.4600183404444359, 0.5039111331670253, 0.5452759021592057, 0.583195607306767, 0.6171740189205129, 0.6470393660839521, 0.6728584077256234, 0.6948635263099198, 0.7133929358807536, 0.7288432260939347, 0.7416331243128521, 0.7521771573835295, 0.7608677213597633, 0.7680639289676787, 0.77408555580336, 0.7792105004153683, 0.7836744272843782, 0.7876716399162359, 0.7913566542310398, 0.7948463133831336, 0.7982225243576231, 0.8015357685705851, 0.8048094610745412, 0.8080450659152825 ], [ 0.7504568583143263, 0.7304939783989771, 0.7071669306162679, 0.6802316658422343, 0.6495439471100436, 0.6151125194556548, 0.5771649735124486, 0.5362251235410851, 0.4931956190800345, 0.44942785958969994, 0.4067376472975151, 0.36728737231350217, 0.333228646635739, 0.30607490474708987, 0.28605648249546634, 0.2720058781953934, 0.2620778040090097, 0.254903518263521, 0.25050291290672017, 0.2505327188725943, 0.2576593308015889, 0.2741656923578782, 0.30062337113841847, 0.3356393851120891, 0.37663595318291654, 0.4207994808682934, 0.46565853174654903, 0.5092934697090354, 0.5503454408896525, 0.5879460314354636, 0.6216255426502738, 0.6512228358581422, 0.6768047945364027, 0.6985977270164149, 0.716930896163774, 0.7321915345984726, 0.7447903298802183, 0.7551361358132814, 0.7636184920849578, 0.770596417577166, 0.7763919227270123, 0.7812868007870266, 0.7855215131888987, 0.7892953429557443, 0.7927673778042159, 0.7960582135404427, 0.799252468055909, 0.8024022376744939, 0.8055315315626659, 0.8086415461456635 ], [ 0.7536250296188473, 0.7344566437807527, 0.712092365080749, 0.686312294702584, 0.6569944256818322, 0.624163729459035, 0.5880509531101271, 0.5491581000859858, 0.5083218794376718, 0.4667554244872784, 0.42603032731413476, 0.38793985888728827, 0.354185814584922, 0.3259128664016068, 0.30330350331899913, 0.2855869269598358, 0.27162750967719523, 0.26082815677624105, 0.25385770462951696, 0.25276134759744245, 0.2601720341473169, 0.2778691770488626, 0.30571896342055904, 0.3418153132412027, 0.38340226526345556, 0.4277143906843494, 0.47240972704699596, 0.5156971476285483, 0.5563166853692344, 0.5934660825591014, 0.6267145971900544, 0.6559199710199742, 0.6811542947740402, 0.7026405753164786, 0.7207002329920749, 0.7357110488387473, 0.7480746974414482, 0.7581927460000496, 0.7664498156330751, 0.7732024914486557, 0.7787725626348792, 0.7834432974226399, 0.7874577078302927, 0.7910180960095952, 0.7942865275116965, 0.7973861669372231, 0.8004035756938468, 0.8033920866577963, 0.806376259499535, 0.8093572422323176 ], [ 0.7571001726327011, 0.7387987292993242, 0.7174818312098001, 0.6929533751246084, 0.6651115970086183, 0.6339931109651509, 0.5998234352865454, 0.5630694460034651, 0.524483577603456, 0.48512041778143505, 0.4462943718936356, 0.40943963935938305, 0.37585173151787354, 0.34636243832513813, 0.3211184898546932, 0.29968817655614893, 0.28157766863715594, 0.266965190600715, 0.2572594353416717, 0.2550085223544422, 0.26284974273685496, 0.28198635382702436, 0.31147615482759095, 0.3488395437282267, 0.3911242553502143, 0.43561696596320737, 0.4801193362144822, 0.5229863936245442, 0.5630739799576762, 0.5996600897620342, 0.6323636389076681, 0.6610688040996008, 0.6858578402217723, 0.7069533860331901, 0.7246704160319623, 0.7393774958228585, 0.7514666449319735, 0.7613308418695428, 0.7693480094332538, 0.7758702075205522, 0.7812167595558458, 0.7856701621709906, 0.7894738665266989, 0.792831332355801, 0.7959060758101673, 0.7988226863168282, 0.8016689203423202, 0.8044989727545762, 0.807337904020498, 0.8101870213345628 ], [ 0.7608260074291943, 0.7434457846595053, 0.7232371336206044, 0.7000258807751644, 0.6737268022288018, 0.6443818636733735, 0.6122017885095853, 0.5776053890850936, 0.5412461427065336, 0.504008818037563, 0.4669529416320282, 0.43118212548006, 0.3976429165982818, 0.3669148206716328, 0.3391234374543448, 0.31412076266141287, 0.2919699669436448, 0.2735810798733047, 0.2611363079531554, 0.25776292736832124, 0.2661339162906868, 0.28683236322662503, 0.3180590871072456, 0.3567479572593317, 0.3997517507733018, 0.4444107983387877, 0.4886736351880546, 0.5310479924279882, 0.5705140794606142, 0.6064387977134551, 0.6384982151964149, 0.6666087761763149, 0.690867045947772, 0.7114979462611214, 0.7288114115299096, 0.7431671889271138, 0.7549472341673659, 0.7645348965314361, 0.772299885312543, 0.778587895989932, 0.7837137713416547, 0.787957189748899, 0.7915600957941173, 0.7947253748287797, 0.7976165603526044, 0.8003585837282535, 0.8030396805658814, 0.8057145426093298, 0.8084086736620197, 0.8111237285501229 ], [ 0.7647441045004686, 0.7483212331704618, 0.7292584449186351, 0.7074005515557698, 0.6826741691020121, 0.6551197488437843, 0.6249241305418071, 0.5924476571651135, 0.5582360098693919, 0.5230028838677317, 0.4875683995620203, 0.45274599875204186, 0.41919558522532085, 0.38730379628027783, 0.35719261033286875, 0.3289525757020558, 0.30311760067642407, 0.28124925975059845, 0.26626534728574996, 0.2618745920747178, 0.2707911686662733, 0.29298233878112656, 0.3258268766870671, 0.3657180260439653, 0.409334464119102, 0.4540676037233719, 0.4980037378898902, 0.5397972387135767, 0.5785512880188839, 0.613723439088754, 0.6450499938810456, 0.6724828631473857, 0.6961356059188331, 0.7162373471292766, 0.7330940968065598, 0.7470571480186139, 0.7584980968374432, 0.7677898141298124, 0.7752925094013876, 0.7813439148507555, 0.7862526116767792, 0.7902936280822175, 0.7937056426868141, 0.7966893865309522, 0.7994070921338293, 0.8019830278522664, 0.8045052362315859, 0.8070285550493367, 0.8095788650358617, 0.8121583317749924 ], [ 0.7687961988049326, 0.7533495831737269, 0.7354487234090177, 0.7149538856370771, 0.691798559420615, 0.6660152606208797, 0.6377596129516513, 0.6073269200874799, 0.5751527967266298, 0.5417877417843049, 0.507837630606641, 0.4738724099739103, 0.4403274644375098, 0.4074528398519247, 0.3753882295117646, 0.3444316433959831, 0.31550994292999746, 0.29073089865122953, 0.27363382918526813, 0.2684104605332218, 0.2777801307186524, 0.30116498949995313, 0.3352595584631426, 0.3760230668040471, 0.41999681103134134, 0.4646152150112501, 0.5080811691538167, 0.5491774014886907, 0.5871186246963542, 0.621447416016534, 0.6519583821128733, 0.6786388927312093, 0.701620245566262, 0.7211365944838951, 0.7374905875342799, 0.7510252125215351, 0.7621014009202682, 0.7710808097846942, 0.7783130459323487, 0.7841264971607116, 0.7888219296767396, 0.7926681088620188, 0.7958988856509602, 0.7987114233760217, 0.801265464820371, 0.8036837007577011, 0.806053360733263, 0.8084290959265116, 0.810837087954567, 0.8132801463142983 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "0_0", "0_1", "0_2", "0_3", "0_4", "1_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0" ], "type": "scatter", "x": [ 0.7128944993019104, 0.8071497362107038, 0.43183293007314205, 0.2785620065405965, 0.9038401739671826, 0.34015624669861305, 0.3051221456261044, 0.3144137536499779, 0.2725514246818602, 0.2749513086198841, 0.3729675289888685, 0.3323573218023541, 0.41696343140345093, 0.39595466856522193, 0.39840015186462735, 0.39618662544253846, 0.40983882747620454, 0.3919686681429317, 0.3871035870936285, 0.3969220698474354 ], "xaxis": "x", "y": [ 0.5549588017165661, 0.08640189934521914, 0.7849974324926734, 0.2456176495179534, 0.8751709731295705, 0.6582144358004259, 0.611092288865985, 0.7999835317488023, 0.7990356573858984, 0.7641202235407558, 0.8203875632801927, 0.7708576606453788, 0.8184105388078107, 0.7300127690743613, 0.8566299323029872, 0.9189125539728515, 0.8868060764248498, 0.8446383459872492, 0.9989058784854729, 0.939064504213708 ], "yaxis": "y" }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "showlegend": false, "text": [ "0_0", "0_1", "0_2", "0_3", "0_4", "1_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0" ], "type": "scatter", "x": [ 0.7128944993019104, 0.8071497362107038, 0.43183293007314205, 0.2785620065405965, 0.9038401739671826, 0.34015624669861305, 0.3051221456261044, 0.3144137536499779, 0.2725514246818602, 0.2749513086198841, 0.3729675289888685, 0.3323573218023541, 0.41696343140345093, 0.39595466856522193, 0.39840015186462735, 0.39618662544253846, 0.40983882747620454, 0.3919686681429317, 0.3871035870936285, 0.3969220698474354 ], "xaxis": "x2", "y": [ 0.5549588017165661, 0.08640189934521914, 0.7849974324926734, 0.2456176495179534, 0.8751709731295705, 0.6582144358004259, 0.611092288865985, 0.7999835317488023, 0.7990356573858984, 0.7641202235407558, 0.8203875632801927, 0.7708576606453788, 0.8184105388078107, 0.7300127690743613, 0.8566299323029872, 0.9189125539728515, 0.8868060764248498, 0.8446383459872492, 0.9989058784854729, 0.939064504213708 ], "yaxis": "y2" } ], "layout": { "annotations": [ { "font": { "size": 14 }, "showarrow": false, "text": "Mean", "x": 0.25, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 14 }, "showarrow": false, "text": "Standard Error", "x": 0.8, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" } ], "autosize": false, "height": 450, "hovermode": "closest", "legend": { "orientation": "h", "x": 0, "y": -0.25 }, "margin": { "b": 100, "l": 35, "pad": 0, "r": 35, "t": 35 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "width": 950, "xaxis": { "anchor": "y", "autorange": false, "domain": [ 0.05, 0.45 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "xaxis2": { "anchor": "y2", "autorange": false, "domain": [ 0.6, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "yaxis": { "anchor": "x", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x2" }, "type": "linear" }, "yaxis2": { "anchor": "x2", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "type": "linear" } } }, "text/html": [ "