{ "cells": [ { "cell_type": "markdown", "id": "awful-desktop", "metadata": {}, "source": [ "### Marginal Plots\n", "\n", "A marginal plot is a scatterplot (sometimes a density plot or other bivariate plot) that has histograms, boxplots, or other distribution visualization layers in the margins of the x- and y-axes. \n", "\n", "It allows studying the relationship between 2 numeric variables. \n", "\n", "You can use the `ggmarginal()` function to add marginal layers to a plot." ] }, { "cell_type": "code", "execution_count": 1, "id": "satisfied-grenada", "metadata": {}, "outputs": [ { "data": { "text/html": [ " <div id=\"tBf78H\"></div>\n", " <script type=\"text/javascript\" data-lets-plot-script=\"library\">\n", " if(!window.letsPlotCallQueue) {\n", " window.letsPlotCallQueue = [];\n", " }; \n", " window.letsPlotCall = function(f) {\n", " window.letsPlotCallQueue.push(f);\n", " };\n", " (function() {\n", " var script = document.createElement(\"script\");\n", " script.type = \"text/javascript\";\n", " script.src = \"https://cdn.jsdelivr.net/gh/JetBrains/lets-plot@v4.0.0/js-package/distr/lets-plot.min.js\";\n", " script.onload = function() {\n", " window.letsPlotCall = function(f) {f();};\n", " window.letsPlotCallQueue.forEach(function(f) {f();});\n", " window.letsPlotCallQueue = [];\n", " \n", " \n", " };\n", " script.onerror = function(event) {\n", " window.letsPlotCall = function(f) {};\n", " window.letsPlotCallQueue = [];\n", " var div = document.createElement(\"div\");\n", " div.style.color = 'darkred';\n", " div.textContent = 'Error loading Lets-Plot JS';\n", " document.getElementById(\"tBf78H\").appendChild(div);\n", " };\n", " var e = document.getElementById(\"tBf78H\");\n", " e.appendChild(script);\n", " })();\n", " </script>" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "%useLatestDescriptors\n", "%use lets-plot\n" ] }, { "cell_type": "code", "execution_count": 2, "id": "tender-tutorial", "metadata": {}, "outputs": [], "source": [ "@file:DependsOn(\"org.apache.commons:commons-math3:3.6.1\")" ] }, { "cell_type": "code", "execution_count": 3, "id": "norman-point", "metadata": {}, "outputs": [], "source": [ "import org.apache.commons.math3.distribution.MultivariateNormalDistribution" ] }, { "cell_type": "code", "execution_count": 4, "id": "mexican-terror", "metadata": {}, "outputs": [], "source": [ "val cov0 : Array<DoubleArray> = arrayOf(doubleArrayOf(1.0, -.8),\n", " doubleArrayOf(-.8, 1.0))\n", "\n", "val cov1 : Array<DoubleArray> = arrayOf(doubleArrayOf(10.0, .1),\n", " doubleArrayOf(.1, .1))\n" ] }, { "cell_type": "code", "execution_count": 5, "id": "revolutionary-munich", "metadata": {}, "outputs": [], "source": [ "val n = 200\n", "\n", "val means0 : DoubleArray = doubleArrayOf(-2.0, 0.0)\n", "val means1 : DoubleArray = doubleArrayOf(0.0, 1.0)\n", "\n", "val xy0 = MultivariateNormalDistribution(means0, cov0).sample(n)\n", "val xy1 = MultivariateNormalDistribution(means1, cov1).sample(n)\n" ] }, { "cell_type": "code", "execution_count": 6, "id": "sunrise-skating", "metadata": {}, "outputs": [], "source": [ "val dat = mapOf(\n", " \"x\" to (xy0.map { it[0] } + xy1.map { it[0] }).toList(),\n", " \"y\" to (xy0.map { it[1] } + xy1.map { it[1] }).toList(),\n", " \"c\" to List(n){\"A\"} + List(n){\"B\"},\n", ")\n" ] }, { "cell_type": "code", "execution_count": 7, "id": "material-village", "metadata": {}, "outputs": [], "source": [ "// The default plot theme and palette.\n", "LetsPlot.theme = themeLight()\n", "val paletteColors = listOf(\"#394449\", \"#F7C443\")\n", "val palette = scaleColorManual(values = paletteColors) + scaleFillManual(values = paletteColors)" ] }, { "cell_type": "code", "execution_count": 8, "id": "passing-suicide", "metadata": {}, "outputs": [ { "data": { "text/html": [ " <div id=\"GWcEma\"></div>\n", " <script type=\"text/javascript\" data-lets-plot-script=\"plot\">\n", " (function() {\n", " var plotSpec={\n", "\"mapping\":{\n", "\"x\":\"x\",\n", "\"y\":\"y\",\n", "\"color\":\"c\",\n", "\"fill\":\"c\"\n", "},\n", "\"data\":{\n", "\"c\":[\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\"],\n", "\"x\":[-1.9916840159046605,-1.0075162996095373,-2.9342023076903163,-1.7873258311921325,-3.409217544304976,-2.480863002096072,-2.471581151627473,-0.32827704584102024,-1.8472523272826318,-2.695725360213746,-0.3017163666293359,-1.217472983097933,-2.935479929458831,-3.4682620880582524,-2.429840494651523,-1.725791091360943,-0.3255246382128676,-2.2788866004312136,-2.100227160924781,-2.1764991709470314,-0.600262699196467,-1.9788537304121487,-1.202758922154671,-2.550404249095059,-3.517833965147413,-1.56701853537953,-1.3548787252056806,-0.6796245860291459,-1.9917426211791438,-0.5081499017565352,-2.2100755963839407,-3.383333287503253,-3.119597912009442,-3.216211068649772,-3.2753015918821156,-2.1264877948164695,-0.9380496908518272,-2.189390951053853,-1.4949953432837932,-3.047420344920938,-2.9454966963263116,-1.5067116120644957,-2.5461817670043043,-3.343425293274475,-2.7730477520434444,-2.3124669259750124,-1.3544885895026204,-4.097586632416848,-2.184864991150839,-0.7834533131434125,-2.757670400803873,-0.3768477775782759,-0.3342325599332583,-3.480789237308624,-1.9321709536328557,-2.125782643824663,-2.3102102976956482,-2.9065101567190252,-1.7680414266314775,-1.2464355070761552,-1.631920876352924,-0.018851161004153072,-1.1503858854135303,-1.777972910034191,-3.3491469886254395,-1.6550247850994073,-1.9380829258899566,-2.531870142075045,-0.4792488446155443,-2.0320093234604433,-3.036924893699646,-3.0103129261545236,-2.7613488069459766,-2.106290132080556,-2.0889134432832916,-2.976043895107677,-2.3587165519066358,-1.8797457536588003,-3.197047344124212,-3.9431485438899787,-0.9208334621449787,-0.6664256742609336,-2.164684715924407,-3.2954663040397123,-2.1733004192817837,-3.7910413160044802,-1.996609080085542,-2.357822269562097,-1.2143970421866717,-2.0674603874479542,-3.589610795422122,-1.176113593363933,-1.1954549579937606,-1.0101313777776335,-2.102957347575047,-1.2854858340934086,-1.9422798663041265,-2.84707644659407,-0.9034578056108349,-3.0208908757236923,-1.5386266149417964,-1.0090540905658774,-1.3530117863264641,-1.2517640027885957,-1.623347206443961,-2.336709864443785,-2.734623909681472,-1.8611617909605653,-1.2828335798487773,1.059639683960783,-1.6547162936893907,-2.4609338931378373,-2.3996522969098817,-2.791185954400288,-2.5755394722760094,-1.662516426544272,-1.089834569692961,-2.2109770610217243,-4.6887749295551,-0.967490296331182,-2.5128432538878576,-0.5264554955966494,-3.21761926274364,-1.6286311569471434,-2.8346243579296106,-1.5862928011059392,-0.7083111023241342,-2.265179970446102,-3.8695188787862116,-3.1719399100356673,-1.9558428118094349,-1.7792620814108433,-1.7357020034341932,-1.7899965263713897,-3.655037567505465,-2.2310337795469217,-2.6134706425467233,-2.8821281991721475,-1.375047151031843,-2.524275193352156,-2.8221292865062266,-3.0361908827683504,1.0802331983126647,-3.1251901089922374,-2.9224895193902003,-1.5554313057186255,-2.174398009814226,-2.680066934620616,-2.0104693451475293,-3.533885020658057,-1.7114636792660778,-1.9082156524504228,-0.9936885177668526,-1.4581536015836596,-2.3206443436604367,-3.4226868390533793,-3.03018955805262,0.44435893220628664,-1.6647861378091482,-2.7266740385398407,-1.875123836331528,-1.5165081579402808,-2.6795114810038343,-0.15992691006981197,-1.3997506416103176,-2.088101997338163,-1.7971768554951997,-2.6704579878969126,-0.2552595989615716,-1.1293598560165996,-3.0439722565053273,-1.5642269547679462,-2.7821188392473815,-2.6559193751807353,-3.853412786628808,-2.3928065710494275,-1.1483332248208367,-1.3380853879355676,-2.3824844784759205,-1.844315687201735,-0.7286502579457728,-2.3682000791310274,-2.6280841198440696,-0.8862973032084238,-2.0914808125153526,-3.541918336457906,-4.501942712601659,-2.7295715915980434,-0.9907266652074451,-0.4557922631165827,-1.223644993669864,-3.202889231890694,-2.027534810681654,-2.3421078844711674,-1.7384411737066636,-3.0036142140627065,-0.12865504319671617,-2.3203994396973915,-1.6987937193717166,-0.6451294705671953,-0.8600499920651158,0.23497881248192748,6.940197237480745,-3.3272480708563723,1.078972739651165,0.013704585222007874,1.959778771676608,0.41992544007439087,1.0838269133335803,3.4203527142465133,4.159431381858504,0.04200971526922635,3.257886923344845,-1.484185876646513,1.136877838698118,0.5584161260420574,1.0667982255741462,-3.9433413732228315,2.493209631007051,0.6070404414438705,-4.723013531523171,-5.396072218705628,-0.04535216439165606,4.851777849378708,1.2191503124644736,2.4230679353323,3.1666110961177227,-0.6700327913492858,7.6850310085694975,-3.707761396401177,-2.3977460120627296,3.639480616394358,0.06444076774018785,-3.5076169792966705,3.292038777356018,-8.290699005770232,-1.474379527854876,4.133434536948832,2.3970436421665915,-2.364390823990212,-3.903455674062425,-1.0754624260005095,-1.5476699276460377,-1.564304004246823,2.7951323774092125,2.5092796133017576,0.52222890567738,3.260205005447835,2.232810023654782,0.15467672498335858,-3.634679405297695,4.446492241170248,-4.866129396133796,5.738308133085385,2.2956483465515496,-1.1685512821180248,-5.118065333693593,-1.2594031226515385,1.6914730120338168,-3.3094341388369024,-1.5240299733234677,2.7227315961075935,-0.26115643960410195,2.9662346408908578,-3.296514795008936,-1.5990436397722294,-3.0323696041114507,2.6856284852923835,4.483188308965124,-0.9843877524649651,2.413893891378675,-3.1846134764968697,2.0065162361396376,2.6513916833948836,-3.843378528446383,-2.004407189856,2.3110743028397285,-1.819329696161072,-0.8314503829299126,1.3652266160222837,-0.3846061871785503,2.1360398698810923,1.2614097998454092,-3.6615543024336477,-1.8021489969166329,0.46104123552119025,5.645363310554736,-2.0601741702799874,3.504645010191167,-0.14820692667416258,0.2644707661115462,-0.5519463447552573,4.7430521213250545,-0.6458147283721903,1.5798235947665782,-3.4511513358715673,4.278966722984352,7.413055358487136,1.608873949659954,-1.4358451550012017,5.300000257688481,-1.3069599733229327,3.582549506258025,-1.1686817575278612,-1.0369356897795885,0.4953625660644009,-3.8479932024069545,-4.786156906104934,-1.048498980749837,-0.45390883101864693,-2.392815698290904,2.3128068204836123,-5.111244582928757,2.40083629543184,-0.40178520704236587,6.418295956128011,-1.1334536929616124,-0.16297559474508289,-3.4698133003700047,3.103841780136832,5.164516804238253,-0.8013282702420941,1.5397536686996482,-3.1773630861787767,1.3351105398600067,-5.195725978700607,-2.3416494222414737,-3.930484274790691,2.2018414683117093,1.424911426943275,1.3195918148723864,2.7215002227925216,1.3086311075979276,2.499300386214229,1.8417710491177839,-5.640694179918953,0.42301531362107325,-0.9391140372135933,-0.5075602100889359,3.8263727390319056,-0.6563896077821363,-3.155630589839599,-3.2620290041544124,-0.7335306284031367,-1.1567569100179929,-3.3407282796350994,1.7362564331985109,-1.614090554090166,1.6261813906113056,-1.3619540782023258,-2.3055571038076788,1.4166220483169552,2.759726947171873,-2.0151168384534413,-2.2020290713749393,2.7398343942711008,0.8344191563686024,5.2405441584189685,-1.8216714794932558,6.237745129080784,2.5709486040794287,0.2062084601641947,1.2114665197505545,-1.2596760977541992,1.6825816796841122,-1.8493080849746282,5.848546540694381,1.2406416299766976,0.5853529302830079,1.5490709802597287,-4.826892725858458,-4.389247413557729,-1.054967146886617,-3.293649644408222,3.1064528754363634,-1.4862422751175104,5.100028824023687,-0.12474604162293143,-8.861445954008323,1.67682256782614,1.8485522763038398,3.6110213672357574,-0.22264095092476183,2.9771564864852023,-0.563869495730703,1.0156565923777996,4.150075778501257,0.6166158811539818,-5.6597729016531115,2.0929223934128456,-1.3412590630543884,-0.8260570312152808,5.047501316304559,2.823018822307693,-1.0586667108536627,-2.380323342210341,0.49655882865336853,-0.4377105541001931,-4.677945174193813,-2.174703660314566],\n", "\"y\":[0.7514360510306208,-0.8516752671352597,1.210112615656036,-1.0311768499201683,0.15604685710669963,-0.08675908955557088,-0.5854440836497788,-1.406108230202983,-0.7282679823198847,-0.37919316447355234,-0.7143226510117506,-0.9461617683249052,1.6947379457993959,1.0127919692500957,-0.6833417468938692,-0.4016661751233255,-0.23699648191880462,-0.918724707609321,-0.3095515226765643,-0.4955960612193032,-2.5086953401539698,-0.7720407280085881,-0.7233074061148261,0.627063556149064,1.5005981606663068,-0.9391331874902079,0.23221147228132055,-1.1732715996379708,-0.12740139843070197,-0.7350178544001142,0.135844951504016,0.5133825349491091,0.6284964321746815,1.4960929416652144,0.580054729200791,-0.6005899845117544,-0.32857278377012844,0.03524130701424208,-1.605609901347195,0.8022960083947999,1.1833541472340148,-0.22631854800995108,0.5698310868309039,1.951192351723379,1.2940555613081706,0.045112700478526446,-0.320341900354649,1.9126945923972118,0.5569323176292618,-0.9027515422044294,0.6258640091514431,-2.024238095954958,-1.2307264557133855,1.7525985416839593,-0.521251010389423,0.5133048067614205,0.1615954554678199,0.07900998845355223,-0.29155323449535653,-0.5719180705966365,0.09124648302779259,-2.538072540678598,-0.5357989639826282,-0.049284415599786635,-0.21001182083492398,-0.06350695284374627,0.6992725607042934,0.6915797540939244,-1.6593517520367669,-0.7705457774933029,1.0931219572738133,1.327411319400762,2.120903888205527,0.4502823328487616,-0.6220495779548431,-0.5506626847302556,0.8006084368210764,-0.7023552253919396,1.0471015886435802,0.8511568206609248,-1.0470541528872142,-1.1789334059276249,-1.0918482440311257,0.5657829543194306,0.2563820157313081,1.6303120947994945,0.2942724706392622,0.1712589423066858,-0.6429078483244388,-1.2756942500305963,1.4992822639368275,-0.3647891607027672,-0.410362289580208,-0.4619635877994601,0.19175582314239506,-1.2270836616855327,-1.284489547714436,0.2542295522869925,-1.0166405618389132,1.2822930375285613,-0.46903463187864186,-0.7488812286380635,-0.3460082237633007,-0.7211972156510177,-1.0041306835071286,0.07546740289663033,0.3341430169397538,0.11700780405372835,-1.1245132357352328,-3.227582210446822,-0.5890756348409841,-1.1590787127133249,-0.5763849103839725,0.45013876142442477,0.5349181698703063,-0.23231720076209417,-0.4907455588555049,1.1457128488141588,2.2194059749694963,0.15292041692378977,-0.5459590890040814,-1.4409370375357655,0.1636319670033799,-0.2283635670400512,0.4569602849903955,0.6041095147681309,-0.28361732878778484,0.055240852814989805,1.627715151474149,1.671608387200685,-0.4456543297602226,-0.10683005502725222,0.14877673135115457,-0.1573959959894512,1.2261949820560465,-0.09113775885050929,0.6781506133066553,1.511067117253397,-0.6115744736527607,0.07619010962609873,2.481184694255261,0.526981231902472,-2.1792049977746224,1.8363993785276986,-0.21173531716420124,0.37522929394285764,0.46359254002287675,0.469896648577915,0.019591259067233635,1.3287127547634068,-0.1922457629295637,1.049480490952028,0.019921806105617224,-0.43590711743023675,-0.09901045309716783,0.7075702782126695,1.758490814131384,-1.3419002115879255,-0.20647504014347096,0.7706898040141046,-0.14232250207474773,-1.119449318194966,-0.3756397227411178,-2.380210494652406,-0.18084083373073767,-0.06365165353117348,0.6519729495677491,0.8248030827479522,-1.5817901527268599,-0.03987167493535948,0.15495374759882263,-0.8233845201476875,1.4356785179671065,0.5292053398011151,0.785624954023344,-0.7420227725352879,-0.0891170377981419,0.32875327870629245,0.6798745011049996,-0.1952766934572675,-1.14778800876353,0.4105473740499304,0.07290390130778768,-0.8413589219424127,-0.055507789228325236,0.8486182527185637,2.082562652811129,1.632659801287815,-0.3615943720744511,-2.3091995609558307,-0.9821989166581606,0.12748470408535473,-0.4851244731677765,0.5371897212727343,0.2673305516399948,0.41507114632601855,-1.984245886068487,-0.4799818468375152,-0.7790687004174005,-0.2264758368824017,0.3944211178561692,1.096563864860156,0.44843718104464547,1.4725933265151867,1.1617428139116597,1.02490689016451,1.1629355116102642,1.2880458018730754,1.1568539331153014,0.5961849436098987,1.310346670682165,1.3757813076512408,1.1852434266640992,0.9516030864205988,1.265885637978102,1.0851667533903173,0.7446926987542952,0.43864767999195375,0.9597068565543073,1.1904020559539938,1.3068839002310715,1.4659897445301466,0.5334568538362112,0.9884726086923126,0.6730659308697651,1.2018221180405442,0.9870076561035276,1.1587653508393503,1.194262531762642,0.9868954294225155,1.0313339378239257,0.7054163995111842,0.3487372959715421,0.824951655717745,1.2689140390207365,1.1323391509858292,1.1169585628200667,0.7918102602112692,0.941537379892377,1.0379154745303403,1.3746984387787335,1.0843200939679885,1.0420244806759795,0.6993772235972635,0.9940684417173953,1.5104857615163694,1.1005129919694996,1.2882227444419518,0.7590710447257968,0.9026339983726912,0.7782868449403093,1.2945728328066564,0.9590709429893044,1.2063409258618623,0.9386868261593742,0.7991411127326365,1.1874744873522407,0.3466362958057281,1.0942629360152532,1.3791358566852787,1.0781466358913985,1.01501709302225,1.133831229418923,1.1243901743738753,1.4852389765342442,0.395088137526015,1.0412827052413636,1.028238486111707,0.5129904021500463,1.0410975317005104,1.3547607899904979,1.0209251253327472,0.5159526470084244,0.2669888614000664,0.6843162520098145,0.8173160864594077,1.1655216537136388,0.2917721612409845,1.2203679498206539,1.2628830023552298,0.5525737363740604,0.9810764242866571,0.7540689296288894,0.7775957527516854,0.943690806587815,1.3063307431099234,1.2395346720084448,0.8781770148782277,1.466091447875112,0.6381986370218908,0.6318465358016351,0.9192085975785196,0.8581325277903438,0.8926103984349046,0.9716115644102896,0.985750221880518,1.1128876227950115,1.1766430346609622,1.4557516038829885,0.8620158575172928,1.2705093972668136,1.273732523743385,1.0916925347895432,1.3176728177021262,1.355220245092919,1.180318075243335,1.3969513942304461,0.41544138879657544,1.5239748614889548,0.8202356368969725,1.0088566878911747,0.6241787580540265,0.8387318454056243,1.3253847696806889,1.3667929002736015,0.8133954238332177,1.0150599273154148,1.556879123677696,1.795167671655943,0.6883540121346565,0.209578787962319,0.9393363673880815,1.4511101241685636,0.9141953377233073,1.4398314932652934,0.5024820694922552,1.130771838419379,0.8083079493293561,0.8273385713223176,0.7518875232716461,1.055260253431205,1.2970733561674912,1.10655760476615,1.3246532930809933,0.7332529220959476,0.4379053382645095,1.0437202336572777,0.7593692812823941,0.8621131931779116,1.010539106367529,1.57583014706212,0.8303316449424236,1.2017062221533448,0.5002098474101171,1.1134094243622075,0.8180951660408329,1.009832397189975,0.6823907157662841,0.9793129502779757,1.1267760119134578,1.541327773311052,0.1521296846507022,1.441033289006471,1.2961356117530547,0.7438697539361666,0.8729412528447531,0.21044213706477288,1.2623245582079976,0.6195648887655529,1.1802834617118465,1.1568383582801696,1.3437358633022134,0.9336230459208963,1.3268421599111742,1.2024679143785426,0.665057639577564,0.8016666164003942,0.5282830645675138,1.385581026330979,1.0964968569573459,0.6121082011492862,0.8543456822612379,0.890522741240486,1.2599025309736,1.0977456823797014,1.072126600529319,1.0968483285520338,1.193602329770524,0.9448789731795862,1.1278209827218282,0.5425713977186137,0.6024283697782952,1.150206091291158,0.991057572445549,0.5076474971739946,1.2477871358729742,0.8827510597672101,1.070369743253259,0.9097027585319167,1.3884258867840797,0.7068678935913685,1.376848036308112,1.2171682569340134,1.233622483426429,0.9552990734069042,1.3462444839775385,1.282637755029423,1.4320985485395012,0.5160004238578895,1.0719121018807956]\n", "},\n", "\"kind\":\"plot\",\n", "\"scales\":[{\n", "\"aesthetic\":\"color\",\n", "\"values\":[\"#394449\",\"#F7C443\"]\n", "},{\n", "\"aesthetic\":\"fill\",\n", "\"values\":[\"#394449\",\"#F7C443\"]\n", "}],\n", "\"layers\":[{\n", "\"mapping\":{\n", "},\n", "\"stat\":\"identity\",\n", "\"position\":\"identity\",\n", "\"geom\":\"point\",\n", "\"data\":{\n", "}\n", "}],\n", "\"theme\":{\n", "\"name\":\"light\"\n", "}\n", "};\n", " var plotContainer = document.getElementById(\"GWcEma\");\n", " window.letsPlotCall(function() {{\n", " LetsPlot.buildPlotFromProcessedSpecs(plotSpec, -1, -1, plotContainer);\n", " }});\n", " })(); \n", " </script>" ] }, "execution_count": 8, "metadata": {}, "output_type": "execute_result" } ], "source": [ "val p = letsPlot(dat.toMap()){x = \"x\"; y = \"y\"; color = \"c\"; fill = \"c\"} + geomPoint() + palette\n", "p" ] }, { "cell_type": "code", "execution_count": 9, "id": "straight-locator", "metadata": {}, "outputs": [ { "data": { "text/html": [ " <div id=\"r2tisq\"></div>\n", " <script type=\"text/javascript\" data-lets-plot-script=\"plot\">\n", " (function() {\n", " var plotSpec={\n", "\"mapping\":{\n", "\"x\":\"x\",\n", "\"y\":\"y\",\n", "\"color\":\"c\",\n", "\"fill\":\"c\"\n", "},\n", "\"data\":{\n", "\"c\":[\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\"],\n", "\"x\":[-1.9916840159046605,-1.0075162996095373,-2.9342023076903163,-1.7873258311921325,-3.409217544304976,-2.480863002096072,-2.471581151627473,-0.32827704584102024,-1.8472523272826318,-2.695725360213746,-0.3017163666293359,-1.217472983097933,-2.935479929458831,-3.4682620880582524,-2.429840494651523,-1.725791091360943,-0.3255246382128676,-2.2788866004312136,-2.100227160924781,-2.1764991709470314,-0.600262699196467,-1.9788537304121487,-1.202758922154671,-2.550404249095059,-3.517833965147413,-1.56701853537953,-1.3548787252056806,-0.6796245860291459,-1.9917426211791438,-0.5081499017565352,-2.2100755963839407,-3.383333287503253,-3.119597912009442,-3.216211068649772,-3.2753015918821156,-2.1264877948164695,-0.9380496908518272,-2.189390951053853,-1.4949953432837932,-3.047420344920938,-2.9454966963263116,-1.5067116120644957,-2.5461817670043043,-3.343425293274475,-2.7730477520434444,-2.3124669259750124,-1.3544885895026204,-4.097586632416848,-2.184864991150839,-0.7834533131434125,-2.757670400803873,-0.3768477775782759,-0.3342325599332583,-3.480789237308624,-1.9321709536328557,-2.125782643824663,-2.3102102976956482,-2.9065101567190252,-1.7680414266314775,-1.2464355070761552,-1.631920876352924,-0.018851161004153072,-1.1503858854135303,-1.777972910034191,-3.3491469886254395,-1.6550247850994073,-1.9380829258899566,-2.531870142075045,-0.4792488446155443,-2.0320093234604433,-3.036924893699646,-3.0103129261545236,-2.7613488069459766,-2.106290132080556,-2.0889134432832916,-2.976043895107677,-2.3587165519066358,-1.8797457536588003,-3.197047344124212,-3.9431485438899787,-0.9208334621449787,-0.6664256742609336,-2.164684715924407,-3.2954663040397123,-2.1733004192817837,-3.7910413160044802,-1.996609080085542,-2.357822269562097,-1.2143970421866717,-2.0674603874479542,-3.589610795422122,-1.176113593363933,-1.1954549579937606,-1.0101313777776335,-2.102957347575047,-1.2854858340934086,-1.9422798663041265,-2.84707644659407,-0.9034578056108349,-3.0208908757236923,-1.5386266149417964,-1.0090540905658774,-1.3530117863264641,-1.2517640027885957,-1.623347206443961,-2.336709864443785,-2.734623909681472,-1.8611617909605653,-1.2828335798487773,1.059639683960783,-1.6547162936893907,-2.4609338931378373,-2.3996522969098817,-2.791185954400288,-2.5755394722760094,-1.662516426544272,-1.089834569692961,-2.2109770610217243,-4.6887749295551,-0.967490296331182,-2.5128432538878576,-0.5264554955966494,-3.21761926274364,-1.6286311569471434,-2.8346243579296106,-1.5862928011059392,-0.7083111023241342,-2.265179970446102,-3.8695188787862116,-3.1719399100356673,-1.9558428118094349,-1.7792620814108433,-1.7357020034341932,-1.7899965263713897,-3.655037567505465,-2.2310337795469217,-2.6134706425467233,-2.8821281991721475,-1.375047151031843,-2.524275193352156,-2.8221292865062266,-3.0361908827683504,1.0802331983126647,-3.1251901089922374,-2.9224895193902003,-1.5554313057186255,-2.174398009814226,-2.680066934620616,-2.0104693451475293,-3.533885020658057,-1.7114636792660778,-1.9082156524504228,-0.9936885177668526,-1.4581536015836596,-2.3206443436604367,-3.4226868390533793,-3.03018955805262,0.44435893220628664,-1.6647861378091482,-2.7266740385398407,-1.875123836331528,-1.5165081579402808,-2.6795114810038343,-0.15992691006981197,-1.3997506416103176,-2.088101997338163,-1.7971768554951997,-2.6704579878969126,-0.2552595989615716,-1.1293598560165996,-3.0439722565053273,-1.5642269547679462,-2.7821188392473815,-2.6559193751807353,-3.853412786628808,-2.3928065710494275,-1.1483332248208367,-1.3380853879355676,-2.3824844784759205,-1.844315687201735,-0.7286502579457728,-2.3682000791310274,-2.6280841198440696,-0.8862973032084238,-2.0914808125153526,-3.541918336457906,-4.501942712601659,-2.7295715915980434,-0.9907266652074451,-0.4557922631165827,-1.223644993669864,-3.202889231890694,-2.027534810681654,-2.3421078844711674,-1.7384411737066636,-3.0036142140627065,-0.12865504319671617,-2.3203994396973915,-1.6987937193717166,-0.6451294705671953,-0.8600499920651158,0.23497881248192748,6.940197237480745,-3.3272480708563723,1.078972739651165,0.013704585222007874,1.959778771676608,0.41992544007439087,1.0838269133335803,3.4203527142465133,4.159431381858504,0.04200971526922635,3.257886923344845,-1.484185876646513,1.136877838698118,0.5584161260420574,1.0667982255741462,-3.9433413732228315,2.493209631007051,0.6070404414438705,-4.723013531523171,-5.396072218705628,-0.04535216439165606,4.851777849378708,1.2191503124644736,2.4230679353323,3.1666110961177227,-0.6700327913492858,7.6850310085694975,-3.707761396401177,-2.3977460120627296,3.639480616394358,0.06444076774018785,-3.5076169792966705,3.292038777356018,-8.290699005770232,-1.474379527854876,4.133434536948832,2.3970436421665915,-2.364390823990212,-3.903455674062425,-1.0754624260005095,-1.5476699276460377,-1.564304004246823,2.7951323774092125,2.5092796133017576,0.52222890567738,3.260205005447835,2.232810023654782,0.15467672498335858,-3.634679405297695,4.446492241170248,-4.866129396133796,5.738308133085385,2.2956483465515496,-1.1685512821180248,-5.118065333693593,-1.2594031226515385,1.6914730120338168,-3.3094341388369024,-1.5240299733234677,2.7227315961075935,-0.26115643960410195,2.9662346408908578,-3.296514795008936,-1.5990436397722294,-3.0323696041114507,2.6856284852923835,4.483188308965124,-0.9843877524649651,2.413893891378675,-3.1846134764968697,2.0065162361396376,2.6513916833948836,-3.843378528446383,-2.004407189856,2.3110743028397285,-1.819329696161072,-0.8314503829299126,1.3652266160222837,-0.3846061871785503,2.1360398698810923,1.2614097998454092,-3.6615543024336477,-1.8021489969166329,0.46104123552119025,5.645363310554736,-2.0601741702799874,3.504645010191167,-0.14820692667416258,0.2644707661115462,-0.5519463447552573,4.7430521213250545,-0.6458147283721903,1.5798235947665782,-3.4511513358715673,4.278966722984352,7.413055358487136,1.608873949659954,-1.4358451550012017,5.300000257688481,-1.3069599733229327,3.582549506258025,-1.1686817575278612,-1.0369356897795885,0.4953625660644009,-3.8479932024069545,-4.786156906104934,-1.048498980749837,-0.45390883101864693,-2.392815698290904,2.3128068204836123,-5.111244582928757,2.40083629543184,-0.40178520704236587,6.418295956128011,-1.1334536929616124,-0.16297559474508289,-3.4698133003700047,3.103841780136832,5.164516804238253,-0.8013282702420941,1.5397536686996482,-3.1773630861787767,1.3351105398600067,-5.195725978700607,-2.3416494222414737,-3.930484274790691,2.2018414683117093,1.424911426943275,1.3195918148723864,2.7215002227925216,1.3086311075979276,2.499300386214229,1.8417710491177839,-5.640694179918953,0.42301531362107325,-0.9391140372135933,-0.5075602100889359,3.8263727390319056,-0.6563896077821363,-3.155630589839599,-3.2620290041544124,-0.7335306284031367,-1.1567569100179929,-3.3407282796350994,1.7362564331985109,-1.614090554090166,1.6261813906113056,-1.3619540782023258,-2.3055571038076788,1.4166220483169552,2.759726947171873,-2.0151168384534413,-2.2020290713749393,2.7398343942711008,0.8344191563686024,5.2405441584189685,-1.8216714794932558,6.237745129080784,2.5709486040794287,0.2062084601641947,1.2114665197505545,-1.2596760977541992,1.6825816796841122,-1.8493080849746282,5.848546540694381,1.2406416299766976,0.5853529302830079,1.5490709802597287,-4.826892725858458,-4.389247413557729,-1.054967146886617,-3.293649644408222,3.1064528754363634,-1.4862422751175104,5.100028824023687,-0.12474604162293143,-8.861445954008323,1.67682256782614,1.8485522763038398,3.6110213672357574,-0.22264095092476183,2.9771564864852023,-0.563869495730703,1.0156565923777996,4.150075778501257,0.6166158811539818,-5.6597729016531115,2.0929223934128456,-1.3412590630543884,-0.8260570312152808,5.047501316304559,2.823018822307693,-1.0586667108536627,-2.380323342210341,0.49655882865336853,-0.4377105541001931,-4.677945174193813,-2.174703660314566],\n", "\"y\":[0.7514360510306208,-0.8516752671352597,1.210112615656036,-1.0311768499201683,0.15604685710669963,-0.08675908955557088,-0.5854440836497788,-1.406108230202983,-0.7282679823198847,-0.37919316447355234,-0.7143226510117506,-0.9461617683249052,1.6947379457993959,1.0127919692500957,-0.6833417468938692,-0.4016661751233255,-0.23699648191880462,-0.918724707609321,-0.3095515226765643,-0.4955960612193032,-2.5086953401539698,-0.7720407280085881,-0.7233074061148261,0.627063556149064,1.5005981606663068,-0.9391331874902079,0.23221147228132055,-1.1732715996379708,-0.12740139843070197,-0.7350178544001142,0.135844951504016,0.5133825349491091,0.6284964321746815,1.4960929416652144,0.580054729200791,-0.6005899845117544,-0.32857278377012844,0.03524130701424208,-1.605609901347195,0.8022960083947999,1.1833541472340148,-0.22631854800995108,0.5698310868309039,1.951192351723379,1.2940555613081706,0.045112700478526446,-0.320341900354649,1.9126945923972118,0.5569323176292618,-0.9027515422044294,0.6258640091514431,-2.024238095954958,-1.2307264557133855,1.7525985416839593,-0.521251010389423,0.5133048067614205,0.1615954554678199,0.07900998845355223,-0.29155323449535653,-0.5719180705966365,0.09124648302779259,-2.538072540678598,-0.5357989639826282,-0.049284415599786635,-0.21001182083492398,-0.06350695284374627,0.6992725607042934,0.6915797540939244,-1.6593517520367669,-0.7705457774933029,1.0931219572738133,1.327411319400762,2.120903888205527,0.4502823328487616,-0.6220495779548431,-0.5506626847302556,0.8006084368210764,-0.7023552253919396,1.0471015886435802,0.8511568206609248,-1.0470541528872142,-1.1789334059276249,-1.0918482440311257,0.5657829543194306,0.2563820157313081,1.6303120947994945,0.2942724706392622,0.1712589423066858,-0.6429078483244388,-1.2756942500305963,1.4992822639368275,-0.3647891607027672,-0.410362289580208,-0.4619635877994601,0.19175582314239506,-1.2270836616855327,-1.284489547714436,0.2542295522869925,-1.0166405618389132,1.2822930375285613,-0.46903463187864186,-0.7488812286380635,-0.3460082237633007,-0.7211972156510177,-1.0041306835071286,0.07546740289663033,0.3341430169397538,0.11700780405372835,-1.1245132357352328,-3.227582210446822,-0.5890756348409841,-1.1590787127133249,-0.5763849103839725,0.45013876142442477,0.5349181698703063,-0.23231720076209417,-0.4907455588555049,1.1457128488141588,2.2194059749694963,0.15292041692378977,-0.5459590890040814,-1.4409370375357655,0.1636319670033799,-0.2283635670400512,0.4569602849903955,0.6041095147681309,-0.28361732878778484,0.055240852814989805,1.627715151474149,1.671608387200685,-0.4456543297602226,-0.10683005502725222,0.14877673135115457,-0.1573959959894512,1.2261949820560465,-0.09113775885050929,0.6781506133066553,1.511067117253397,-0.6115744736527607,0.07619010962609873,2.481184694255261,0.526981231902472,-2.1792049977746224,1.8363993785276986,-0.21173531716420124,0.37522929394285764,0.46359254002287675,0.469896648577915,0.019591259067233635,1.3287127547634068,-0.1922457629295637,1.049480490952028,0.019921806105617224,-0.43590711743023675,-0.09901045309716783,0.7075702782126695,1.758490814131384,-1.3419002115879255,-0.20647504014347096,0.7706898040141046,-0.14232250207474773,-1.119449318194966,-0.3756397227411178,-2.380210494652406,-0.18084083373073767,-0.06365165353117348,0.6519729495677491,0.8248030827479522,-1.5817901527268599,-0.03987167493535948,0.15495374759882263,-0.8233845201476875,1.4356785179671065,0.5292053398011151,0.785624954023344,-0.7420227725352879,-0.0891170377981419,0.32875327870629245,0.6798745011049996,-0.1952766934572675,-1.14778800876353,0.4105473740499304,0.07290390130778768,-0.8413589219424127,-0.055507789228325236,0.8486182527185637,2.082562652811129,1.632659801287815,-0.3615943720744511,-2.3091995609558307,-0.9821989166581606,0.12748470408535473,-0.4851244731677765,0.5371897212727343,0.2673305516399948,0.41507114632601855,-1.984245886068487,-0.4799818468375152,-0.7790687004174005,-0.2264758368824017,0.3944211178561692,1.096563864860156,0.44843718104464547,1.4725933265151867,1.1617428139116597,1.02490689016451,1.1629355116102642,1.2880458018730754,1.1568539331153014,0.5961849436098987,1.310346670682165,1.3757813076512408,1.1852434266640992,0.9516030864205988,1.265885637978102,1.0851667533903173,0.7446926987542952,0.43864767999195375,0.9597068565543073,1.1904020559539938,1.3068839002310715,1.4659897445301466,0.5334568538362112,0.9884726086923126,0.6730659308697651,1.2018221180405442,0.9870076561035276,1.1587653508393503,1.194262531762642,0.9868954294225155,1.0313339378239257,0.7054163995111842,0.3487372959715421,0.824951655717745,1.2689140390207365,1.1323391509858292,1.1169585628200667,0.7918102602112692,0.941537379892377,1.0379154745303403,1.3746984387787335,1.0843200939679885,1.0420244806759795,0.6993772235972635,0.9940684417173953,1.5104857615163694,1.1005129919694996,1.2882227444419518,0.7590710447257968,0.9026339983726912,0.7782868449403093,1.2945728328066564,0.9590709429893044,1.2063409258618623,0.9386868261593742,0.7991411127326365,1.1874744873522407,0.3466362958057281,1.0942629360152532,1.3791358566852787,1.0781466358913985,1.01501709302225,1.133831229418923,1.1243901743738753,1.4852389765342442,0.395088137526015,1.0412827052413636,1.028238486111707,0.5129904021500463,1.0410975317005104,1.3547607899904979,1.0209251253327472,0.5159526470084244,0.2669888614000664,0.6843162520098145,0.8173160864594077,1.1655216537136388,0.2917721612409845,1.2203679498206539,1.2628830023552298,0.5525737363740604,0.9810764242866571,0.7540689296288894,0.7775957527516854,0.943690806587815,1.3063307431099234,1.2395346720084448,0.8781770148782277,1.466091447875112,0.6381986370218908,0.6318465358016351,0.9192085975785196,0.8581325277903438,0.8926103984349046,0.9716115644102896,0.985750221880518,1.1128876227950115,1.1766430346609622,1.4557516038829885,0.8620158575172928,1.2705093972668136,1.273732523743385,1.0916925347895432,1.3176728177021262,1.355220245092919,1.180318075243335,1.3969513942304461,0.41544138879657544,1.5239748614889548,0.8202356368969725,1.0088566878911747,0.6241787580540265,0.8387318454056243,1.3253847696806889,1.3667929002736015,0.8133954238332177,1.0150599273154148,1.556879123677696,1.795167671655943,0.6883540121346565,0.209578787962319,0.9393363673880815,1.4511101241685636,0.9141953377233073,1.4398314932652934,0.5024820694922552,1.130771838419379,0.8083079493293561,0.8273385713223176,0.7518875232716461,1.055260253431205,1.2970733561674912,1.10655760476615,1.3246532930809933,0.7332529220959476,0.4379053382645095,1.0437202336572777,0.7593692812823941,0.8621131931779116,1.010539106367529,1.57583014706212,0.8303316449424236,1.2017062221533448,0.5002098474101171,1.1134094243622075,0.8180951660408329,1.009832397189975,0.6823907157662841,0.9793129502779757,1.1267760119134578,1.541327773311052,0.1521296846507022,1.441033289006471,1.2961356117530547,0.7438697539361666,0.8729412528447531,0.21044213706477288,1.2623245582079976,0.6195648887655529,1.1802834617118465,1.1568383582801696,1.3437358633022134,0.9336230459208963,1.3268421599111742,1.2024679143785426,0.665057639577564,0.8016666164003942,0.5282830645675138,1.385581026330979,1.0964968569573459,0.6121082011492862,0.8543456822612379,0.890522741240486,1.2599025309736,1.0977456823797014,1.072126600529319,1.0968483285520338,1.193602329770524,0.9448789731795862,1.1278209827218282,0.5425713977186137,0.6024283697782952,1.150206091291158,0.991057572445549,0.5076474971739946,1.2477871358729742,0.8827510597672101,1.070369743253259,0.9097027585319167,1.3884258867840797,0.7068678935913685,1.376848036308112,1.2171682569340134,1.233622483426429,0.9552990734069042,1.3462444839775385,1.282637755029423,1.4320985485395012,0.5160004238578895,1.0719121018807956]\n", "},\n", "\"kind\":\"plot\",\n", "\"scales\":[{\n", "\"aesthetic\":\"color\",\n", "\"values\":[\"#394449\",\"#F7C443\"]\n", "},{\n", "\"aesthetic\":\"fill\",\n", "\"values\":[\"#394449\",\"#F7C443\"]\n", "}],\n", "\"layers\":[{\n", "\"mapping\":{\n", "},\n", "\"stat\":\"identity\",\n", "\"position\":\"identity\",\n", "\"geom\":\"point\",\n", "\"data\":{\n", "}\n", "},{\n", "\"mapping\":{\n", "\"y\":\"..density..\"\n", "},\n", "\"stat\":\"bin\",\n", "\"margin_side\":\"t\",\n", "\"color\":\"white\",\n", "\"marginal\":true,\n", "\"position\":\"stack\",\n", "\"geom\":\"histogram\",\n", "\"data\":{\n", "\"c\":[\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\"],\n", "\"x\":[-8.958886318343502,-8.381598122093566,-7.8043099258436275,-7.227021729593691,-6.6497335333437535,-6.072445337093816,-5.4951571408438795,-4.917868944593942,-4.340580748344005,-3.763292552094067,-3.1860043558441298,-2.6087161595941932,-2.031427963344256,-1.4541397670943184,-0.8768515708443818,-0.2995633745944435,0.27772482165549306,0.8550130179054296,1.432301214155368,2.0095894104053045,2.586877606655243,3.1641658029051793,3.741453999155116,4.318742195405054,4.896030391654991,5.473318587904927,6.050606784154866,6.627894980404802,7.205183176654739,7.782471372904677,-8.958886318343502,-8.381598122093566,-7.8043099258436275,-7.227021729593691,-6.6497335333437535,-6.072445337093816,-5.4951571408438795,-4.917868944593942,-4.340580748344005,-3.763292552094067,-3.1860043558441298,-2.6087161595941932,-2.031427963344256,-1.4541397670943184,-0.8768515708443818,-0.2995633745944435,0.27772482165549306,0.8550130179054296,1.432301214155368,2.0095894104053045,2.586877606655243,3.1641658029051793,3.741453999155116,4.318742195405054,4.896030391654991,5.473318587904927,6.050606784154866,6.627894980404802,7.205183176654739,7.782471372904677],\n", "\"..density..\":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009065373876218245,0.01813074775243649,0.09065373876218247,0.2628958424103291,0.3535495811725116,0.4079418244298211,0.33541883342007506,0.19037285140058316,0.1178498603908372,0.009065373876218245,0.01813074775243649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.009065373876218245,0.009065373876218245,0.0,0.0,0.0,0.0,0.027196121628654736,0.07252299100974596,0.009065373876218245,0.0815883648859642,0.10878448651461894,0.045326869381091234,0.09065373876218247,0.14504598201949193,0.15411135589571018,0.1178498603908372,0.12691523426705545,0.0815883648859642,0.1631767297719284,0.09065373876218247,0.1631767297719284,0.0815883648859642,0.045326869381091234,0.05439224325730947,0.045326869381091234,0.03626149550487298,0.01813074775243649,0.009065373876218245,0.01813074775243649,0.009065373876218245]\n", "}\n", "},{\n", "\"mapping\":{\n", "\"x\":\"..density..\"\n", "},\n", "\"stat\":\"bin\",\n", "\"orientation\":\"y\",\n", "\"margin_side\":\"r\",\n", "\"color\":\"white\",\n", "\"marginal\":true,\n", "\"position\":\"stack\",\n", "\"geom\":\"histogram\",\n", "\"data\":{\n", "\"c\":[\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\"],\n", "\"y\":[-3.2612005044411787,-3.062027970210462,-2.8628554359797445,-2.6636829017490276,-2.46451036751831,-2.2653378332875933,-2.066165299056876,-1.866992764826159,-1.667820230595442,-1.4686476963647248,-1.2694751621340077,-1.0703026279032906,-0.8711300936725737,-0.6719575594418563,-0.4727850252111394,-0.27361249098042206,-0.07443995674970516,0.12473257748101174,0.3239051117117291,0.523077645942446,0.7222501801731633,0.9214227144038802,1.1205952486345976,1.319767782865315,1.5189403170960314,1.7181128513267487,1.917285385557466,2.1164579197881825,2.3156304540189,2.5148029882496172,-3.2612005044411787,-3.062027970210462,-2.8628554359797445,-2.6636829017490276,-2.46451036751831,-2.2653378332875933,-2.066165299056876,-1.866992764826159,-1.667820230595442,-1.4686476963647248,-1.2694751621340077,-1.0703026279032906,-0.8711300936725737,-0.6719575594418563,-0.4727850252111394,-0.27361249098042206,-0.07443995674970516,0.12473257748101174,0.3239051117117291,0.523077645942446,0.7222501801731633,0.9214227144038802,1.1205952486345976,1.319767782865315,1.5189403170960314,1.7181128513267487,1.917285385557466,2.1164579197881825,2.3156304540189,2.5148029882496172],\n", "\"..density..\":[0.02627537653997591,0.0,0.0,0.0,0.07882612961992773,0.05255075307995182,0.05255075307995182,0.0,0.07882612961992773,0.05255075307995182,0.1839276357798314,0.2627537653997591,0.23647838885978317,0.4466814011795905,0.4466814011795905,0.4992321542595423,0.39413064809963866,0.4992321542595423,0.2627537653997591,0.4204060246396146,0.3678552715596628,0.10510150615990364,0.15765225923985546,0.13137688269987954,0.13137688269987954,0.1839276357798314,0.07882612961992773,0.05255075307995182,0.02627537653997591,0.02627537653997591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07882612961992773,0.1839276357798314,0.4466814011795905,0.7357105431193256,1.1035658146789882,1.3663195800787473,0.9459135554391327,0.3678552715596628,0.02627537653997591,0.0,0.0,0.0,0.0]\n", "}\n", "},{\n", "\"mapping\":{\n", "},\n", "\"stat\":\"density\",\n", "\"orientation\":\"y\",\n", "\"margin_side\":\"l\",\n", "\"size\":0.0,\n", "\"marginal\":true,\n", "\"position\":\"identity\",\n", "\"geom\":\"density\",\n", "\"data\":{\n", "\"c\":[\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\"],\n", "\"x\":[0.007834073381225125,0.007908131853345627,0.00797828775173575,0.00804512862794407,0.008109312672793497,0.008171566529080411,0.008232682477315213,0.008293515001416302,0.008354976747055643,0.008418033891098287,0.008483700946222162,0.008553035030293086,0.008627129635349243,0.008707107936068584,0.008794115682303549,0.008889313724626239,0.008993870225792292,0.00910895261456711,0.009235719341430504,0.009375311498257405,0.00952884436613797,0.009697398957031901,0.009882013615931577,0.010083675750627472,0.010303313756018886,0.01054178919919194,0.010799889330195035,0.011078319981587662,0.011377698917429107,0.011698549689425457,0.012041296054484152,0.012406257003957066,0.012793642450414262,0.01320354961291153,0.013635960136430016,0.014090737975518354,0.01456762806619678,0.015066255803940552,0.015586127339094931,0.016126630694444647,0.016687037702923575,0.017266506756669298,0.01786408635186474,0.018478719407133554,0.019109248326733146,0.01975442077348949,0.02041289611040753,0.02108325246423779,0.021763994359049042,0.022453560863109647,0.0231503341881758,0.02385264867667249,0.02455880010928656,0.025267055263200992,0.025975661649626572,0.02668285735844732,0.02738688093770887,0.028085981236343868,0.028778427139942445,0.029462517131518116,0.030136588612067364,0.030799026919231785,0.03144827398649827,0.032082836590060795,0.032701294135644654,0.033302305943190495,0.03388461799322989,0.0344470691049667,0.03498859652242338,0.03550824089142372,0.03600515061656803,0.03647858559362599,0.03692792031883148,0.03735264638233074,0.037752374358428424,0.0381268351102245,0.03847588053067802,0.03879948374601128,0.03909773881064646,0.039370859925511904,0.03961918021354784,0.03984315008758274,0.040043335246441804,0.04022041433521568,0.040375176305089015,0.04050851750705081,0.040621438552228994,0.04071504096958839,0.040790523689348275,0.04084917937781921,0.040892390646479274,0.04092162615510971,0.04093843662575656,0.04094445078126453,0.04094137121921728,0.040930970229377896,0.04091508556022517,0.040895616137974926,0.040874517739605085,0.04085379861990433,0.04083551509145255,0.040821767055739144,0.040814693483312084,0.04081646784093382,0.040829293464153975,0.04085539887447779,0.040897033041354246,0.04095646059048474,0.041035956961404586,0.04113780351885135,0.04126428262404397,0.04141767267358894,0.041600243115247265,0.04181424945117309,0.042061928240425095,0.04234549211350899,0.04266712481239116,0.04302897626981765,0.043433157741845176,0.04388173700725756,0.044376733646997915,0.0449201144159198,0.04551378871808245,0.046159604195527046,0.04685934243902512,0.0476147148277516,0.048427358503259015,0.04929883248160245,0.05023061390604364,0.05122409444152623,0.05228057681113316,0.053401271474069055,0.054587293444409095,0.055839659249977205,0.057159284031277256,0.05854697878143364,0.060003447729598626,0.06152928587224229,0.06312497665913018,0.06479088984356383,0.06652727950954977,0.06833428229189732,0.07021191580873046,0.07216007732942557,0.07417854270445355,0.07626696558687303,0.07842487697817675,0.08065168513370517,0.0829466758647815,0.08530901327597265,0.08773774097633652,0.09023178380306099,0.09278995009448067,0.09541093454698099,0.09809332168674256,0.10083558998261337,0.10363611662064333,0.10649318295398053,0.10940498063400997,0.1123696184198624,0.11538512965388287,0.11844948038042795,0.12156057807465913,0.12471628093695802,0.12791440769744888,0.13115274786403897,0.13442907233666154,0.13774114430018225,0.1410867302990132,0.14446361138801922,0.14786959424707294,0.15130252214076678,0.15476028560053565,0.1582408327039241,0.16174217882506947,0.16526241573177827,0.1687997199078951,0.17235235998504891,0.1759187031752578,0.17949722060529483,0.18308649146499864,0.18668520589479395,0.19029216655235842,0.19390628881445943,0.19752659958724494,0.20115223471646754,0.20478243500794238,0.2084165408877223,0.2120539857506828,0.2156942880651398,0.21933704231944823,0.2229819089139532,0.2266286031178515,0.23027688322522458,0.23392653805742103,0.23757737396989576,0.24122920153031147,0.24488182204104192,0.24853501408304265,0.25218852025925287,0.2558420343142909,0.2594951888031293,0.26314754347476593,0.2667985745277576,0.2704476648829115,0.27409409560470904,0.2777370385872883,0.2813755506033318,0.2850085687952671,0.28863490766804406,0.29225325762180154,0.29586218504119893,0.29946013393654314,0.3030454291102714,0.30661628080132863,0.3101707907397567,0.3137069595247127,0.3172226952214472,0.32071582305679214,0.3241840960786168,0.3276252066327434,0.3310367985011342,0.3344164795378694,0.33776183463466725,0.34107043884542015,0.34433987049951603,0.3475677241364999,0.35075162309983804,0.3538892316350578,0.3538892316350578,0.35697826634724217,0.36001650688450326,0.36300180572752344,0.36593209698024404,0.36880540407307355,0.37161984630733014,0.3743736441877292,0.3770651235082886,0.3796927181758396,0.38225497177401474,0.3847505378889824,0.387178179235946,0.3895367656423906,0.3918252709599118,0.3940427689910981,0.39618842853108516,0.39826150763498885,0.4002613472322761,0.40218736421714124,0.4040390441500978,0.40581593371017066,0.4075176330392562,0.40914378812050267,0.41069408333083257,0.4121682343041536,0.41356598123640465,0.41488708275643804,0.41613131047797536,0.41729844433760016,0.41838826881210167,0.41940057009558124,0.4203351343027814,0.42119174675015914,0.42197019235058564,0.422670257141262,0.42329173094774786,0.42383441117004145,0.42429810765960374,0.4246826486392789,0.42498788760137485,0.42521371110292755,0.42536004736155314,0.4254268755404563,0.4254142355972985,0.4253222385588885,0.42515107707222194,0.42490103607243385,0.424572503399863,0.4241659801918619,0.42368209087031033,0.4231215925431924,0.42248538363813054,0.42177451158758733,0.4209901793896445,0.4209901793896445,0.4201337508748157,0.41920675451844075,0.4182108856496871,0.4171480069221873,0.416020146927689,0.414829496852806,0.413578405099838,0.41226936981557766,0.4109050292968041,0.4094881502675469,0.40802161405096643,0.40650840068744154,0.40495157107994606,0.40335424727755265,0.4017195910376209,0.4000507808364366,0.3983509875263156,0.3966233488640956,0.3948709431609948,0.393096762326598,0.39130368459983195,0.3894944472767662,0.3876716197585784,0.3858375772526766,0.3839944754655227,0.3821442266268577,0.38028847718165276,0.3784285874780172,0.3765656137665125,0.3747002928087869,0.37283302937130197,0.37096388685333515,0.3690925812676306,0.3672184787573791,0.36534059679500286,0.36345760916699377,0.3615678548052314,0.35966935047949733,0.357759807318746,0.35583665108087714,0.3538970460428656,0.3519379223358447,0.34995600650381875,0.34794785502072356,0.3459098904592839,0.3438384399670871,0.34172977567116947,0.3395801566026227,0.33738587170787665,0.33514328349366485,0.3328488718386762,0.33049927749670494,0.32809134481394275,0.3256221631869416,0.3230891067977364,0.3204898721785173,0.31782251317988813,0.3150854729438781,0.3122776125151088,0.30939823576043646,0.30939823576043646,0.30644711030848765,0.3034244842652014,0.30033109850923145,0.29716819442111775,0.2939375169518978,0.29064131298956286,0.2872823250347499,0.2838637802496424,0.28038937499547795,0.27686325502369974,0.2732899915329991,0.2696745533486592,0.2660222755212161,0.26233882467797776,0.2586301614929919,0.25490250066825426,0.2511622688410271,0.24741606084887416,0.24367059479531578,0.2399326663647665,0.23620910283571625,0.23250671723601787,0.2288322630738455,0.22519239006262912,0.22159360123834845,0.21804221184337116,0.21454431032294757,0.21110572174897668,0.20773197395128268,0.20442826659985777,0.2011994434429121,0.19804996786569823,0.1949839018944754,0.19200488872922633,0.18911613884839412,0.18632041968944862,0.1836200488710754,0.18101689088661466,0.17851235716451788,0.17610740936038918,0.1738025657169743,0.1715979103035103,0.1694931049243766,0.16748740346913482,0.16557966846191682,0.16376838955774514,0.1620517037267304,0.1604274168640996,0.15889302656454699,0.15744574580327989,0.15608252727312308,0.15480008813689805,0.1535949349666951,0.15246338865628267,0.15140160910941042,0.15040561952478143,0.14947133011763503,0.1485945611378215,0.14777106506457943,0.14699654787861333,0.14626668933214812,0.14557716215710562,0.1449236501701087,0.1443018652504125,0.14370756318286346,0.14313655837241204,0.14258473744939903,0.1420480717957,0.14152262903077606,0.14100458350371986,0.14049022584251636,0.13997597161501352,0.13945836915760382,0.13893410662747668,0.13840001833265642,0.13785309039106813,0.13729046576576517,0.13670944871840854,0.13610750871733224,0.1354822838302795,0.13483158362536707,0.1341533915972597,0.13344586712910073,0.13270734699466297,0.1319363463996157,0.13113155955591416,0.13029185977923882,0.12941629909624583,0.12850410734622436,0.1275546907606382,0.12656763000398522,0.12554267766043425,0.12447975515276523,0.12337894908318715,0.12224050698956149,0.12106483251531591,0.11985247999677132,0.11860414847759984,0.11732067516652082,0.11600302836099306,0.11465229986639625,0.11326969694686818,0.11185653385041362,0.11041422295697903,0.10894426560375259,0.10744824264687894,0.1059278048229491,0.10438466297695977,0.1028205782258407,0.10123735212807915,0.09963681693038823,0.09802082596175976,0.09639124424362232,0.09474993938221532,0.09309877280575243,0.09143959140453467,0.0897742196269829,0.08810445207868273,0.08643204666508479,0.08475871831160027,0.08308613328760618,0.08141590415344387,0.079749585342012,0.07808866937912655,0.07643458373958892,0.07478868832897462,0.07315227357464624,0.07152655910349368,0.06991269297850736,0.0683117514615491,0.06672473926567336,0.06515259025709087,0.06359616856438602,0.06205627005090222,0.060533624105285073,0.05902889570499387,0.05754268770812309,0.056075543330055454,0.0546279487632472,0.053200335900739304,0.051793085126725445,0.050406528140600766,0.04904095078427916,0.04769659584611266,0.04637366581839138,0.04507232558905585,0.04379270505184805,0.04253490162258145,0.041298982652465774,0.04008498773242249,0.038892930885027745,0.03772280264308423,0.036574572015833716,0.035448188345454004,0.03434358305774948,0.03326067131183723,0.03219935355417503,0.031159516982496013,0.030141036925138368,0.029143778140926314,0.02816759604421374,0.027212337858985337,0.02627784370507778,0.025363947618674238,0.024470478508292152,0.023597261046569208,0.022744116497297476,0.021910863476397025,0.021097318644892574,2.4952849294737022E-262,1.2959330340088147E-260,6.643012488979354E-259,3.360993474062723E-257,1.678380253339156E-255,8.272430841516951E-254,4.0243525589921343E-252,1.9323197289796007E-250,9.157607957048432E-249,4.283563389063032E-247,1.9776454787033072E-245,9.011804779944518E-244,4.053173563746705E-242,1.7992798623705608E-240,7.883559124941347E-239,3.4093063753067393E-237,1.4552239170950161E-235,6.130751441942723E-234,2.549280862863467E-232,1.0462651373306215E-230,4.2382435991794E-229,1.6945335309825061E-227,6.6870490825735515E-226,2.6045874681237456E-224,1.0012982892103823E-222,3.7993394179018697E-221,1.4228948402046262E-219,5.259659229599575E-218,1.9189448880673006E-216,6.910150217311697E-215,2.4560237755473526E-213,8.615842209596155E-212,2.9832043149060528E-210,1.0195026339243314E-208,3.438854473057975E-207,1.14487832880607E-205,3.7620534692571395E-204,1.220142864939136E-202,3.905858423542081E-201,1.234077407695056E-199,3.848472592626543E-198,1.1845529704593024E-196,3.5986587525561794E-195,1.0790633393478207E-193,3.1935469215092896E-192,9.328670572494397E-191,2.6895913800679817E-189,7.653726577390736E-188,2.149708998616809E-186,5.95945434882145E-185,1.6306224304257039E-183,4.403727312223614E-182,1.1738362504633106E-180,3.088266054114444E-179,8.019402103324838E-178,2.055366928973664E-176,5.199443109232361E-175,1.2982083221032005E-173,3.199278437579092E-172,7.781794916236649E-171,1.8682182713332395E-169,4.426857489811215E-168,1.0353413500555033E-166,2.3899657082606316E-165,5.445275680645884E-164,1.22452643819549E-162,2.7179192691003637E-161,5.954222111953545E-160,1.2874595763105907E-158,2.747655403314811E-157,5.787766742701555E-156,1.2033164874996216E-154,2.469271290160316E-153,5.001241645640596E-152,9.997857978569123E-151,1.9726779033919485E-149,3.8417180585371735E-148,7.384394509327618E-147,1.4009556429522562E-145,2.623336317295373E-144,4.848458147165213E-143,8.844502788046426E-142,1.592440770457738E-140,2.8299140531064197E-139,4.963674525503684E-138,8.593170724475398E-137,1.4683300164976712E-135,2.476361292197891E-134,4.122156065744657E-133,6.772592524477609E-132,1.0982609881171215E-130,1.7578275261695303E-129,2.776943594844168E-128,4.329900833591995E-127,6.663600245051111E-126,1.0121852755319498E-124,1.517508699275637E-123,2.245548596142941E-122,3.2796977477627266E-121,4.727867317846547E-120,6.726928842639319E-119,9.446881830480152E-118,1.309423791968211E-116,1.791397931952275E-115,2.4189339259129154E-114,3.223859001670456E-113,4.240803697902798E-112,5.506053131041054E-111,7.05590497672403E-110,8.924525753658278E-109,1.1141346197684818E-107,1.3728095466319042E-106,1.6695637683610246E-105,2.0040835916327205E-104,2.3743719541684245E-103,2.7765262040518997E-102,3.2046079171495056E-101,3.650632608166199E-100,4.104700360371338E-99,4.5552780863656255E-98,4.989631061999052E-97,5.394386761545675E-96,5.756199455868571E-95,6.062471297270091E-94,6.302076432645266E-93,6.466030475304322E-92,6.548049293033892E-91,6.5449486899284815E-90,6.456849548574486E-89,6.287170009465997E-88,6.042405392920936E-87,5.731715615744909E-86,5.366356632370114E-85,4.959005067421493E-84,4.523032403962792E-83,4.0717862813418784E-82,3.6179318481936854E-81,3.172896623627249E-80,2.7464493889430165E-79,2.3464290036055325E-78,1.9786244872675455E-77,1.6467948039426486E-76,1.3528067060547273E-75,1.0968624321309017E-74,8.777861743258536E-74,6.933387523279036E-73,5.40533210751022E-72,4.1592925212580236E-71,3.1589061878173206E-70,2.367959001640535E-69,1.7519908055655081E-68,1.2794097829084156E-67,9.221630574191574E-67,6.560334583814202E-66,4.606430085398444E-65,3.1924434509962445E-64,2.1837463241297208E-63,1.4743527902209371E-62,9.824736510668097E-62,6.46190675295382E-61,4.194891706546504E-60,2.6878258533228614E-59,1.6998156419900345E-58,1.0610182476681114E-57,6.536785577281377E-57,3.974898088498342E-56,2.3856578091813616E-55,1.4132230602242288E-54,8.262923214955694E-54,4.76844940476919E-53,2.716071053599384E-52,1.5269527169039008E-51,8.472871002047356E-51,4.640408084878255E-50,2.5084321826933883E-49,1.3383484443028081E-48,7.047851043916395E-48,3.663236521382255E-47,1.8792907394555255E-46,9.515767105373716E-46,4.755700573975205E-45,2.345881790181879E-44,1.1421383803765417E-43,5.48848359428423E-43,2.6031975356926583E-42,1.2186614108217545E-41,5.630931590809809E-41,2.5680222469356033E-40,1.1559491719570094E-39,5.1357067100741486E-39,2.252077383945366E-38,9.747385240766838E-38,4.164039044274281E-37,1.7557529971601947E-36,7.30691639201485E-36,3.0014222103576883E-35,1.2168650848292256E-34,4.86945451112794E-34,1.9232729013376345E-33,7.497637030264598E-33,2.8849016211744716E-32,1.0956224189178104E-31,4.106902044760026E-31,1.5194679735909167E-30,5.548719699726082E-30,1.9999462644070768E-29,7.114894533285181E-29,2.4982938613692728E-28,8.658523225550253E-28,2.9618955780524097E-27,1.0000498701121435E-26,3.332728856670341E-26,1.096238768228158E-25,3.559079213433669E-25,1.1405070611766222E-24,3.607336610288545E-24,1.1261709073784321E-23,3.470175977752905E-23,1.0554287363304205E-22,3.168379947830974E-22,9.388090720382872E-22,2.7456791511556133E-21,7.926028746517643E-21,2.2583735085551372E-20,6.351424706728712E-20,1.7631239553092012E-19,4.830943658087488E-19,1.3065310513784667E-18,3.487766655388841E-18,9.190018856101196E-18,2.3901664524159866E-17,6.135984032712535E-17,1.5548421297746955E-16,3.8889841342180217E-16,9.601426141030825E-16,2.3398448485532647E-15,5.628495132430108E-15,1.3364532479628318E-14,3.132376585292597E-14,7.246954519654974E-14,1.655012563796627E-13,3.7309055832597267E-13,8.302285025473508E-13,1.8237061453636825E-12,3.954481769362704E-12,8.464585175364832E-12,1.7885756493092213E-11,3.7307736282530514E-11,7.682191654108871E-11,1.56160446210599E-10,3.1337326361929446E-10,6.208168682321784E-10,1.2141763795261004E-9,2.3443538909758107E-9,4.468836883871904E-9,8.41013608167384E-9,1.5626309794638755E-8,2.8665722869775634E-8,5.1919571854322284E-8,9.284750715885882E-8,1.6394194967375928E-7,2.858255138110131E-7,4.920552886774428E-7,8.364508795259041E-7,1.404083392220561E-6,2.327471099754662E-6,3.8100299663898156E-6,6.159418924139632E-6,9.834080093493835E-6,1.5506959401596376E-5,2.4151029808886296E-5,3.7151718450792826E-5,5.645151261814572E-5,8.47317032567709E-5,1.2563520713921694E-4,1.8403247068181914E-4,2.663294022465881E-4,3.8081197120854257E-4,5.38016528622879E-4,7.5110818809475E-4,0.0010362421111335283,0.0014128748693074949,0.0019039860586487517,0.0025361650937382025,0.0033395158269126073,0.004347333556024243,0.005595516182110797,0.007121684482012628,0.008964005836712165,0.011159740732389178,0.013743560503179883,0.016745715817123547,0.02019016526055784,0.024092798470324972,0.028459904863761546,0.033287043701106314,0.03855846137884216,0.04424717618763097,0.05031580963939323,0.05671818911209989,0.06340168305876237,0.07031016301807276,0.07738742281493809,0.08458083161699496,0.09184496034534834,0.09914490536747149,0.10645904235762785,0.11378097701206351,0.12112051547147143,0.12850355073375833,0.1359708448649311,0.14357577204349592,0.15138116584713524,0.15945547810123345,0.16786850040615436,0.17668692019360221,0.18596998092727254,0.19576549387052872,0.20610641201150784,0.21700813187820184,0.22846664275408451,0.2404576006585102,0.252936369562936,0.26583904500650624,0.2790844530724739,0.29257709599217213,0.30621098900278154,0.3198742967910789,0.33345462954789584,0.34684479955338704,0.3599487746238076,0.3726875036853492,0.3850042435679702,0.3968689964779969,0.40828168400115833,0.4192737409574192,0.4299079099806891,0.44027614776927443,0.45049570317893517,0.46070357849483157,0.47104972006940876,0.4816893868650427,0.4927752039327926,0.5044494177903647,0.5168368345142228,0.5300388479091559,0.5441288673520245,0.5591493472164506,0.575110515069102,0.5919908031393954,0.6097389108256258,0.6282773640342847,0.6475073849832775,0.6673148372065172,0.6875769594143599,0.708169546549166,0.7289741797025562,0.7498850565527942,0.7708149426387111,0.7916997647039145,0.7916997647039145,0.8125014125585106,0.8332084126363525,0.853834284423038,0.8744135810400665,0.8949958296497801,0.9156378014110531,0.9363947265996353,0.957311201458219,0.9784125883054873,0.9996976779660458,1.0211332643333284,1.0426510881147424,1.0641473648074367,1.085484852446002,1.1064971719255694,1.1269948981154174,1.1467728170125109,1.1656177047125713,1.1833160265598996,1.1996610653089455,1.2144591413676558,1.2144591413676558,1.2275347565728445,1.238734645687742,1.2479308322210756,1.2550228418819527,1.2599392244323655,1.2626384813732907,1.2631094114269255,1.2613707931428748,1.257470250595516,1.251482116778629,1.2435041344755355,1.2336529194278898,1.2220582466990266,1.2088563884078591,1.1941829019083152,1.1781654113188507,1.1609170136098443,1.1425309520941889,1.123077125277681,1.123077125277681,1.1026008411769082,1.0811240033368155,1.0586486528966474,1.0351625261148802,1.0106460553182444,0.985080075775211,0.9584534249070695,0.93076964425731,0.9020521152109883,0.872347159484966,0.8417248869878218,0.8102778424209396,0.7781177523691528,0.7453708749720653,0.7121725812433064,0.6786618385628279,0.6449762228714316,0.6112479680849244,0.5776013895817644,0.5441518190474832,0.5110059876111716,0.47826361780179916,0.44601985165038366,0.41436806416229116,0.38340259225352397,0.35322094546992,0.3239251467555,0.2956219655927227,0.2684219366293283,0.24243718934817401,0.21777823526026624,0.19454995833195718,0.1728471252141371,0.15274977113780974,0.1343188250128325,0.11759231577387506,0.10258245565423176,0.08927383029136356,0.07762284641335762,0.0675585014712849,0.05898445189110844,0.05178227308755692,0.04581572987680764,0.040935814609729414,0.036986265603183736,0.03380925277266896,0.03125091226105372,0.02916642766289062,0.02742439121944716,0.025910231775960874,0.024528563629008727,0.023204386676251097,0.02188314760016516,0.020529747796928996,0.019126650173966742,0.01767128836986798,0.016173014419329473,0.014649832329470343,0.013125155552576366,0.011624798166873972,0.010174366761352702,0.008797167877657407,0.007512690268780717,0.006335667889440016,0.005275683290934969,0.004337235467055274,0.0035201730909703213,0.0028203837676906087,0.002230631240085284,0.001741443192501194,0.001341969532883684,0.0010207517702978323,7.663655353754065E-4,5.679181304130956E-4,4.153996402976247E-4,2.998987043404866E-4,2.1370232069618006E-4,1.5030333222461548E-4,1.0434018363734239E-4,7.149198605871341E-5,4.834875175757247E-5,3.227266450709604E-5,2.126207585267191E-5,1.3826030288946553E-5,8.873810103882266E-6,5.621385636188387E-6,3.5147717375160125E-6,2.169058539525077E-6,1.3211914344008797E-6,7.942925675620484E-7,4.713195763113948E-7,2.760391341264473E-7,1.5956807558098707E-7,9.104194187872077E-8,5.126927273969896E-8,2.8496592356764728E-8,1.5633233786647277E-8,8.464958407874197E-9,4.523982776423092E-9,2.386366597620921E-9,1.242434440656953E-9,6.384544245859268E-10,3.238220500655462E-10,1.6210747115607644E-10,8.00976434844266E-11,3.906218581784107E-11,1.8802406507859556E-11,8.932857940784982E-12,4.188779601661272E-12,1.938673550126476E-12,8.856088600353083E-13,3.993000023042774E-13],\n", "\"y\":[-3.227582210446822,-3.2164104552517103,-3.205238700056599,-3.194066944861487,-3.1828951896663753,-3.1717234344712635,-3.160551679276152,-3.1493799240810403,-3.1382081688859285,-3.1270364136908166,-3.1158646584957053,-3.1046929033005934,-3.0935211481054816,-3.08234939291037,-3.0711776377152584,-3.0600058825201466,-3.048834127325035,-3.037662372129923,-3.0264906169348116,-3.0153188617396998,-3.004147106544588,-2.992975351349476,-2.9818035961543647,-2.970631840959253,-2.959460085764141,-2.9482883305690293,-2.937116575373918,-2.925944820178806,-2.9147730649836943,-2.9036013097885824,-2.892429554593471,-2.8812577993983592,-2.8700860442032474,-2.8589142890081356,-2.8477425338130242,-2.8365707786179124,-2.8253990234228006,-2.8142272682276888,-2.8030555130325774,-2.7918837578374656,-2.7807120026423537,-2.769540247447242,-2.7583684922521305,-2.7471967370570187,-2.736024981861907,-2.724853226666795,-2.7136814714716837,-2.702509716276572,-2.69133796108146,-2.6801662058863487,-2.668994450691237,-2.657822695496125,-2.646650940301013,-2.6354791851059014,-2.62430742991079,-2.613135674715678,-2.6019639195205664,-2.590792164325455,-2.579620409130343,-2.5684486539352314,-2.5572768987401195,-2.5461051435450077,-2.5349333883498963,-2.5237616331547845,-2.5125898779596727,-2.5014181227645613,-2.4902463675694495,-2.4790746123743377,-2.467902857179226,-2.456731101984114,-2.4455593467890027,-2.434387591593891,-2.423215836398779,-2.4120440812036676,-2.400872326008556,-2.389700570813444,-2.378528815618332,-2.3673570604232204,-2.356185305228109,-2.345013550032997,-2.3338417948378853,-2.322670039642774,-2.311498284447662,-2.3003265292525503,-2.2891547740574385,-2.2779830188623267,-2.2668112636672153,-2.2556395084721035,-2.2444677532769917,-2.2332959980818803,-2.2221242428867685,-2.2109524876916566,-2.199780732496545,-2.188608977301433,-2.1774372221063216,-2.16626546691121,-2.1550937117160984,-2.1439219565209866,-2.132750201325875,-2.121578446130763,-2.110406690935651,-2.0992349357405393,-2.088063180545428,-2.076891425350316,-2.0657196701552047,-2.054547914960093,-2.043376159764981,-2.0322044045698693,-2.0210326493747575,-2.0098608941796456,-1.9986891389845343,-1.9875173837894224,-1.9763456285943108,-1.965173873399199,-1.9540021182040874,-1.9428303630089756,-1.931658607813864,-1.9204868526187522,-1.9093150974236406,-1.8981433422285288,-1.8869715870334172,-1.8757998318383053,-1.8646280766431937,-1.853456321448082,-1.8422845662529703,-1.8311128110578585,-1.819941055862747,-1.808769300667635,-1.7975975454725235,-1.7864257902774119,-1.7752540350823,-1.7640822798871885,-1.7529105246920766,-1.741738769496965,-1.7305670143018532,-1.7193952591067416,-1.7082235039116298,-1.6970517487165182,-1.6858799935214064,-1.6747082383262948,-1.663536483131183,-1.6523647279360714,-1.6411929727409595,-1.630021217545848,-1.6188494623507361,-1.6076777071556245,-1.5965059519605127,-1.585334196765401,-1.5741624415702893,-1.5629906863751777,-1.5518189311800659,-1.5406471759849543,-1.5294754207898424,-1.5183036655947308,-1.507131910399619,-1.4959601552045074,-1.4847884000093956,-1.473616644814284,-1.4624448896191722,-1.4512731344240606,-1.4401013792289488,-1.4289296240338372,-1.4177578688387253,-1.4065861136436137,-1.395414358448502,-1.3842426032533903,-1.3730708480582785,-1.361899092863167,-1.350727337668055,-1.3395555824729435,-1.3283838272778317,-1.31721207208272,-1.3060403168876082,-1.2948685616924966,-1.2836968064973848,-1.2725250513022732,-1.2613532961071614,-1.2501815409120498,-1.239009785716938,-1.2278380305218264,-1.2166662753267148,-1.205494520131603,-1.1943227649364911,-1.1831510097413793,-1.171979254546268,-1.1608074993511561,-1.1496357441560443,-1.1384639889609325,-1.127292233765821,-1.1161204785707093,-1.1049487233755975,-1.0937769681804856,-1.0826052129853743,-1.0714334577902624,-1.0602617025951506,-1.0490899474000392,-1.0379181922049274,-1.0267464370098156,-1.0155746818147038,-1.0044029266195924,-0.9932311714244806,-0.9820594162293688,-0.9708876610342569,-0.9597159058391456,-0.9485441506440337,-0.9373723954489219,-0.9262006402538101,-0.9150288850586987,-0.9038571298635869,-0.8926853746684751,-0.8815136194733633,-0.8703418642782519,-0.8591701090831401,-0.8479983538880282,-0.8368265986929164,-0.825654843497805,-0.8144830883026932,-0.8033113331075814,-0.7921395779124696,-0.7809678227173582,-0.7697960675222464,-0.7586243123271346,-0.7474525571320227,-0.7362808019369114,-0.7251090467417995,-0.7139372915466877,-0.7027655363515759,-0.6915937811564645,-0.6804220259613527,-0.6804220259613527,-0.6692502707662409,-0.6580785155711291,-0.6469067603760177,-0.6357350051809059,-0.624563249985794,-0.6133914947906822,-0.6022197395955708,-0.591047984400459,-0.5798762292053472,-0.5687044740102354,-0.557532718815124,-0.5463609636200122,-0.5351892084249004,-0.5240174532297885,-0.5128456980346772,-0.5016739428395653,-0.4905021876444535,-0.4793304324493417,-0.4681586772542303,-0.4569869220591185,-0.4458151668640067,-0.43464341166889486,-0.4234716564737835,-0.41229990127867167,-0.40112814608355984,-0.389956390888448,-0.37878463569333665,-0.3676128804982248,-0.356441125303113,-0.3452693701080016,-0.3340976149128898,-0.322925859717778,-0.31175410452266616,-0.3005823493275548,-0.28941059413244297,-0.27823883893733115,-0.2670670837422193,-0.25589532854710795,-0.24472357335199613,-0.2335518181568843,-0.22238006296177248,-0.2112083077666611,-0.2000365525715493,-0.18886479737643747,-0.17769304218132564,-0.16652128698621427,-0.15534953179110245,-0.14417777659599063,-0.1330060214008788,-0.12183426620576743,-0.1106625110106556,-0.09949075581554379,-0.08831900062043196,-0.07714724542532059,-0.07714724542532059,-0.06597549023020877,-0.054803735035096945,-0.043631979839985124,-0.03246022464487375,-0.021288469449761926,-0.010116714254650105,0.0010550409404617156,0.012226796135573093,0.023398551330684914,0.034570306525796735,0.045742061720908556,0.05691381691601993,0.06808557211113175,0.07925732730624357,0.0904290825013554,0.10160083769646677,0.1127725928915786,0.12394434808669041,0.13511610328180224,0.1462878584769136,0.15745961367202543,0.16863136886713725,0.17980312406224908,0.19097487925736045,0.20214663445247227,0.2133183896475841,0.22449014484269592,0.2356619000378073,0.2468336552329191,0.25800541042803093,0.26917716562314276,0.28034892081825413,0.29152067601336595,0.3026924312084778,0.3138641864035896,0.325035941598701,0.3362076967938128,0.3473794519889246,0.358551207184036,0.3697229623791478,0.38089471757425963,0.39206647276937145,0.40323822796448283,0.41440998315959465,0.4255817383547065,0.4367534935498183,0.44792524874492967,0.4590970039400415,0.4702687591351533,0.48144051433026513,0.4926122695253765,0.5037840247204883,0.5149557799156002,0.526127535110712,0.5372992903058234,0.5484710455009352,0.559642800696047,0.5708145558911588,0.5819863110862702,0.593158066281382,0.593158066281382,0.6043298214764938,0.6155015766716057,0.626673331866717,0.6378450870618289,0.6490168422569407,0.6601885974520525,0.6713603526471639,0.6825321078422757,0.6937038630373875,0.7048756182324993,0.7160473734276107,0.7272191286227225,0.7383908838178344,0.7495626390129462,0.7607343942080576,0.7719061494031694,0.7830779045982807,0.7942496597933926,0.8054214149885044,0.8165931701836162,0.827764925378728,0.8389366805738399,0.8501084357689517,0.8612801909640635,0.8724519461591744,0.8836237013542863,0.8947954565493981,0.9059672117445099,0.9171389669396217,0.9283107221347335,0.9394824773298454,0.9506542325249572,0.9618259877200681,0.9729977429151799,0.9841694981102918,0.9953412533054036,1.0065130085005154,1.0176847636956272,1.028856518890739,1.0400282740858509,1.0512000292809618,1.0623717844760736,1.0735435396711854,1.0847152948662973,1.095887050061409,1.107058805256521,1.1182305604516327,1.1294023156467436,1.1405740708418555,1.1517458260369673,1.1629175812320791,1.174089336427191,1.1852610916223028,1.1964328468174146,1.2076046020125264,1.2187763572076373,1.2299481124027491,1.241119867597861,1.2522916227929728,1.2634633779880846,1.2746351331831964,1.2858068883783083,1.29697864357342,1.308150398768531,1.3193221539636428,1.3304939091587547,1.3416656643538665,1.3528374195489783,1.3640091747440901,1.375180929939202,1.3863526851343138,1.3975244403294247,1.4086961955245365,1.4198679507196483,1.4310397059147602,1.442211461109872,1.4533832163049838,1.4645549715000956,1.4757267266952074,1.4868984818903184,1.4980702370854302,1.509241992280542,1.5204137474756538,1.5315855026707657,1.5427572578658775,1.5539290130609893,1.5651007682561011,1.576272523451212,1.5874442786463239,1.5986160338414357,1.6097877890365475,1.6209595442316593,1.6321312994267712,1.643303054621883,1.6544748098169948,1.6656465650121057,1.6768183202072175,1.6879900754023294,1.6991618305974412,1.710333585792553,1.7215053409876648,1.7326770961827767,1.7438488513778885,1.7550206065729994,1.7661923617681112,1.777364116963223,1.7885358721583349,1.7997076273534467,1.8108793825485585,1.8220511377436703,1.8332228929387813,1.844394648133893,1.855566403329005,1.8667381585241167,1.8779099137192286,1.8890816689143404,1.9002534241094522,1.911425179304564,1.922596934499675,1.9337686896947868,1.9449404448898986,1.9561122000850104,1.9672839552801222,1.978455710475234,1.9896274656703459,2.0007992208654577,2.0119709760605686,2.0231427312556804,2.0343144864507923,2.045486241645904,2.056657996841016,2.0678297520361277,2.0790015072312396,2.0901732624263514,2.1013450176214623,2.112516772816574,2.123688528011686,2.1348602832067978,2.1460320384019096,2.1572037935970214,2.1683755487921332,2.179547303987245,2.190719059182356,2.201890814377468,2.2130625695725796,2.2242343247676915,2.2354060799628033,2.246577835157915,2.257749590353027,2.2689213455481387,2.2800931007432497,2.2912648559383615,2.3024366111334733,2.313608366328585,2.324780121523697,2.3359518767188088,2.3471236319139206,2.3582953871090324,2.3694671423041433,2.380638897499255,2.391810652694367,2.402982407889479,2.4141541630845906,2.4253259182797025,2.4364976734748143,2.447669428669926,2.458841183865037,2.470012939060149,2.4811846942552607,-3.227582210446822,-3.2164104552517103,-3.205238700056599,-3.194066944861487,-3.1828951896663753,-3.1717234344712635,-3.160551679276152,-3.1493799240810403,-3.1382081688859285,-3.1270364136908166,-3.1158646584957053,-3.1046929033005934,-3.0935211481054816,-3.08234939291037,-3.0711776377152584,-3.0600058825201466,-3.048834127325035,-3.037662372129923,-3.0264906169348116,-3.0153188617396998,-3.004147106544588,-2.992975351349476,-2.9818035961543647,-2.970631840959253,-2.959460085764141,-2.9482883305690293,-2.937116575373918,-2.925944820178806,-2.9147730649836943,-2.9036013097885824,-2.892429554593471,-2.8812577993983592,-2.8700860442032474,-2.8589142890081356,-2.8477425338130242,-2.8365707786179124,-2.8253990234228006,-2.8142272682276888,-2.8030555130325774,-2.7918837578374656,-2.7807120026423537,-2.769540247447242,-2.7583684922521305,-2.7471967370570187,-2.736024981861907,-2.724853226666795,-2.7136814714716837,-2.702509716276572,-2.69133796108146,-2.6801662058863487,-2.668994450691237,-2.657822695496125,-2.646650940301013,-2.6354791851059014,-2.62430742991079,-2.613135674715678,-2.6019639195205664,-2.590792164325455,-2.579620409130343,-2.5684486539352314,-2.5572768987401195,-2.5461051435450077,-2.5349333883498963,-2.5237616331547845,-2.5125898779596727,-2.5014181227645613,-2.4902463675694495,-2.4790746123743377,-2.467902857179226,-2.456731101984114,-2.4455593467890027,-2.434387591593891,-2.423215836398779,-2.4120440812036676,-2.400872326008556,-2.389700570813444,-2.378528815618332,-2.3673570604232204,-2.356185305228109,-2.345013550032997,-2.3338417948378853,-2.322670039642774,-2.311498284447662,-2.3003265292525503,-2.2891547740574385,-2.2779830188623267,-2.2668112636672153,-2.2556395084721035,-2.2444677532769917,-2.2332959980818803,-2.2221242428867685,-2.2109524876916566,-2.199780732496545,-2.188608977301433,-2.1774372221063216,-2.16626546691121,-2.1550937117160984,-2.1439219565209866,-2.132750201325875,-2.121578446130763,-2.110406690935651,-2.0992349357405393,-2.088063180545428,-2.076891425350316,-2.0657196701552047,-2.054547914960093,-2.043376159764981,-2.0322044045698693,-2.0210326493747575,-2.0098608941796456,-1.9986891389845343,-1.9875173837894224,-1.9763456285943108,-1.965173873399199,-1.9540021182040874,-1.9428303630089756,-1.931658607813864,-1.9204868526187522,-1.9093150974236406,-1.8981433422285288,-1.8869715870334172,-1.8757998318383053,-1.8646280766431937,-1.853456321448082,-1.8422845662529703,-1.8311128110578585,-1.819941055862747,-1.808769300667635,-1.7975975454725235,-1.7864257902774119,-1.7752540350823,-1.7640822798871885,-1.7529105246920766,-1.741738769496965,-1.7305670143018532,-1.7193952591067416,-1.7082235039116298,-1.6970517487165182,-1.6858799935214064,-1.6747082383262948,-1.663536483131183,-1.6523647279360714,-1.6411929727409595,-1.630021217545848,-1.6188494623507361,-1.6076777071556245,-1.5965059519605127,-1.585334196765401,-1.5741624415702893,-1.5629906863751777,-1.5518189311800659,-1.5406471759849543,-1.5294754207898424,-1.5183036655947308,-1.507131910399619,-1.4959601552045074,-1.4847884000093956,-1.473616644814284,-1.4624448896191722,-1.4512731344240606,-1.4401013792289488,-1.4289296240338372,-1.4177578688387253,-1.4065861136436137,-1.395414358448502,-1.3842426032533903,-1.3730708480582785,-1.361899092863167,-1.350727337668055,-1.3395555824729435,-1.3283838272778317,-1.31721207208272,-1.3060403168876082,-1.2948685616924966,-1.2836968064973848,-1.2725250513022732,-1.2613532961071614,-1.2501815409120498,-1.239009785716938,-1.2278380305218264,-1.2166662753267148,-1.205494520131603,-1.1943227649364911,-1.1831510097413793,-1.171979254546268,-1.1608074993511561,-1.1496357441560443,-1.1384639889609325,-1.127292233765821,-1.1161204785707093,-1.1049487233755975,-1.0937769681804856,-1.0826052129853743,-1.0714334577902624,-1.0602617025951506,-1.0490899474000392,-1.0379181922049274,-1.0267464370098156,-1.0155746818147038,-1.0044029266195924,-0.9932311714244806,-0.9820594162293688,-0.9708876610342569,-0.9597159058391456,-0.9485441506440337,-0.9373723954489219,-0.9262006402538101,-0.9150288850586987,-0.9038571298635869,-0.8926853746684751,-0.8815136194733633,-0.8703418642782519,-0.8591701090831401,-0.8479983538880282,-0.8368265986929164,-0.825654843497805,-0.8144830883026932,-0.8033113331075814,-0.7921395779124696,-0.7809678227173582,-0.7697960675222464,-0.7586243123271346,-0.7474525571320227,-0.7362808019369114,-0.7251090467417995,-0.7139372915466877,-0.7027655363515759,-0.6915937811564645,-0.6804220259613527,-0.6692502707662409,-0.6580785155711291,-0.6469067603760177,-0.6357350051809059,-0.624563249985794,-0.6133914947906822,-0.6022197395955708,-0.591047984400459,-0.5798762292053472,-0.5687044740102354,-0.557532718815124,-0.5463609636200122,-0.5351892084249004,-0.5240174532297885,-0.5128456980346772,-0.5016739428395653,-0.4905021876444535,-0.4793304324493417,-0.4681586772542303,-0.4569869220591185,-0.4458151668640067,-0.43464341166889486,-0.4234716564737835,-0.41229990127867167,-0.40112814608355984,-0.389956390888448,-0.37878463569333665,-0.3676128804982248,-0.356441125303113,-0.3452693701080016,-0.3340976149128898,-0.322925859717778,-0.31175410452266616,-0.3005823493275548,-0.28941059413244297,-0.27823883893733115,-0.2670670837422193,-0.25589532854710795,-0.24472357335199613,-0.2335518181568843,-0.22238006296177248,-0.2112083077666611,-0.2000365525715493,-0.18886479737643747,-0.17769304218132564,-0.16652128698621427,-0.15534953179110245,-0.14417777659599063,-0.1330060214008788,-0.12183426620576743,-0.1106625110106556,-0.09949075581554379,-0.08831900062043196,-0.07714724542532059,-0.06597549023020877,-0.054803735035096945,-0.043631979839985124,-0.03246022464487375,-0.021288469449761926,-0.010116714254650105,0.0010550409404617156,0.012226796135573093,0.023398551330684914,0.034570306525796735,0.045742061720908556,0.05691381691601993,0.06808557211113175,0.07925732730624357,0.0904290825013554,0.10160083769646677,0.1127725928915786,0.12394434808669041,0.13511610328180224,0.1462878584769136,0.15745961367202543,0.16863136886713725,0.17980312406224908,0.19097487925736045,0.20214663445247227,0.2133183896475841,0.22449014484269592,0.2356619000378073,0.2468336552329191,0.25800541042803093,0.26917716562314276,0.28034892081825413,0.29152067601336595,0.3026924312084778,0.3138641864035896,0.325035941598701,0.3362076967938128,0.3473794519889246,0.358551207184036,0.3697229623791478,0.38089471757425963,0.39206647276937145,0.40323822796448283,0.41440998315959465,0.4255817383547065,0.4367534935498183,0.44792524874492967,0.4590970039400415,0.4702687591351533,0.48144051433026513,0.4926122695253765,0.5037840247204883,0.5149557799156002,0.526127535110712,0.5372992903058234,0.5484710455009352,0.559642800696047,0.5708145558911588,0.5819863110862702,0.593158066281382,0.6043298214764938,0.6155015766716057,0.626673331866717,0.6378450870618289,0.6490168422569407,0.6601885974520525,0.6713603526471639,0.6825321078422757,0.6937038630373875,0.7048756182324993,0.7160473734276107,0.7272191286227225,0.7383908838178344,0.7495626390129462,0.7607343942080576,0.7719061494031694,0.7830779045982807,0.7830779045982807,0.7942496597933926,0.8054214149885044,0.8165931701836162,0.827764925378728,0.8389366805738399,0.8501084357689517,0.8612801909640635,0.8724519461591744,0.8836237013542863,0.8947954565493981,0.9059672117445099,0.9171389669396217,0.9283107221347335,0.9394824773298454,0.9506542325249572,0.9618259877200681,0.9729977429151799,0.9841694981102918,0.9953412533054036,1.0065130085005154,1.0176847636956272,1.0176847636956272,1.028856518890739,1.0400282740858509,1.0512000292809618,1.0623717844760736,1.0735435396711854,1.0847152948662973,1.095887050061409,1.107058805256521,1.1182305604516327,1.1294023156467436,1.1405740708418555,1.1517458260369673,1.1629175812320791,1.174089336427191,1.1852610916223028,1.1964328468174146,1.2076046020125264,1.2187763572076373,1.2299481124027491,1.2299481124027491,1.241119867597861,1.2522916227929728,1.2634633779880846,1.2746351331831964,1.2858068883783083,1.29697864357342,1.308150398768531,1.3193221539636428,1.3304939091587547,1.3416656643538665,1.3528374195489783,1.3640091747440901,1.375180929939202,1.3863526851343138,1.3975244403294247,1.4086961955245365,1.4198679507196483,1.4310397059147602,1.442211461109872,1.4533832163049838,1.4645549715000956,1.4757267266952074,1.4868984818903184,1.4980702370854302,1.509241992280542,1.5204137474756538,1.5315855026707657,1.5427572578658775,1.5539290130609893,1.5651007682561011,1.576272523451212,1.5874442786463239,1.5986160338414357,1.6097877890365475,1.6209595442316593,1.6321312994267712,1.643303054621883,1.6544748098169948,1.6656465650121057,1.6768183202072175,1.6879900754023294,1.6991618305974412,1.710333585792553,1.7215053409876648,1.7326770961827767,1.7438488513778885,1.7550206065729994,1.7661923617681112,1.777364116963223,1.7885358721583349,1.7997076273534467,1.8108793825485585,1.8220511377436703,1.8332228929387813,1.844394648133893,1.855566403329005,1.8667381585241167,1.8779099137192286,1.8890816689143404,1.9002534241094522,1.911425179304564,1.922596934499675,1.9337686896947868,1.9449404448898986,1.9561122000850104,1.9672839552801222,1.978455710475234,1.9896274656703459,2.0007992208654577,2.0119709760605686,2.0231427312556804,2.0343144864507923,2.045486241645904,2.056657996841016,2.0678297520361277,2.0790015072312396,2.0901732624263514,2.1013450176214623,2.112516772816574,2.123688528011686,2.1348602832067978,2.1460320384019096,2.1572037935970214,2.1683755487921332,2.179547303987245,2.190719059182356,2.201890814377468,2.2130625695725796,2.2242343247676915,2.2354060799628033,2.246577835157915,2.257749590353027,2.2689213455481387,2.2800931007432497,2.2912648559383615,2.3024366111334733,2.313608366328585,2.324780121523697,2.3359518767188088,2.3471236319139206,2.3582953871090324,2.3694671423041433,2.380638897499255,2.391810652694367,2.402982407889479,2.4141541630845906,2.4253259182797025,2.4364976734748143,2.447669428669926,2.458841183865037,2.470012939060149,2.4811846942552607],\n", "\"..quantile..\":[0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0]\n", "}\n", "},{\n", "\"mapping\":{\n", "},\n", "\"stat\":\"density\",\n", "\"margin_side\":\"b\",\n", "\"size\":0.0,\n", "\"marginal\":true,\n", "\"position\":\"identity\",\n", "\"geom\":\"density\",\n", "\"data\":{\n", "\"c\":[\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\"],\n", "\"x\":[-8.861445954008323,-8.829065372868248,-8.796684791728175,-8.7643042105881,-8.731923629448026,-8.699543048307953,-8.667162467167879,-8.634781886027804,-8.602401304887731,-8.570020723747657,-8.537640142607582,-8.50525956146751,-8.472878980327435,-8.44049839918736,-8.408117818047288,-8.375737236907213,-8.343356655767138,-8.310976074627064,-8.278595493486991,-8.246214912346916,-8.213834331206842,-8.181453750066769,-8.149073168926694,-8.11669258778662,-8.084312006646547,-8.051931425506472,-8.019550844366398,-7.987170263226324,-7.9547896820862505,-7.922409100946177,-7.890028519806102,-7.8576479386660285,-7.825267357525954,-7.79288677638588,-7.7605061952458065,-7.728125614105732,-7.695745032965658,-7.663364451825585,-7.63098387068551,-7.598603289545436,-7.566222708405363,-7.533842127265288,-7.501461546125214,-7.469080964985141,-7.436700383845066,-7.404319802704992,-7.371939221564919,-7.339558640424844,-7.30717805928477,-7.274797478144697,-7.242416897004622,-7.210036315864548,-7.177655734724474,-7.1452751535844,-7.1128945724443255,-7.080513991304252,-7.048133410164178,-7.015752829024104,-6.98337224788403,-6.950991666743956,-6.918611085603882,-6.886230504463808,-6.853849923323734,-6.82146934218366,-6.789088761043586,-6.756708179903512,-6.724327598763438,-6.691947017623364,-6.65956643648329,-6.627185855343216,-6.594805274203142,-6.562424693063068,-6.530044111922994,-6.49766353078292,-6.465282949642846,-6.432902368502772,-6.400521787362697,-6.368141206222624,-6.33576062508255,-6.303380043942475,-6.2709994628024015,-6.238618881662328,-6.206238300522253,-6.1738577193821795,-6.141477138242106,-6.109096557102031,-6.076715975961958,-6.044335394821884,-6.011954813681809,-5.979574232541736,-5.947193651401662,-5.914813070261587,-5.882432489121514,-5.85005190798144,-5.817671326841365,-5.785290745701292,-5.752910164561218,-5.720529583421143,-5.68814900228107,-5.655768421140996,-5.623387840000921,-5.591007258860847,-5.558626677720774,-5.526246096580699,-5.493865515440625,-5.461484934300552,-5.4291043531604775,-5.396723772020403,-5.364343190880329,-5.3319626097402555,-5.299582028600181,-5.267201447460107,-5.2348208663200335,-5.202440285179959,-5.170059704039885,-5.1376791228998115,-5.105298541759737,-5.072917960619663,-5.04053737947959,-5.008156798339515,-4.975776217199441,-4.943395636059368,-4.911015054919293,-4.878634473779219,-4.846253892639145,-4.813873311499071,-4.781492730358997,-4.749112149218923,-4.716731568078849,-4.684350986938775,-4.651970405798701,-4.619589824658627,-4.587209243518553,-4.554828662378479,-4.522448081238405,-4.4900675000983306,-4.457686918958257,-4.425306337818183,-4.392925756678109,-4.360545175538035,-4.328164594397961,-4.295784013257887,-4.263403432117813,-4.231022850977739,-4.198642269837665,-4.166261688697591,-4.133881107557517,-4.101500526417443,-4.069119945277369,-4.036739364137294,-4.004358782997221,-3.971978201857147,-3.9395976207170724,-3.9072170395769987,-3.874836458436925,-3.8424558772968505,-3.8100752961567768,-3.777694715016703,-3.7453141338766285,-3.712933552736555,-3.68055297159648,-3.6481723904564065,-3.615791809316333,-3.5834112281762582,-3.5510306470361845,-3.518650065896111,-3.4862694847560363,-3.4538889036159626,-3.421508322475889,-3.3891277413358143,-3.3567471601957406,-3.324366579055667,-3.2919859979155923,-3.2596054167755186,-3.227224835635444,-3.1948442544953704,-3.1624636733552967,-3.130083092215222,-3.0977025110751484,-3.0653219299350747,-3.032941348795,-3.0005607676549264,-2.9681801865148527,-2.935799605374778,-2.9034190242347044,-2.8710384430946307,-2.838657861954556,-2.8062772808144825,-2.8062772808144825,-2.773896699674408,-2.741516118534334,-2.7091355373942605,-2.676754956254186,-2.644374375114112,-2.6119937939740385,-2.579613212833964,-2.5472326316938902,-2.5148520505538166,-2.482471469413742,-2.4500908882736683,-2.4177103071335937,-2.38532972599352,-2.3529491448534463,-2.3205685637133717,-2.288187982573298,-2.2558074014332243,-2.2234268202931498,-2.191046239153076,-2.1586656580130024,-2.126285076872928,-2.093904495732854,-2.093904495732854,-2.0615239145927804,-2.029143333452706,-1.9967627523126321,-1.9643821711725575,-1.9320015900324838,-1.8996210088924101,-1.8672404277523356,-1.8348598466122619,-1.8024792654721882,-1.7700986843321136,-1.73771810319204,-1.7053375220519662,-1.6729569409118916,-1.640576359771818,-1.6081957786317442,-1.5758151974916697,-1.543434616351596,-1.5110540352115214,-1.4786734540714477,-1.446292872931374,-1.4139122917912994,-1.3815317106512257,-1.3815317106512257,-1.349151129511152,-1.3167705483710774,-1.2843899672310037,-1.25200938609093,-1.2196288049508555,-1.1872482238107818,-1.1548676426707072,-1.1224870615306335,-1.0901064803905598,-1.0577258992504852,-1.0253453181104115,-0.9929647369703378,-0.9605841558302632,-0.9282035746901895,-0.8958229935501159,-0.8634424124100413,-0.8310618312699667,-0.7986812501298939,-0.7663006689898193,-0.7339200878497447,-0.7015395067096719,-0.6691589255695973,-0.6367783444295227,-0.6043977632894499,-0.5720171821493754,-0.5396366010093008,-0.507256019869228,-0.4748754387291534,-0.4424948575890788,-0.410114276449006,-0.3777336953089314,-0.34535311416885683,-0.31297253302878403,-0.28059195188870945,-0.24821137074863486,-0.21583078960856206,-0.18345020846848747,-0.1510696273284129,-0.11868904618833831,-0.0863084650482655,-0.05392788390819092,-0.02154730276811634,0.010833278371956467,0.04321385951203105,0.07559444065210563,0.10797502179217844,0.14035560293225302,0.1727361840723276,0.2051167652124004,0.237497346352475,0.2698779274925496,0.3022585086326224,0.33463908977269696,0.36701967091277155,0.39940025205284435,0.43178083319291893,0.4641614143329935,0.4965419954730663,0.5289225766131409,0.5613031577532155,0.5936837388932883,0.6260643200333629,0.6584449011734375,0.690825482313512,0.7232060634535848,0.7555866445936594,0.787967225733734,0.8203478068738068,0.8527283880138814,0.885108969153956,0.9174895502940288,0.9498701314341034,0.982250712574178,1.0146312937142508,1.0470118748543253,1.0793924559944,1.1117730371344727,1.1441536182745473,1.176534199414622,1.2089147805546947,1.2412953616947693,1.2736759428348439,1.3060565239749167,1.3384371051149913,1.3708176862550658,1.4031982673951386,1.4355788485352132,1.4679594296752878,1.5003400108153624,1.5327205919554352,1.5651011730955098,1.5974817542355844,1.6298623353756572,1.6622429165157317,1.6946234976558063,1.7270040787958791,1.7593846599359537,1.7917652410760283,1.824145822216101,1.8565264033561757,1.8889069844962503,1.921287565636323,1.9536681467763977,1.9860487279164722,2.018429309056545,2.0508098901966196,2.083190471336694,2.115571052476767,2.1479516336168416,2.180332214756916,2.212712795896989,2.2450933770370636,2.277473958177138,2.309854539317211,2.3422351204572855,2.37461570159736,2.4069962827374347,2.4393768638775075,2.471757445017582,2.5041380261576567,2.5365186072977295,2.568899188437804,2.6012797695778787,2.6336603507179515,2.666040931858026,2.6984215129981006,2.7308020941381734,2.763182675278248,2.7955632564183226,2.8279438375583954,2.86032441869847,2.8927049998385446,2.9250855809786174,2.957466162118692,2.9898467432587665,3.0222273243988393,3.054607905538914,3.0869884866789885,3.1193690678190613,3.151749648959136,3.1841302300992105,3.216510811239285,3.248891392379358,3.2812719735194324,3.313652554659507,3.34603313579958,3.3784137169396544,3.410794298079729,3.443174879219802,3.4755554603598764,3.507936041499951,3.540316622640024,3.5726972037800984,3.605077784920173,3.6374583660602458,3.6698389472003203,3.702219528340395,3.7346001094804677,3.7669806906205423,3.799361271760617,3.8317418529006897,3.8641224340407643,3.896503015180839,3.9288835963209117,3.9612641774609862,3.993644758601061,4.026025339741135,4.058405920881208,4.090786502021283,4.123167083161357,4.15554766430143,4.187928245441505,4.220308826581579,4.252689407721652,4.285069988861727,4.317450570001801,4.349831151141874,4.382211732281949,4.414592313422023,4.446972894562096,4.479353475702171,4.511734056842245,4.544114637982318,4.576495219122393,4.608875800262467,4.64125638140254,4.673636962542615,4.706017543682689,4.738398124822762,4.770778705962837,4.803159287102911,4.835539868242986,4.867920449383059,4.900301030523133,4.932681611663208,4.9650621928032805,4.997442773943355,5.02982335508343,5.0622039362235025,5.094584517363577,5.126965098503652,5.1593456796437245,5.191726260783799,5.224106841923874,5.2564874230639465,5.288868004204021,5.321248585344096,5.353629166484168,5.386009747624243,5.418390328764318,5.45077090990439,5.483151491044465,5.51553207218454,5.547912653324612,5.580293234464687,5.6126738156047615,5.645054396744834,5.677434977884909,5.7098155590249835,5.742196140165058,5.774576721305131,5.8069573024452055,5.83933788358528,5.871718464725353,5.904099045865427,5.936479627005502,5.968860208145575,6.001240789285649,6.033621370425724,6.066001951565797,6.098382532705871,6.130763113845946,6.163143694986019,6.195524276126093,6.227904857266168,6.260285438406241,6.292666019546315,6.32504660068639,6.357427181826463,6.389807762966537,6.422188344106612,6.454568925246685,6.486949506386759,6.519330087526834,6.551710668666908,6.584091249806981,6.616471830947056,6.64885241208713,6.681232993227203,6.713613574367278,6.745994155507352,6.778374736647425,6.8107553177875,6.843135898927574,6.875516480067647,6.907897061207722,6.940277642347796,6.972658223487869,7.005038804627944,7.037419385768018,7.069799966908091,7.102180548048166,7.13456112918824,7.166941710328315,7.199322291468389,7.2317028726084605,7.264083453748535,7.29646403488861,7.328844616028684,7.361225197168759,7.393605778308833,7.425986359448904,7.458366940588979,7.490747521729054,7.523128102869128,7.555508684009203,7.587889265149277,7.620269846289348,7.652650427429423,7.6850310085694975,-8.861445954008323,-8.829065372868248,-8.796684791728175,-8.7643042105881,-8.731923629448026,-8.699543048307953,-8.667162467167879,-8.634781886027804,-8.602401304887731,-8.570020723747657,-8.537640142607582,-8.50525956146751,-8.472878980327435,-8.44049839918736,-8.408117818047288,-8.375737236907213,-8.343356655767138,-8.310976074627064,-8.278595493486991,-8.246214912346916,-8.213834331206842,-8.181453750066769,-8.149073168926694,-8.11669258778662,-8.084312006646547,-8.051931425506472,-8.019550844366398,-7.987170263226324,-7.9547896820862505,-7.922409100946177,-7.890028519806102,-7.8576479386660285,-7.825267357525954,-7.79288677638588,-7.7605061952458065,-7.728125614105732,-7.695745032965658,-7.663364451825585,-7.63098387068551,-7.598603289545436,-7.566222708405363,-7.533842127265288,-7.501461546125214,-7.469080964985141,-7.436700383845066,-7.404319802704992,-7.371939221564919,-7.339558640424844,-7.30717805928477,-7.274797478144697,-7.242416897004622,-7.210036315864548,-7.177655734724474,-7.1452751535844,-7.1128945724443255,-7.080513991304252,-7.048133410164178,-7.015752829024104,-6.98337224788403,-6.950991666743956,-6.918611085603882,-6.886230504463808,-6.853849923323734,-6.82146934218366,-6.789088761043586,-6.756708179903512,-6.724327598763438,-6.691947017623364,-6.65956643648329,-6.627185855343216,-6.594805274203142,-6.562424693063068,-6.530044111922994,-6.49766353078292,-6.465282949642846,-6.432902368502772,-6.400521787362697,-6.368141206222624,-6.33576062508255,-6.303380043942475,-6.2709994628024015,-6.238618881662328,-6.206238300522253,-6.1738577193821795,-6.141477138242106,-6.109096557102031,-6.076715975961958,-6.044335394821884,-6.011954813681809,-5.979574232541736,-5.947193651401662,-5.914813070261587,-5.882432489121514,-5.85005190798144,-5.817671326841365,-5.785290745701292,-5.752910164561218,-5.720529583421143,-5.68814900228107,-5.655768421140996,-5.623387840000921,-5.591007258860847,-5.558626677720774,-5.526246096580699,-5.493865515440625,-5.461484934300552,-5.4291043531604775,-5.396723772020403,-5.364343190880329,-5.3319626097402555,-5.299582028600181,-5.267201447460107,-5.2348208663200335,-5.202440285179959,-5.170059704039885,-5.1376791228998115,-5.105298541759737,-5.072917960619663,-5.04053737947959,-5.008156798339515,-4.975776217199441,-4.943395636059368,-4.911015054919293,-4.878634473779219,-4.846253892639145,-4.813873311499071,-4.781492730358997,-4.749112149218923,-4.716731568078849,-4.684350986938775,-4.651970405798701,-4.619589824658627,-4.587209243518553,-4.554828662378479,-4.522448081238405,-4.4900675000983306,-4.457686918958257,-4.425306337818183,-4.392925756678109,-4.360545175538035,-4.328164594397961,-4.295784013257887,-4.263403432117813,-4.231022850977739,-4.198642269837665,-4.166261688697591,-4.133881107557517,-4.101500526417443,-4.069119945277369,-4.036739364137294,-4.004358782997221,-3.971978201857147,-3.9395976207170724,-3.9072170395769987,-3.874836458436925,-3.8424558772968505,-3.8100752961567768,-3.777694715016703,-3.7453141338766285,-3.712933552736555,-3.68055297159648,-3.6481723904564065,-3.615791809316333,-3.5834112281762582,-3.5510306470361845,-3.518650065896111,-3.4862694847560363,-3.4538889036159626,-3.421508322475889,-3.3891277413358143,-3.3567471601957406,-3.324366579055667,-3.2919859979155923,-3.2596054167755186,-3.227224835635444,-3.1948442544953704,-3.1624636733552967,-3.130083092215222,-3.0977025110751484,-3.0653219299350747,-3.032941348795,-3.0005607676549264,-2.9681801865148527,-2.935799605374778,-2.9034190242347044,-2.8710384430946307,-2.838657861954556,-2.8062772808144825,-2.773896699674408,-2.741516118534334,-2.7091355373942605,-2.676754956254186,-2.644374375114112,-2.6119937939740385,-2.579613212833964,-2.5472326316938902,-2.5148520505538166,-2.482471469413742,-2.4500908882736683,-2.4177103071335937,-2.38532972599352,-2.3529491448534463,-2.3205685637133717,-2.288187982573298,-2.2558074014332243,-2.2234268202931498,-2.191046239153076,-2.1586656580130024,-2.126285076872928,-2.093904495732854,-2.0615239145927804,-2.029143333452706,-1.9967627523126321,-1.9643821711725575,-1.9643821711725575,-1.9320015900324838,-1.8996210088924101,-1.8672404277523356,-1.8348598466122619,-1.8024792654721882,-1.7700986843321136,-1.73771810319204,-1.7053375220519662,-1.6729569409118916,-1.640576359771818,-1.6081957786317442,-1.5758151974916697,-1.543434616351596,-1.5110540352115214,-1.4786734540714477,-1.446292872931374,-1.4139122917912994,-1.3815317106512257,-1.349151129511152,-1.3167705483710774,-1.2843899672310037,-1.25200938609093,-1.2196288049508555,-1.1872482238107818,-1.1548676426707072,-1.1224870615306335,-1.0901064803905598,-1.0577258992504852,-1.0253453181104115,-0.9929647369703378,-0.9605841558302632,-0.9282035746901895,-0.8958229935501159,-0.8634424124100413,-0.8310618312699667,-0.7986812501298939,-0.7663006689898193,-0.7339200878497447,-0.7015395067096719,-0.6691589255695973,-0.6367783444295227,-0.6043977632894499,-0.5720171821493754,-0.5396366010093008,-0.507256019869228,-0.4748754387291534,-0.4424948575890788,-0.410114276449006,-0.3777336953089314,-0.34535311416885683,-0.31297253302878403,-0.28059195188870945,-0.24821137074863486,-0.21583078960856206,-0.18345020846848747,-0.1510696273284129,-0.11868904618833831,-0.0863084650482655,-0.05392788390819092,-0.02154730276811634,0.010833278371956467,0.04321385951203105,0.07559444065210563,0.10797502179217844,0.14035560293225302,0.1727361840723276,0.1727361840723276,0.2051167652124004,0.237497346352475,0.2698779274925496,0.3022585086326224,0.33463908977269696,0.36701967091277155,0.39940025205284435,0.43178083319291893,0.4641614143329935,0.4965419954730663,0.5289225766131409,0.5613031577532155,0.5936837388932883,0.6260643200333629,0.6584449011734375,0.690825482313512,0.7232060634535848,0.7555866445936594,0.787967225733734,0.8203478068738068,0.8527283880138814,0.885108969153956,0.9174895502940288,0.9498701314341034,0.982250712574178,1.0146312937142508,1.0470118748543253,1.0793924559944,1.1117730371344727,1.1441536182745473,1.176534199414622,1.2089147805546947,1.2412953616947693,1.2736759428348439,1.3060565239749167,1.3384371051149913,1.3708176862550658,1.4031982673951386,1.4355788485352132,1.4679594296752878,1.5003400108153624,1.5327205919554352,1.5651011730955098,1.5974817542355844,1.6298623353756572,1.6622429165157317,1.6946234976558063,1.7270040787958791,1.7593846599359537,1.7917652410760283,1.824145822216101,1.8565264033561757,1.8889069844962503,1.921287565636323,1.9536681467763977,1.9860487279164722,2.018429309056545,2.0508098901966196,2.083190471336694,2.115571052476767,2.1479516336168416,2.180332214756916,2.212712795896989,2.2450933770370636,2.277473958177138,2.309854539317211,2.3422351204572855,2.3422351204572855,2.37461570159736,2.4069962827374347,2.4393768638775075,2.471757445017582,2.5041380261576567,2.5365186072977295,2.568899188437804,2.6012797695778787,2.6336603507179515,2.666040931858026,2.6984215129981006,2.7308020941381734,2.763182675278248,2.7955632564183226,2.8279438375583954,2.86032441869847,2.8927049998385446,2.9250855809786174,2.957466162118692,2.9898467432587665,3.0222273243988393,3.054607905538914,3.0869884866789885,3.1193690678190613,3.151749648959136,3.1841302300992105,3.216510811239285,3.248891392379358,3.2812719735194324,3.313652554659507,3.34603313579958,3.3784137169396544,3.410794298079729,3.443174879219802,3.4755554603598764,3.507936041499951,3.540316622640024,3.5726972037800984,3.605077784920173,3.6374583660602458,3.6698389472003203,3.702219528340395,3.7346001094804677,3.7669806906205423,3.799361271760617,3.8317418529006897,3.8641224340407643,3.896503015180839,3.9288835963209117,3.9612641774609862,3.993644758601061,4.026025339741135,4.058405920881208,4.090786502021283,4.123167083161357,4.15554766430143,4.187928245441505,4.220308826581579,4.252689407721652,4.285069988861727,4.317450570001801,4.349831151141874,4.382211732281949,4.414592313422023,4.446972894562096,4.479353475702171,4.511734056842245,4.544114637982318,4.576495219122393,4.608875800262467,4.64125638140254,4.673636962542615,4.706017543682689,4.738398124822762,4.770778705962837,4.803159287102911,4.835539868242986,4.867920449383059,4.900301030523133,4.932681611663208,4.9650621928032805,4.997442773943355,5.02982335508343,5.0622039362235025,5.094584517363577,5.126965098503652,5.1593456796437245,5.191726260783799,5.224106841923874,5.2564874230639465,5.288868004204021,5.321248585344096,5.353629166484168,5.386009747624243,5.418390328764318,5.45077090990439,5.483151491044465,5.51553207218454,5.547912653324612,5.580293234464687,5.6126738156047615,5.645054396744834,5.677434977884909,5.7098155590249835,5.742196140165058,5.774576721305131,5.8069573024452055,5.83933788358528,5.871718464725353,5.904099045865427,5.936479627005502,5.968860208145575,6.001240789285649,6.033621370425724,6.066001951565797,6.098382532705871,6.130763113845946,6.163143694986019,6.195524276126093,6.227904857266168,6.260285438406241,6.292666019546315,6.32504660068639,6.357427181826463,6.389807762966537,6.422188344106612,6.454568925246685,6.486949506386759,6.519330087526834,6.551710668666908,6.584091249806981,6.616471830947056,6.64885241208713,6.681232993227203,6.713613574367278,6.745994155507352,6.778374736647425,6.8107553177875,6.843135898927574,6.875516480067647,6.907897061207722,6.940277642347796,6.972658223487869,7.005038804627944,7.037419385768018,7.069799966908091,7.102180548048166,7.13456112918824,7.166941710328315,7.199322291468389,7.2317028726084605,7.264083453748535,7.29646403488861,7.328844616028684,7.361225197168759,7.393605778308833,7.425986359448904,7.458366940588979,7.490747521729054,7.523128102869128,7.555508684009203,7.587889265149277,7.620269846289348,7.652650427429423,7.6850310085694975],\n", "\"y\":[6.19056427104104E-42,2.482645350256684E-41,9.849192693938852E-41,3.86534370833207E-40,1.5006422428205704E-39,5.763254781761083E-39,2.189576433770811E-38,8.229132973292215E-38,3.0594951669896293E-37,1.1252453567809397E-36,4.093987405483742E-36,1.4734915202622802E-35,5.246270748031679E-35,1.8478032936558996E-34,6.438175541918578E-34,2.219075080193563E-33,7.566296470361619E-33,2.5520957352993E-32,8.515553819671603E-32,2.8108084298976643E-31,9.178085500701114E-31,2.9646644714482154E-30,9.473308879119774E-30,2.994543691950216E-29,9.364024309184593E-29,2.896659553683704E-28,8.864118485921908E-28,2.683347773901278E-27,8.035665188316608E-27,2.380511701588254E-26,6.976258933384061E-26,2.0224547975564278E-25,5.8001497410492025E-25,1.6455229300327218E-24,4.61820530205163E-24,1.2821750578453305E-23,3.521489895366283E-23,9.567772926171513E-23,2.5715847224129116E-22,6.837489460150204E-22,1.7984512410346154E-21,4.679583061088763E-21,1.2045435246316329E-20,3.067220876014665E-20,7.726364965265796E-20,1.92536654184686E-19,4.746353763597281E-19,1.157486001326838E-18,2.7924207393452145E-18,6.6643218887233455E-18,1.5734090771095217E-17,3.6748407247472956E-17,8.490772794204833E-17,1.9407448192606782E-16,4.388366569938594E-16,9.816380469924832E-16,2.1722745477436528E-15,4.75547350172287E-15,1.0298867471417812E-14,2.206494307961936E-14,4.6766496925681836E-14,9.805882122939779E-14,2.0340399456754728E-13,4.174019963924221E-13,8.473700925806207E-13,1.701832130220892E-12,3.3813239475357977E-12,6.646375964843835E-12,1.2924470942863257E-11,2.4864067466090245E-11,4.7322207864373405E-11,8.910318914559742E-11,1.6598125604320585E-10,3.0588955061170237E-10,5.577151112967127E-10,1.0060159721345874E-9,1.795331692163078E-9,3.16982067211865E-9,5.537042311135224E-9,9.569236570464928E-9,1.636199915752884E-8,2.7679521459482316E-8,4.6328435315245214E-8,7.671979663636363E-8,1.257019844811274E-7,2.0377741840438752E-7,3.268539921596806E-7,5.187285815318305E-7,8.145547792537647E-7,1.2656088560819478E-6,1.9457338891332966E-6,2.959906848367978E-6,4.4554292242074924E-6,6.636277346124477E-6,9.781149344259273E-6,1.4265694082777486E-5,2.0589283409921835E-5,2.9406472125911343E-5,4.156296138592655E-5,5.8135427248100564E-5,8.047399250369277E-5,1.1024541648819276E-4,1.4947428244407513E-4,2.0057862558215566E-4,2.6639564194020076E-4,3.5019244683532263E-4,4.556564301204548E-4,5.868597128993827E-4,7.481926748898487E-4,9.442626035479399E-4,0.0011797552886822645,0.0014592598659015298,0.0017870603400487394,0.002166900848703118,0.002601735615480635,0.003093478365293956,0.0036427693318277178,0.004248780446249883,0.004909080425487595,0.005619580903798902,0.006374582207804439,0.007166932757000668,0.007988309472291759,0.008829618308221786,0.009681504624074156,0.01053495330126895,0.01138194916550488,0.012216160311211303,0.013033601253222483,0.01383323021719471,0.01461743587206751,0.01539237364496596,0.016168120321238055,0.016958627419680607,0.017781467985383277,0.018657386801071766,0.019609679222866168,0.020663437465636397,0.021844713836557204,0.02317965700328967,0.024693679100726968,0.0264107080033822,0.028352570618209325,0.030538540315556122,0.03298506582588647,0.035705681671160054,0.038711083269645494,0.04200933506638133,0.04560616901998334,0.04950532474631165,0.05370888224549766,0.058217543418281205,0.06303082881342906,0.06814716991153989,0.07356389293263445,0.0792771055912178,0.08528151136649414,0.09157018496318614,0.09813434652419456,0.10496317037863863,0.11204365705509424,0.11936058614058737,0.12689655413738227,0.13463208795334483,0.14254581329663138,0.15061464997123442,0.1588140042148789,0.16711793227514601,0.1754992589320551,0.18392964829166658,0.19237963981790446,0.20081867773090337,0.2092151740059132,0.21753665199810066,0.22575001759079638,0.2338219970168417,0.24171976546050036,0.24941176954543098,0.25686872204194566,0.2640647213642116,0.2709784247095207,0.27759418494428867,0.28390305004365524,0.2899035217927733,0.29560197838615954,0.30101268333514314,0.306157329539219,0.31106410044444394,0.31106410044444394,0.31576626716754524,0.32030037814377676,0.3247041329496426,0.3290140612976515,0.3332631490692664,0.33747856359278616,0.34167962900617366,0.34587618928966857,0.3500674722678,0.35424153441525297,0.3583753263572641,0.3624353758597237,0.36637904251375375,0.3701562598795332,0.37371164984307087,0.376986872936541,0.3799230689842308,0.38246324511735613,0.3845544821958763,0.3861498540909832,0.38720998429334197,0.38770419748351787,0.38770419748351787,0.38761125638661587,0.3869197030143032,0.3856278455007173,0.3837434453805893,0.3812831647652456,0.3782718291450655,0.37474155134558884,0.3707307482299483,0.36628306728114673,0.36144622839815127,0.3562707797585212,0.35080876713621445,0.34511232405657466,0.3392322046908952,0.3332163002389934,0.32710819955026055,0.32094587221941373,0.3147605637485997,0.3085759946079793,0.30240794629043993,0.2962642973418246,0.29014554204490156,0.29014554204490156,0.28404578662074403,0.2779541763331002,0.2718566662712057,0.2657380134756955,0.2595838425967115,0.25338262455043487,0.24712740938898586,0.2408171709479722,0.23445765033974278,0.22806162520467346,0.22164857799693466,0.21524378509661043,0.20887689478135268,0.2025801020371065,0.1963860586015186,0.1903256753227326,0.18442597985829298,0.17870818607572855,0.17318611343186455,0.1678650671196165,0.16274125547034068,0.1578017828752435,0.15302521726348284,0.14838269367869555,0.14383948209589645,0.1393569202017419,0.1348945917652682,0.13041261923940628,0.12587393560824273,0.12124640499748784,0.11650467353837206,0.11163165040612054,0.10661954254894188,0.10147039387918419,0.09619610897845965,0.09081797098038333,0.08536569156878165,0.07987605640046466,0.0743912503474343,0.06895696262679397,0.06362038133782343,0.058428189708147886,0.05342467240783136,0.04865002995968118,0.044138983271983755,0.03991972970196803,0.03601328816254287,0.03243324515754211,0.029185887938545506,0.02627068690795926,0.023681068553544172,0.021405404003007146,0.01942812785268709,0.01773089798304571,0.016293709895918138,0.015095888458708153,0.014116895068938113,0.013336907928161676,0.012737155704303352,0.012300008451556347,0.01200885220698847,0.011847793206060518,0.011801252406940401,0.011853519649063384,0.01198833851151788,0.012188587644601312,0.012436112563841426,0.012711744800053191,0.012995524604918396,0.013267121199145282,0.013506423055613241,0.013694252092716623,0.013813141767978786,0.01384811126021708,0.013787366914335221,0.013622867881985388,0.013350704701651353,0.012971256084455225,0.012489108613477398,0.011912744387017138,0.011254020792591175,0.010527482758731277,0.009749559576179935,0.00893770483453924,0.008109538918793392,0.007282049181820239,0.006470894196302216,0.00568984661058172,0.004950395512666738,0.0042615152980601196,0.003629595159357881,0.0030585125245346533,0.0025498257768826037,0.0021030567263227136,0.0017160315432857814,0.001385249883647703,0.0011062551776557727,8.739838542539093E-4,6.830769204741093E-4,5.281431586107734E-4,4.0396869564953417E-4,3.0567243834344655E-4,2.2881060839308146E-4,1.694362586306666E-4,1.2412123130442685E-4,8.994865512485587E-5,6.44839487513672E-5,4.5731610606201655E-5,3.208403229949084E-5,2.226735767257459E-5,1.5288169433501632E-5,1.0383629019311087E-5,6.976692163379903E-6,4.637207759306605E-6,3.0490885728988894E-6,1.983306960770325E-6,1.2761924529137365E-6,8.123602991316104E-7,5.115492418357446E-7,3.1866355442198816E-7,1.9637378446423773E-7,1.197128468734573E-7,7.21945010560393E-8,4.306987098421199E-8,2.5418451857623044E-8,1.48398898919854E-8,8.570739702075792E-9,4.8967954643739565E-9,2.767653030064428E-9,1.5474525201541914E-9,8.559118166434634E-10,4.683243112890064E-10,2.534955655431324E-10,1.3573754934994156E-10,7.190111206605778E-11,3.7677074068610286E-11,1.9531009014879926E-11,1.0015626817782797E-11,5.080863445294243E-12,2.5497807512970827E-12,1.2658261778238269E-12,6.216575591276496E-13,3.020190023476409E-13,1.4515206353160236E-13,6.901095668443537E-14,3.2457776227122216E-14,1.5101682929231903E-14,6.950848098250974E-15,3.164871660702543E-15,1.425542787459285E-15,6.351996499526219E-16,2.7999229095506564E-16,1.2209214408831573E-16,5.2666587694769985E-17,2.2474417628916257E-17,9.487406508696697E-18,3.961980735479788E-18,1.6367524085196982E-18,6.688972150134695E-19,2.704217056342651E-19,1.0815073103325639E-19,4.278811097212263E-20,1.6746440115857934E-20,6.4837701672292464E-21,2.4833528843718714E-21,9.409249122543312E-22,3.5267704422263E-22,1.3076909036309824E-22,4.796657273522333E-23,1.7405156810466816E-23,6.247738556194502E-24,2.218571351664452E-24,7.793447051261751E-25,2.708266532644828E-25,9.310196170594238E-26,3.166152765244021E-26,1.0651493175954614E-26,3.544824227322776E-27,1.167036637403957E-27,3.8008421883449634E-28,1.2245618847660597E-28,3.9028977937657624E-29,1.2305496737084992E-29,3.8381031310344905E-30,1.1842397630594198E-30,3.6146656806407322E-31,1.0914456606083432E-31,3.260179982306414E-32,9.633553163301643E-33,2.8160273790125456E-33,8.143154763355081E-34,2.329452904112793E-34,6.592051606302185E-35,1.8454091498583482E-35,5.110579350604452E-36,1.4000804318249492E-36,3.794383364265936E-37,1.0172666094982148E-37,2.697948901020971E-38,7.07844703440657E-39,1.837162525686666E-39,4.7169631354542E-40,1.1980713605989676E-40,3.0102889172766543E-41,7.482366020722894E-42,1.839818504979807E-42,4.47523935558656E-43,1.0768687978903544E-43,2.5633891761041156E-44,6.036309702607764E-45,1.4061565822838473E-45,3.240418064753189E-46,7.387093274781663E-47,1.6659090445550332E-47,3.7165000411130966E-48,8.202044812802136E-49,1.790668776223015E-49,3.8673501836001934E-50,8.26260208557245E-51,1.7463257870401427E-51,3.6512264774136E-52,7.551919303481108E-53,1.5451866943505315E-53,3.1275885649044086E-54,6.262435965672035E-55,1.2404577921296199E-55,2.4306682249210574E-56,4.7116645344818023E-57,9.034996988722622E-58,1.7139045128838273E-58,3.2162528123296185E-59,5.970609517971975E-60,1.0964581981158693E-60,1.991913138448924E-61,3.5797574946898507E-62,6.364168920162606E-63,1.119269467647782E-63,1.947298231155491E-64,3.351468350094705E-65,5.706142364576912E-66,9.610697261658554E-67,1.6012973760156532E-67,2.639331092729742E-68,4.303487340932641E-69,6.941477909405391E-70,1.1076131644802722E-70,1.7483525258972555E-71,2.730075274340819E-72,4.2172072506542866E-73,6.444362478249858E-74,9.741810013133755E-75,1.4568136995622355E-75,2.15512780650298E-76,3.153891022141113E-77,4.565884913989755E-78,6.538947494059093E-79,9.263931556650527E-80,1.2983369288489342E-80,1.800047863581032E-81,2.4687962773487448E-82,3.349584963377227E-83,4.495740890273944E-84,5.969199091105232E-85,7.840348339523759E-86,1.0187301088266412E-86,1.3094454212915347E-87,1.6650225624090412E-88,2.0943887334795516E-89,2.606146936674131E-90,3.208078038350146E-91,3.906567728858597E-92,4.705981181533154E-93,5.608017944937934E-94,6.611088485574921E-95,7.709760703245548E-96,8.894328526697188E-97,1.0150554353611949E-97,1.145963190397064E-98,1.2798405718072046E-99,1.4139868300239737E-100,0.0039054366098982634,0.003942798502698805,0.003976495008619606,0.004006458933938421,0.00403263824457835,0.004054996721549471,0.0040735145605718,0.004088188912863764,0.0040990343644732785,0.004106083351934183,0.004109386512445703,0.0041090129671910725,0.004105050536829537,0.0040976058886085685,0.004086804614945989,0.004072791243720394,0.0040557291808784824,0.0040358005863160564,0.004013206184312112,0.003988165010088879,0.003960914094333463,0.003931708087745251,0.003900818827867275,0.0038685348506172484,0.0038351608490548366,0.003801017082006293,0.0037664387352160733,0.003731775237708949,0.0036973895360276187,0.003663657328961763,0.0036309662653081,0.003599715107100815,0.0035703128606313058,0.003543177877439901,0.003518736927314525,0.003497424245177033,0.0034796805535819543,0.003465952062399735,0.0034566894471124094,0.0034523468070184705,0.003453380604531103,0.0034602485866635736,0.0034734086897321276,0.003493317928274217,0.00352043126918067,0.0035552004920785217,0.0035980730370774516,0.0036494908411095995,0.003709889164249767,0.0037796954076011907,0.0038593279245697446,0.003949194827625197,0.004049692792959157,0.004161205865792082,0.004284104269452459,0.004418743221743919,0.0045654617625260335,0.004724581596854219,0.004896405958447335,0.00508121849866996,0.005279282206622193,0.005490838366314368,0.005716105557259356,0.005955278705131187,0.006208528189408235,0.00647599901513208,0.006757810056062876,0.007054053376588187,0.007364793639741165,0.007690067608594696,0.008029883748119032,0.008384221934314127,0.008753033277051604,0.009136240062582995,0.009533735821088726,0.009945385523956874,0.010371025914694475,0.010810465976488916,0.011263487538459243,0.011729846021571877,0.012209271324052562,0.012701468844912805,0.013206120642938596,0.013722886727173004,0.014251406473576122,0.014791300161180685,0.015342170619696777,0.01590360497916967,0.01647517651097954,0.017056446548209515,0.017646966472215406,0.01824627975112776,0.01885392401502046,0.01946943315160956,0.02009233940561634,0.02072217546435851,0.021358476511734125,0.022000782232551263,0.022648638749139964,0.023301600472375176,0.023959231849642337,0.024621108992900424,0.025286821170838567,0.025955972150183415,0.026628181372489255,0.027303084954226814,0.02798033649966872,0.028659607717934885,0.029340588837598713,0.030022988814439374,0.03070653533024197,0.031390974582964686,0.0320760708710907,0.0327616059775273,0.03344737836097907,0.034133202165274254,0.034818906059625405,0.03550433192523122,0.03618933340593514,0.03687377434281763,0.03755752711458051,0.03824047090734783,0.03892248993903351,0.0396034716646792,0.04028330499012176,0.04096187852198965,0.04163907888232671,0.04231478911608975,0.04298888721935078,0.04366124481524949,0.04433172600358335,0.04500018640839574,0.045666472446040274,0.04633042083396067,0.04699185835786851,0.047650601912129054,0.048306458825020666,0.048959227477141966,0.04960869821763602,0.05025465457913149,0.05089687478840191,0.051535133565764626,0.05216920420223344,0.05279886089944327,0.05342388135344436,0.05404404955965838,0.05465915881265681,0.055269014871007924,0.05587343925429655,0.056472272636587065,0.05706537829812666,0.057652645595003334,0.058233993404821674,0.05880937350526127,0.05937877384167214,0.059942221639643405,0.060499786318779794,0.061051582164737876,0.06159777071790126,0.062138562838918505,0.06267422041366677,0.06320505766301493,0.06373144202603223,0.06425379458896549,0.06477259003637945,0.06528835610525992,0.06580167252757486,0.06631316945173156,0.06682352533849709,0.06733346433220828,0.06784375311343405,0.06835519724460129,0.06886863702539993,0.06938494287998333,0.06990501030301964,0.07042975439646555,0.07096010403348958,0.07149699569019012,0.07204136698961995,0.07259415000607095,0.073156264380579,0.07372861030112501,0.07431206140303018,0.07490745764652887,0.07551559822945669,0.07613723459338771,0.07677306358140987,0.07742372080502552,0.07808977427643606,0.078771718360703,0.07946996810003139,0.08018485395967528,0.08091661704179569,0.081665404810002,0.0824312673633513,0.08321415429427866,0.08401391216035582,0.08483028259494414,0.08566290107679675,0.08651129637349825,0.08737489066837079,0.08825300037517211,0.08914483763960172,0.09004951252137737,0.09096603584547584,0.09189332270611163,0.09283019660217469,0.09377539417821829,0.09472757054071507,0.09568530511520279,0.09664710800616824,0.09761142681808085,0.09857665389291126,0.09954113391678172,0.09954113391678172,0.10050317184609375,0.10146104110158805,0.10241299197731145,0.10335726021040646,0.10429207565698817,0.10521567101914396,0.1061262905682637,0.10702219881047234,0.10790168904089914,0.10876309173482707,0.10960478272544417,0.1104251911199193,0.11122280690782566,0.11199618821853809,0.11274396818707123,0.11346486139091252,0.11415766982368401,0.11482128837493119,0.11545470978893142,0.11605702907914589,0.11662744737872817,0.11716527521137106,0.11766993517065769,0.1181409639999546,0.11857801406874854,0.11898085424510835,0.11934937016766696,0.11968356392411222,0.11998355314664531,0.120249569538171,0.12048195684612598,0.1206811683037981,0.120847763561724,0.12098240513427903,0.12108585438885364,0.12115896710705742,0.12120268864919387,0.12121804875478745,0.12120615601323635,0.12116819203970101,0.12110540539211206,0.12101910526571748,0.12091065500187105,0.12078146544780947,0.12063298820399825,0.12046670879520947,0.1202841398009166,0.12008681397977457,0.11987627742199379,0.11965408276227248,0.11942178248466502,0.11918092234934358,0.11893303496966758,0.11867963356633845,0.1184222059236763,0.11816220857126539,0.11790106121234264,0.11764014141840493,0.11738077960757488,0.11712425432230715,0.1168717878200635,0.11662454198862529,0.11638361459577155,0.11615003588114049,0.11592476549620102,0.11570868979642406,0.11570868979642406,0.11550261948794427,0.11530728762926304,0.11512334798685825,0.11495137374195043,0.11479185654412383,0.11464520590602617,0.11451174893197096,0.11439173037194983,0.11428531299132874,0.11419257824535618,0.11411352724655728,0.11404808201212853,0.11399608697757975,0.11395731076211421,0.11393144817056483,0.11391812241615588,0.11391688754790558,0.11392723106613793,0.11394857670934433,0.11398028739550646,0.11402166830098333,0.11407197006015087,0.1141303920691983,0.11419608587778214,0.1142681586526553,0.11434567669789486,0.11442766901695131,0.11451313090243088,0.11460102754028034,0.1146902976158849,0.11477985691047461,0.11486860187718388,0.11495541318708137,0.11503915923649698,0.11511869960798762,0.11519288847829799,0.11526057796767657,0.11532062142587671,0.11537187665110736,0.11541320903907151,0.11544349466004272,0.11546162326265721,0.11546650120374351,0.11545705430405336,0.11543223063019113,0.115391003203366,0.11533237263579682,0.11525536969568222,0.1151590578016231,0.11504253544722648,0.11490493855635689,0.114745442769127,0.11456326565824286,0.11435766887475207,0.11412796022159999,0.11387349565268207,0.1135936811943223,0.11328797478530576,0.11295588803077489,0.11259698786448531,0.11221089811311083,0.11179730095552759,0.11135593826928972,0.11088661285587338,0.11038918953571109,0.10986359610358706,0.10930982413463497,0.10930982413463497,0.10872792963097709,0.10811803349898051,0.10748032184719819,0.10681504609530255,0.10612252288472948,0.10540313378230814,0.10465732476888906,0.10388560550585556,0.10308854837344866,0.10226678727600697,0.10142101621053859,0.10055198759647146,0.09966051036596568,0.09874744781579801,0.09781371522352514,0.09686027723238365,0.09588814501116731,0.09489837319711476,0.09389205663163064,0.09287032690041583,0.0918343486912889,0.09078531598461824,0.08972444809282712,0.08865298556687186,0.08757218598890576,0.08648331967151308,0.08538766528491612,0.08428650543440616,0.08318112221093228,0.08207279273826824,0.08096278474048578,0.0798523521535727,0.07874273080495527,0.07763513418440667,0.07653074932936486,0.0754307328470344,0.07433620709482172,0.07324825653966391,0.07216792431565926,0.07109620899811125,0.07003406161066969,0.0689823828807043,0.06794202075639229,0.06691376819726318,0.06589836124813035,0.06489647740447034,0.06390873427540325,0.06293568854849844,0.061977835258690286,0.06103560736166218,0.06010937561015335,0.05919944872977623,0.05830607388912071,0.057429437457173,0.056569666039407565,0.05572682778232542,0.054900933934728134,0.05409194065263801,0.05329975103350557,0.05252421736420251,0.051765143566274,0.05102228782103154,0.05029536535630569,0.04958405137605003,0.0488879841134927,0.04820676798817126,0.04753997684696012,0.046887157269100796,0.046247831915278335,0.04562150290094109,0.045007655174337184,0.04440575988013198,0.04381527768997153,0.04323566208196145,0.04266636255173267,0.042106827738560185,0.04155650845087504,0.04101486057646537,0.04048134786368235,0.03995544456105089,0.039436637903819086,0.03892443043716188,0.03841834216697168,0.037917912530413794,0.037422702179691486,0.03693229457374539,0.036446297373894224,0.035964343640705804,0.03548609283065737,0.03501123159239546,0.03453947436363341,0.03407056377091966,0.03360427083566546,0.033140394990933394,0.03267876391454927,0.03221923318510429,0.03176168576835967,0.031306031342444134,0.03085220547104347,0.030400168634517017,0.029949905129535513,0.029501421848413444,0.02905474694980878,0.02860992843287775,0.028167032627303648,0.02772614261186578,0.027287356574375678,0.02685078612588592,0.026416554582069582,0.02598479522458034,0.025555649555034643,0.025129265554009267,0.024705795957126152,0.024285396559901137,0.02386822456256941,0.023454436965572308,0.02304418902580081,0.022637632783044995,0.022234915665402213,0.02183617918165339,0.02144155770783161,0.021051177374387744,0.020665155059507483,0.020283597493259344,0.019906600476361155,0.019534248216447583,0.019166612783809597,0.01880375368766613,0.018445717573122775,0.018092538038078518,0.017744235568466608,0.017400817589363536,0.017062278628678287,0.01672860058934597,0.016399753125203642,0.016075694115024155,0.015756370228531942,0.015441717577627977,0.015131662445512652,0.014826122085918556,0.014525005584255178,0.014228214772124857,0.013935645186397418,0.013647187063831749,0.013362726362106907,0.013082145798073137,0.012805325894056427,0.012532146023146428,0.012262485444566066,0.011996224320461279,0.011733244705757127,0.011473431503099723,0.011216673375339305,0.010962863608501697,0.01071190091874245,0.010463690197371263,0.01021814318867084,0.009975179095906856,0.009734725111628983,0.009496716869088331,0.009261098812340421,0.009027824483355084,0.008796856725210092,0.008568167801196338,0.008341739430402615],\n", "\"..quantile..\":[0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0]\n", "}\n", "}],\n", "\"theme\":{\n", "\"name\":\"light\"\n", "}\n", "};\n", " var plotContainer = document.getElementById(\"r2tisq\");\n", " window.letsPlotCall(function() {{\n", " LetsPlot.buildPlotFromProcessedSpecs(plotSpec, -1, -1, plotContainer);\n", " }});\n", " })(); \n", " </script>" ] }, "execution_count": 9, "metadata": {}, "output_type": "execute_result" } ], "source": [ "// Add marginal layers to any side on the plot: \n", "// - [l]eft \n", "// - [r]ight \n", "// - [t]op \n", "// - [b]ottom \n", "\n", "p + ggmarginal(\"tr\", layer = geomHistogram(color = \"white\")) +\n", " ggmarginal(\"lb\", layer = geomDensity(size = 0))\n" ] }, { "cell_type": "code", "execution_count": 10, "id": "smooth-lingerie", "metadata": {}, "outputs": [ { "data": { "text/html": [ " <div id=\"kat13g\"></div>\n", " <script type=\"text/javascript\" data-lets-plot-script=\"plot\">\n", " (function() {\n", " var plotSpec={\n", "\"mapping\":{\n", "\"x\":\"x\",\n", "\"y\":\"y\",\n", "\"color\":\"c\",\n", "\"fill\":\"c\"\n", "},\n", "\"data\":{\n", "\"c\":[\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\"],\n", "\"x\":[-1.9916840159046605,-1.0075162996095373,-2.9342023076903163,-1.7873258311921325,-3.409217544304976,-2.480863002096072,-2.471581151627473,-0.32827704584102024,-1.8472523272826318,-2.695725360213746,-0.3017163666293359,-1.217472983097933,-2.935479929458831,-3.4682620880582524,-2.429840494651523,-1.725791091360943,-0.3255246382128676,-2.2788866004312136,-2.100227160924781,-2.1764991709470314,-0.600262699196467,-1.9788537304121487,-1.202758922154671,-2.550404249095059,-3.517833965147413,-1.56701853537953,-1.3548787252056806,-0.6796245860291459,-1.9917426211791438,-0.5081499017565352,-2.2100755963839407,-3.383333287503253,-3.119597912009442,-3.216211068649772,-3.2753015918821156,-2.1264877948164695,-0.9380496908518272,-2.189390951053853,-1.4949953432837932,-3.047420344920938,-2.9454966963263116,-1.5067116120644957,-2.5461817670043043,-3.343425293274475,-2.7730477520434444,-2.3124669259750124,-1.3544885895026204,-4.097586632416848,-2.184864991150839,-0.7834533131434125,-2.757670400803873,-0.3768477775782759,-0.3342325599332583,-3.480789237308624,-1.9321709536328557,-2.125782643824663,-2.3102102976956482,-2.9065101567190252,-1.7680414266314775,-1.2464355070761552,-1.631920876352924,-0.018851161004153072,-1.1503858854135303,-1.777972910034191,-3.3491469886254395,-1.6550247850994073,-1.9380829258899566,-2.531870142075045,-0.4792488446155443,-2.0320093234604433,-3.036924893699646,-3.0103129261545236,-2.7613488069459766,-2.106290132080556,-2.0889134432832916,-2.976043895107677,-2.3587165519066358,-1.8797457536588003,-3.197047344124212,-3.9431485438899787,-0.9208334621449787,-0.6664256742609336,-2.164684715924407,-3.2954663040397123,-2.1733004192817837,-3.7910413160044802,-1.996609080085542,-2.357822269562097,-1.2143970421866717,-2.0674603874479542,-3.589610795422122,-1.176113593363933,-1.1954549579937606,-1.0101313777776335,-2.102957347575047,-1.2854858340934086,-1.9422798663041265,-2.84707644659407,-0.9034578056108349,-3.0208908757236923,-1.5386266149417964,-1.0090540905658774,-1.3530117863264641,-1.2517640027885957,-1.623347206443961,-2.336709864443785,-2.734623909681472,-1.8611617909605653,-1.2828335798487773,1.059639683960783,-1.6547162936893907,-2.4609338931378373,-2.3996522969098817,-2.791185954400288,-2.5755394722760094,-1.662516426544272,-1.089834569692961,-2.2109770610217243,-4.6887749295551,-0.967490296331182,-2.5128432538878576,-0.5264554955966494,-3.21761926274364,-1.6286311569471434,-2.8346243579296106,-1.5862928011059392,-0.7083111023241342,-2.265179970446102,-3.8695188787862116,-3.1719399100356673,-1.9558428118094349,-1.7792620814108433,-1.7357020034341932,-1.7899965263713897,-3.655037567505465,-2.2310337795469217,-2.6134706425467233,-2.8821281991721475,-1.375047151031843,-2.524275193352156,-2.8221292865062266,-3.0361908827683504,1.0802331983126647,-3.1251901089922374,-2.9224895193902003,-1.5554313057186255,-2.174398009814226,-2.680066934620616,-2.0104693451475293,-3.533885020658057,-1.7114636792660778,-1.9082156524504228,-0.9936885177668526,-1.4581536015836596,-2.3206443436604367,-3.4226868390533793,-3.03018955805262,0.44435893220628664,-1.6647861378091482,-2.7266740385398407,-1.875123836331528,-1.5165081579402808,-2.6795114810038343,-0.15992691006981197,-1.3997506416103176,-2.088101997338163,-1.7971768554951997,-2.6704579878969126,-0.2552595989615716,-1.1293598560165996,-3.0439722565053273,-1.5642269547679462,-2.7821188392473815,-2.6559193751807353,-3.853412786628808,-2.3928065710494275,-1.1483332248208367,-1.3380853879355676,-2.3824844784759205,-1.844315687201735,-0.7286502579457728,-2.3682000791310274,-2.6280841198440696,-0.8862973032084238,-2.0914808125153526,-3.541918336457906,-4.501942712601659,-2.7295715915980434,-0.9907266652074451,-0.4557922631165827,-1.223644993669864,-3.202889231890694,-2.027534810681654,-2.3421078844711674,-1.7384411737066636,-3.0036142140627065,-0.12865504319671617,-2.3203994396973915,-1.6987937193717166,-0.6451294705671953,-0.8600499920651158,0.23497881248192748,6.940197237480745,-3.3272480708563723,1.078972739651165,0.013704585222007874,1.959778771676608,0.41992544007439087,1.0838269133335803,3.4203527142465133,4.159431381858504,0.04200971526922635,3.257886923344845,-1.484185876646513,1.136877838698118,0.5584161260420574,1.0667982255741462,-3.9433413732228315,2.493209631007051,0.6070404414438705,-4.723013531523171,-5.396072218705628,-0.04535216439165606,4.851777849378708,1.2191503124644736,2.4230679353323,3.1666110961177227,-0.6700327913492858,7.6850310085694975,-3.707761396401177,-2.3977460120627296,3.639480616394358,0.06444076774018785,-3.5076169792966705,3.292038777356018,-8.290699005770232,-1.474379527854876,4.133434536948832,2.3970436421665915,-2.364390823990212,-3.903455674062425,-1.0754624260005095,-1.5476699276460377,-1.564304004246823,2.7951323774092125,2.5092796133017576,0.52222890567738,3.260205005447835,2.232810023654782,0.15467672498335858,-3.634679405297695,4.446492241170248,-4.866129396133796,5.738308133085385,2.2956483465515496,-1.1685512821180248,-5.118065333693593,-1.2594031226515385,1.6914730120338168,-3.3094341388369024,-1.5240299733234677,2.7227315961075935,-0.26115643960410195,2.9662346408908578,-3.296514795008936,-1.5990436397722294,-3.0323696041114507,2.6856284852923835,4.483188308965124,-0.9843877524649651,2.413893891378675,-3.1846134764968697,2.0065162361396376,2.6513916833948836,-3.843378528446383,-2.004407189856,2.3110743028397285,-1.819329696161072,-0.8314503829299126,1.3652266160222837,-0.3846061871785503,2.1360398698810923,1.2614097998454092,-3.6615543024336477,-1.8021489969166329,0.46104123552119025,5.645363310554736,-2.0601741702799874,3.504645010191167,-0.14820692667416258,0.2644707661115462,-0.5519463447552573,4.7430521213250545,-0.6458147283721903,1.5798235947665782,-3.4511513358715673,4.278966722984352,7.413055358487136,1.608873949659954,-1.4358451550012017,5.300000257688481,-1.3069599733229327,3.582549506258025,-1.1686817575278612,-1.0369356897795885,0.4953625660644009,-3.8479932024069545,-4.786156906104934,-1.048498980749837,-0.45390883101864693,-2.392815698290904,2.3128068204836123,-5.111244582928757,2.40083629543184,-0.40178520704236587,6.418295956128011,-1.1334536929616124,-0.16297559474508289,-3.4698133003700047,3.103841780136832,5.164516804238253,-0.8013282702420941,1.5397536686996482,-3.1773630861787767,1.3351105398600067,-5.195725978700607,-2.3416494222414737,-3.930484274790691,2.2018414683117093,1.424911426943275,1.3195918148723864,2.7215002227925216,1.3086311075979276,2.499300386214229,1.8417710491177839,-5.640694179918953,0.42301531362107325,-0.9391140372135933,-0.5075602100889359,3.8263727390319056,-0.6563896077821363,-3.155630589839599,-3.2620290041544124,-0.7335306284031367,-1.1567569100179929,-3.3407282796350994,1.7362564331985109,-1.614090554090166,1.6261813906113056,-1.3619540782023258,-2.3055571038076788,1.4166220483169552,2.759726947171873,-2.0151168384534413,-2.2020290713749393,2.7398343942711008,0.8344191563686024,5.2405441584189685,-1.8216714794932558,6.237745129080784,2.5709486040794287,0.2062084601641947,1.2114665197505545,-1.2596760977541992,1.6825816796841122,-1.8493080849746282,5.848546540694381,1.2406416299766976,0.5853529302830079,1.5490709802597287,-4.826892725858458,-4.389247413557729,-1.054967146886617,-3.293649644408222,3.1064528754363634,-1.4862422751175104,5.100028824023687,-0.12474604162293143,-8.861445954008323,1.67682256782614,1.8485522763038398,3.6110213672357574,-0.22264095092476183,2.9771564864852023,-0.563869495730703,1.0156565923777996,4.150075778501257,0.6166158811539818,-5.6597729016531115,2.0929223934128456,-1.3412590630543884,-0.8260570312152808,5.047501316304559,2.823018822307693,-1.0586667108536627,-2.380323342210341,0.49655882865336853,-0.4377105541001931,-4.677945174193813,-2.174703660314566],\n", "\"y\":[0.7514360510306208,-0.8516752671352597,1.210112615656036,-1.0311768499201683,0.15604685710669963,-0.08675908955557088,-0.5854440836497788,-1.406108230202983,-0.7282679823198847,-0.37919316447355234,-0.7143226510117506,-0.9461617683249052,1.6947379457993959,1.0127919692500957,-0.6833417468938692,-0.4016661751233255,-0.23699648191880462,-0.918724707609321,-0.3095515226765643,-0.4955960612193032,-2.5086953401539698,-0.7720407280085881,-0.7233074061148261,0.627063556149064,1.5005981606663068,-0.9391331874902079,0.23221147228132055,-1.1732715996379708,-0.12740139843070197,-0.7350178544001142,0.135844951504016,0.5133825349491091,0.6284964321746815,1.4960929416652144,0.580054729200791,-0.6005899845117544,-0.32857278377012844,0.03524130701424208,-1.605609901347195,0.8022960083947999,1.1833541472340148,-0.22631854800995108,0.5698310868309039,1.951192351723379,1.2940555613081706,0.045112700478526446,-0.320341900354649,1.9126945923972118,0.5569323176292618,-0.9027515422044294,0.6258640091514431,-2.024238095954958,-1.2307264557133855,1.7525985416839593,-0.521251010389423,0.5133048067614205,0.1615954554678199,0.07900998845355223,-0.29155323449535653,-0.5719180705966365,0.09124648302779259,-2.538072540678598,-0.5357989639826282,-0.049284415599786635,-0.21001182083492398,-0.06350695284374627,0.6992725607042934,0.6915797540939244,-1.6593517520367669,-0.7705457774933029,1.0931219572738133,1.327411319400762,2.120903888205527,0.4502823328487616,-0.6220495779548431,-0.5506626847302556,0.8006084368210764,-0.7023552253919396,1.0471015886435802,0.8511568206609248,-1.0470541528872142,-1.1789334059276249,-1.0918482440311257,0.5657829543194306,0.2563820157313081,1.6303120947994945,0.2942724706392622,0.1712589423066858,-0.6429078483244388,-1.2756942500305963,1.4992822639368275,-0.3647891607027672,-0.410362289580208,-0.4619635877994601,0.19175582314239506,-1.2270836616855327,-1.284489547714436,0.2542295522869925,-1.0166405618389132,1.2822930375285613,-0.46903463187864186,-0.7488812286380635,-0.3460082237633007,-0.7211972156510177,-1.0041306835071286,0.07546740289663033,0.3341430169397538,0.11700780405372835,-1.1245132357352328,-3.227582210446822,-0.5890756348409841,-1.1590787127133249,-0.5763849103839725,0.45013876142442477,0.5349181698703063,-0.23231720076209417,-0.4907455588555049,1.1457128488141588,2.2194059749694963,0.15292041692378977,-0.5459590890040814,-1.4409370375357655,0.1636319670033799,-0.2283635670400512,0.4569602849903955,0.6041095147681309,-0.28361732878778484,0.055240852814989805,1.627715151474149,1.671608387200685,-0.4456543297602226,-0.10683005502725222,0.14877673135115457,-0.1573959959894512,1.2261949820560465,-0.09113775885050929,0.6781506133066553,1.511067117253397,-0.6115744736527607,0.07619010962609873,2.481184694255261,0.526981231902472,-2.1792049977746224,1.8363993785276986,-0.21173531716420124,0.37522929394285764,0.46359254002287675,0.469896648577915,0.019591259067233635,1.3287127547634068,-0.1922457629295637,1.049480490952028,0.019921806105617224,-0.43590711743023675,-0.09901045309716783,0.7075702782126695,1.758490814131384,-1.3419002115879255,-0.20647504014347096,0.7706898040141046,-0.14232250207474773,-1.119449318194966,-0.3756397227411178,-2.380210494652406,-0.18084083373073767,-0.06365165353117348,0.6519729495677491,0.8248030827479522,-1.5817901527268599,-0.03987167493535948,0.15495374759882263,-0.8233845201476875,1.4356785179671065,0.5292053398011151,0.785624954023344,-0.7420227725352879,-0.0891170377981419,0.32875327870629245,0.6798745011049996,-0.1952766934572675,-1.14778800876353,0.4105473740499304,0.07290390130778768,-0.8413589219424127,-0.055507789228325236,0.8486182527185637,2.082562652811129,1.632659801287815,-0.3615943720744511,-2.3091995609558307,-0.9821989166581606,0.12748470408535473,-0.4851244731677765,0.5371897212727343,0.2673305516399948,0.41507114632601855,-1.984245886068487,-0.4799818468375152,-0.7790687004174005,-0.2264758368824017,0.3944211178561692,1.096563864860156,0.44843718104464547,1.4725933265151867,1.1617428139116597,1.02490689016451,1.1629355116102642,1.2880458018730754,1.1568539331153014,0.5961849436098987,1.310346670682165,1.3757813076512408,1.1852434266640992,0.9516030864205988,1.265885637978102,1.0851667533903173,0.7446926987542952,0.43864767999195375,0.9597068565543073,1.1904020559539938,1.3068839002310715,1.4659897445301466,0.5334568538362112,0.9884726086923126,0.6730659308697651,1.2018221180405442,0.9870076561035276,1.1587653508393503,1.194262531762642,0.9868954294225155,1.0313339378239257,0.7054163995111842,0.3487372959715421,0.824951655717745,1.2689140390207365,1.1323391509858292,1.1169585628200667,0.7918102602112692,0.941537379892377,1.0379154745303403,1.3746984387787335,1.0843200939679885,1.0420244806759795,0.6993772235972635,0.9940684417173953,1.5104857615163694,1.1005129919694996,1.2882227444419518,0.7590710447257968,0.9026339983726912,0.7782868449403093,1.2945728328066564,0.9590709429893044,1.2063409258618623,0.9386868261593742,0.7991411127326365,1.1874744873522407,0.3466362958057281,1.0942629360152532,1.3791358566852787,1.0781466358913985,1.01501709302225,1.133831229418923,1.1243901743738753,1.4852389765342442,0.395088137526015,1.0412827052413636,1.028238486111707,0.5129904021500463,1.0410975317005104,1.3547607899904979,1.0209251253327472,0.5159526470084244,0.2669888614000664,0.6843162520098145,0.8173160864594077,1.1655216537136388,0.2917721612409845,1.2203679498206539,1.2628830023552298,0.5525737363740604,0.9810764242866571,0.7540689296288894,0.7775957527516854,0.943690806587815,1.3063307431099234,1.2395346720084448,0.8781770148782277,1.466091447875112,0.6381986370218908,0.6318465358016351,0.9192085975785196,0.8581325277903438,0.8926103984349046,0.9716115644102896,0.985750221880518,1.1128876227950115,1.1766430346609622,1.4557516038829885,0.8620158575172928,1.2705093972668136,1.273732523743385,1.0916925347895432,1.3176728177021262,1.355220245092919,1.180318075243335,1.3969513942304461,0.41544138879657544,1.5239748614889548,0.8202356368969725,1.0088566878911747,0.6241787580540265,0.8387318454056243,1.3253847696806889,1.3667929002736015,0.8133954238332177,1.0150599273154148,1.556879123677696,1.795167671655943,0.6883540121346565,0.209578787962319,0.9393363673880815,1.4511101241685636,0.9141953377233073,1.4398314932652934,0.5024820694922552,1.130771838419379,0.8083079493293561,0.8273385713223176,0.7518875232716461,1.055260253431205,1.2970733561674912,1.10655760476615,1.3246532930809933,0.7332529220959476,0.4379053382645095,1.0437202336572777,0.7593692812823941,0.8621131931779116,1.010539106367529,1.57583014706212,0.8303316449424236,1.2017062221533448,0.5002098474101171,1.1134094243622075,0.8180951660408329,1.009832397189975,0.6823907157662841,0.9793129502779757,1.1267760119134578,1.541327773311052,0.1521296846507022,1.441033289006471,1.2961356117530547,0.7438697539361666,0.8729412528447531,0.21044213706477288,1.2623245582079976,0.6195648887655529,1.1802834617118465,1.1568383582801696,1.3437358633022134,0.9336230459208963,1.3268421599111742,1.2024679143785426,0.665057639577564,0.8016666164003942,0.5282830645675138,1.385581026330979,1.0964968569573459,0.6121082011492862,0.8543456822612379,0.890522741240486,1.2599025309736,1.0977456823797014,1.072126600529319,1.0968483285520338,1.193602329770524,0.9448789731795862,1.1278209827218282,0.5425713977186137,0.6024283697782952,1.150206091291158,0.991057572445549,0.5076474971739946,1.2477871358729742,0.8827510597672101,1.070369743253259,0.9097027585319167,1.3884258867840797,0.7068678935913685,1.376848036308112,1.2171682569340134,1.233622483426429,0.9552990734069042,1.3462444839775385,1.282637755029423,1.4320985485395012,0.5160004238578895,1.0719121018807956]\n", "},\n", "\"kind\":\"plot\",\n", "\"scales\":[{\n", "\"aesthetic\":\"color\",\n", "\"values\":[\"#394449\",\"#F7C443\"]\n", "},{\n", "\"aesthetic\":\"fill\",\n", "\"values\":[\"#394449\",\"#F7C443\"]\n", "}],\n", "\"layers\":[{\n", "\"mapping\":{\n", "},\n", "\"stat\":\"identity\",\n", "\"position\":\"identity\",\n", "\"geom\":\"point\",\n", "\"data\":{\n", "}\n", "},{\n", "\"mapping\":{\n", "\"y\":\"..density..\"\n", "},\n", "\"stat\":\"bin\",\n", "\"margin_side\":\"t\",\n", "\"color\":\"white\",\n", "\"marginal\":true,\n", "\"position\":\"stack\",\n", "\"geom\":\"histogram\",\n", "\"fill\":\"gray\",\n", "\"data\":{\n", "\"x\":[-8.958886318343502,-8.381598122093566,-7.8043099258436275,-7.227021729593691,-6.6497335333437535,-6.072445337093816,-5.4951571408438795,-4.917868944593942,-4.340580748344005,-3.763292552094067,-3.1860043558441298,-2.6087161595941932,-2.031427963344256,-1.4541397670943184,-0.8768515708443818,-0.2995633745944435,0.27772482165549306,0.8550130179054296,1.432301214155368,2.0095894104053045,2.586877606655243,3.1641658029051793,3.741453999155116,4.318742195405054,4.896030391654991,5.473318587904927,6.050606784154866,6.627894980404802,7.205183176654739,7.782471372904677],\n", "\"..density..\":[0.004532686938109123,0.004532686938109123,0.0,0.0,0.0,0.0,0.013598060814327368,0.0407941824429821,0.013598060814327368,0.08612105182407334,0.18584016446247403,0.1994382252768014,0.24929778159600177,0.24023240771978352,0.17224210364814668,0.1178498603908372,0.06799030407163684,0.04985955631920035,0.0815883648859642,0.045326869381091234,0.0815883648859642,0.0407941824429821,0.022663434690545617,0.027196121628654736,0.022663434690545617,0.01813074775243649,0.009065373876218245,0.004532686938109123,0.009065373876218245,0.004532686938109123]\n", "}\n", "},{\n", "\"mapping\":{\n", "\"x\":\"..density..\"\n", "},\n", "\"stat\":\"bin\",\n", "\"orientation\":\"y\",\n", "\"margin_side\":\"r\",\n", "\"color\":\"white\",\n", "\"marginal\":true,\n", "\"position\":\"stack\",\n", "\"geom\":\"histogram\",\n", "\"fill\":\"gray\",\n", "\"data\":{\n", "\"y\":[-3.2612005044411787,-3.062027970210462,-2.8628554359797445,-2.6636829017490276,-2.46451036751831,-2.2653378332875933,-2.066165299056876,-1.866992764826159,-1.667820230595442,-1.4686476963647248,-1.2694751621340077,-1.0703026279032906,-0.8711300936725737,-0.6719575594418563,-0.4727850252111394,-0.27361249098042206,-0.07443995674970516,0.12473257748101174,0.3239051117117291,0.523077645942446,0.7222501801731633,0.9214227144038802,1.1205952486345976,1.319767782865315,1.5189403170960314,1.7181128513267487,1.917285385557466,2.1164579197881825,2.3156304540189,2.5148029882496172],\n", "\"..density..\":[0.013137688269987955,0.0,0.0,0.0,0.039413064809963864,0.02627537653997591,0.02627537653997591,0.0,0.039413064809963864,0.02627537653997591,0.0919638178899157,0.13137688269987954,0.11823919442989159,0.22334070058979524,0.22334070058979524,0.24961607712977116,0.19706532404981933,0.289029141939735,0.22334070058979524,0.43354371290960253,0.5517829073394941,0.6043336604194459,0.7619859196593013,0.5386452190695061,0.24961607712977116,0.10510150615990364,0.039413064809963864,0.02627537653997591,0.013137688269987955,0.013137688269987955]\n", "}\n", "},{\n", "\"mapping\":{\n", "},\n", "\"stat\":\"density\",\n", "\"margin_side\":\"t\",\n", "\"color\":\"red\",\n", "\"marginal\":true,\n", "\"position\":\"identity\",\n", "\"geom\":\"density\",\n", "\"fill\":\"rgba(0,0,0,0)\",\n", "\"data\":{\n", "\"x\":[-8.861445954008323,-8.829065372868248,-8.796684791728175,-8.7643042105881,-8.731923629448026,-8.699543048307953,-8.667162467167879,-8.634781886027804,-8.602401304887731,-8.570020723747657,-8.537640142607582,-8.50525956146751,-8.472878980327435,-8.44049839918736,-8.408117818047288,-8.375737236907213,-8.343356655767138,-8.310976074627064,-8.278595493486991,-8.246214912346916,-8.213834331206842,-8.181453750066769,-8.149073168926694,-8.11669258778662,-8.084312006646547,-8.051931425506472,-8.019550844366398,-7.987170263226324,-7.9547896820862505,-7.922409100946177,-7.890028519806102,-7.8576479386660285,-7.825267357525954,-7.79288677638588,-7.7605061952458065,-7.728125614105732,-7.695745032965658,-7.663364451825585,-7.63098387068551,-7.598603289545436,-7.566222708405363,-7.533842127265288,-7.501461546125214,-7.469080964985141,-7.436700383845066,-7.404319802704992,-7.371939221564919,-7.339558640424844,-7.30717805928477,-7.274797478144697,-7.242416897004622,-7.210036315864548,-7.177655734724474,-7.1452751535844,-7.1128945724443255,-7.080513991304252,-7.048133410164178,-7.015752829024104,-6.98337224788403,-6.950991666743956,-6.918611085603882,-6.886230504463808,-6.853849923323734,-6.82146934218366,-6.789088761043586,-6.756708179903512,-6.724327598763438,-6.691947017623364,-6.65956643648329,-6.627185855343216,-6.594805274203142,-6.562424693063068,-6.530044111922994,-6.49766353078292,-6.465282949642846,-6.432902368502772,-6.400521787362697,-6.368141206222624,-6.33576062508255,-6.303380043942475,-6.2709994628024015,-6.238618881662328,-6.206238300522253,-6.1738577193821795,-6.141477138242106,-6.109096557102031,-6.076715975961958,-6.044335394821884,-6.011954813681809,-5.979574232541736,-5.947193651401662,-5.914813070261587,-5.882432489121514,-5.85005190798144,-5.817671326841365,-5.785290745701292,-5.752910164561218,-5.720529583421143,-5.68814900228107,-5.655768421140996,-5.623387840000921,-5.591007258860847,-5.558626677720774,-5.526246096580699,-5.493865515440625,-5.461484934300552,-5.4291043531604775,-5.396723772020403,-5.364343190880329,-5.3319626097402555,-5.299582028600181,-5.267201447460107,-5.2348208663200335,-5.202440285179959,-5.170059704039885,-5.1376791228998115,-5.105298541759737,-5.072917960619663,-5.04053737947959,-5.008156798339515,-4.975776217199441,-4.943395636059368,-4.911015054919293,-4.878634473779219,-4.846253892639145,-4.813873311499071,-4.781492730358997,-4.749112149218923,-4.716731568078849,-4.684350986938775,-4.651970405798701,-4.619589824658627,-4.587209243518553,-4.554828662378479,-4.522448081238405,-4.4900675000983306,-4.457686918958257,-4.425306337818183,-4.392925756678109,-4.360545175538035,-4.328164594397961,-4.295784013257887,-4.263403432117813,-4.231022850977739,-4.198642269837665,-4.166261688697591,-4.133881107557517,-4.101500526417443,-4.069119945277369,-4.036739364137294,-4.004358782997221,-3.971978201857147,-3.9395976207170724,-3.9072170395769987,-3.874836458436925,-3.8424558772968505,-3.8100752961567768,-3.777694715016703,-3.7453141338766285,-3.712933552736555,-3.68055297159648,-3.6481723904564065,-3.615791809316333,-3.5834112281762582,-3.5510306470361845,-3.518650065896111,-3.4862694847560363,-3.4538889036159626,-3.421508322475889,-3.3891277413358143,-3.3567471601957406,-3.324366579055667,-3.2919859979155923,-3.2596054167755186,-3.227224835635444,-3.1948442544953704,-3.1624636733552967,-3.130083092215222,-3.0977025110751484,-3.0653219299350747,-3.032941348795,-3.0005607676549264,-2.9681801865148527,-2.935799605374778,-2.9034190242347044,-2.8710384430946307,-2.838657861954556,-2.8062772808144825,-2.773896699674408,-2.741516118534334,-2.7091355373942605,-2.676754956254186,-2.644374375114112,-2.644374375114112,-2.6119937939740385,-2.579613212833964,-2.5472326316938902,-2.5148520505538166,-2.482471469413742,-2.4500908882736683,-2.4177103071335937,-2.38532972599352,-2.3529491448534463,-2.3205685637133717,-2.288187982573298,-2.2558074014332243,-2.2234268202931498,-2.191046239153076,-2.1586656580130024,-2.126285076872928,-2.093904495732854,-2.0615239145927804,-2.029143333452706,-1.9967627523126321,-1.9643821711725575,-1.9320015900324838,-1.8996210088924101,-1.8672404277523356,-1.8348598466122619,-1.8024792654721882,-1.7700986843321136,-1.73771810319204,-1.7053375220519662,-1.6729569409118916,-1.640576359771818,-1.6081957786317442,-1.5758151974916697,-1.543434616351596,-1.5110540352115214,-1.4786734540714477,-1.4786734540714477,-1.446292872931374,-1.4139122917912994,-1.3815317106512257,-1.349151129511152,-1.3167705483710774,-1.2843899672310037,-1.25200938609093,-1.2196288049508555,-1.1872482238107818,-1.1548676426707072,-1.1224870615306335,-1.0901064803905598,-1.0577258992504852,-1.0253453181104115,-0.9929647369703378,-0.9605841558302632,-0.9282035746901895,-0.8958229935501159,-0.8634424124100413,-0.8310618312699667,-0.7986812501298939,-0.7663006689898193,-0.7339200878497447,-0.7015395067096719,-0.6691589255695973,-0.6367783444295227,-0.6043977632894499,-0.5720171821493754,-0.5396366010093008,-0.507256019869228,-0.4748754387291534,-0.4424948575890788,-0.410114276449006,-0.3777336953089314,-0.34535311416885683,-0.31297253302878403,-0.28059195188870945,-0.24821137074863486,-0.21583078960856206,-0.18345020846848747,-0.1510696273284129,-0.11868904618833831,-0.0863084650482655,-0.05392788390819092,-0.02154730276811634,0.010833278371956467,0.04321385951203105,0.07559444065210563,0.10797502179217844,0.14035560293225302,0.1727361840723276,0.2051167652124004,0.237497346352475,0.2698779274925496,0.3022585086326224,0.33463908977269696,0.33463908977269696,0.36701967091277155,0.39940025205284435,0.43178083319291893,0.4641614143329935,0.4965419954730663,0.5289225766131409,0.5613031577532155,0.5936837388932883,0.6260643200333629,0.6584449011734375,0.690825482313512,0.7232060634535848,0.7555866445936594,0.787967225733734,0.8203478068738068,0.8527283880138814,0.885108969153956,0.9174895502940288,0.9498701314341034,0.982250712574178,1.0146312937142508,1.0470118748543253,1.0793924559944,1.1117730371344727,1.1441536182745473,1.176534199414622,1.2089147805546947,1.2412953616947693,1.2736759428348439,1.3060565239749167,1.3384371051149913,1.3708176862550658,1.4031982673951386,1.4355788485352132,1.4679594296752878,1.5003400108153624,1.5327205919554352,1.5651011730955098,1.5974817542355844,1.6298623353756572,1.6622429165157317,1.6946234976558063,1.7270040787958791,1.7593846599359537,1.7917652410760283,1.824145822216101,1.8565264033561757,1.8889069844962503,1.921287565636323,1.9536681467763977,1.9860487279164722,2.018429309056545,2.0508098901966196,2.083190471336694,2.115571052476767,2.1479516336168416,2.180332214756916,2.212712795896989,2.2450933770370636,2.277473958177138,2.309854539317211,2.3422351204572855,2.37461570159736,2.4069962827374347,2.4393768638775075,2.471757445017582,2.5041380261576567,2.5365186072977295,2.568899188437804,2.6012797695778787,2.6336603507179515,2.666040931858026,2.6984215129981006,2.7308020941381734,2.763182675278248,2.7955632564183226,2.8279438375583954,2.86032441869847,2.8927049998385446,2.9250855809786174,2.957466162118692,2.9898467432587665,3.0222273243988393,3.054607905538914,3.0869884866789885,3.1193690678190613,3.151749648959136,3.1841302300992105,3.216510811239285,3.248891392379358,3.2812719735194324,3.313652554659507,3.34603313579958,3.3784137169396544,3.410794298079729,3.443174879219802,3.4755554603598764,3.507936041499951,3.540316622640024,3.5726972037800984,3.605077784920173,3.6374583660602458,3.6698389472003203,3.702219528340395,3.7346001094804677,3.7669806906205423,3.799361271760617,3.8317418529006897,3.8641224340407643,3.896503015180839,3.9288835963209117,3.9612641774609862,3.993644758601061,4.026025339741135,4.058405920881208,4.090786502021283,4.123167083161357,4.15554766430143,4.187928245441505,4.220308826581579,4.252689407721652,4.285069988861727,4.317450570001801,4.349831151141874,4.382211732281949,4.414592313422023,4.446972894562096,4.479353475702171,4.511734056842245,4.544114637982318,4.576495219122393,4.608875800262467,4.64125638140254,4.673636962542615,4.706017543682689,4.738398124822762,4.770778705962837,4.803159287102911,4.835539868242986,4.867920449383059,4.900301030523133,4.932681611663208,4.9650621928032805,4.997442773943355,5.02982335508343,5.0622039362235025,5.094584517363577,5.126965098503652,5.1593456796437245,5.191726260783799,5.224106841923874,5.2564874230639465,5.288868004204021,5.321248585344096,5.353629166484168,5.386009747624243,5.418390328764318,5.45077090990439,5.483151491044465,5.51553207218454,5.547912653324612,5.580293234464687,5.6126738156047615,5.645054396744834,5.677434977884909,5.7098155590249835,5.742196140165058,5.774576721305131,5.8069573024452055,5.83933788358528,5.871718464725353,5.904099045865427,5.936479627005502,5.968860208145575,6.001240789285649,6.033621370425724,6.066001951565797,6.098382532705871,6.130763113845946,6.163143694986019,6.195524276126093,6.227904857266168,6.260285438406241,6.292666019546315,6.32504660068639,6.357427181826463,6.389807762966537,6.422188344106612,6.454568925246685,6.486949506386759,6.519330087526834,6.551710668666908,6.584091249806981,6.616471830947056,6.64885241208713,6.681232993227203,6.713613574367278,6.745994155507352,6.778374736647425,6.8107553177875,6.843135898927574,6.875516480067647,6.907897061207722,6.940277642347796,6.972658223487869,7.005038804627944,7.037419385768018,7.069799966908091,7.102180548048166,7.13456112918824,7.166941710328315,7.199322291468389,7.2317028726084605,7.264083453748535,7.29646403488861,7.328844616028684,7.361225197168759,7.393605778308833,7.425986359448904,7.458366940588979,7.490747521729054,7.523128102869128,7.555508684009203,7.587889265149277,7.620269846289348,7.652650427429423,7.6850310085694975],\n", "\"y\":[0.002774266233353328,0.0028293699014910983,0.0028786905246669307,0.00292191272484284,0.002958758049664274,0.002988987654709035,0.003012404607872889,0.0030288557925024417,0.0030382333904044956,0.0030404759303852857,0.00303556889248736,0.003023544862593906,0.003004483236568085,0.00297850947760249,0.002945793934986628,0.0029065502370704205,0.0028610332758139683,0.0028095368049603714,0.002752390678527741,0.0026899577609491602,0.0026226305447388243,0.0025508275159542623,0.00247498931186946,0.0023955747190687036,0.002313056563505798,0.002227917546833265,0.002140646085378412,0.002051732209422283,0.001961663580831564,0.0018709216865278266,0.0017799782637018138,0.0016892920100674113,0.0015993056288031633,0.0015104432531819327,0.0014231082903024032,0.0013376817169000357,0.0012545208530434294,0.001173958631750585,0.0010963033743403442,0.001021839072830267,9.508261720728072E-4,8.835028357563926E-4,8.200866720517476E-4,7.607768867122634E-4,7.057568239829515E-4,6.551968488615445E-4,6.092575181959158E-4,5.680929828827028E-4,5.318545591219493E-4,5.006944033320268E-4,4.747692229709093E-4,4.542439541609222E-4,4.392953366781035E-4,4.3011531753651E-4,4.2691421605496675E-4,4.29923585914687E-4,4.3939871326997067E-4,4.5562069442487633E-4,4.788980418948774E-4,5.095677737869424E-4,5.479959483000512E-4,5.945776127087937E-4,6.497361443729827E-4,7.139219700322637E-4,7.876106587994118E-4,8.713003937477311E-4,9.655088366703366E-4,0.001070769410331381,0.0011876270321774629,0.0013166333428670518,0.001458341481935508,0.0016133004712696511,0.0017820492746482728,0.0019651106082542065,0.0021629845826354028,0.002376142260967521,0.002605019221560007,0.002850009214298021,0.0031114580011121595,0.0033896574696487126,0.003684840107152998,0.003997173918297202,0.004326757866445113,0.004673617912844235,0.005037703722692787,0.0054188861011813735,0.005816955216695166,0.006231619662609521,0.006662506403719195,0.0071091616484695195,0.007571052683910646,0.00804757070671089,0.008538034680605855,0.00904169624820471,0.009557745722921108,0.010085319184659372,0.01062350670040783,0.011171361687653574,0.011727911434071455,0.012292168780776847,0.012863144968080682,0.0134398636317077,0.014021375923444048,0.014606776712882996,0.015195221806162893,0.01578594609332231,0.016378282508275006,0.01697168165476833,0.017565731918556614,0.01816017985111269,0.01875495057442743,0.01935016792087881,0.01994617398800769,0.020543547756643576,0.02114312239356851,0.02174600083820163,0.022353569258000392,0.022967507950689435,0.023589799274176107,0.024222732198025846,0.024868903094334194,0.025531212421134715,0.026212856998185624,0.026917317632803316,0.0276483419217097,0.028409922132631604,0.02920626815529292,0.030041775603809887,0.030920989249406877,0.031848562061651105,0.03282921023574363,0.033867664680371,0.03496861953277373,0.036136678352621965,0.03737629872170678,0.03869173604026588,0.04008698736108901,0.041565736137837206,0.04313129878303002,0.04478657393304836,0.04653399530181433,0.048375488971464355,0.05031243591766966,0.052345640499978786,0.054475305564734115,0.0567010147111356,0.05902172216157003,0.061435750557315316,0.06394079687229731,0.06653394650299932,0.06921169545430005,0.07196998040140362,0.07480421626964162,0.07770934083922484,0.08067986575350616,0.08370993318930589,0.08679337733867806,0.08992378975527135,0.0930945875371758,0.09629908325363161,0.09953055547682528,0.10278231875349375,0.10604779184533081,0.10932056308290317,0.11259445171537974,0.11586356419783522,0.11912234443879388,0.12236561713219174,0.1255886234187299,0.1287870482598861,0.13195703906140066,0.1350952152491447,0.13819866867579142,0.141264954918137,0.14429207570846164,0.14727845292488356,0.15022289474113884,0.15312455470128905,0.15598288463547258,0.1587975824649792,0.161568536055063,0.1642957643588671,0.1669793571530178,0.1696194146929474,0.17221598861267517,0.1747690253592477,0.17727831338685768,0.17974343524117342,0.18216372554291188,0.18453823573414138,0.18686570628503893,0.18914454687720997,0.19137282488709778,0.19137282488709778,0.1935482622946935,0.19566824094414315,0.19772981588934338,0.19972973637451438,0.20166447383194405,0.20353025613109968,0.20532310718885952,0.20703889095278782,0.2086733587003795,0.2102221985582283,0.2116810861365111,0.21304573519532105,0.2143119473086953,0.2154756595672306,0.21653298945779859,0.21748027617525295,0.2183141177518717,0.2190314035309858,0.21962934165701728,0.22010548140023622,0.22045773027632135,0.22068436605407268,0.22078404386552056,0.2207557987380654,0.22059904395565635,0.22031356572358377,0.21989951465830518,0.21935739464963241,0.218688049648201,0.21789264891768173,0.21697267126067754,0.21592988868203222,0.2147663498963588,0.21348436402098991,0.21208648472464792,0.21057549502915943,0.21057549502915943,0.20895439288966006,0.20722637761089627,0.20539483709590356,0.20346333587069498,0.2014356037861585,0.19931552526717217,0.19710712895950766,0.19481457761719212,0.19244215807614498,0.18999427117286363,0.18747542148829546,0.18489020682495508,0.18224330735781727,0.17953947443444154,0.17678351903503342,0.17398029993674338,0.17113471165661476,0.16825167227270071,0.16533611124180134,0.16239295734416817,0.1594271268900259,0.15644351231982945,0.1534469713201959,0.15044231656116036,0.1474343061387939,0.144427634781571,0.14142692585054198,0.138436724133841,0.1354614894068106,0.13250559070138665,0.1295733012036592,0.12666879367764877,0.12379613629716373,0.12095928875659291,0.11816209852589747,0.11540829711483017,0.11270149621626693,0.11004518360796955,0.10744271870545045,0.10489732767511727,0.10241209803570982,0.09998997269638445,0.09763374340089358,0.09534604356849126,0.09312934054293916,0.0909859272809168,0.08891791353005724,0.0869272165646654,0.08501555156401766,0.08318442173416857,0.08143510828964359,0.07976866042653026,0.07818588543350788,0.07668733910242435,0.07527331661510457,0.07394384409805271,0.07394384409805271,0.07269867105117003,0.07153726387007148,0.07045880069326237,0.06946216781445602,0.06854595790562257,0.06770847029686643,0.06694771355379055,0.06626141058056977,0.06564700645658611,0.06510167918545134,0.06462235349711831,0.06420571779647034,0.06384824429555452,0.06354621230223216,0.06329573456658023,0.06309278650949916,0.06293323807761307,0.06281288788702719,0.06272749923840078,0.06267283750989085,0.06264470836565234,0.06263899615856765,0.06265170185938289,0.06267897981284118,0.06271717260675282,0.06276284334376826,0.06281280462891607,0.06286414362909995,0.06291424262343379,0.06296079454455936,0.06300181310931624,0.06303563725005898,0.06306092968272599,0.06307666958115479,0.06308213946543391,0.06307690655134769,0.06306079894414401,0.06303387718888541,0.06299640180762597,0.06294879755696797,0.0628916152249722,0.0628254918512271,0.06275111029603088,0.06266915910269699,0.06258029359028516,0.062485099082658195,0.06238405712450708,0.062277515457425194,0.062165662431488994,0.06204850641293331,0.06192586061975498,0.06179733367815446,0.061662326047653385,0.06152003231565706,0.06136944921732189,0.06120938909788821,0.06103849840593096,0.060855280690692466,0.06065812347774819,0.060445328317115694,0.06021514323833316,0.05996579680911693,0.059695532978399996,0.05940264589059502,0.05908551388492392,0.05874263194009224,0.058372641888418245,0.05797435980223709,0.05754680004613575,0.05708919558820557,0.05660101426877761,0.05608197083273927,0.05553203463832676,0.05495143305822636,0.05434065068517225,0.05370042454162747,0.05303173556962396,0.052335796740946225,0.051614038178577556,0.05086808971720481,0.05009976135360059,0.04931102204732793,0.04850397732930995,0.04768084616160127,0.04684393746768503,0.04599562672051063,0.04513833293710828,0.044274496385844506,0.04340655726705238,0.042536935581624705,0.04166801235675801,0.04080211235474866,0.03994148835066172,0.03908830702865988,0.03824463651533921,0.03741243554183983,0.03659354420480688,0.035789676279247826,0.03500241302356717,0.03423319840800902,0.03348333569175678,0.03275398527033371,0.032046163713032524,0.031360743909229834,0.030698456242053876,0.030059890707526397,0.02944549989668223,0.028855602757110743,0.02829038904884718,0.027749924407675507,0.027234155926917514,0.026742918166996713,0.026275939500853135,0.02583284870304998,0.025413181691542622,0.025016388333916346,0.024641839234702825,0.02428883242731385,0.023956599903218252,0.023644313922127232,0.023351093059904963,0.023076007965308527,0.022818086811992714,0.02257632044790208,0.022349667259565064,0.022137057783214974,0.0219373991074141,0.021749579122311746,0.021572470678269392,0.021404935720887672,0.021245829470168585,0.021094004708491564,0.020948316235301866,0.0208076255361053,0.02067080569990504,0.020536746603134357,0.020404360360092633,0.020272587020649123,0.020140400476374127,0.02000681451715828,0.01987088896264464,0.019731735777237785,0.019588525064789974,0.01944049082990556,0.01928693638760949,0.019127239302186978,0.018960855739436056,0.018787324124313814,0.01860626800775673,0.01841739806190539,0.018220513141507542,0.018015500370236057,0.01780233423327565,0.01758107468098373,0.017351864271876183,0.01711492440580321,0.016870550719185674,0.016619107732877218,0.016361022859007042,0.016096779885566848,0.015826912066197567,0.01555199494741647,0.015272639066358607,0.0149894826490858,0.014703184432873866,0.01441441672597202,0.01412385880558522,0.013832190739788917,0.013540087702326507,0.013248214831378304,0.012957222665049187,0.012667743168111159,0.012380386347033357,0.012095737434060908,0.011814354606528805,0.011536767195100392,0.011263474324502951,0.010994943922807886,0.010731612030489621,0.010473882338427467,0.010222125884636026,0.009976680842688651,0.00973785234033088,0.009505912254402749,0.009281098937581379,0.009063616843260855,0.008853636026718384,0.008651291513168026,0.008456682535962734,0.008269871660665187,0.008090883822570618,0.007919705316160272,0.007756282784551799,0.007600522264991872,0.007452288352552993,0.0073114035482468665,0.007177647859605843,0.007050758721323498,0.006930431300760254,0.006816319248047307,0.006708035943259836,0.006605156283837264,0.006507219044319128,0.006413729827807376,0.0063241646146720756,0.006237973899241281,0.006154587389939824,0.006073419232971427,0.0059938737045911504,0.005915351302708559,0.005837255155403913,0.005758997652317807,0.0056800071951428185,0.005599734955916523,0.005517661526748016,0.005433303342203075,0.005346218755957528,0.005256013656560072,0.005162346513205637,0.0050649327512093546,0.004963548368215036,0.00485803271582069,0.004748290386942366,0.0046342921664890326,0.004516075021361168,0.004393741124951123,0.004267455930728322],\n", "\"..quantile..\":[0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0]\n", "}\n", "},{\n", "\"mapping\":{\n", "},\n", "\"stat\":\"density\",\n", "\"orientation\":\"y\",\n", "\"margin_side\":\"r\",\n", "\"color\":\"red\",\n", "\"marginal\":true,\n", "\"position\":\"identity\",\n", "\"geom\":\"density\",\n", "\"fill\":\"rgba(0,0,0,0)\",\n", "\"data\":{\n", "\"x\":[0.004244749633347162,0.004260210924079288,0.004269509904791106,0.004272989444542826,0.004271065611105359,0.00426422660340112,0.004253030995854203,0.004238105303041119,0.004220140880169087,0.004199890181682518,0.0041781624066279405,0.004155818565225504,0.004133766006350295,0.004112952450283805,0.004094359575136381,0.004078996208761958,0.00406789118079764,0.004062085891686154,0.004062626657212674,0.004070556888250781,0.004086909166112438,0.00411269727418389,0.0041489082464530634,0.004196494493141641,0.004256366062988668,0.0043293831008277195,0.004416348557982396,0.004518001211692213,0.004635009048278183,0.00476796306306016,0.004917371528130681,0.005083654776948284,0.005267140552304183,0.005468059961501837,0.005686544079526152,0.005922621237525897,0.006176215030046224,0.006447143070093644,0.00673511651626117,0.007039740390771523,0.007360514701401723,0.00769683637384601,0.008048001994178676,0.008413211353740504,0.00879157178105275,0.009182103237344108,0.009583744144055358,0.009995357902381109,0.01041574005664597,0.010843626045237136,0.011277699475075871,0.01171660084836203,0.012158936663728177,0.01260328880814298,0.013048224151057766,0.013492304248530249,0.01393409506250323,0.014372176599169242,0.01480515237048686,0.015231658584487799,0.015650372973046903,0.01606002317027542,0.01645939456060249,0.01684733752286474,0.017222774005227193,0.01758470337538343,0.017932207501072012,0.018264455027317848,0.018580704828760286,0.018880308627743734,0.019162712781289143,0.01942745925239654,0.01967418579310669,0.019902625378135298,0.02011260493845478,0.02030404345371895,0.020476949470709372,0.020631418121852048,0.02076762772316733,0.020885836034658576,0.020986376268042402,0.021069652926831973,0.02113613756210816,0.02118636452389121,0.021220926782936887,0.021240471891147982,0.021245698140770077,0.021237350973319292,0.02121621967899022,0.02118313441636144,0.021138963570816714,0.021084611458512193,0.0210210163712322,0.02094914894637083,0.020870010835835968,0.020784633638161864,0.020694078049779508,0.020599433184447253,0.020501816004473216,0.020402370803706705,0.020302268680440813,0.020202706938404102,0.020104908355932212,0.02001012026714934,0.019919613404461564,0.019834680458720465,0.019756634321865075,0.019686805986460637,0.01962654208705267,0.019577202079349237,0.019540155064610057,0.01951677627792884,0.019508443270007347,0.01951653182220547,0.019542411643798826,0.01958744190819082,0.019652966691057126,0.019740310377830302,0.019850773110397357,0.01998562634327413,0.020146108577785392,0.020333421338933483,0.020548725453754173,0.020793137682177557,0.02106772774193187,0.021373515758102316,0.021711470155895484,0.022082506002298722,0.02248748378905441,0.022927208636081282,0.02340242988158763,0.02391384101304412,0.024462079882313553,0.025047729138946696,0.025671316808284387,0.02633331693584227,0.02703415021673592,0.0277741845287882,0.028553735290556683,0.029373065570832205,0.030232385884147134,0.03113185361734167,0.032071572045067456,0.03305158890696122,0.03407189453575163,0.035132419543351355,0.03623303209057684,0.037373534785027133,0.03855366127032179,0.03977307258780988,0.04103135340848686,0.04232800824768005,0.04366245778760668,0.045034035442732,0.046441984309578695,0.047885454645953576,0.049363502024233494,0.05087508629922958,0.052419071523195464,0.05399422692876963,0.05559922908521319,0.05723266531442132,0.05889303843119614,0.06057877284755389,0.062288222053903,0.06401967746130509,0.06577137855932919,0.06754152431387529,0.06932828569944738,0.07112981923137517,0.07294428133611632,0.07476984337264522,0.07660470709570703,0.07844712033292874,0.0802953926329683,0.08214791063145442,0.08400315287578687,0.0858597038491643,0.08771626693863199,0.08957167610152951,0.09142490599939024,0.0932750803879151,0.0951214785758216,0.0969635397937599,0.09880086534658737,0.10063321845755414,0.10246052175069108,0.10428285235722935,0.10610043467244427,0.10791363083013245,0.1097229290021931,0.11152892966971997,0.1133323300488123,0.11513390688830206,0.11693449788702096,0.11873498200455382,0.12053625896105315,0.12233922823822536,0.12414476790467117,0.12595371359418128,0.1277668379651882,0.1295848309634019,0.13140828119780149,0.13323765872283613,0.13507329949727392,0.13691539176301307,0.13876396455591253,0.1406188785258543,0.14247981920553054,0.14434629282754766,0.14621762474810196,0.148092960493517,0.14997126940405447,0.15185135080844814,0.1537318426232582,0.15561123223408313,0.15748786948159524,0.15935998154477726,0.1612256894871852,0.16308302620992396,0.16492995553761364,0.16676439215118344,0.16858422207394866,0.17038732341516177,0.1721715870779661,0.17393493714628927,0.17567535067743012,0.17739087664355616,0.1790796537856806,0.1807399271674216,0.18237006324246618,0.18396856327860903,0.18553407501190897,0.18706540243633565,0.18856151366663101,0.19002154684440759,0.19144481408916397,0.19283080352637635,0.19417917945361876,0.19548978073230128,0.19676261751671434,0.19799786645328316,0.1991958645009845,0.20035710153858222,0.2014822119355689,0.202571965271366,0.203627256391551,0.20464909499062067,0.2056385949083286,0.20659696332110772,0.2075254900018202,0.20842553681035172,0.209298527564813,0.21014593842860863,0.21096928893291111,0.21177013373745124,0.2125500552154557,0.21331065693140977,0.2140535580634525,0.2147803888059693,0.2154927867725894,0.21619239440556093,0.21688085738454874,0.21755982401636612,0.2182309455770725,0.2188958775692146,0.21955628184970016,0.22021382957770733,0.22087020492699191,0.2215271095027451,0.22218626739949068,0.22284943083316555,0.22351838627722778,0.22419496102909175,0.2248810301292434,0.22557852355076122,0.2262894335715851,0.22701582223564384,0.2277598288018307,0.22852367707193205,0.22930968248007727,0.23012025881730602,0.23095792445582813,0.23095792445582813,0.23182530792874753,0.2327251527129782,0.23366032105622186,0.2346337966837495,0.23564868621786925,0.23670821914285456,0.23781574615134474,0.2389747357151136,0.24018876873417383,0.24146153113357477,0.2427968042972447,0.24419845325280748,0.24567041255036098,0.24721666981159568,0.2488412469627854,0.2505481792057634,0.2523414918241189,0.25422517496683494,0.2562031565974082,0.2582792738421531,0.26045724301577944,0.26274062864427533,0.2651328118435121,0.26763695844562146,0.2702559872930419,0.2729925391411637,0.2758489466238869,0.27882720574135716,0.28192894932520324,0.2851554229233378,0.28850746352371237,0.2919854815044171,0.295589446156514,0.29931887507652144,0.303172827668332,0.307149902930475,0.31124824163524606,0.3154655329325755,0.3197990253351311,0.3242455419634795,0.3288014998529159,0.3334629330482721,0.3382255191414067,0.34308460883955255,0.348035258092847,0.3530722622573943,0.35819019172738015,0.3633834284369711,0.36864620261080794,0.3739726291313427,0.3793567428924293,0.38479253252148593,0.39027397187701746,0.3957950487640084,0.4013497903558858,0.40693228486775807,0.4125366990902704,0.4181572914656861,0.4237884204662256,0.4294245481180052,0.43506023860056525,0.4406901519404325,0.4463090329059405,0.4519116952980463,0.45749300191671,0.46304784056307285,0.4685710965129553,0.47405762196574375,0.47950220303359764,0.47950220303359764,0.48489952488808413,0.49024413572397263,0.4955304102325653,0.5007525132988325,0.5059043646477942,0.5109796051656201,0.5159715656100229,0.5208732384028046,0.5256772531652179,0.5303758566146725,0.5349608973897831,0.5394238163106672,0.543755642513513,0.5479469958238558,0.5519880956525628,0.5558687766136338,0.5595785109744561,0.5631064379585873,0.566441399829557,0.5695719845928929,0.5724865750638584,0.5751734039613988,0.5776206146057673,0.5798163267193034,0.5817487067579822,0.5834060421365123,0.5847768186528619,0.5858498003698299,0.5866141111722526,0.5870593171891876,0.5871755092511908,0.5869533845438295,0.5863843266199443,0.5854604829446579,0.5841748391686081,0.5825212893558821,0.5804947014331662,0.5780909771750689,0.5753071060966561,0.5721412126871575,0.5721412126871575,0.5685925964876212,0.564661764589039,0.5603504562051641,0.5556616590547749,0.5505996173705596,0.5451698314349374,0.539379048626116,0.5332352460393924,0.5267476048283382,0.5199264764870639,0.5127833413676046,0.5053307597947253,0.49758231620361393,0.48955255678341536,0.4812569211609226,0.47271166870363507,0.4639338000595877,0.4549409745825861,0.4457514243157861,0.43638386522383493,0.42685740637411335,0.41719145777118866,0.4074056375455045,0.39751967918792425,0.38755333950629184,0.37752630795894576,0.3674581179936527,0.35736806098896506,0.3472751033590945,0.3371978073434638,0.3271542559586244,0.317161982543705,0.30723790528152467,0.2973982670263994,0.28765858071712447,0.27803358060004035,0.2685371794330711,0.25918243178765754,0.24998150351208803,0.24094564736736385,0.23208518479590126,0.22340949373449287,0.21492700233651,0.2066451884246739,0.19857058445524417,0.190708787737503,0.18306447561920725,0.17564142531950108,0.168442538065805,0.1614698671705278,0.15472464966721486,0.1482073411139126,0.14191765316408714,0.13585459350228696,0.1300165077427227,0.12440112289385909,0.11900559200074445,0.1138265395887904,0.10886010754782444,0.10410200111301733,0.09954753461942181,0.09519167672892064,0.09102909485197314,0.0870541985112801,0.0832611814199304,0.07964406207241496,0.07619672267269496,0.0729129462489904,0.06978645182980822,0.06681092757969856,0.06398006181609758,0.06128757185021946,0.05872723061514487,0.05629289106296158,0.05397850832996491,0.05177815968452654,0.04968606228630693,0.04769658879806694,0.04580428090250249,0.04400386078637885,0.04229024066286688,0.04065853041051576,0.03910404341382198,0.03762230069599704,0.036209033439385904,0.03486018399313437,0.03357190547121462,0.032340560046852714,0.03116271605178536,0.030035143990638356,0.02895481158204955,0.027918877938952473,0.026924687000657158,0.025969760328978374,0.025051789379621853,0.024168627358304433,0.023318280768604028,0.022498900755281884,0.021708774342757545,0.020946315663537267,0.02021005726570238,0.019498641582076297,0.018810812636450923,0.018145408054330882,0.01750135143712712,0.016877645149712767,0.016273363561859003,0.01568764677444059,0.015119694851588523,0.014568762570329961,0.014034154689856153,0.013515221733561362,0.013011356268553452,0.012521989659603033,0.01204658926760097,0.011584656056653203,0.011135722569049702,0.010699351223572311,0.01027513288999739,0.009862685691222417],\n", "\"y\":[-3.227582210446822,-3.2164104552517103,-3.205238700056599,-3.194066944861487,-3.1828951896663753,-3.1717234344712635,-3.160551679276152,-3.1493799240810403,-3.1382081688859285,-3.1270364136908166,-3.1158646584957053,-3.1046929033005934,-3.0935211481054816,-3.08234939291037,-3.0711776377152584,-3.0600058825201466,-3.048834127325035,-3.037662372129923,-3.0264906169348116,-3.0153188617396998,-3.004147106544588,-2.992975351349476,-2.9818035961543647,-2.970631840959253,-2.959460085764141,-2.9482883305690293,-2.937116575373918,-2.925944820178806,-2.9147730649836943,-2.9036013097885824,-2.892429554593471,-2.8812577993983592,-2.8700860442032474,-2.8589142890081356,-2.8477425338130242,-2.8365707786179124,-2.8253990234228006,-2.8142272682276888,-2.8030555130325774,-2.7918837578374656,-2.7807120026423537,-2.769540247447242,-2.7583684922521305,-2.7471967370570187,-2.736024981861907,-2.724853226666795,-2.7136814714716837,-2.702509716276572,-2.69133796108146,-2.6801662058863487,-2.668994450691237,-2.657822695496125,-2.646650940301013,-2.6354791851059014,-2.62430742991079,-2.613135674715678,-2.6019639195205664,-2.590792164325455,-2.579620409130343,-2.5684486539352314,-2.5572768987401195,-2.5461051435450077,-2.5349333883498963,-2.5237616331547845,-2.5125898779596727,-2.5014181227645613,-2.4902463675694495,-2.4790746123743377,-2.467902857179226,-2.456731101984114,-2.4455593467890027,-2.434387591593891,-2.423215836398779,-2.4120440812036676,-2.400872326008556,-2.389700570813444,-2.378528815618332,-2.3673570604232204,-2.356185305228109,-2.345013550032997,-2.3338417948378853,-2.322670039642774,-2.311498284447662,-2.3003265292525503,-2.2891547740574385,-2.2779830188623267,-2.2668112636672153,-2.2556395084721035,-2.2444677532769917,-2.2332959980818803,-2.2221242428867685,-2.2109524876916566,-2.199780732496545,-2.188608977301433,-2.1774372221063216,-2.16626546691121,-2.1550937117160984,-2.1439219565209866,-2.132750201325875,-2.121578446130763,-2.110406690935651,-2.0992349357405393,-2.088063180545428,-2.076891425350316,-2.0657196701552047,-2.054547914960093,-2.043376159764981,-2.0322044045698693,-2.0210326493747575,-2.0098608941796456,-1.9986891389845343,-1.9875173837894224,-1.9763456285943108,-1.965173873399199,-1.9540021182040874,-1.9428303630089756,-1.931658607813864,-1.9204868526187522,-1.9093150974236406,-1.8981433422285288,-1.8869715870334172,-1.8757998318383053,-1.8646280766431937,-1.853456321448082,-1.8422845662529703,-1.8311128110578585,-1.819941055862747,-1.808769300667635,-1.7975975454725235,-1.7864257902774119,-1.7752540350823,-1.7640822798871885,-1.7529105246920766,-1.741738769496965,-1.7305670143018532,-1.7193952591067416,-1.7082235039116298,-1.6970517487165182,-1.6858799935214064,-1.6747082383262948,-1.663536483131183,-1.6523647279360714,-1.6411929727409595,-1.630021217545848,-1.6188494623507361,-1.6076777071556245,-1.5965059519605127,-1.585334196765401,-1.5741624415702893,-1.5629906863751777,-1.5518189311800659,-1.5406471759849543,-1.5294754207898424,-1.5183036655947308,-1.507131910399619,-1.4959601552045074,-1.4847884000093956,-1.473616644814284,-1.4624448896191722,-1.4512731344240606,-1.4401013792289488,-1.4289296240338372,-1.4177578688387253,-1.4065861136436137,-1.395414358448502,-1.3842426032533903,-1.3730708480582785,-1.361899092863167,-1.350727337668055,-1.3395555824729435,-1.3283838272778317,-1.31721207208272,-1.3060403168876082,-1.2948685616924966,-1.2836968064973848,-1.2725250513022732,-1.2613532961071614,-1.2501815409120498,-1.239009785716938,-1.2278380305218264,-1.2166662753267148,-1.205494520131603,-1.1943227649364911,-1.1831510097413793,-1.171979254546268,-1.1608074993511561,-1.1496357441560443,-1.1384639889609325,-1.127292233765821,-1.1161204785707093,-1.1049487233755975,-1.0937769681804856,-1.0826052129853743,-1.0714334577902624,-1.0602617025951506,-1.0490899474000392,-1.0379181922049274,-1.0267464370098156,-1.0155746818147038,-1.0044029266195924,-0.9932311714244806,-0.9820594162293688,-0.9708876610342569,-0.9597159058391456,-0.9485441506440337,-0.9373723954489219,-0.9262006402538101,-0.9150288850586987,-0.9038571298635869,-0.8926853746684751,-0.8815136194733633,-0.8703418642782519,-0.8591701090831401,-0.8479983538880282,-0.8368265986929164,-0.825654843497805,-0.8144830883026932,-0.8033113331075814,-0.7921395779124696,-0.7809678227173582,-0.7697960675222464,-0.7586243123271346,-0.7474525571320227,-0.7362808019369114,-0.7251090467417995,-0.7139372915466877,-0.7027655363515759,-0.6915937811564645,-0.6804220259613527,-0.6692502707662409,-0.6580785155711291,-0.6469067603760177,-0.6357350051809059,-0.624563249985794,-0.6133914947906822,-0.6022197395955708,-0.591047984400459,-0.5798762292053472,-0.5687044740102354,-0.557532718815124,-0.5463609636200122,-0.5351892084249004,-0.5240174532297885,-0.5128456980346772,-0.5016739428395653,-0.4905021876444535,-0.4793304324493417,-0.4681586772542303,-0.4569869220591185,-0.4458151668640067,-0.43464341166889486,-0.4234716564737835,-0.41229990127867167,-0.40112814608355984,-0.389956390888448,-0.37878463569333665,-0.3676128804982248,-0.356441125303113,-0.3452693701080016,-0.3340976149128898,-0.322925859717778,-0.31175410452266616,-0.3005823493275548,-0.28941059413244297,-0.27823883893733115,-0.2670670837422193,-0.25589532854710795,-0.24472357335199613,-0.2335518181568843,-0.22238006296177248,-0.2112083077666611,-0.2000365525715493,-0.18886479737643747,-0.17769304218132564,-0.16652128698621427,-0.15534953179110245,-0.14417777659599063,-0.1330060214008788,-0.12183426620576743,-0.1106625110106556,-0.09949075581554379,-0.08831900062043196,-0.07714724542532059,-0.07714724542532059,-0.06597549023020877,-0.054803735035096945,-0.043631979839985124,-0.03246022464487375,-0.021288469449761926,-0.010116714254650105,0.0010550409404617156,0.012226796135573093,0.023398551330684914,0.034570306525796735,0.045742061720908556,0.05691381691601993,0.06808557211113175,0.07925732730624357,0.0904290825013554,0.10160083769646677,0.1127725928915786,0.12394434808669041,0.13511610328180224,0.1462878584769136,0.15745961367202543,0.16863136886713725,0.17980312406224908,0.19097487925736045,0.20214663445247227,0.2133183896475841,0.22449014484269592,0.2356619000378073,0.2468336552329191,0.25800541042803093,0.26917716562314276,0.28034892081825413,0.29152067601336595,0.3026924312084778,0.3138641864035896,0.325035941598701,0.3362076967938128,0.3473794519889246,0.358551207184036,0.3697229623791478,0.38089471757425963,0.39206647276937145,0.40323822796448283,0.41440998315959465,0.4255817383547065,0.4367534935498183,0.44792524874492967,0.4590970039400415,0.4702687591351533,0.48144051433026513,0.4926122695253765,0.5037840247204883,0.5149557799156002,0.526127535110712,0.5372992903058234,0.5484710455009352,0.559642800696047,0.5708145558911588,0.5819863110862702,0.593158066281382,0.6043298214764938,0.6155015766716057,0.626673331866717,0.6378450870618289,0.6490168422569407,0.6601885974520525,0.6713603526471639,0.6825321078422757,0.6937038630373875,0.6937038630373875,0.7048756182324993,0.7160473734276107,0.7272191286227225,0.7383908838178344,0.7495626390129462,0.7607343942080576,0.7719061494031694,0.7830779045982807,0.7942496597933926,0.8054214149885044,0.8165931701836162,0.827764925378728,0.8389366805738399,0.8501084357689517,0.8612801909640635,0.8724519461591744,0.8836237013542863,0.8947954565493981,0.9059672117445099,0.9171389669396217,0.9283107221347335,0.9394824773298454,0.9506542325249572,0.9618259877200681,0.9729977429151799,0.9841694981102918,0.9953412533054036,1.0065130085005154,1.0176847636956272,1.028856518890739,1.0400282740858509,1.0512000292809618,1.0623717844760736,1.0735435396711854,1.0847152948662973,1.095887050061409,1.107058805256521,1.1182305604516327,1.1294023156467436,1.1405740708418555,1.1405740708418555,1.1517458260369673,1.1629175812320791,1.174089336427191,1.1852610916223028,1.1964328468174146,1.2076046020125264,1.2187763572076373,1.2299481124027491,1.241119867597861,1.2522916227929728,1.2634633779880846,1.2746351331831964,1.2858068883783083,1.29697864357342,1.308150398768531,1.3193221539636428,1.3304939091587547,1.3416656643538665,1.3528374195489783,1.3640091747440901,1.375180929939202,1.3863526851343138,1.3975244403294247,1.4086961955245365,1.4198679507196483,1.4310397059147602,1.442211461109872,1.4533832163049838,1.4645549715000956,1.4757267266952074,1.4868984818903184,1.4980702370854302,1.509241992280542,1.5204137474756538,1.5315855026707657,1.5427572578658775,1.5539290130609893,1.5651007682561011,1.576272523451212,1.5874442786463239,1.5986160338414357,1.6097877890365475,1.6209595442316593,1.6321312994267712,1.643303054621883,1.6544748098169948,1.6656465650121057,1.6768183202072175,1.6879900754023294,1.6991618305974412,1.710333585792553,1.7215053409876648,1.7326770961827767,1.7438488513778885,1.7550206065729994,1.7661923617681112,1.777364116963223,1.7885358721583349,1.7997076273534467,1.8108793825485585,1.8220511377436703,1.8332228929387813,1.844394648133893,1.855566403329005,1.8667381585241167,1.8779099137192286,1.8890816689143404,1.9002534241094522,1.911425179304564,1.922596934499675,1.9337686896947868,1.9449404448898986,1.9561122000850104,1.9672839552801222,1.978455710475234,1.9896274656703459,2.0007992208654577,2.0119709760605686,2.0231427312556804,2.0343144864507923,2.045486241645904,2.056657996841016,2.0678297520361277,2.0790015072312396,2.0901732624263514,2.1013450176214623,2.112516772816574,2.123688528011686,2.1348602832067978,2.1460320384019096,2.1572037935970214,2.1683755487921332,2.179547303987245,2.190719059182356,2.201890814377468,2.2130625695725796,2.2242343247676915,2.2354060799628033,2.246577835157915,2.257749590353027,2.2689213455481387,2.2800931007432497,2.2912648559383615,2.3024366111334733,2.313608366328585,2.324780121523697,2.3359518767188088,2.3471236319139206,2.3582953871090324,2.3694671423041433,2.380638897499255,2.391810652694367,2.402982407889479,2.4141541630845906,2.4253259182797025,2.4364976734748143,2.447669428669926,2.458841183865037,2.470012939060149,2.4811846942552607],\n", "\"..quantile..\":[0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0]\n", "}\n", "}],\n", "\"theme\":{\n", "\"name\":\"light\"\n", "}\n", "};\n", " var plotContainer = document.getElementById(\"kat13g\");\n", " window.letsPlotCall(function() {{\n", " LetsPlot.buildPlotFromProcessedSpecs(plotSpec, -1, -1, plotContainer);\n", " }});\n", " })(); \n", " </script>" ] }, "execution_count": 10, "metadata": {}, "output_type": "execute_result" } ], "source": [ "// Set constant colors to disable the grouping.\n", "\n", "val pHist = p +\n", " ggmarginal(\"tr\", layer=geomHistogram(fill = \"gray\", color = \"white\")) +\n", " ggmarginal(\"tr\", layer=geomDensity(fill = \"rgba(0,0,0,0)\", color = \"red\"))\n", "pHist" ] }, { "cell_type": "code", "execution_count": 11, "id": "unexpected-puppy", "metadata": {}, "outputs": [ { "data": { "text/html": [ " <div id=\"v214vN\"></div>\n", " <script type=\"text/javascript\" data-lets-plot-script=\"plot\">\n", " (function() {\n", " var plotSpec={\n", "\"mapping\":{\n", "\"x\":\"x\",\n", "\"y\":\"y\",\n", "\"color\":\"c\",\n", "\"fill\":\"c\"\n", "},\n", "\"data\":{\n", "\"c\":[\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\"],\n", "\"x\":[-1.9916840159046605,-1.0075162996095373,-2.9342023076903163,-1.7873258311921325,-3.409217544304976,-2.480863002096072,-2.471581151627473,-0.32827704584102024,-1.8472523272826318,-2.695725360213746,-0.3017163666293359,-1.217472983097933,-2.935479929458831,-3.4682620880582524,-2.429840494651523,-1.725791091360943,-0.3255246382128676,-2.2788866004312136,-2.100227160924781,-2.1764991709470314,-0.600262699196467,-1.9788537304121487,-1.202758922154671,-2.550404249095059,-3.517833965147413,-1.56701853537953,-1.3548787252056806,-0.6796245860291459,-1.9917426211791438,-0.5081499017565352,-2.2100755963839407,-3.383333287503253,-3.119597912009442,-3.216211068649772,-3.2753015918821156,-2.1264877948164695,-0.9380496908518272,-2.189390951053853,-1.4949953432837932,-3.047420344920938,-2.9454966963263116,-1.5067116120644957,-2.5461817670043043,-3.343425293274475,-2.7730477520434444,-2.3124669259750124,-1.3544885895026204,-4.097586632416848,-2.184864991150839,-0.7834533131434125,-2.757670400803873,-0.3768477775782759,-0.3342325599332583,-3.480789237308624,-1.9321709536328557,-2.125782643824663,-2.3102102976956482,-2.9065101567190252,-1.7680414266314775,-1.2464355070761552,-1.631920876352924,-0.018851161004153072,-1.1503858854135303,-1.777972910034191,-3.3491469886254395,-1.6550247850994073,-1.9380829258899566,-2.531870142075045,-0.4792488446155443,-2.0320093234604433,-3.036924893699646,-3.0103129261545236,-2.7613488069459766,-2.106290132080556,-2.0889134432832916,-2.976043895107677,-2.3587165519066358,-1.8797457536588003,-3.197047344124212,-3.9431485438899787,-0.9208334621449787,-0.6664256742609336,-2.164684715924407,-3.2954663040397123,-2.1733004192817837,-3.7910413160044802,-1.996609080085542,-2.357822269562097,-1.2143970421866717,-2.0674603874479542,-3.589610795422122,-1.176113593363933,-1.1954549579937606,-1.0101313777776335,-2.102957347575047,-1.2854858340934086,-1.9422798663041265,-2.84707644659407,-0.9034578056108349,-3.0208908757236923,-1.5386266149417964,-1.0090540905658774,-1.3530117863264641,-1.2517640027885957,-1.623347206443961,-2.336709864443785,-2.734623909681472,-1.8611617909605653,-1.2828335798487773,1.059639683960783,-1.6547162936893907,-2.4609338931378373,-2.3996522969098817,-2.791185954400288,-2.5755394722760094,-1.662516426544272,-1.089834569692961,-2.2109770610217243,-4.6887749295551,-0.967490296331182,-2.5128432538878576,-0.5264554955966494,-3.21761926274364,-1.6286311569471434,-2.8346243579296106,-1.5862928011059392,-0.7083111023241342,-2.265179970446102,-3.8695188787862116,-3.1719399100356673,-1.9558428118094349,-1.7792620814108433,-1.7357020034341932,-1.7899965263713897,-3.655037567505465,-2.2310337795469217,-2.6134706425467233,-2.8821281991721475,-1.375047151031843,-2.524275193352156,-2.8221292865062266,-3.0361908827683504,1.0802331983126647,-3.1251901089922374,-2.9224895193902003,-1.5554313057186255,-2.174398009814226,-2.680066934620616,-2.0104693451475293,-3.533885020658057,-1.7114636792660778,-1.9082156524504228,-0.9936885177668526,-1.4581536015836596,-2.3206443436604367,-3.4226868390533793,-3.03018955805262,0.44435893220628664,-1.6647861378091482,-2.7266740385398407,-1.875123836331528,-1.5165081579402808,-2.6795114810038343,-0.15992691006981197,-1.3997506416103176,-2.088101997338163,-1.7971768554951997,-2.6704579878969126,-0.2552595989615716,-1.1293598560165996,-3.0439722565053273,-1.5642269547679462,-2.7821188392473815,-2.6559193751807353,-3.853412786628808,-2.3928065710494275,-1.1483332248208367,-1.3380853879355676,-2.3824844784759205,-1.844315687201735,-0.7286502579457728,-2.3682000791310274,-2.6280841198440696,-0.8862973032084238,-2.0914808125153526,-3.541918336457906,-4.501942712601659,-2.7295715915980434,-0.9907266652074451,-0.4557922631165827,-1.223644993669864,-3.202889231890694,-2.027534810681654,-2.3421078844711674,-1.7384411737066636,-3.0036142140627065,-0.12865504319671617,-2.3203994396973915,-1.6987937193717166,-0.6451294705671953,-0.8600499920651158,0.23497881248192748,6.940197237480745,-3.3272480708563723,1.078972739651165,0.013704585222007874,1.959778771676608,0.41992544007439087,1.0838269133335803,3.4203527142465133,4.159431381858504,0.04200971526922635,3.257886923344845,-1.484185876646513,1.136877838698118,0.5584161260420574,1.0667982255741462,-3.9433413732228315,2.493209631007051,0.6070404414438705,-4.723013531523171,-5.396072218705628,-0.04535216439165606,4.851777849378708,1.2191503124644736,2.4230679353323,3.1666110961177227,-0.6700327913492858,7.6850310085694975,-3.707761396401177,-2.3977460120627296,3.639480616394358,0.06444076774018785,-3.5076169792966705,3.292038777356018,-8.290699005770232,-1.474379527854876,4.133434536948832,2.3970436421665915,-2.364390823990212,-3.903455674062425,-1.0754624260005095,-1.5476699276460377,-1.564304004246823,2.7951323774092125,2.5092796133017576,0.52222890567738,3.260205005447835,2.232810023654782,0.15467672498335858,-3.634679405297695,4.446492241170248,-4.866129396133796,5.738308133085385,2.2956483465515496,-1.1685512821180248,-5.118065333693593,-1.2594031226515385,1.6914730120338168,-3.3094341388369024,-1.5240299733234677,2.7227315961075935,-0.26115643960410195,2.9662346408908578,-3.296514795008936,-1.5990436397722294,-3.0323696041114507,2.6856284852923835,4.483188308965124,-0.9843877524649651,2.413893891378675,-3.1846134764968697,2.0065162361396376,2.6513916833948836,-3.843378528446383,-2.004407189856,2.3110743028397285,-1.819329696161072,-0.8314503829299126,1.3652266160222837,-0.3846061871785503,2.1360398698810923,1.2614097998454092,-3.6615543024336477,-1.8021489969166329,0.46104123552119025,5.645363310554736,-2.0601741702799874,3.504645010191167,-0.14820692667416258,0.2644707661115462,-0.5519463447552573,4.7430521213250545,-0.6458147283721903,1.5798235947665782,-3.4511513358715673,4.278966722984352,7.413055358487136,1.608873949659954,-1.4358451550012017,5.300000257688481,-1.3069599733229327,3.582549506258025,-1.1686817575278612,-1.0369356897795885,0.4953625660644009,-3.8479932024069545,-4.786156906104934,-1.048498980749837,-0.45390883101864693,-2.392815698290904,2.3128068204836123,-5.111244582928757,2.40083629543184,-0.40178520704236587,6.418295956128011,-1.1334536929616124,-0.16297559474508289,-3.4698133003700047,3.103841780136832,5.164516804238253,-0.8013282702420941,1.5397536686996482,-3.1773630861787767,1.3351105398600067,-5.195725978700607,-2.3416494222414737,-3.930484274790691,2.2018414683117093,1.424911426943275,1.3195918148723864,2.7215002227925216,1.3086311075979276,2.499300386214229,1.8417710491177839,-5.640694179918953,0.42301531362107325,-0.9391140372135933,-0.5075602100889359,3.8263727390319056,-0.6563896077821363,-3.155630589839599,-3.2620290041544124,-0.7335306284031367,-1.1567569100179929,-3.3407282796350994,1.7362564331985109,-1.614090554090166,1.6261813906113056,-1.3619540782023258,-2.3055571038076788,1.4166220483169552,2.759726947171873,-2.0151168384534413,-2.2020290713749393,2.7398343942711008,0.8344191563686024,5.2405441584189685,-1.8216714794932558,6.237745129080784,2.5709486040794287,0.2062084601641947,1.2114665197505545,-1.2596760977541992,1.6825816796841122,-1.8493080849746282,5.848546540694381,1.2406416299766976,0.5853529302830079,1.5490709802597287,-4.826892725858458,-4.389247413557729,-1.054967146886617,-3.293649644408222,3.1064528754363634,-1.4862422751175104,5.100028824023687,-0.12474604162293143,-8.861445954008323,1.67682256782614,1.8485522763038398,3.6110213672357574,-0.22264095092476183,2.9771564864852023,-0.563869495730703,1.0156565923777996,4.150075778501257,0.6166158811539818,-5.6597729016531115,2.0929223934128456,-1.3412590630543884,-0.8260570312152808,5.047501316304559,2.823018822307693,-1.0586667108536627,-2.380323342210341,0.49655882865336853,-0.4377105541001931,-4.677945174193813,-2.174703660314566],\n", "\"y\":[0.7514360510306208,-0.8516752671352597,1.210112615656036,-1.0311768499201683,0.15604685710669963,-0.08675908955557088,-0.5854440836497788,-1.406108230202983,-0.7282679823198847,-0.37919316447355234,-0.7143226510117506,-0.9461617683249052,1.6947379457993959,1.0127919692500957,-0.6833417468938692,-0.4016661751233255,-0.23699648191880462,-0.918724707609321,-0.3095515226765643,-0.4955960612193032,-2.5086953401539698,-0.7720407280085881,-0.7233074061148261,0.627063556149064,1.5005981606663068,-0.9391331874902079,0.23221147228132055,-1.1732715996379708,-0.12740139843070197,-0.7350178544001142,0.135844951504016,0.5133825349491091,0.6284964321746815,1.4960929416652144,0.580054729200791,-0.6005899845117544,-0.32857278377012844,0.03524130701424208,-1.605609901347195,0.8022960083947999,1.1833541472340148,-0.22631854800995108,0.5698310868309039,1.951192351723379,1.2940555613081706,0.045112700478526446,-0.320341900354649,1.9126945923972118,0.5569323176292618,-0.9027515422044294,0.6258640091514431,-2.024238095954958,-1.2307264557133855,1.7525985416839593,-0.521251010389423,0.5133048067614205,0.1615954554678199,0.07900998845355223,-0.29155323449535653,-0.5719180705966365,0.09124648302779259,-2.538072540678598,-0.5357989639826282,-0.049284415599786635,-0.21001182083492398,-0.06350695284374627,0.6992725607042934,0.6915797540939244,-1.6593517520367669,-0.7705457774933029,1.0931219572738133,1.327411319400762,2.120903888205527,0.4502823328487616,-0.6220495779548431,-0.5506626847302556,0.8006084368210764,-0.7023552253919396,1.0471015886435802,0.8511568206609248,-1.0470541528872142,-1.1789334059276249,-1.0918482440311257,0.5657829543194306,0.2563820157313081,1.6303120947994945,0.2942724706392622,0.1712589423066858,-0.6429078483244388,-1.2756942500305963,1.4992822639368275,-0.3647891607027672,-0.410362289580208,-0.4619635877994601,0.19175582314239506,-1.2270836616855327,-1.284489547714436,0.2542295522869925,-1.0166405618389132,1.2822930375285613,-0.46903463187864186,-0.7488812286380635,-0.3460082237633007,-0.7211972156510177,-1.0041306835071286,0.07546740289663033,0.3341430169397538,0.11700780405372835,-1.1245132357352328,-3.227582210446822,-0.5890756348409841,-1.1590787127133249,-0.5763849103839725,0.45013876142442477,0.5349181698703063,-0.23231720076209417,-0.4907455588555049,1.1457128488141588,2.2194059749694963,0.15292041692378977,-0.5459590890040814,-1.4409370375357655,0.1636319670033799,-0.2283635670400512,0.4569602849903955,0.6041095147681309,-0.28361732878778484,0.055240852814989805,1.627715151474149,1.671608387200685,-0.4456543297602226,-0.10683005502725222,0.14877673135115457,-0.1573959959894512,1.2261949820560465,-0.09113775885050929,0.6781506133066553,1.511067117253397,-0.6115744736527607,0.07619010962609873,2.481184694255261,0.526981231902472,-2.1792049977746224,1.8363993785276986,-0.21173531716420124,0.37522929394285764,0.46359254002287675,0.469896648577915,0.019591259067233635,1.3287127547634068,-0.1922457629295637,1.049480490952028,0.019921806105617224,-0.43590711743023675,-0.09901045309716783,0.7075702782126695,1.758490814131384,-1.3419002115879255,-0.20647504014347096,0.7706898040141046,-0.14232250207474773,-1.119449318194966,-0.3756397227411178,-2.380210494652406,-0.18084083373073767,-0.06365165353117348,0.6519729495677491,0.8248030827479522,-1.5817901527268599,-0.03987167493535948,0.15495374759882263,-0.8233845201476875,1.4356785179671065,0.5292053398011151,0.785624954023344,-0.7420227725352879,-0.0891170377981419,0.32875327870629245,0.6798745011049996,-0.1952766934572675,-1.14778800876353,0.4105473740499304,0.07290390130778768,-0.8413589219424127,-0.055507789228325236,0.8486182527185637,2.082562652811129,1.632659801287815,-0.3615943720744511,-2.3091995609558307,-0.9821989166581606,0.12748470408535473,-0.4851244731677765,0.5371897212727343,0.2673305516399948,0.41507114632601855,-1.984245886068487,-0.4799818468375152,-0.7790687004174005,-0.2264758368824017,0.3944211178561692,1.096563864860156,0.44843718104464547,1.4725933265151867,1.1617428139116597,1.02490689016451,1.1629355116102642,1.2880458018730754,1.1568539331153014,0.5961849436098987,1.310346670682165,1.3757813076512408,1.1852434266640992,0.9516030864205988,1.265885637978102,1.0851667533903173,0.7446926987542952,0.43864767999195375,0.9597068565543073,1.1904020559539938,1.3068839002310715,1.4659897445301466,0.5334568538362112,0.9884726086923126,0.6730659308697651,1.2018221180405442,0.9870076561035276,1.1587653508393503,1.194262531762642,0.9868954294225155,1.0313339378239257,0.7054163995111842,0.3487372959715421,0.824951655717745,1.2689140390207365,1.1323391509858292,1.1169585628200667,0.7918102602112692,0.941537379892377,1.0379154745303403,1.3746984387787335,1.0843200939679885,1.0420244806759795,0.6993772235972635,0.9940684417173953,1.5104857615163694,1.1005129919694996,1.2882227444419518,0.7590710447257968,0.9026339983726912,0.7782868449403093,1.2945728328066564,0.9590709429893044,1.2063409258618623,0.9386868261593742,0.7991411127326365,1.1874744873522407,0.3466362958057281,1.0942629360152532,1.3791358566852787,1.0781466358913985,1.01501709302225,1.133831229418923,1.1243901743738753,1.4852389765342442,0.395088137526015,1.0412827052413636,1.028238486111707,0.5129904021500463,1.0410975317005104,1.3547607899904979,1.0209251253327472,0.5159526470084244,0.2669888614000664,0.6843162520098145,0.8173160864594077,1.1655216537136388,0.2917721612409845,1.2203679498206539,1.2628830023552298,0.5525737363740604,0.9810764242866571,0.7540689296288894,0.7775957527516854,0.943690806587815,1.3063307431099234,1.2395346720084448,0.8781770148782277,1.466091447875112,0.6381986370218908,0.6318465358016351,0.9192085975785196,0.8581325277903438,0.8926103984349046,0.9716115644102896,0.985750221880518,1.1128876227950115,1.1766430346609622,1.4557516038829885,0.8620158575172928,1.2705093972668136,1.273732523743385,1.0916925347895432,1.3176728177021262,1.355220245092919,1.180318075243335,1.3969513942304461,0.41544138879657544,1.5239748614889548,0.8202356368969725,1.0088566878911747,0.6241787580540265,0.8387318454056243,1.3253847696806889,1.3667929002736015,0.8133954238332177,1.0150599273154148,1.556879123677696,1.795167671655943,0.6883540121346565,0.209578787962319,0.9393363673880815,1.4511101241685636,0.9141953377233073,1.4398314932652934,0.5024820694922552,1.130771838419379,0.8083079493293561,0.8273385713223176,0.7518875232716461,1.055260253431205,1.2970733561674912,1.10655760476615,1.3246532930809933,0.7332529220959476,0.4379053382645095,1.0437202336572777,0.7593692812823941,0.8621131931779116,1.010539106367529,1.57583014706212,0.8303316449424236,1.2017062221533448,0.5002098474101171,1.1134094243622075,0.8180951660408329,1.009832397189975,0.6823907157662841,0.9793129502779757,1.1267760119134578,1.541327773311052,0.1521296846507022,1.441033289006471,1.2961356117530547,0.7438697539361666,0.8729412528447531,0.21044213706477288,1.2623245582079976,0.6195648887655529,1.1802834617118465,1.1568383582801696,1.3437358633022134,0.9336230459208963,1.3268421599111742,1.2024679143785426,0.665057639577564,0.8016666164003942,0.5282830645675138,1.385581026330979,1.0964968569573459,0.6121082011492862,0.8543456822612379,0.890522741240486,1.2599025309736,1.0977456823797014,1.072126600529319,1.0968483285520338,1.193602329770524,0.9448789731795862,1.1278209827218282,0.5425713977186137,0.6024283697782952,1.150206091291158,0.991057572445549,0.5076474971739946,1.2477871358729742,0.8827510597672101,1.070369743253259,0.9097027585319167,1.3884258867840797,0.7068678935913685,1.376848036308112,1.2171682569340134,1.233622483426429,0.9552990734069042,1.3462444839775385,1.282637755029423,1.4320985485395012,0.5160004238578895,1.0719121018807956]\n", "},\n", "\"kind\":\"plot\",\n", "\"scales\":[{\n", "\"aesthetic\":\"color\",\n", "\"values\":[\"#394449\",\"#F7C443\"]\n", "},{\n", "\"aesthetic\":\"fill\",\n", "\"values\":[\"#394449\",\"#F7C443\"]\n", "}],\n", "\"layers\":[{\n", "\"mapping\":{\n", "},\n", "\"stat\":\"identity\",\n", "\"position\":\"identity\",\n", "\"geom\":\"point\",\n", "\"data\":{\n", "}\n", "},{\n", "\"mapping\":{\n", "\"y\":\"..density..\"\n", "},\n", "\"stat\":\"bin\",\n", "\"margin_side\":\"t\",\n", "\"color\":\"white\",\n", "\"marginal\":true,\n", "\"position\":\"stack\",\n", "\"geom\":\"histogram\",\n", "\"fill\":\"gray\",\n", "\"data\":{\n", "\"x\":[-8.958886318343502,-8.381598122093566,-7.8043099258436275,-7.227021729593691,-6.6497335333437535,-6.072445337093816,-5.4951571408438795,-4.917868944593942,-4.340580748344005,-3.763292552094067,-3.1860043558441298,-2.6087161595941932,-2.031427963344256,-1.4541397670943184,-0.8768515708443818,-0.2995633745944435,0.27772482165549306,0.8550130179054296,1.432301214155368,2.0095894104053045,2.586877606655243,3.1641658029051793,3.741453999155116,4.318742195405054,4.896030391654991,5.473318587904927,6.050606784154866,6.627894980404802,7.205183176654739,7.782471372904677],\n", "\"..density..\":[0.004532686938109123,0.004532686938109123,0.0,0.0,0.0,0.0,0.013598060814327368,0.0407941824429821,0.013598060814327368,0.08612105182407334,0.18584016446247403,0.1994382252768014,0.24929778159600177,0.24023240771978352,0.17224210364814668,0.1178498603908372,0.06799030407163684,0.04985955631920035,0.0815883648859642,0.045326869381091234,0.0815883648859642,0.0407941824429821,0.022663434690545617,0.027196121628654736,0.022663434690545617,0.01813074775243649,0.009065373876218245,0.004532686938109123,0.009065373876218245,0.004532686938109123]\n", "}\n", "},{\n", "\"mapping\":{\n", "\"x\":\"..density..\"\n", "},\n", "\"stat\":\"bin\",\n", "\"orientation\":\"y\",\n", "\"margin_side\":\"r\",\n", "\"color\":\"white\",\n", "\"marginal\":true,\n", "\"position\":\"stack\",\n", "\"geom\":\"histogram\",\n", "\"fill\":\"gray\",\n", "\"data\":{\n", "\"y\":[-3.2612005044411787,-3.062027970210462,-2.8628554359797445,-2.6636829017490276,-2.46451036751831,-2.2653378332875933,-2.066165299056876,-1.866992764826159,-1.667820230595442,-1.4686476963647248,-1.2694751621340077,-1.0703026279032906,-0.8711300936725737,-0.6719575594418563,-0.4727850252111394,-0.27361249098042206,-0.07443995674970516,0.12473257748101174,0.3239051117117291,0.523077645942446,0.7222501801731633,0.9214227144038802,1.1205952486345976,1.319767782865315,1.5189403170960314,1.7181128513267487,1.917285385557466,2.1164579197881825,2.3156304540189,2.5148029882496172],\n", "\"..density..\":[0.013137688269987955,0.0,0.0,0.0,0.039413064809963864,0.02627537653997591,0.02627537653997591,0.0,0.039413064809963864,0.02627537653997591,0.0919638178899157,0.13137688269987954,0.11823919442989159,0.22334070058979524,0.22334070058979524,0.24961607712977116,0.19706532404981933,0.289029141939735,0.22334070058979524,0.43354371290960253,0.5517829073394941,0.6043336604194459,0.7619859196593013,0.5386452190695061,0.24961607712977116,0.10510150615990364,0.039413064809963864,0.02627537653997591,0.013137688269987955,0.013137688269987955]\n", "}\n", "},{\n", "\"mapping\":{\n", "},\n", "\"stat\":\"density\",\n", "\"margin_side\":\"t\",\n", "\"color\":\"red\",\n", "\"marginal\":true,\n", "\"position\":\"identity\",\n", "\"geom\":\"density\",\n", "\"fill\":\"rgba(0,0,0,0)\",\n", "\"data\":{\n", "\"x\":[-8.861445954008323,-8.829065372868248,-8.796684791728175,-8.7643042105881,-8.731923629448026,-8.699543048307953,-8.667162467167879,-8.634781886027804,-8.602401304887731,-8.570020723747657,-8.537640142607582,-8.50525956146751,-8.472878980327435,-8.44049839918736,-8.408117818047288,-8.375737236907213,-8.343356655767138,-8.310976074627064,-8.278595493486991,-8.246214912346916,-8.213834331206842,-8.181453750066769,-8.149073168926694,-8.11669258778662,-8.084312006646547,-8.051931425506472,-8.019550844366398,-7.987170263226324,-7.9547896820862505,-7.922409100946177,-7.890028519806102,-7.8576479386660285,-7.825267357525954,-7.79288677638588,-7.7605061952458065,-7.728125614105732,-7.695745032965658,-7.663364451825585,-7.63098387068551,-7.598603289545436,-7.566222708405363,-7.533842127265288,-7.501461546125214,-7.469080964985141,-7.436700383845066,-7.404319802704992,-7.371939221564919,-7.339558640424844,-7.30717805928477,-7.274797478144697,-7.242416897004622,-7.210036315864548,-7.177655734724474,-7.1452751535844,-7.1128945724443255,-7.080513991304252,-7.048133410164178,-7.015752829024104,-6.98337224788403,-6.950991666743956,-6.918611085603882,-6.886230504463808,-6.853849923323734,-6.82146934218366,-6.789088761043586,-6.756708179903512,-6.724327598763438,-6.691947017623364,-6.65956643648329,-6.627185855343216,-6.594805274203142,-6.562424693063068,-6.530044111922994,-6.49766353078292,-6.465282949642846,-6.432902368502772,-6.400521787362697,-6.368141206222624,-6.33576062508255,-6.303380043942475,-6.2709994628024015,-6.238618881662328,-6.206238300522253,-6.1738577193821795,-6.141477138242106,-6.109096557102031,-6.076715975961958,-6.044335394821884,-6.011954813681809,-5.979574232541736,-5.947193651401662,-5.914813070261587,-5.882432489121514,-5.85005190798144,-5.817671326841365,-5.785290745701292,-5.752910164561218,-5.720529583421143,-5.68814900228107,-5.655768421140996,-5.623387840000921,-5.591007258860847,-5.558626677720774,-5.526246096580699,-5.493865515440625,-5.461484934300552,-5.4291043531604775,-5.396723772020403,-5.364343190880329,-5.3319626097402555,-5.299582028600181,-5.267201447460107,-5.2348208663200335,-5.202440285179959,-5.170059704039885,-5.1376791228998115,-5.105298541759737,-5.072917960619663,-5.04053737947959,-5.008156798339515,-4.975776217199441,-4.943395636059368,-4.911015054919293,-4.878634473779219,-4.846253892639145,-4.813873311499071,-4.781492730358997,-4.749112149218923,-4.716731568078849,-4.684350986938775,-4.651970405798701,-4.619589824658627,-4.587209243518553,-4.554828662378479,-4.522448081238405,-4.4900675000983306,-4.457686918958257,-4.425306337818183,-4.392925756678109,-4.360545175538035,-4.328164594397961,-4.295784013257887,-4.263403432117813,-4.231022850977739,-4.198642269837665,-4.166261688697591,-4.133881107557517,-4.101500526417443,-4.069119945277369,-4.036739364137294,-4.004358782997221,-3.971978201857147,-3.9395976207170724,-3.9072170395769987,-3.874836458436925,-3.8424558772968505,-3.8100752961567768,-3.777694715016703,-3.7453141338766285,-3.712933552736555,-3.68055297159648,-3.6481723904564065,-3.615791809316333,-3.5834112281762582,-3.5510306470361845,-3.518650065896111,-3.4862694847560363,-3.4538889036159626,-3.421508322475889,-3.3891277413358143,-3.3567471601957406,-3.324366579055667,-3.2919859979155923,-3.2596054167755186,-3.227224835635444,-3.1948442544953704,-3.1624636733552967,-3.130083092215222,-3.0977025110751484,-3.0653219299350747,-3.032941348795,-3.0005607676549264,-2.9681801865148527,-2.935799605374778,-2.9034190242347044,-2.8710384430946307,-2.838657861954556,-2.8062772808144825,-2.773896699674408,-2.741516118534334,-2.7091355373942605,-2.676754956254186,-2.644374375114112,-2.644374375114112,-2.6119937939740385,-2.579613212833964,-2.5472326316938902,-2.5148520505538166,-2.482471469413742,-2.4500908882736683,-2.4177103071335937,-2.38532972599352,-2.3529491448534463,-2.3205685637133717,-2.288187982573298,-2.2558074014332243,-2.2234268202931498,-2.191046239153076,-2.1586656580130024,-2.126285076872928,-2.093904495732854,-2.0615239145927804,-2.029143333452706,-1.9967627523126321,-1.9643821711725575,-1.9320015900324838,-1.8996210088924101,-1.8672404277523356,-1.8348598466122619,-1.8024792654721882,-1.7700986843321136,-1.73771810319204,-1.7053375220519662,-1.6729569409118916,-1.640576359771818,-1.6081957786317442,-1.5758151974916697,-1.543434616351596,-1.5110540352115214,-1.4786734540714477,-1.4786734540714477,-1.446292872931374,-1.4139122917912994,-1.3815317106512257,-1.349151129511152,-1.3167705483710774,-1.2843899672310037,-1.25200938609093,-1.2196288049508555,-1.1872482238107818,-1.1548676426707072,-1.1224870615306335,-1.0901064803905598,-1.0577258992504852,-1.0253453181104115,-0.9929647369703378,-0.9605841558302632,-0.9282035746901895,-0.8958229935501159,-0.8634424124100413,-0.8310618312699667,-0.7986812501298939,-0.7663006689898193,-0.7339200878497447,-0.7015395067096719,-0.6691589255695973,-0.6367783444295227,-0.6043977632894499,-0.5720171821493754,-0.5396366010093008,-0.507256019869228,-0.4748754387291534,-0.4424948575890788,-0.410114276449006,-0.3777336953089314,-0.34535311416885683,-0.31297253302878403,-0.28059195188870945,-0.24821137074863486,-0.21583078960856206,-0.18345020846848747,-0.1510696273284129,-0.11868904618833831,-0.0863084650482655,-0.05392788390819092,-0.02154730276811634,0.010833278371956467,0.04321385951203105,0.07559444065210563,0.10797502179217844,0.14035560293225302,0.1727361840723276,0.2051167652124004,0.237497346352475,0.2698779274925496,0.3022585086326224,0.33463908977269696,0.33463908977269696,0.36701967091277155,0.39940025205284435,0.43178083319291893,0.4641614143329935,0.4965419954730663,0.5289225766131409,0.5613031577532155,0.5936837388932883,0.6260643200333629,0.6584449011734375,0.690825482313512,0.7232060634535848,0.7555866445936594,0.787967225733734,0.8203478068738068,0.8527283880138814,0.885108969153956,0.9174895502940288,0.9498701314341034,0.982250712574178,1.0146312937142508,1.0470118748543253,1.0793924559944,1.1117730371344727,1.1441536182745473,1.176534199414622,1.2089147805546947,1.2412953616947693,1.2736759428348439,1.3060565239749167,1.3384371051149913,1.3708176862550658,1.4031982673951386,1.4355788485352132,1.4679594296752878,1.5003400108153624,1.5327205919554352,1.5651011730955098,1.5974817542355844,1.6298623353756572,1.6622429165157317,1.6946234976558063,1.7270040787958791,1.7593846599359537,1.7917652410760283,1.824145822216101,1.8565264033561757,1.8889069844962503,1.921287565636323,1.9536681467763977,1.9860487279164722,2.018429309056545,2.0508098901966196,2.083190471336694,2.115571052476767,2.1479516336168416,2.180332214756916,2.212712795896989,2.2450933770370636,2.277473958177138,2.309854539317211,2.3422351204572855,2.37461570159736,2.4069962827374347,2.4393768638775075,2.471757445017582,2.5041380261576567,2.5365186072977295,2.568899188437804,2.6012797695778787,2.6336603507179515,2.666040931858026,2.6984215129981006,2.7308020941381734,2.763182675278248,2.7955632564183226,2.8279438375583954,2.86032441869847,2.8927049998385446,2.9250855809786174,2.957466162118692,2.9898467432587665,3.0222273243988393,3.054607905538914,3.0869884866789885,3.1193690678190613,3.151749648959136,3.1841302300992105,3.216510811239285,3.248891392379358,3.2812719735194324,3.313652554659507,3.34603313579958,3.3784137169396544,3.410794298079729,3.443174879219802,3.4755554603598764,3.507936041499951,3.540316622640024,3.5726972037800984,3.605077784920173,3.6374583660602458,3.6698389472003203,3.702219528340395,3.7346001094804677,3.7669806906205423,3.799361271760617,3.8317418529006897,3.8641224340407643,3.896503015180839,3.9288835963209117,3.9612641774609862,3.993644758601061,4.026025339741135,4.058405920881208,4.090786502021283,4.123167083161357,4.15554766430143,4.187928245441505,4.220308826581579,4.252689407721652,4.285069988861727,4.317450570001801,4.349831151141874,4.382211732281949,4.414592313422023,4.446972894562096,4.479353475702171,4.511734056842245,4.544114637982318,4.576495219122393,4.608875800262467,4.64125638140254,4.673636962542615,4.706017543682689,4.738398124822762,4.770778705962837,4.803159287102911,4.835539868242986,4.867920449383059,4.900301030523133,4.932681611663208,4.9650621928032805,4.997442773943355,5.02982335508343,5.0622039362235025,5.094584517363577,5.126965098503652,5.1593456796437245,5.191726260783799,5.224106841923874,5.2564874230639465,5.288868004204021,5.321248585344096,5.353629166484168,5.386009747624243,5.418390328764318,5.45077090990439,5.483151491044465,5.51553207218454,5.547912653324612,5.580293234464687,5.6126738156047615,5.645054396744834,5.677434977884909,5.7098155590249835,5.742196140165058,5.774576721305131,5.8069573024452055,5.83933788358528,5.871718464725353,5.904099045865427,5.936479627005502,5.968860208145575,6.001240789285649,6.033621370425724,6.066001951565797,6.098382532705871,6.130763113845946,6.163143694986019,6.195524276126093,6.227904857266168,6.260285438406241,6.292666019546315,6.32504660068639,6.357427181826463,6.389807762966537,6.422188344106612,6.454568925246685,6.486949506386759,6.519330087526834,6.551710668666908,6.584091249806981,6.616471830947056,6.64885241208713,6.681232993227203,6.713613574367278,6.745994155507352,6.778374736647425,6.8107553177875,6.843135898927574,6.875516480067647,6.907897061207722,6.940277642347796,6.972658223487869,7.005038804627944,7.037419385768018,7.069799966908091,7.102180548048166,7.13456112918824,7.166941710328315,7.199322291468389,7.2317028726084605,7.264083453748535,7.29646403488861,7.328844616028684,7.361225197168759,7.393605778308833,7.425986359448904,7.458366940588979,7.490747521729054,7.523128102869128,7.555508684009203,7.587889265149277,7.620269846289348,7.652650427429423,7.6850310085694975],\n", "\"y\":[0.002774266233353328,0.0028293699014910983,0.0028786905246669307,0.00292191272484284,0.002958758049664274,0.002988987654709035,0.003012404607872889,0.0030288557925024417,0.0030382333904044956,0.0030404759303852857,0.00303556889248736,0.003023544862593906,0.003004483236568085,0.00297850947760249,0.002945793934986628,0.0029065502370704205,0.0028610332758139683,0.0028095368049603714,0.002752390678527741,0.0026899577609491602,0.0026226305447388243,0.0025508275159542623,0.00247498931186946,0.0023955747190687036,0.002313056563505798,0.002227917546833265,0.002140646085378412,0.002051732209422283,0.001961663580831564,0.0018709216865278266,0.0017799782637018138,0.0016892920100674113,0.0015993056288031633,0.0015104432531819327,0.0014231082903024032,0.0013376817169000357,0.0012545208530434294,0.001173958631750585,0.0010963033743403442,0.001021839072830267,9.508261720728072E-4,8.835028357563926E-4,8.200866720517476E-4,7.607768867122634E-4,7.057568239829515E-4,6.551968488615445E-4,6.092575181959158E-4,5.680929828827028E-4,5.318545591219493E-4,5.006944033320268E-4,4.747692229709093E-4,4.542439541609222E-4,4.392953366781035E-4,4.3011531753651E-4,4.2691421605496675E-4,4.29923585914687E-4,4.3939871326997067E-4,4.5562069442487633E-4,4.788980418948774E-4,5.095677737869424E-4,5.479959483000512E-4,5.945776127087937E-4,6.497361443729827E-4,7.139219700322637E-4,7.876106587994118E-4,8.713003937477311E-4,9.655088366703366E-4,0.001070769410331381,0.0011876270321774629,0.0013166333428670518,0.001458341481935508,0.0016133004712696511,0.0017820492746482728,0.0019651106082542065,0.0021629845826354028,0.002376142260967521,0.002605019221560007,0.002850009214298021,0.0031114580011121595,0.0033896574696487126,0.003684840107152998,0.003997173918297202,0.004326757866445113,0.004673617912844235,0.005037703722692787,0.0054188861011813735,0.005816955216695166,0.006231619662609521,0.006662506403719195,0.0071091616484695195,0.007571052683910646,0.00804757070671089,0.008538034680605855,0.00904169624820471,0.009557745722921108,0.010085319184659372,0.01062350670040783,0.011171361687653574,0.011727911434071455,0.012292168780776847,0.012863144968080682,0.0134398636317077,0.014021375923444048,0.014606776712882996,0.015195221806162893,0.01578594609332231,0.016378282508275006,0.01697168165476833,0.017565731918556614,0.01816017985111269,0.01875495057442743,0.01935016792087881,0.01994617398800769,0.020543547756643576,0.02114312239356851,0.02174600083820163,0.022353569258000392,0.022967507950689435,0.023589799274176107,0.024222732198025846,0.024868903094334194,0.025531212421134715,0.026212856998185624,0.026917317632803316,0.0276483419217097,0.028409922132631604,0.02920626815529292,0.030041775603809887,0.030920989249406877,0.031848562061651105,0.03282921023574363,0.033867664680371,0.03496861953277373,0.036136678352621965,0.03737629872170678,0.03869173604026588,0.04008698736108901,0.041565736137837206,0.04313129878303002,0.04478657393304836,0.04653399530181433,0.048375488971464355,0.05031243591766966,0.052345640499978786,0.054475305564734115,0.0567010147111356,0.05902172216157003,0.061435750557315316,0.06394079687229731,0.06653394650299932,0.06921169545430005,0.07196998040140362,0.07480421626964162,0.07770934083922484,0.08067986575350616,0.08370993318930589,0.08679337733867806,0.08992378975527135,0.0930945875371758,0.09629908325363161,0.09953055547682528,0.10278231875349375,0.10604779184533081,0.10932056308290317,0.11259445171537974,0.11586356419783522,0.11912234443879388,0.12236561713219174,0.1255886234187299,0.1287870482598861,0.13195703906140066,0.1350952152491447,0.13819866867579142,0.141264954918137,0.14429207570846164,0.14727845292488356,0.15022289474113884,0.15312455470128905,0.15598288463547258,0.1587975824649792,0.161568536055063,0.1642957643588671,0.1669793571530178,0.1696194146929474,0.17221598861267517,0.1747690253592477,0.17727831338685768,0.17974343524117342,0.18216372554291188,0.18453823573414138,0.18686570628503893,0.18914454687720997,0.19137282488709778,0.19137282488709778,0.1935482622946935,0.19566824094414315,0.19772981588934338,0.19972973637451438,0.20166447383194405,0.20353025613109968,0.20532310718885952,0.20703889095278782,0.2086733587003795,0.2102221985582283,0.2116810861365111,0.21304573519532105,0.2143119473086953,0.2154756595672306,0.21653298945779859,0.21748027617525295,0.2183141177518717,0.2190314035309858,0.21962934165701728,0.22010548140023622,0.22045773027632135,0.22068436605407268,0.22078404386552056,0.2207557987380654,0.22059904395565635,0.22031356572358377,0.21989951465830518,0.21935739464963241,0.218688049648201,0.21789264891768173,0.21697267126067754,0.21592988868203222,0.2147663498963588,0.21348436402098991,0.21208648472464792,0.21057549502915943,0.21057549502915943,0.20895439288966006,0.20722637761089627,0.20539483709590356,0.20346333587069498,0.2014356037861585,0.19931552526717217,0.19710712895950766,0.19481457761719212,0.19244215807614498,0.18999427117286363,0.18747542148829546,0.18489020682495508,0.18224330735781727,0.17953947443444154,0.17678351903503342,0.17398029993674338,0.17113471165661476,0.16825167227270071,0.16533611124180134,0.16239295734416817,0.1594271268900259,0.15644351231982945,0.1534469713201959,0.15044231656116036,0.1474343061387939,0.144427634781571,0.14142692585054198,0.138436724133841,0.1354614894068106,0.13250559070138665,0.1295733012036592,0.12666879367764877,0.12379613629716373,0.12095928875659291,0.11816209852589747,0.11540829711483017,0.11270149621626693,0.11004518360796955,0.10744271870545045,0.10489732767511727,0.10241209803570982,0.09998997269638445,0.09763374340089358,0.09534604356849126,0.09312934054293916,0.0909859272809168,0.08891791353005724,0.0869272165646654,0.08501555156401766,0.08318442173416857,0.08143510828964359,0.07976866042653026,0.07818588543350788,0.07668733910242435,0.07527331661510457,0.07394384409805271,0.07394384409805271,0.07269867105117003,0.07153726387007148,0.07045880069326237,0.06946216781445602,0.06854595790562257,0.06770847029686643,0.06694771355379055,0.06626141058056977,0.06564700645658611,0.06510167918545134,0.06462235349711831,0.06420571779647034,0.06384824429555452,0.06354621230223216,0.06329573456658023,0.06309278650949916,0.06293323807761307,0.06281288788702719,0.06272749923840078,0.06267283750989085,0.06264470836565234,0.06263899615856765,0.06265170185938289,0.06267897981284118,0.06271717260675282,0.06276284334376826,0.06281280462891607,0.06286414362909995,0.06291424262343379,0.06296079454455936,0.06300181310931624,0.06303563725005898,0.06306092968272599,0.06307666958115479,0.06308213946543391,0.06307690655134769,0.06306079894414401,0.06303387718888541,0.06299640180762597,0.06294879755696797,0.0628916152249722,0.0628254918512271,0.06275111029603088,0.06266915910269699,0.06258029359028516,0.062485099082658195,0.06238405712450708,0.062277515457425194,0.062165662431488994,0.06204850641293331,0.06192586061975498,0.06179733367815446,0.061662326047653385,0.06152003231565706,0.06136944921732189,0.06120938909788821,0.06103849840593096,0.060855280690692466,0.06065812347774819,0.060445328317115694,0.06021514323833316,0.05996579680911693,0.059695532978399996,0.05940264589059502,0.05908551388492392,0.05874263194009224,0.058372641888418245,0.05797435980223709,0.05754680004613575,0.05708919558820557,0.05660101426877761,0.05608197083273927,0.05553203463832676,0.05495143305822636,0.05434065068517225,0.05370042454162747,0.05303173556962396,0.052335796740946225,0.051614038178577556,0.05086808971720481,0.05009976135360059,0.04931102204732793,0.04850397732930995,0.04768084616160127,0.04684393746768503,0.04599562672051063,0.04513833293710828,0.044274496385844506,0.04340655726705238,0.042536935581624705,0.04166801235675801,0.04080211235474866,0.03994148835066172,0.03908830702865988,0.03824463651533921,0.03741243554183983,0.03659354420480688,0.035789676279247826,0.03500241302356717,0.03423319840800902,0.03348333569175678,0.03275398527033371,0.032046163713032524,0.031360743909229834,0.030698456242053876,0.030059890707526397,0.02944549989668223,0.028855602757110743,0.02829038904884718,0.027749924407675507,0.027234155926917514,0.026742918166996713,0.026275939500853135,0.02583284870304998,0.025413181691542622,0.025016388333916346,0.024641839234702825,0.02428883242731385,0.023956599903218252,0.023644313922127232,0.023351093059904963,0.023076007965308527,0.022818086811992714,0.02257632044790208,0.022349667259565064,0.022137057783214974,0.0219373991074141,0.021749579122311746,0.021572470678269392,0.021404935720887672,0.021245829470168585,0.021094004708491564,0.020948316235301866,0.0208076255361053,0.02067080569990504,0.020536746603134357,0.020404360360092633,0.020272587020649123,0.020140400476374127,0.02000681451715828,0.01987088896264464,0.019731735777237785,0.019588525064789974,0.01944049082990556,0.01928693638760949,0.019127239302186978,0.018960855739436056,0.018787324124313814,0.01860626800775673,0.01841739806190539,0.018220513141507542,0.018015500370236057,0.01780233423327565,0.01758107468098373,0.017351864271876183,0.01711492440580321,0.016870550719185674,0.016619107732877218,0.016361022859007042,0.016096779885566848,0.015826912066197567,0.01555199494741647,0.015272639066358607,0.0149894826490858,0.014703184432873866,0.01441441672597202,0.01412385880558522,0.013832190739788917,0.013540087702326507,0.013248214831378304,0.012957222665049187,0.012667743168111159,0.012380386347033357,0.012095737434060908,0.011814354606528805,0.011536767195100392,0.011263474324502951,0.010994943922807886,0.010731612030489621,0.010473882338427467,0.010222125884636026,0.009976680842688651,0.00973785234033088,0.009505912254402749,0.009281098937581379,0.009063616843260855,0.008853636026718384,0.008651291513168026,0.008456682535962734,0.008269871660665187,0.008090883822570618,0.007919705316160272,0.007756282784551799,0.007600522264991872,0.007452288352552993,0.0073114035482468665,0.007177647859605843,0.007050758721323498,0.006930431300760254,0.006816319248047307,0.006708035943259836,0.006605156283837264,0.006507219044319128,0.006413729827807376,0.0063241646146720756,0.006237973899241281,0.006154587389939824,0.006073419232971427,0.0059938737045911504,0.005915351302708559,0.005837255155403913,0.005758997652317807,0.0056800071951428185,0.005599734955916523,0.005517661526748016,0.005433303342203075,0.005346218755957528,0.005256013656560072,0.005162346513205637,0.0050649327512093546,0.004963548368215036,0.00485803271582069,0.004748290386942366,0.0046342921664890326,0.004516075021361168,0.004393741124951123,0.004267455930728322],\n", "\"..quantile..\":[0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0]\n", "}\n", "},{\n", "\"mapping\":{\n", "},\n", "\"stat\":\"density\",\n", "\"orientation\":\"y\",\n", "\"margin_side\":\"r\",\n", "\"color\":\"red\",\n", "\"marginal\":true,\n", "\"position\":\"identity\",\n", "\"geom\":\"density\",\n", "\"fill\":\"rgba(0,0,0,0)\",\n", "\"data\":{\n", "\"x\":[0.004244749633347162,0.004260210924079288,0.004269509904791106,0.004272989444542826,0.004271065611105359,0.00426422660340112,0.004253030995854203,0.004238105303041119,0.004220140880169087,0.004199890181682518,0.0041781624066279405,0.004155818565225504,0.004133766006350295,0.004112952450283805,0.004094359575136381,0.004078996208761958,0.00406789118079764,0.004062085891686154,0.004062626657212674,0.004070556888250781,0.004086909166112438,0.00411269727418389,0.0041489082464530634,0.004196494493141641,0.004256366062988668,0.0043293831008277195,0.004416348557982396,0.004518001211692213,0.004635009048278183,0.00476796306306016,0.004917371528130681,0.005083654776948284,0.005267140552304183,0.005468059961501837,0.005686544079526152,0.005922621237525897,0.006176215030046224,0.006447143070093644,0.00673511651626117,0.007039740390771523,0.007360514701401723,0.00769683637384601,0.008048001994178676,0.008413211353740504,0.00879157178105275,0.009182103237344108,0.009583744144055358,0.009995357902381109,0.01041574005664597,0.010843626045237136,0.011277699475075871,0.01171660084836203,0.012158936663728177,0.01260328880814298,0.013048224151057766,0.013492304248530249,0.01393409506250323,0.014372176599169242,0.01480515237048686,0.015231658584487799,0.015650372973046903,0.01606002317027542,0.01645939456060249,0.01684733752286474,0.017222774005227193,0.01758470337538343,0.017932207501072012,0.018264455027317848,0.018580704828760286,0.018880308627743734,0.019162712781289143,0.01942745925239654,0.01967418579310669,0.019902625378135298,0.02011260493845478,0.02030404345371895,0.020476949470709372,0.020631418121852048,0.02076762772316733,0.020885836034658576,0.020986376268042402,0.021069652926831973,0.02113613756210816,0.02118636452389121,0.021220926782936887,0.021240471891147982,0.021245698140770077,0.021237350973319292,0.02121621967899022,0.02118313441636144,0.021138963570816714,0.021084611458512193,0.0210210163712322,0.02094914894637083,0.020870010835835968,0.020784633638161864,0.020694078049779508,0.020599433184447253,0.020501816004473216,0.020402370803706705,0.020302268680440813,0.020202706938404102,0.020104908355932212,0.02001012026714934,0.019919613404461564,0.019834680458720465,0.019756634321865075,0.019686805986460637,0.01962654208705267,0.019577202079349237,0.019540155064610057,0.01951677627792884,0.019508443270007347,0.01951653182220547,0.019542411643798826,0.01958744190819082,0.019652966691057126,0.019740310377830302,0.019850773110397357,0.01998562634327413,0.020146108577785392,0.020333421338933483,0.020548725453754173,0.020793137682177557,0.02106772774193187,0.021373515758102316,0.021711470155895484,0.022082506002298722,0.02248748378905441,0.022927208636081282,0.02340242988158763,0.02391384101304412,0.024462079882313553,0.025047729138946696,0.025671316808284387,0.02633331693584227,0.02703415021673592,0.0277741845287882,0.028553735290556683,0.029373065570832205,0.030232385884147134,0.03113185361734167,0.032071572045067456,0.03305158890696122,0.03407189453575163,0.035132419543351355,0.03623303209057684,0.037373534785027133,0.03855366127032179,0.03977307258780988,0.04103135340848686,0.04232800824768005,0.04366245778760668,0.045034035442732,0.046441984309578695,0.047885454645953576,0.049363502024233494,0.05087508629922958,0.052419071523195464,0.05399422692876963,0.05559922908521319,0.05723266531442132,0.05889303843119614,0.06057877284755389,0.062288222053903,0.06401967746130509,0.06577137855932919,0.06754152431387529,0.06932828569944738,0.07112981923137517,0.07294428133611632,0.07476984337264522,0.07660470709570703,0.07844712033292874,0.0802953926329683,0.08214791063145442,0.08400315287578687,0.0858597038491643,0.08771626693863199,0.08957167610152951,0.09142490599939024,0.0932750803879151,0.0951214785758216,0.0969635397937599,0.09880086534658737,0.10063321845755414,0.10246052175069108,0.10428285235722935,0.10610043467244427,0.10791363083013245,0.1097229290021931,0.11152892966971997,0.1133323300488123,0.11513390688830206,0.11693449788702096,0.11873498200455382,0.12053625896105315,0.12233922823822536,0.12414476790467117,0.12595371359418128,0.1277668379651882,0.1295848309634019,0.13140828119780149,0.13323765872283613,0.13507329949727392,0.13691539176301307,0.13876396455591253,0.1406188785258543,0.14247981920553054,0.14434629282754766,0.14621762474810196,0.148092960493517,0.14997126940405447,0.15185135080844814,0.1537318426232582,0.15561123223408313,0.15748786948159524,0.15935998154477726,0.1612256894871852,0.16308302620992396,0.16492995553761364,0.16676439215118344,0.16858422207394866,0.17038732341516177,0.1721715870779661,0.17393493714628927,0.17567535067743012,0.17739087664355616,0.1790796537856806,0.1807399271674216,0.18237006324246618,0.18396856327860903,0.18553407501190897,0.18706540243633565,0.18856151366663101,0.19002154684440759,0.19144481408916397,0.19283080352637635,0.19417917945361876,0.19548978073230128,0.19676261751671434,0.19799786645328316,0.1991958645009845,0.20035710153858222,0.2014822119355689,0.202571965271366,0.203627256391551,0.20464909499062067,0.2056385949083286,0.20659696332110772,0.2075254900018202,0.20842553681035172,0.209298527564813,0.21014593842860863,0.21096928893291111,0.21177013373745124,0.2125500552154557,0.21331065693140977,0.2140535580634525,0.2147803888059693,0.2154927867725894,0.21619239440556093,0.21688085738454874,0.21755982401636612,0.2182309455770725,0.2188958775692146,0.21955628184970016,0.22021382957770733,0.22087020492699191,0.2215271095027451,0.22218626739949068,0.22284943083316555,0.22351838627722778,0.22419496102909175,0.2248810301292434,0.22557852355076122,0.2262894335715851,0.22701582223564384,0.2277598288018307,0.22852367707193205,0.22930968248007727,0.23012025881730602,0.23095792445582813,0.23095792445582813,0.23182530792874753,0.2327251527129782,0.23366032105622186,0.2346337966837495,0.23564868621786925,0.23670821914285456,0.23781574615134474,0.2389747357151136,0.24018876873417383,0.24146153113357477,0.2427968042972447,0.24419845325280748,0.24567041255036098,0.24721666981159568,0.2488412469627854,0.2505481792057634,0.2523414918241189,0.25422517496683494,0.2562031565974082,0.2582792738421531,0.26045724301577944,0.26274062864427533,0.2651328118435121,0.26763695844562146,0.2702559872930419,0.2729925391411637,0.2758489466238869,0.27882720574135716,0.28192894932520324,0.2851554229233378,0.28850746352371237,0.2919854815044171,0.295589446156514,0.29931887507652144,0.303172827668332,0.307149902930475,0.31124824163524606,0.3154655329325755,0.3197990253351311,0.3242455419634795,0.3288014998529159,0.3334629330482721,0.3382255191414067,0.34308460883955255,0.348035258092847,0.3530722622573943,0.35819019172738015,0.3633834284369711,0.36864620261080794,0.3739726291313427,0.3793567428924293,0.38479253252148593,0.39027397187701746,0.3957950487640084,0.4013497903558858,0.40693228486775807,0.4125366990902704,0.4181572914656861,0.4237884204662256,0.4294245481180052,0.43506023860056525,0.4406901519404325,0.4463090329059405,0.4519116952980463,0.45749300191671,0.46304784056307285,0.4685710965129553,0.47405762196574375,0.47950220303359764,0.47950220303359764,0.48489952488808413,0.49024413572397263,0.4955304102325653,0.5007525132988325,0.5059043646477942,0.5109796051656201,0.5159715656100229,0.5208732384028046,0.5256772531652179,0.5303758566146725,0.5349608973897831,0.5394238163106672,0.543755642513513,0.5479469958238558,0.5519880956525628,0.5558687766136338,0.5595785109744561,0.5631064379585873,0.566441399829557,0.5695719845928929,0.5724865750638584,0.5751734039613988,0.5776206146057673,0.5798163267193034,0.5817487067579822,0.5834060421365123,0.5847768186528619,0.5858498003698299,0.5866141111722526,0.5870593171891876,0.5871755092511908,0.5869533845438295,0.5863843266199443,0.5854604829446579,0.5841748391686081,0.5825212893558821,0.5804947014331662,0.5780909771750689,0.5753071060966561,0.5721412126871575,0.5721412126871575,0.5685925964876212,0.564661764589039,0.5603504562051641,0.5556616590547749,0.5505996173705596,0.5451698314349374,0.539379048626116,0.5332352460393924,0.5267476048283382,0.5199264764870639,0.5127833413676046,0.5053307597947253,0.49758231620361393,0.48955255678341536,0.4812569211609226,0.47271166870363507,0.4639338000595877,0.4549409745825861,0.4457514243157861,0.43638386522383493,0.42685740637411335,0.41719145777118866,0.4074056375455045,0.39751967918792425,0.38755333950629184,0.37752630795894576,0.3674581179936527,0.35736806098896506,0.3472751033590945,0.3371978073434638,0.3271542559586244,0.317161982543705,0.30723790528152467,0.2973982670263994,0.28765858071712447,0.27803358060004035,0.2685371794330711,0.25918243178765754,0.24998150351208803,0.24094564736736385,0.23208518479590126,0.22340949373449287,0.21492700233651,0.2066451884246739,0.19857058445524417,0.190708787737503,0.18306447561920725,0.17564142531950108,0.168442538065805,0.1614698671705278,0.15472464966721486,0.1482073411139126,0.14191765316408714,0.13585459350228696,0.1300165077427227,0.12440112289385909,0.11900559200074445,0.1138265395887904,0.10886010754782444,0.10410200111301733,0.09954753461942181,0.09519167672892064,0.09102909485197314,0.0870541985112801,0.0832611814199304,0.07964406207241496,0.07619672267269496,0.0729129462489904,0.06978645182980822,0.06681092757969856,0.06398006181609758,0.06128757185021946,0.05872723061514487,0.05629289106296158,0.05397850832996491,0.05177815968452654,0.04968606228630693,0.04769658879806694,0.04580428090250249,0.04400386078637885,0.04229024066286688,0.04065853041051576,0.03910404341382198,0.03762230069599704,0.036209033439385904,0.03486018399313437,0.03357190547121462,0.032340560046852714,0.03116271605178536,0.030035143990638356,0.02895481158204955,0.027918877938952473,0.026924687000657158,0.025969760328978374,0.025051789379621853,0.024168627358304433,0.023318280768604028,0.022498900755281884,0.021708774342757545,0.020946315663537267,0.02021005726570238,0.019498641582076297,0.018810812636450923,0.018145408054330882,0.01750135143712712,0.016877645149712767,0.016273363561859003,0.01568764677444059,0.015119694851588523,0.014568762570329961,0.014034154689856153,0.013515221733561362,0.013011356268553452,0.012521989659603033,0.01204658926760097,0.011584656056653203,0.011135722569049702,0.010699351223572311,0.01027513288999739,0.009862685691222417],\n", "\"y\":[-3.227582210446822,-3.2164104552517103,-3.205238700056599,-3.194066944861487,-3.1828951896663753,-3.1717234344712635,-3.160551679276152,-3.1493799240810403,-3.1382081688859285,-3.1270364136908166,-3.1158646584957053,-3.1046929033005934,-3.0935211481054816,-3.08234939291037,-3.0711776377152584,-3.0600058825201466,-3.048834127325035,-3.037662372129923,-3.0264906169348116,-3.0153188617396998,-3.004147106544588,-2.992975351349476,-2.9818035961543647,-2.970631840959253,-2.959460085764141,-2.9482883305690293,-2.937116575373918,-2.925944820178806,-2.9147730649836943,-2.9036013097885824,-2.892429554593471,-2.8812577993983592,-2.8700860442032474,-2.8589142890081356,-2.8477425338130242,-2.8365707786179124,-2.8253990234228006,-2.8142272682276888,-2.8030555130325774,-2.7918837578374656,-2.7807120026423537,-2.769540247447242,-2.7583684922521305,-2.7471967370570187,-2.736024981861907,-2.724853226666795,-2.7136814714716837,-2.702509716276572,-2.69133796108146,-2.6801662058863487,-2.668994450691237,-2.657822695496125,-2.646650940301013,-2.6354791851059014,-2.62430742991079,-2.613135674715678,-2.6019639195205664,-2.590792164325455,-2.579620409130343,-2.5684486539352314,-2.5572768987401195,-2.5461051435450077,-2.5349333883498963,-2.5237616331547845,-2.5125898779596727,-2.5014181227645613,-2.4902463675694495,-2.4790746123743377,-2.467902857179226,-2.456731101984114,-2.4455593467890027,-2.434387591593891,-2.423215836398779,-2.4120440812036676,-2.400872326008556,-2.389700570813444,-2.378528815618332,-2.3673570604232204,-2.356185305228109,-2.345013550032997,-2.3338417948378853,-2.322670039642774,-2.311498284447662,-2.3003265292525503,-2.2891547740574385,-2.2779830188623267,-2.2668112636672153,-2.2556395084721035,-2.2444677532769917,-2.2332959980818803,-2.2221242428867685,-2.2109524876916566,-2.199780732496545,-2.188608977301433,-2.1774372221063216,-2.16626546691121,-2.1550937117160984,-2.1439219565209866,-2.132750201325875,-2.121578446130763,-2.110406690935651,-2.0992349357405393,-2.088063180545428,-2.076891425350316,-2.0657196701552047,-2.054547914960093,-2.043376159764981,-2.0322044045698693,-2.0210326493747575,-2.0098608941796456,-1.9986891389845343,-1.9875173837894224,-1.9763456285943108,-1.965173873399199,-1.9540021182040874,-1.9428303630089756,-1.931658607813864,-1.9204868526187522,-1.9093150974236406,-1.8981433422285288,-1.8869715870334172,-1.8757998318383053,-1.8646280766431937,-1.853456321448082,-1.8422845662529703,-1.8311128110578585,-1.819941055862747,-1.808769300667635,-1.7975975454725235,-1.7864257902774119,-1.7752540350823,-1.7640822798871885,-1.7529105246920766,-1.741738769496965,-1.7305670143018532,-1.7193952591067416,-1.7082235039116298,-1.6970517487165182,-1.6858799935214064,-1.6747082383262948,-1.663536483131183,-1.6523647279360714,-1.6411929727409595,-1.630021217545848,-1.6188494623507361,-1.6076777071556245,-1.5965059519605127,-1.585334196765401,-1.5741624415702893,-1.5629906863751777,-1.5518189311800659,-1.5406471759849543,-1.5294754207898424,-1.5183036655947308,-1.507131910399619,-1.4959601552045074,-1.4847884000093956,-1.473616644814284,-1.4624448896191722,-1.4512731344240606,-1.4401013792289488,-1.4289296240338372,-1.4177578688387253,-1.4065861136436137,-1.395414358448502,-1.3842426032533903,-1.3730708480582785,-1.361899092863167,-1.350727337668055,-1.3395555824729435,-1.3283838272778317,-1.31721207208272,-1.3060403168876082,-1.2948685616924966,-1.2836968064973848,-1.2725250513022732,-1.2613532961071614,-1.2501815409120498,-1.239009785716938,-1.2278380305218264,-1.2166662753267148,-1.205494520131603,-1.1943227649364911,-1.1831510097413793,-1.171979254546268,-1.1608074993511561,-1.1496357441560443,-1.1384639889609325,-1.127292233765821,-1.1161204785707093,-1.1049487233755975,-1.0937769681804856,-1.0826052129853743,-1.0714334577902624,-1.0602617025951506,-1.0490899474000392,-1.0379181922049274,-1.0267464370098156,-1.0155746818147038,-1.0044029266195924,-0.9932311714244806,-0.9820594162293688,-0.9708876610342569,-0.9597159058391456,-0.9485441506440337,-0.9373723954489219,-0.9262006402538101,-0.9150288850586987,-0.9038571298635869,-0.8926853746684751,-0.8815136194733633,-0.8703418642782519,-0.8591701090831401,-0.8479983538880282,-0.8368265986929164,-0.825654843497805,-0.8144830883026932,-0.8033113331075814,-0.7921395779124696,-0.7809678227173582,-0.7697960675222464,-0.7586243123271346,-0.7474525571320227,-0.7362808019369114,-0.7251090467417995,-0.7139372915466877,-0.7027655363515759,-0.6915937811564645,-0.6804220259613527,-0.6692502707662409,-0.6580785155711291,-0.6469067603760177,-0.6357350051809059,-0.624563249985794,-0.6133914947906822,-0.6022197395955708,-0.591047984400459,-0.5798762292053472,-0.5687044740102354,-0.557532718815124,-0.5463609636200122,-0.5351892084249004,-0.5240174532297885,-0.5128456980346772,-0.5016739428395653,-0.4905021876444535,-0.4793304324493417,-0.4681586772542303,-0.4569869220591185,-0.4458151668640067,-0.43464341166889486,-0.4234716564737835,-0.41229990127867167,-0.40112814608355984,-0.389956390888448,-0.37878463569333665,-0.3676128804982248,-0.356441125303113,-0.3452693701080016,-0.3340976149128898,-0.322925859717778,-0.31175410452266616,-0.3005823493275548,-0.28941059413244297,-0.27823883893733115,-0.2670670837422193,-0.25589532854710795,-0.24472357335199613,-0.2335518181568843,-0.22238006296177248,-0.2112083077666611,-0.2000365525715493,-0.18886479737643747,-0.17769304218132564,-0.16652128698621427,-0.15534953179110245,-0.14417777659599063,-0.1330060214008788,-0.12183426620576743,-0.1106625110106556,-0.09949075581554379,-0.08831900062043196,-0.07714724542532059,-0.07714724542532059,-0.06597549023020877,-0.054803735035096945,-0.043631979839985124,-0.03246022464487375,-0.021288469449761926,-0.010116714254650105,0.0010550409404617156,0.012226796135573093,0.023398551330684914,0.034570306525796735,0.045742061720908556,0.05691381691601993,0.06808557211113175,0.07925732730624357,0.0904290825013554,0.10160083769646677,0.1127725928915786,0.12394434808669041,0.13511610328180224,0.1462878584769136,0.15745961367202543,0.16863136886713725,0.17980312406224908,0.19097487925736045,0.20214663445247227,0.2133183896475841,0.22449014484269592,0.2356619000378073,0.2468336552329191,0.25800541042803093,0.26917716562314276,0.28034892081825413,0.29152067601336595,0.3026924312084778,0.3138641864035896,0.325035941598701,0.3362076967938128,0.3473794519889246,0.358551207184036,0.3697229623791478,0.38089471757425963,0.39206647276937145,0.40323822796448283,0.41440998315959465,0.4255817383547065,0.4367534935498183,0.44792524874492967,0.4590970039400415,0.4702687591351533,0.48144051433026513,0.4926122695253765,0.5037840247204883,0.5149557799156002,0.526127535110712,0.5372992903058234,0.5484710455009352,0.559642800696047,0.5708145558911588,0.5819863110862702,0.593158066281382,0.6043298214764938,0.6155015766716057,0.626673331866717,0.6378450870618289,0.6490168422569407,0.6601885974520525,0.6713603526471639,0.6825321078422757,0.6937038630373875,0.6937038630373875,0.7048756182324993,0.7160473734276107,0.7272191286227225,0.7383908838178344,0.7495626390129462,0.7607343942080576,0.7719061494031694,0.7830779045982807,0.7942496597933926,0.8054214149885044,0.8165931701836162,0.827764925378728,0.8389366805738399,0.8501084357689517,0.8612801909640635,0.8724519461591744,0.8836237013542863,0.8947954565493981,0.9059672117445099,0.9171389669396217,0.9283107221347335,0.9394824773298454,0.9506542325249572,0.9618259877200681,0.9729977429151799,0.9841694981102918,0.9953412533054036,1.0065130085005154,1.0176847636956272,1.028856518890739,1.0400282740858509,1.0512000292809618,1.0623717844760736,1.0735435396711854,1.0847152948662973,1.095887050061409,1.107058805256521,1.1182305604516327,1.1294023156467436,1.1405740708418555,1.1405740708418555,1.1517458260369673,1.1629175812320791,1.174089336427191,1.1852610916223028,1.1964328468174146,1.2076046020125264,1.2187763572076373,1.2299481124027491,1.241119867597861,1.2522916227929728,1.2634633779880846,1.2746351331831964,1.2858068883783083,1.29697864357342,1.308150398768531,1.3193221539636428,1.3304939091587547,1.3416656643538665,1.3528374195489783,1.3640091747440901,1.375180929939202,1.3863526851343138,1.3975244403294247,1.4086961955245365,1.4198679507196483,1.4310397059147602,1.442211461109872,1.4533832163049838,1.4645549715000956,1.4757267266952074,1.4868984818903184,1.4980702370854302,1.509241992280542,1.5204137474756538,1.5315855026707657,1.5427572578658775,1.5539290130609893,1.5651007682561011,1.576272523451212,1.5874442786463239,1.5986160338414357,1.6097877890365475,1.6209595442316593,1.6321312994267712,1.643303054621883,1.6544748098169948,1.6656465650121057,1.6768183202072175,1.6879900754023294,1.6991618305974412,1.710333585792553,1.7215053409876648,1.7326770961827767,1.7438488513778885,1.7550206065729994,1.7661923617681112,1.777364116963223,1.7885358721583349,1.7997076273534467,1.8108793825485585,1.8220511377436703,1.8332228929387813,1.844394648133893,1.855566403329005,1.8667381585241167,1.8779099137192286,1.8890816689143404,1.9002534241094522,1.911425179304564,1.922596934499675,1.9337686896947868,1.9449404448898986,1.9561122000850104,1.9672839552801222,1.978455710475234,1.9896274656703459,2.0007992208654577,2.0119709760605686,2.0231427312556804,2.0343144864507923,2.045486241645904,2.056657996841016,2.0678297520361277,2.0790015072312396,2.0901732624263514,2.1013450176214623,2.112516772816574,2.123688528011686,2.1348602832067978,2.1460320384019096,2.1572037935970214,2.1683755487921332,2.179547303987245,2.190719059182356,2.201890814377468,2.2130625695725796,2.2242343247676915,2.2354060799628033,2.246577835157915,2.257749590353027,2.2689213455481387,2.2800931007432497,2.2912648559383615,2.3024366111334733,2.313608366328585,2.324780121523697,2.3359518767188088,2.3471236319139206,2.3582953871090324,2.3694671423041433,2.380638897499255,2.391810652694367,2.402982407889479,2.4141541630845906,2.4253259182797025,2.4364976734748143,2.447669428669926,2.458841183865037,2.470012939060149,2.4811846942552607],\n", "\"..quantile..\":[0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0]\n", "}\n", "}],\n", "\"theme\":{\n", "\"name\":\"light\"\n", "}\n", "};\n", " var plotContainer = document.getElementById(\"v214vN\");\n", " window.letsPlotCall(function() {{\n", " LetsPlot.buildPlotFromProcessedSpecs(plotSpec, -1, -1, plotContainer);\n", " }});\n", " })(); \n", " </script>" ] }, "execution_count": 11, "metadata": {}, "output_type": "execute_result" } ], "source": [ "// Add marginal boxplots.\n", "// Make margins smaller using the parameter `size`.\n", "\n", "pHist + ggmarginal(\"lb\", size=0.03, layer=geomBoxplot(fill = \"white\", color = \"black\")) \n" ] }, { "cell_type": "code", "execution_count": 12, "id": "grave-dragon", "metadata": {}, "outputs": [ { "data": { "text/html": [ " <div id=\"twhVBF\"></div>\n", " <script type=\"text/javascript\" data-lets-plot-script=\"plot\">\n", " (function() {\n", " var plotSpec={\n", "\"mapping\":{\n", "\"x\":\"x\",\n", "\"y\":\"y\",\n", "\"color\":\"c\",\n", "\"fill\":\"c\"\n", "},\n", "\"data\":{\n", "\"c\":[\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\"],\n", "\"x\":[-1.9916840159046605,-1.0075162996095373,-2.9342023076903163,-1.7873258311921325,-3.409217544304976,-2.480863002096072,-2.471581151627473,-0.32827704584102024,-1.8472523272826318,-2.695725360213746,-0.3017163666293359,-1.217472983097933,-2.935479929458831,-3.4682620880582524,-2.429840494651523,-1.725791091360943,-0.3255246382128676,-2.2788866004312136,-2.100227160924781,-2.1764991709470314,-0.600262699196467,-1.9788537304121487,-1.202758922154671,-2.550404249095059,-3.517833965147413,-1.56701853537953,-1.3548787252056806,-0.6796245860291459,-1.9917426211791438,-0.5081499017565352,-2.2100755963839407,-3.383333287503253,-3.119597912009442,-3.216211068649772,-3.2753015918821156,-2.1264877948164695,-0.9380496908518272,-2.189390951053853,-1.4949953432837932,-3.047420344920938,-2.9454966963263116,-1.5067116120644957,-2.5461817670043043,-3.343425293274475,-2.7730477520434444,-2.3124669259750124,-1.3544885895026204,-4.097586632416848,-2.184864991150839,-0.7834533131434125,-2.757670400803873,-0.3768477775782759,-0.3342325599332583,-3.480789237308624,-1.9321709536328557,-2.125782643824663,-2.3102102976956482,-2.9065101567190252,-1.7680414266314775,-1.2464355070761552,-1.631920876352924,-0.018851161004153072,-1.1503858854135303,-1.777972910034191,-3.3491469886254395,-1.6550247850994073,-1.9380829258899566,-2.531870142075045,-0.4792488446155443,-2.0320093234604433,-3.036924893699646,-3.0103129261545236,-2.7613488069459766,-2.106290132080556,-2.0889134432832916,-2.976043895107677,-2.3587165519066358,-1.8797457536588003,-3.197047344124212,-3.9431485438899787,-0.9208334621449787,-0.6664256742609336,-2.164684715924407,-3.2954663040397123,-2.1733004192817837,-3.7910413160044802,-1.996609080085542,-2.357822269562097,-1.2143970421866717,-2.0674603874479542,-3.589610795422122,-1.176113593363933,-1.1954549579937606,-1.0101313777776335,-2.102957347575047,-1.2854858340934086,-1.9422798663041265,-2.84707644659407,-0.9034578056108349,-3.0208908757236923,-1.5386266149417964,-1.0090540905658774,-1.3530117863264641,-1.2517640027885957,-1.623347206443961,-2.336709864443785,-2.734623909681472,-1.8611617909605653,-1.2828335798487773,1.059639683960783,-1.6547162936893907,-2.4609338931378373,-2.3996522969098817,-2.791185954400288,-2.5755394722760094,-1.662516426544272,-1.089834569692961,-2.2109770610217243,-4.6887749295551,-0.967490296331182,-2.5128432538878576,-0.5264554955966494,-3.21761926274364,-1.6286311569471434,-2.8346243579296106,-1.5862928011059392,-0.7083111023241342,-2.265179970446102,-3.8695188787862116,-3.1719399100356673,-1.9558428118094349,-1.7792620814108433,-1.7357020034341932,-1.7899965263713897,-3.655037567505465,-2.2310337795469217,-2.6134706425467233,-2.8821281991721475,-1.375047151031843,-2.524275193352156,-2.8221292865062266,-3.0361908827683504,1.0802331983126647,-3.1251901089922374,-2.9224895193902003,-1.5554313057186255,-2.174398009814226,-2.680066934620616,-2.0104693451475293,-3.533885020658057,-1.7114636792660778,-1.9082156524504228,-0.9936885177668526,-1.4581536015836596,-2.3206443436604367,-3.4226868390533793,-3.03018955805262,0.44435893220628664,-1.6647861378091482,-2.7266740385398407,-1.875123836331528,-1.5165081579402808,-2.6795114810038343,-0.15992691006981197,-1.3997506416103176,-2.088101997338163,-1.7971768554951997,-2.6704579878969126,-0.2552595989615716,-1.1293598560165996,-3.0439722565053273,-1.5642269547679462,-2.7821188392473815,-2.6559193751807353,-3.853412786628808,-2.3928065710494275,-1.1483332248208367,-1.3380853879355676,-2.3824844784759205,-1.844315687201735,-0.7286502579457728,-2.3682000791310274,-2.6280841198440696,-0.8862973032084238,-2.0914808125153526,-3.541918336457906,-4.501942712601659,-2.7295715915980434,-0.9907266652074451,-0.4557922631165827,-1.223644993669864,-3.202889231890694,-2.027534810681654,-2.3421078844711674,-1.7384411737066636,-3.0036142140627065,-0.12865504319671617,-2.3203994396973915,-1.6987937193717166,-0.6451294705671953,-0.8600499920651158,0.23497881248192748,6.940197237480745,-3.3272480708563723,1.078972739651165,0.013704585222007874,1.959778771676608,0.41992544007439087,1.0838269133335803,3.4203527142465133,4.159431381858504,0.04200971526922635,3.257886923344845,-1.484185876646513,1.136877838698118,0.5584161260420574,1.0667982255741462,-3.9433413732228315,2.493209631007051,0.6070404414438705,-4.723013531523171,-5.396072218705628,-0.04535216439165606,4.851777849378708,1.2191503124644736,2.4230679353323,3.1666110961177227,-0.6700327913492858,7.6850310085694975,-3.707761396401177,-2.3977460120627296,3.639480616394358,0.06444076774018785,-3.5076169792966705,3.292038777356018,-8.290699005770232,-1.474379527854876,4.133434536948832,2.3970436421665915,-2.364390823990212,-3.903455674062425,-1.0754624260005095,-1.5476699276460377,-1.564304004246823,2.7951323774092125,2.5092796133017576,0.52222890567738,3.260205005447835,2.232810023654782,0.15467672498335858,-3.634679405297695,4.446492241170248,-4.866129396133796,5.738308133085385,2.2956483465515496,-1.1685512821180248,-5.118065333693593,-1.2594031226515385,1.6914730120338168,-3.3094341388369024,-1.5240299733234677,2.7227315961075935,-0.26115643960410195,2.9662346408908578,-3.296514795008936,-1.5990436397722294,-3.0323696041114507,2.6856284852923835,4.483188308965124,-0.9843877524649651,2.413893891378675,-3.1846134764968697,2.0065162361396376,2.6513916833948836,-3.843378528446383,-2.004407189856,2.3110743028397285,-1.819329696161072,-0.8314503829299126,1.3652266160222837,-0.3846061871785503,2.1360398698810923,1.2614097998454092,-3.6615543024336477,-1.8021489969166329,0.46104123552119025,5.645363310554736,-2.0601741702799874,3.504645010191167,-0.14820692667416258,0.2644707661115462,-0.5519463447552573,4.7430521213250545,-0.6458147283721903,1.5798235947665782,-3.4511513358715673,4.278966722984352,7.413055358487136,1.608873949659954,-1.4358451550012017,5.300000257688481,-1.3069599733229327,3.582549506258025,-1.1686817575278612,-1.0369356897795885,0.4953625660644009,-3.8479932024069545,-4.786156906104934,-1.048498980749837,-0.45390883101864693,-2.392815698290904,2.3128068204836123,-5.111244582928757,2.40083629543184,-0.40178520704236587,6.418295956128011,-1.1334536929616124,-0.16297559474508289,-3.4698133003700047,3.103841780136832,5.164516804238253,-0.8013282702420941,1.5397536686996482,-3.1773630861787767,1.3351105398600067,-5.195725978700607,-2.3416494222414737,-3.930484274790691,2.2018414683117093,1.424911426943275,1.3195918148723864,2.7215002227925216,1.3086311075979276,2.499300386214229,1.8417710491177839,-5.640694179918953,0.42301531362107325,-0.9391140372135933,-0.5075602100889359,3.8263727390319056,-0.6563896077821363,-3.155630589839599,-3.2620290041544124,-0.7335306284031367,-1.1567569100179929,-3.3407282796350994,1.7362564331985109,-1.614090554090166,1.6261813906113056,-1.3619540782023258,-2.3055571038076788,1.4166220483169552,2.759726947171873,-2.0151168384534413,-2.2020290713749393,2.7398343942711008,0.8344191563686024,5.2405441584189685,-1.8216714794932558,6.237745129080784,2.5709486040794287,0.2062084601641947,1.2114665197505545,-1.2596760977541992,1.6825816796841122,-1.8493080849746282,5.848546540694381,1.2406416299766976,0.5853529302830079,1.5490709802597287,-4.826892725858458,-4.389247413557729,-1.054967146886617,-3.293649644408222,3.1064528754363634,-1.4862422751175104,5.100028824023687,-0.12474604162293143,-8.861445954008323,1.67682256782614,1.8485522763038398,3.6110213672357574,-0.22264095092476183,2.9771564864852023,-0.563869495730703,1.0156565923777996,4.150075778501257,0.6166158811539818,-5.6597729016531115,2.0929223934128456,-1.3412590630543884,-0.8260570312152808,5.047501316304559,2.823018822307693,-1.0586667108536627,-2.380323342210341,0.49655882865336853,-0.4377105541001931,-4.677945174193813,-2.174703660314566],\n", "\"y\":[0.7514360510306208,-0.8516752671352597,1.210112615656036,-1.0311768499201683,0.15604685710669963,-0.08675908955557088,-0.5854440836497788,-1.406108230202983,-0.7282679823198847,-0.37919316447355234,-0.7143226510117506,-0.9461617683249052,1.6947379457993959,1.0127919692500957,-0.6833417468938692,-0.4016661751233255,-0.23699648191880462,-0.918724707609321,-0.3095515226765643,-0.4955960612193032,-2.5086953401539698,-0.7720407280085881,-0.7233074061148261,0.627063556149064,1.5005981606663068,-0.9391331874902079,0.23221147228132055,-1.1732715996379708,-0.12740139843070197,-0.7350178544001142,0.135844951504016,0.5133825349491091,0.6284964321746815,1.4960929416652144,0.580054729200791,-0.6005899845117544,-0.32857278377012844,0.03524130701424208,-1.605609901347195,0.8022960083947999,1.1833541472340148,-0.22631854800995108,0.5698310868309039,1.951192351723379,1.2940555613081706,0.045112700478526446,-0.320341900354649,1.9126945923972118,0.5569323176292618,-0.9027515422044294,0.6258640091514431,-2.024238095954958,-1.2307264557133855,1.7525985416839593,-0.521251010389423,0.5133048067614205,0.1615954554678199,0.07900998845355223,-0.29155323449535653,-0.5719180705966365,0.09124648302779259,-2.538072540678598,-0.5357989639826282,-0.049284415599786635,-0.21001182083492398,-0.06350695284374627,0.6992725607042934,0.6915797540939244,-1.6593517520367669,-0.7705457774933029,1.0931219572738133,1.327411319400762,2.120903888205527,0.4502823328487616,-0.6220495779548431,-0.5506626847302556,0.8006084368210764,-0.7023552253919396,1.0471015886435802,0.8511568206609248,-1.0470541528872142,-1.1789334059276249,-1.0918482440311257,0.5657829543194306,0.2563820157313081,1.6303120947994945,0.2942724706392622,0.1712589423066858,-0.6429078483244388,-1.2756942500305963,1.4992822639368275,-0.3647891607027672,-0.410362289580208,-0.4619635877994601,0.19175582314239506,-1.2270836616855327,-1.284489547714436,0.2542295522869925,-1.0166405618389132,1.2822930375285613,-0.46903463187864186,-0.7488812286380635,-0.3460082237633007,-0.7211972156510177,-1.0041306835071286,0.07546740289663033,0.3341430169397538,0.11700780405372835,-1.1245132357352328,-3.227582210446822,-0.5890756348409841,-1.1590787127133249,-0.5763849103839725,0.45013876142442477,0.5349181698703063,-0.23231720076209417,-0.4907455588555049,1.1457128488141588,2.2194059749694963,0.15292041692378977,-0.5459590890040814,-1.4409370375357655,0.1636319670033799,-0.2283635670400512,0.4569602849903955,0.6041095147681309,-0.28361732878778484,0.055240852814989805,1.627715151474149,1.671608387200685,-0.4456543297602226,-0.10683005502725222,0.14877673135115457,-0.1573959959894512,1.2261949820560465,-0.09113775885050929,0.6781506133066553,1.511067117253397,-0.6115744736527607,0.07619010962609873,2.481184694255261,0.526981231902472,-2.1792049977746224,1.8363993785276986,-0.21173531716420124,0.37522929394285764,0.46359254002287675,0.469896648577915,0.019591259067233635,1.3287127547634068,-0.1922457629295637,1.049480490952028,0.019921806105617224,-0.43590711743023675,-0.09901045309716783,0.7075702782126695,1.758490814131384,-1.3419002115879255,-0.20647504014347096,0.7706898040141046,-0.14232250207474773,-1.119449318194966,-0.3756397227411178,-2.380210494652406,-0.18084083373073767,-0.06365165353117348,0.6519729495677491,0.8248030827479522,-1.5817901527268599,-0.03987167493535948,0.15495374759882263,-0.8233845201476875,1.4356785179671065,0.5292053398011151,0.785624954023344,-0.7420227725352879,-0.0891170377981419,0.32875327870629245,0.6798745011049996,-0.1952766934572675,-1.14778800876353,0.4105473740499304,0.07290390130778768,-0.8413589219424127,-0.055507789228325236,0.8486182527185637,2.082562652811129,1.632659801287815,-0.3615943720744511,-2.3091995609558307,-0.9821989166581606,0.12748470408535473,-0.4851244731677765,0.5371897212727343,0.2673305516399948,0.41507114632601855,-1.984245886068487,-0.4799818468375152,-0.7790687004174005,-0.2264758368824017,0.3944211178561692,1.096563864860156,0.44843718104464547,1.4725933265151867,1.1617428139116597,1.02490689016451,1.1629355116102642,1.2880458018730754,1.1568539331153014,0.5961849436098987,1.310346670682165,1.3757813076512408,1.1852434266640992,0.9516030864205988,1.265885637978102,1.0851667533903173,0.7446926987542952,0.43864767999195375,0.9597068565543073,1.1904020559539938,1.3068839002310715,1.4659897445301466,0.5334568538362112,0.9884726086923126,0.6730659308697651,1.2018221180405442,0.9870076561035276,1.1587653508393503,1.194262531762642,0.9868954294225155,1.0313339378239257,0.7054163995111842,0.3487372959715421,0.824951655717745,1.2689140390207365,1.1323391509858292,1.1169585628200667,0.7918102602112692,0.941537379892377,1.0379154745303403,1.3746984387787335,1.0843200939679885,1.0420244806759795,0.6993772235972635,0.9940684417173953,1.5104857615163694,1.1005129919694996,1.2882227444419518,0.7590710447257968,0.9026339983726912,0.7782868449403093,1.2945728328066564,0.9590709429893044,1.2063409258618623,0.9386868261593742,0.7991411127326365,1.1874744873522407,0.3466362958057281,1.0942629360152532,1.3791358566852787,1.0781466358913985,1.01501709302225,1.133831229418923,1.1243901743738753,1.4852389765342442,0.395088137526015,1.0412827052413636,1.028238486111707,0.5129904021500463,1.0410975317005104,1.3547607899904979,1.0209251253327472,0.5159526470084244,0.2669888614000664,0.6843162520098145,0.8173160864594077,1.1655216537136388,0.2917721612409845,1.2203679498206539,1.2628830023552298,0.5525737363740604,0.9810764242866571,0.7540689296288894,0.7775957527516854,0.943690806587815,1.3063307431099234,1.2395346720084448,0.8781770148782277,1.466091447875112,0.6381986370218908,0.6318465358016351,0.9192085975785196,0.8581325277903438,0.8926103984349046,0.9716115644102896,0.985750221880518,1.1128876227950115,1.1766430346609622,1.4557516038829885,0.8620158575172928,1.2705093972668136,1.273732523743385,1.0916925347895432,1.3176728177021262,1.355220245092919,1.180318075243335,1.3969513942304461,0.41544138879657544,1.5239748614889548,0.8202356368969725,1.0088566878911747,0.6241787580540265,0.8387318454056243,1.3253847696806889,1.3667929002736015,0.8133954238332177,1.0150599273154148,1.556879123677696,1.795167671655943,0.6883540121346565,0.209578787962319,0.9393363673880815,1.4511101241685636,0.9141953377233073,1.4398314932652934,0.5024820694922552,1.130771838419379,0.8083079493293561,0.8273385713223176,0.7518875232716461,1.055260253431205,1.2970733561674912,1.10655760476615,1.3246532930809933,0.7332529220959476,0.4379053382645095,1.0437202336572777,0.7593692812823941,0.8621131931779116,1.010539106367529,1.57583014706212,0.8303316449424236,1.2017062221533448,0.5002098474101171,1.1134094243622075,0.8180951660408329,1.009832397189975,0.6823907157662841,0.9793129502779757,1.1267760119134578,1.541327773311052,0.1521296846507022,1.441033289006471,1.2961356117530547,0.7438697539361666,0.8729412528447531,0.21044213706477288,1.2623245582079976,0.6195648887655529,1.1802834617118465,1.1568383582801696,1.3437358633022134,0.9336230459208963,1.3268421599111742,1.2024679143785426,0.665057639577564,0.8016666164003942,0.5282830645675138,1.385581026330979,1.0964968569573459,0.6121082011492862,0.8543456822612379,0.890522741240486,1.2599025309736,1.0977456823797014,1.072126600529319,1.0968483285520338,1.193602329770524,0.9448789731795862,1.1278209827218282,0.5425713977186137,0.6024283697782952,1.150206091291158,0.991057572445549,0.5076474971739946,1.2477871358729742,0.8827510597672101,1.070369743253259,0.9097027585319167,1.3884258867840797,0.7068678935913685,1.376848036308112,1.2171682569340134,1.233622483426429,0.9552990734069042,1.3462444839775385,1.282637755029423,1.4320985485395012,0.5160004238578895,1.0719121018807956]\n", "},\n", "\"kind\":\"plot\",\n", "\"scales\":[{\n", "\"aesthetic\":\"color\",\n", "\"values\":[\"#394449\",\"#F7C443\"]\n", "},{\n", "\"aesthetic\":\"fill\",\n", "\"values\":[\"#394449\",\"#F7C443\"]\n", "}],\n", "\"layers\":[{\n", "\"mapping\":{\n", "},\n", "\"stat\":\"identity\",\n", "\"position\":\"identity\",\n", "\"geom\":\"point\",\n", "\"data\":{\n", "}\n", "},{\n", "\"mapping\":{\n", "},\n", "\"stat\":\"ydensity\",\n", "\"margin_side\":\"r\",\n", "\"color\":\"black\",\n", "\"trim\":false,\n", "\"x\":0.0,\n", "\"marginal\":true,\n", "\"margin_size\":0.4,\n", "\"position\":\"dodge\",\n", "\"geom\":\"violin\",\n", "\"data\":{\n", "\"c\":[\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\"],\n", "\"..x..\":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],\n", "\"y\":[-4.070745937905208,-4.056274128982275,-4.041802320059342,-4.027330511136409,-4.012858702213475,-3.9983868932905424,-3.983915084367609,-3.969443275444676,-3.9549714665217426,-3.9404996575988096,-3.9260278486758766,-3.911556039752943,-3.89708423083001,-3.882612421907077,-3.868140612984144,-3.8536688040612104,-3.8391969951382774,-3.824725186215344,-3.810253377292411,-3.7957815683694776,-3.7813097594465446,-3.7668379505236116,-3.752366141600678,-3.737894332677745,-3.7234225237548118,-3.7089507148318788,-3.6944789059089453,-3.6800070969860124,-3.665535288063079,-3.651063479140146,-3.6365916702172125,-3.6221198612942795,-3.6076480523713466,-3.593176243448413,-3.57870443452548,-3.5642326256025467,-3.5497608166796137,-3.5352890077566803,-3.5208171988337473,-3.5063453899108143,-3.491873580987881,-3.4774017720649475,-3.4629299631420145,-3.4484581542190815,-3.433986345296148,-3.419514536373215,-3.4050427274502817,-3.3905709185273487,-3.3760991096044153,-3.3616273006814823,-3.3471554917585493,-3.332683682835616,-3.318211873912683,-3.3037400649897495,-3.2892682560668165,-3.274796447143883,-3.26032463822095,-3.245852829298017,-3.2313810203750837,-3.2169092114521503,-3.2024374025292173,-3.1879655936062843,-3.173493784683351,-3.159021975760418,-3.1445501668374845,-3.1300783579145515,-3.115606548991618,-3.101134740068685,-3.086662931145752,-3.0721911222228186,-3.0577193132998852,-3.0432475043769522,-3.0287756954540193,-3.014303886531086,-2.999832077608153,-2.98536026868522,-2.9708884597622864,-2.956416650839353,-2.94194484191642,-2.927473032993487,-2.9130012240705536,-2.89852941514762,-2.884057606224687,-2.8695857973017542,-2.855113988378821,-2.840642179455888,-2.826170370532955,-2.8116985616100214,-2.797226752687088,-2.782754943764155,-2.768283134841222,-2.7538113259182886,-2.739339516995355,-2.724867708072422,-2.710395899149489,-2.6959240902265558,-2.681452281303623,-2.66698047238069,-2.6525086634577564,-2.638036854534823,-2.62356504561189,-2.609093236688957,-2.5946214277660236,-2.58014961884309,-2.5656778099201576,-2.551206000997224,-2.5367341920742907,-2.5222623831513578,-2.5077905742284248,-2.4933187653054913,-2.478846956382558,-2.464375147459625,-2.449903338536692,-2.4354315296137585,-2.4209597206908255,-2.4064879117678926,-2.392016102844959,-2.3775442939220257,-2.3630724849990927,-2.3486006760761597,-2.3341288671532263,-2.319657058230293,-2.30518524930736,-2.290713440384427,-2.2762416314614935,-2.2617698225385605,-2.2472980136156275,-2.232826204692694,-2.2183543957697607,-2.2038825868468277,-2.1894107779238947,-2.1749389690009613,-2.160467160078028,-2.1459953511550953,-2.131523542232162,-2.1170517333092285,-2.1025799243862955,-2.0881081154633625,-2.073636306540429,-2.059164497617496,-2.0446926886945627,-2.0302208797716297,-2.0157490708486963,-2.0012772619257633,-1.9868054530028298,-1.9723336440798969,-1.9578618351569634,-1.9433900262340305,-1.9289182173110975,-1.914446408388164,-1.899974599465231,-1.8855027905422976,-1.8710309816193647,-1.8565591726964312,-1.8420873637734982,-1.8276155548505648,-1.8131437459276318,-1.7986719370046984,-1.7842001280817654,-1.7697283191588324,-1.755256510235899,-1.740784701312966,-1.7263128923900326,-1.7118410834670996,-1.6973692745441662,-1.6828974656212332,-1.6684256566982998,-1.6539538477753668,-1.6394820388524338,-1.6250102299295004,-1.6105384210065674,-1.596066612083634,-1.581594803160701,-1.5671229942377676,-1.5526511853148346,-1.5381793763919012,-1.5237075674689682,-1.5092357585460348,-1.4947639496231018,-1.4802921407001688,-1.4658203317772354,-1.4513485228543024,-1.436876713931369,-1.422404905008436,-1.4079330960855025,-1.3934612871625696,-1.3789894782396361,-1.3645176693167032,-1.3500458603937702,-1.3355740514708367,-1.3211022425479038,-1.3066304336249703,-1.2921586247020374,-1.277686815779104,-1.263215006856171,-1.2487431979332375,-1.2342713890103045,-1.2197995800873715,-1.2053277711644381,-1.1908559622415051,-1.1763841533185717,-1.1619123443956387,-1.1474405354727053,-1.1329687265497723,-1.118496917626839,-1.104025108703906,-1.0895532997809725,-1.0750814908580395,-1.0606096819351065,-1.046137873012173,-1.03166606408924,-1.0171942551663067,-1.0027224462433737,-0.9882506373204403,-0.9737788283975073,-0.9593070194745739,-0.9448352105516409,-0.9303634016287079,-0.9158915927057745,-0.9014197837828415,-0.8869479748599081,-0.8724761659369751,-0.8580043570140417,-0.8435325480911087,-0.8290607391681752,-0.8145889302452423,-0.8001171213223088,-0.7856453123993759,-0.7711735034764429,-0.7567016945535094,-0.7422298856305765,-0.727758076707643,-0.71328626778471,-0.6988144588617766,-0.6843426499388436,-0.6843426499388436,-0.6698708410159102,-0.6553990320929772,-0.6409272231700442,-0.6264554142471108,-0.6119836053241778,-0.5975117964012444,-0.5830399874783114,-0.568568178555378,-0.554096369632445,-0.5396245607095116,-0.5251527517865786,-0.5106809428636452,-0.4962091339407122,-0.4817373250177792,-0.4672655160948458,-0.4527937071719128,-0.4383218982489794,-0.4238500893260464,-0.40937828040311297,-0.39490647148018,-0.38043466255724656,-0.3659628536343136,-0.3514910447113806,-0.33701923578844717,-0.3225474268655142,-0.30807561794258076,-0.2936038090196478,-0.27913200009671435,-0.26466019117378137,-0.25018838225084794,-0.23571657332791496,-0.22124476440498198,-0.20677295548204855,-0.19230114655911557,-0.17782933763618214,-0.16335752871324916,-0.14888571979031573,-0.13441391086738275,-0.11994210194444932,-0.10547029302151634,-0.09099848409858291,-0.07652667517564993,-0.07652667517564993,-0.0620548662527165,-0.04758305732978396,-0.033111248406850535,-0.01863943948391711,-0.004167630560983682,0.010304178361948857,0.024775987284882284,0.03924779620781571,0.05371960513074914,0.06819141405368168,0.0826632229766151,0.09713503189954853,0.11160684082248107,0.1260786497454145,0.14055045866834792,0.15502226759128135,0.1694940765142139,0.18396588543714731,0.19843769436008074,0.21290950328301328,0.2273813122059467,0.24185312112888013,0.25632493005181356,0.2707967389747461,0.2852685478976795,0.29974035682061295,0.3142121657435464,0.3286839746664789,0.34315578358941234,0.35762759251234577,0.3720994014352783,0.38657121035821174,0.40104301928114516,0.4155148282040786,0.42998663712701113,0.44445844604994456,0.458930254972878,0.4734020638958114,0.48787387281874395,0.5023456817416774,0.5168174906646108,0.5312892995875433,0.5457611085104768,0.5602329174334102,0.5747047263563436,0.5891765352792762,0.6036483442022096,0.6036483442022096,0.618120153125143,0.6325919620480756,0.647063770971009,0.6615355798939424,0.6760073888168758,0.6904791977398084,0.7049510066627418,0.7194228155856752,0.7338946245086087,0.7483664334315412,0.7628382423544746,0.777310051277408,0.7917818602003406,0.806253669123274,0.8207254780462074,0.8351972869691409,0.8496690958920734,0.8641409048150068,0.8786127137379403,0.8930845226608737,0.9075563315838062,0.9220281405067396,0.9364999494296731,0.9509717583526056,0.965443567275539,0.9799153761984725,0.9943871851214059,1.0088589940443384,1.0233308029672719,1.0378026118902053,1.0522744208131387,1.0667462297360712,1.0812180386590047,1.095689847581938,1.1101616565048706,1.124633465427804,1.1391052743507375,1.153577083273671,1.1680488921966035,1.1825207011195369,1.1969925100424703,1.2114643189654029,1.2259361278883363,1.2404079368112697,1.2548797457342031,1.2693515546571357,1.283823363580069,1.2982951725030025,1.312766981425936,1.3272387903488685,1.341710599271802,1.3561824081947353,1.3706542171176679,1.3851260260406013,1.3995978349635347,1.4140696438864682,1.4285414528094007,1.4430132617323341,1.4574850706552676,1.471956879578201,1.4864286885011335,1.500900497424067,1.5153723063470004,1.529844115269933,1.5443159241928663,1.5587877331157998,1.5732595420387332,1.5877313509616657,1.6022031598845992,1.6166749688075326,1.6311467777304651,1.6456185866533986,1.660090395576332,1.6745622044992654,1.689034013422198,1.7035058223451314,1.7179776312680648,1.7324494401909982,1.7469212491139308,1.7613930580368642,1.7758648669597976,1.7903366758827302,1.8048084848056636,1.819280293728597,1.8337521026515304,1.848223911574463,1.8626957204973964,1.8771675294203298,1.8916393383432633,1.9061111472661958,1.9205829561891292,1.9350547651120626,1.9495265740349952,1.9639983829579286,1.978470191880862,1.9929420008037955,2.007413809726728,2.0218856186496614,2.036357427572595,2.0508292364955283,2.065301045418461,2.0797728543413943,2.0942446632643277,2.10871647218726,2.1231882811101936,2.137660090033127,2.1521318989560605,2.166603707878993,2.1810755168019265,2.19554732572486,2.2100191346477924,2.224490943570726,2.2389627524936593,2.2534345614165927,2.2679063703395252,2.2823781792624587,2.296849988185392,2.3113217971083255,2.325793606031258,2.3402654149541915,2.354737223877125,2.3692090328000575,2.383680841722991,2.3981526506459243,2.4126244595688577,2.4270962684917903,2.4415680774147237,2.456039886337657,2.4705116952605906,2.484983504183523,2.4994553131064565,2.51392712202939,2.5283989309523225,2.542870739875256,2.5573425487981893,2.5718143577211228,2.5862861666440553,2.6007579755669887,2.615229784489922,2.6297015934128547,2.644173402335788,2.6586452112587216,2.673117020181655,2.6875888291045875,2.702060638027521,2.7165324469504544,2.731004255873388,2.7454760647963203,2.7599478737192538,2.774419682642187,2.7888914915651197,2.803363300488053,2.8178351094109866,2.83230691833392,2.8467787272568525,2.861250536179786,2.8757223451027194,2.890194154025653,2.9046659629485854,2.919137771871519,2.933609580794452,2.9480813897173848,2.962553198640318,2.9770250075632516,2.991496816486185,3.0059686254091176,3.020440434332051,3.0349122432549844,3.049384052177918,3.0638558611008504,3.078327670023784,3.0927994789467173,3.10727128786965,3.121743096792583,3.1362149057155166,3.15068671463845,3.1651585235613826,3.179630332484316,3.1941021414072495,3.208573950330182,3.2230457592531154,3.237517568176049,3.2519893770989823,3.266461186021915,3.2809329949448482,3.2954048038677817,3.309876612790715,3.3243484217136476,-0.14093545451576633,-0.13657309000434134,-0.13221072549291632,-0.12784836098149133,-0.1234859964700663,-0.11912363195864131,-0.1147612674472163,-0.1103989029357913,-0.10603653842436629,-0.10167417391294128,-0.09731180940151628,-0.09294944489009127,-0.08858708037866628,-0.08422471586724126,-0.07986235135581626,-0.07549998684439126,-0.07113762233296625,-0.06677525782154124,-0.062412893310116235,-0.05805052879869123,-0.05368816428726622,-0.04932579977584123,-0.04496343526441622,-0.040601070752991214,-0.03623870624156621,-0.0318763417301412,-0.027513977218716193,-0.023151612707291186,-0.018789248195866193,-0.014426883684441172,-0.010064519173016179,-0.005702154661591158,-0.0013397901501661647,0.0030225743612588285,0.007384938872683849,0.011747303384108843,0.016109667895533863,0.020472032406958857,0.024834396918383878,0.02919676142980887,0.03355912594123389,0.037921490452658885,0.04228385496408388,0.0466462194755089,0.05100858398693389,0.05537094849835891,0.059733313009783906,0.06409567752120893,0.06845804203263392,0.07282040654405891,0.07718277105548393,0.08154513556690893,0.08590750007833395,0.09026986458975894,0.09463222910118396,0.09899459361260896,0.10335695812403395,0.10771932263545897,0.11208168714688399,0.11644405165830896,0.12080641616973398,0.125168780681159,0.12953114519258402,0.13389350970400898,0.138255874215434,0.14261823872685903,0.146980603238284,0.151342967749709,0.15570533226113403,0.16006769677255905,0.16443006128398402,0.16879242579540904,0.17315479030683406,0.17751715481825903,0.18187951932968405,0.18624188384110907,0.1906042483525341,0.19496661286395905,0.19932897737538408,0.2036913418868091,0.20805370639823412,0.21241607090965908,0.2167784354210841,0.22114079993250912,0.2255031644439341,0.2298655289553591,0.23422789346678413,0.23859025797820915,0.24295262248963412,0.24731498700105914,0.25167735151248416,0.2560397160239091,0.26040208053533415,0.26476444504675917,0.2691268095581842,0.27348917406960915,0.2778515385810342,0.2822139030924592,0.28657626760388416,0.2909386321153092,0.2953009966267342,0.2996633611381592,0.3040257256495842,0.3083880901610092,0.31275045467243423,0.3171128191838592,0.3214751836952842,0.32583754820670924,0.33019991271813426,0.3345622772295592,0.33892464174098424,0.34328700625240927,0.34764937076383423,0.35201173527525925,0.3563740997866843,0.3607364642981093,0.3650988288095343,0.36946119332095934,0.37382355783238425,0.37818592234380927,0.3825482868552343,0.3869106513666593,0.39127301587808433,0.39563538038950935,0.39999774490093437,0.4043601094123593,0.4087224739237843,0.4130848384352093,0.41744720294663434,0.42180956745805936,0.4261719319694844,0.4305342964809094,0.4348966609923343,0.43925902550375934,0.44362139001518436,0.4479837545266094,0.4523461190380344,0.4567084835494594,0.46107084806088444,0.46543321257230935,0.4697955770837344,0.4741579415951594,0.4785203061065844,0.48288267061800944,0.48724503512943446,0.4916073996408595,0.4959697641522844,0.5003321286637095,0.5046944931751345,0.5090568576865595,0.5134192221979845,0.5177815867094095,0.5221439512208346,0.5265063157322594,0.5308686802436844,0.5352310447551094,0.5395934092665344,0.5439557737779595,0.5483181382893845,0.5526805028008095,0.5570428673122345,0.5614052318236595,0.5657675963350846,0.5701299608465096,0.5744923253579346,0.5788546898693596,0.5832170543807846,0.5875794188922097,0.5919417834036345,0.5963041479150595,0.6006665124264845,0.6050288769379095,0.6093912414493345,0.6137536059607596,0.6181159704721846,0.6224783349836096,0.6268406994950346,0.6312030640064596,0.6355654285178847,0.6399277930293097,0.6442901575407347,0.6486525220521597,0.6530148865635845,0.6573772510750095,0.6617396155864346,0.6661019800978596,0.6704643446092846,0.6748267091207096,0.6791890736321347,0.6835514381435597,0.6879138026549847,0.6922761671664097,0.6966385316778347,0.7010008961892598,0.7053632607006848,0.7097256252121098,0.7140879897235346,0.7184503542349596,0.7228127187463846,0.7271750832578097,0.7315374477692347,0.7358998122806597,0.7402621767920847,0.7446245413035097,0.7489869058149348,0.7533492703263598,0.7577116348377848,0.7620739993492098,0.7664363638606349,0.7707987283720599,0.7751610928834847,0.7795234573949097,0.7838858219063347,0.7838858219063347,0.7882481864177597,0.7926105509291848,0.7969729154406098,0.8013352799520348,0.8056976444634598,0.8100600089748848,0.8144223734863099,0.8187847379977349,0.8231471025091599,0.8275094670205849,0.8318718315320099,0.8362341960434347,0.8405965605548598,0.8449589250662848,0.8493212895777098,0.8536836540891348,0.8580460186005598,0.8624083831119849,0.8667707476234099,0.8711331121348349,0.8754954766462599,0.879857841157685,0.8842202056691097,0.8885825701805348,0.8929449346919598,0.8973072992033848,0.9016696637148098,0.9060320282262349,0.9103943927376599,0.9147567572490849,0.9191191217605099,0.9234814862719349,0.92784385078336,0.932206215294785,0.93656857980621,0.940930944317635,0.9452933088290598,0.9496556733404848,0.9540180378519099,0.9583804023633349,0.9627427668747599,0.9671051313861849,0.97146749589761,0.975829860409035,0.98019222492046,0.984554589431885,0.98891695394331,0.993279318454735,0.9976416829661601,1.002004047477585,1.0063664119890101,1.010728776500435,1.01509114101186,1.019453505523285,1.02381587003471,1.028178234546135,1.028178234546135,1.03254059905756,1.036902963568985,1.04126532808041,1.045627692591835,1.04999005710326,1.0543524216146851,1.0587147861261101,1.0630771506375352,1.0674395151489602,1.071801879660385,1.07616424417181,1.080526608683235,1.08488897319466,1.089251337706085,1.09361370221751,1.097976066728935,1.1023384312403601,1.1067007957517851,1.1110631602632102,1.1154255247746352,1.1197878892860602,1.1241502537974852,1.1285126183089103,1.132874982820335,1.13723734733176,1.141599711843185,1.1459620763546101,1.1503244408660351,1.1546868053774602,1.1590491698888852,1.1634115344003102,1.1677738989117352,1.1721362634231602,1.1764986279345853,1.1808609924460103,1.1852233569574353,1.1895857214688603,1.1939480859802851,1.1983104504917101,1.2026728150031352,1.2070351795145602,1.2113975440259852,1.2157599085374102,1.2201222730488352,1.2244846375602603,1.2288470020716853,1.2332093665831103,1.2332093665831103,1.2375717310945353,1.2419340956059604,1.2462964601173854,1.2506588246288104,1.2550211891402354,1.2593835536516602,1.2637459181630852,1.2681082826745103,1.2724706471859353,1.2768330116973603,1.2811953762087853,1.2855577407202103,1.2899201052316354,1.2942824697430604,1.2986448342544854,1.3030071987659104,1.3073695632773354,1.3117319277887605,1.3160942923001855,1.3204566568116103,1.3248190213230353,1.3291813858344603,1.3335437503458853,1.3379061148573104,1.3422684793687354,1.3466308438801604,1.3509932083915854,1.3553555729030105,1.3597179374144355,1.3640803019258605,1.3684426664372855,1.3728050309487105,1.3771673954601356,1.3815297599715604,1.3858921244829854,1.3902544889944104,1.3946168535058354,1.3989792180172604,1.4033415825286855,1.4077039470401105,1.4120663115515355,1.4164286760629605,1.4207910405743855,1.4251534050858106,1.4295157695972356,1.4338781341086606,1.4382404986200856,1.4426028631315104,1.4469652276429354,1.4513275921543605,1.4556899566657855,1.4600523211772105,1.4644146856886355,1.4687770502000606,1.4731394147114856,1.4775017792229106,1.4818641437343356,1.4862265082457606,1.4905888727571857,1.4949512372686107,1.4993136017800357,1.5036759662914605,1.5080383308028855,1.5124006953143105,1.5167630598257356,1.5211254243371606,1.5254877888485856,1.5298501533600106,1.5342125178714356,1.5385748823828607,1.5429372468942857,1.5472996114057107,1.5516619759171357,1.5560243404285607,1.5603867049399858,1.5647490694514108,1.5691114339628356,1.5734737984742606,1.5778361629856856,1.5821985274971107,1.5865608920085357,1.5909232565199607,1.5952856210313857,1.5996479855428107,1.6040103500542358,1.6083727145656608,1.6127350790770858,1.6170974435885108,1.6214598080999358,1.6258221726113609,1.6301845371227857,1.6345469016342107,1.6389092661456357,1.6432716306570607,1.6476339951684857,1.6519963596799108,1.6563587241913358,1.6607210887027608,1.6650834532141858,1.6694458177256108,1.6738081822370359,1.678170546748461,1.682532911259886,1.686895275771311,1.6912576402827357,1.6956200047941608,1.6999823693055858,1.7043447338170108,1.7087070983284358,1.7130694628398608,1.7174318273512859,1.7217941918627109,1.726156556374136,1.730518920885561,1.734881285396986,1.739243649908411,1.743606014419836,1.747968378931261,1.7523307434426858,1.7566931079541108,1.7610554724655358,1.7654178369769609,1.7697802014883859,1.774142565999811,1.778504930511236,1.782867295022661,1.787229659534086,1.791592024045511,1.795954388556936,1.800316753068361,1.804679117579786,1.809041482091211,1.8134038466026359,1.817766211114061,1.822128575625486,1.826490940136911,1.830853304648336,1.835215669159761,1.839578033671186,1.843940398182611,1.848302762694036,1.852665127205461,1.857027491716886,1.861389856228311,1.8657522207397361,1.8701145852511611,1.8744769497625862,1.8788393142740112,1.8832016787854362,1.8875640432968612,1.8919264078082862,1.8962887723197113,1.9006511368311363,1.9050135013425613,1.9093758658539859,1.913738230365411,1.918100594876836,1.922462959388261,1.926825323899686,1.931187688411111,1.935550052922536,1.939912417433961,1.944274781945386,1.948637146456811,1.952999510968236,1.9573618754796611,1.9617242399910861,1.9660866045025112,1.9704489690139362,1.9748113335253612,1.9791736980367862,1.9835360625482112,1.9878984270596363,1.9922607915710613,1.9966231560824863,2.0009855205939115,2.0053478851053366,2.0097102496167616,2.0140726141281866,2.0184349786396116,2.0227973431510367,2.0271597076624617,2.0315220721738863,2.0358844366853113,2.0402468011967363,2.0446091657081613,2.0489715302195863,2.0533338947310114,2.0576962592424364,2.0620586237538614,2.0664209882652864,2.0707833527767114,2.0751457172881365,2.0795080817995615,2.0838704463109865,2.0882328108224115],\n", "\"..violinwidth..\":[6.24189207456573E-5,7.274957385938468E-5,8.45655759950223E-5,9.804056060200594E-5,1.1336188103566217E-4,1.3073066179131873E-4,1.5036166280341966E-4,1.7248293022687435E-4,1.9733520731918413E-4,2.2517107988496234E-4,2.562538323070541E-4,2.9085599253955745E-4,3.2925754763502035E-4,3.717438154627049E-4,4.186029632700032E-4,4.7012316964575206E-4,5.265894332374876E-4,5.882800392024714E-4,6.554627027516994E-4,7.283904181636985E-4,8.072970511546418E-4,8.923927223167749E-4,9.83859039271245E-4,0.0010818442449911428,0.0011864583591791674,0.0012977683983573978,0.0014157937681586429,0.0015405019279087534,0.0016718044326712136,0.0018095534612142768,0.0019535389396052594,0.002103486369113758,0.0022590554636349983,0.0024198396957922997,0.0025853668421681885,0.00275510060673281,0.002928443387540424,0.003104740235276302,0.003283284033454346,0.0034633219092615962,0.0036440628615565657,0.0038246865687566545,0.004004353314751991,0.004182214946061899,0.004357426748742144,0.0045291601096146385,0.004696615803790319,0.0048590377297473486,0.005015726894944919,0.005166055439592105,0.005309480474196693,0.0054455574982688396,0.0055739531633528395,0.005694457143625888,0.005806992881762957,0.00591162698665448,0.0060085770728138125,0.006098217848765297,0.0061810852831108536,0.006257878701998059,0.006329460699944864,0.006396854776938562,0.006461240647889495,0.006523947205311344,0.00658644315192119,0.006650325356090083,0.00671730501911345,0.006789191778506268,0.006867875905376434,0.006955308785840662,0.007053481905906668,0.0071644045857878445,0.007290080732826331,0.007432484901716337,0.007593537966239049,0.007775082717998195,0.007978859714494429,0.008206483701172265,0.008459420929743965,0.008738967688133053,0.009046230345831251,0.009382107202432016,0.009747272406754636,0.010142162189523414,0.010566963624296011,0.011021606099579178,0.011505755650222771,0.012018812258695045,0.012559910197221228,0.013127921440571073,0.013721462137117776,0.014338902083307096,0.01497837710455702,0.015637804204556155,0.016314899305665216,0.017007197366357068,0.017712074628060893,0.018426772714056468,0.019148424277806306,0.019874079877853352,0.0206007357415935,0.021325362071203228,0.022044931541985106,0.022756447646484337,0.02345697254688364,0.024143654113213536,0.024813751845491245,0.025464661403553718,0.026093937498474183,0.026699314933333544,0.027278727617932475,0.027830325420887172,0.028352488762493074,0.02884384089179744,0.02930325783051415,0.02972987600380869,0.030123097612694574,0.030482593834035305,0.030808305961262123,0.031100444621367553,0.03135948722114125,0.03158617378776454,0.03178150137573682,0.03194671721380406,0.03208331076239728,0.03219300484452117,0.032277746001644306,0.03233969421163444,0.03238121208893621,0.03240485366883085,0.03241335285860841,0.03240961161964741,0.03239668792652922,0.03237778353311443,0.032356231561581066,0.03233548391923308,0.032319098539757056,0.032310726440699364,0.03231409858725254,0.032333012553830844,0.03237131897906867,0.032432907816368976,0.03252169439041637,0.03264160527954525,0.03279656405385081,0.03299047690878584,0.03322721824306152,0.03351061623736846,0.03384443849628562,0.034232377819359026,0.0346780381684923,0.03518492089741467,0.03575641130517035,0.03639576556955376,0.03710609810859605,0.037890369409124436,0.038751374351704046,0.039691731051646896,0.04071387022698161,0.04182002509707169,0.04301222181063739,0.04429227039989596,0.045661756258856386,0.047122032148800674,0.048674210742782,0.05031915773345706,0.05205748554444583,0.05388954770410177,0.05581543396134197,0.05783496624504122,0.059947695590338634,0.06215290017577835,0.06444958463319707,0.06683648080634699,0.06931205014311607,0.07187448790869001,0.0745217294020762,0.0772514583452929,0.08006111759266801,0.08294792227692308,0.08590887546913256,0.08894078638178345,0.09204029108885743,0.09520387567535438,0.0984279016625279,0.10170863348614664,0.1050422677354359,0.10842496379223028,0.11185287544566506,0.11532218299980605,0.11882912534230353,0.12237003140359662,0.12594135041031929,0.12953968032498941,0.13316179386799815,0.13680466153815715,0.14046547108489388,0.14414164293838536,0.1478308411727294,0.1515309796604156,0.15524022317209316,0.15895698328172075,0.16267990905102708,0.16640787258584472,0.1701399496771824,0.17387539585851863,0.17761361832444358,0.18135414426112628,0.18509658623309708,0.18884060535063177,0.192585873005196,0.19633203200490418,0.2000786579662866,0.20382522182190496,0.2075710542851393,0.21131531307411974,0.2150569536370982,0.21879470404306064,0.22252704460604783,0.22625219270195188,0.22996809311538127,0.23367241412473125,0.2373625493992944,0.24103562564663142,0.2446885158150583,0.2483178575284783,0.25192007631220487,0.25549141306180034,0.25902795511510424,0.2625256702125815,0.2659804425747611,0.269388110288945,0.27274450318127064,0.2760454803546571,0.279286966597686,0.279286966597686,0.28246498691312033,0.28557569847605424,0.28861541940872826,0.29158065384958837,0.29446811289569214,0.29727473110726466,0.2999976783782472,0.30263436709411773,0.30518245461512983,0.30763984123673566,0.31000466388654707,0.31227528591649506,0.3144502834376382,0.31652842872160863,0.3185086712555022,0.3203901170850069,0.3221720071129955,0.32385369503735045,0.3254346256123503,0.32691431390289094,0.32829232617071286,0.32956826298749514,0.33074174511228827,0.3318124026015271,0.3327798675402626,0.33364377069483103,0.33440374229158804,0.3350594170253215,0.33561044329631756,0.33605649656853837,0.33639729663491535,0.3366326284711067,0.3367623662581262,0.33678650005883065,0.3367051645451958,0.3365186690943661,0.3362275285034625,0.33583249351767847,0.33533458032498253,0.3347350981452127,0.33403567403285706,0.3332382740225445,0.3332382740225445,0.3323452197750689,0.33135919993033053,0.3302832754421436,0.32912087825830166,0.32787580281713863,0.32655218995796126,0.3251545029857293,0.3236874957881178,0.32215617307308175,0.3205657429741955,0.3189215624558238,0.3172290761366408,0.3154937493338846,0.3137209963074836,0.3119161048481195,0.31008415850175947,0.3082299578505994,0.30635794237242125,0.3044721144731772,0.3025759673278035,0.30067241816917717,0.29876374863281374,0.29685155369440297,0.2949367006285084,0.2930192992706752,0.2910986846838099,0.2891734131159737,0.28724127189467125,0.2852993036371338,0.2833438448726619,0.28137057887804523,0.27937460222721083,0.27735050425861624,0.2752924583757028,0.27319432382403275,0.2710497563404356,0.2688523258508552,0.2665956392103907,0.26427346583609856,0.2618798639843974,0.259409305373245,0.25685679584632526,0.25421798982277716,0.2514892963707949,0.24866797488478032,0.24575221853056559,0.2427412238474096,0.2427412238474096,0.23963524515389853,0.23643563269165008,0.2331448537493069,0.22976649633262688,0.22630525527724846,0.2227669010315048,0.21915823166008735,0.2154870089284195,0.21176187961557608,0.2079922834645108,0.20418834940687242,0.20036078189139744,0.19652073929622302,0.19267970651400648,0.18884936386301343,0.18504145449694742,0.1812676524619488,0.17753943348250611,0.17386795045165412,0.17026391545819802,0.16673749000904764,0.16329818490285508,0.15995477098738134,0.1567152017929843,0.15358654878423555,0.15057494971678853,0.14768557033306887,0.14492257938370579,0.14228913672704646,0.1397873940413196,0.13741850748714404,0.1351826614855608,0.13307910263130712,0.13110618264456683,0.12926140917804382,0.12754150324023777,0.12594246196977835,0.12445962549840107,0.12308774666974698,0.12182106243515634,0.12065336582302233,0.1195780774716812,0.11858831582356559,0.11767696519657607,0.11683674107341431,0.11606025207711736,0.11534005822753192,0.11466872519554976,0.11403887438650794,0.11344322878860301,0.11287465461431477,0.11232619884105792,0.11179112282050704,0.11126293217375453,0.11073540322169859,0.11020260621736173,0.10965892565023136,0.10909907788362316,0.10851812636626669,0.1079114946308328,0.10727497725718939,0.10660474893907694,0.10589737175196579,0.10514980067931552,0.10435938741639234,0.10352388243706624,0.10264143528117786,0.10171059299939435,0.10073029667984094,0.09969987597672039,0.09861904156573975,0.0974878754642148,0.09630681917462182,0.0950766596382095,0.09379851301889863,0.09247380637569323,0.0911042573226599,0.08969185181756263,0.08823882026181325,0.08674761213387303,0.08522086941409988,0.08366139908988969,0.08207214505463738,0.08045615973159859,0.07881657576349008,0.07715657811024536,0.07547937689063804,0.07378818128870011,0.07208617482345697,0.07037649225120306,0.06866219833428504,0.0669462686702624,0.06523157273162837,0.06352085922034079,0.06181674379460213,0.06012169917899984,0.05843804762458172,0.0567679556438797,0.055113430908372465,0.0534763211632604,0.05185831498740668,0.05026094420532896,0.048685587743460615,0.04713347671455173,0.045605700511869664,0.044103213698398834,0.04262684348497372,0.041177297604525064,0.03975517240655969,0.038360961015766804,0.0369950614203247,0.03565778437817059,0.0343493610523107,0.03306995030837491,0.03181964562835312,0.03059848161317723,0.02940644006307155,0.028243455638051678,0.027109421111431258,0.026004192236650008,0.0249275922522673,0.023879416051778776,0.02285943404433707,0.021867395729883825,0.020903033008086533,0.019966063235317886,0.01905619203820832,0.01817311588653748,0.017316524422848666,0.01648610254157366,0.015681532206959618,0.014902493996943057,0.014148668359466855,0.013419736568653378,0.012715381370700746,0.012035287313251037,0.011379140757110754,0.010746629575335395,0.010137442551535175,0.009551268496490293,0.008987795109448455,0.008446707617474337,0.007927687232609852,0.007430409472099233,0.006954542391281672,0.006499744781764964,0.006065664389025237,0.005651936203559247,0.00525818087813116,0.004884003320558041,0.004528991506970851,0.004192715554731137,0.003874727087374479,0.0035745589163228416,0.0032917250559150817,0.0030257210798117083,0.0027760248183052194,0.0025420973877671544,0.0023233845356290615,0.002119318277138495,0.001929318793836622,0.0017527965584139395,0.0015891546464219606,0.001437791192314184,0.0012981019454830931,0.0011694828813369616,0.0010513328229689296,9.430560305303799E-4,8.440647179217192E-4,7.537814597285466E-4,6.716414553149511E-4,5.970946214866553E-4,5.296074899980824E-4,4.686648912462459E-4,4.137714106228613E-4,3.644526090483282E-4,3.202560040654674E-4,2.807518124213141E-4,2.45533459225261E-4,2.1421786247326398E-4,1.8644550492255638E-4,1.618803079594869E-4,1.4020932421288942E-4,1.211422672312592E-4,1.0441089758227325E-4,8.976828527872657E-5,7.698796852603021E-5,6.586302847110543E-5,2.3418359927289523E-4,2.692924612166997E-4,3.090983688506216E-4,3.541405476830705E-4,4.050071418383281E-4,4.623378978469498E-4,5.26826765117449E-4,5.992243756251176E-4,6.803403621620322E-4,7.710454714970866E-4,8.722734260712325E-4,9.85022485480248E-4,0.0011103566570579509,0.0012494065034510946,0.0014033694942583005,0.0015735098486729662,0.0017611578167047136,0.0019677083480312916,0.0021946190999213894,0.0024434077390276146,0.0027156484962258614,0.003012967939106252,0.003337039933220188,0.0036895797707584945,0.004072337453957992,0.004487090130168459,0.0049356336860966075,0.005419773520193006,0.005941314524353454,0.006502050318935589,0.0071037517983894224,0.007748155058390368,0.00843694878904737,0.009171761232322112,0.009954146815007529,0.010785572581231943,0.011667404560229678,0.012600894215793608,0.013587165133148598,0.01462720010670645,0.015721828798048832,0.016871716137310876,0.018077351642709186,0.019339039832098743,0.020656891897015448,0.022030818803560608,0.023460525975647403,0.02494550970454053,0.02648505541430333,0.028078237895807264,0.029723923602476443,0.03142077507912043,0.03316725757127998,0.03496164783674501,0.0368020451536304,0.03868638449097051,0.040612451778619114,0.042577901183745145,0.04458027427184705,0.04661702090144057,0.04868552167387333,0.050783111733566144,0.052907105689833145,0.05505482340973434,0.05722361641258082,0.059410894581127756,0.06161415289247354,0.06383099786353268,0.06605917340187212,0.0682965857528558,0.07054132723852605,0.07279169849245445,0.07504622890788676,0.07730369503372149,0.079563136674015,0.08182387047149431,0.08408550078365509,0.08634792769099779,0.08861135201036391,0.0908762772216566,0.09314350825292114,0.09541414710625946,0.09768958534476176,0.0999714934979707,0.10226180747978163,0.10456271214753779,0.10687662216391032,0.10920616035343801,0.111554133772932,0.1139235077389464,0.11631737807586787,0.11873894186467358,0.12119146698488692,0.12367826075066578,0.1262026379463106,0.12876788856686552,0.13137724556610444,0.1340338529072676,0.13674073420178848,0.13950076220826937,0.14231662944855356,0.14519082018036725,0.14812558394708963,0.15112291090529104,0.154184509110164,0.1573117839183527,0.1605058196473459,0.16376736361091523,0.1670968126313633,0.17049420211181104,0.17395919773562316,0.17749108984534115,0.18108879054027965,0.1847508335200746,0.18847537669086045,0.19226020754115014,0.19610275128562119,0.20000008176653797,0.2039489350940943,0.20794572599815814,0.21198656685432435,0.21606728933649308,0.22018346863599342,0.22433045017329323,0.2285033787123512,0.23269722976948692,0.2369068431882587,0.2411269587292453,0.245352253499034,0.24957738101634303,0.2537970116854791,0.25800587441871625,0.2621987991202867,0.2663707597161677,0.27051691738647854,0.27463266363189076,0.27871366278276527,0.2827558935406831,0.28675568912732463,0.29070977560612965,0.2946153079384359,0.2984699033384478,0.3022716715008988,0.30601924129187597,0.30971178351720924,0.3133490294139415,0.3169312845486093,0.3204594378508539,0.32393496556178697,0.3273599299327514,0.3307369725707907,0.33406930239123156,0.33736067820419974,0.34061538602936187,0.34383821130054876,0.34703440618781267,0.35020965232770523,0.3533700193119313,0.3565219193388883,0.3596720584809877,0.36282738506215967,0.36599503567392855,0.36918227938435233,0.3723964607115968,0.37564494194294284,0.37893504538050876,0.38227399608734297,0.3856688656920801,0.3891265177878031,0.39265355543174674,0.39625627121790197,0.39994060035542306,0.4037120771428874,0.4075757951830108,0.4115363716353539,0.4155979157567808,0.4197640019319057,0.4240376473492036,0.4284212944336384,0.43291679810396666,0.43752541788289995,0.4422478148511069,0.44708405340184965,0.45203360772179785,0.45709537289501256,0.46226768050109457,0.46754831855453116,0.47293455560999853,0.47842316883732305,0.4840104758493573,0.48969237004588084,0.49546435921625226,0.50132160712254,0.507258977763138,0.5132710819941089,0.5193523261617672,0.5254969623755089,0.531699140024732,0.5379529581184799,0.5442525180016391,0.5505919759778011,0.5569655953471944,0.5633677973491157,0.5697932104831177,0.5762367176727234,0.5826935007306404,0.5891590815862077,0.5956293597449758,0.6021006454676182,0.6085696881812818,0.6150336996715186,0.6214903716471294,0.627937887323635,0.627937887323635,0.6343749267333687,0.6408006655407643,0.6472147672195733,0.6536173685334321,0.660009058351153,0.666390849921907,0.6727641468314007,0.6791307029566037,0.6854925768314789,0.691852080927769,0.6982117264411382,0.7045741642520312,0.710942122800653,0.7173183436748353,0.7237055157567752,0.7301062088084191,0.7365228073946731,0.7429574460479145,0.7494119465661586,0.7558877583105441,0.7623859023260159,0.7689069200527137,0.7754508273256826,0.7820170742784047,0.7886045116728939,0.7952113640774912,0.801835210205225,0.8084729706126668,0.8151209028441468,0.8217746039911872,0.8284290205245342,0.8350784651484279,0.8417166403260037,0.8483366680328317,0.8549311252144898,0.8614920843550629,0.8680111585079048,0.8744795500986077,0.8808881027835085,0.8872273556352955,0.8934875989301121,0.8996589308275272,0.905731314264711,0.911694633428198,0.9175387492189392,0.9232535531873923,0.9288290194832812,0.9342552544371772,0.9395225434663343,0.9446213950729431,0.9495425817772339,0.954277177898594,0.958816594163339,0.9631526091763333,0.9672773978440115,0.971183556877309,0.971183556877309,0.9748641275340141,0.9783126157803781,0.9815230100617032,0.9844897968709312,0.9872079742939034,0.9896730636904627,0.9918811196433486,0.9938287382730303,0.9955130639779828,0.9969317946180141,0.9980831851150235,0.9989660494027377,0.999579760616579,0.999924249378368,1.0,0.9998080444067936,0.9993499535663081,0.9986278262030681,0.9976442745843842,0.9964024071780038,0.9949058080084321,0.9931585125754959,0.9911649802452029,0.9889300630785408,0.9864589711271894,0.9837572342947956,0.9808306609368059,0.9776852934489251,0.9743273611721179,0.970763231018576,0.9669993562960009,0.9630422242750438,0.9588983031044296,0.9545739887286689,0.9500755525023088,0.9454090902212136,0.940580473304031,0.9355953028550907,0.9304588673229035,0.9251761044360812,0.9197515680511258,0.9141894004846661,0.9084933108274367,0.9026665596497717,0.8967119504103354,0.8906318277730902,0.8844280829242277,0.8844280829242277,0.8781021658633152,0.8716551045236235,0.8650875304580875,0.8583997107120563,0.8515915853944799,0.8446628103577316,0.8376128043051888,0.8304407995668667,0.8231458957186563,0.8157271151713686,0.808183459823001,0.800513967852071,0.7927177697318452,0.7847941425648332,0.7767425618734786,0.7685627500358195,0.7602547206228604,0.7518188179759007,0.7432557514555093,0.7345666238970026,0.7257529539181473,0.7168166918409089,0.7077602291079992,0.6985864011943169,0.6892984841306368,0.679900184869736,0.6703956258314087,0.6607893240603436,0.6510861655179558,0.6412913751042852,0.6314104830678573,0.6214492885088854,0.6114138207138468,0.6013102990769101,0.5911450923660069,0.5809246780788725,0.5706556026077421,0.5603444428915647,0.5499977701827279,0.5396221164927685,0.5292239442099692,0.5188096193027996,0.5083853884386574,0.4979573602591674,0.4875314909632435,0.47711357425908274,0.46670923565796424,0.45632393099785323,0.44596294900489336,0.43563141762725216,0.42533431380964576,0.41507647631922756,0.4048626211851022,0.39469735927510774,0.384585215505033,0.3745306491572132,0.3645380747774259,0.35461188312089614,0.34475646162959755,0.3349762139432927,0.3252755779751747,0.3156590421187011,0.3061311591943192,0.29669655779229565,0.2873599507197029,0.27812614031478594,0.269000020449318,0.25998657509817347,0.2510908734141793,0.24231806130441402,0.23367334956065663,0.22516199865081593,0.21678930032922067,0.20856055627096803,0.20048105397861646,0.19255604024791523,0.1847906925126634,0.17719008841692985,0.16975917398560994,0.16250273078152463,0.1554253424490523,0.1485313610506352,0.14182487360360574,0.1353096692208069,0.1289892072496863,0.12286658679122087,0.11694451796248925,0.11122529524531571,0.10571077323853215,0.10040234510343164,0.09530092396132793,0.09040692746918803,0.0857202657644948,0.08124033293420684,0.07696600212535172,0.07289562437677918,0.06902703121331659,0.0653575410053818,0.061883969059372344,0.058602641367215616,0.05550941190765746,0.05259968335750264,0.04986843103838803,0.04731022989405146,0.0449192842647071,0.04268946019929008,0.04061432002320989,0.038687158859036834,0.036901042780426156,0.03524884826569357,0.03372330260692489,0.03231702492342584,0.03102256742476063,0.029832456568631094,0.028739233762415942,0.02773549526429573,0.02681393095047316,0.02596736162896205,0.02518877459762944,0.024471357164463064,0.02380852787119391,0.023193965187185216,0.022621633468629533,0.0220858060082585,0.021581085032624837,0.021102418537192434,0.020645113883573936,0.020204848117874926,0.019777675003814683,0.019360028798663685,0.018948724833636077,0.01854095699277496,0.018134292215158453,0.01772666217404219,0.017316352312977127,0.016901988442667347,0.016482521123074634,0.016057208072787484,0.01562559486176048,0.01518749415405446,0.014742963774086335,0.01429228387310482,0.013835933472178954,0.01337456665401171,0.012908988668518964,0.012440132206544916,0.011969034082566622,0.011496812551064516,0.011024645462729896,0.01055374944620321,0.010085360278967857,0.009620714587759482,0.009161032994791391,0.0087075048016446,0.008261274278218217,0.007823428600058779,0.007394987454041476,0.00697689431008412,0.006570009335633573,0.006175103910323456,0.005792856680678105,0.005423851079199606,0.005068574218748921,0.004727417061899679,0.0044006757559422235,0.004088554017441888,0.003791166445665695,0.00350854264170649,0.0032406320096409866,0.0029873091174188126,0.0027483794982305575,0.002523585777662611,0.0023126140178204857,0.0021151001765869486,0.0019306365880691866,0.0017587783788735867,0.0015990497439253273,0.0014509500149285446,0.0013139594640595045,0.0011875447949304626,0.0010711642821047145,9.642725293484741E-4,8.663248252578342E-4,7.767810828027849E-4,6.951093566091691E-4,6.207889383953439E-4,5.533130368556474E-4,4.921910534146698E-4,4.369504696601478E-4,3.8713836590646754E-4,3.4232259326695763E-4,3.020926238537462E-4,2.660601053203866E-4,2.3385914696335584E-4,2.0514636505781668E-4,1.7960071507836748E-4],\n", "\"..quantile..\":[0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0]\n", "}\n", "},{\n", "\"mapping\":{\n", "},\n", "\"stat\":\"ydensity\",\n", "\"orientation\":\"y\",\n", "\"margin_side\":\"b\",\n", "\"color\":\"black\",\n", "\"trim\":false,\n", "\"marginal\":true,\n", "\"margin_size\":0.4,\n", "\"y\":0.0,\n", "\"position\":\"dodge\",\n", "\"geom\":\"violin\",\n", "\"data\":{\n", "\"c\":[\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"A\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\",\"B\"],\n", "\"..x..\":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],\n", "\"x\":[-5.622666048789894,-5.607721253552443,-5.592776458314992,-5.577831663077541,-5.56288686784009,-5.547942072602639,-5.5329972773651885,-5.518052482127738,-5.503107686890288,-5.488162891652837,-5.473218096415386,-5.458273301177935,-5.443328505940484,-5.4283837107030335,-5.413438915465583,-5.398494120228132,-5.383549324990681,-5.36860452975323,-5.353659734515779,-5.338714939278328,-5.323770144040878,-5.308825348803427,-5.293880553565977,-5.278935758328526,-5.263990963091075,-5.249046167853624,-5.234101372616173,-5.2191565773787225,-5.204211782141272,-5.189266986903821,-5.17432219166637,-5.159377396428919,-5.144432601191468,-5.129487805954017,-5.114543010716567,-5.099598215479116,-5.084653420241665,-5.069708625004214,-5.054763829766764,-5.039819034529313,-5.024874239291862,-5.0099294440544115,-4.994984648816961,-4.98003985357951,-4.965095058342059,-4.950150263104608,-4.935205467867157,-4.9202606726297065,-4.905315877392256,-4.890371082154805,-4.875426286917354,-4.860481491679904,-4.845536696442453,-4.830591901205002,-4.815647105967551,-4.800702310730101,-4.78575751549265,-4.770812720255199,-4.755867925017748,-4.740923129780297,-4.725978334542846,-4.7110335393053955,-4.696088744067945,-4.681143948830494,-4.666199153593043,-4.651254358355592,-4.636309563118141,-4.62136476788069,-4.60641997264324,-4.59147517740579,-4.576530382168339,-4.561585586930888,-4.546640791693437,-4.531695996455986,-4.516751201218535,-4.5018064059810845,-4.486861610743634,-4.471916815506183,-4.456972020268732,-4.442027225031282,-4.427082429793831,-4.41213763455638,-4.3971928393189295,-4.382248044081479,-4.367303248844028,-4.352358453606577,-4.337413658369126,-4.322468863131675,-4.307524067894224,-4.2925792726567735,-4.277634477419323,-4.262689682181872,-4.247744886944421,-4.23280009170697,-4.217855296469519,-4.202910501232068,-4.187965705994618,-4.173020910757168,-4.158076115519717,-4.143131320282266,-4.128186525044815,-4.113241729807364,-4.098296934569913,-4.0833521393324625,-4.068407344095012,-4.053462548857561,-4.03851775362011,-4.023572958382659,-4.008628163145209,-3.993683367907758,-3.978738572670307,-3.963793777432856,-3.948848982195406,-3.933904186957955,-3.918959391720504,-3.9040145964830533,-3.8890698012456024,-3.8741250060081516,-3.8591802107707007,-3.84423541553325,-3.829290620295799,-3.814345825058348,-3.7994010298208973,-3.784456234583447,-3.769511439345996,-3.7545666441085452,-3.7396218488710944,-3.724677053633644,-3.709732258396193,-3.6947874631587423,-3.6798426679212914,-3.6648978726838406,-3.6499530774463897,-3.635008282208939,-3.620063486971488,-3.605118691734037,-3.590173896496587,-3.575229101259136,-3.560284306021685,-3.5453395107842343,-3.5303947155467834,-3.5154499203093326,-3.5005051250718817,-3.4855603298344313,-3.4706155345969805,-3.4556707393595296,-3.4407259441220788,-3.425781148884628,-3.410836353647177,-3.3958915584097262,-3.380946763172276,-3.366001967934825,-3.351057172697374,-3.3361123774599233,-3.3211675822224724,-3.3062227869850216,-3.2912779917475707,-3.27633319651012,-3.2613884012726695,-3.2464436060352186,-3.231498810797768,-3.216554015560317,-3.201609220322866,-3.1866644250854153,-3.1717196298479644,-3.156774834610514,-3.141830039373063,-3.1268852441356123,-3.1119404488981615,-3.0969956536607106,-3.0820508584232598,-3.067106063185809,-3.0521612679483585,-3.0372164727109077,-3.022271677473457,-3.007326882236006,-2.992382086998555,-2.9774372917611043,-2.9624924965236534,-2.9475477012862026,-2.932602906048752,-2.9176581108113013,-2.9027133155738505,-2.8877685203363996,-2.872823725098949,-2.857878929861498,-2.842934134624047,-2.8279893393865967,-2.813044544149146,-2.798099748911695,-2.783154953674244,-2.783154953674244,-2.7682101584367933,-2.7532653631993425,-2.7383205679618916,-2.723375772724441,-2.7084309774869904,-2.6934861822495395,-2.6785413870120887,-2.663596591774638,-2.648651796537187,-2.633707001299736,-2.6187622060622853,-2.603817410824835,-2.588872615587384,-2.573927820349933,-2.5589830251124823,-2.5440382298750315,-2.5290934346375806,-2.51414863940013,-2.4992038441626794,-2.4842590489252285,-2.4693142536877777,-2.454369458450327,-2.439424663212876,-2.424479867975425,-2.4095350727379743,-2.394590277500524,-2.379645482263073,-2.364700687025622,-2.3497558917881713,-2.3348110965507205,-2.3198663013132697,-2.304921506075819,-2.289976710838368,-2.2750319156009176,-2.2600871203634667,-2.245142325126016,-2.230197529888565,-2.215252734651114,-2.2003079394136633,-2.1853631441762125,-2.170418348938762,-2.155473553701311,-2.1405287584638604,-2.1255839632264095,-2.1106391679889587,-2.095694372751508,-2.095694372751508,-2.080749577514057,-2.0658047822766066,-2.0508599870391557,-2.035915191801705,-2.020970396564254,-2.006025601326803,-1.9910808060893523,-1.9761360108519015,-1.9611912156144506,-1.9462464203770002,-1.9313016251395494,-1.9163568299020985,-1.9014120346646477,-1.8864672394271969,-1.871522444189746,-1.8565776489522952,-1.8416328537148448,-1.826688058477394,-1.811743263239943,-1.7967984680024922,-1.7818536727650414,-1.7669088775275905,-1.7519640822901397,-1.7370192870526893,-1.7220744918152384,-1.7071296965777876,-1.6921849013403367,-1.6772401061028859,-1.662295310865435,-1.6473505156279842,-1.6324057203905338,-1.6174609251530825,-1.6025161299156316,-1.5875713346781808,-1.5726265394407308,-1.55768174420328,-1.5427369489658291,-1.5277921537283783,-1.5128473584909274,-1.4979025632534766,-1.4829577680160257,-1.468012972778575,-1.453068177541124,-1.4381233823036732,-1.4231785870662224,-1.4082337918287715,-1.3932889965913207,-1.3783442013538698,-1.3783442013538698,-1.363399406116419,-1.348454610878969,-1.3335098156415182,-1.3185650204040673,-1.3036202251666165,-1.2886754299291656,-1.2737306346917148,-1.258785839454264,-1.243841044216813,-1.2288962489793622,-1.2139514537419114,-1.1990066585044605,-1.1840618632670097,-1.1691170680295588,-1.154172272792108,-1.139227477554658,-1.1242826823172072,-1.1093378870797563,-1.0943930918423055,-1.0794482966048546,-1.0645035013674038,-1.049558706129953,-1.034613910892502,-1.0196691156550513,-1.0047243204176004,-0.9897795251801496,-0.9748347299426987,-0.9598899347052479,-0.944945139467797,-0.9300003442303462,-0.9150555489928962,-0.9001107537554454,-0.8851659585179945,-0.8702211632805437,-0.8552763680430928,-0.840331572805642,-0.8253867775681911,-0.8104419823307403,-0.7954971870932894,-0.7805523918558386,-0.7656075966183877,-0.7506628013809369,-0.735718006143486,-0.7207732109060352,-0.7058284156685843,-0.6908836204311344,-0.6759388251936835,-0.6609940299562327,-0.6460492347187818,-0.631104439481331,-0.6161596442438801,-0.6012148490064293,-0.5862700537689784,-0.5713252585315276,-0.5563804632940768,-0.5414356680566259,-0.5264908728191751,-0.5115460775817242,-0.49660128234427336,-0.4816564871068234,-0.46671169186937256,-0.4517668966319217,-0.43682210139447086,-0.42187730615702,-0.40693251091956917,-0.3919877156821183,-0.3770429204446675,-0.3620981252072166,-0.3471533299697658,-0.33220853473231493,-0.3172637394948641,-0.30231894425741324,-0.2873741490199624,-0.27242935378251154,-0.2574845585450616,-0.24253976330761073,-0.2275949680701599,-0.21265017283270904,-0.1977053775952582,-0.18276058235780734,-0.1678157871203565,-0.15287099188290565,-0.1379261966454548,-0.12298140140800395,-0.1080366061705531,-0.09309181093310226,-0.07814701569565141,-0.06320222045820056,-0.04825742522074972,-0.03331262998329976,-0.01836783474584891,-0.0034230395083980625,0.011521755729052785,0.026466550966503632,0.04141134620395448,0.05635614144140533,0.07130093667885617,0.08624573191630702,0.10119052715375787,0.11613532239120872,0.13108011762865956,0.1460249128661104,0.16096970810356126,0.17591450334101122,0.19085929857846207,0.20580409381591291,0.22074888905336376,0.2356936842908146,0.25063847952826546,0.2655832747657163,0.28052807000316715,0.295472865240618,0.31041766047806885,0.3253624557155197,0.34030725095297054,0.3552520461904214,0.37019684142787224,0.3851416366653231,0.40008643190277304,0.4150312271402239,0.42997602237767474,0.4449208176151256,0.45986561285257643,0.4748104080900273,0.48975520332747813,0.504699998564929,0.5196447938023798,0.5345895890398307,0.5495343842772815,0.5644791795147324,0.5794239747521832,0.5943687699896341,0.609313565227084,0.6242583604645349,0.6392031557019857,0.6541479509394366,0.6690927461768874,0.6840375414143383,0.6989823366517891,0.71392713188924,0.7288719271266908,0.7438167223641416,0.7587615176015925,0.7737063128390433,0.7886511080764942,0.803595903313945,0.8185406985513959,0.8334854937888458,0.8484302890262967,0.8633750842637475,0.8783198795011984,0.8932646747386492,0.9082094699761001,0.9231542652135509,0.9380990604510018,0.9530438556884526,0.9679886509259035,0.9829334461633543,0.9978782414008052,1.012823036638256,1.0277678318757069,1.0427126271131577,1.0576574223506077,1.0726022175880585,1.0875470128255094,1.1024918080629602,1.117436603300411,1.132381398537862,1.1473261937753128,1.1622709890127636,1.1772157842502144,1.1921605794876653,1.2071053747251161,1.222050169962567,1.2369949652000178,1.2519397604374687,1.2668845556749186,1.2818293509123695,1.2967741461498203,1.3117189413872712,1.326663736624722,1.3416085318621729,1.3565533270996237,1.3714981223370746,1.3864429175745254,1.4013877128119763,1.4163325080494271,1.431277303286878,1.4462220985243288,1.4611668937617797,1.4761116889992305,1.4910564842366805,1.5060012794741313,1.5209460747115822,1.535890869949033,1.5508356651864839,1.5657804604239347,1.5807252556613856,1.5956700508988364,1.6106148461362872,1.625559641373738,1.640504436611189,1.6554492318486398,1.6703940270860906,1.6853388223235415,1.7002836175609923,1.7152284127984423,1.7301732080358931,1.745118003273344,1.7600627985107948,1.7750075937482457,1.7899523889856965,1.8048971842231474,1.8198419794605982,1.834786774698049,1.8497315699355,1.8646763651729508,1.8796211604104016,1.8945659556478525,1.9095107508853033,1.9244555461227533,1.9394003413602041,1.954345136597655,1.9692899318351058,1.9842347270725567,1.9991795223100075,2.0141243175474584,-11.681140188188344,-11.637723621787291,-11.594307055386238,-11.550890488985186,-11.507473922584134,-11.464057356183082,-11.420640789782029,-11.377224223380976,-11.333807656979923,-11.29039109057887,-11.24697452417782,-11.203557957776766,-11.160141391375713,-11.11672482497466,-11.073308258573608,-11.029891692172555,-10.986475125771502,-10.943058559370451,-10.899641992969398,-10.856225426568345,-10.812808860167292,-10.76939229376624,-10.725975727365187,-10.682559160964136,-10.639142594563083,-10.59572602816203,-10.552309461760977,-10.508892895359924,-10.465476328958871,-10.422059762557819,-10.378643196156768,-10.335226629755715,-10.291810063354662,-10.248393496953609,-10.204976930552556,-10.161560364151505,-10.118143797750452,-10.0747272313494,-10.031310664948347,-9.987894098547294,-9.94447753214624,-9.901060965745188,-9.857644399344135,-9.814227832943084,-9.770811266542031,-9.727394700140978,-9.683978133739926,-9.640561567338873,-9.597145000937822,-9.553728434536769,-9.510311868135716,-9.466895301734663,-9.42347873533361,-9.380062168932557,-9.336645602531505,-9.293229036130452,-9.2498124697294,-9.206395903328348,-9.162979336927295,-9.119562770526242,-9.076146204125191,-9.032729637724138,-8.989313071323085,-8.945896504922032,-8.90247993852098,-8.859063372119927,-8.815646805718874,-8.772230239317821,-8.728813672916768,-8.685397106515717,-8.641980540114664,-8.598563973713611,-8.555147407312559,-8.511730840911508,-8.468314274510455,-8.424897708109402,-8.381481141708349,-8.338064575307296,-8.294648008906243,-8.25123144250519,-8.207814876104138,-8.164398309703087,-8.120981743302034,-8.07756517690098,-8.034148610499928,-7.990732044098875,-7.947315477697823,-7.90389891129677,-7.860482344895718,-7.8170657784946656,-7.773649212093613,-7.73023264569256,-7.686816079291508,-7.643399512890455,-7.599982946489402,-7.55656638008835,-7.513149813687297,-7.4697332472862445,-7.426316680885193,-7.38290011448414,-7.339483548083087,-7.296066981682035,-7.252650415280982,-7.209233848879929,-7.165817282478876,-7.122400716077824,-7.078984149676772,-7.035567583275719,-6.992151016874667,-6.948734450473614,-6.905317884072561,-6.861901317671509,-6.818484751270456,-6.775068184869403,-6.7316516184683515,-6.688235052067299,-6.644818485666246,-6.601401919265194,-6.557985352864141,-6.514568786463088,-6.471152220062036,-6.427735653660983,-6.3843190872599305,-6.340902520858878,-6.297485954457826,-6.254069388056773,-6.21065282165572,-6.167236255254668,-6.123819688853615,-6.080403122452562,-6.03698655605151,-5.9935699896504575,-5.950153423249405,-5.906736856848353,-5.8633202904473,-5.819903724046247,-5.776487157645194,-5.733070591244142,-5.689654024843089,-5.6462374584420365,-5.6028208920409845,-5.559404325639932,-5.515987759238879,-5.472571192837827,-5.429154626436774,-5.385738060035721,-5.342321493634669,-5.298904927233616,-5.2554883608325635,-5.212071794431512,-5.168655228030459,-5.125238661629406,-5.081822095228354,-5.038405528827301,-4.994988962426248,-4.951572396025195,-4.908155829624143,-4.864739263223091,-4.821322696822038,-4.777906130420986,-4.734489564019933,-4.69107299761888,-4.647656431217828,-4.604239864816775,-4.560823298415722,-4.5174067320146705,-4.473990165613618,-4.430573599212565,-4.387157032811512,-4.34374046641046,-4.300323900009407,-4.256907333608354,-4.213490767207302,-4.1700742008062495,-4.126657634405197,-4.083241068004145,-4.039824501603092,-3.996407935202039,-3.952991368800987,-3.909574802399934,-3.8661582359988813,-3.8227416695978294,-3.7793251031967765,-3.7359085367957237,-3.6924919703946717,-3.649075403993619,-3.605658837592566,-3.562242271191513,-3.5188257047904603,-3.4754091383894092,-3.4319925719883564,-3.3885760055873035,-3.3451594391862507,-3.301742872785198,-3.258326306384145,-3.214909739983092,-3.171493173582041,-3.1280766071809882,-3.0846600407799354,-3.0412434743788825,-2.9978269079778297,-2.954410341576777,-2.9109937751757258,-2.867577208774673,-2.82416064237362,-2.7807440759725672,-2.7373275095715144,-2.6939109431704615,-2.6504943767694087,-2.6070778103683576,-2.5636612439673048,-2.520244677566252,-2.476828111165199,-2.4334115447641462,-2.3899949783630934,-2.3465784119620423,-2.3031618455609895,-2.2597452791599366,-2.2163287127588838,-2.172912146357831,-2.129495579956778,-2.086079013555727,-2.042662447154674,-1.9992458807536213,-1.9992458807536213,-1.9558293143525685,-1.9124127479515156,-1.8689961815504628,-1.82557961514941,-1.7821630487483588,-1.738746482347306,-1.6953299159462532,-1.6519133495452003,-1.6084967831441475,-1.5650802167430946,-1.5216636503420435,-1.4782470839409907,-1.4348305175399378,-1.391413951138885,-1.3479973847378321,-1.3045808183367793,-1.2611642519357282,-1.2177476855346754,-1.1743311191336225,-1.1309145527325697,-1.0874979863315168,-1.044081419930464,-1.0006648535294111,-0.9572482871283601,-0.9138317207273072,-0.8704151543262544,-0.8269985879252015,-0.7835820215241487,-0.7401654551230958,-0.6967488887220448,-0.6533323223209919,-0.6099157559199391,-0.5664991895188862,-0.5230826231178334,-0.47966605671678053,-0.4362494903157277,-0.3928329239146766,-0.34941635751362377,-0.3059997911125709,-0.26258322471151807,-0.21916665831046522,-0.17575009190941238,-0.1323335255083613,-0.08891695910730846,-0.04550039270625561,-0.002083826305202763,0.041332740095850085,0.08474930649690293,0.12816587289795578,0.17158243929900685,0.17158243929900685,0.2149990057000597,0.25841557210111255,0.3018321385021654,0.34524870490321824,0.3886652713042711,0.43208183770532216,0.475498404106375,0.5189149705074279,0.5623315369084807,0.6057481033095335,0.6491646697105864,0.6925812361116375,0.7359978025126903,0.7794143689137432,0.822830935314796,0.8662475017158489,0.9096640681169017,0.9530806345179546,0.9964972009190056,1.0399137673200585,1.0833303337211113,1.1267469001221642,1.170163466523217,1.2135800329242699,1.256996599325321,1.3004131657263738,1.3438297321274266,1.3872462985284795,1.4306628649295323,1.4740794313305852,1.5174959977316362,1.560912564132689,1.604329130533742,1.6477456969347948,1.6911622633358476,1.7345788297369005,1.7779953961379533,1.8214119625390044,1.8648285289400572,1.90824509534111,1.951661661742163,1.9950782281432158,2.0384947945442686,2.0819113609453197,2.1253279273463725,2.1687444937474254,2.2121610601484782,2.255577626549531,2.298994192950584,2.342410759351637,2.342410759351637,2.385827325752688,2.4292438921537407,2.4726604585547935,2.5160770249558464,2.5594935913568992,2.602910157757952,2.646326724159003,2.689743290560056,2.733159856961109,2.7765764233621617,2.8199929897632146,2.8634095561642674,2.9068261225653202,2.9502426889663713,2.993659255367424,3.037075821768477,3.08049238816953,3.1239089545705827,3.1673255209716356,3.2107420873726866,3.2541586537737395,3.2975752201747923,3.340991786575845,3.384408352976898,3.427824919377951,3.471241485779002,3.514658052180055,3.5580746185811076,3.6014911849821605,3.6449077513832133,3.688324317784266,3.731740884185319,3.77515745058637,3.818574016987423,3.861990583388476,3.9054071497895286,3.9488237161905815,3.9922402825916343,4.035656848992685,4.079073415393738,4.122489981794791,4.165906548195844,4.209323114596897,4.25273968099795,4.296156247399001,4.3395728138000536,4.382989380201106,4.426405946602159,4.469822513003212,4.513239079404265,4.556655645805318,4.600072212206371,4.6434887786074235,4.686905345008476,4.730321911409526,4.7737384778105785,4.817155044211631,4.860571610612684,4.903988177013737,4.94740474341479,4.990821309815843,5.034237876216896,5.077654442617948,5.121071009019001,5.164487575420054,5.207904141821107,5.25132070822216,5.294737274623209,5.338153841024262,5.381570407425315,5.424986973826368,5.4684035402274205,5.511820106628473,5.555236673029526,5.598653239430579,5.642069805831632,5.685486372232685,5.728902938633738,5.77231950503479,5.815736071435843,5.8591526378368926,5.902569204237945,5.945985770638998,5.989402337040051,6.032818903441104,6.076235469842157,6.11965203624321,6.1630686026442625,6.206485169045315,6.249901735446368,6.293318301847421,6.336734868248474,6.380151434649527,6.423568001050576,6.466984567451629,6.510401133852682,6.553817700253735,6.597234266654787,6.64065083305584,6.684067399456893,6.727483965857946,6.770900532258999,6.814317098660052,6.8577336650611045,6.901150231462157,6.944566797863207,6.9879833642642595,7.031399930665312,7.074816497066365,7.118233063467418,7.161649629868471,7.205066196269524,7.248482762670577,7.291899329071629,7.335315895472682,7.378732461873735,7.422149028274788,7.465565594675841,7.50898216107689,7.552398727477943,7.595815293878996,7.639231860280049,7.6826484266811015,7.726064993082154,7.769481559483207,7.81289812588426,7.856314692285313,7.899731258686366,7.943147825087419,7.986564391488471,8.029980957889524,8.073397524290574,8.116814090691626,8.16023065709268,8.203647223493732,8.247063789894785,8.290480356295838,8.33389692269689,8.377313489097943,8.420730055498996,8.46414662190005,8.507563188301102,8.550979754702155,8.594396321103208,8.637812887504257,8.68122945390531,8.724646020306363,8.768062586707416,8.811479153108468,8.854895719509521,8.898312285910574,8.941728852311627,8.98514541871268,9.028561985113733,9.071978551514785,9.115395117915838,9.158811684316888,9.20222825071794,9.245644817118993,9.289061383520046,9.332477949921099,9.375894516322152,9.419311082723205,9.462727649124258,9.50614421552531,9.549560781926363,9.592977348327416,9.636393914728469,9.679810481129522,9.723227047530571,9.766643613931624,9.810060180332677,9.85347674673373,9.896893313134782,9.940309879535835,9.983726445936888,10.027143012337941,10.070559578738994,10.113976145140047,10.1573927115411,10.200809277942152,10.244225844343205,10.287642410744255,10.331058977145307,10.37447554354636,10.417892109947413,10.461308676348466,10.504725242749519],\n", "\"..violinwidth..\":[2.0903231041459466E-4,2.4200315964418456E-4,2.795561748043801E-4,3.22224558778337E-4,3.70587502354159E-4,4.252718176686319E-4,4.869532780727848E-4,5.563576049632983E-4,6.342610394894325E-4,7.214904352072449E-4,8.18922806864197E-4,9.274842707105567E-4,0.0010481483131971126,0.0011819333277717878,0.0013298993638568863,0.001493144038082489,0.0016727975655550639,0.0018700168784105053,0.002085978810161523,0.002321872337386415,0.002578889885063438,0.0028582177182311323,0.00316102546049926,0.003488454799048089,0.0038416074558833826,0.004221532525961366,0.004629213304009906,0.005065553743057489,0.005531364708404364,0.006027350210564011,0.006554093819074184,0.007112045475517628,0.00770150893808766,0.00832263010107695,0.008975386440270268,0.009659577838927418,0.010374819048441822,0.011120534032503087,0.011895952433399344,0.012700108383776653,0.013531841866627802,0.01438980280052552,0.015272457996259993,0.016178101095333856,0.017104865560567246,0.01805074074485368,0.019013591016484616,0.01999117786913941,0.020981184892430515,0.021981245425708423,0.02298897266464517,0.024001991937968894,0.02501797482168626,0.02603467471129771,0.027049963429960626,0.028061868413334627,0.02906860998094086,0.030068638180185518,0.031060668673537222,0.032043717132366346,0.033017131603176035,0.03398062232371244,0.034934288487904384,0.03587864148970691,0.03681462421647258,0.03774362601200198,0.03866749298727754,0.03958853342222074,0.04050951807358907,0.04143367528114759,0.0423646808451519,0.043306642731488654,0.04426408074495088,0.045241901394451604,0.04624536825480878,0.047280068206415275,0.048351874005003834,0.04946690369728536,0.050631477453048,0.051852072429075836,0.05313527631388709,0.05448774022391497,0.05591613163073634,0.05742708799489394,0.05902717176467824,0.06072282736810996,0.06252034078376979,0.06442580222183322,0.0664450723817151,0.06858375267842376,0.0708471597475914,0.07324030445095367,0.07576787551167276,0.07843422781441746,0.08124337531061282,0.08419898837692916,0.08730439538701502,0.09056258817475178,0.09397623099384846,0.09754767251515142,0.10127896035115466,0.10517185755809264,0.1092278605406376,0.11344821777321203,0.11783394875549978,0.1223858626377503,0.12710457598342642,0.13199052918173185,0.13704400107933523,0.14226512146761078,0.14765388113705788,0.15321013929217533,0.15893362820559345,0.16482395507737094,0.17088060115149212,0.17710291822436536,0.18349012275711102,0.19004128787244545,0.1967553335760735,0.2036310155899345,0.21066691321917044,0.21786141669527062,0.22521271444404015,0.23271878071875557,0.24037736401650808,0.24818597666014638,0.2561418858807012,0.2642421066773483,0.27248339666590465,0.28086225305482176,0.2893749118121728,0.2980173490108544,0.30678528426486007,0.3156741860996547,0.3246792790369094,0.33379555212046813,0.34301776856838917,0.3523404762069019,0.36175801832730425,0.3712645446070413,0.3808540217515097,0.39052024354345405,0.40025684003111234,0.41005728564346944,0.4199149060890891,0.4298228839719753,0.439774263141239,0.4497619518780465,0.45977872511069773,0.46981722593333025,0.47986996678290683,0.4899293306996181,0.4999875731550129,0.510036824977528,0.5200690969344874,0.5300762865415148,0.5400501876633833,0.5499825034440403,0.5598648630577946,0.5696888427089746,0.5794459912247245,0.5891278604867443,0.5987260408346259,0.6082322014486329,0.617638135586199,0.6269358104072212,0.6361174209819144,0.6451754479350544,0.654102718045428,0.6628924669928469,0.6715384033304103,0.6800347726600935,0.688376420907936,0.6965588555336322,0.7045783034701694,0.7124317645739299,0.7201170593752975,0.7276328699549117,0.7349787728311556,0.7421552628295951,0.7491637670139842,0.7560066478891189,0.7626871952365315,0.7692096061119132,0.7755789527154157,0.781801138039415,0.7878828393993541,0.7938314401581413,0.7996549501597084,0.8053619155885074,0.8109613191655336,0.8109613191655336,0.8164624717737606,0.8218748967734973,0.8272082084175061,0.8324719859039414,0.837675644709574,0.8428283069240673,0.8479386723566263,0.8530148922077415,0.8580644470903651,0.8630940311464006,0.8681094439363017,0.8731154916827191,0.878115899325024,0.8831132346921317,0.8881088459289144,0.8931028131194254,0.8980939148417977,0.9030796101683416,0.9080560363943647,0.9130180225445901,0.917959118470942,0.9228716391244771,0.9277467233613274,0.9325744064320403,0.9373437051092907,0.9420427142344119,0.9466587133114277,0.9511782816511332,0.9555874204693501,0.9598716802743091,0.9640162918391698,0.9680062990472589,0.9718266919192554,0.9754625381824038,0.9788991118200627,0.9821220171433752,0.9851173070527748,0.9878715943020692,0.990372154738441,0.992607021663759,0.9945650706420642,0.9962360942605748,0.9976108665328933,0.9986811968090126,0.999439973223389,0.9998811958661219,0.9998811958661219,1.0,0.999792669765161,0.9992566429113077,0.9983905071734572,0.9971939889601492,0.9956679350530274,0.9938142880242874,0.9916360560649449,0.9891372778842166,0.9863229832910201,0.9831991500056739,0.9797726571767073,0.976051235998033,0.9720434177392745,0.9677584794208454,0.9632063872890627,0.9583977381788763,0.9533436987957522,0.9480559429068105,0.9425465864065432,0.9368281202160513,0.930913340987432,0.9248152796170599,0.9185471276222372,0.9121221615037698,0.9055536653003518,0.8988548516364216,0.892038781670163,0.8851182844587103,0.8781058763692502,0.8710136812732756,0.8638533523623022,0.856635996512477,0.849372102198698,0.8420714720121878,0.8347431608657607,0.8273954209755812,0.8200356546850465,0.8126703761444294,0.8053051827787487,0.7979447373664871,0.7905927614148232,0.7832520403550283,0.7759244408979304,0.7686109406873805,0.7613116701740715,0.7540259664075624,0.7467524382163421,0.7467524382163421,0.7394890420195408,0.732233167295045,0.7249817305227203,0.717731276233315,0.7104780836281845,0.703218277096635,0.6959479388498753,0.6886632218163972,0.6813604609050461,0.6740362807404825,0.6666876980114426,0.6593122166448151,0.651907914126625,0.6444735174324613,0.6370084672017619,0.629512968989158,0.6219880306475869,0.6144354851376076,0.6068579983102752,0.5992590614719974,0.5916429688037425,0.5840147799685861,0.576380268495866,0.5687458567723453,0.5611185386963655,0.5535057912559662,0.5459154764729603,0.5383557353090043,0.5308348752545607,0.5233612534156211,0.5159431569751419,0.5085886829359598,0.5013056190497551,0.49410132780317245,0.4869826352689561,0.47995572653865465,0.47302604933641457,0.4661982272732565,0.4594759840409149,0.45286207966697345,0.44635825976197846,0.4399652184878053,0.4336825757682595,0.42750886905103785,0.42144155971808916,0.41547705403221136,0.4096107383043928,0.40383702777167674,0.39814942849170926,0.3925406113898745,0.38700249743993126,0.3815263528210579,0.37610289277448705,0.37072239278259117,0.3653748056130675,0.3600498827113243,0.354737298385416,0.34942677520994475,0.34410820907787454,0.33877179235169386,0.3334081336070662,0.3280083725220752,0.3225642885422709,0.31706840204469977,0.3115140668314862,0.30589555290379167,0.3002081185984348,0.29444807131035006,0.2886128161725555,0.28270089221951616,0.2767119957177792,0.2706469905076013,0.26450790535901786,0.2582979185035205,0.2520213296563147,0.2456835199922018,0.23929090067875544,0.23285085070194178,0.22637164484021677,0.21986237275196246,0.21333285023670168,0.20679352381177035,0.20025536981212883,0.19372978927106668,0.18722849987318038,0.18076342628788775,0.17434659019179555,0.1679900012715667,0.16170555046588653,0.15550490665622205,0.14939941795205092,0.1434000186380382,0.13751714275934598,0.13176064521819136,0.12613973114131055,0.12066289415574255,0.11533786408098329,0.11017156441087796,0.10517007982046936,0.1003386337933282,0.09568157632559933,0.0912023815260631,0.08690365479886149,0.08278714916906389,0.07885379019275722,0.07510370878456132,0.07153628119796018,0.0681501753090733,0.06494340228369633,0.06191337265170363,0.05905695577306159,0.056370541656360795,0.053850104084291264,0.05149126401094907,0.049289352223088265,0.04723947030096385,0.04533654897350667,0.04357540303622838,0.04195078208720123,0.04045741643518542,0.03909005764275059,0.03784351328412124,0.036712675620378804,0.03569254402133763,0.03477824109155985,0.03396502258521359,0.03324828131842963,0.032623545406136344,0.03208647126080095,0.03163283189095488,0.031258501125894934,0.030959434467803817,0.03073164733226178,0.030571191481552237,0.030474130481447502,0.03043651502078601,0.030454358923971317,0.030523616659749057,0.03064016310583464,0.030799776269109753,0.03099812358646172,0.031230752343504895,0.03149308464928046,0.031780417296713256,0.032087926723441594,0.032410679168114916,0.032743645995955355,0.03308172404692456,0.03341976074282988,0.0337525835786695,0.03407503352084514,0.03438200174276271,0.03466846904875581,0.03492954727187843,0.03516052188126775,0.03535689500147244,0.03551442802998875,0.03562918304047341,0.03569756217753763,0.035716344284115166,0.03568271805320879,0.03559431106107762,0.035449214117044124,0.03524600045421056,0.034983739383396,0.034662004137277005,0.03428087374066732,0.033840928853674936,0.03334324164470451,0.03278935985756883,0.032181285339089205,0.03152144738843002,0.030812671375170086,0.030058143148162512,0.029261369820265483,0.028426137564040086,0.02755646708983774,0.026656567500003153,0.02573078922119568,0.024783576711395305,0.02381942161963062,0.022842817045732454,0.021858213505613105,0.020869977156035283,0.019882350773065167,0.018899417912019968,0.01792507060541301,0.01696298088088842,0.01601657630512778,0.01508901968385089,0.01418319297387604,0.013301685392181444,0.012446785640290609,0.011620478101192237,0.010824442811298993,0.010060058962361673,0.009328411648274972,0.00863030153963739,0.007966257144853753,0.007336549300405377,0.006741207524400157,0.006180037866241864,0.005652641890684721,0.005158436446019852,0.0046966738829466725,0.004266462412029309,0.003866786312707695,0.0034965257347949357,0.003154475863429342,0.0028393652497687165,0.0025498731415752878,0.0022846456795534652,0.0020423108562561917,0.0018214921640310813,0.0016208208863800959,0.0014389470128875227,0.0012745487812464021,0.0011263408706826744,9.930812891172222E-4,8.735770116696785E-4,7.666884406115468E-4,6.713327666947726E-4,5.864863190404356E-4,5.111859956352658E-4,4.4452986914936347E-4,3.856770634763209E-4,3.33846995343119E-4,6.89834292179992E-5,7.94195973193296E-5,9.124737450332488E-5,1.0462215205799989E-4,1.1971216550197895E-4,1.3669892235873747E-4,1.5577755072969092E-4,1.7715705315326152E-4,2.010604494853978E-4,2.2772479195596937E-4,2.5740103517882083E-4,2.9035374375514463E-4,3.2686062024369565E-4,3.672118367094867E-4,4.1170915383467813E-4,4.6066481270819795E-4,5.144001859265044E-4,5.732441765540549E-4,6.375313558194246E-4,7.075998331653282E-4,7.837888554240301E-4,8.664361354403233E-4,9.558749143902791E-4,0.0010524307663126462,0.0011564181579384973,0.0012681367817205364,0.0013878676849636284,0.001515869223069462,0.0016523728700498775,0.001797578924545379,0.0019516521545118847,0.0021147174284086656,0.0022868553850291114,0.0024680981979582402,0.0026584254939113925,0.002857760486806622,0.003065966391252983,0.0032828431801109953,0.0035081247508239673,0.003741476564265613,0.003982493817853325,0.004230700211606739,0.004485547361676675,0.004746414910639688,0.0050126113775787184,0.005283375783704069,0.005557880081086175,0.005835232403068231,0.0061144811452212644,0.006394619875431603,0.006674593061024717,0.006953302589898101,0.007229615051636697,0.007502369733705593,0.00777038727724626,0.008032478926935708,0.008287456299989686,0.008534141590879238,0.00877137812085233,0.008998041135056301,0.009213048745073943,0.009415372911120533,0.009604050356080439,0.009778193303041027,0.009936999929025797,0.010079764430228563,0.010205886598158232,0.010314880811646093,0.01040638435653593,0.01048016499293777,0.010536127699017978,0.010574320530238681,0.010594939543547694,0.010598332747041778,0.01058500304685864,0.010555610174270775,0.010510971586933633,0.010452062348767156,0.010380014002821252,0.010296112460509863,0.010201794938636323,0.010098645982543331,0.009988392619405354,0.009872898690075608,0.009754158410975794,0.009634289219286241,0.00951552395520488,0.009400202434381714,0.009290762461924344,0.00918973033676044,0.009099710891822505,0.009023377111689743,0.0089634593652116,0.00892273428648165,0.008904013333570965,0.00891013105091003,0.008943933058355256,0.009008263788007035,0.00910595398894977,0.009239808020420702,0.009412590955605019,0.009627015521379676,0.009885728903918421,0.010191299456108395,0.01054620335013949,0.010952811227286528,0.011413374906629581,0.01193001422501676,0.012504704091685099,0.013139261852294973,0.01383533506833757,0.014594389828554464,0.015417699718749362,0.016306335584753723,0.01726115622990789,0.018282800192830576,0.01937167875308326,0.02052797031125119,0.021751616285652052,0.023042318660115763,0.024399539305880645,0.025822501185539005,0.027310191528137934,0.028861367042099656,0.03047456120676214,0.03214809365435792,0.03388008162254696,0.03566845342369716,0.037510963841557124,0.039405211329469704,0.04134865684758597,0.04333864414046469,0.04537242122185021,0.047447162801187756,0.04955999335745217,0.05170801054101207,0.05388830856435844,0.05609800122836762,0.05833424422304236,0.06059425634094567,0.06287533924828387,0.06517489547309056,0.06749044429236382,0.06981963523027031,0.07216025891741312,0.0745102551062538,0.07686771768943694,0.0792308966251987,0.08159819673622336,0.08396817341408375,0.08633952532944993,0.0887110843171024,0.0910818026729311,0.09345073816589322,0.09581703712973516,0.0981799160555173,0.10053864215503792,0.1028925134056706,0.10524083861755759,0.10758291808337096,0.10991802537802349,0.11224539087006094,0.1145641874875823,0.11687351924926934,0.11917241302565419,0.12145981393761257,0.12373458472906566,0.12599550937016935,0.12824130105727,0.13047061467837687,0.1326820637097542,0.13487424140266122,0.13704574601157354,0.13919520970880725,0.1413213307278245,0.14342290818105746,0.14549887891023158,0.14754835565014737,0.1495706657227368,0.15156538942877082,0.1535323972713422,0.15547188512940685,0.15738440650199154,0.15927090096461424,0.16113271801898693,0.1629716355747724,0.16478987237718373,0.16659009378533682,0.1683754104118641,0.17014936925241678,0.1719159370620919,0.17367947587201651,0.17544471068062734,0.1772166894977992,0.17900073606302558,0.18080239569848824,0.18262737489126044,0.18448147532341688,0.1863705231820031,0.18830029468040427,0.19027643880671685,0.1923043983816608,0.1943893305571057,0.19653602791557184,0.19874884134059717,0.2010316058175922,0.2033875702949864,0.2058193326868181,0.20832878103144517,0.21091704173808215,0.21358443575505476,0.2163304433828271,0.21915367833310545,0.22205187150481295,0.22502186481080647,0.22805961524820828,0.23116020926250355,0.23431788731347158,0.23752607841176124,0.2407774442606616,0.2440639325103029,0.24737683851295067,0.2507068748598281,0.2540442478833719,0.2540442478833719,0.257378740225168,0.26069979849988917,0.26399662503005555,0.2672582725857605,0.2704737410378457,0.27363207482230245,0.2767224601176788,0.2797343206555038,0.2826574111155531,0.28548190710236715,0.28819849075577997,0.29079843111529396,0.2932736584346482,0.2956168317276528,0.2978213989178644,0.2998816490616142,0.30179275621474483,0.30355081461681604,0.30515286497097766,0.30659691170186676,0.30788193117635015,0.3090078709714826,0.3099756403694699,0.3107870923496174,0.3114449974312703,0.31195300979872254,0.3123156262082915,0.3125381382386397,0.3126265784975569,0.31258766144147454,0.31242871949786066,0.31215763520531364,0.3117827701017773,0.31131289109808385,0.3107570950723786,0.31012473241134964,0.30942533020714336,0.30866851579502064,0.30786394128687183,0.30702120972041125,0.306149803403915,0.3052590149925452,0.3043578817853401,0.30345512368254124,0.30255908519182767,0.3016776818198091,0.30081835113244754,0.2999880087154598,0.2991930092136838,0.29843911257733713,0.29843911257733713,0.29773145559342434,0.2970745287325995,0.29647215829587925,0.2959274938019692,0.2954430005148312,0.29502045697274265,0.2946609573445644,0.2943649184065243,0.29413209090359843,0.2939615750337485,0.2938518397709505,0.2938007457242726,0.29380557121534445,0.2938630412454916,0.2939693590166659,0.294120239667115,0.2943109458835278,0.29453632505606064,0.29479084765115365,0.29506864648918213,0.2953635566295121,0.2956691555841735,0.2959788036027321,0.29628568379458875,0.29658284188036943,0.2968632253907193,0.2971197221580714,0.29734519797420467,0.29753253331295704,0.297674659042664,0.2977645910761699,0.29779546392691836,0.297760563157235,0.29765335671894927,0.29746752519661435,0.2971969909695544,0.29683594631060617,0.2963788804367982,0.2958206055204046,0.2951562816581187,0.2943814407819152,0.2934920094780334,0.2924843306610284,0.29135518402877625,0.2901018052024362,0.2887219034335393,0.2872136777394713,0.28557583130949477,0.2838075840069837,0.2819086827804967,0.2819086827804967,0.279879409787395,0.2777205880295519,0.2754335843017615,0.2730203092600772,0.27048321442973333,0.2678252859904908,0.26505003520114595,0.2621614853542133,0.259164155186038,0.25606303870618463,0.2528635814522529,0.24957165322138175,0.24619351737681136,0.2427357968759461,0.23920543721443868,0.23560966652788326,0.23195595313774733,0.2282519608702626,0.22450550251521925,0.22072449182517107,0.2169168944837482,0.2130906784940127,0.20925376445360452,0.20541397619251392,0.20157899225147602,0.19775629867419456,0.1939531435749536,0.19017649392490574,0.1864329949757763,0.18272893270937343,0.1790701996656952,0.17546226446220947,0.1719101452727773,0.16841838748742627,0.16499104572455336,0.16163167031592932,0.15834329833290095,0.15512844917019672,0.1519891246524961,0.14892681357911958,0.1459425005744828,0.14303667906693077,0.14020936817673715,0.13746013325588963,0.13478810978814154,0.1321920303280144,0.12967025413220662,0.12722079911635445,0.12484137575440292,0.12252942252698136,0.12028214251911615,0.11809654076624466,0.11596946195067602,0.11389762805818272,0.11187767561605988,0.10990619214949073,0.10797975151210684,0.10609494776888746,0.104248427334679,0.10243691909924178,0.10065726229948688,0.09890643193105556,0.09718156152423002,0.09547996314295303,0.09379914450008753,0.09213682311658174,0.09049093748654628,0.088859655244036,0.08724137836021094,0.08563474543120783,0.084038631147162,0.08245214306111383,0.08087461580274002,0.0793056029057397,0.07774486643908167,0.07619236465100175,0.0746482378504933,0.07311279276395193,0.0715864856145401,0.0700699041786924,0.06856374907797447,0.06706881456526967,0.06558596906204708,0.06411613569835138,0.06266027309926948,0.061219356651105505,0.0597943604675093,0.05838624026054258,0.056995917304344085,0.055624263659903736,0.05427208880871985,0.05294012782105993,0.05162903116144328,0.05033935621009805,0.04907156055480363,0.04782599708300708,0.04660291087968692,0.04540243791243088,0.044224605461874615,0.04306933423330059,0.04193644206408974,0.040825649122106046,0.03973658447221763,0.038668793872233875,0.03762174864576234,0.03659485546803144,0.03558746689172239,0.03459889243341975,0.03362841003748628,0.03267527773304624,0.03173874530130511,0.030818065774612928,0.029912506595405647,0.029021360272319448,0.02814395438220397,0.027279660780271286,0.026427903895976428,0.025588168009175436,0.02476000341936063,0.02394303144002303,0.023136948170116512,0.02234152701485627,0.02155661994834589,0.02078215753044584,0.020018147709548594,0.019264673461196247,0.01852188932947163,0.01779001695354839,0.017069339675465187,0.016360196336895644,0.01566297438226252,0.014978102392877387,0.014306042181805421,0.013647280581837722,0.013002321059317427,0.012371675284683102,0.011755854786564606,0.011155362810242582,0.010570686493441664,0.0100022894629798,0.009450604944976149,0.00891602946938031,0.008398917236792012,0.007899575202164355,0.007418258916297027,0.006955169152295135,0.00651044933065055,0.0060841837435317925,0.005676396566468867,0.005287051634079785,0.004916052945975774,0.0045632458596373765,0.004228418918980185,0.0039113062606004525,0.003611590534349991,0.003328906270948418,0.0030628436267820885,0.002812952434818829,0.002578746490618902,0.002359708003654804,0.0021552921464617607,0.001964931637404015,0.0017880412969301697,0.0016240225219655356,0.0014722676284101657,0.001332164017437272,0.0012030981272805952,0.001084459138329559,9.756424054944773E-4,8.760525978478775E-4,7.851065313911383E-4,7.022356863504614E-4,6.26888405597914E-4,5.585317755629011E-4,4.966531953000234E-4,4.407616431793648E-4,3.903886539455344E-4,3.4508902164544686E-4,3.044412461561899E-4,2.680477427675718E-4,2.3553483551175716E-4,2.0655255571468725E-4,1.8077426760628056E-4,1.5789614280862038E-4,1.3763650516639543E-4,1.1973506673617608E-4,1.0395207485609055E-4,9.006738911950486E-5],\n", "\"..quantile..\":[0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0]\n", "}\n", "}],\n", "\"theme\":{\n", "\"name\":\"light\"\n", "}\n", "};\n", " var plotContainer = document.getElementById(\"twhVBF\");\n", " window.letsPlotCall(function() {{\n", " LetsPlot.buildPlotFromProcessedSpecs(plotSpec, -1, -1, plotContainer);\n", " }});\n", " })(); \n", " </script>" ] }, "execution_count": 12, "metadata": {}, "output_type": "execute_result" } ], "source": [ "// Combine marginal violin and boxplot.\n", "// Make margins much larger.\n", "\n", "p + ggmarginal(\"rb\", size=0.4, layer=geomViolin(trim = false, color = \"black\")) +\n", " ggmarginal(\"rb\", layer=geomBoxplot(mapping = {group = \"c\"}, fill = \"white\", color = \"white\", \n", " alpha = .25, outlierColor = \"red\", width = .2))\n" ] }, { "cell_type": "code", "execution_count": 13, "id": "north-worthy", "metadata": {}, "outputs": [ { "data": { "text/html": [ " <div id=\"SdqVYy\"></div>\n", " <script type=\"text/javascript\" data-lets-plot-script=\"plot\">\n", " (function() {\n", " var plotSpec={\n", "\"mapping\":{\n", "\"x\":\"x\",\n", "\"y\":\"y\"\n", "},\n", "\"coord\":{\n", "\"name\":\"cartesian\",\n", "\"flip\":false\n", "},\n", "\"data\":{\n", "},\n", "\"kind\":\"plot\",\n", "\"scales\":[],\n", "\"layers\":[{\n", "\"mapping\":{\n", "\"fill\":\"..level..\"\n", "},\n", "\"stat\":\"density2df\",\n", "\"position\":\"identity\",\n", "\"geom\":\"density2df\",\n", "\"data\":{\n", "\"..group..\":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,2.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,4.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0],\n", "\"x\":[-2.8237758007155014,-2.79882480175588,-2.733215051367514,-2.677409109408531,-2.6477992020277528,-2.6222031546406397,-2.5719287906878012,-2.5102729784734024,-2.4978330022648683,-2.4889526622639666,-2.445261181081732,-2.4297948982448734,-2.372293180378378,-2.3605286106506176,-2.343136847538273,-2.291950379095673,-2.2559840170512286,-2.222985954533968,-2.176000716603143,-2.151515557476422,-2.1306730621885777,-2.0719028534239694,-2.0088645856680136,-1.9873732409688927,-1.9565613189161315,-1.8840115836407128,-1.841728454732884,-1.7585421232835516,-1.7579226558136964,-1.6745923237977545,-1.6080137120667715,-1.5769085909964327,-1.5074561928626249,-1.431259743082597,-1.4128815594359327,-1.3403200619274953,-1.297039516789618,-1.1883765092351757,-1.1731839309923657,-1.1646120475212847,-1.1292409670598165,-1.0325242057672002,-1.0060478000572362,-0.9650671321396773,-0.8943895163045372,-0.8389116691221066,-0.7647257164996901,-0.7478735358337314,-0.6717755381869779,-0.5907365466441252,-0.58559173595396,-0.5046394072518474,-0.4219502985363448,-0.42007712663867025,-0.3375032763167187,-0.26809364369111854,-0.23584226497019145,-0.17036714538158826,-0.12039305358354291,-0.040431806827372796,-0.003231014446459568,0.02359665001443112,0.16124232337117306,0.16390511648866912,0.16579732769216982,0.17685725686240694,0.31189494356951464,0.3310412474237996,0.3558730353972468,0.46064982410396915,0.4981773783589283,0.5444686091409388,0.6129661776662712,0.6653135092940587,0.7255210185116514,0.7701027018819122,0.8324496402291874,0.8987015597531638,0.9330880496051872,0.9995857711643179,1.0648687502151866,1.102410833656629,1.1667219020994466,1.2269196091488368,1.2759360660739105,1.333858033034577,1.3863682192291442,1.4521181355323254,1.5009941639697058,1.5446668152543293,1.629326152911668,1.6681302949048362,1.702578258268824,1.806824938147292,1.835266425839965,1.8604601483985892,1.9839667284218105,2.0024025567750936,2.0189153010791863,2.1589362195873196,2.169538687710224,2.1794414743773967,2.328649241623344,2.3366748186453528,2.3449216876638204,2.4901687774814434,2.5038109495804832,2.5200881427254043,2.6418867609259973,2.670947080515612,2.712510473904981,2.7834694265275886,2.8380832114507424,2.915552229532107,2.933565478510978,3.005219342385871,3.042642921234844,3.1345644891324245,3.1617933447536597,3.1723554733210015,3.20310653068082,3.2754788738970806,3.3394916042561302,3.386370897629133,3.4682987378151644,3.4924197824401713,3.5066277351912607,3.5726053295032543,3.5945050578038398,3.6737638661263894,3.698224466625609,3.7372036164084275,3.7993057160863817,3.840899997061518,3.901623949749652,4.001393409533261,4.005381722724177,4.0080361279966485,4.017157279499626,4.117461302819816,4.175172258931777,4.237236011549163,4.299808462293145,4.342308389866908,4.368920603437342,4.499610364079828,4.509444520802036,4.518019810717261,4.667289489327196,4.676580651737167,4.686292534495596,4.82473293881937,4.8437167826722956,4.86494267819541,4.982973229711543,5.010852913607426,5.03965157858528,5.151730535884527,5.177989044542555,5.200320429872713,5.343232617177822,5.344835881841645,5.345125175477685,5.345719435357227,5.465313473642075,5.512261306412814,5.573862892253761,5.667815376221306,5.673803035431133,5.679397437347943,5.749236849985017,5.805640714540388,5.818292729647869,5.846533568283073,5.868443125907724,5.877340992394881,5.882789495011902,5.893420180718316,5.899354405343406,5.8925504040772605,5.879519027115192,5.876934851221648,5.868217689731054,5.846533568283073,5.81708386874454,5.803109514790032,5.746967508253508,5.679397437347943,5.670160754665208,5.660686414317476,5.575612797942492,5.512261306412814,5.4777158210839065,5.423626686022333,5.373721805302788,5.345125175477685,5.26713153755149,5.241431583735652,5.177989044542555,5.161076295574029,5.133176980538503,5.0576425110602035,5.010852913607426,4.957074396278468,4.880124029426415,4.859219169460122,4.8437167826722956,4.766604181852609,4.695932131716521,4.676580651737167,4.674637727376833,4.672425182646339,4.586003024066152,4.509444520802036,4.497409537870897,4.483900818691211,4.4073365172470105,4.342308389866908,4.316099156434429,4.282864054392322,4.220197660236712,4.175172258931777,4.119510102563092,4.028646547991039,4.015379043540822,4.0080361279966485,3.988010320497816,3.9021095247869866,3.840899997061518,3.7844457364181068,3.700174787454573,3.6737638661263894,3.6616369601570042,3.61987597510001,3.5315579180848733,3.5066277351912607,3.466438688291431,3.396731740198206,3.3394916042561302,3.2594900488209877,3.25058871665677,3.1723554733210015,3.1235173221926367,3.0341727325330723,3.005219342385871,2.988297155578353,2.924583136410755,2.857791344044239,2.8380832114507424,2.8011647951133014,2.731672066647052,2.670947080515612,2.606540474588087,2.5494117097669307,2.5038109495804832,2.4818638161474684,2.4129135108623387,2.3566020768336795,2.3366748186453528,2.2994504568884135,2.2286880925060384,2.169538687710224,2.096158019184905,2.0699745340449898,2.0024025567750936,1.9582340952258814,1.8646491773757976,1.835266425839965,1.812484437642686,1.6796514701264051,1.6681302949048362,1.6567310903278223,1.5120246181602663,1.5009941639697058,1.4878350655104864,1.358843913589638,1.333858033034577,1.2972620349949917,1.217547840190333,1.1667219020994466,1.0839995176561832,1.0815958201349183,0.9995857711643179,0.9482253002890264,0.8633276425361256,0.8324496402291874,0.8084075748674433,0.6823283912646936,0.6653135092940587,0.6437926610328812,0.5434777871500547,0.4981773783589283,0.42427075459513297,0.38537515106131615,0.3310412474237996,0.3164631733014964,0.2969152790036542,0.22040093065343846,0.16390511648866912,0.12836211752285998,0.09051886846666868,0.04397549808448353,-0.003231014446459568,-0.03371906830125759,-0.05608351433271608,-0.09634381540331916,-0.11910681605051465,-0.14804614687078654,-0.15351343911749282,-0.17036714538158826,-0.18799678377192564,-0.19184819173282008,-0.19184819173282008,-0.20055443609109425,-0.20226825044075802,-0.20101954602109018,-0.19652514340949878,-0.19305965686470294,-0.1906362870625209,-0.1734449095802333,-0.17282090692785346,-0.17248988297130374,-0.17036714538158826,-0.1464559647279966,-0.14197133700435494,-0.1384056412327368,-0.12191679610618245,-0.11270495452664697,-0.10620387634460648,-0.1006669474949149,-0.08906808554701229,-0.08279611678568521,-0.08211101960213796,-0.07189772798575156,-0.06835123573438295,-0.06622613668771926,-0.060532023465365015,-0.05858498210837837,-0.05652779518232265,-0.05346612214505697,-0.05226983935389917,-0.05054306086568694,-0.04886044405354184,-0.047866739359063715,-0.04609380357913295,-0.04498466302910842,-0.04391211435765996,-0.0415894665207599,-0.04059162039473563,-0.03939605056945972,-0.0361547296394491,-0.03512047018014286,-0.03391918900599222,-0.02961058880122991,-0.028624935251036376,-0.027573408763863938,-0.022225616454116803,-0.021450068000818945,-0.02065154576306405,-0.014296083346744481,-0.013841274933131587,-0.013347419755836754,-0.005807945884143351,-0.005707273186954964,-0.005581493912563573,-0.003231014446459568,0.004507280541290015,0.005036625814055284,0.005857606520772052,0.016390031058390875,0.017882933314696814,0.02039916371832895,0.029557240432769305,0.03226933939468957,0.03700655054349866,0.04366757522789122,0.0475724846796961,0.05437139456134865,0.05785011162188525,0.06223551041350461,0.0696634627809356,0.07054083579865633,0.07370283151545465,0.07851994568637188,0.07849383990581948,0.07849383990582126,0.07354333841086458,0.072470412555802,0.072470412555802,0.062341588133381975,0.055766535348471535,0.05138356037053171,0.040618272322388904,0.01476987973709143,0.011696032942730028,0.007947181603466191,-0.003231014446459568,-0.03915674509501166,-0.05404298078095238,-0.09727758921487428,-0.1276266121405385,-0.1502973324607968,-0.15831845732828675,-0.17036714538158826,-0.24516171298267508,-0.3351092933780162,-0.3364626200089287,-0.3375032763167187,-0.33952722310099404,-0.4751581108823384,-0.5046394072518474,-0.5330903205957682,-0.6487493552752728,-0.6680662495674685,-0.6717755381869779,-0.6787669815912398,-0.7869339837337552,-0.8389116691221066,-0.9016941909144052,-0.9831938271828715,-1.0060478000572362,-1.013415387676818,-1.027863436965653,-1.1307319074876938,-1.1731839309923657,-1.250363592185261,-1.271258216149394,-1.3403200619274953,-1.3706688347504699,-1.4505050221076345,-1.4936485820811907,-1.5074561928626249,-1.536040312394669,-1.6181510564616497,-1.6745923237977545,-1.738752297914953,-1.8064761629540493,-1.841728454732884,-1.8558112218764267,-1.8827336902430485,-1.9671398147769779,-2.0088645856680136,-2.071330083139652,-2.163531085904565,-2.1708970771375613,-2.176000716603143,-2.259025643614266,-2.270965551800516,-2.343136847538273,-2.3468399344487754,-2.3502022721254043,-2.376041705241504,-2.421674820809211,-2.4860260518053705,-2.495983430962018,-2.5102729784734024,-2.561182343186183,-2.5930101841724937,-2.621634400292809,-2.677409109408531,-2.678304979277387,-2.6787539251582198,-2.679687921321899,-2.732457604966945,-2.7589116876547797,-2.7838712020105048,-2.8158707212695457,-2.8295601452696584,-2.834023035729196,-2.8445452403436606,-2.8852826121368276,-2.9035055783377635,-2.934040696147764,-2.941725291024693,-2.973932826586984,-2.984759339007608,-3.01168137127879,-3.0342168231346056,-3.044227150462609,-3.0631131637128917,-3.082628931173547,-3.113564939615695,-3.130422406363218,-3.1680236581116006,-3.1724635592352666,-3.1739911848634668,-3.17881750221392,-3.218410407298566,-3.2329969434794608,-3.25298081222041,-3.257586484865997,-3.28312776051681,-3.295056756427347,-3.3150596135922203,-3.323635144671111,-3.327410603479083,-3.3459536331490494,-3.357570473684504,-3.3605104003798356,-3.364045751304535,-3.388237511748332,-3.397819004592657,-3.4099637388000046,-3.4168946360751526,-3.4321714564050128,-3.4454762324580344,-3.453293443423388,-3.466548415480097,-3.4748073454216994,-3.499721904006182,-3.5029831100651645,-3.504958621800056,-3.513089764084179,-3.5415307402822327,-3.5498615161038742,-3.5637529620199615,-3.5797584696655163,-3.601183688612201,-3.619245397139296,-3.6382566538990186,-3.652742190335365,-3.659288284412768,-3.6802258950193085,-3.701469579178304,-3.7092523751707605,-3.7233975995096253,-3.745533860877563,-3.770180322447013,-3.789928413424482,-3.8173185374295047,-3.8289422000235485,-3.8338578967625656,-3.847362025954438,-3.883505351172004,-3.8997552033633784,-3.9359242471352394,-3.9444437333975095,-3.9785689739803374,-3.9907491169927365,-4.014498156889568,-4.0540565152237775,-4.081260905099744,-4.124066532854963,-4.181634287824697,-4.1982417478124585,-4.215989872810175,-4.285998164862735,-4.348770418759827,-4.378552481060252,-4.427026989232634,-4.48120199769761,-4.5159065496949555,-4.5895985135614135,-4.628743691122285,-4.683042680630085,-4.704283056895783,-4.7544976728047885,-4.817578824465604,-4.850178811565215,-4.921537531248843,-4.99115682892891,-5.017314942500344,-5.023016598599662,-5.029753129177827,-5.074415686997365,-5.098142245635449,-5.163800567939532,-5.170277257906237,-5.184451073435474,-5.217590947453732,-5.229958089330703,-5.238056672061498,-5.2478777555557325,-5.260310307914833,-5.2629839660141,-5.263553574178218,-5.2682960933443095,-5.264630901044333,-5.264306295346088,-5.2604489436813315,-5.251726793164369,-5.246872971485534,-5.239796831997619,-5.230518834162561,-5.211604455876552,-5.206929431176019,-5.202194298867308,-5.184451073435474,-5.166496779595086,-5.161533795053522,-5.147145847912236,-5.123466735459725,-5.1024917609541465,-5.076257297598151,-5.0367535410484745,-5.028909692415226,-5.02510765896503,-5.017314942500344,-4.9716815903415625,-4.950375614445518,-4.916166855907363,-4.8783188878010755,-4.864577016581679,-4.85966921212176,-4.850178811565215,-4.810549895514007,-4.794792579801235,-4.763956963488195,-4.76068886439655,-4.731126329402142,-4.718298877451325,-4.683042680630085,-4.67622957138387,-4.6745814999350275,-4.672177568697299,-4.643958068694873,-4.63454615621966,-4.619639648742866,-4.611551446099827,-4.5936171361356735,-4.577734617170057,-4.562704393715155,-4.550364824292727,-4.542911031586609,-4.5159065496949555,-4.508741117817662,-4.507279640995003,-4.504413312073366,-4.47861755481579,-4.470490252943978,-4.4535357947315966,-4.445801428555242,-4.430157611729327,-4.412011351368853,-4.3956519267698715,-4.385377577970879,-4.3769767192452305,-4.348770418759827,-4.338982282569367,-4.336200221654804,-4.3269578964843145,-4.297485588236824,-4.281412619579166,-4.248723988574673,-4.217407800572612,-4.204477161682692,-4.196061226737363,-4.181634287824697,-4.127699997061819,-4.088413609165183,-4.051254438718426,-4.014498156889568,-3.9588676652761032,-3.878257534044475,-3.8587142956866316,-3.847362025954438,-3.8192063008928923,-3.7432815664166244,-3.6802258950193085,-3.620655517214087,-3.555741981876835,-3.513089764084179,-3.4879849772412905,-3.352201794051025,-3.3459536331490494,-3.340553369097494,-3.1861020683956376,-3.17881750221392,-3.168623601644372,-3.04754483513738,-3.01168137127879,-2.9315142866368653,-2.91664189549832,-2.8445452403436606,-2.8237758007155014,7.6850310085694975,7.621352175120181,7.5477010048741935,7.517894877634367,7.503444390292186,7.360931195784344,7.350758746699237,7.3393283609513045,7.217383253537937,7.18362261576411,7.138642021535956,7.07057716166854,7.016486484828979,6.964631050678301,6.88702586072165,6.8493503538938505,6.831984404991305,6.806441617379125,6.725733297087704,6.68221422295872,6.629203194259217,6.569589836815821,6.538367448353942,6.515078092023591,6.449225093857903,6.377689503175947,6.3611565385799835,6.347941961088461,6.268661981219372,6.223932376458146,6.180805830153332,6.176929845187884,6.171827477331549,6.078602783151794,6.013669699218202,5.976642584750387,5.907915553780509,5.868091746482781,5.846533568283073,5.794858434826297,5.75044761023044,5.679397437347943,5.627462798341556,5.542735653093709,5.512261306412814,5.494360182527462,5.380683860567295,5.350743547709101,5.345125175477685,5.337927128070925,5.198637919314487,5.177989044542555,5.154646392984123,5.037801285538318,5.010852913607426,4.982639000831064,4.87221290648297,4.8437167826722956,4.814182082216735,4.70816293064582,4.676580651737167,4.641528372112873,4.551727790285739,4.509444520802036,4.455278387005778,4.405262000053332,4.342308389866908,4.267587682673533,4.244111522816986,4.175172258931777,4.138333065588734,4.028453865695106,4.013722490341678,4.0080361279966485,3.9953857168144236,3.8976587474613815,3.840899997061518,3.7806759962211736,3.701889697079002,3.6737638661263894,3.663541231599371,3.638701227472504,3.548214749597177,3.5066277351912607,3.4277690999213988,3.413285092772547,3.3394916042561302,3.3080212098132638,3.208110456353591,3.182077796420261,3.1723554733210015,3.1547958166749783,3.055008223757646,3.005219342385871,2.92402158167868,2.9202578883139747,2.8380832114507424,2.7819317434527004,2.7186709859763063,2.670947080515612,2.6349680695701654,2.5316806193823904,2.5038109495804832,2.479799603371104,2.3569053050969995,2.3366748186453528,2.317141474761872,2.1897751755880375,2.169538687710224,2.1482604107178798,2.027270168803673,2.0024025567750936,1.9750887886654258,1.8673512287102376,1.835266425839965,1.7990910762183976,1.7091875169141328,1.6681302949048362,1.620931723515806,1.5525060830313429,1.5009941639697058,1.4409396275844575,1.3969317248657074,1.333858033034577,1.2604927903941352,1.241316547859185,1.1667219020994466,1.083346302316139,1.0829400096465278,0.9995857711643179,0.9197184317209768,0.9123285624493889,0.8324496402291874,0.7500167327315292,0.7476091735217913,0.6653135092940587,0.5969970921226206,0.5624560019713449,0.4981773783589283,0.4509958983092819,0.3637663946009262,0.3310412474237996,0.30910035102675515,0.19544095997672173,0.17030431626115927,0.16390511648866912,0.15385199186113852,0.036381826412693385,-0.003231014446459568,-0.06317133556664523,-0.10197492848750578,-0.17036714538158826,-0.24501261600346602,-0.2653669490430648,-0.3375032763167187,-0.3948336748833263,-0.4506298903775807,-0.5046394072518474,-0.5553534833086324,-0.620336151663631,-0.6717755381869779,-0.7305234553627784,-0.7763611308498994,-0.8389116691221066,-0.921856701969868,-0.9234110616951083,-1.0060478000572362,-1.0627096583064128,-1.1341424338030777,-1.1731839309923657,-1.1994277290400328,-1.3163030795836725,-1.3366072710278898,-1.3403200619274953,-1.3454448141037743,-1.4927068865721296,-1.5074561928626249,-1.520861204410222,-1.5987096044221545,-1.6597041988158283,-1.6745923237977545,-1.7335859659281576,-1.762560809433607,-1.841728454732884,-1.8571050701719631,-1.8706386315818788,-1.9305432805740148,-1.9646760066004916,-1.9971679767571473,-2.0017737911654647,-2.0088645856680136,-2.0606337633827216,-2.088161055064223,-2.118712400423611,-2.176000716603143,-2.176816423657711,-2.1772302172628235,-2.178684542872829,-2.2293304608531805,-2.253636360961167,-2.283245200222055,-2.329544160215195,-2.335027466848622,-2.3375324085121205,-2.343136847538273,-2.3939472747668127,-2.420242272058128,-2.452656351053946,-2.5102729784734024,-2.5134601253772004,-2.5160529283565323,-2.5478737965539455,-2.5890290408312024,-2.652858753813188,-2.6643269365905446,-2.677409109408531,-2.727848722629213,-2.7711732021058086,-2.8445452403436606,-2.899472195570988,-2.9523872238589064,-3.01168137127879,-3.0895399594575377,-3.107038500497576,-3.17881750221392,-3.20724327403253,-3.261214772774297,-3.3225445847464066,-3.3459536331490494,-3.3970947142326837,-3.443921441899721,-3.513089764084179,-3.569011869780761,-3.6453497723535033,-3.6802258950193085,-3.7026776678249034,-3.8412089462194112,-3.847362025954438,-3.8531351890529475,-4.002339133578961,-4.014498156889568,-4.029567240422054,-4.149725344109485,-4.181634287824697,-4.224861931640977,-4.296609138632917,-4.348770418759827,-4.408699047419821,-4.457134662297018,-4.5159065496949555,-4.562063181785902,-4.665027694988929,-4.683042680630085,-4.692180790435896,-4.707385113340002,-4.787189901326098,-4.850178811565215,-4.873674858038557,-4.891520901231743,-4.923698157076439,-4.930557024269266,-4.97220074960131,-4.980334418265297,-5.00660609445002,-5.009914352802191,-5.010321373038964,-5.017314942500344,-5.019410358350767,-5.019526267550994,-5.0194258143620925,-5.017314942500344,-5.01226303337396,-5.012153325116427,-5.0119099419146895,-4.999392494640094,-4.99783248246114,-4.996801013774238,-4.987754684103624,-4.985470322218825,-4.985470322218825,-4.983803226754861,-4.983286836450583,-4.986010293930107,-4.99597049420327,-4.998029930611538,-5.00144679136279,-5.017314942500344,-5.035363447951804,-5.0408357651639655,-5.065322621303212,-5.089091010101158,-5.125118794087216,-5.148976955774622,-5.184451073435474,-5.221238351771188,-5.253361105060461,-5.301159060950006,-5.351587204370603,-5.382441169622865,-5.411597040918296,-5.460772832761434,-5.518723335305733,-5.5359031790644915,-5.5483488416418485,-5.585127303240009,-5.598144430908971,-5.646656057369873,-5.658757163105986,-5.685859466240863,-5.708696342879816,-5.7179273045938634,-5.730369649063668,-5.750289401405704,-5.772342945744818,-5.788493286627437,-5.8012298284169,-5.8169733196730355,-5.823935561230375,-5.852995597175992,-5.856365728023096,-5.857212636174254,-5.858321007412933,-5.889659123093635,-5.89884003856269,-5.910799671575679,-5.920974883265999,-5.937701782554049,-5.951086850358895,-5.958071921004882,-5.972387053987787,-5.979242034427143,-5.996433858648331,-6.001222002259548,-6.003429575438296,-6.020131728111121,-6.023274177237047,-6.023746085249227,-6.024060049501031,-6.039564935127219,-6.04166064359613,-6.042756222531956,-6.050715664484014,-6.0528523798387805,-6.05368121319947,-6.0574852408964865,-6.058961798841718,-6.059243877365958,-6.060523798643565,-6.061113751205868,-6.06062119981881,-6.059560197074655,-6.059179831820769,-6.05732813700422,-6.052469353542127,-6.051379615882869,-6.048391911037276,-6.035314948173433,-6.0342184909219405,-6.032034010600503,-6.020131728111121,-6.007204905891696,-6.005047535401625,-5.997322365834082,-5.9716970156525,-5.958753748849309,-5.924716687630251,-5.903315780032403,-5.883441088933607,-5.871730092522881,-5.852995597175992,-5.804169570049579,-5.769919614759575,-5.729095892279666,-5.685859466240863,-5.643137025535054,-5.591556441801242,-5.549013917400431,-5.518723335305733,-5.441245026094771,-5.417462483326093,-5.351587204370603,-5.330297203385961,-5.2706435684532735,-5.207584767863976,-5.184451073435474,-5.143648899026646,-5.076812891283971,-5.017314942500344,-4.94172535257445,-4.921683865279984,-4.850178811565215,-4.806823347733429,-4.698559273975036,-4.683042680630085,-4.675114304019379,-4.656236937129642,-4.563439640597492,-4.5159065496949555,-4.46465554236161,-4.404964559036974,-4.377519816070501,-4.348770418759827,-4.307245824708343,-4.281412214356113,-4.245719983999155,-4.196739051753802,-4.188882476170021,-4.186516188774625,-4.181634287824697,-4.141799135123818,-4.127674711957086,-4.09647171385987,-4.094511780910129,-4.069292585617713,-4.05495559000994,-4.014498156889568,-4.011802696064281,-4.01106258535426,-4.009447382238228,-3.977527801183152,-3.968095852494664,-3.947852701299216,-3.94130089780138,-3.9237298450017786,-3.906371048938195,-3.8858998322598124,-3.877013301960454,-3.870291933137283,-3.847362025954438,-3.8355524398247436,-3.832977902096511,-3.8274605300326323,-3.804417161568936,-3.794928269919244,-3.7728548699280005,-3.769451570162194,-3.7514366711187606,-3.7340366965166902,-3.7055959451546334,-3.699319542593278,-3.6943190527549294,-3.6802258950193085,-3.6563962582998704,-3.650051108905532,-3.6317826939166533,-3.6159605517946796,-3.5972785661070956,-3.5729491218588523,-3.540479598307492,-3.5319595748315438,-3.5263310013594937,-3.513089764084179,-3.482465532394027,-3.472284926970043,-3.4417302535833274,-3.4356328388552217,-3.409852552044141,-3.3910026936652073,-3.3459536331490494,-3.342324216875835,-3.341104008524372,-3.3377942738943336,-3.301662534393376,-3.2877086166838687,-3.2573998378081264,-3.2511392100633305,-3.22997219092212,-3.216054903865035,-3.17881750221392,-3.1716633334062916,-3.1694487442184887,-3.1630402006308698,-3.130701927701695,-3.1156309714137143,-3.0842037066031667,-3.0673093646835454,-3.048683312977534,-3.0367215249170254,-3.01168137127879,-2.9843606307664547,-2.9723905822887087,-2.9248317580524237,-2.915294480198419,-2.879845050222711,-2.8657865125676008,-2.8445452403436606,-2.7985355159395997,-2.7673088966991584,-2.7269205525545006,-2.677409109408531,-2.650347114234151,-2.6258270030384168,-2.5683877832152806,-2.5102729784734024,-2.4832496100250356,-2.4517722677969633,-2.3933903971863666,-2.343136847538273,-2.30003832420146,-2.2391914136591087,-2.203352871303892,-2.176000716603143,-2.1029252089887187,-2.0466342306517094,-2.0088645856680136,-2.0008307532777163,-1.9862137602732775,-1.8978849017879318,-1.841728454732884,-1.7934623016336948,-1.707215783606622,-1.6875339533660707,-1.6745923237977545,-1.6120687680454502,-1.5869255152141415,-1.5074561928626249,-1.4878874388366636,-1.4615474696637607,-1.3982329022543638,-1.3403200619274953,-1.3135892518977625,-1.2893845183166146,-1.2424623238278327,-1.1824787087223863,-1.1761434223442713,-1.1752071005276905,-1.1731839309923657,-1.1295753156640984,-1.1133397945978905,-1.100271603243236,-1.0964863816459811,-1.0799216768950801,-1.0764743850936949,-1.07512165306085,-1.068618492505518,-1.068618492505518,-1.0701731131560477,-1.0720862298441398,-1.075144351134222,-1.077382023516991,-1.083359199758375,-1.0884890013929525,-1.088679077322193,-1.0962899604870255,-1.0998784314355587,-1.1009348998583626,-1.1056521689586232,-1.1062706596269836,-1.1065814181701858,-1.1069770581585718,-1.1011664440925069,-1.1000017545075575,-1.096116237454285,-1.0819135548897867,-1.0783654516591623,-1.0685215998084772,-1.0538198773536491,-1.0219930230238736,-1.018207846723107,-1.0145088839176575,-1.0060478000572362,-0.9611791466480941,-0.9398647340271511,-0.8981003318536755,-0.8389116691221066,-0.8273864720149717,-0.816793855686031,-0.7393470465379774,-0.6717755381869779,-0.6452324737054891,-0.5951452361708469,-0.5346468776338789,-0.5046394072518474,-0.44834835501834114,-0.4043657280976909,-0.3375032763167187,-0.25718069616987904,-0.2504716787578136,-0.17036714538158826,-0.10941607671312248,-0.044823113096693845,-0.003231014446459568,0.017376019988422087,0.05466701243496175,0.12245963392429182,0.16390511648866912,0.21549753117360204,0.27008660734792933,0.29804144374103636,0.3310412474237996,0.37047985041022535,0.3983832190676395,0.4328992548530728,0.47394304206291693,0.4879802020070869,0.49096465918375287,0.4981773783589283,0.5422679100745533,0.5620234597283975,0.588507718801031,0.5956256994065843,0.6201440122588977,0.6297005620030447,0.6648769881775731,0.6649862689752144,0.6650369601854234,0.6653135092940587,0.6985514185042927,0.7069136470390038,0.7158989291629592,0.7229160049027339,0.7297728888872399,0.7289750908891168,0.727443956063544,0.727443956063544,0.7173530983993235,0.7021846126591118,0.6962279596150172,0.6884686841523635,0.6653135092940587,0.6502320488130522,0.646428528741664,0.638489083151697,0.6116094471821043,0.5949417999055484,0.573647565406759,0.5672817106723596,0.5456713745519952,0.5372603037689796,0.5128621924473187,0.5090300482499632,0.5079814786630816,0.4981773783589283,0.49317361815034566,0.4927608659860372,0.49285698028375613,0.4957361192891412,0.4959514732744985,0.49619338825128523,0.4981773783589283,0.5158539933822297,0.5182354881937812,0.5219589788352046,0.5438963396185841,0.5541687573042751,0.5696341567374539,0.5748890010570964,0.5961412878512728,0.6092246904730878,0.625944540175583,0.6372324091745902,0.6420956328826488,0.6653135092940587,0.6718895608840931,0.6735216722201915,0.6749247941050118,0.6978967260559106,0.7038875190527261,0.7068235739521693,0.7138727118696888,0.7183143162075378,0.7173757720795173,0.7162189866623994,0.7153769846535987,0.7096283107258774,0.697926113479534,0.6944161552142418,0.6889743643608615,0.6653135092940587,0.6591103502115754,0.6579916048648968,0.6553822579179513,0.6270152989204156,0.6178786897563473,0.5978127117175802,0.5909933595448855,0.5709731502315574,0.5541949422709305,0.5306345125283212,0.5218600440090047,0.5167678664884683,0.4981773783589283,0.48507637265131187,0.4825364192306747,0.4793056085682359,0.4615324928671942,0.45569754528401063,0.4489646517114796,0.4414141493441992,0.4344064700310266,0.4266259831480017,0.42456892909683397,0.4176789315981271,0.41054272456903895,0.40974068192831936,0.40402844906871316,0.39874911132768,0.39606664016130644,0.39222040779097256,0.38828631975873407,0.3844013053058841,0.3817649399418528,0.3790049534091313,0.3746571893814288,0.37295376084218823,0.3712387943464872,0.367373201895024,0.3664505334545236,0.36555763161709365,0.36295240852478194,0.36269462592646207,0.3627125587684912,0.361541215614805,0.361541215614805,0.36254687898700233,0.3624339860829284,0.3624339860829284,0.364368223934747,0.36489977520473005,0.36507983954295575,0.3685486190014835,0.3698821775229746,0.3704527017192216,0.3772136301404423,0.3801638449450788,0.38218110403743744,0.39791607845419463,0.4011789388097391,0.408775953374235,0.4334583093953963,0.4566988607875029,0.4672231376188787,0.479009390003327,0.4981773783589283,0.5706200421703755,0.6280035254420611,0.6653135092940587,0.6755351701216341,0.7405764071519148,0.8223909376569036,0.8324496402291874,0.8437450118480729,0.9861767677764419,0.9995857711643179,1.0126989469716516,1.1498109911719219,1.1667219020994466,1.1859992963326462,1.3019764620606935,1.333858033034577,1.379075606315249,1.4423806364444527,1.5009941639697058,1.574069585484656,1.6047204955211871,1.6681302949048362,1.700614707597472,1.7888459139010369,1.8239612052609484,1.835266425839965,1.857876411320495,1.9500572590477532,2.0024025567750936,2.076460048091297,2.10451567863808,2.169538687710224,2.2046490574823707,2.32039147471216,2.3332679047819624,2.3366748186453528,2.3429641157040795,2.464715950485056,2.5038109495804832,2.579790512292025,2.591473753665227,2.670947080515612,2.7169423773103905,2.8351189315626346,2.837322557484237,2.8380832114507424,2.8397756808363965,2.9594463770174535,3.005219342385871,3.080643642798723,3.10715035547401,3.1723554733210015,3.2027615189974217,3.2883337385959255,3.3280069454529073,3.3394916042561302,3.3595602179053277,3.460998596854081,3.5066277351912607,3.5812296251862907,3.5960443551631016,3.6737638661263894,3.734374977608807,3.7921581666366055,3.840899997061518,3.8758678419934487,3.992790266643439,4.0080361279966485,4.020266673510859,4.120572665585083,4.169607268345111,4.175172258931777,4.18294465678056,4.324591966861732,4.342308389866908,4.3662828621580445,4.481179214021269,4.509444520802036,4.548867382999376,4.633173328131328,4.676580651737167,4.750012911474439,4.76748536221297,4.8437167826722956,4.891762264058425,4.967084350617544,4.991309099818881,5.010852913607426,5.069028247116199,5.1149805529231,5.141974540980609,5.177989044542555,5.211933167365885,5.235386200666772,5.286488291405549,5.345125175477685,5.366501692269464,5.38953363106612,5.4630108635909345,5.512261306412814,5.572729124527356,5.6501977266864944,5.679397437347943,5.694134954510611,5.783389084889526,5.8390215687927345,5.846533568283073,5.855661923834839,6.003071512028814,6.013669699218202,6.024480861042942,6.177470622866707,6.180805830153332,6.184522121348667,6.292266900967013,6.345942729494773,6.347941961088461,6.3500767484794025,6.373093333811081,6.50180131482708,6.515078092023591,6.557678566232308,6.612306052519381,6.68221422295872,6.709064811007668,6.72941291174935,6.765832689540645,6.765910637725561,6.812764838825373,6.8224862462327724,6.8493503538938505,6.8647292477368556,6.86939811234593,6.8788567025829845,6.906083748209587,6.925178330243563,6.951863344879365,6.978514404231348,6.993444335566275,7.0011608491972215,7.016486484828979,7.067755726359811,7.105250911429321,7.144299756747978,7.18362261576411,7.239144156725425,7.33343491005729,7.3448322455298065,7.350758746699237,7.367062368291824,7.456072419816008,7.517894877634367,7.561852724997179,7.626824587338893,7.658122336133198,7.6850310085694975,7.6850310085694975,-2.8237758007155014,-2.8445452403436606,-2.91664189549832,-2.9315142866368653,-3.01168137127879,-3.04754483513738,-3.168623601644372,-3.17881750221392,-3.1861020683956376,-3.340553369097494,-3.3459536331490494,-3.352201794051025,-3.4879849772412905,-3.513089764084179,-3.555741981876835,-3.620655517214087,-3.6802258950193085,-3.7432815664166244,-3.8192063008928923,-3.847362025954438,-3.8587142956866316,-3.878257534044475,-3.9588676652761032,-4.014498156889568,-4.051254438718426,-4.088413609165183,-4.127699997061819,-4.181634287824697,-4.196061226737363,-4.204477161682692,-4.217407800572612,-4.248723988574673,-4.281412619579166,-4.297485588236824,-4.3269578964843145,-4.336200221654804,-4.338982282569367,-4.348770418759827,-4.3769767192452305,-4.385377577970879,-4.3956519267698715,-4.412011351368853,-4.430157611729327,-4.445801428555242,-4.4535357947315966,-4.470490252943978,-4.47861755481579,-4.504413312073366,-4.507279640995003,-4.508741117817662,-4.5159065496949555,-4.542911031586609,-4.550364824292727,-4.562704393715155,-4.577734617170057,-4.5936171361356735,-4.611551446099827,-4.619639648742866,-4.63454615621966,-4.643958068694873,-4.672177568697299,-4.6745814999350275,-4.67622957138387,-4.683042680630085,-4.718298877451325,-4.731126329402142,-4.76068886439655,-4.763956963488195,-4.794792579801235,-4.810549895514007,-4.850178811565215,-4.85966921212176,-4.864577016581679,-4.8783188878010755,-4.916166855907363,-4.950375614445518,-4.9716815903415625,-5.017314942500344,-5.02510765896503,-5.028909692415226,-5.0367535410484745,-5.076257297598151,-5.1024917609541465,-5.123466735459725,-5.147145847912236,-5.161533795053522,-5.166496779595086,-5.184451073435474,-5.202194298867308,-5.206929431176019,-5.211604455876552,-5.230518834162561,-5.239796831997619,-5.246872971485534,-5.251726793164369,-5.2604489436813315,-5.264306295346088,-5.264630901044333,-5.2682960933443095,-5.263553574178218,-5.2629839660141,-5.260310307914833,-5.2478777555557325,-5.238056672061498,-5.229958089330703,-5.217590947453732,-5.184451073435474,-5.170277257906237,-5.163800567939532,-5.098142245635449,-5.074415686997365,-5.029753129177827,-5.023016598599662,-5.017314942500344,-4.99115682892891,-4.921537531248843,-4.850178811565215,-4.817578824465604,-4.7544976728047885,-4.704283056895783,-4.683042680630085,-4.628743691122285,-4.5895985135614135,-4.5159065496949555,-4.48120199769761,-4.427026989232634,-4.378552481060252,-4.348770418759827,-4.285998164862735,-4.215989872810175,-4.1982417478124585,-4.181634287824697,-4.124066532854963,-4.081260905099744,-4.0540565152237775,-4.014498156889568,-3.9907491169927365,-3.9785689739803374,-3.9444437333975095,-3.9359242471352394,-3.8997552033633784,-3.883505351172004,-3.847362025954438,-3.8338578967625656,-3.8289422000235485,-3.8173185374295047,-3.789928413424482,-3.770180322447013,-3.745533860877563,-3.7233975995096253,-3.7092523751707605,-3.701469579178304,-3.6802258950193085,-3.659288284412768,-3.652742190335365,-3.6382566538990186,-3.619245397139296,-3.601183688612201,-3.5797584696655163,-3.5637529620199615,-3.5498615161038742,-3.5415307402822327,-3.513089764084179,-3.504958621800056,-3.5029831100651645,-3.499721904006182,-3.4748073454216994,-3.466548415480097,-3.453293443423388,-3.4454762324580344,-3.4321714564050128,-3.4168946360751526,-3.4099637388000046,-3.397819004592657,-3.388237511748332,-3.364045751304535,-3.3605104003798356,-3.357570473684504,-3.3459536331490494,-3.327410603479083,-3.323635144671111,-3.3150596135922203,-3.295056756427347,-3.28312776051681,-3.257586484865997,-3.25298081222041,-3.2329969434794608,-3.218410407298566,-3.17881750221392,-3.1739911848634668,-3.1724635592352666,-3.1680236581116006,-3.130422406363218,-3.113564939615695,-3.082628931173547,-3.0631131637128917,-3.044227150462609,-3.0342168231346056,-3.01168137127879,-2.984759339007608,-2.973932826586984,-2.941725291024693,-2.934040696147764,-2.9035055783377635,-2.8852826121368276,-2.8445452403436606,-2.834023035729196,-2.8295601452696584,-2.8158707212695457,-2.7838712020105048,-2.7589116876547797,-2.732457604966945,-2.679687921321899,-2.6787539251582198,-2.678304979277387,-2.677409109408531,-2.621634400292809,-2.5930101841724937,-2.561182343186183,-2.5102729784734024,-2.495983430962018,-2.4860260518053705,-2.421674820809211,-2.376041705241504,-2.3502022721254043,-2.3468399344487754,-2.343136847538273,-2.270965551800516,-2.259025643614266,-2.176000716603143,-2.1708970771375613,-2.163531085904565,-2.071330083139652,-2.0088645856680136,-1.9671398147769779,-1.8827336902430485,-1.8558112218764267,-1.841728454732884,-1.8064761629540493,-1.738752297914953,-1.6745923237977545,-1.6181510564616497,-1.536040312394669,-1.5074561928626249,-1.4936485820811907,-1.4505050221076345,-1.3706688347504699,-1.3403200619274953,-1.271258216149394,-1.250363592185261,-1.1731839309923657,-1.1307319074876938,-1.027863436965653,-1.013415387676818,-1.0060478000572362,-0.9831938271828715,-0.9016941909144052,-0.8389116691221066,-0.7869339837337552,-0.6787669815912398,-0.6717755381869779,-0.6680662495674685,-0.6487493552752728,-0.5330903205957682,-0.5046394072518474,-0.4751581108823384,-0.33952722310099404,-0.3375032763167187,-0.3364626200089287,-0.3351092933780162,-0.24516171298267508,-0.17036714538158826,-0.15831845732828675,-0.1502973324607968,-0.1276266121405385,-0.09727758921487428,-0.05404298078095238,-0.03915674509501166,-0.003231014446459568,0.007947181603466191,0.011696032942730028,0.01476987973709143,0.040618272322388904,0.05138356037053171,0.055766535348471535,0.062341588133381975,0.072470412555802,0.072470412555802,0.07354333841086458,0.07849383990582126,0.07849383990581948,0.07851994568637188,0.07370283151545465,0.07054083579865633,0.0696634627809356,0.06223551041350461,0.05785011162188525,0.05437139456134865,0.0475724846796961,0.04366757522789122,0.03700655054349866,0.03226933939468957,0.029557240432769305,0.02039916371832895,0.017882933314696814,0.016390031058390875,0.005857606520772052,0.005036625814055284,0.004507280541290015,-0.003231014446459568,-0.005581493912563573,-0.005707273186954964,-0.005807945884143351,-0.013347419755836754,-0.013841274933131587,-0.014296083346744481,-0.02065154576306405,-0.021450068000818945,-0.022225616454116803,-0.027573408763863938,-0.028624935251036376,-0.02961058880122991,-0.03391918900599222,-0.03512047018014286,-0.0361547296394491,-0.03939605056945972,-0.04059162039473563,-0.0415894665207599,-0.04391211435765996,-0.04498466302910842,-0.04609380357913295,-0.047866739359063715,-0.04886044405354184,-0.05054306086568694,-0.05226983935389917,-0.05346612214505697,-0.05652779518232265,-0.05858498210837837,-0.060532023465365015,-0.06622613668771926,-0.06835123573438295,-0.07189772798575156,-0.08211101960213796,-0.08279611678568521,-0.08906808554701229,-0.1006669474949149,-0.10620387634460648,-0.11270495452664697,-0.12191679610618245,-0.1384056412327368,-0.14197133700435494,-0.1464559647279966,-0.17036714538158826,-0.17248988297130374,-0.17282090692785346,-0.1734449095802333,-0.1906362870625209,-0.19305965686470294,-0.19652514340949878,-0.20101954602109018,-0.20226825044075802,-0.20055443609109425,-0.19184819173282008,-0.19184819173282008,-0.18799678377192564,-0.17036714538158826,-0.15351343911749282,-0.14804614687078654,-0.11910681605051465,-0.09634381540331916,-0.05608351433271608,-0.03371906830125759,-0.003231014446459568,0.04397549808448353,0.09051886846666868,0.12836211752285998,0.16390511648866912,0.22040093065343846,0.2969152790036542,0.3164631733014964,0.3310412474237996,0.38537515106131615,0.42427075459513297,0.4981773783589283,0.5434777871500547,0.6437926610328812,0.6653135092940587,0.6823283912646936,0.8084075748674433,0.8324496402291874,0.8633276425361256,0.9482253002890264,0.9995857711643179,1.0815958201349183,1.0839995176561832,1.1667219020994466,1.217547840190333,1.2972620349949917,1.333858033034577,1.358843913589638,1.4878350655104864,1.5009941639697058,1.5120246181602663,1.6567310903278223,1.6681302949048362,1.6796514701264051,1.812484437642686,1.835266425839965,1.8646491773757976,1.9582340952258814,2.0024025567750936,2.0699745340449898,2.096158019184905,2.169538687710224,2.2286880925060384,2.2994504568884135,2.3366748186453528,2.3566020768336795,2.4129135108623387,2.4818638161474684,2.5038109495804832,2.5494117097669307,2.606540474588087,2.670947080515612,2.731672066647052,2.8011647951133014,2.8380832114507424,2.857791344044239,2.924583136410755,2.988297155578353,3.005219342385871,3.0341727325330723,3.1235173221926367,3.1723554733210015,3.25058871665677,3.2594900488209877,3.3394916042561302,3.396731740198206,3.466438688291431,3.5066277351912607,3.5315579180848733,3.61987597510001,3.6616369601570042,3.6737638661263894,3.700174787454573,3.7844457364181068,3.840899997061518,3.9021095247869866,3.988010320497816,4.0080361279966485,4.015379043540822,4.028646547991039,4.119510102563092,4.175172258931777,4.220197660236712,4.282864054392322,4.316099156434429,4.342308389866908,4.4073365172470105,4.483900818691211,4.497409537870897,4.509444520802036,4.586003024066152,4.672425182646339,4.674637727376833,4.676580651737167,4.695932131716521,4.766604181852609,4.8437167826722956,4.859219169460122,4.880124029426415,4.957074396278468,5.010852913607426,5.0576425110602035,5.133176980538503,5.161076295574029,5.177989044542555,5.241431583735652,5.26713153755149,5.345125175477685,5.373721805302788,5.423626686022333,5.4777158210839065,5.512261306412814,5.575612797942492,5.660686414317476,5.670160754665208,5.679397437347943,5.746967508253508,5.803109514790032,5.81708386874454,5.846533568283073,5.868217689731054,5.876934851221648,5.879519027115192,5.8925504040772605,5.899354405343406,5.893420180718316,5.882789495011902,5.877340992394881,5.868443125907724,5.846533568283073,5.818292729647869,5.805640714540388,5.749236849985017,5.679397437347943,5.673803035431133,5.667815376221306,5.573862892253761,5.512261306412814,5.465313473642075,5.345719435357227,5.345125175477685,5.344835881841645,5.343232617177822,5.200320429872713,5.177989044542555,5.151730535884527,5.03965157858528,5.010852913607426,4.982973229711543,4.86494267819541,4.8437167826722956,4.82473293881937,4.686292534495596,4.676580651737167,4.667289489327196,4.518019810717261,4.509444520802036,4.499610364079828,4.368920603437342,4.342308389866908,4.299808462293145,4.237236011549163,4.175172258931777,4.117461302819816,4.017157279499626,4.0080361279966485,4.005381722724177,4.001393409533261,3.901623949749652,3.840899997061518,3.7993057160863817,3.7372036164084275,3.698224466625609,3.6737638661263894,3.5945050578038398,3.5726053295032543,3.5066277351912607,3.4924197824401713,3.4682987378151644,3.386370897629133,3.3394916042561302,3.2754788738970806,3.20310653068082,3.1723554733210015,3.1617933447536597,3.1345644891324245,3.042642921234844,3.005219342385871,2.933565478510978,2.915552229532107,2.8380832114507424,2.7834694265275886,2.712510473904981,2.670947080515612,2.6418867609259973,2.5200881427254043,2.5038109495804832,2.4901687774814434,2.3449216876638204,2.3366748186453528,2.328649241623344,2.1794414743773967,2.169538687710224,2.1589362195873196,2.0189153010791863,2.0024025567750936,1.9839667284218105,1.8604601483985892,1.835266425839965,1.806824938147292,1.702578258268824,1.6681302949048362,1.629326152911668,1.5446668152543293,1.5009941639697058,1.4521181355323254,1.3863682192291442,1.333858033034577,1.2759360660739105,1.2269196091488368,1.1667219020994466,1.102410833656629,1.0648687502151866,0.9995857711643179,0.9330880496051872,0.8987015597531638,0.8324496402291874,0.7701027018819122,0.7255210185116514,0.6653135092940587,0.6129661776662712,0.5444686091409388,0.4981773783589283,0.46064982410396915,0.3558730353972468,0.3310412474237996,0.31189494356951464,0.17685725686240694,0.16579732769216982,0.16390511648866912,0.16124232337117306,0.02359665001443112,-0.003231014446459568,-0.040431806827372796,-0.12039305358354291,-0.17036714538158826,-0.23584226497019145,-0.26809364369111854,-0.3375032763167187,-0.42007712663867025,-0.4219502985363448,-0.5046394072518474,-0.58559173595396,-0.5907365466441252,-0.6717755381869779,-0.7478735358337314,-0.7647257164996901,-0.8389116691221066,-0.8943895163045372,-0.9650671321396773,-1.0060478000572362,-1.0325242057672002,-1.1292409670598165,-1.1646120475212847,-1.1731839309923657,-1.1883765092351757,-1.297039516789618,-1.3403200619274953,-1.4128815594359327,-1.431259743082597,-1.5074561928626249,-1.5769085909964327,-1.6080137120667715,-1.6745923237977545,-1.7579226558136964,-1.7585421232835516,-1.841728454732884,-1.8840115836407128,-1.9565613189161315,-1.9873732409688927,-2.0088645856680136,-2.0719028534239694,-2.1306730621885777,-2.151515557476422,-2.176000716603143,-2.222985954533968,-2.2559840170512286,-2.291950379095673,-2.343136847538273,-2.3605286106506176,-2.372293180378378,-2.4297948982448734,-2.445261181081732,-2.4889526622639666,-2.4978330022648683,-2.5102729784734024,-2.5719287906878012,-2.6222031546406397,-2.6477992020277528,-2.677409109408531,-2.733215051367514,-2.79882480175588,-2.8237758007155014,-3.0072270496028928,-3.000238626804122,-2.9059825417820724,-2.8445452403436606,-2.8112690032133916,-2.7770685395876216,-2.7280320197211028,-2.677409109408531,-2.648998825414174,-2.6264795139801285,-2.576944254663811,-2.5102729784734024,-2.5058252625962005,-2.50267617972655,-2.485978996234042,-2.436880984577347,-2.3849962770168176,-2.3677444437986495,-2.343136847538273,-2.295458095132382,-2.257411911530255,-2.219846341028501,-2.176000716603143,-2.1367743313835215,-2.089988797716088,-2.0430041312413065,-2.0088645856680136,-1.9286626380139804,-1.9183216563086152,-1.841728454732884,-1.7961162195003917,-1.7174026518362266,-1.6745923237977545,-1.6300258054568868,-1.563420706751713,-1.5074561928626249,-1.425877373481109,-1.4206053743074136,-1.3403200619274953,-1.2947093489153891,-1.1899199880120834,-1.1731839309923657,-1.163629458946902,-1.1239878894030273,-1.03052207152213,-1.0060478000572362,-0.9684379774909004,-0.8907730782584444,-0.8389116691221066,-0.7710296364718623,-0.7422982072240867,-0.6717755381869779,-0.5935778028563412,-0.5829404937343856,-0.5046394072518474,-0.42929364609083187,-0.41199590392848684,-0.3375032763167187,-0.2721959452683418,-0.23235062553645136,-0.17036714538158826,-0.11921206555225261,-0.04732916468764614,-0.003231014446459568,0.03215156343332737,0.1394111407538947,0.16390511648866912,0.1834695292815436,0.3254578157160548,0.3310412474237996,0.335565495129174,0.3861637101806483,0.489906311137867,0.4981773783589283,0.5076027081237786,0.646872720022273,0.6653135092940587,0.6857766274494868,0.8068227541081736,0.8324496402291874,0.8597743122714867,0.9704193729879549,0.9995857711643179,1.0290902460935172,1.1380366776179045,1.1667219020994466,1.1947027174264218,1.3087482827319903,1.333858033034577,1.3577419001736555,1.481650358940355,1.5009941639697058,1.5189928591069073,1.656424166550007,1.6681302949048362,1.6787791385771627,1.8331535587871475,1.835266425839965,1.837147275437669,1.8678032380298912,1.9939507497382145,2.0024025567750936,2.0118716366720246,2.151940399266227,2.169538687710224,2.188466231185286,2.3149361023121813,2.3366748186453528,2.3579256971006526,2.4885278586641295,2.5038109495804832,2.51669476034931,2.608983786996193,2.6637951623561396,2.670947080515612,2.6820442243369556,2.799345796265488,2.8380832114507424,2.916847791204882,2.923988631411129,3.005219342385871,3.043771316582662,3.120779566985279,3.15458215634961,3.1723554733210015,3.2544340284075446,3.2562641969121042,3.3394916042561302,3.357762732694672,3.382688324024844,3.4500917285370054,3.5066277351912607,3.540327733077664,3.578852628351836,3.6248445050195492,3.6737638661263894,3.707126502571491,3.7410397687187746,3.7852205561819545,3.840899997061518,3.8613131749675684,3.881276912709815,3.9345003525021287,3.987074609760148,4.002557460045109,4.004350033762577,4.0080361279966485,4.072172377674088,4.1170135228835125,4.132748980476171,4.175172258931777,4.178925595792347,4.181064917102255,4.18142007120284,4.198598139797761,4.201525567790878,4.196329348421644,4.175172258931777,4.166468255382542,4.164986582305094,4.15769489202977,4.119733355257328,4.09739681206516,4.0629995800237815,4.0080361279966485,3.999472934857563,3.9948269652831367,3.9480685807292737,3.927752687829063,3.8670861054805314,3.8540886328771844,3.840899997061518,3.76968051754735,3.6965363162534697,3.6836979910332577,3.6737638661263894,3.6218564191237217,3.584859375951929,3.5066277351912607,3.485641806136684,3.449704884075638,3.376350439755919,3.3394916042561302,3.2590142784651572,3.248902716566324,3.1723554733210015,3.142451266430591,3.0617655186181363,3.020175015602355,3.005219342385871,2.9755790345028768,2.896610203868196,2.8380832114507424,2.7725509663456958,2.7186609466764065,2.670947080515612,2.648319066248387,2.5800450194277786,2.5239192191493363,2.5038109495804832,2.46394337055073,2.3984791261052862,2.3366748186453528,2.269994986844525,2.2237845849494526,2.169538687710224,2.136900140791669,2.010190618466064,2.0024025567750936,1.99672954693777,1.9413042574867418,1.8461259434253936,1.835266425839965,1.8229958110427482,1.6794202901525406,1.6681302949048362,1.6581781574469243,1.5841455952891437,1.5104470676390775,1.5009941639697058,1.4857852713791004,1.3765483809404486,1.333858033034577,1.2529673334500426,1.2439575907432836,1.1667219020994466,1.1324733832564888,1.0572682469768608,1.017443205223186,0.9995857711643179,0.9528486874044368,0.9001413147174127,0.8324496402291874,0.77587279203075,0.7006862755703231,0.6653135092940587,0.635984452426344,0.5273047604966727,0.4981773783589283,0.4500738150288992,0.39816338680396335,0.3310412474237996,0.2871599159479299,0.2261099857950679,0.19125607269703337,0.16390511648866912,0.1049484927631763,0.04639783041287693,0.02155027536787557,-0.003231014446459568,-0.0589079814669109,-0.10893688623689712,-0.1383537078699444,-0.17036714538158826,-0.21533598951159405,-0.251894098757953,-0.288862307432451,-0.3375032763167187,-0.3582151281637991,-0.37091291944462057,-0.4007823305971403,-0.41442228886922017,-0.45336985828493326,-0.4660302552480946,-0.5046394072518474,-0.5067448979996758,-0.5072556815492106,-0.5073831542030884,-0.5255090983465838,-0.5281447989975412,-0.5281447989975412,-0.5301299897168938,-0.5288418829270096,-0.5269026401662043,-0.5152036625704675,-0.5135214430314612,-0.5122558126145513,-0.5046394072518474,-0.4865983420127069,-0.4831953084693268,-0.4786796878578361,-0.45622739969682335,-0.44450997040959805,-0.42956961285319295,-0.4260613399367106,-0.40562333555916474,-0.39457499183173184,-0.3818535952704689,-0.3708617187870722,-0.36609300142822576,-0.3440808205214605,-0.3426772947503771,-0.34208670081271286,-0.3375032763167187,-0.3209074973201069,-0.3184124430474071,-0.31690797390591463,-0.30495390195726735,-0.3015405095602066,-0.29981076650687477,-0.29421709966562126,-0.29140679752056897,-0.29007079302586014,-0.2875822788689337,-0.2858020497070033,-0.28472477136490326,-0.283583678607938,-0.28256565627728847,-0.28141333438260574,-0.2807035939360283,-0.27996044871894554,-0.2784876919190946,-0.2777941672463644,-0.27693879623295103,-0.27506884941077203,-0.2743305008818453,-0.27320734342536035,-0.2710092191411295,-0.2703592684504965,-0.2690564978838772,-0.2666780521481016,-0.2662546256485232,-0.2650508805972489,-0.2626449360334373,-0.26248060450497235,-0.2617661156369131,-0.2596858018733812,-0.2597188335412639,-0.2597188335412639,-0.2592886471672866,-0.2595134277556852,-0.2595134277556852,-0.2614348171273111,-0.2621361110176643,-0.2621361110176643,-0.26712532346455475,-0.2693247663782845,-0.2693247663782845,-0.2766875759709517,-0.28295557494404733,-0.28400419597677384,-0.2921915771736696,-0.30906566249754164,-0.3108375757526538,-0.3163179140991197,-0.3375032763167187,-0.3537469061961165,-0.35926564751109424,-0.3958160234618173,-0.4130506636153548,-0.4521789293900138,-0.47611784788664835,-0.5046394072518474,-0.5729766579544471,-0.6379446311840624,-0.6717755381869779,-0.6823012176660281,-0.7573194219943922,-0.8296364957937001,-0.8389116691221066,-0.8484089426583932,-0.9924573851993888,-1.0053099306301219,-1.0060478000572362,-1.0068310600369887,-1.1509228961461844,-1.1731839309923657,-1.2044348615143399,-1.2910567487606448,-1.3403200619274953,-1.4209872341752687,-1.4256019507476276,-1.5074561928626249,-1.5551877205946898,-1.664707372332428,-1.6745923237977545,-1.6792473100214425,-1.689652591019386,-1.7952081288831296,-1.841728454732884,-1.9031866285068668,-2.0008993038172758,-2.0056955803668366,-2.0088645856680136,-2.057034052786064,-2.0948076524713795,-2.176000716603143,-2.1830865525325276,-2.1894630075740116,-2.241340749936799,-2.257772936289501,-2.3248776378890925,-2.3326085395494616,-2.343136847538273,-2.398565812329097,-2.4339451070244618,-2.4618120655382247,-2.5102729784734024,-2.522286787619776,-2.528733787178476,-2.5463789962376735,-2.579620569172672,-2.6169929544404438,-2.6371261162164092,-2.677409109408531,-2.6927254693960947,-2.7003082201422384,-2.7186950149556655,-2.7467792659502113,-2.781273007329114,-2.8005134832607306,-2.8445452403436606,-2.8515273698881085,-2.8547020885656,-2.8607691321849416,-2.901077956190412,-2.925222677579307,-2.947011849992264,-2.9662180201066244,-2.9836622213602695,-2.9899678484842998,-3.01168137127879,-3.0289286111506613,-3.0344986877728664,-3.041507017685406,-3.064399461046955,-3.078666061343185,-3.0951801992238455,-3.0952054365206463,-3.113820444834179,-3.123317963171667,-3.1349079472787356,-3.143151123681368,-3.1480669330957047,-3.168167042310724,-3.1699974263059882,-3.171255889005523,-3.17881750221392,-3.1976412575620046,-3.201358722471662,-3.2070747011680814,-3.227206347099794,-3.2379715825367237,-3.256006514510598,-3.2586307118070907,-3.27929851214979,-3.2933751932560957,-3.3160355127098127,-3.3249255996738682,-3.3297407521498643,-3.3459536331490494,-3.3703032391009087,-3.378539838860278,-3.393581891966794,-3.412426387448022,-3.4360455584716574,-3.45494409736395,-3.4794272235467476,-3.4915940845405755,-3.4969143696282297,-3.513089764084179,-3.5406130721936178,-3.5508142967220193,-3.5703885455137394,-3.5846939886129636,-3.6114856819491097,-3.6296238038827564,-3.6664610038160212,-3.6717523722966297,-3.67410951175622,-3.6802258950193085,-3.725414652303936,-3.745843062081855,-3.778524501072563,-3.8051543340085976,-3.825999162519002,-3.833341116797272,-3.847362025954438,-3.896690996972665,-3.9282885774297966,-3.962542441527769,-4.014498156889568,-4.030992839717033,-4.044678592398579,-4.1051465929910265,-4.158597782413029,-4.177261988331085,-4.1790966732853025,-4.181634287824697,-4.25616260619117,-4.320331374157986,-4.331700314920239,-4.348770418759827,-4.403046215277703,-4.445033980595212,-4.468341806084259,-4.5159065496949555,-4.523974611341004,-4.528483414462862,-4.532717471176332,-4.5670195635153465,-4.584691617929621,-4.59133227323859,-4.593675582761652,-4.606747243527578,-4.606747243527578,-4.606243342437429,-4.604610118328847,-4.594896787694987,-4.593613071274394,-4.583154290447993,-4.57046370434344,-4.5528761410667995,-4.544786409422731,-4.537912324122916,-4.5159065496949555,-4.501549127543904,-4.498132134555596,-4.490649956853582,-4.465757098397699,-4.45214800637152,-4.428464137033889,-4.425187587125543,-4.404299737824976,-4.392631383182245,-4.363847352313031,-4.360094511787047,-4.358072473482547,-4.348770418759827,-4.332525325871567,-4.329854145385429,-4.327144863180237,-4.313115322733171,-4.3085618437906,-4.30411251788545,-4.296638726709793,-4.291100126075939,-4.284764603267966,-4.2810659751019005,-4.2739973117307235,-4.264004736074552,-4.263674047143634,-4.253833572766714,-4.243908748970868,-4.23583475718926,-4.227871544766012,-4.220010689148801,-4.196727792598602,-4.194031147489407,-4.191542638249417,-4.181634287824697,-4.159311228711591,-4.1540906721792545,-4.1396133820055345,-4.121227491019148,-4.104063841554881,-4.07808340424133,-4.050471917685316,-4.038389172440127,-4.030675990343036,-4.014498156889568,-3.973015478729091,-3.950236474105763,-3.9069876787460025,-3.847362025954438,-3.834844427664077,-3.822592478327498,-3.745821315878633,-3.6802258950193085,-3.650112244460116,-3.5911524103131995,-3.5382504011974065,-3.513089764084179,-3.4675803002314227,-3.405477581677091,-3.3459536331490494,-3.276686048586959,-3.246476236090264,-3.17881750221392,-3.13083112391932,-3.022133767520586,-3.01168137127879,-3.0072270496028928,-3.0072270496028928,-3.01168137127879,-3.022133767520586,-3.13083112391932,-3.17881750221392,-3.246476236090264,-3.276686048586959,-3.3459536331490494,-3.405477581677091,-3.4675803002314227,-3.513089764084179,-3.5382504011974065,-3.5911524103131995,-3.650112244460116,-3.6802258950193085,-3.745821315878633,-3.822592478327498,-3.834844427664077,-3.847362025954438,-3.9069876787460025,-3.950236474105763,-3.973015478729091,-4.014498156889568,-4.030675990343036,-4.038389172440127,-4.050471917685316,-4.07808340424133,-4.104063841554881,-4.121227491019148,-4.1396133820055345,-4.1540906721792545,-4.159311228711591,-4.181634287824697,-4.191542638249417,-4.194031147489407,-4.196727792598602,-4.220010689148801,-4.227871544766012,-4.23583475718926,-4.243908748970868,-4.253833572766714,-4.263674047143634,-4.264004736074552,-4.2739973117307235,-4.2810659751019005,-4.284764603267966,-4.291100126075939,-4.296638726709793,-4.30411251788545,-4.3085618437906,-4.313115322733171,-4.327144863180237,-4.329854145385429,-4.332525325871567,-4.348770418759827,-4.358072473482547,-4.360094511787047,-4.363847352313031,-4.392631383182245,-4.404299737824976,-4.425187587125543,-4.428464137033889,-4.45214800637152,-4.465757098397699,-4.490649956853582,-4.498132134555596,-4.501549127543904,-4.5159065496949555,-4.537912324122916,-4.544786409422731,-4.5528761410667995,-4.57046370434344,-4.583154290447993,-4.593613071274394,-4.594896787694987,-4.604610118328847,-4.606243342437429,-4.606747243527578,-4.606747243527578,-4.593675582761652,-4.59133227323859,-4.584691617929621,-4.5670195635153465,-4.532717471176332,-4.528483414462862,-4.523974611341004,-4.5159065496949555,-4.468341806084259,-4.445033980595212,-4.403046215277703,-4.348770418759827,-4.331700314920239,-4.320331374157986,-4.25616260619117,-4.181634287824697,-4.1790966732853025,-4.177261988331085,-4.158597782413029,-4.1051465929910265,-4.044678592398579,-4.030992839717033,-4.014498156889568,-3.962542441527769,-3.9282885774297966,-3.896690996972665,-3.847362025954438,-3.833341116797272,-3.825999162519002,-3.8051543340085976,-3.778524501072563,-3.745843062081855,-3.725414652303936,-3.6802258950193085,-3.67410951175622,-3.6717523722966297,-3.6664610038160212,-3.6296238038827564,-3.6114856819491097,-3.5846939886129636,-3.5703885455137394,-3.5508142967220193,-3.5406130721936178,-3.513089764084179,-3.4969143696282297,-3.4915940845405755,-3.4794272235467476,-3.45494409736395,-3.4360455584716574,-3.412426387448022,-3.393581891966794,-3.378539838860278,-3.3703032391009087,-3.3459536331490494,-3.3297407521498643,-3.3249255996738682,-3.3160355127098127,-3.2933751932560957,-3.27929851214979,-3.2586307118070907,-3.256006514510598,-3.2379715825367237,-3.227206347099794,-3.2070747011680814,-3.201358722471662,-3.1976412575620046,-3.17881750221392,-3.171255889005523,-3.1699974263059882,-3.168167042310724,-3.1480669330957047,-3.143151123681368,-3.1349079472787356,-3.123317963171667,-3.113820444834179,-3.0952054365206463,-3.0951801992238455,-3.078666061343185,-3.064399461046955,-3.041507017685406,-3.0344986877728664,-3.0289286111506613,-3.01168137127879,-2.9899678484842998,-2.9836622213602695,-2.9662180201066244,-2.947011849992264,-2.925222677579307,-2.901077956190412,-2.8607691321849416,-2.8547020885656,-2.8515273698881085,-2.8445452403436606,-2.8005134832607306,-2.781273007329114,-2.7467792659502113,-2.7186950149556655,-2.7003082201422384,-2.6927254693960947,-2.677409109408531,-2.6371261162164092,-2.6169929544404438,-2.579620569172672,-2.5463789962376735,-2.528733787178476,-2.522286787619776,-2.5102729784734024,-2.4618120655382247,-2.4339451070244618,-2.398565812329097,-2.343136847538273,-2.3326085395494616,-2.3248776378890925,-2.257772936289501,-2.241340749936799,-2.1894630075740116,-2.1830865525325276,-2.176000716603143,-2.0948076524713795,-2.057034052786064,-2.0088645856680136,-2.0056955803668366,-2.0008993038172758,-1.9031866285068668,-1.841728454732884,-1.7952081288831296,-1.689652591019386,-1.6792473100214425,-1.6745923237977545,-1.664707372332428,-1.5551877205946898,-1.5074561928626249,-1.4256019507476276,-1.4209872341752687,-1.3403200619274953,-1.2910567487606448,-1.2044348615143399,-1.1731839309923657,-1.1509228961461844,-1.0068310600369887,-1.0060478000572362,-1.0053099306301219,-0.9924573851993888,-0.8484089426583932,-0.8389116691221066,-0.8296364957937001,-0.7573194219943922,-0.6823012176660281,-0.6717755381869779,-0.6379446311840624,-0.5729766579544471,-0.5046394072518474,-0.47611784788664835,-0.4521789293900138,-0.4130506636153548,-0.3958160234618173,-0.35926564751109424,-0.3537469061961165,-0.3375032763167187,-0.3163179140991197,-0.3108375757526538,-0.30906566249754164,-0.2921915771736696,-0.28400419597677384,-0.28295557494404733,-0.2766875759709517,-0.2693247663782845,-0.2693247663782845,-0.26712532346455475,-0.2621361110176643,-0.2621361110176643,-0.2614348171273111,-0.2595134277556852,-0.2595134277556852,-0.2592886471672866,-0.2597188335412639,-0.2597188335412639,-0.2596858018733812,-0.2617661156369131,-0.26248060450497235,-0.2626449360334373,-0.2650508805972489,-0.2662546256485232,-0.2666780521481016,-0.2690564978838772,-0.2703592684504965,-0.2710092191411295,-0.27320734342536035,-0.2743305008818453,-0.27506884941077203,-0.27693879623295103,-0.2777941672463644,-0.2784876919190946,-0.27996044871894554,-0.2807035939360283,-0.28141333438260574,-0.28256565627728847,-0.283583678607938,-0.28472477136490326,-0.2858020497070033,-0.2875822788689337,-0.29007079302586014,-0.29140679752056897,-0.29421709966562126,-0.29981076650687477,-0.3015405095602066,-0.30495390195726735,-0.31690797390591463,-0.3184124430474071,-0.3209074973201069,-0.3375032763167187,-0.34208670081271286,-0.3426772947503771,-0.3440808205214605,-0.36609300142822576,-0.3708617187870722,-0.3818535952704689,-0.39457499183173184,-0.40562333555916474,-0.4260613399367106,-0.42956961285319295,-0.44450997040959805,-0.45622739969682335,-0.4786796878578361,-0.4831953084693268,-0.4865983420127069,-0.5046394072518474,-0.5122558126145513,-0.5135214430314612,-0.5152036625704675,-0.5269026401662043,-0.5288418829270096,-0.5301299897168938,-0.5281447989975412,-0.5281447989975412,-0.5255090983465838,-0.5073831542030884,-0.5072556815492106,-0.5067448979996758,-0.5046394072518474,-0.4660302552480946,-0.45336985828493326,-0.41442228886922017,-0.4007823305971403,-0.37091291944462057,-0.3582151281637991,-0.3375032763167187,-0.288862307432451,-0.251894098757953,-0.21533598951159405,-0.17036714538158826,-0.1383537078699444,-0.10893688623689712,-0.0589079814669109,-0.003231014446459568,0.02155027536787557,0.04639783041287693,0.1049484927631763,0.16390511648866912,0.19125607269703337,0.2261099857950679,0.2871599159479299,0.3310412474237996,0.39816338680396335,0.4500738150288992,0.4981773783589283,0.5273047604966727,0.635984452426344,0.6653135092940587,0.7006862755703231,0.77587279203075,0.8324496402291874,0.9001413147174127,0.9528486874044368,0.9995857711643179,1.017443205223186,1.0572682469768608,1.1324733832564888,1.1667219020994466,1.2439575907432836,1.2529673334500426,1.333858033034577,1.3765483809404486,1.4857852713791004,1.5009941639697058,1.5104470676390775,1.5841455952891437,1.6581781574469243,1.6681302949048362,1.6794202901525406,1.8229958110427482,1.835266425839965,1.8461259434253936,1.9413042574867418,1.99672954693777,2.0024025567750936,2.010190618466064,2.136900140791669,2.169538687710224,2.2237845849494526,2.269994986844525,2.3366748186453528,2.3984791261052862,2.46394337055073,2.5038109495804832,2.5239192191493363,2.5800450194277786,2.648319066248387,2.670947080515612,2.7186609466764065,2.7725509663456958,2.8380832114507424,2.896610203868196,2.9755790345028768,3.005219342385871,3.020175015602355,3.0617655186181363,3.142451266430591,3.1723554733210015,3.248902716566324,3.2590142784651572,3.3394916042561302,3.376350439755919,3.449704884075638,3.485641806136684,3.5066277351912607,3.584859375951929,3.6218564191237217,3.6737638661263894,3.6836979910332577,3.6965363162534697,3.76968051754735,3.840899997061518,3.8540886328771844,3.8670861054805314,3.927752687829063,3.9480685807292737,3.9948269652831367,3.999472934857563,4.0080361279966485,4.0629995800237815,4.09739681206516,4.119733355257328,4.15769489202977,4.164986582305094,4.166468255382542,4.175172258931777,4.196329348421644,4.201525567790878,4.198598139797761,4.18142007120284,4.181064917102255,4.178925595792347,4.175172258931777,4.132748980476171,4.1170135228835125,4.072172377674088,4.0080361279966485,4.004350033762577,4.002557460045109,3.987074609760148,3.9345003525021287,3.881276912709815,3.8613131749675684,3.840899997061518,3.7852205561819545,3.7410397687187746,3.707126502571491,3.6737638661263894,3.6248445050195492,3.578852628351836,3.540327733077664,3.5066277351912607,3.4500917285370054,3.382688324024844,3.357762732694672,3.3394916042561302,3.2562641969121042,3.2544340284075446,3.1723554733210015,3.15458215634961,3.120779566985279,3.043771316582662,3.005219342385871,2.923988631411129,2.916847791204882,2.8380832114507424,2.799345796265488,2.6820442243369556,2.670947080515612,2.6637951623561396,2.608983786996193,2.51669476034931,2.5038109495804832,2.4885278586641295,2.3579256971006526,2.3366748186453528,2.3149361023121813,2.188466231185286,2.169538687710224,2.151940399266227,2.0118716366720246,2.0024025567750936,1.9939507497382145,1.8678032380298912,1.837147275437669,1.835266425839965,1.8331535587871475,1.6787791385771627,1.6681302949048362,1.656424166550007,1.5189928591069073,1.5009941639697058,1.481650358940355,1.3577419001736555,1.333858033034577,1.3087482827319903,1.1947027174264218,1.1667219020994466,1.1380366776179045,1.0290902460935172,0.9995857711643179,0.9704193729879549,0.8597743122714867,0.8324496402291874,0.8068227541081736,0.6857766274494868,0.6653135092940587,0.646872720022273,0.5076027081237786,0.4981773783589283,0.489906311137867,0.3861637101806483,0.335565495129174,0.3310412474237996,0.3254578157160548,0.1834695292815436,0.16390511648866912,0.1394111407538947,0.03215156343332737,-0.003231014446459568,-0.04732916468764614,-0.11921206555225261,-0.17036714538158826,-0.23235062553645136,-0.2721959452683418,-0.3375032763167187,-0.41199590392848684,-0.42929364609083187,-0.5046394072518474,-0.5829404937343856,-0.5935778028563412,-0.6717755381869779,-0.7422982072240867,-0.7710296364718623,-0.8389116691221066,-0.8907730782584444,-0.9684379774909004,-1.0060478000572362,-1.03052207152213,-1.1239878894030273,-1.163629458946902,-1.1731839309923657,-1.1899199880120834,-1.2947093489153891,-1.3403200619274953,-1.4206053743074136,-1.425877373481109,-1.5074561928626249,-1.563420706751713,-1.6300258054568868,-1.6745923237977545,-1.7174026518362266,-1.7961162195003917,-1.841728454732884,-1.9183216563086152,-1.9286626380139804,-2.0088645856680136,-2.0430041312413065,-2.089988797716088,-2.1367743313835215,-2.176000716603143,-2.219846341028501,-2.257411911530255,-2.295458095132382,-2.343136847538273,-2.3677444437986495,-2.3849962770168176,-2.436880984577347,-2.485978996234042,-2.50267617972655,-2.5058252625962005,-2.5102729784734024,-2.576944254663811,-2.6264795139801285,-2.648998825414174,-2.677409109408531,-2.7280320197211028,-2.7770685395876216,-2.8112690032133916,-2.8445452403436606,-2.9059825417820724,-3.000238626804122,-3.0072270496028928,-3.147762287784297,-3.0702693425451493,-3.0287438236298776,-3.01168137127879,-2.931659162432001,-2.8982408476468677,-2.8445452403436606,-2.838718792225026,-2.8333675626718247,-2.7649428897927972,-2.7612572072254533,-2.6889558589596128,-2.6837649523689677,-2.677409109408531,-2.6133674709524337,-2.567262527817939,-2.5437133745593004,-2.5102729784734024,-2.473940914542502,-2.4474756754302893,-2.4022596618088983,-2.343136847538273,-2.328240255366051,-2.314204196476358,-2.2430833029110353,-2.176000716603143,-2.152847300397177,-2.113506406774463,-2.0441094117463097,-2.0088645856680136,-1.9457765921452799,-1.9120239474528908,-1.841728454732884,-1.758479376359391,-1.7578252372571717,-1.6745923237977545,-1.6098660064076622,-1.5633586379353774,-1.5074561928626249,-1.472780394206719,-1.3416464700562454,-1.3406075734745624,-1.3403200619274953,-1.3398153851757995,-1.2095329654944713,-1.1731839309923657,-1.113185773071553,-1.074356873769184,-1.0060478000572362,-0.932808597842854,-0.908512751176338,-0.8389116691221066,-0.7815751273572964,-0.7254426875905171,-0.6717755381869779,-0.618260410477582,-0.5584164185392506,-0.5046394072518474,-0.44771862538152796,-0.3968114463368071,-0.3375032763167187,-0.27270223640899616,-0.2373193989228639,-0.17036714538158826,-0.09779903924001765,-0.0770214259641051,-0.003231014446459568,0.07556316866931745,0.08461885689914439,0.16390511648866912,0.24662579995399092,0.2483375500574443,0.3310412474237996,0.407787214139848,0.42171472611116734,0.4981773783589283,0.5684795456223792,0.595821929917852,0.6653135092940587,0.7293892458759128,0.7696125599885661,0.8324496402291874,0.8915091765474372,0.9416853291122607,0.9995857711643179,1.0556593082419248,1.1112497574021685,1.1667219020994466,1.222793702582111,1.2776989782878108,1.333858033034577,1.3915617684675823,1.4425842539604705,1.5009941639697058,1.5625315956179566,1.6053436413011806,1.6681302949048362,1.7363245637787337,1.7656374460958233,1.835266425839965,1.9133019548898478,1.923681832589736,2.0024025567750936,2.0809533971071943,2.0916218443764567,2.169538687710224,2.240658467184584,2.2661859909872994,2.3366748186453528,2.4088595582172125,2.43062782383795,2.5038109495804832,2.581415917528995,2.595740061608245,2.670947080515612,2.720034156727033,2.8191719491078793,2.8380832114507424,2.84761389633187,2.869092785569922,2.9609962976603317,3.005219342385871,3.0662647505616754,3.158078646199936,3.166070616624511,3.1723554733210015,3.252268807925322,3.3363018988435496,3.33772496493731,3.3394916042561302,3.409616443921271,3.46246345519142,3.4775048301186455,3.5066277351912607,3.5354772170784887,3.5512473916906213,3.5731826543444907,3.581894671134652,3.6077981105166845,3.616453634201962,3.6257960106494576,3.6325188475879546,3.629723874536051,3.628383393710294,3.6276006473794506,3.611681644191579,3.604781968512425,3.591587452792986,3.56540629738193,3.525586084550703,3.5184767459321016,3.5138580596945843,3.5066277351912607,3.4473014798845014,3.407870922039532,3.3747521454714047,3.3394916042561302,3.2905236929930712,3.2376688999711494,3.200192119530847,3.1723554733210015,3.0983666279321547,3.050077148759202,3.005219342385871,2.995007928712706,2.9753839020406367,2.882745535664002,2.8380832114507424,2.765562787487397,2.729227621202643,2.670947080515612,2.6460904033301986,2.574389477933618,2.522361745236692,2.5038109495804832,2.467920483381752,2.394798267788037,2.3366748186453528,2.2630140160077516,2.236941939164442,2.169538687710224,2.1249434086349854,2.0322040833948645,2.0024025567750936,1.978266576994903,1.8520035531511816,1.835266425839965,1.8174892668966276,1.693549759093198,1.6681302949048362,1.6332962932035606,1.5517978866680942,1.5009941639697058,1.422690294653309,1.4062776428946577,1.333858033034577,1.3006850584050937,1.229367002693614,1.1864366755837974,1.1667219020994466,1.1071748771606753,1.0751015490821718,0.9995857711643179,0.9628412899751275,0.8846976123660824,0.8485895525687663,0.8324496402291874,0.797573867234421,0.7232296617623195,0.6653135092940587,0.5855354678227194,0.5766796467086959,0.4981773783589283,0.416413928801175,0.41308737496869696,0.3310412474237996,0.2750941604431123,0.1835909128467037,0.16390511648866912,0.15617520093500836,0.14434557578396046,0.060621418522385895,-0.003231014446459568,-0.030660255038586826,-0.058364216988897155,-0.11243468177930183,-0.17036714538158826,-0.19201272593335972,-0.21039530605604462,-0.2684263463559393,-0.3375032763167187,-0.344531773764853,-0.35014196791688157,-0.39543079428946193,-0.4178766134084526,-0.480440446487183,-0.4907614099453941,-0.5046394072518474,-0.5568453081050464,-0.589924724215793,-0.618230882730403,-0.6717755381869779,-0.6753946231684989,-0.6769025504285775,-0.6787696567530155,-0.7161915568512534,-0.7305542057255909,-0.7416249463580797,-0.7467207393720265,-0.7638147063732266,-0.7675518263209966,-0.7689011831800094,-0.7780917986094593,-0.7780917986094593,-0.7760583196787412,-0.7754388913864823,-0.7714031234820453,-0.7676850203211174,-0.7583603972367907,-0.7474436688499129,-0.7447798981977023,-0.7298811338037172,-0.7198564718387122,-0.7011606572045466,-0.693557708611447,-0.6892341431086173,-0.6717755381869779,-0.6549474055307289,-0.6504056269630496,-0.6439316110335067,-0.6194757764091996,-0.604772955158694,-0.586548917470763,-0.5855997033986142,-0.564131158113895,-0.5545586756003118,-0.5385919751377823,-0.5308538068743616,-0.5274539747587816,-0.5061761474449487,-0.5059038435788104,-0.5057857152369927,-0.5046394072518474,-0.4886165955690238,-0.4867675294755127,-0.48573433038535185,-0.47739318287400856,-0.4755147260687753,-0.4746203125868824,-0.4712740797592794,-0.47019797069587277,-0.4696482560161339,-0.46889220336647597,-0.4686118362315792,-0.4683909189985407,-0.4688520645429115,-0.4688520645429115,-0.4687418000025776,-0.4696096480019314,-0.4696096480019314,-0.46940952163325633,-0.47033316757466714,-0.47033316757466714,-0.4701321923211541,-0.47121379248326,-0.47121379248326,-0.4712872340181953,-0.47302516752498747,-0.47302516752498747,-0.4736893074141033,-0.4769425014171169,-0.4769425014171169,-0.4782868588701241,-0.48443829197788624,-0.48449161852178335,-0.4860149032527552,-0.49758455030643134,-0.4977232704237178,-0.4984847863409527,-0.5046394072518474,-0.5183607977138944,-0.5202914813935582,-0.5276317239077297,-0.5491128698868621,-0.5586978761329568,-0.5929850774332177,-0.6003468166211725,-0.6234822476629471,-0.641372681124734,-0.6717755381869779,-0.71393276295872,-0.7553507262639378,-0.8037862610267172,-0.8389116691221066,-0.9199790860357959,-0.9236168165308216,-1.0060478000572362,-1.0585239707963972,-1.1223254715941646,-1.1731839309923657,-1.2208276339345483,-1.2852650585138994,-1.3403200619274953,-1.4199263174233119,-1.4263590807061375,-1.5074561928626249,-1.5563891679226565,-1.667080730324825,-1.6745923237977545,-1.6777920419286732,-1.6838855394727652,-1.7860364224880003,-1.841728454732884,-1.8876118124757255,-1.9474247336276242,-1.9811917814496827,-2.0088645856680136,-2.065471888883917,-2.1187207365202703,-2.1455285487605877,-2.176000716603143,-2.219088193042171,-2.2505873364062623,-2.2884509179865136,-2.343136847538273,-2.3558596536582552,-2.3636624334699183,-2.3922207679305947,-2.4184724694042714,-2.464770367172349,-2.481535355785878,-2.5102729784734024,-2.5416928280399977,-2.5587967376247596,-2.5979578291144936,-2.605960660851377,-2.6437905269582753,-2.6544196655032275,-2.677409109408531,-2.706887546715385,-2.7202677497373315,-2.7451853251494622,-2.7543066315462967,-2.7855324167426403,-2.7996189263951905,-2.8349192415685405,-2.8382505714235835,-2.8395338186702945,-2.8445452403436606,-2.8749557157435284,-2.883202280766099,-2.8926858550409724,-2.905371804422008,-2.918637347022891,-2.9318071551507705,-2.933265748023823,-2.947303632807129,-2.955726863710102,-2.9655139088118245,-2.972950482406688,-2.978191692261505,-2.9967747405015226,-2.9992644671642132,-3.00116594112131,-3.01168137127879,-3.028416456463191,-3.0318429858993516,-3.0376616722629475,-3.060196304416066,-3.07199742260235,-3.0933113937911214,-3.0941665059700902,-3.1175146213551876,-3.1313899050795246,-3.1612810929642228,-3.166796181491897,-3.169661181089597,-3.17881750221392,-3.2119237781592904,-3.2233872058336006,-3.2448920154101666,-3.2539943372167492,-3.280430091056127,-3.2965875452600377,-3.3298690642559006,-3.3354705841594434,-3.3380594354751203,-3.3459536331490494,-3.38162102900929,-3.3944062386119374,-3.419680413328966,-3.4249138076772994,-3.4535126512811596,-3.4693720535790744,-3.513089764084179,-3.5139284206504433,-3.5142684637118338,-3.5151312454834356,-3.564782299806697,-3.5874149370033033,-3.616937724116445,-3.6524012043267815,-3.6656911152953224,-3.6705983156558277,-3.6802258950193085,-3.731225446796011,-3.760909802635511,-3.793144555588353,-3.847362025954438,-3.856240725698396,-3.8623761723765337,-3.8900135613349853,-3.9228713138964677,-3.9735308323403515,-3.9887253718747564,-4.014498156889568,-4.053252464240512,-4.078754338077007,-4.112789659208311,-4.141581780488005,-4.163224426115763,-4.168068914814808,-4.181634287824697,-4.214416568979675,-4.227395273038432,-4.237558696416055,-4.2483572433997105,-4.2645525893936815,-4.268730789701594,-4.269119459262259,-4.2769084469955025,-4.274386171793954,-4.273411407184988,-4.2691879933759305,-4.258295759588106,-4.256008117656444,-4.24534749124606,-4.234029608963561,-4.216851836417015,-4.209630663521139,-4.20400343504206,-4.181634287824697,-4.171768559716408,-4.1696517255200725,-4.166273371790721,-4.142548320266235,-4.134319348859684,-4.1233220515283335,-4.115583881319914,-4.103634673757782,-4.092383103544526,-4.090463824835716,-4.079835257896065,-4.07362993355338,-4.067899902874627,-4.062392802759353,-4.05868560393642,-4.051472615446424,-4.048426786769412,-4.045684797899749,-4.035585937690126,-4.033837754877813,-4.031826549631529,-4.014498156889568,-4.014447411651573,-4.014441775274305,-4.01442842657519,-3.9914729602008583,-3.9878034953955,-3.9782887019943516,-3.9611122112329236,-3.949286385014509,-3.923286521281393,-3.9153252494303707,-3.895450513486188,-3.881061568547479,-3.847362025954438,-3.828720726839564,-3.8190328789853227,-3.7623361346190007,-3.7558314031916735,-3.706804912310889,-3.6947773578952194,-3.6802258950193085,-3.6042900627173875,-3.535670578488439,-3.513089764084179,-3.509822175005241,-3.5005506351160376,-3.3839478286036178,-3.3459536331490494,-3.2974530144277523,-3.224499730589386,-3.17881750221392,-3.147762287784297,-3.147762287784297,-3.17881750221392,-3.224499730589386,-3.2974530144277523,-3.3459536331490494,-3.3839478286036178,-3.5005506351160376,-3.509822175005241,-3.513089764084179,-3.535670578488439,-3.6042900627173875,-3.6802258950193085,-3.6947773578952194,-3.706804912310889,-3.7558314031916735,-3.7623361346190007,-3.8190328789853227,-3.828720726839564,-3.847362025954438,-3.881061568547479,-3.895450513486188,-3.9153252494303707,-3.923286521281393,-3.949286385014509,-3.9611122112329236,-3.9782887019943516,-3.9878034953955,-3.9914729602008583,-4.01442842657519,-4.014441775274305,-4.014447411651573,-4.014498156889568,-4.031826549631529,-4.033837754877813,-4.035585937690126,-4.045684797899749,-4.048426786769412,-4.051472615446424,-4.05868560393642,-4.062392802759353,-4.067899902874627,-4.07362993355338,-4.079835257896065,-4.090463824835716,-4.092383103544526,-4.103634673757782,-4.115583881319914,-4.1233220515283335,-4.134319348859684,-4.142548320266235,-4.166273371790721,-4.1696517255200725,-4.171768559716408,-4.181634287824697,-4.20400343504206,-4.209630663521139,-4.216851836417015,-4.234029608963561,-4.24534749124606,-4.256008117656444,-4.258295759588106,-4.2691879933759305,-4.273411407184988,-4.274386171793954,-4.2769084469955025,-4.269119459262259,-4.268730789701594,-4.2645525893936815,-4.2483572433997105,-4.237558696416055,-4.227395273038432,-4.214416568979675,-4.181634287824697,-4.168068914814808,-4.163224426115763,-4.141581780488005,-4.112789659208311,-4.078754338077007,-4.053252464240512,-4.014498156889568,-3.9887253718747564,-3.9735308323403515,-3.9228713138964677,-3.8900135613349853,-3.8623761723765337,-3.856240725698396,-3.847362025954438,-3.793144555588353,-3.760909802635511,-3.731225446796011,-3.6802258950193085,-3.6705983156558277,-3.6656911152953224,-3.6524012043267815,-3.616937724116445,-3.5874149370033033,-3.564782299806697,-3.5151312454834356,-3.5142684637118338,-3.5139284206504433,-3.513089764084179,-3.4693720535790744,-3.4535126512811596,-3.4249138076772994,-3.419680413328966,-3.3944062386119374,-3.38162102900929,-3.3459536331490494,-3.3380594354751203,-3.3354705841594434,-3.3298690642559006,-3.2965875452600377,-3.280430091056127,-3.2539943372167492,-3.2448920154101666,-3.2233872058336006,-3.2119237781592904,-3.17881750221392,-3.169661181089597,-3.166796181491897,-3.1612810929642228,-3.1313899050795246,-3.1175146213551876,-3.0941665059700902,-3.0933113937911214,-3.07199742260235,-3.060196304416066,-3.0376616722629475,-3.0318429858993516,-3.028416456463191,-3.01168137127879,-3.00116594112131,-2.9992644671642132,-2.9967747405015226,-2.978191692261505,-2.972950482406688,-2.9655139088118245,-2.955726863710102,-2.947303632807129,-2.933265748023823,-2.9318071551507705,-2.918637347022891,-2.905371804422008,-2.8926858550409724,-2.883202280766099,-2.8749557157435284,-2.8445452403436606,-2.8395338186702945,-2.8382505714235835,-2.8349192415685405,-2.7996189263951905,-2.7855324167426403,-2.7543066315462967,-2.7451853251494622,-2.7202677497373315,-2.706887546715385,-2.677409109408531,-2.6544196655032275,-2.6437905269582753,-2.605960660851377,-2.5979578291144936,-2.5587967376247596,-2.5416928280399977,-2.5102729784734024,-2.481535355785878,-2.464770367172349,-2.4184724694042714,-2.3922207679305947,-2.3636624334699183,-2.3558596536582552,-2.343136847538273,-2.2884509179865136,-2.2505873364062623,-2.219088193042171,-2.176000716603143,-2.1455285487605877,-2.1187207365202703,-2.065471888883917,-2.0088645856680136,-1.9811917814496827,-1.9474247336276242,-1.8876118124757255,-1.841728454732884,-1.7860364224880003,-1.6838855394727652,-1.6777920419286732,-1.6745923237977545,-1.667080730324825,-1.5563891679226565,-1.5074561928626249,-1.4263590807061375,-1.4199263174233119,-1.3403200619274953,-1.2852650585138994,-1.2208276339345483,-1.1731839309923657,-1.1223254715941646,-1.0585239707963972,-1.0060478000572362,-0.9236168165308216,-0.9199790860357959,-0.8389116691221066,-0.8037862610267172,-0.7553507262639378,-0.71393276295872,-0.6717755381869779,-0.641372681124734,-0.6234822476629471,-0.6003468166211725,-0.5929850774332177,-0.5586978761329568,-0.5491128698868621,-0.5276317239077297,-0.5202914813935582,-0.5183607977138944,-0.5046394072518474,-0.4984847863409527,-0.4977232704237178,-0.49758455030643134,-0.4860149032527552,-0.48449161852178335,-0.48443829197788624,-0.4782868588701241,-0.4769425014171169,-0.4769425014171169,-0.4736893074141033,-0.47302516752498747,-0.47302516752498747,-0.4712872340181953,-0.47121379248326,-0.47121379248326,-0.4701321923211541,-0.47033316757466714,-0.47033316757466714,-0.46940952163325633,-0.4696096480019314,-0.4696096480019314,-0.4687418000025776,-0.4688520645429115,-0.4688520645429115,-0.4683909189985407,-0.4686118362315792,-0.46889220336647597,-0.4696482560161339,-0.47019797069587277,-0.4712740797592794,-0.4746203125868824,-0.4755147260687753,-0.47739318287400856,-0.48573433038535185,-0.4867675294755127,-0.4886165955690238,-0.5046394072518474,-0.5057857152369927,-0.5059038435788104,-0.5061761474449487,-0.5274539747587816,-0.5308538068743616,-0.5385919751377823,-0.5545586756003118,-0.564131158113895,-0.5855997033986142,-0.586548917470763,-0.604772955158694,-0.6194757764091996,-0.6439316110335067,-0.6504056269630496,-0.6549474055307289,-0.6717755381869779,-0.6892341431086173,-0.693557708611447,-0.7011606572045466,-0.7198564718387122,-0.7298811338037172,-0.7447798981977023,-0.7474436688499129,-0.7583603972367907,-0.7676850203211174,-0.7714031234820453,-0.7754388913864823,-0.7760583196787412,-0.7780917986094593,-0.7780917986094593,-0.7689011831800094,-0.7675518263209966,-0.7638147063732266,-0.7467207393720265,-0.7416249463580797,-0.7305542057255909,-0.7161915568512534,-0.6787696567530155,-0.6769025504285775,-0.6753946231684989,-0.6717755381869779,-0.618230882730403,-0.589924724215793,-0.5568453081050464,-0.5046394072518474,-0.4907614099453941,-0.480440446487183,-0.4178766134084526,-0.39543079428946193,-0.35014196791688157,-0.344531773764853,-0.3375032763167187,-0.2684263463559393,-0.21039530605604462,-0.19201272593335972,-0.17036714538158826,-0.11243468177930183,-0.058364216988897155,-0.030660255038586826,-0.003231014446459568,0.060621418522385895,0.14434557578396046,0.15617520093500836,0.16390511648866912,0.1835909128467037,0.2750941604431123,0.3310412474237996,0.41308737496869696,0.416413928801175,0.4981773783589283,0.5766796467086959,0.5855354678227194,0.6653135092940587,0.7232296617623195,0.797573867234421,0.8324496402291874,0.8485895525687663,0.8846976123660824,0.9628412899751275,0.9995857711643179,1.0751015490821718,1.1071748771606753,1.1667219020994466,1.1864366755837974,1.229367002693614,1.3006850584050937,1.333858033034577,1.4062776428946577,1.422690294653309,1.5009941639697058,1.5517978866680942,1.6332962932035606,1.6681302949048362,1.693549759093198,1.8174892668966276,1.835266425839965,1.8520035531511816,1.978266576994903,2.0024025567750936,2.0322040833948645,2.1249434086349854,2.169538687710224,2.236941939164442,2.2630140160077516,2.3366748186453528,2.394798267788037,2.467920483381752,2.5038109495804832,2.522361745236692,2.574389477933618,2.6460904033301986,2.670947080515612,2.729227621202643,2.765562787487397,2.8380832114507424,2.882745535664002,2.9753839020406367,2.995007928712706,3.005219342385871,3.050077148759202,3.0983666279321547,3.1723554733210015,3.200192119530847,3.2376688999711494,3.2905236929930712,3.3394916042561302,3.3747521454714047,3.407870922039532,3.4473014798845014,3.5066277351912607,3.5138580596945843,3.5184767459321016,3.525586084550703,3.56540629738193,3.591587452792986,3.604781968512425,3.611681644191579,3.6276006473794506,3.628383393710294,3.629723874536051,3.6325188475879546,3.6257960106494576,3.616453634201962,3.6077981105166845,3.581894671134652,3.5731826543444907,3.5512473916906213,3.5354772170784887,3.5066277351912607,3.4775048301186455,3.46246345519142,3.409616443921271,3.3394916042561302,3.33772496493731,3.3363018988435496,3.252268807925322,3.1723554733210015,3.166070616624511,3.158078646199936,3.0662647505616754,3.005219342385871,2.9609962976603317,2.869092785569922,2.84761389633187,2.8380832114507424,2.8191719491078793,2.720034156727033,2.670947080515612,2.595740061608245,2.581415917528995,2.5038109495804832,2.43062782383795,2.4088595582172125,2.3366748186453528,2.2661859909872994,2.240658467184584,2.169538687710224,2.0916218443764567,2.0809533971071943,2.0024025567750936,1.923681832589736,1.9133019548898478,1.835266425839965,1.7656374460958233,1.7363245637787337,1.6681302949048362,1.6053436413011806,1.5625315956179566,1.5009941639697058,1.4425842539604705,1.3915617684675823,1.333858033034577,1.2776989782878108,1.222793702582111,1.1667219020994466,1.1112497574021685,1.0556593082419248,0.9995857711643179,0.9416853291122607,0.8915091765474372,0.8324496402291874,0.7696125599885661,0.7293892458759128,0.6653135092940587,0.595821929917852,0.5684795456223792,0.4981773783589283,0.42171472611116734,0.407787214139848,0.3310412474237996,0.2483375500574443,0.24662579995399092,0.16390511648866912,0.08461885689914439,0.07556316866931745,-0.003231014446459568,-0.0770214259641051,-0.09779903924001765,-0.17036714538158826,-0.2373193989228639,-0.27270223640899616,-0.3375032763167187,-0.3968114463368071,-0.44771862538152796,-0.5046394072518474,-0.5584164185392506,-0.618260410477582,-0.6717755381869779,-0.7254426875905171,-0.7815751273572964,-0.8389116691221066,-0.908512751176338,-0.932808597842854,-1.0060478000572362,-1.074356873769184,-1.113185773071553,-1.1731839309923657,-1.2095329654944713,-1.3398153851757995,-1.3403200619274953,-1.3406075734745624,-1.3416464700562454,-1.472780394206719,-1.5074561928626249,-1.5633586379353774,-1.6098660064076622,-1.6745923237977545,-1.7578252372571717,-1.758479376359391,-1.841728454732884,-1.9120239474528908,-1.9457765921452799,-2.0088645856680136,-2.0441094117463097,-2.113506406774463,-2.152847300397177,-2.176000716603143,-2.2430833029110353,-2.314204196476358,-2.328240255366051,-2.343136847538273,-2.4022596618088983,-2.4474756754302893,-2.473940914542502,-2.5102729784734024,-2.5437133745593004,-2.567262527817939,-2.6133674709524337,-2.677409109408531,-2.6837649523689677,-2.6889558589596128,-2.7612572072254533,-2.7649428897927972,-2.8333675626718247,-2.838718792225026,-2.8445452403436606,-2.8982408476468677,-2.931659162432001,-3.01168137127879,-3.0287438236298776,-3.0702693425451493,-3.147762287784297,-3.1577889144696147,-3.111060048627712,-3.043654086288223,-3.01168137127879,-2.9485549851583235,-2.878485648317093,-2.861141976675416,-2.8445452403436606,-2.7852877347287803,-2.7387167041987874,-2.712150233762255,-2.677409109408531,-2.6413899997644625,-2.615923651647618,-2.5711802421227166,-2.5102729784734024,-2.4998172823464984,-2.491318201619449,-2.421007441600927,-2.343136847538273,-2.3414642848663894,-2.3393916433908677,-2.2435480798422223,-2.176000716603143,-2.137536181157449,-2.0280968429110864,-2.013458240293943,-2.0088645856680136,-2.002770152954626,-1.858156773214743,-1.841728454732884,-1.8259955565027495,-1.693584893610625,-1.6765616589361354,-1.6745923237977545,-1.6718019155613195,-1.5402139522578846,-1.5074561928626249,-1.4527927135943965,-1.4068436928129433,-1.3403200619274953,-1.273107644347558,-1.2299834563861474,-1.1731839309923657,-1.134874777723807,-1.026345034365491,-1.0060478000572362,-0.989070032751898,-0.8462990921922753,-0.8389116691221066,-0.8306972333133693,-0.6838050857740612,-0.6717755381869779,-0.6574274147444079,-0.529441188535781,-0.5046394072518474,-0.4744885131878078,-0.37541211991909407,-0.3375032763167187,-0.29537337537404973,-0.21503874719601157,-0.17036714538158826,-0.12527019834949904,-0.04660449730318028,-0.003231014446459568,0.03572686987300244,0.12989234586386722,0.16390511648866912,0.19303351748206943,0.3076153104691475,0.3310412474237996,0.35156152619010683,0.48093977054558046,0.4981773783589283,0.5141634560891806,0.6490958555534245,0.6653135092940587,0.680978250664154,0.8143960879185475,0.8324496402291874,0.8507806007839989,0.9785809738210549,0.9995857711643179,1.0212008349026718,1.1432252053405048,1.1667219020994466,1.1907078036683174,1.3090774001620797,1.333858033034577,1.3586966249759698,1.4766705147233363,1.5009941639697058,1.5247767891694952,1.6469667449512144,1.6681302949048362,1.6880420177297033,1.82149370053137,1.835266425839965,1.8476235030766226,2.00069619805733,2.0024025567750936,2.0038891349886043,2.0244217251986782,2.16036920458693,2.169538687710224,2.1796167929120553,2.3223421940406705,2.3366748186453528,2.3506200326765665,2.498504895374465,2.5038109495804832,2.5080319048545636,2.530090296315649,2.6463276086070646,2.670947080515612,2.7224763267140553,2.768365187334302,2.8380832114507424,2.8811251778916454,2.950401612198517,2.981207421095732,3.005219342385871,3.0665052721926838,3.126008606818301,3.1446490170331387,3.1723554733210015,3.208705767393683,3.230053067931493,3.2572566141189174,3.258574565228967,3.2867612636318153,3.292002500312144,3.300954354631573,3.305020565874157,3.2995740640376425,3.2914949393226234,3.2866001953730244,3.255871291604995,3.2558104621857815,3.2292121255521913,3.2080335557281714,3.1723554733210015,3.143367456174607,3.1235328538867932,3.06519586212214,3.005219342385871,2.980232176121019,2.9497909883902445,2.8830259658398223,2.8380832114507424,2.7774140239993628,2.6829007870968233,2.670947080515612,2.6669975074299312,2.6570942601002887,2.5456961196371797,2.5038109495804832,2.423036568257819,2.4186669018776215,2.3366748186453528,2.2848616614021875,2.2052450629593174,2.169538687710224,2.143159366358706,2.0147343024508118,2.0024025567750936,1.9908084515293414,1.846357197579115,1.835266425839965,1.822365043491999,1.6962605046603976,1.6681302949048362,1.625147478684541,1.5604317663810825,1.5009941639697058,1.4343146033451877,1.3790766598097761,1.333858033034577,1.3149162485465116,1.2753508276555596,1.2019509476597214,1.1667219020994466,1.0895536390708376,1.0644450043628648,0.9995857711643179,0.9768646587490029,0.9248568914033051,0.8603790746399511,0.8324496402291874,0.7739771947246972,0.7359407819946657,0.6653135092940587,0.6030970725386133,0.5504795191262097,0.4981773783589283,0.4560092596460308,0.3692262799482666,0.3310412474237996,0.2826601878673838,0.2205184385319079,0.16390511648866912,0.09243157740453256,0.04912753223728572,-0.003231014446459568,-0.02238759889189801,-0.04897277663304145,-0.11702659776136137,-0.17036714538158826,-0.20527590745448343,-0.2381418730671605,-0.28546620743876794,-0.3375032763167187,-0.36330265717848853,-0.3840506717781782,-0.4383220950555575,-0.5046394072518474,-0.5132823682816436,-0.5199886086388439,-0.5743472089042321,-0.5864377494868176,-0.6497126692520929,-0.6591709541323993,-0.6717755381869779,-0.7268862540947509,-0.7636457379824133,-0.7913503795718242,-0.8389116691221066,-0.851252284962607,-0.8572047473474633,-0.8672336735211976,-0.8981710318905591,-0.9212158887399049,-0.9380574444463523,-0.9483158618019996,-0.9654513538790646,-0.9706194309113778,-0.9870627393876585,-0.9910241690305153,-0.9917448725691393,-0.9990956024983069,-0.999956514337554,-0.999956514337554,-0.9943921440359169,-0.9944558135924542,-0.9939463798977171,-0.9795449359529353,-0.9765754033300169,-0.9724629910693361,-0.9571396011948066,-0.9482854926515865,-0.9346017728715044,-0.9299224406666964,-0.9117154127973306,-0.8974358618189102,-0.8812705028494143,-0.8693310877061204,-0.8627631042962767,-0.8389116691221066,-0.8261697243946493,-0.8224736550864922,-0.8167020424100784,-0.7886907603196409,-0.7738368117534975,-0.7536353540518945,-0.7525159881420755,-0.730174850338491,-0.7199115725660388,-0.7007078594125051,-0.6938555973597769,-0.6907072879219491,-0.6717755381869779,-0.6666032504640906,-0.6656867429437945,-0.6649871966238301,-0.648355986344388,-0.6455114635609789,-0.6437985101272741,-0.6366822656008573,-0.6342825124036668,-0.6331827604101896,-0.6310920948622378,-0.6301240142724431,-0.6302085661168881,-0.6309718200556755,-0.6309718200556755,-0.632131331910065,-0.6347781106456818,-0.6349409851373995,-0.6363607410390113,-0.6403828504039204,-0.6406439927196779,-0.6420138838387004,-0.6472061590872418,-0.6474236160421327,-0.6486333043896906,-0.6552988712871155,-0.6554697727238974,-0.6564462042516528,-0.665730800076263,-0.665830943258964,-0.6662931154866367,-0.6717755381869779,-0.6801421961960088,-0.6809353818353738,-0.6834367006611028,-0.7007401818559682,-0.7047018282106539,-0.7180045684078067,-0.730529113758795,-0.7423685359009013,-0.7694703500477988,-0.7875556089995399,-0.8028428504395286,-0.8153427666764852,-0.8389116691221066,-0.8850320776152971,-0.9251605380547909,-0.9699758254322859,-1.0060478000572362,-1.0846468613220601,-1.0988056525852734,-1.1731839309923657,-1.2182017630502484,-1.295318937194624,-1.3403200619274953,-1.3910692273265859,-1.4453028977973554,-1.5074561928626249,-1.5725905401995783,-1.635198207390081,-1.6745923237977545,-1.6890950166782392,-1.7124470924781487,-1.7910654379296025,-1.841728454732884,-1.8861473486313374,-1.9362167080464507,-1.9741904775473023,-2.0088645856680136,-2.0556039160607362,-2.0960127816879206,-2.132741259768763,-2.176000716603143,-2.206348745814344,-2.227980269174825,-2.275095497661198,-2.343136847538273,-2.343452981599647,-2.343646332998083,-2.34432193972422,-2.405787153471083,-2.4430648604193186,-2.4665165269135336,-2.5102729784734024,-2.524105084983609,-2.5309611745163885,-2.5455230172979153,-2.575201839151891,-2.603981584790147,-2.6230423911403085,-2.65457259069568,-2.6631888083785373,-2.666332147642591,-2.677409109408531,-2.7031478616216686,-2.7104051070292474,-2.718868092324393,-2.7342580291974654,-2.7469694022684976,-2.7608423809197067,-2.7608836645778796,-2.77597814894336,-2.784861921951811,-2.793215802671944,-2.801471279333004,-2.8072223258616082,-2.8240701104419905,-2.827460245365092,-2.8300527812288223,-2.8445452403436606,-2.856159676494074,-2.8584073531067995,-2.8622464621020924,-2.8870287845345706,-2.8968728934933816,-2.914800893774416,-2.9204651844450664,-2.9409814863359838,-2.956733875774826,-2.9797389092746336,-2.9892975815553076,-2.994540660318723,-3.01168137127879,-3.0351034476229355,-3.042880857449097,-3.057656416281729,-3.0765460982038313,-3.0983108105437953,-3.1179042263532324,-3.1393895223969412,-3.152376985690572,-3.158789793905754,-3.17881750221392,-3.2004082807259318,-3.207811254243013,-3.222341639924644,-3.2427862874295004,-3.264713667070997,-3.285765304670031,-3.3109172395514372,-3.3232940411559824,-3.329496959879667,-3.3459536331490494,-3.3766476100441833,-3.388991135543237,-3.4218015715160126,-3.4264901348400514,-3.461610237565175,-3.4781341931019316,-3.513089764084179,-3.5329404932575272,-3.543206759081543,-3.5789851185813504,-3.591479265304156,-3.6343394523364907,-3.6507503789891063,-3.6802258950193085,-3.7122987265556446,-3.7318376369135313,-3.77360384584553,-3.7992178800182286,-3.827044728161443,-3.8338280670659826,-3.847362025954438,-3.891090854138061,-3.9141654785025635,-3.941931633634841,-3.955568598712496,-3.979894122095417,-3.986850902978592,-4.014498156889568,-4.02069173516832,-4.0223295913692825,-4.023075983037575,-4.039546621094709,-4.04263676176158,-4.042445850563032,-4.041680736533516,-4.040910285076588,-4.038181056456539,-4.022580896550784,-4.021604610745682,-4.0204762554559,-4.014498156889568,-3.995156031022959,-3.9917593926600103,-3.9857551341761024,-3.9669492873913637,-3.9571061012175788,-3.9421991593575214,-3.9383994705343133,-3.9229685585026566,-3.9116061874461687,-3.9033021808901793,-3.893642223321706,-3.8880739842965584,-3.874493574891993,-3.870917845999821,-3.8687251816926107,-3.854495553225534,-3.853811163417009,-3.853292020002516,-3.847362025954438,-3.8395493851787172,-3.8388368084797664,-3.8375471119694193,-3.823619553353762,-3.821144049631691,-3.815376667142999,-3.802221894442261,-3.795624805857069,-3.778006844523163,-3.7730007988184573,-3.757105832351594,-3.7373201702754315,-3.709240784720561,-3.7004893435061295,-3.6941811092187082,-3.6802258950193085,-3.6326501691795627,-3.6023630826047963,-3.561517695217514,-3.513089764084179,-3.4742099648656737,-3.4067571102046452,-3.3659048385414376,-3.3459536331490494,-3.3162587689488765,-3.209612404137131,-3.17881750221392,-3.1577889144696147,-3.1577889144696147,-3.17881750221392,-3.209612404137131,-3.3162587689488765,-3.3459536331490494,-3.3659048385414376,-3.4067571102046452,-3.4742099648656737,-3.513089764084179,-3.561517695217514,-3.6023630826047963,-3.6326501691795627,-3.6802258950193085,-3.6941811092187082,-3.7004893435061295,-3.709240784720561,-3.7373201702754315,-3.757105832351594,-3.7730007988184573,-3.778006844523163,-3.795624805857069,-3.802221894442261,-3.815376667142999,-3.821144049631691,-3.823619553353762,-3.8375471119694193,-3.8388368084797664,-3.8395493851787172,-3.847362025954438,-3.853292020002516,-3.853811163417009,-3.854495553225534,-3.8687251816926107,-3.870917845999821,-3.874493574891993,-3.8880739842965584,-3.893642223321706,-3.9033021808901793,-3.9116061874461687,-3.9229685585026566,-3.9383994705343133,-3.9421991593575214,-3.9571061012175788,-3.9669492873913637,-3.9857551341761024,-3.9917593926600103,-3.995156031022959,-4.014498156889568,-4.0204762554559,-4.021604610745682,-4.022580896550784,-4.038181056456539,-4.040910285076588,-4.041680736533516,-4.042445850563032,-4.04263676176158,-4.039546621094709,-4.023075983037575,-4.0223295913692825,-4.02069173516832,-4.014498156889568,-3.986850902978592,-3.979894122095417,-3.955568598712496,-3.941931633634841,-3.9141654785025635,-3.891090854138061,-3.847362025954438,-3.8338280670659826,-3.827044728161443,-3.7992178800182286,-3.77360384584553,-3.7318376369135313,-3.7122987265556446,-3.6802258950193085,-3.6507503789891063,-3.6343394523364907,-3.591479265304156,-3.5789851185813504,-3.543206759081543,-3.5329404932575272,-3.513089764084179,-3.4781341931019316,-3.461610237565175,-3.4264901348400514,-3.4218015715160126,-3.388991135543237,-3.3766476100441833,-3.3459536331490494,-3.329496959879667,-3.3232940411559824,-3.3109172395514372,-3.285765304670031,-3.264713667070997,-3.2427862874295004,-3.222341639924644,-3.207811254243013,-3.2004082807259318,-3.17881750221392,-3.158789793905754,-3.152376985690572,-3.1393895223969412,-3.1179042263532324,-3.0983108105437953,-3.0765460982038313,-3.057656416281729,-3.042880857449097,-3.0351034476229355,-3.01168137127879,-2.994540660318723,-2.9892975815553076,-2.9797389092746336,-2.956733875774826,-2.9409814863359838,-2.9204651844450664,-2.914800893774416,-2.8968728934933816,-2.8870287845345706,-2.8622464621020924,-2.8584073531067995,-2.856159676494074,-2.8445452403436606,-2.8300527812288223,-2.827460245365092,-2.8240701104419905,-2.8072223258616082,-2.801471279333004,-2.793215802671944,-2.784861921951811,-2.77597814894336,-2.7608836645778796,-2.7608423809197067,-2.7469694022684976,-2.7342580291974654,-2.718868092324393,-2.7104051070292474,-2.7031478616216686,-2.677409109408531,-2.666332147642591,-2.6631888083785373,-2.65457259069568,-2.6230423911403085,-2.603981584790147,-2.575201839151891,-2.5455230172979153,-2.5309611745163885,-2.524105084983609,-2.5102729784734024,-2.4665165269135336,-2.4430648604193186,-2.405787153471083,-2.34432193972422,-2.343646332998083,-2.343452981599647,-2.343136847538273,-2.275095497661198,-2.227980269174825,-2.206348745814344,-2.176000716603143,-2.132741259768763,-2.0960127816879206,-2.0556039160607362,-2.0088645856680136,-1.9741904775473023,-1.9362167080464507,-1.8861473486313374,-1.841728454732884,-1.7910654379296025,-1.7124470924781487,-1.6890950166782392,-1.6745923237977545,-1.635198207390081,-1.5725905401995783,-1.5074561928626249,-1.4453028977973554,-1.3910692273265859,-1.3403200619274953,-1.295318937194624,-1.2182017630502484,-1.1731839309923657,-1.0988056525852734,-1.0846468613220601,-1.0060478000572362,-0.9699758254322859,-0.9251605380547909,-0.8850320776152971,-0.8389116691221066,-0.8153427666764852,-0.8028428504395286,-0.7875556089995399,-0.7694703500477988,-0.7423685359009013,-0.730529113758795,-0.7180045684078067,-0.7047018282106539,-0.7007401818559682,-0.6834367006611028,-0.6809353818353738,-0.6801421961960088,-0.6717755381869779,-0.6662931154866367,-0.665830943258964,-0.665730800076263,-0.6564462042516528,-0.6554697727238974,-0.6552988712871155,-0.6486333043896906,-0.6474236160421327,-0.6472061590872418,-0.6420138838387004,-0.6406439927196779,-0.6403828504039204,-0.6363607410390113,-0.6349409851373995,-0.6347781106456818,-0.632131331910065,-0.6309718200556755,-0.6309718200556755,-0.6302085661168881,-0.6301240142724431,-0.6310920948622378,-0.6331827604101896,-0.6342825124036668,-0.6366822656008573,-0.6437985101272741,-0.6455114635609789,-0.648355986344388,-0.6649871966238301,-0.6656867429437945,-0.6666032504640906,-0.6717755381869779,-0.6907072879219491,-0.6938555973597769,-0.7007078594125051,-0.7199115725660388,-0.730174850338491,-0.7525159881420755,-0.7536353540518945,-0.7738368117534975,-0.7886907603196409,-0.8167020424100784,-0.8224736550864922,-0.8261697243946493,-0.8389116691221066,-0.8627631042962767,-0.8693310877061204,-0.8812705028494143,-0.8974358618189102,-0.9117154127973306,-0.9299224406666964,-0.9346017728715044,-0.9482854926515865,-0.9571396011948066,-0.9724629910693361,-0.9765754033300169,-0.9795449359529353,-0.9939463798977171,-0.9944558135924542,-0.9943921440359169,-0.999956514337554,-0.999956514337554,-0.9990956024983069,-0.9917448725691393,-0.9910241690305153,-0.9870627393876585,-0.9706194309113778,-0.9654513538790646,-0.9483158618019996,-0.9380574444463523,-0.9212158887399049,-0.8981710318905591,-0.8672336735211976,-0.8572047473474633,-0.851252284962607,-0.8389116691221066,-0.7913503795718242,-0.7636457379824133,-0.7268862540947509,-0.6717755381869779,-0.6591709541323993,-0.6497126692520929,-0.5864377494868176,-0.5743472089042321,-0.5199886086388439,-0.5132823682816436,-0.5046394072518474,-0.4383220950555575,-0.3840506717781782,-0.36330265717848853,-0.3375032763167187,-0.28546620743876794,-0.2381418730671605,-0.20527590745448343,-0.17036714538158826,-0.11702659776136137,-0.04897277663304145,-0.02238759889189801,-0.003231014446459568,0.04912753223728572,0.09243157740453256,0.16390511648866912,0.2205184385319079,0.2826601878673838,0.3310412474237996,0.3692262799482666,0.4560092596460308,0.4981773783589283,0.5504795191262097,0.6030970725386133,0.6653135092940587,0.7359407819946657,0.7739771947246972,0.8324496402291874,0.8603790746399511,0.9248568914033051,0.9768646587490029,0.9995857711643179,1.0644450043628648,1.0895536390708376,1.1667219020994466,1.2019509476597214,1.2753508276555596,1.3149162485465116,1.333858033034577,1.3790766598097761,1.4343146033451877,1.5009941639697058,1.5604317663810825,1.625147478684541,1.6681302949048362,1.6962605046603976,1.822365043491999,1.835266425839965,1.846357197579115,1.9908084515293414,2.0024025567750936,2.0147343024508118,2.143159366358706,2.169538687710224,2.2052450629593174,2.2848616614021875,2.3366748186453528,2.4186669018776215,2.423036568257819,2.5038109495804832,2.5456961196371797,2.6570942601002887,2.6669975074299312,2.670947080515612,2.6829007870968233,2.7774140239993628,2.8380832114507424,2.8830259658398223,2.9497909883902445,2.980232176121019,3.005219342385871,3.06519586212214,3.1235328538867932,3.143367456174607,3.1723554733210015,3.2080335557281714,3.2292121255521913,3.2558104621857815,3.255871291604995,3.2866001953730244,3.2914949393226234,3.2995740640376425,3.305020565874157,3.300954354631573,3.292002500312144,3.2867612636318153,3.258574565228967,3.2572566141189174,3.230053067931493,3.208705767393683,3.1723554733210015,3.1446490170331387,3.126008606818301,3.0665052721926838,3.005219342385871,2.981207421095732,2.950401612198517,2.8811251778916454,2.8380832114507424,2.768365187334302,2.7224763267140553,2.670947080515612,2.6463276086070646,2.530090296315649,2.5080319048545636,2.5038109495804832,2.498504895374465,2.3506200326765665,2.3366748186453528,2.3223421940406705,2.1796167929120553,2.169538687710224,2.16036920458693,2.0244217251986782,2.0038891349886043,2.0024025567750936,2.00069619805733,1.8476235030766226,1.835266425839965,1.82149370053137,1.6880420177297033,1.6681302949048362,1.6469667449512144,1.5247767891694952,1.5009941639697058,1.4766705147233363,1.3586966249759698,1.333858033034577,1.3090774001620797,1.1907078036683174,1.1667219020994466,1.1432252053405048,1.0212008349026718,0.9995857711643179,0.9785809738210549,0.8507806007839989,0.8324496402291874,0.8143960879185475,0.680978250664154,0.6653135092940587,0.6490958555534245,0.5141634560891806,0.4981773783589283,0.48093977054558046,0.35156152619010683,0.3310412474237996,0.3076153104691475,0.19303351748206943,0.16390511648866912,0.12989234586386722,0.03572686987300244,-0.003231014446459568,-0.04660449730318028,-0.12527019834949904,-0.17036714538158826,-0.21503874719601157,-0.29537337537404973,-0.3375032763167187,-0.37541211991909407,-0.4744885131878078,-0.5046394072518474,-0.529441188535781,-0.6574274147444079,-0.6717755381869779,-0.6838050857740612,-0.8306972333133693,-0.8389116691221066,-0.8462990921922753,-0.989070032751898,-1.0060478000572362,-1.026345034365491,-1.134874777723807,-1.1731839309923657,-1.2299834563861474,-1.273107644347558,-1.3403200619274953,-1.4068436928129433,-1.4527927135943965,-1.5074561928626249,-1.5402139522578846,-1.6718019155613195,-1.6745923237977545,-1.6765616589361354,-1.693584893610625,-1.8259955565027495,-1.841728454732884,-1.858156773214743,-2.002770152954626,-2.0088645856680136,-2.013458240293943,-2.0280968429110864,-2.137536181157449,-2.176000716603143,-2.2435480798422223,-2.3393916433908677,-2.3414642848663894,-2.343136847538273,-2.421007441600927,-2.491318201619449,-2.4998172823464984,-2.5102729784734024,-2.5711802421227166,-2.615923651647618,-2.6413899997644625,-2.677409109408531,-2.712150233762255,-2.7387167041987874,-2.7852877347287803,-2.8445452403436606,-2.861141976675416,-2.878485648317093,-2.9485549851583235,-3.01168137127879,-3.043654086288223,-3.111060048627712,-3.1577889144696147,-2.984776599369593,-2.9579988355923996,-2.9021827034302143,-2.8445452403436606,-2.823168763889699,-2.8071935753346624,-2.750501342793523,-2.6780747235339595,-2.677572412477881,-2.6774990938848777,-2.677409109408531,-2.602265044766213,-2.540749309174112,-2.526043532897302,-2.5102729784734024,-2.4371712646894848,-2.3500688096647533,-2.3460648724508406,-2.343136847538273,-2.3345820937654445,-2.2330470632221733,-2.176000716603143,-2.10420790945542,-2.076372062957933,-2.0088645856680136,-1.9566709354020624,-1.896565379753679,-1.841728454732884,-1.7744401153388152,-1.7466860312858685,-1.6745923237977545,-1.608166968846012,-1.5628817939950412,-1.5074561928626249,-1.4732164142683297,-1.3426535159425104,-1.3403200619274953,-1.3387355473315186,-1.3293300747239938,-1.1953204755447722,-1.1731839309923657,-1.144123778113408,-1.0387755614317689,-1.0060478000572362,-0.9754216864043803,-0.8570063723576773,-0.8389116691221066,-0.8241455280265111,-0.7553694812935525,-0.6906447448718627,-0.6717755381869779,-0.6278742453970789,-0.5693858366276725,-0.5046394072518474,-0.44685232484287063,-0.36467857504283074,-0.3375032763167187,-0.3210000889771347,-0.22726331627413465,-0.18606382632006913,-0.17036714538158826,-0.1502274521410385,-0.023592400286421622,-0.004711151777872402,-0.003231014446459568,-0.0010378628304046345,0.12679480428752754,0.16390511648866912,0.23251406366124527,0.254887728707784,0.3310412474237996,0.38313080291284507,0.46748616344428306,0.4981773783589283,0.5167145560833699,0.6317856774253858,0.662401769013341,0.6653135092940587,0.6685355564936302,0.8212422709913341,0.8324496402291874,0.8442430639366219,0.9838294317276457,0.9995857711643179,1.015682818733266,1.1482571782950863,1.1667219020994466,1.185339036065768,1.313582414821994,1.333858033034577,1.3542985801238228,1.4790197982236108,1.5009941639697058,1.523655596131773,1.6429049111737566,1.6681302949048362,1.6951505881336058,1.8034836251163444,1.835266425839965,1.8711510359702626,1.960258650583409,2.0024025567750936,2.0514821272657286,2.1156594369560544,2.169538687710224,2.2294783114656997,2.275555756862106,2.3366748186453528,2.393772430812966,2.4524542250618193,2.5038109495804832,2.540145830347461,2.6641138513134646,2.6690072545564743,2.670947080515612,2.6819449671248314,2.7652761878025203,2.8380832114507424,2.857153103750141,2.8742615818535135,2.91150879484084,2.918488018684556,2.9606625339441575,2.966081504780437,2.9803622996056323,2.9840573733404767,2.9780067986270318,2.9583169991318634,2.9483891837685654,2.908308677401523,2.8728282420471736,2.8536341051230867,2.846293322019674,2.8380832114507424,2.7564143323480277,2.733595001658232,2.670947080515612,2.6645210275452555,2.6533567928284256,2.550809382187813,2.5038109495804832,2.428412728427652,2.4048108630547187,2.3366748186453528,2.2954028399875472,2.1927941965976956,2.169538687710224,2.15065264526557,2.013527383387732,2.0024025567750936,1.9905797764052728,1.8554188233833901,1.835266425839965,1.8090286331883672,1.7123391281537756,1.6681302949048362,1.5935217348944466,1.5798644799031987,1.5009941639697058,1.455569260806227,1.342377127668895,1.3365440519435232,1.333858033034577,1.3263963350954668,1.2258409461368753,1.1667219020994466,1.1138020310716517,1.0005427451107387,0.9999270309773305,0.9995857711643179,0.9986616540934588,0.88661219603501,0.8324496402291874,0.76741765849372,0.7111214237074854,0.6653135092940587,0.6425129517240276,0.555310527538154,0.5140147886725046,0.4981773783589283,0.4658509037352285,0.38595898500687476,0.3310412474237996,0.2536144058720886,0.23726438824516194,0.16390511648866912,0.09632332193680071,0.061171360222104454,-0.003231014446459568,-0.06582512744410884,-0.16343493816697574,-0.16801818732206542,-0.17036714538158826,-0.24461813755175577,-0.3063338746819948,-0.3212501459149806,-0.3375032763167187,-0.38878988744072807,-0.4209113452407678,-0.45549705567253973,-0.5046394072518474,-0.522679144225723,-0.5334806639517282,-0.5898777972847338,-0.5972659755439391,-0.6488276047557573,-0.6586854688064374,-0.6717755381869779,-0.7287742171031564,-0.769555437955912,-0.7990130331288725,-0.8389116691221066,-0.8685350983476816,-0.8886745146456372,-0.9340256014234578,-0.973290376850299,-0.9942615782458946,-0.9984707941342679,-1.0060478000572362,-1.0527222975435198,-1.0746730546052827,-1.1000731067984892,-1.1112074675732355,-1.134842194502438,-1.1424785581580439,-1.1731839309923657,-1.175455309426023,-1.1759377053470477,-1.1761842527542976,-1.1946170628613988,-1.1973855662784754,-1.1973855662784754,-1.2030381631211586,-1.204424485764676,-1.2036339423452702,-1.2008023252558404,-1.198604371414743,-1.1963100477734585,-1.1829964178937757,-1.1815420652774131,-1.1803503173434482,-1.1731839309923657,-1.156677650729022,-1.153963109208684,-1.1498588059657573,-1.127994615309345,-1.1179762531065949,-1.101175663695301,-1.0962845513333468,-1.0756507176635104,-1.0605851237997612,-1.0384241814880788,-1.028682659644911,-1.0234492104205462,-1.0060478000572362,-0.9845867725150965,-0.9780457458876191,-0.9669868920734332,-0.9461755612186913,-0.9279062583767113,-0.9091326757302491,-0.8993917754756051,-0.8823049303447803,-0.874161208487533,-0.8451273941036508,-0.8436399343820327,-0.842919853850141,-0.8389116691221066,-0.8171743718914399,-0.8132063626848449,-0.8098953071201382,-0.7980805149600236,-0.7931219532494094,-0.789980466173553,-0.7859937138010604,-0.7827622761143331,-0.7814811246172138,-0.7810867423369547,-0.7806471733986005,-0.7825737366660164,-0.7845020312415443,-0.7849772185594261,-0.7882069829027909,-0.7926784371487106,-0.7940261461829685,-0.7974766613764537,-0.8051314039331849,-0.8065084517238521,-0.8093822352998483,-0.8210341988165428,-0.8218885747288134,-0.8235960853127047,-0.8389116691221066,-0.8405942434174207,-0.8408160393774917,-0.8414065697306601,-0.8639141566323296,-0.8679441675665762,-0.879821882963701,-0.8945661030340277,-0.9061937631665922,-0.9331905906915212,-0.9458010018228462,-0.963011164912956,-0.9771274391453701,-1.0060478000572362,-1.0422707280898997,-1.0729681773853654,-1.1277326310788967,-1.1731839309923657,-1.2414271628510498,-1.2812499091103629,-1.3403200619274953,-1.3826480758169044,-1.4551707096667332,-1.5074561928626249,-1.5846489672002528,-1.6057188282776798,-1.6745923237977545,-1.6986952509391902,-1.7347444600762234,-1.7990110030147122,-1.841728454732884,-1.8916619537741832,-1.9457580159307923,-1.9787155435930437,-2.0088645856680136,-2.059220102914498,-2.1021600789274206,-2.13584891907988,-2.176000716603143,-2.2083531943451984,-2.230729098656515,-2.2747226632936934,-2.3293218719792463,-2.33836773085819,-2.3401236391389686,-2.343136847538273,-2.396255896181138,-2.422917060172752,-2.4482695358291355,-2.4781032139063077,-2.491923804315779,-2.4964918858767433,-2.5102729784734024,-2.536515312456804,-2.5445662768653188,-2.5544236896203634,-2.569827495670375,-2.584289945278205,-2.598436653186754,-2.6004424222940496,-2.615530202993247,-2.6239858711727235,-2.6353226926233866,-2.642615050173845,-2.6474720877006366,-2.6682446679591143,-2.6698519911678975,-2.6710394054269093,-2.677409109408531,-2.697669905322111,-2.701530297109807,-2.708145745014706,-2.727622369192268,-2.738969712342267,-2.759783963851439,-2.7602768947011986,-2.7818497902243218,-2.7956371688747463,-2.8228502118378014,-2.8290094411080924,-2.832572214107511,-2.8445452403436606,-2.871965247853659,-2.8805572449563455,-2.8969101142789944,-2.911770932085675,-2.9327829602630624,-2.9514528231506096,-2.9724229566408686,-2.984269525414991,-2.9906937968738303,-3.01168137127879,-3.0305358142637635,-3.0365888297964094,-3.0485299506732675,-3.0711016642887454,-3.090027439951249,-3.1124830861883694,-3.130122265094723,-3.146080061120993,-3.1548324310656426,-3.17881750221392,-3.1999536784520206,-3.2078906088909562,-3.2282774410287614,-3.2479717947327265,-3.276040545300999,-3.2976933247875353,-3.3459536331490494,-3.349576040551999,-3.351282498191174,-3.356730011682024,-3.4051378083355512,-3.4346202729591155,-3.4615390470624208,-3.513089764084179,-3.51912004711307,-3.5224768296063447,-3.533632970549717,-3.5777547988780247,-3.6125798087166814,-3.63501303311165,-3.6802258950193085,-3.6906527335559334,-3.6959892801598606,-3.7066507230887984,-3.7400271828172515,-3.7646960111721555,-3.7827876540800327,-3.79757280674336,-3.811879674041224,-3.8163358037865525,-3.833959624364855,-3.8359585480385405,-3.836074838988604,-3.837579751758435,-3.8377261687055535,-3.836681536969632,-3.8232332310764,-3.8207810347040514,-3.815145587752351,-3.7996054239281145,-3.7910909780409776,-3.776078546603829,-3.771761193639419,-3.755644346399002,-3.742618313196039,-3.7314433128450437,-3.7207041011530126,-3.7144811478739372,-3.692587023339276,-3.6903675512664416,-3.689076051430332,-3.6802258950193085,-3.6661017520522234,-3.6637130647356235,-3.660542504735057,-3.644915631752471,-3.6399952036334904,-3.6319739971719587,-3.623625503265367,-3.616038816003485,-3.599601078311351,-3.598775231927476,-3.585483318736923,-3.5698004731674624,-3.549268096557758,-3.5409159434527924,-3.5332228560451577,-3.513089764084179,-3.4752428316793695,-3.4498760048668817,-3.3989787741459363,-3.3459536331490494,-3.295047104112477,-3.2176122010810237,-3.17881750221392,-3.1219083324986707,-3.086614240473404,-3.01168137127879,-2.984776599369593,-2.984776599369593,-3.01168137127879,-3.086614240473404,-3.1219083324986707,-3.17881750221392,-3.2176122010810237,-3.295047104112477,-3.3459536331490494,-3.3989787741459363,-3.4498760048668817,-3.4752428316793695,-3.513089764084179,-3.5332228560451577,-3.5409159434527924,-3.549268096557758,-3.5698004731674624,-3.585483318736923,-3.598775231927476,-3.599601078311351,-3.616038816003485,-3.623625503265367,-3.6319739971719587,-3.6399952036334904,-3.644915631752471,-3.660542504735057,-3.6637130647356235,-3.6661017520522234,-3.6802258950193085,-3.689076051430332,-3.6903675512664416,-3.692587023339276,-3.7144811478739372,-3.7207041011530126,-3.7314433128450437,-3.742618313196039,-3.755644346399002,-3.771761193639419,-3.776078546603829,-3.7910909780409776,-3.7996054239281145,-3.815145587752351,-3.8207810347040514,-3.8232332310764,-3.836681536969632,-3.8377261687055535,-3.837579751758435,-3.836074838988604,-3.8359585480385405,-3.833959624364855,-3.8163358037865525,-3.811879674041224,-3.79757280674336,-3.7827876540800327,-3.7646960111721555,-3.7400271828172515,-3.7066507230887984,-3.6959892801598606,-3.6906527335559334,-3.6802258950193085,-3.63501303311165,-3.6125798087166814,-3.5777547988780247,-3.533632970549717,-3.5224768296063447,-3.51912004711307,-3.513089764084179,-3.4615390470624208,-3.4346202729591155,-3.4051378083355512,-3.356730011682024,-3.351282498191174,-3.349576040551999,-3.3459536331490494,-3.2976933247875353,-3.276040545300999,-3.2479717947327265,-3.2282774410287614,-3.2078906088909562,-3.1999536784520206,-3.17881750221392,-3.1548324310656426,-3.146080061120993,-3.130122265094723,-3.1124830861883694,-3.090027439951249,-3.0711016642887454,-3.0485299506732675,-3.0365888297964094,-3.0305358142637635,-3.01168137127879,-2.9906937968738303,-2.984269525414991,-2.9724229566408686,-2.9514528231506096,-2.9327829602630624,-2.911770932085675,-2.8969101142789944,-2.8805572449563455,-2.871965247853659,-2.8445452403436606,-2.832572214107511,-2.8290094411080924,-2.8228502118378014,-2.7956371688747463,-2.7818497902243218,-2.7602768947011986,-2.759783963851439,-2.738969712342267,-2.727622369192268,-2.708145745014706,-2.701530297109807,-2.697669905322111,-2.677409109408531,-2.6710394054269093,-2.6698519911678975,-2.6682446679591143,-2.6474720877006366,-2.642615050173845,-2.6353226926233866,-2.6239858711727235,-2.615530202993247,-2.6004424222940496,-2.598436653186754,-2.584289945278205,-2.569827495670375,-2.5544236896203634,-2.5445662768653188,-2.536515312456804,-2.5102729784734024,-2.4964918858767433,-2.491923804315779,-2.4781032139063077,-2.4482695358291355,-2.422917060172752,-2.396255896181138,-2.343136847538273,-2.3401236391389686,-2.33836773085819,-2.3293218719792463,-2.2747226632936934,-2.230729098656515,-2.2083531943451984,-2.176000716603143,-2.13584891907988,-2.1021600789274206,-2.059220102914498,-2.0088645856680136,-1.9787155435930437,-1.9457580159307923,-1.8916619537741832,-1.841728454732884,-1.7990110030147122,-1.7347444600762234,-1.6986952509391902,-1.6745923237977545,-1.6057188282776798,-1.5846489672002528,-1.5074561928626249,-1.4551707096667332,-1.3826480758169044,-1.3403200619274953,-1.2812499091103629,-1.2414271628510498,-1.1731839309923657,-1.1277326310788967,-1.0729681773853654,-1.0422707280898997,-1.0060478000572362,-0.9771274391453701,-0.963011164912956,-0.9458010018228462,-0.9331905906915212,-0.9061937631665922,-0.8945661030340277,-0.879821882963701,-0.8679441675665762,-0.8639141566323296,-0.8414065697306601,-0.8408160393774917,-0.8405942434174207,-0.8389116691221066,-0.8235960853127047,-0.8218885747288134,-0.8210341988165428,-0.8093822352998483,-0.8065084517238521,-0.8051314039331849,-0.7974766613764537,-0.7940261461829685,-0.7926784371487106,-0.7882069829027909,-0.7849772185594261,-0.7845020312415443,-0.7825737366660164,-0.7806471733986005,-0.7810867423369547,-0.7814811246172138,-0.7827622761143331,-0.7859937138010604,-0.789980466173553,-0.7931219532494094,-0.7980805149600236,-0.8098953071201382,-0.8132063626848449,-0.8171743718914399,-0.8389116691221066,-0.842919853850141,-0.8436399343820327,-0.8451273941036508,-0.874161208487533,-0.8823049303447803,-0.8993917754756051,-0.9091326757302491,-0.9279062583767113,-0.9461755612186913,-0.9669868920734332,-0.9780457458876191,-0.9845867725150965,-1.0060478000572362,-1.0234492104205462,-1.028682659644911,-1.0384241814880788,-1.0605851237997612,-1.0756507176635104,-1.0962845513333468,-1.101175663695301,-1.1179762531065949,-1.127994615309345,-1.1498588059657573,-1.153963109208684,-1.156677650729022,-1.1731839309923657,-1.1803503173434482,-1.1815420652774131,-1.1829964178937757,-1.1963100477734585,-1.198604371414743,-1.2008023252558404,-1.2036339423452702,-1.204424485764676,-1.2030381631211586,-1.1973855662784754,-1.1973855662784754,-1.1946170628613988,-1.1761842527542976,-1.1759377053470477,-1.175455309426023,-1.1731839309923657,-1.1424785581580439,-1.134842194502438,-1.1112074675732355,-1.1000731067984892,-1.0746730546052827,-1.0527222975435198,-1.0060478000572362,-0.9984707941342679,-0.9942615782458946,-0.973290376850299,-0.9340256014234578,-0.8886745146456372,-0.8685350983476816,-0.8389116691221066,-0.7990130331288725,-0.769555437955912,-0.7287742171031564,-0.6717755381869779,-0.6586854688064374,-0.6488276047557573,-0.5972659755439391,-0.5898777972847338,-0.5334806639517282,-0.522679144225723,-0.5046394072518474,-0.45549705567253973,-0.4209113452407678,-0.38878988744072807,-0.3375032763167187,-0.3212501459149806,-0.3063338746819948,-0.24461813755175577,-0.17036714538158826,-0.16801818732206542,-0.16343493816697574,-0.06582512744410884,-0.003231014446459568,0.061171360222104454,0.09632332193680071,0.16390511648866912,0.23726438824516194,0.2536144058720886,0.3310412474237996,0.38595898500687476,0.4658509037352285,0.4981773783589283,0.5140147886725046,0.555310527538154,0.6425129517240276,0.6653135092940587,0.7111214237074854,0.76741765849372,0.8324496402291874,0.88661219603501,0.9986616540934588,0.9995857711643179,0.9999270309773305,1.0005427451107387,1.1138020310716517,1.1667219020994466,1.2258409461368753,1.3263963350954668,1.333858033034577,1.3365440519435232,1.342377127668895,1.455569260806227,1.5009941639697058,1.5798644799031987,1.5935217348944466,1.6681302949048362,1.7123391281537756,1.8090286331883672,1.835266425839965,1.8554188233833901,1.9905797764052728,2.0024025567750936,2.013527383387732,2.15065264526557,2.169538687710224,2.1927941965976956,2.2954028399875472,2.3366748186453528,2.4048108630547187,2.428412728427652,2.5038109495804832,2.550809382187813,2.6533567928284256,2.6645210275452555,2.670947080515612,2.733595001658232,2.7564143323480277,2.8380832114507424,2.846293322019674,2.8536341051230867,2.8728282420471736,2.908308677401523,2.9483891837685654,2.9583169991318634,2.9780067986270318,2.9840573733404767,2.9803622996056323,2.966081504780437,2.9606625339441575,2.918488018684556,2.91150879484084,2.8742615818535135,2.857153103750141,2.8380832114507424,2.7652761878025203,2.6819449671248314,2.670947080515612,2.6690072545564743,2.6641138513134646,2.540145830347461,2.5038109495804832,2.4524542250618193,2.393772430812966,2.3366748186453528,2.275555756862106,2.2294783114656997,2.169538687710224,2.1156594369560544,2.0514821272657286,2.0024025567750936,1.960258650583409,1.8711510359702626,1.835266425839965,1.8034836251163444,1.6951505881336058,1.6681302949048362,1.6429049111737566,1.523655596131773,1.5009941639697058,1.4790197982236108,1.3542985801238228,1.333858033034577,1.313582414821994,1.185339036065768,1.1667219020994466,1.1482571782950863,1.015682818733266,0.9995857711643179,0.9838294317276457,0.8442430639366219,0.8324496402291874,0.8212422709913341,0.6685355564936302,0.6653135092940587,0.662401769013341,0.6317856774253858,0.5167145560833699,0.4981773783589283,0.46748616344428306,0.38313080291284507,0.3310412474237996,0.254887728707784,0.23251406366124527,0.16390511648866912,0.12679480428752754,-0.0010378628304046345,-0.003231014446459568,-0.004711151777872402,-0.023592400286421622,-0.1502274521410385,-0.17036714538158826,-0.18606382632006913,-0.22726331627413465,-0.3210000889771347,-0.3375032763167187,-0.36467857504283074,-0.44685232484287063,-0.5046394072518474,-0.5693858366276725,-0.6278742453970789,-0.6717755381869779,-0.6906447448718627,-0.7553694812935525,-0.8241455280265111,-0.8389116691221066,-0.8570063723576773,-0.9754216864043803,-1.0060478000572362,-1.0387755614317689,-1.144123778113408,-1.1731839309923657,-1.1953204755447722,-1.3293300747239938,-1.3387355473315186,-1.3403200619274953,-1.3426535159425104,-1.4732164142683297,-1.5074561928626249,-1.5628817939950412,-1.608166968846012,-1.6745923237977545,-1.7466860312858685,-1.7744401153388152,-1.841728454732884,-1.896565379753679,-1.9566709354020624,-2.0088645856680136,-2.076372062957933,-2.10420790945542,-2.176000716603143,-2.2330470632221733,-2.3345820937654445,-2.343136847538273,-2.3460648724508406,-2.3500688096647533,-2.4371712646894848,-2.5102729784734024,-2.526043532897302,-2.540749309174112,-2.602265044766213,-2.677409109408531,-2.6774990938848777,-2.677572412477881,-2.6780747235339595,-2.750501342793523,-2.8071935753346624,-2.823168763889699,-2.8445452403436606,-2.9021827034302143,-2.9579988355923996,-2.984776599369593,-3.001618348611067,-2.9913771900695316,-2.9136990496284225,-2.8445452403436606,-2.827642812741579,-2.8130031716226886,-2.7449048778556255,-2.677409109408531,-2.660363933032312,-2.641854331133959,-2.5680250930473214,-2.5102729784734024,-2.468270452411942,-2.3888212248895746,-2.357682579403236,-2.343136847538273,-2.3167770276080226,-2.226777305046773,-2.176000716603143,-2.109946507604362,-2.0774221262954997,-2.0088645856680136,-1.9412722968087763,-1.9060698897075987,-1.841728454732884,-1.7936853395250214,-1.7043827058882055,-1.6745923237977545,-1.6547155346194282,-1.5709585320166433,-1.5187279811191887,-1.5074561928626249,-1.489896132197714,-1.375742268829529,-1.3403200619274953,-1.2946848428684978,-1.2186624101768775,-1.1731839309923657,-1.1357937083103522,-1.0179449732357915,-1.0060478000572362,-0.9986782480264269,-0.982724335868518,-0.9035773393829496,-0.8389116691221066,-0.8171452656801907,-0.8001458184717478,-0.7915758352932745,-0.7743831205183227,-0.7543110048164596,-0.7573781173429737,-0.7575371683328882,-0.7696779466945465,-0.7864112795918032,-0.8154808096420858,-0.8242093735057789,-0.829197061444928,-0.8389116691221066,-0.8850855823216337,-0.9081779223952342,-0.9447488552667078,-1.0060478000572362,-1.007174482600849,-1.0078210498813203,-1.0102424066480893,-1.070697516105363,-1.1104608059239327,-1.1332082418582594,-1.1731839309923657,-1.1921829618141624,-1.201704723214715,-1.220327108530622,-1.2428864901860681,-1.2741538258299157,-1.29059654447276,-1.3240390338621886,-1.3301846686721737,-1.3322349629466865,-1.3403200619274953,-1.363898573845928,-1.369265375178026,-1.372921154274093,-1.3865004781866102,-1.393597999677442,-1.3956023697476807,-1.3995731398143807,-1.4040460868612907,-1.4038264456511111,-1.4036871946205958,-1.4009739154630712,-1.3963397645590812,-1.3913709254108113,-1.3852810178718702,-1.3791990912607757,-1.3626247346542408,-1.3584116944720135,-1.3551240792965897,-1.3403200619274953,-1.325574371359827,-1.3225086386620815,-1.3173225015741385,-1.2925196429841588,-1.2802131267034333,-1.2575057935449072,-1.2571622357331549,-1.2326187405097269,-1.2185845280072023,-1.1844301062415283,-1.180847599733057,-1.1789592980843073,-1.1731839309923657,-1.1387010910957818,-1.1278135993271352,-1.1079986312148948,-1.0992985425429227,-1.0763945948747438,-1.0607960270455141,-1.037830401545671,-1.0288555491280897,-1.0243698769257792,-1.0060478000572362,-0.9917632563106258,-0.9883448805736252,-0.9844680181272567,-0.9655162993716999,-0.9582023959095842,-0.9516534658758928,-0.945742671521403,-0.9389449243454235,-0.9345960414752161,-0.9335864418538051,-0.9304362495774061,-0.9313789219854529,-0.9317492432101044,-0.9317492432101044,-0.9367975531897379,-0.939049223155755,-0.941498629220443,-0.9481136507427976,-0.9547220602910729,-0.9582985411539804,-0.9643788191701974,-0.9786956142385268,-0.9812468342293128,-0.9848957650058923,-1.0060478000572362,-1.0103225147141224,-1.01127943801602,-1.0140424901854805,-1.0461803330468937,-1.0570179506883646,-1.0910679133574979,-1.0931251728739024,-1.1198946447781388,-1.1379599832553842,-1.1731839309923657,-1.2048473103443937,-1.2366054954984644,-1.296328736357811,-1.3403200619274953,-1.4211177063299445,-1.4258156045484753,-1.5074561928626249,-1.5833768281650178,-1.60427971869838,-1.6745923237977545,-1.7035370212602263,-1.749990430764237,-1.8072529655339498,-1.841728454732884,-1.9005026237184355,-1.9655203697991528,-1.988208208086113,-2.0088645856680136,-2.0660018467355474,-2.1122857507258272,-2.1395612641444357,-2.176000716603143,-2.206585616399579,-2.2247743173503114,-2.264339115214079,-2.273960484054112,-2.309637818030799,-2.3194212366757156,-2.343136847538273,-2.3655027909964534,-2.3733722765016925,-2.3840486369266047,-2.4027700426337786,-2.419535292948469,-2.435234065147819,-2.4397469366708515,-2.4558822644994276,-2.464319829582772,-2.481239641272376,-2.4870824893063395,-2.490698630252777,-2.5102729784734024,-2.516481105480561,-2.517569929788812,-2.51924187491404,-2.5437594166894906,-2.550344273158009,-2.5617355924384038,-2.5736021315219064,-2.587958937364471,-2.606182950459825,-2.614670118758392,-2.6306075960453255,-2.6408595690368486,-2.677409109408531,-2.677471687121198,-2.677489452964622,-2.6775234883074663,-2.7151952393277963,-2.7262097696486425,-2.74707474316274,-2.7532130781015125,-2.7746890681192395,-2.790491685184831,-2.814878355292141,-2.8227290590764342,-2.8275567474585577,-2.8445452403436606,-2.8648140033211247,-2.8706747892822504,-2.88233560340991,-2.9025836022118847,-2.919063807389527,-2.9417016529940394,-2.9546969524247455,-2.9714082341043113,-2.981904130109209,-3.01168137127879,-3.0253876252287277,-3.0301832482093403,-3.0424906195358545,-3.07157186268694,-3.094357997852951,-3.1199212516460175,-3.1577631456752835,-3.166396145836515,-3.1703002596126453,-3.17881750221392,-3.222845233253694,-3.243035250208142,-3.276903501030212,-3.3048552187865923,-3.3238479649329564,-3.331019307692385,-3.3459536331490494,-3.3859303449084894,-3.4056301938187765,-3.4403579769997314,-3.4601622022141614,-3.4837311195497698,-3.492194268747294,-3.513089764084179,-3.54007315243239,-3.550833354265512,-3.566902187042361,-3.5798885751109566,-3.5985339744429234,-3.6098218202525825,-3.614848970999251,-3.6239789072495547,-3.6248818237147526,-3.6258328257951344,-3.6258328257951344,-3.6185690300217956,-3.6141925876876213,-3.606866337499132,-3.5912898109401947,-3.588619405824832,-3.573569865794724,-3.5619826463517974,-3.5404422727710063,-3.5338792266716084,-3.5299069772675438,-3.513089764084179,-3.494261886324442,-3.4883823917479013,-3.47805318841084,-3.4565726278567475,-3.440510430025723,-3.4202864156625914,-3.4133827473110756,-3.3965666875049747,-3.38586128680474,-3.3538499071419263,-3.3520276357851175,-3.3506276200513367,-3.3459536331490494,-3.284989416524767,-3.2417192420001086,-3.2095838992464865,-3.17881750221392,-3.1292502262939994,-3.0426286316865054,-3.01168137127879,-3.001618348611067,-3.001618348611067,-3.01168137127879,-3.0426286316865054,-3.1292502262939994,-3.17881750221392,-3.2095838992464865,-3.2417192420001086,-3.284989416524767,-3.3459536331490494,-3.3506276200513367,-3.3520276357851175,-3.3538499071419263,-3.38586128680474,-3.3965666875049747,-3.4133827473110756,-3.4202864156625914,-3.440510430025723,-3.4565726278567475,-3.47805318841084,-3.4883823917479013,-3.494261886324442,-3.513089764084179,-3.5299069772675438,-3.5338792266716084,-3.5404422727710063,-3.5619826463517974,-3.573569865794724,-3.588619405824832,-3.5912898109401947,-3.606866337499132,-3.6141925876876213,-3.6185690300217956,-3.6258328257951344,-3.6258328257951344,-3.6248818237147526,-3.6239789072495547,-3.614848970999251,-3.6098218202525825,-3.5985339744429234,-3.5798885751109566,-3.566902187042361,-3.550833354265512,-3.54007315243239,-3.513089764084179,-3.492194268747294,-3.4837311195497698,-3.4601622022141614,-3.4403579769997314,-3.4056301938187765,-3.3859303449084894,-3.3459536331490494,-3.331019307692385,-3.3238479649329564,-3.3048552187865923,-3.276903501030212,-3.243035250208142,-3.222845233253694,-3.17881750221392,-3.1703002596126453,-3.166396145836515,-3.1577631456752835,-3.1199212516460175,-3.094357997852951,-3.07157186268694,-3.0424906195358545,-3.0301832482093403,-3.0253876252287277,-3.01168137127879,-2.981904130109209,-2.9714082341043113,-2.9546969524247455,-2.9417016529940394,-2.919063807389527,-2.9025836022118847,-2.88233560340991,-2.8706747892822504,-2.8648140033211247,-2.8445452403436606,-2.8275567474585577,-2.8227290590764342,-2.814878355292141,-2.790491685184831,-2.7746890681192395,-2.7532130781015125,-2.74707474316274,-2.7262097696486425,-2.7151952393277963,-2.6775234883074663,-2.677489452964622,-2.677471687121198,-2.677409109408531,-2.6408595690368486,-2.6306075960453255,-2.614670118758392,-2.606182950459825,-2.587958937364471,-2.5736021315219064,-2.5617355924384038,-2.550344273158009,-2.5437594166894906,-2.51924187491404,-2.517569929788812,-2.516481105480561,-2.5102729784734024,-2.490698630252777,-2.4870824893063395,-2.481239641272376,-2.464319829582772,-2.4558822644994276,-2.4397469366708515,-2.435234065147819,-2.419535292948469,-2.4027700426337786,-2.3840486369266047,-2.3733722765016925,-2.3655027909964534,-2.343136847538273,-2.3194212366757156,-2.309637818030799,-2.273960484054112,-2.264339115214079,-2.2247743173503114,-2.206585616399579,-2.176000716603143,-2.1395612641444357,-2.1122857507258272,-2.0660018467355474,-2.0088645856680136,-1.988208208086113,-1.9655203697991528,-1.9005026237184355,-1.841728454732884,-1.8072529655339498,-1.749990430764237,-1.7035370212602263,-1.6745923237977545,-1.60427971869838,-1.5833768281650178,-1.5074561928626249,-1.4258156045484753,-1.4211177063299445,-1.3403200619274953,-1.296328736357811,-1.2366054954984644,-1.2048473103443937,-1.1731839309923657,-1.1379599832553842,-1.1198946447781388,-1.0931251728739024,-1.0910679133574979,-1.0570179506883646,-1.0461803330468937,-1.0140424901854805,-1.01127943801602,-1.0103225147141224,-1.0060478000572362,-0.9848957650058923,-0.9812468342293128,-0.9786956142385268,-0.9643788191701974,-0.9582985411539804,-0.9547220602910729,-0.9481136507427976,-0.941498629220443,-0.939049223155755,-0.9367975531897379,-0.9317492432101044,-0.9317492432101044,-0.9313789219854529,-0.9304362495774061,-0.9335864418538051,-0.9345960414752161,-0.9389449243454235,-0.945742671521403,-0.9516534658758928,-0.9582023959095842,-0.9655162993716999,-0.9844680181272567,-0.9883448805736252,-0.9917632563106258,-1.0060478000572362,-1.0243698769257792,-1.0288555491280897,-1.037830401545671,-1.0607960270455141,-1.0763945948747438,-1.0992985425429227,-1.1079986312148948,-1.1278135993271352,-1.1387010910957818,-1.1731839309923657,-1.1789592980843073,-1.180847599733057,-1.1844301062415283,-1.2185845280072023,-1.2326187405097269,-1.2571622357331549,-1.2575057935449072,-1.2802131267034333,-1.2925196429841588,-1.3173225015741385,-1.3225086386620815,-1.325574371359827,-1.3403200619274953,-1.3551240792965897,-1.3584116944720135,-1.3626247346542408,-1.3791990912607757,-1.3852810178718702,-1.3913709254108113,-1.3963397645590812,-1.4009739154630712,-1.4036871946205958,-1.4038264456511111,-1.4040460868612907,-1.3995731398143807,-1.3956023697476807,-1.393597999677442,-1.3865004781866102,-1.372921154274093,-1.369265375178026,-1.363898573845928,-1.3403200619274953,-1.3322349629466865,-1.3301846686721737,-1.3240390338621886,-1.29059654447276,-1.2741538258299157,-1.2428864901860681,-1.220327108530622,-1.201704723214715,-1.1921829618141624,-1.1731839309923657,-1.1332082418582594,-1.1104608059239327,-1.070697516105363,-1.0102424066480893,-1.0078210498813203,-1.007174482600849,-1.0060478000572362,-0.9447488552667078,-0.9081779223952342,-0.8850855823216337,-0.8389116691221066,-0.829197061444928,-0.8242093735057789,-0.8154808096420858,-0.7864112795918032,-0.7696779466945465,-0.7575371683328882,-0.7573781173429737,-0.7543110048164596,-0.7743831205183227,-0.7915758352932745,-0.8001458184717478,-0.8171452656801907,-0.8389116691221066,-0.9035773393829496,-0.982724335868518,-0.9986782480264269,-1.0060478000572362,-1.0179449732357915,-1.1357937083103522,-1.1731839309923657,-1.2186624101768775,-1.2946848428684978,-1.3403200619274953,-1.375742268829529,-1.489896132197714,-1.5074561928626249,-1.5187279811191887,-1.5709585320166433,-1.6547155346194282,-1.6745923237977545,-1.7043827058882055,-1.7936853395250214,-1.841728454732884,-1.9060698897075987,-1.9412722968087763,-2.0088645856680136,-2.0774221262954997,-2.109946507604362,-2.176000716603143,-2.226777305046773,-2.3167770276080226,-2.343136847538273,-2.357682579403236,-2.3888212248895746,-2.468270452411942,-2.5102729784734024,-2.5680250930473214,-2.641854331133959,-2.660363933032312,-2.677409109408531,-2.7449048778556255,-2.8130031716226886,-2.827642812741579,-2.8445452403436606,-2.9136990496284225,-2.9913771900695316,-3.001618348611067,-2.661510081517183,-2.6166233143925597,-2.5349305529171833,-2.5102729784734024,-2.4727537449014463,-2.397740720459172,-2.343136847538273,-2.270488608654298,-2.2509228311374345,-2.176000716603143,-2.0942677024941796,-2.0905161838492186,-2.0088645856680136,-1.9304823971911604,-1.919073379152116,-1.841728454732884,-1.7719642026960125,-1.740087689781869,-1.6745923237977545,-1.603838867125397,-1.5756526314446333,-1.5074561928626249,-1.4399413863233397,-1.3798784851541734,-1.3403200619274953,-1.3262315845714872,-1.3142528965535707,-1.3142528965535707,-1.2947127546583221,-1.2899844980018917,-1.2979890154799136,-1.317220930234802,-1.3256484895108835,-1.3296857563781614,-1.3403200619274953,-1.3730435123413285,-1.3842250425056735,-1.3987115303771303,-1.4128747085264948,-1.4412694013768332,-1.4557054710418411,-1.4803240786345313,-1.4907621823839285,-1.4942823734689235,-1.5074561928626249,-1.5280270197680776,-1.5330592150974827,-1.537241558315503,-1.5564039733442678,-1.567013996120303,-1.5750253475713691,-1.5797003107628962,-1.5920613378544584,-1.5977203039470593,-1.5987845103839602,-1.607124316103481,-1.60773598594748,-1.6080446012710148,-1.6104599085395908,-1.6073309960770592,-1.6052697835560705,-1.6005929290769005,-1.589731314384876,-1.5893380145855591,-1.5771397066852568,-1.5648963035675143,-1.5507406227721905,-1.540970446737898,-1.5335503909632786,-1.5074561928626249,-1.497675020718881,-1.4952526542151157,-1.4905677717986254,-1.4603253590538232,-1.4465026931286946,-1.4207454091453382,-1.417783976760564,-1.3926681659173497,-1.3791422246213072,-1.3403200619274953,-1.3362403815716597,-1.3349407858332443,-1.3323275815879603,-1.2952672693142917,-1.2806327000545537,-1.254287691197523,-1.2519164850481426,-1.227413369288917,-1.2148732556447346,-1.1788404334218416,-1.1772806068682948,-1.176449744417833,-1.1731839309923657,-1.1445527817056558,-1.1378556720460482,-1.1297051157897604,-1.1181636884567867,-1.108911951727789,-1.1002431064888052,-1.0984709599265692,-1.0916749402326857,-1.0878758863475113,-1.0877064551896503,-1.0869365078592361,-1.09232714416724,-1.0927144838418066,-1.0946037452792243,-1.1039225096120262,-1.1083707690389115,-1.113996422106279,-1.1235716653379324,-1.139813384759659,-1.1444684592497065,-1.150098384715604,-1.1731839309923657,-1.1861872608169062,-1.190834434607285,-1.2093631713251378,-1.2386994895858523,-1.2680690824551784,-1.2958556259620186,-1.3403200619274953,-1.3712667726818442,-1.4178195198522063,-1.476746236055683,-1.5074561928626249,-1.552076373908811,-1.6338085678576872,-1.6745923237977545,-1.697166802029498,-1.73997126537106,-1.8067519289957348,-1.841728454732884,-1.9003631486314525,-1.9626396234350034,-1.9855339356440966,-2.0088645856680136,-2.056848303390132,-2.0888059761115176,-2.120028461095062,-2.176000716603143,-2.1792498458674494,-2.180643707293207,-2.1829241428081243,-2.222556971487104,-2.2387914753471856,-2.2607757227143868,-2.2616546579222314,-2.2850587419712527,-2.2960464250030546,-2.3182499909263496,-2.324490506413727,-2.3279554305704133,-2.343136847538273,-2.357264875008849,-2.360063939364365,-2.3644642273995995,-2.3862919176000386,-2.3954681642830575,-2.4117770802949723,-2.417440772945307,-2.434836402487205,-2.4507240810548225,-2.468204528530487,-2.478769003271383,-2.4857423034623682,-2.5102729784734024,-2.522215604521935,-2.5254301661928045,-2.5316219864070506,-2.557837769009396,-2.570532928826089,-2.5942038614657186,-2.5944923750446574,-2.6149943946100933,-2.6282255842871827,-2.6535340027617247,-2.658684308818799,-2.662464372405971,-2.677409109408531,-2.695712757118022,-2.7001915184362826,-2.709242984366993,-2.7289019163757233,-2.7409804302315095,-2.764919192222451,-2.768308368516581,-2.7868913921575382,-2.801388093108887,-2.8422684751515757,-2.842896483982713,-2.8433547193891098,-2.8445452403436606,-2.8871944031778307,-2.9023266787413124,-2.935103380710946,-2.945564789909894,-2.9712737634212862,-2.9838173023820733,-3.01168137127879,-3.034834151517961,-3.044720315499643,-3.0731980043391642,-3.086247030625371,-3.1175800089294565,-3.136302912872467,-3.17881750221392,-3.1873885837082385,-3.1911537255327564,-3.200883029171896,-3.23495504043101,-3.2564624383582554,-3.280520444074032,-3.301609847164708,-3.3143835267259565,-3.3208285498501997,-3.3459536331490494,-3.3545194735919264,-3.35658643272997,-3.358549591329643,-3.370867109978038,-3.373234463502297,-3.3718394176164104,-3.3652680005454094,-3.3652619074453405,-3.362298229329018,-3.3459536331490494,-3.3328951237232705,-3.329312150781023,-3.3151053948019715,-3.2837167663530797,-3.2573359044165153,-3.230211039955525,-3.17881750221392,-3.1685392602930866,-3.155479120767093,-3.070126681577994,-3.01168137127879,-2.943011132695621,-2.9176452273717324,-2.8445452403436606,-2.783378457786081,-2.7165505521252182,-2.677409109408531,-2.661510081517183,-2.661510081517183,-2.677409109408531,-2.7165505521252182,-2.783378457786081,-2.8445452403436606,-2.9176452273717324,-2.943011132695621,-3.01168137127879,-3.070126681577994,-3.155479120767093,-3.1685392602930866,-3.17881750221392,-3.230211039955525,-3.2573359044165153,-3.2837167663530797,-3.3151053948019715,-3.329312150781023,-3.3328951237232705,-3.3459536331490494,-3.362298229329018,-3.3652619074453405,-3.3652680005454094,-3.3718394176164104,-3.373234463502297,-3.370867109978038,-3.358549591329643,-3.35658643272997,-3.3545194735919264,-3.3459536331490494,-3.3208285498501997,-3.3143835267259565,-3.301609847164708,-3.280520444074032,-3.2564624383582554,-3.23495504043101,-3.200883029171896,-3.1911537255327564,-3.1873885837082385,-3.17881750221392,-3.136302912872467,-3.1175800089294565,-3.086247030625371,-3.0731980043391642,-3.044720315499643,-3.034834151517961,-3.01168137127879,-2.9838173023820733,-2.9712737634212862,-2.945564789909894,-2.935103380710946,-2.9023266787413124,-2.8871944031778307,-2.8445452403436606,-2.8433547193891098,-2.842896483982713,-2.8422684751515757,-2.801388093108887,-2.7868913921575382,-2.768308368516581,-2.764919192222451,-2.7409804302315095,-2.7289019163757233,-2.709242984366993,-2.7001915184362826,-2.695712757118022,-2.677409109408531,-2.662464372405971,-2.658684308818799,-2.6535340027617247,-2.6282255842871827,-2.6149943946100933,-2.5944923750446574,-2.5942038614657186,-2.570532928826089,-2.557837769009396,-2.5316219864070506,-2.5254301661928045,-2.522215604521935,-2.5102729784734024,-2.4857423034623682,-2.478769003271383,-2.468204528530487,-2.4507240810548225,-2.434836402487205,-2.417440772945307,-2.4117770802949723,-2.3954681642830575,-2.3862919176000386,-2.3644642273995995,-2.360063939364365,-2.357264875008849,-2.343136847538273,-2.3279554305704133,-2.324490506413727,-2.3182499909263496,-2.2960464250030546,-2.2850587419712527,-2.2616546579222314,-2.2607757227143868,-2.2387914753471856,-2.222556971487104,-2.1829241428081243,-2.180643707293207,-2.1792498458674494,-2.176000716603143,-2.120028461095062,-2.0888059761115176,-2.056848303390132,-2.0088645856680136,-1.9855339356440966,-1.9626396234350034,-1.9003631486314525,-1.841728454732884,-1.8067519289957348,-1.73997126537106,-1.697166802029498,-1.6745923237977545,-1.6338085678576872,-1.552076373908811,-1.5074561928626249,-1.476746236055683,-1.4178195198522063,-1.3712667726818442,-1.3403200619274953,-1.2958556259620186,-1.2680690824551784,-1.2386994895858523,-1.2093631713251378,-1.190834434607285,-1.1861872608169062,-1.1731839309923657,-1.150098384715604,-1.1444684592497065,-1.139813384759659,-1.1235716653379324,-1.113996422106279,-1.1083707690389115,-1.1039225096120262,-1.0946037452792243,-1.0927144838418066,-1.09232714416724,-1.0869365078592361,-1.0877064551896503,-1.0878758863475113,-1.0916749402326857,-1.0984709599265692,-1.1002431064888052,-1.108911951727789,-1.1181636884567867,-1.1297051157897604,-1.1378556720460482,-1.1445527817056558,-1.1731839309923657,-1.176449744417833,-1.1772806068682948,-1.1788404334218416,-1.2148732556447346,-1.227413369288917,-1.2519164850481426,-1.254287691197523,-1.2806327000545537,-1.2952672693142917,-1.3323275815879603,-1.3349407858332443,-1.3362403815716597,-1.3403200619274953,-1.3791422246213072,-1.3926681659173497,-1.417783976760564,-1.4207454091453382,-1.4465026931286946,-1.4603253590538232,-1.4905677717986254,-1.4952526542151157,-1.497675020718881,-1.5074561928626249,-1.5335503909632786,-1.540970446737898,-1.5507406227721905,-1.5648963035675143,-1.5771397066852568,-1.5893380145855591,-1.589731314384876,-1.6005929290769005,-1.6052697835560705,-1.6073309960770592,-1.6104599085395908,-1.6080446012710148,-1.60773598594748,-1.607124316103481,-1.5987845103839602,-1.5977203039470593,-1.5920613378544584,-1.5797003107628962,-1.5750253475713691,-1.567013996120303,-1.5564039733442678,-1.537241558315503,-1.5330592150974827,-1.5280270197680776,-1.5074561928626249,-1.4942823734689235,-1.4907621823839285,-1.4803240786345313,-1.4557054710418411,-1.4412694013768332,-1.4128747085264948,-1.3987115303771303,-1.3842250425056735,-1.3730435123413285,-1.3403200619274953,-1.3296857563781614,-1.3256484895108835,-1.317220930234802,-1.2979890154799136,-1.2899844980018917,-1.2947127546583221,-1.3142528965535707,-1.3142528965535707,-1.3262315845714872,-1.3403200619274953,-1.3798784851541734,-1.4399413863233397,-1.5074561928626249,-1.5756526314446333,-1.603838867125397,-1.6745923237977545,-1.740087689781869,-1.7719642026960125,-1.841728454732884,-1.919073379152116,-1.9304823971911604,-2.0088645856680136,-2.0905161838492186,-2.0942677024941796,-2.176000716603143,-2.2509228311374345,-2.270488608654298,-2.343136847538273,-2.397740720459172,-2.4727537449014463,-2.5102729784734024,-2.5349305529171833,-2.6166233143925597,-2.661510081517183,-2.3311137880403994,-2.2302022125036887,-2.1827001189899455,-2.176000716603143,-2.1619695463369997,-2.0575609338990892,-2.0088645856680136,-1.9534961700702311,-1.8881350919365243,-1.872627628317744,-1.841728454732884,-1.8253690427283829,-1.8207792452864862,-1.8207792452864862,-1.8074819929006622,-1.806697805782763,-1.806697805782763,-1.8058880960282337,-1.8103313894161266,-1.8119428675480744,-1.8180952741758736,-1.821447867160174,-1.822816858182681,-1.832908189867151,-1.8340030290501197,-1.8343957289941377,-1.841728454732884,-1.8431567427569844,-1.8432518296865714,-1.8432950213433843,-1.8437456012606148,-1.843751158413042,-1.8435683223287294,-1.841728454732884,-1.8314256982120902,-1.830647946605822,-1.8282279456424622,-1.8079656012714018,-1.8022585956435764,-1.7869516235575649,-1.7749329788675006,-1.7573139332582075,-1.7349945720541902,-1.7078408407097312,-1.6963335123980512,-1.689670527700751,-1.6745923237977545,-1.6448828446833987,-1.6348784755790913,-1.6102514455921337,-1.5999884539449098,-1.5728291302430488,-1.5539439792874479,-1.5074561928626249,-1.5058834576055666,-1.5053504949426681,-1.5041694495347855,-1.4638712820574638,-1.449266869500959,-1.4210063339563046,-1.4178994238251361,-1.3938438973402247,-1.3809256780470287,-1.3408353549638008,-1.340700945211581,-1.340622324997626,-1.3403200619274953,-1.3106559366017727,-1.3041860045868852,-1.2958559299933539,-1.2862326688657841,-1.2786435444549333,-1.27149080030732,-1.2701645965166204,-1.2668595945890715,-1.269710076632463,-1.2711307626580135,-1.2711307626580135,-1.2800722714846602,-1.288200650248621,-1.2928375383283859,-1.3020930866793305,-1.331063468724988,-1.3327724386972948,-1.3346501347698245,-1.3403200619274953,-1.3943856545675803,-1.4267638289093414,-1.4633501216568225,-1.5074561928626249,-1.5644360371129125,-1.6331415391327928,-1.6745923237977545,-1.7297658956265858,-1.7675854874950199,-1.841728454732884,-1.8676487897820442,-1.8901308015354727,-1.9406364452858007,-2.0088645856680136,-2.0110229943569466,-2.012040162229402,-2.013961690521713,-2.0582369985685602,-2.0776391863904156,-2.1019401009393075,-2.111226319308046,-2.13320714789222,-2.1433333221123956,-2.176000716603143,-2.1815897629310843,-2.1829193819698194,-2.1851502833252825,-2.214063015976853,-2.2232395165572054,-2.240552389122808,-2.2481430447985877,-2.2661315222481937,-2.2833930299463567,-2.302753673900839,-2.3128820032851136,-2.3197838498615564,-2.343136847538273,-2.3562590337074143,-2.3595932371592436,-2.3661365529354557,-2.3893505569634605,-2.4003061889080435,-2.421144468684851,-2.422990037601612,-2.4388789309067764,-2.4525769760876326,-2.468686664424564,-2.47470094164306,-2.4807827304429253,-2.5088828169261896,-2.5090015870456597,-2.509204064349613,-2.5102729784734024,-2.5326729916593624,-2.536308300114296,-2.5457191119957034,-2.559596310924105,-2.5679063438305585,-2.593940696054494,-2.5940310388988745,-2.611563426822342,-2.629825469059446,-2.6746490212329492,-2.67543487981112,-2.676060066301254,-2.677409109408531,-2.7216998401444377,-2.7382420917529897,-2.7717801920327476,-2.790252833464651,-2.8118531441822103,-2.8219310397009014,-2.8445452403436606,-2.8706953608531443,-2.880807150319349,-2.9050356881242916,-2.916244561293471,-2.939241764554154,-2.9565003001013386,-2.982338126707143,-2.988046735892369,-2.991488006677983,-3.01168137127879,-3.016381596128827,-3.017174120098966,-3.0181049024315714,-3.01531845848728,-3.01531845848728,-3.014678062894374,-3.01168137127879,-2.9696725666204937,-2.953348678367907,-2.899696840232342,-2.8445452403436606,-2.8039972675249283,-2.692479416904664,-2.6805294294494777,-2.677409109408531,-2.673474027243823,-2.5272177597327827,-2.5102729784734024,-2.492858702692444,-2.3575869051281684,-2.343136847538273,-2.3311137880403994,-2.3311137880403994,-2.343136847538273,-2.3575869051281684,-2.492858702692444,-2.5102729784734024,-2.5272177597327827,-2.673474027243823,-2.677409109408531,-2.6805294294494777,-2.692479416904664,-2.8039972675249283,-2.8445452403436606,-2.899696840232342,-2.953348678367907,-2.9696725666204937,-3.01168137127879,-3.014678062894374,-3.01531845848728,-3.01531845848728,-3.0181049024315714,-3.017174120098966,-3.016381596128827,-3.01168137127879,-2.991488006677983,-2.988046735892369,-2.982338126707143,-2.9565003001013386,-2.939241764554154,-2.916244561293471,-2.9050356881242916,-2.880807150319349,-2.8706953608531443,-2.8445452403436606,-2.8219310397009014,-2.8118531441822103,-2.790252833464651,-2.7717801920327476,-2.7382420917529897,-2.7216998401444377,-2.677409109408531,-2.676060066301254,-2.67543487981112,-2.6746490212329492,-2.629825469059446,-2.611563426822342,-2.5940310388988745,-2.593940696054494,-2.5679063438305585,-2.559596310924105,-2.5457191119957034,-2.536308300114296,-2.5326729916593624,-2.5102729784734024,-2.509204064349613,-2.5090015870456597,-2.5088828169261896,-2.4807827304429253,-2.47470094164306,-2.468686664424564,-2.4525769760876326,-2.4388789309067764,-2.422990037601612,-2.421144468684851,-2.4003061889080435,-2.3893505569634605,-2.3661365529354557,-2.3595932371592436,-2.3562590337074143,-2.343136847538273,-2.3197838498615564,-2.3128820032851136,-2.302753673900839,-2.2833930299463567,-2.2661315222481937,-2.2481430447985877,-2.240552389122808,-2.2232395165572054,-2.214063015976853,-2.1851502833252825,-2.1829193819698194,-2.1815897629310843,-2.176000716603143,-2.1433333221123956,-2.13320714789222,-2.111226319308046,-2.1019401009393075,-2.0776391863904156,-2.0582369985685602,-2.013961690521713,-2.012040162229402,-2.0110229943569466,-2.0088645856680136,-1.9406364452858007,-1.8901308015354727,-1.8676487897820442,-1.841728454732884,-1.7675854874950199,-1.7297658956265858,-1.6745923237977545,-1.6331415391327928,-1.5644360371129125,-1.5074561928626249,-1.4633501216568225,-1.4267638289093414,-1.3943856545675803,-1.3403200619274953,-1.3346501347698245,-1.3327724386972948,-1.331063468724988,-1.3020930866793305,-1.2928375383283859,-1.288200650248621,-1.2800722714846602,-1.2711307626580135,-1.2711307626580135,-1.269710076632463,-1.2668595945890715,-1.2701645965166204,-1.27149080030732,-1.2786435444549333,-1.2862326688657841,-1.2958559299933539,-1.3041860045868852,-1.3106559366017727,-1.3403200619274953,-1.340622324997626,-1.340700945211581,-1.3408353549638008,-1.3809256780470287,-1.3938438973402247,-1.4178994238251361,-1.4210063339563046,-1.449266869500959,-1.4638712820574638,-1.5041694495347855,-1.5053504949426681,-1.5058834576055666,-1.5074561928626249,-1.5539439792874479,-1.5728291302430488,-1.5999884539449098,-1.6102514455921337,-1.6348784755790913,-1.6448828446833987,-1.6745923237977545,-1.689670527700751,-1.6963335123980512,-1.7078408407097312,-1.7349945720541902,-1.7573139332582075,-1.7749329788675006,-1.7869516235575649,-1.8022585956435764,-1.8079656012714018,-1.8282279456424622,-1.830647946605822,-1.8314256982120902,-1.841728454732884,-1.8435683223287294,-1.843751158413042,-1.8437456012606148,-1.8432950213433843,-1.8432518296865714,-1.8431567427569844,-1.841728454732884,-1.8343957289941377,-1.8340030290501197,-1.832908189867151,-1.822816858182681,-1.821447867160174,-1.8180952741758736,-1.8119428675480744,-1.8103313894161266,-1.8058880960282337,-1.806697805782763,-1.806697805782763,-1.8074819929006622,-1.8207792452864862,-1.8207792452864862,-1.8253690427283829,-1.841728454732884,-1.872627628317744,-1.8881350919365243,-1.9534961700702311,-2.0088645856680136,-2.0575609338990892,-2.1619695463369997,-2.176000716603143,-2.1827001189899455,-2.2302022125036887,-2.3311137880403994,-1.9753146864519726,-1.955105661310557,-1.9039606384657297,-1.841728454732884,-1.8328071897040568,-1.828878785955255,-1.8148506723092552,-1.7800093335070502,-1.7526296802112213,-1.7256527375491562,-1.6745923237977545,-1.669519185929909,-1.6677267286400514,-1.6632936033924448,-1.6292006538396997,-1.6151889236816759,-1.5874717750730385,-1.5837062815549006,-1.5662644986433465,-1.5540190078801919,-1.527609754687008,-1.5255649609640658,-1.5246169960953786,-1.5074561928626249,-1.5055947475234976,-1.5054429688585609,-1.5054034501423308,-1.5074561928626249,-1.5185745604797383,-1.5197189527418367,-1.537164911936741,-1.572228645397856,-1.603488232250477,-1.6388351801623458,-1.6745923237977545,-1.720709808411831,-1.803107231116492,-1.8272329171232045,-1.841728454732884,-1.888117690208703,-1.910179596136036,-1.9422447698062282,-1.9736992160135944,-1.9885754569817022,-1.9951206532271932,-2.0088645856680136,-2.035986852774319,-2.043538638101303,-2.060865599665102,-2.073562596994239,-2.0898496235205437,-2.110817734066119,-2.1282553261664274,-2.1374874801297947,-2.1458541234647504,-2.176000716603143,-2.180556377767301,-2.1814280296964323,-2.183167538083101,-2.198970624683265,-2.2016202380607295,-2.2073866809250307,-2.2078861165363106,-2.2080394380592443,-2.2083189228845574,-2.1943439813705172,-2.1943439813705172,-2.191827836863652,-2.176000716603143,-2.0935807110081477,-2.0918546748960054,-2.0088645856680136,-1.9753146864519726,-2.3282536108450245,-2.3141758607777296,-2.3013016690405887,-2.2807115534274063,-2.2602689201868396,-2.2730977533519034,-2.279165228394425,-2.2857411152800244,-2.306758113139751,-2.343136847538273,-2.3888401459524617,-2.4277780983570425,-2.461038014976637,-2.5102729784734024,-2.519046766134542,-2.5211706621615377,-2.5211118636562677,-2.5102729784734024,-2.4851496196600396,-2.466179614913747,-2.3676540239121024,-2.343136847538273,-2.3282536108450245,-1.9753146864519726,-2.0088645856680136,-2.0918546748960054,-2.0935807110081477,-2.176000716603143,-2.191827836863652,-2.1943439813705172,-2.1943439813705172,-2.2083189228845574,-2.2080394380592443,-2.2078861165363106,-2.2073866809250307,-2.2016202380607295,-2.198970624683265,-2.183167538083101,-2.1814280296964323,-2.180556377767301,-2.176000716603143,-2.1458541234647504,-2.1374874801297947,-2.1282553261664274,-2.110817734066119,-2.0898496235205437,-2.073562596994239,-2.060865599665102,-2.043538638101303,-2.035986852774319,-2.0088645856680136,-1.9951206532271932,-1.9885754569817022,-1.9736992160135944,-1.9422447698062282,-1.910179596136036,-1.888117690208703,-1.841728454732884,-1.8272329171232045,-1.803107231116492,-1.720709808411831,-1.6745923237977545,-1.6388351801623458,-1.603488232250477,-1.572228645397856,-1.537164911936741,-1.5197189527418367,-1.5185745604797383,-1.5074561928626249,-1.5054034501423308,-1.5054429688585609,-1.5055947475234976,-1.5074561928626249,-1.5246169960953786,-1.5255649609640658,-1.527609754687008,-1.5540190078801919,-1.5662644986433465,-1.5837062815549006,-1.5874717750730385,-1.6151889236816759,-1.6292006538396997,-1.6632936033924448,-1.6677267286400514,-1.669519185929909,-1.6745923237977545,-1.7256527375491562,-1.7526296802112213,-1.7800093335070502,-1.8148506723092552,-1.828878785955255,-1.8328071897040568,-1.841728454732884,-1.9039606384657297,-1.955105661310557,-1.9753146864519726,-2.3282536108450245,-2.343136847538273,-2.3676540239121024,-2.466179614913747,-2.4851496196600396,-2.5102729784734024,-2.5211118636562677,-2.5211706621615377,-2.519046766134542,-2.5102729784734024,-2.461038014976637,-2.4277780983570425,-2.3888401459524617,-2.343136847538273,-2.306758113139751,-2.2857411152800244,-2.279165228394425,-2.2730977533519034,-2.2602689201868396,-2.2807115534274063,-2.3013016690405887,-2.3141758607777296,-2.3282536108450245],\n", "\"y\":[2.027035945230549,2.019870196905597,2.000616363279159,1.984239554718164,1.9724217185780737,1.9622058847368895,1.9409337637259862,1.9148459170516738,1.9088335390475213,1.904541572568181,1.8821115895449592,1.8746433281854835,1.8468772603994732,1.8408768579032366,1.8320063610463042,1.806872998625455,1.7892129482307655,1.7730023813580904,1.749920500683801,1.7399963597917147,1.7315486360620578,1.7097995484762927,1.6864709805589908,1.6812991396050783,1.67388432389335,1.6592960506626073,1.6507937751516581,1.6451838714057563,1.6451341891881586,1.6384509719263822,1.639190567696795,1.6401820643606917,1.6423959062838116,1.6475954787365343,1.6488495883137682,1.6550920989455018,1.658951928057101,1.668642671058985,1.6702101978542356,1.6709269037258214,1.67388432389335,1.6830190556561502,1.6855197066391985,1.688023229792742,1.6930249602146321,1.6969510297730692,1.699479519298539,1.700139201681679,1.7031180748278216,1.7035890459960528,1.7036189458930644,1.7041686433878982,1.7024132275555606,1.7023734617912791,1.7007530769620405,1.6978316218285365,1.69647415958068,1.6938803491124514,1.691126087320963,1.6867191196539912,1.6847652006868272,1.6831402448577442,1.674803024910951,1.674648855735469,1.6745371633297856,1.67388432389335,1.6672785802031425,1.666341985546048,1.6653170083440636,1.6609367906976336,1.659367942697958,1.6579131992325578,1.6558237593984404,1.654226964033764,1.6531118877540254,1.6523737546615194,1.6513414845691483,1.6510264813201627,1.6509416761663789,1.6507776771793528,1.6513607793896559,1.651696102197413,1.6521510022826775,1.6531152696397027,1.6539004319272137,1.654766215370453,1.6557675722860288,1.6570214077446344,1.6579501481264098,1.6588166459303548,1.660496350001568,1.661314502164887,1.661999292799933,1.664071611252004,1.66471652645463,1.6651921358297392,1.6675237042277842,1.6679467197048434,1.6681871952295135,1.6702263235066153,1.6704247385717204,1.6704677234340655,1.6711153871222169,1.6711669327345882,1.6710390382759637,1.6691775829500428,1.6690027478194884,1.6682684636871357,1.6638581055576602,1.6628058241882928,1.659544369523307,1.6550418011850447,1.651576385057281,1.642947910815359,1.6409416009552769,1.634388333090024,1.6291316719452262,1.6162200117246415,1.6125759290510424,1.6111623819580632,1.6056104651161784,1.5941347208569945,1.583984521343106,1.5747297140684426,1.5585556995559338,1.5536537563427397,1.5507663781779732,1.5357925030330715,1.5312102976990176,1.5146265241799335,1.5093306380455318,1.500891387387226,1.4865407763663563,1.4769291311874908,1.4641776916072957,1.4432270752185183,1.4423112681252364,1.4417017565195516,1.4400801498669318,1.4233159849582893,1.4136705494785171,1.4069756292282158,1.400225834864678,1.3959230900228516,1.3947443504315449,1.3889556852143508,1.388521358488402,1.388521358488402,1.3887683445516736,1.3887493982804187,1.3889134989798246,1.3921124557582165,1.3925511174066707,1.392885995068267,1.3951816454921766,1.3957238949973427,1.3954987068701779,1.3946223172698908,1.394471327921559,1.3932674045754525,1.3855627630498106,1.385462952682993,1.385444942865536,1.38535773504652,1.3693651014826238,1.3630870336383611,1.3491518630316954,1.327898450881102,1.3259683036608503,1.3241649245889433,1.294329716786692,1.2702341387123943,1.2604906528134738,1.2387420056076164,1.2201289315874457,1.2125698265436866,1.2000610227012163,1.1710820540667375,1.154905514374979,1.1390290598381543,1.1086216486990854,1.0972412022062703,1.0897598758091323,1.071149919992369,1.0497374499234664,1.0395768900375626,1.0162642667276907,0.9882062098960751,0.9850993630997951,0.9819125778688549,0.9600554236827352,0.943779128195525,0.9361669432409045,0.9242482657001472,0.914382026844542,0.908728447951018,0.8934928538355558,0.8884725204399682,0.8759563873222533,0.8724190894215398,0.8665839535314395,0.8504408853709564,0.8404411108825864,0.8274739850218578,0.8089196413627309,0.8035711002298735,0.7996047903131447,0.7778602593245005,0.7579318615285495,0.7525143145017408,0.7519256653817021,0.7512553291940232,0.72484157050109,0.7014425040540959,0.6977432551368681,0.6935910170253154,0.6711553999267705,0.652100224877616,0.6449692584319293,0.6359267048566073,0.6203923091407177,0.6092309456928588,0.5974666182665871,0.5782623926878996,0.5757289837128403,0.5743268656119933,0.5713532078899619,0.5571442460925917,0.547019498889854,0.5400755931957226,0.5297102192507186,0.5259970047774027,0.5247820333697613,0.5205980805191914,0.5119968173407456,0.5095688759729007,0.5067322949871933,0.5008494298290294,0.4960186918524956,0.49053542839121267,0.4899253358855442,0.48353376166248907,0.4797836162956992,0.47292309452699177,0.47032281384222596,0.4687721604275663,0.4629337683504837,0.45613418585581167,0.4541278454262856,0.4501963962900839,0.4419827954092539,0.4348054862060353,0.42749063965151457,0.4210023587912204,0.41525174263475106,0.41284152540707586,0.405269456181776,0.3983942722798335,0.39596131053645944,0.3924265286554336,0.3848620809263146,0.378539050531673,0.3729225050966192,0.3709184250454043,0.3652514891911949,0.3628438834797234,0.35774260589792783,0.35613158430171943,0.35546524985542227,0.3515801112497141,0.35134453023760015,0.3515380296645789,0.3514108056031042,0.3514108056031042,0.35214521776711294,0.3562256236668442,0.3570160076033284,0.36023127723317394,0.3651408063736965,0.368271132468855,0.37672907192621574,0.3769748376671993,0.3832742126642108,0.38754937250439214,0.3946161117839426,0.3965122820169076,0.3969746060231456,0.39939908297175286,0.39951405469408563,0.39784446132683593,0.3896401790213786,0.3859352713851587,0.3731039670395795,0.3663511037476175,0.35638569821853805,0.3526347842967321,0.34760514401306786,0.3281132947881571,0.3137211197872296,0.30220366559735634,0.28994083184436015,0.2736539221274126,0.25713495924762686,0.24279532638167645,0.232276519675652,0.2067374313663084,0.19229774094534324,0.17461220750694428,0.16879744217897485,0.15087260070168007,0.12303036814572499,0.11694789533823613,0.10953663270114289,0.06969862236698399,0.05928358316952842,0.04870807451495418,0.010644147642097312,0.001619271000820266,-0.005373867506942354,-0.05498316930009173,-0.056045041167887444,-0.05677741544471626,-0.0614738683038234,-0.10545966024021558,-0.11370935333659515,-0.1247365210848792,-0.15465761464503514,-0.1713736655053033,-0.1935108943307653,-0.20499043064351374,-0.22903797767401102,-0.2564890552677901,-0.2594875803976868,-0.28670228984271917,-0.30916968063268335,-0.32263240023409967,-0.3443666020114269,-0.3634644981585642,-0.3836427764103738,-0.40203091418013503,-0.41894999739707695,-0.44337190595848597,-0.45969522634884274,-0.47509517823737824,-0.5025712743694033,-0.5173595385175505,-0.5313950892480883,-0.5617896460750522,-0.5750238506862586,-0.5875012959933934,-0.6213290187846812,-0.6326881628549663,-0.6432760140143037,-0.6812511514381621,-0.6903524750236745,-0.6987509428893532,-0.7414633827695227,-0.7480167871923822,-0.7540271151230638,-0.8018634952101245,-0.8056810993610903,-0.8091714012516582,-0.862456333997438,-0.863345411529798,-0.8641563599520286,-0.879310824976117,-0.9183399032633282,-0.9210097236985058,-0.9241454255584518,-0.9719044996410386,-0.9786740358672139,-0.9868267791590006,-1.025025939676075,-1.0363383480359216,-1.0502208729903266,-1.0778219881971896,-1.0940026602046298,-1.113876300189661,-1.130593126152808,-1.1516669723733375,-1.1768165906318022,-1.183878960272025,-1.2093312845420456,-1.2375365137693566,-1.2387993743443213,-1.2669955967107533,-1.2934838265443944,-1.2985418535322941,-1.3246599088794613,-1.3472833775676663,-1.3619692379004245,-1.3823242210481692,-1.3974528407336126,-1.4337779719473986,-1.4399885332168771,-1.4438451678230482,-1.4553447483129929,-1.485257963827563,-1.497652845385585,-1.5228697686174957,-1.5405710734055247,-1.555317157554293,-1.5594741241254446,-1.5657183846613707,-1.587176293603742,-1.612981469723001,-1.6133405107625232,-1.6136165995603045,-1.6136797597846908,-1.6231529309592876,-1.6252120590202028,-1.622797434346386,-1.612981469723001,-1.6117017130618743,-1.6114559703070062,-1.6105693235717313,-1.5950484383714245,-1.5875901593037713,-1.5769780091913037,-1.563202099121081,-1.5591552971237521,-1.5578590787418232,-1.555317157554293,-1.540670613315951,-1.5346262399806334,-1.524280912286509,-1.5214801519746155,-1.5121039297606924,-1.5081235981797874,-1.497652845385585,-1.492889025773692,-1.4913644189245054,-1.4877909227567598,-1.4781798155825323,-1.471573334596633,-1.462124625248745,-1.4521510689081338,-1.4473888311606813,-1.444847285637559,-1.4399885332168771,-1.4255929013426278,-1.4184766589478794,-1.4038756948427629,-1.3823242210481692,-1.3805633937650843,-1.3793433777034612,-1.3533046745693633,-1.3495600193687811,-1.3273446203281332,-1.325937525863894,-1.3246599088794613,-1.3133072709079476,-1.2940923003525937,-1.2669955967107533,-1.2620655021594689,-1.2549904657248891,-1.22689573025874,-1.2093312845420456,-1.1900882266851167,-1.1525928434069868,-1.1519760600582756,-1.1516669723733375,-1.150880750263187,-1.1129951641864895,-1.0940026602046298,-1.0730692649692375,-1.0462314597761901,-1.0363383480359216,-1.0327080396866934,-1.024148822827013,-0.9927290011872238,-0.9786740358672139,-0.9518869126838823,-0.9451455537389726,-0.9210097236985058,-0.9117212445144087,-0.8886238031012228,-0.87112045887238,-0.863345411529798,-0.8456007209130978,-0.8301590038003597,-0.8056810993610903,-0.7889841117082375,-0.7517408149793967,-0.7480167871923822,-0.746351639933291,-0.7410908424189921,-0.7040125832581601,-0.6903524750236745,-0.6647650916389365,-0.6598645679772308,-0.6326881628549663,-0.6151280256705558,-0.5856827212602256,-0.5750238506862586,-0.568626245061072,-0.5372046359379503,-0.52136751163086,-0.5173595385175505,-0.5111175036967492,-0.47428375823366364,-0.45969522634884274,-0.43761084104234493,-0.4265065563731434,-0.40203091418013503,-0.37870329631136856,-0.36499717232457085,-0.3443666020114269,-0.331158629994992,-0.2913143892867609,-0.28670228984271917,-0.28389693157376517,-0.2723501678467102,-0.2388505138425301,-0.22903797767401102,-0.21155846295215897,-0.19437530512096535,-0.1713736655053033,-0.15033453742281155,-0.12818933087289164,-0.11370935333659515,-0.10648558366257443,-0.08338043504149084,-0.0633744105155194,-0.056045041167887444,-0.041150196883433576,-0.020912894302295815,0.001619271000820266,0.02143467383068165,0.048918157745081015,0.05928358316952842,0.06394269737140545,0.07674195726114474,0.10447794059835003,0.11694789533823613,0.14405699757148138,0.1504424476684041,0.17461220750694428,0.1828059597653917,0.19878227047804442,0.21862833055518704,0.232276519675652,0.252138203530921,0.2788494704700457,0.28421102493962014,0.28994083184436015,0.31159814091333793,0.33101695636715567,0.3373299143071331,0.34760514401306786,0.35957870178811824,0.36724897208749585,0.3798446938341904,0.3865355423122576,0.3948414469161792,0.39794122810378196,0.405269456181776,0.4165169095139185,0.42232953061986933,0.43831400801037423,0.453908851845068,0.4593016618391945,0.4609666169311577,0.4629337683504837,0.48263432703470865,0.4927115259264778,0.5205980805191914,0.525488245911478,0.5361900554058407,0.5668286707875034,0.5782623926878996,0.5967570769663175,0.6140436088608792,0.6359267048566073,0.6630216555882549,0.666299543478369,0.6935910170253154,0.72125418346935,0.7237041562741333,0.7512553291940232,0.7744663972145411,0.7873832099808236,0.8089196413627309,0.824813665716515,0.8572156552900112,0.8665839535314395,0.8727056154632815,0.8956443678766717,0.9180537822034416,0.9242482657001472,0.9371190923613848,0.9608721248994105,0.9819125778688549,1.0022485180710246,1.0328703005734536,1.0395768900375626,1.0422654866464929,1.0477760828408074,1.0814970549087009,1.0972412022062703,1.1200080041362797,1.1451967929187794,1.154905514374979,1.1581798358351967,1.1645115107138824,1.1988972940200555,1.2125698265436866,1.2404863903622432,1.2434451149724821,1.2702341387123943,1.2823980216981172,1.3158304020570104,1.3255478325186032,1.327898450881102,1.3316470670704006,1.372078023089546,1.3855627630498106,1.4074376993830335,1.418561595395492,1.4432270752185183,1.4645586267132455,1.4847454740451815,1.500891387387226,1.5102083128481785,1.5439627724657137,1.556083524938249,1.5585556995559338,1.5625210279282764,1.6033547848635261,1.6162200117246415,1.6377387980234643,1.6496970726544506,1.67388432389335,1.69570333369933,1.7153738574686712,1.7315486360620578,1.7412802058142973,1.773954434674772,1.7858359037959173,1.7892129482307655,1.7967385747164601,1.829183273705803,1.8468772603994732,1.8700241492601068,1.8921992083233863,1.904541572568181,1.9095190690822164,1.9180516966051795,1.9435977970556233,1.9622058847368895,1.974887318115067,1.9874312563579868,2.0006768961121106,2.019870196905597,2.023786889376567,2.026062016383379,2.0295843174264045,2.041625288992021,2.0516253443308146,2.056981892219117,2.0628188949953956,2.0676701555309065,2.0688730050814974,2.0753788058238114,2.0757416564612456,2.0756713421437314,2.0750212314486594,2.0749905695224586,2.0740174702307566,2.065161110433196,2.0625378615458687,2.047528966847097,2.044744555345613,2.033000779643252,2.027035945230549,1.2958241549449698,1.305928359136034,1.317614918433145,1.3227631687552566,1.3229128298282071,1.3243888131009176,1.3246185513127613,1.3239548072877647,1.3162505567680083,1.3141176264960737,1.3123795142359023,1.3092364078073415,1.3067386027074606,1.3100075979232266,1.3148998719701441,1.3178334753183774,1.3219069546497404,1.327898450881102,1.3429131425688072,1.3510092778646672,1.3672732137452441,1.3855627630498106,1.3935979180227522,1.3995914885518919,1.4205068661157632,1.4432270752185183,1.4477862900177674,1.451430409432375,1.4735386810494542,1.4860121233109012,1.4985382691087836,1.4995541181459298,1.500891387387226,1.523294213162084,1.538898282225412,1.5457808251141691,1.5585556995559338,1.5659935737638695,1.5700199848099774,1.5763843462425542,1.5830690069169084,1.5937633883181932,1.598301831979319,1.6057059341860955,1.6090712880854325,1.6100438726090585,1.6162200117246415,1.6181584290400344,1.6185221777446412,1.618703439157993,1.6233441634811725,1.6240321258599946,1.6242735542996658,1.6255175784612121,1.6258044918504777,1.6259542078241567,1.6260515745939217,1.6260767006797683,1.626409898120539,1.6271163414398164,1.6273267853984028,1.6283135404139268,1.630808333456034,1.6319830252493293,1.634908088508062,1.6379398912601215,1.6417558991776224,1.6481046306519302,1.6500993097787142,1.6569129907926397,1.661174284878499,1.67388432389335,1.675846198752685,1.6766034893014718,1.6782488933936297,1.69346688981163,1.7023053349818151,1.7107705100813022,1.7218448294286177,1.7265702045325813,1.7280216835996876,1.7315486360620578,1.7458967400145062,1.7524910380773648,1.7620056116964258,1.7637531584532922,1.7749351981458408,1.7783552202274158,1.7892129482307655,1.792567286224974,1.7938200186713442,1.7952712763537524,1.806390811460513,1.8119388881116678,1.8172273158879713,1.8175643656800742,1.8249233492818244,1.8275042154375378,1.830411842856313,1.8334894017777672,1.8344639963908382,1.83726183296015,1.838338142654893,1.8385930087797813,1.8398974584886267,1.8402023965862422,1.840137982464214,1.8398953879123243,1.8398568434799247,1.8395359560385685,1.8382975850481107,1.83804305766763,1.8374536268501784,1.8358075528608864,1.835317343508843,1.8343962567905066,1.8327119422634275,1.8319427482959472,1.8305930904879983,1.829104924971101,1.8279846101137767,1.8261576020354178,1.8251159510103334,1.8236230197027088,1.8215652214628206,1.8211410601228661,1.8194910932515556,1.817978700951366,1.8179713310025236,1.8167642701010789,1.816768301869606,1.8167722980902723,1.8168154942265118,1.8184367497551048,1.818484100610457,1.820551830599832,1.8233071371473657,1.8247002326256294,1.827901228736629,1.8305989872400903,1.8355866250830375,1.8378460403610304,1.8393073430391662,1.8468772603994732,1.8490850741812461,1.8496471317737346,1.850345729566191,1.8605442467561102,1.8639833517995181,1.867557512893224,1.8704735356203055,1.87561309213574,1.878787837000432,1.8796535266900185,1.8835845254113575,1.8847617800050496,1.8859075308221285,1.8873506044451802,1.8870445041801314,1.8867942618840519,1.8865961735242114,1.8842727161794826,1.8829607585032124,1.8811704482841836,1.8754944614811087,1.8753880955543631,1.871248593220487,1.8664263971651667,1.860347125166958,1.8579648789464307,1.8559317392524064,1.8468772603994732,1.8455962954025327,1.8453620602596845,1.8451091489347244,1.8417885426132696,1.8414559611217522,1.8422523431767233,1.8468772603994732,1.8520138725835724,1.8532676644144837,1.8672308953480825,1.8741912097332105,1.8932087999510716,1.8992364243167752,1.904541572568181,1.9315635226464312,1.9469602044439172,1.9622058847368895,1.9646523084121976,1.9684186537335502,2.0020091036293812,2.019870196905597,2.039635470454249,2.0766982978718365,2.077253078685976,2.077534509074305,2.0784604668247684,2.116799310597974,2.1351988212430126,2.155862280590896,2.188173465411007,2.1928631334117212,2.1947967435756417,2.1991229122932423,2.2329971346851196,2.250527445580429,2.2704059911171393,2.3057404749991917,2.307092147312065,2.3081917577491367,2.3211645679934807,2.3386841224785377,2.3658560699178444,2.3703696032454418,2.3755183547222622,2.383258444773316,2.3911704534310307,2.4045698112256377,2.4045698112256377,2.40306306859325,2.4020512521448,2.392718376162667,2.390620833461018,2.3808286755157275,2.37566336036195,2.3658560699178444,2.3577796194991953,2.354696909595279,2.348211678799347,2.341992027473435,2.3328049057543034,2.327485669496267,2.320224509814073,2.3168492996526457,2.3159379346443356,2.310314656661863,2.310074805032119,2.310183580087315,2.312386791533432,2.3125663370502534,2.313390803174275,2.3192007914097394,2.3207436801696493,2.323105901886571,2.32618813186363,2.3284289586217644,2.328867976179931,2.328468884201072,2.328468884201072,2.324116443971421,2.314407180769367,2.313239417094717,2.3113445339533363,2.3081917577491367,2.28645969919978,2.269306860130586,2.258633911555132,2.250527445580429,2.225162238989379,2.220594745499404,2.1928631334117212,2.180104333254502,2.1388935241985387,2.1351988212430126,2.1327859415721826,2.091326967164139,2.0782574569674144,2.077534509074305,2.076806228640249,2.061502516607718,2.0216131764952396,2.019870196905597,2.018005395804247,1.9683893809232527,1.9622058847368895,1.9551282912611385,1.9147402768126738,1.904541572568181,1.8935547313954602,1.858439272917321,1.8468772603994732,1.836076717049655,1.7965770826210075,1.7892129482307655,1.7837382132610338,1.7583131438004362,1.7377756238875421,1.7315486360620578,1.7149853127309824,1.6986480751254631,1.67388432389335,1.6616452551578242,1.6434472829053166,1.6289121393329506,1.6162200117246415,1.5988215941112638,1.5804657903457975,1.569200750832366,1.5585556995559338,1.5385619624127371,1.5150006312829256,1.506818674730614,1.500891387387226,1.477981085977358,1.4706284684661788,1.4432270752185183,1.433876400055007,1.4129341127695603,1.3934418061753093,1.3855627630498106,1.3702061249451698,1.3501276832653137,1.327898450881102,1.3056442479731838,1.2880940558510532,1.2702341387123943,1.2602080182378672,1.2183595102558837,1.213732569010737,1.2125698265436866,1.210732485230284,1.1675549456612697,1.154905514374979,1.134962296997878,1.1206950105011475,1.0972412022062703,1.0734197498244398,1.0609883949592187,1.0395768900375626,1.0254693715262548,0.9900886756090022,0.9819125778688549,0.9761501006580535,0.9325521012462787,0.9253324547761888,0.9242482657001472,0.9228929396574803,0.8732886828412876,0.8665839535314395,0.8587781852535517,0.8194715288839212,0.8089196413627309,0.7973445978912221,0.7641428156387655,0.7512553291940232,0.7377610884717978,0.7075268485615105,0.6935910170253154,0.6796215807159136,0.6495300803202282,0.6359267048566073,0.6230934214608164,0.5894193275601802,0.5782623926878996,0.5685122327369605,0.5258365046498734,0.5205980805191914,0.5164916259234813,0.4941173421415175,0.46739370354007903,0.4629337683504837,0.45506421806621367,0.42198011212067366,0.405269456181776,0.38052467283723557,0.3649663137157746,0.34760514401306786,0.3411414800407009,0.33080132807009166,0.3067864968386522,0.28994083184436015,0.27502365771683124,0.2592248707201219,0.24701636164569862,0.232276519675652,0.2218258434998437,0.21438488720712323,0.20134331216784274,0.1973401037950575,0.1845790650224819,0.18195755680982462,0.17461220750694428,0.16663075807601047,0.16370269077206157,0.16053488437454533,0.15408457968128575,0.14834246684061547,0.1430273653235936,0.1416181429739738,0.13575248079647917,0.1319061391759231,0.12230133793279663,0.12083214810982312,0.11968329660254051,0.11694789533823613,0.10054831149713817,0.092148035426459,0.07696590038780737,0.05928358316952842,0.049364637386175136,0.03897416976266577,0.0159458390544569,0.001619271000820266,-0.0204911940977599,-0.050833685504876325,-0.056045041167887444,-0.05772936554932606,-0.06120430473622829,-0.09996566627276593,-0.11370935333659515,-0.14199138159863267,-0.1437678416331325,-0.1713736655053033,-0.1853320480521825,-0.2247210765354426,-0.228108005838489,-0.22903797767401102,-0.23078056585383244,-0.2739469979706679,-0.28670228984271917,-0.30969590788500456,-0.31911251975919797,-0.3443666020114269,-0.3647255435704282,-0.3887348298406401,-0.40203091418013503,-0.4099420541496501,-0.4369308580650242,-0.4556207532989056,-0.45969522634884274,-0.46656152190707045,-0.5025429572546423,-0.5173595385175505,-0.5430655536076014,-0.5481436493864327,-0.5750238506862586,-0.59358933283684,-0.6239351393013282,-0.6326881628549663,-0.6375505001758244,-0.6512542950123081,-0.682130915729652,-0.6903524750236745,-0.7070660596639646,-0.7258443413388136,-0.7480167871923822,-0.7686691061950093,-0.7962312219344354,-0.8056810993610903,-0.8102495121601159,-0.8209967180274411,-0.8527796215583097,-0.863345411529798,-0.8879654447129548,-0.8942859968116821,-0.9210097236985058,-0.9365522821745009,-0.9736972645550344,-0.9774218362871601,-0.9786740358672139,-0.9814891293872567,-1.021057297010913,-1.0363383480359216,-1.0634503573022442,-1.0690506554246388,-1.0940026602046298,-1.1068500866775741,-1.1412249456421062,-1.1491986836728478,-1.1516669723733375,-1.1571103629710175,-1.192730735676124,-1.2093312845420456,-1.2343525086181952,-1.2478031578343525,-1.2669955967107533,-1.2756348013403498,-1.2937196403412534,-1.3152338697533368,-1.3246599088794613,-1.3523598849061498,-1.3579147398075928,-1.3823242210481692,-1.3896527582443376,-1.4007255637811562,-1.424114532209508,-1.4399885332168771,-1.457070676362817,-1.4780114100594564,-1.4883160770344666,-1.497652845385585,-1.517703269094148,-1.5379895205857763,-1.5459937159660617,-1.555317157554293,-1.5726553378644381,-1.587579578830183,-1.5981118739641467,-1.612981469723001,-1.6224183471852593,-1.6296206192442437,-1.6454337056076136,-1.6576147239950387,-1.66635056071994,-1.6678739969025909,-1.6706457818917086,-1.6900205446982297,-1.702338351815923,-1.7116575934675047,-1.7283100940604166,-1.7327751379933096,-1.735711091808555,-1.7498815987771186,-1.7557281262134534,-1.774207022981199,-1.7792229112974651,-1.7859744062291245,-1.805955149378439,-1.8242312212993954,-1.8344162135722586,-1.8436387183978324,-1.8675407367624988,-1.8980962017284915,-1.9013030305665404,-1.9020010524664281,-1.9035093123593787,-1.943921758076415,-1.9589673427352483,-1.984123119674376,-1.990169923360096,-2.0166316549039562,-2.0409298157013644,-2.050464517822222,-2.074295967072664,-2.095883734611392,-2.1098361457475727,-2.1319602792413717,-2.155799559645864,-2.165013282611193,-2.18962459141008,-2.218067963545044,-2.2187799525791094,-2.247288903578788,-2.272580330312649,-2.2800262854548774,-2.3049532157474957,-2.328039233992949,-2.3396387257319575,-2.3626175279162034,-2.3874645721966,-2.3950329615426447,-2.4202818400849115,-2.446456590841089,-2.4529955469359708,-2.4779461522536192,-2.494428189756553,-2.530109138589287,-2.5356104644223274,-2.538529657168283,-2.5452070789017136,-2.577794461100314,-2.593274776591035,-2.613695696385608,-2.6426362982256366,-2.6469627339160997,-2.650939088759743,-2.6742522080084763,-2.6945926539136424,-2.699445670953424,-2.708603400928451,-2.7189563995878148,-2.724091535617105,-2.728024604411723,-2.731671885703653,-2.737216487892905,-2.73631581900268,-2.736240589804913,-2.7359349085795506,-2.7296323755197016,-2.7229532590165846,-2.7196419524850706,-2.71571311718116,-2.708603400928451,-2.694304127448783,-2.685562168859999,-2.6687391963085054,-2.650939088759743,-2.639553693092019,-2.6261135921877576,-2.60688164843486,-2.593274776591035,-2.5707529073185547,-2.543971650753229,-2.5356104644223274,-2.533121975022845,-2.5271078913398215,-2.493158004833364,-2.4779461522536192,-2.4514470759942,-2.4443251130817276,-2.4202818400849115,-2.4079948731774765,-2.3627681338312048,-2.3626175279162034,-2.362522114590305,-2.3620015811463326,-2.316420761165775,-2.3049532157474957,-2.28750053555091,-2.2671625734423344,-2.247288903578788,-2.2253247639656966,-2.211060468007507,-2.18962459141008,-2.1716702024068906,-2.14468132766191,-2.1319602792413717,-2.1239714187605196,-2.1001311179176034,-2.079499282718844,-2.074295967072664,-2.065041163373637,-2.0351603104676856,-2.0166316549039562,-1.9905933805882368,-1.9828093077755804,-1.9589673427352483,-1.9454831846498477,-1.906369497637392,-1.9013030305665404,-1.8979204782882935,-1.866293696208346,-1.8453650859347062,-1.8436387183978324,-1.8418031063506224,-1.7868166748893914,-1.7859744062291245,-1.7852899017819608,-1.7796761523983864,-1.7344087744659435,-1.7283100940604166,-1.720105107944831,-1.686419465531239,-1.6706457818917086,-1.6459921899248782,-1.6394480567708496,-1.612981469723001,-1.5936300396069005,-1.5689000047358468,-1.555317157554293,-1.5473066641571374,-1.5090631744773741,-1.4999216755278382,-1.497652845385585,-1.4943368171600881,-1.451230200546997,-1.4399885332168771,-1.4256669780079818,-1.3990778278255784,-1.3823242210481692,-1.3643620093069198,-1.3422230134077364,-1.3246599088794613,-1.3093706800983398,-1.2782474031146944,-1.2669955967107533,-1.258832269456994,-1.2233381999092643,-1.2114714615328803,-1.2093312845420456,-1.2059048633584655,-1.1648803927518774,-1.1516669723733375,-1.1283782493347654,-1.119644155503003,-1.0940026602046298,-1.074675814032715,-1.0475365151011387,-1.0363383480359216,-1.0299243685757506,-1.0065082546369677,-0.9831940668061927,-0.9786740358672139,-0.9721630102840688,-0.9336527237761016,-0.9210097236985058,-0.9040306419392583,-0.882929522633098,-0.863345411529798,-0.8386591754271393,-0.831077047997423,-0.8056810993610903,-0.7782519733526878,-0.7751691972271151,-0.7480167871923822,-0.7246566233631433,-0.7127871486321227,-0.6903524750236745,-0.6706021212086566,-0.6510981321287383,-0.6326881628549663,-0.6161400107634254,-0.590071963135105,-0.5750238506862586,-0.5611551325270128,-0.5298945729987614,-0.5173595385175505,-0.5054509012772299,-0.47070502503867395,-0.45969522634884274,-0.4487681791930034,-0.41255383149945724,-0.40203091418013503,-0.3911610288754548,-0.3551975376789116,-0.3443666020114269,-0.33286832712368053,-0.2983839573828768,-0.28670228984271917,-0.27376171995407717,-0.24243864397895942,-0.22903797767401102,-0.2131078572646845,-0.1883216514503907,-0.1713736655053033,-0.14830090971521548,-0.13790784176780724,-0.11370935333659515,-0.09138036573169606,-0.07035571218887826,-0.056045041167887444,-0.04943181602022273,-0.03867672453833082,-0.023374465284587753,-0.011253197350657995,-0.002461576646416219,-0.0019073455215683488,0.001619271000820266,0.005089664636805491,0.005516332823711334,0.005516332823711334,0.0062455654645221514,0.006143500795099399,0.006143500795099399,0.007453772740964482,0.00760496641282149,0.008270242712579812,0.012618860681284705,0.01381427506770505,0.01721996874690035,0.02184176107292357,0.02612103479200112,0.034071536590961404,0.037406311955005656,0.043949668589418955,0.048076004630736247,0.05928358316952842,0.0631840430219679,0.06443977969063086,0.06708434565926957,0.0773434459402238,0.08316912092436102,0.09139702088759805,0.0945140441278105,0.10115968276932907,0.10483432473221521,0.11694789533823613,0.11812332846242812,0.11843433076544141,0.1191177911404604,0.1304362190146353,0.1340706112872323,0.14316191141080425,0.1443673090996156,0.15256682851785985,0.15874318422737677,0.17461220750694428,0.17487464380681317,0.17496523232752992,0.17519613321136518,0.19040452332234548,0.1962215958060396,0.2062540768933605,0.2097798383806566,0.21805845364541776,0.22178600694276085,0.232276519675652,0.23623888823519046,0.23738592056668217,0.23920047319656712,0.2480192131455965,0.2519860697659806,0.25801521931516147,0.2590908423281597,0.2647336650243508,0.26902914725611815,0.2731242158944114,0.27584146239742013,0.2778764343096074,0.28468079558868364,0.28520660273745335,0.2857211218954756,0.28994083184436015,0.29186083174270694,0.29207873462677814,0.2926224182454811,0.2960532465626349,0.2964823546458737,0.2982123614444605,0.2996927595970913,0.3000569479047548,0.30354227289491087,0.30491696803233204,0.3056247690847491,0.31527599262050066,0.31624174237660574,0.32045525980572087,0.33102877825992705,0.34760514401306786,0.35434803421259753,0.3597879993226978,0.3851981491986636,0.405269456181776,0.4176949656415059,0.4342726774543406,0.4512225693187366,0.4629337683504837,0.4831643167592432,0.5063777764163819,0.5132228820479567,0.5205980805191914,0.5375901748882437,0.5489796644401861,0.5574001463237606,0.5681880824750394,0.5723381719592204,0.5731777423163433,0.5782623926878996,0.5808541379987333,0.5812040988145752,0.5814118035374798,0.581918916092456,0.5819553755510953,0.5819923953323323,0.5794130860361735,0.5794130860361735,0.5795445653360196,0.5782623926878996,0.5775726297140231,0.5775469385236436,0.577525861060439,0.5782623926878996,0.5828430672588047,0.5833155833779107,0.5929601545037451,0.6023816931695043,0.6144386735581953,0.6266628749324314,0.6359267048566073,0.6647414718487537,0.6648031432515462,0.6935910170253154,0.7028595114055247,0.7284720405848453,0.7459493948612681,0.7512553291940232,0.7614354338323759,0.7893458236495348,0.8089196413627309,0.8312155321107526,0.853483052505275,0.8665839535314395,0.8718715130334389,0.8823730444483355,0.9065596574276822,0.9242482657001472,0.9378152042488934,0.9514773447675009,0.9627568665802904,0.9819125778688549,0.9839573039947394,0.9850205412579949,0.9875375562606323,1.0032421939532328,1.0141499429622258,1.024410815422748,1.0395768900375626,1.0488607598910211,1.0568426954119992,1.2958241549449698,2.027035945230549,2.033000779643252,2.044744555345613,2.047528966847097,2.0625378615458687,2.065161110433196,2.0740174702307566,2.0749905695224586,2.0750212314486594,2.0756713421437314,2.0757416564612456,2.0753788058238114,2.0688730050814974,2.0676701555309065,2.0628188949953956,2.056981892219117,2.0516253443308146,2.041625288992021,2.0295843174264045,2.026062016383379,2.023786889376567,2.019870196905597,2.0006768961121106,1.9874312563579868,1.974887318115067,1.9622058847368895,1.9435977970556233,1.9180516966051795,1.9095190690822164,1.904541572568181,1.8921992083233863,1.8700241492601068,1.8468772603994732,1.829183273705803,1.7967385747164601,1.7892129482307655,1.7858359037959173,1.773954434674772,1.7412802058142973,1.7315486360620578,1.7153738574686712,1.69570333369933,1.67388432389335,1.6496970726544506,1.6377387980234643,1.6162200117246415,1.6033547848635261,1.5625210279282764,1.5585556995559338,1.556083524938249,1.5439627724657137,1.5102083128481785,1.500891387387226,1.4847454740451815,1.4645586267132455,1.4432270752185183,1.418561595395492,1.4074376993830335,1.3855627630498106,1.372078023089546,1.3316470670704006,1.327898450881102,1.3255478325186032,1.3158304020570104,1.2823980216981172,1.2702341387123943,1.2434451149724821,1.2404863903622432,1.2125698265436866,1.1988972940200555,1.1645115107138824,1.1581798358351967,1.154905514374979,1.1451967929187794,1.1200080041362797,1.0972412022062703,1.0814970549087009,1.0477760828408074,1.0422654866464929,1.0395768900375626,1.0328703005734536,1.0022485180710246,0.9819125778688549,0.9608721248994105,0.9371190923613848,0.9242482657001472,0.9180537822034416,0.8956443678766717,0.8727056154632815,0.8665839535314395,0.8572156552900112,0.824813665716515,0.8089196413627309,0.7873832099808236,0.7744663972145411,0.7512553291940232,0.7237041562741333,0.72125418346935,0.6935910170253154,0.666299543478369,0.6630216555882549,0.6359267048566073,0.6140436088608792,0.5967570769663175,0.5782623926878996,0.5668286707875034,0.5361900554058407,0.525488245911478,0.5205980805191914,0.4927115259264778,0.48263432703470865,0.4629337683504837,0.4609666169311577,0.4593016618391945,0.453908851845068,0.43831400801037423,0.42232953061986933,0.4165169095139185,0.405269456181776,0.39794122810378196,0.3948414469161792,0.3865355423122576,0.3798446938341904,0.36724897208749585,0.35957870178811824,0.34760514401306786,0.3373299143071331,0.33101695636715567,0.31159814091333793,0.28994083184436015,0.28421102493962014,0.2788494704700457,0.252138203530921,0.232276519675652,0.21862833055518704,0.19878227047804442,0.1828059597653917,0.17461220750694428,0.1504424476684041,0.14405699757148138,0.11694789533823613,0.10447794059835003,0.07674195726114474,0.06394269737140545,0.05928358316952842,0.048918157745081015,0.02143467383068165,0.001619271000820266,-0.020912894302295815,-0.041150196883433576,-0.056045041167887444,-0.0633744105155194,-0.08338043504149084,-0.10648558366257443,-0.11370935333659515,-0.12818933087289164,-0.15033453742281155,-0.1713736655053033,-0.19437530512096535,-0.21155846295215897,-0.22903797767401102,-0.2388505138425301,-0.2723501678467102,-0.28389693157376517,-0.28670228984271917,-0.2913143892867609,-0.331158629994992,-0.3443666020114269,-0.36499717232457085,-0.37870329631136856,-0.40203091418013503,-0.4265065563731434,-0.43761084104234493,-0.45969522634884274,-0.47428375823366364,-0.5111175036967492,-0.5173595385175505,-0.52136751163086,-0.5372046359379503,-0.568626245061072,-0.5750238506862586,-0.5856827212602256,-0.6151280256705558,-0.6326881628549663,-0.6598645679772308,-0.6647650916389365,-0.6903524750236745,-0.7040125832581601,-0.7410908424189921,-0.746351639933291,-0.7480167871923822,-0.7517408149793967,-0.7889841117082375,-0.8056810993610903,-0.8301590038003597,-0.8456007209130978,-0.863345411529798,-0.87112045887238,-0.8886238031012228,-0.9117212445144087,-0.9210097236985058,-0.9451455537389726,-0.9518869126838823,-0.9786740358672139,-0.9927290011872238,-1.024148822827013,-1.0327080396866934,-1.0363383480359216,-1.0462314597761901,-1.0730692649692375,-1.0940026602046298,-1.1129951641864895,-1.150880750263187,-1.1516669723733375,-1.1519760600582756,-1.1525928434069868,-1.1900882266851167,-1.2093312845420456,-1.22689573025874,-1.2549904657248891,-1.2620655021594689,-1.2669955967107533,-1.2940923003525937,-1.3133072709079476,-1.3246599088794613,-1.325937525863894,-1.3273446203281332,-1.3495600193687811,-1.3533046745693633,-1.3793433777034612,-1.3805633937650843,-1.3823242210481692,-1.4038756948427629,-1.4184766589478794,-1.4255929013426278,-1.4399885332168771,-1.444847285637559,-1.4473888311606813,-1.4521510689081338,-1.462124625248745,-1.471573334596633,-1.4781798155825323,-1.4877909227567598,-1.4913644189245054,-1.492889025773692,-1.497652845385585,-1.5081235981797874,-1.5121039297606924,-1.5214801519746155,-1.524280912286509,-1.5346262399806334,-1.540670613315951,-1.555317157554293,-1.5578590787418232,-1.5591552971237521,-1.563202099121081,-1.5769780091913037,-1.5875901593037713,-1.5950484383714245,-1.6105693235717313,-1.6114559703070062,-1.6117017130618743,-1.612981469723001,-1.622797434346386,-1.6252120590202028,-1.6231529309592876,-1.6136797597846908,-1.6136165995603045,-1.6133405107625232,-1.612981469723001,-1.587176293603742,-1.5657183846613707,-1.5594741241254446,-1.555317157554293,-1.5405710734055247,-1.5228697686174957,-1.497652845385585,-1.485257963827563,-1.4553447483129929,-1.4438451678230482,-1.4399885332168771,-1.4337779719473986,-1.3974528407336126,-1.3823242210481692,-1.3619692379004245,-1.3472833775676663,-1.3246599088794613,-1.2985418535322941,-1.2934838265443944,-1.2669955967107533,-1.2387993743443213,-1.2375365137693566,-1.2093312845420456,-1.183878960272025,-1.1768165906318022,-1.1516669723733375,-1.130593126152808,-1.113876300189661,-1.0940026602046298,-1.0778219881971896,-1.0502208729903266,-1.0363383480359216,-1.025025939676075,-0.9868267791590006,-0.9786740358672139,-0.9719044996410386,-0.9241454255584518,-0.9210097236985058,-0.9183399032633282,-0.879310824976117,-0.8641563599520286,-0.863345411529798,-0.862456333997438,-0.8091714012516582,-0.8056810993610903,-0.8018634952101245,-0.7540271151230638,-0.7480167871923822,-0.7414633827695227,-0.6987509428893532,-0.6903524750236745,-0.6812511514381621,-0.6432760140143037,-0.6326881628549663,-0.6213290187846812,-0.5875012959933934,-0.5750238506862586,-0.5617896460750522,-0.5313950892480883,-0.5173595385175505,-0.5025712743694033,-0.47509517823737824,-0.45969522634884274,-0.44337190595848597,-0.41894999739707695,-0.40203091418013503,-0.3836427764103738,-0.3634644981585642,-0.3443666020114269,-0.32263240023409967,-0.30916968063268335,-0.28670228984271917,-0.2594875803976868,-0.2564890552677901,-0.22903797767401102,-0.20499043064351374,-0.1935108943307653,-0.1713736655053033,-0.15465761464503514,-0.1247365210848792,-0.11370935333659515,-0.10545966024021558,-0.0614738683038234,-0.05677741544471626,-0.056045041167887444,-0.05498316930009173,-0.005373867506942354,0.001619271000820266,0.010644147642097312,0.04870807451495418,0.05928358316952842,0.06969862236698399,0.10953663270114289,0.11694789533823613,0.12303036814572499,0.15087260070168007,0.16879744217897485,0.17461220750694428,0.19229774094534324,0.2067374313663084,0.232276519675652,0.24279532638167645,0.25713495924762686,0.2736539221274126,0.28994083184436015,0.30220366559735634,0.3137211197872296,0.3281132947881571,0.34760514401306786,0.3526347842967321,0.35638569821853805,0.3663511037476175,0.3731039670395795,0.3859352713851587,0.3896401790213786,0.39784446132683593,0.39951405469408563,0.39939908297175286,0.3969746060231456,0.3965122820169076,0.3946161117839426,0.38754937250439214,0.3832742126642108,0.3769748376671993,0.37672907192621574,0.368271132468855,0.3651408063736965,0.36023127723317394,0.3570160076033284,0.3562256236668442,0.35214521776711294,0.3514108056031042,0.3514108056031042,0.3515380296645789,0.35134453023760015,0.3515801112497141,0.35546524985542227,0.35613158430171943,0.35774260589792783,0.3628438834797234,0.3652514891911949,0.3709184250454043,0.3729225050966192,0.378539050531673,0.3848620809263146,0.3924265286554336,0.39596131053645944,0.3983942722798335,0.405269456181776,0.41284152540707586,0.41525174263475106,0.4210023587912204,0.42749063965151457,0.4348054862060353,0.4419827954092539,0.4501963962900839,0.4541278454262856,0.45613418585581167,0.4629337683504837,0.4687721604275663,0.47032281384222596,0.47292309452699177,0.4797836162956992,0.48353376166248907,0.4899253358855442,0.49053542839121267,0.4960186918524956,0.5008494298290294,0.5067322949871933,0.5095688759729007,0.5119968173407456,0.5205980805191914,0.5247820333697613,0.5259970047774027,0.5297102192507186,0.5400755931957226,0.547019498889854,0.5571442460925917,0.5713532078899619,0.5743268656119933,0.5757289837128403,0.5782623926878996,0.5974666182665871,0.6092309456928588,0.6203923091407177,0.6359267048566073,0.6449692584319293,0.652100224877616,0.6711553999267705,0.6935910170253154,0.6977432551368681,0.7014425040540959,0.72484157050109,0.7512553291940232,0.7519256653817021,0.7525143145017408,0.7579318615285495,0.7778602593245005,0.7996047903131447,0.8035711002298735,0.8089196413627309,0.8274739850218578,0.8404411108825864,0.8504408853709564,0.8665839535314395,0.8724190894215398,0.8759563873222533,0.8884725204399682,0.8934928538355558,0.908728447951018,0.914382026844542,0.9242482657001472,0.9361669432409045,0.943779128195525,0.9600554236827352,0.9819125778688549,0.9850993630997951,0.9882062098960751,1.0162642667276907,1.0395768900375626,1.0497374499234664,1.071149919992369,1.0897598758091323,1.0972412022062703,1.1086216486990854,1.1390290598381543,1.154905514374979,1.1710820540667375,1.2000610227012163,1.2125698265436866,1.2201289315874457,1.2387420056076164,1.2604906528134738,1.2702341387123943,1.294329716786692,1.3241649245889433,1.3259683036608503,1.327898450881102,1.3491518630316954,1.3630870336383611,1.3693651014826238,1.38535773504652,1.385444942865536,1.385462952682993,1.3855627630498106,1.3932674045754525,1.394471327921559,1.3946223172698908,1.3954987068701779,1.3957238949973427,1.3951816454921766,1.392885995068267,1.3925511174066707,1.3921124557582165,1.3889134989798246,1.3887493982804187,1.3887683445516736,1.388521358488402,1.388521358488402,1.3889556852143508,1.3947443504315449,1.3959230900228516,1.400225834864678,1.4069756292282158,1.4136705494785171,1.4233159849582893,1.4400801498669318,1.4417017565195516,1.4423112681252364,1.4432270752185183,1.4641776916072957,1.4769291311874908,1.4865407763663563,1.500891387387226,1.5093306380455318,1.5146265241799335,1.5312102976990176,1.5357925030330715,1.5507663781779732,1.5536537563427397,1.5585556995559338,1.5747297140684426,1.583984521343106,1.5941347208569945,1.6056104651161784,1.6111623819580632,1.6125759290510424,1.6162200117246415,1.6291316719452262,1.634388333090024,1.6409416009552769,1.642947910815359,1.651576385057281,1.6550418011850447,1.659544369523307,1.6628058241882928,1.6638581055576602,1.6682684636871357,1.6690027478194884,1.6691775829500428,1.6710390382759637,1.6711669327345882,1.6711153871222169,1.6704677234340655,1.6704247385717204,1.6702263235066153,1.6681871952295135,1.6679467197048434,1.6675237042277842,1.6651921358297392,1.66471652645463,1.664071611252004,1.661999292799933,1.661314502164887,1.660496350001568,1.6588166459303548,1.6579501481264098,1.6570214077446344,1.6557675722860288,1.654766215370453,1.6539004319272137,1.6531152696397027,1.6521510022826775,1.651696102197413,1.6513607793896559,1.6507776771793528,1.6509416761663789,1.6510264813201627,1.6513414845691483,1.6523737546615194,1.6531118877540254,1.654226964033764,1.6558237593984404,1.6579131992325578,1.659367942697958,1.6609367906976336,1.6653170083440636,1.666341985546048,1.6672785802031425,1.67388432389335,1.6745371633297856,1.674648855735469,1.674803024910951,1.6831402448577442,1.6847652006868272,1.6867191196539912,1.691126087320963,1.6938803491124514,1.69647415958068,1.6978316218285365,1.7007530769620405,1.7023734617912791,1.7024132275555606,1.7041686433878982,1.7036189458930644,1.7035890459960528,1.7031180748278216,1.700139201681679,1.699479519298539,1.6969510297730692,1.6930249602146321,1.688023229792742,1.6855197066391985,1.6830190556561502,1.67388432389335,1.6709269037258214,1.6702101978542356,1.668642671058985,1.658951928057101,1.6550920989455018,1.6488495883137682,1.6475954787365343,1.6423959062838116,1.6401820643606917,1.639190567696795,1.6384509719263822,1.6451341891881586,1.6451838714057563,1.6507937751516581,1.6592960506626073,1.67388432389335,1.6812991396050783,1.6864709805589908,1.7097995484762927,1.7315486360620578,1.7399963597917147,1.749920500683801,1.7730023813580904,1.7892129482307655,1.806872998625455,1.8320063610463042,1.8408768579032366,1.8468772603994732,1.8746433281854835,1.8821115895449592,1.904541572568181,1.9088335390475213,1.9148459170516738,1.9409337637259862,1.9622058847368895,1.9724217185780737,1.984239554718164,2.000616363279159,2.019870196905597,2.027035945230549,1.9060783760958304,1.904541572568181,1.8833448408434132,1.86952854456738,1.858358029488382,1.8468772603994732,1.8294116454733653,1.811380996879929,1.7990148951580172,1.7892129482307655,1.7662104217188763,1.7352504990432283,1.7330831604963959,1.7315486360620578,1.723166871043127,1.6992055923888407,1.67388432389335,1.6653943576332675,1.6532844757818537,1.6326698508298372,1.6162200117246415,1.6010926555991305,1.583436371763462,1.5720893532901594,1.5585556995559338,1.546777076931241,1.5382186076676114,1.528562185557464,1.5273171174849147,1.5171884221828678,1.5166282490486922,1.5156615517211924,1.5143345081555464,1.516267462036685,1.5201999305562848,1.5235041624148349,1.5304098613051003,1.5308561393846225,1.5384832234360943,1.5428193630818758,1.552781524869355,1.5544647626224095,1.5552592725323193,1.5585556995559338,1.5669996668893709,1.569210742055081,1.5715316164743212,1.5764486139677651,1.5797319816312778,1.5819759540484193,1.5828870106828181,1.5851232428224615,1.585535016330606,1.5855706739293107,1.5858331490240958,1.5845510451934612,1.5842567021389091,1.5829672349692703,1.581087645840729,1.5799408706075488,1.5779375899264898,1.576204920438276,1.5737701806339799,1.5720024453798271,1.570763185781551,1.5670064651391757,1.565970340136127,1.5653056967012167,1.5604820619000104,1.5602561992675548,1.5601166285456833,1.5585556995559338,1.5557020652188513,1.5554745540401407,1.5553038284326024,1.5521933683038225,1.5517815112285533,1.55149563644057,1.5497140639806335,1.5493368841748238,1.5491283039967638,1.5484928826182167,1.5483253834744093,1.5483762413910704,1.548658894299773,1.548658894299773,1.54890192534971,1.5498924830998306,1.5500135027931186,1.5503154300056088,1.5518818151869334,1.5520615687803727,1.5523458969883257,1.5545169208911234,1.554678548825311,1.5548816989534244,1.5578267307529408,1.5578669665703306,1.5579067800330422,1.5585556995559338,1.5614716916674989,1.5616670613764545,1.5618226650891915,1.5646273561917057,1.564979738565221,1.5650859678433835,1.5660558619551073,1.5662225755982875,1.5658875510368166,1.5638285805336882,1.5636213431922248,1.5630007951910874,1.5585556995559338,1.5560881873606625,1.55576622052144,1.5547270291067936,1.545190747349889,1.542041506468736,1.5313808134952853,1.5305299635937222,1.5208511106239668,1.5141923598482108,1.500891387387226,1.4947593434516784,1.4915351300822741,1.4725731333006578,1.4721767631391578,1.4541517229267815,1.4495308711007113,1.4432270752185183,1.4237213590203344,1.4073605340923057,1.3971897355502123,1.3855627630498106,1.368684896521636,1.35073271654494,1.3394090289468834,1.327898450881102,1.3086882619034443,1.284478358846417,1.277276971740441,1.2702341387123943,1.244863263546391,1.2198018446857648,1.2125698265436866,1.2112980722712412,1.2086829462961552,1.177033421141981,1.154905514374979,1.1402688875822142,1.1008080908164382,1.0985361561291067,1.0972412022062703,1.0950856192383376,1.0476591478924324,1.0395768900375626,1.0322773970667796,1.0025565529223228,0.9849155813186328,0.9819125778688549,0.9758826408631003,0.9433754659643152,0.9242482657001472,0.905285102930796,0.8749838017708078,0.8695383754123962,0.8665839535314395,0.845894307634588,0.8366185555944976,0.8089196413627309,0.8043693768059366,0.7997521882235179,0.7758270497203994,0.7512553291940232,0.7478279166019792,0.7451758304293103,0.7333465310718252,0.7242643145698762,0.7050596258224044,0.7008314572424168,0.6935910170253154,0.680874201190564,0.6744843085633185,0.6636925123510662,0.6623365786849393,0.6500679585001881,0.6462440761612931,0.6359267048566073,0.6307667875830454,0.6289113150359062,0.6257003824152618,0.6157340706118575,0.6083476340816487,0.6008719374805831,0.5947243465316192,0.588656837561472,0.5860693753622184,0.5782623926878996,0.571324757317837,0.5688392009159768,0.5645075180852648,0.5569390387320534,0.5497936935300656,0.5436035588368169,0.539313676810508,0.5340673161878358,0.5318588375303435,0.5232850711658257,0.5227556831352307,0.5225553485758665,0.5205980805191914,0.5168513944582895,0.5164239104923602,0.5163645461050006,0.5167028736198556,0.5167028736198556,0.5171644533440971,0.5205980805191914,0.523859465026788,0.5242777848299385,0.5258453620326384,0.5353268500226003,0.5390322651010724,0.5503539654298928,0.5516149955296399,0.5610650505198356,0.5664461727549237,0.5782623926878996,0.5844234581998347,0.5871860622365666,0.5943873428869129,0.6016169709413983,0.6109019268021489,0.616406897752166,0.6237226037719843,0.6264288515496697,0.625807768386252,0.6258773490000928,0.6258773490000928,0.6193303000172095,0.6127686242130412,0.6042841301921791,0.5934020682472507,0.5782623926878996,0.5688259287223443,0.5614208401758227,0.5409389435982792,0.5205980805191914,0.5120481875439156,0.5035210960325736,0.48214310381200853,0.4629337683504837,0.4518886828627662,0.4398686502949194,0.4207843388781156,0.405269456181776,0.3884876388796905,0.3664069408291164,0.35475102374487566,0.34760514401306786,0.32577298169513647,0.31647897130420954,0.28994083184436015,0.27662013223705806,0.23599732100679383,0.2330029435498422,0.232276519675652,0.23132988844862146,0.18181254399563818,0.17461220750694428,0.16650251728204912,0.1257425042381941,0.11694789533823613,0.10926676735307117,0.0629283996021841,0.05928358316952842,0.056655816366617096,0.04084224480398868,0.007843691848576473,0.001619271000820266,-0.007337196727449147,-0.03934221873956201,-0.056045041167887444,-0.08194517439715909,-0.08659881668648861,-0.11370935333659515,-0.13339989661439056,-0.15607218268036327,-0.1713736655053033,-0.18123752213775912,-0.22676863255872304,-0.22903797767401102,-0.23061932348751046,-0.24289167962934055,-0.2809765130439552,-0.28670228984271917,-0.2938079583823745,-0.3331366107853646,-0.3443666020114269,-0.3573710471899538,-0.3870965753927451,-0.40203091418013503,-0.41839578698242974,-0.4424717812176424,-0.45969522634884274,-0.4779045516952598,-0.4987565201462747,-0.5173595385175505,-0.5367113561234564,-0.5554271626598086,-0.5750238506862586,-0.5953850560251821,-0.612087681765185,-0.6326881628549663,-0.6542289168680901,-0.668556980399869,-0.6903524750236745,-0.7132938584868667,-0.7248511616140401,-0.7480167871923822,-0.7724524840882436,-0.7810993143769402,-0.8056810993610903,-0.8315082779512291,-0.8374615362547257,-0.863345411529798,-0.8901935329585671,-0.8941729986590006,-0.9210097236985058,-0.9479948690778919,-0.9517664429472892,-0.9786740358672139,-1.0049187224729668,-1.0103356176702052,-1.0363383480359216,-1.060619730046834,-1.0704801168844598,-1.0940026602046298,-1.11498493082365,-1.1328472494179223,-1.1516669723733375,-1.1673001448636922,-1.1995199084414545,-1.2093312845420456,-1.2166405320009144,-1.2448959142719802,-1.2613913163024548,-1.2669955967107533,-1.2871143133280178,-1.2985949993931358,-1.3246599088794613,-1.334500247372229,-1.3462243274945032,-1.3587469099352572,-1.3706520830642892,-1.3781831830828624,-1.3786927138218632,-1.3823242210481692,-1.385524286092368,-1.3858169497680788,-1.385600913782911,-1.3823242210481692,-1.3820696457343409,-1.3820750537780628,-1.3820539853562874,-1.3746438514273902,-1.3734990450729134,-1.3715422111793327,-1.3653276862293713,-1.3617933821576687,-1.3544929138602102,-1.354083358086682,-1.3468187998152683,-1.3411279562132803,-1.3280703559436593,-1.3269844328904812,-1.3262659444939149,-1.3246599088794613,-1.3086097432032473,-1.3015361310336624,-1.2881995296843913,-1.2669955967107533,-1.2659022453813376,-1.2651798441346283,-1.2503764541390392,-1.238982849438022,-1.2144926847492354,-1.211775997439982,-1.2093312845420456,-1.1867880555096102,-1.179879536445151,-1.1516669723733375,-1.1480345582742535,-1.143087764736043,-1.113126431414381,-1.0940026602046298,-1.077282964733402,-1.048207251065774,-1.040483280894399,-1.0363383480359216,-1.0238812648913087,-1.0025999284665978,-0.9786740358672139,-0.9647758375451403,-0.9369679336192291,-0.9262940829730062,-0.9210097236985058,-0.9067655065306348,-0.8872790896616927,-0.863345411529798,-0.8481538370236712,-0.8133879756833187,-0.8080900320999342,-0.8056810993610903,-0.8000836288531121,-0.7675213680157662,-0.7480167871923822,-0.7257048942318196,-0.7060379695936359,-0.6903524750236745,-0.6828610047491241,-0.6570640130509053,-0.638638702803783,-0.6326881628549663,-0.6223978960203698,-0.5932123319459408,-0.5750238506862586,-0.5462155825194333,-0.5461765139061652,-0.5173595385175505,-0.498211418200023,-0.47484463939798305,-0.45969522634884274,-0.44908584819058905,-0.40570547240499,-0.40203091418013503,-0.39942205143987364,-0.3837464092750684,-0.3508610619376329,-0.3443666020114269,-0.3346174715727277,-0.3033971208249273,-0.28670228984271917,-0.26007099667967815,-0.25657465575442817,-0.22903797767401102,-0.21089767758229927,-0.18169583717971394,-0.1713736655053033,-0.16577999389246667,-0.14694579650005846,-0.12211030931743005,-0.11370935333659515,-0.09727693522836223,-0.07897907483950295,-0.056045041167887444,-0.03598396964341655,-0.009994778188194164,0.001619271000820266,0.007200009229838766,0.02416726581901152,0.04978765537786378,0.05928358316952842,0.07905246737639748,0.0922434323790653,0.11694789533823613,0.13440632735626634,0.1698631267493984,0.17461220750694428,0.17672244562154482,0.18219816112609655,0.21668576385285432,0.232276519675652,0.2560264324054753,0.27537858542482185,0.28994083184436015,0.29477824239110584,0.30401623152331547,0.33058595631355026,0.34760514401306786,0.36553059539697097,0.392719634483774,0.39957855898100236,0.405269456181776,0.43165878497188315,0.45498585049512696,0.4629337683504837,0.4638092810008292,0.46502023202859766,0.4948847641246581,0.5205980805191914,0.5264875060494516,0.5353302916228317,0.5595364807255909,0.5782623926878996,0.5946728971577935,0.6281621404164381,0.6331431102935943,0.6359267048566073,0.641726708833736,0.6759563095067684,0.6935910170253154,0.7196139508077115,0.7244239207204295,0.7512553291940232,0.7775783263671152,0.7824227912375457,0.8089196413627309,0.8361723826870002,0.8397741123987621,0.8665839535314395,0.8854069379997571,0.9114932375342559,0.9242482657001472,0.931840566892165,0.9561455413191129,0.9769590656137601,0.9819125778688549,0.9906264570628651,1.0222746251202497,1.0395768900375626,1.06707234193494,1.0708762060379695,1.0972412022062703,1.1123738508461787,1.1497037605824585,1.154905514374979,1.1581148538776955,1.1728788925270304,1.2069650413767863,1.2125698265436866,1.2200309468938229,1.2579326298992926,1.2702341387123943,1.2856417416191452,1.3099122850686196,1.327898450881102,1.3499813560224676,1.3622037792534543,1.3855627630498106,1.4139817243766077,1.4149222062165605,1.4432270752185183,1.4647126387982126,1.4821914643505862,1.500891387387226,1.5141317847416649,1.5533482284595723,1.5585556995559338,1.5619742195897,1.5755855391235651,1.6085182428608031,1.6162200117246415,1.630717814307547,1.6530431307377005,1.67388432389335,1.6958221271205862,1.7191371834287934,1.7315486360620578,1.737130215779469,1.7488371696590606,1.7749008417481273,1.7892129482307655,1.8097846357324356,1.8381461261764556,1.8425585132119005,1.8468772603994732,1.8695086017145237,1.8888454504845353,1.8941519402566693,1.904541572568181,1.91322234568853,1.9173509938437499,1.92024297666048,1.9250781706707616,1.929712586781537,1.9284398619267589,1.9278847858480161,1.9268144444184956,1.9210975469247944,1.9081477960485596,1.907057912890029,1.9060783760958304,1.9060783760958304,1.907057912890029,1.9081477960485596,1.9210975469247944,1.9268144444184956,1.9278847858480161,1.9284398619267589,1.929712586781537,1.9250781706707616,1.92024297666048,1.9173509938437499,1.91322234568853,1.904541572568181,1.8941519402566693,1.8888454504845353,1.8695086017145237,1.8468772603994732,1.8425585132119005,1.8381461261764556,1.8097846357324356,1.7892129482307655,1.7749008417481273,1.7488371696590606,1.737130215779469,1.7315486360620578,1.7191371834287934,1.6958221271205862,1.67388432389335,1.6530431307377005,1.630717814307547,1.6162200117246415,1.6085182428608031,1.5755855391235651,1.5619742195897,1.5585556995559338,1.5533482284595723,1.5141317847416649,1.500891387387226,1.4821914643505862,1.4647126387982126,1.4432270752185183,1.4149222062165605,1.4139817243766077,1.3855627630498106,1.3622037792534543,1.3499813560224676,1.327898450881102,1.3099122850686196,1.2856417416191452,1.2702341387123943,1.2579326298992926,1.2200309468938229,1.2125698265436866,1.2069650413767863,1.1728788925270304,1.1581148538776955,1.154905514374979,1.1497037605824585,1.1123738508461787,1.0972412022062703,1.0708762060379695,1.06707234193494,1.0395768900375626,1.0222746251202497,0.9906264570628651,0.9819125778688549,0.9769590656137601,0.9561455413191129,0.931840566892165,0.9242482657001472,0.9114932375342559,0.8854069379997571,0.8665839535314395,0.8397741123987621,0.8361723826870002,0.8089196413627309,0.7824227912375457,0.7775783263671152,0.7512553291940232,0.7244239207204295,0.7196139508077115,0.6935910170253154,0.6759563095067684,0.641726708833736,0.6359267048566073,0.6331431102935943,0.6281621404164381,0.5946728971577935,0.5782623926878996,0.5595364807255909,0.5353302916228317,0.5264875060494516,0.5205980805191914,0.4948847641246581,0.46502023202859766,0.4638092810008292,0.4629337683504837,0.45498585049512696,0.43165878497188315,0.405269456181776,0.39957855898100236,0.392719634483774,0.36553059539697097,0.34760514401306786,0.33058595631355026,0.30401623152331547,0.29477824239110584,0.28994083184436015,0.27537858542482185,0.2560264324054753,0.232276519675652,0.21668576385285432,0.18219816112609655,0.17672244562154482,0.17461220750694428,0.1698631267493984,0.13440632735626634,0.11694789533823613,0.0922434323790653,0.07905246737639748,0.05928358316952842,0.04978765537786378,0.02416726581901152,0.007200009229838766,0.001619271000820266,-0.009994778188194164,-0.03598396964341655,-0.056045041167887444,-0.07897907483950295,-0.09727693522836223,-0.11370935333659515,-0.12211030931743005,-0.14694579650005846,-0.16577999389246667,-0.1713736655053033,-0.18169583717971394,-0.21089767758229927,-0.22903797767401102,-0.25657465575442817,-0.26007099667967815,-0.28670228984271917,-0.3033971208249273,-0.3346174715727277,-0.3443666020114269,-0.3508610619376329,-0.3837464092750684,-0.39942205143987364,-0.40203091418013503,-0.40570547240499,-0.44908584819058905,-0.45969522634884274,-0.47484463939798305,-0.498211418200023,-0.5173595385175505,-0.5461765139061652,-0.5462155825194333,-0.5750238506862586,-0.5932123319459408,-0.6223978960203698,-0.6326881628549663,-0.638638702803783,-0.6570640130509053,-0.6828610047491241,-0.6903524750236745,-0.7060379695936359,-0.7257048942318196,-0.7480167871923822,-0.7675213680157662,-0.8000836288531121,-0.8056810993610903,-0.8080900320999342,-0.8133879756833187,-0.8481538370236712,-0.863345411529798,-0.8872790896616927,-0.9067655065306348,-0.9210097236985058,-0.9262940829730062,-0.9369679336192291,-0.9647758375451403,-0.9786740358672139,-1.0025999284665978,-1.0238812648913087,-1.0363383480359216,-1.040483280894399,-1.048207251065774,-1.077282964733402,-1.0940026602046298,-1.113126431414381,-1.143087764736043,-1.1480345582742535,-1.1516669723733375,-1.179879536445151,-1.1867880555096102,-1.2093312845420456,-1.211775997439982,-1.2144926847492354,-1.238982849438022,-1.2503764541390392,-1.2651798441346283,-1.2659022453813376,-1.2669955967107533,-1.2881995296843913,-1.3015361310336624,-1.3086097432032473,-1.3246599088794613,-1.3262659444939149,-1.3269844328904812,-1.3280703559436593,-1.3411279562132803,-1.3468187998152683,-1.354083358086682,-1.3544929138602102,-1.3617933821576687,-1.3653276862293713,-1.3715422111793327,-1.3734990450729134,-1.3746438514273902,-1.3820539853562874,-1.3820750537780628,-1.3820696457343409,-1.3823242210481692,-1.385600913782911,-1.3858169497680788,-1.385524286092368,-1.3823242210481692,-1.3786927138218632,-1.3781831830828624,-1.3706520830642892,-1.3587469099352572,-1.3462243274945032,-1.334500247372229,-1.3246599088794613,-1.2985949993931358,-1.2871143133280178,-1.2669955967107533,-1.2613913163024548,-1.2448959142719802,-1.2166405320009144,-1.2093312845420456,-1.1995199084414545,-1.1673001448636922,-1.1516669723733375,-1.1328472494179223,-1.11498493082365,-1.0940026602046298,-1.0704801168844598,-1.060619730046834,-1.0363383480359216,-1.0103356176702052,-1.0049187224729668,-0.9786740358672139,-0.9517664429472892,-0.9479948690778919,-0.9210097236985058,-0.8941729986590006,-0.8901935329585671,-0.863345411529798,-0.8374615362547257,-0.8315082779512291,-0.8056810993610903,-0.7810993143769402,-0.7724524840882436,-0.7480167871923822,-0.7248511616140401,-0.7132938584868667,-0.6903524750236745,-0.668556980399869,-0.6542289168680901,-0.6326881628549663,-0.612087681765185,-0.5953850560251821,-0.5750238506862586,-0.5554271626598086,-0.5367113561234564,-0.5173595385175505,-0.4987565201462747,-0.4779045516952598,-0.45969522634884274,-0.4424717812176424,-0.41839578698242974,-0.40203091418013503,-0.3870965753927451,-0.3573710471899538,-0.3443666020114269,-0.3331366107853646,-0.2938079583823745,-0.28670228984271917,-0.2809765130439552,-0.24289167962934055,-0.23061932348751046,-0.22903797767401102,-0.22676863255872304,-0.18123752213775912,-0.1713736655053033,-0.15607218268036327,-0.13339989661439056,-0.11370935333659515,-0.08659881668648861,-0.08194517439715909,-0.056045041167887444,-0.03934221873956201,-0.007337196727449147,0.001619271000820266,0.007843691848576473,0.04084224480398868,0.056655816366617096,0.05928358316952842,0.0629283996021841,0.10926676735307117,0.11694789533823613,0.1257425042381941,0.16650251728204912,0.17461220750694428,0.18181254399563818,0.23132988844862146,0.232276519675652,0.2330029435498422,0.23599732100679383,0.27662013223705806,0.28994083184436015,0.31647897130420954,0.32577298169513647,0.34760514401306786,0.35475102374487566,0.3664069408291164,0.3884876388796905,0.405269456181776,0.4207843388781156,0.4398686502949194,0.4518886828627662,0.4629337683504837,0.48214310381200853,0.5035210960325736,0.5120481875439156,0.5205980805191914,0.5409389435982792,0.5614208401758227,0.5688259287223443,0.5782623926878996,0.5934020682472507,0.6042841301921791,0.6127686242130412,0.6193303000172095,0.6258773490000928,0.6258773490000928,0.625807768386252,0.6264288515496697,0.6237226037719843,0.616406897752166,0.6109019268021489,0.6016169709413983,0.5943873428869129,0.5871860622365666,0.5844234581998347,0.5782623926878996,0.5664461727549237,0.5610650505198356,0.5516149955296399,0.5503539654298928,0.5390322651010724,0.5353268500226003,0.5258453620326384,0.5242777848299385,0.523859465026788,0.5205980805191914,0.5171644533440971,0.5167028736198556,0.5167028736198556,0.5163645461050006,0.5164239104923602,0.5168513944582895,0.5205980805191914,0.5225553485758665,0.5227556831352307,0.5232850711658257,0.5318588375303435,0.5340673161878358,0.539313676810508,0.5436035588368169,0.5497936935300656,0.5569390387320534,0.5645075180852648,0.5688392009159768,0.571324757317837,0.5782623926878996,0.5860693753622184,0.588656837561472,0.5947243465316192,0.6008719374805831,0.6083476340816487,0.6157340706118575,0.6257003824152618,0.6289113150359062,0.6307667875830454,0.6359267048566073,0.6462440761612931,0.6500679585001881,0.6623365786849393,0.6636925123510662,0.6744843085633185,0.680874201190564,0.6935910170253154,0.7008314572424168,0.7050596258224044,0.7242643145698762,0.7333465310718252,0.7451758304293103,0.7478279166019792,0.7512553291940232,0.7758270497203994,0.7997521882235179,0.8043693768059366,0.8089196413627309,0.8366185555944976,0.845894307634588,0.8665839535314395,0.8695383754123962,0.8749838017708078,0.905285102930796,0.9242482657001472,0.9433754659643152,0.9758826408631003,0.9819125778688549,0.9849155813186328,1.0025565529223228,1.0322773970667796,1.0395768900375626,1.0476591478924324,1.0950856192383376,1.0972412022062703,1.0985361561291067,1.1008080908164382,1.1402688875822142,1.154905514374979,1.177033421141981,1.2086829462961552,1.2112980722712412,1.2125698265436866,1.2198018446857648,1.244863263546391,1.2702341387123943,1.277276971740441,1.284478358846417,1.3086882619034443,1.327898450881102,1.3394090289468834,1.35073271654494,1.368684896521636,1.3855627630498106,1.3971897355502123,1.4073605340923057,1.4237213590203344,1.4432270752185183,1.4495308711007113,1.4541517229267815,1.4721767631391578,1.4725731333006578,1.4915351300822741,1.4947593434516784,1.500891387387226,1.5141923598482108,1.5208511106239668,1.5305299635937222,1.5313808134952853,1.542041506468736,1.545190747349889,1.5547270291067936,1.55576622052144,1.5560881873606625,1.5585556995559338,1.5630007951910874,1.5636213431922248,1.5638285805336882,1.5658875510368166,1.5662225755982875,1.5660558619551073,1.5650859678433835,1.564979738565221,1.5646273561917057,1.5618226650891915,1.5616670613764545,1.5614716916674989,1.5585556995559338,1.5579067800330422,1.5578669665703306,1.5578267307529408,1.5548816989534244,1.554678548825311,1.5545169208911234,1.5523458969883257,1.5520615687803727,1.5518818151869334,1.5503154300056088,1.5500135027931186,1.5498924830998306,1.54890192534971,1.548658894299773,1.548658894299773,1.5483762413910704,1.5483253834744093,1.5484928826182167,1.5491283039967638,1.5493368841748238,1.5497140639806335,1.55149563644057,1.5517815112285533,1.5521933683038225,1.5553038284326024,1.5554745540401407,1.5557020652188513,1.5585556995559338,1.5601166285456833,1.5602561992675548,1.5604820619000104,1.5653056967012167,1.565970340136127,1.5670064651391757,1.570763185781551,1.5720024453798271,1.5737701806339799,1.576204920438276,1.5779375899264898,1.5799408706075488,1.581087645840729,1.5829672349692703,1.5842567021389091,1.5845510451934612,1.5858331490240958,1.5855706739293107,1.585535016330606,1.5851232428224615,1.5828870106828181,1.5819759540484193,1.5797319816312778,1.5764486139677651,1.5715316164743212,1.569210742055081,1.5669996668893709,1.5585556995559338,1.5552592725323193,1.5544647626224095,1.552781524869355,1.5428193630818758,1.5384832234360943,1.5308561393846225,1.5304098613051003,1.5235041624148349,1.5201999305562848,1.516267462036685,1.5143345081555464,1.5156615517211924,1.5166282490486922,1.5171884221828678,1.5273171174849147,1.528562185557464,1.5382186076676114,1.546777076931241,1.5585556995559338,1.5720893532901594,1.583436371763462,1.6010926555991305,1.6162200117246415,1.6326698508298372,1.6532844757818537,1.6653943576332675,1.67388432389335,1.6992055923888407,1.723166871043127,1.7315486360620578,1.7330831604963959,1.7352504990432283,1.7662104217188763,1.7892129482307655,1.7990148951580172,1.811380996879929,1.8294116454733653,1.8468772603994732,1.858358029488382,1.86952854456738,1.8833448408434132,1.904541572568181,1.9060783760958304,1.799927433299413,1.7892129482307655,1.7833261625714827,1.7809073366919672,1.7591574218198294,1.7500743745980434,1.7357475662658612,1.7335588424804294,1.7315486360620578,1.7040847073122083,1.7026198648848427,1.67388432389335,1.6716914688205704,1.6690064961218316,1.6383152762917104,1.6162200117246415,1.604682605490852,1.5882991954368069,1.5710907718022695,1.5585556995559338,1.538157498405058,1.5114855527488937,1.5060309208708769,1.500891387387226,1.477746953109015,1.4559166802850458,1.4512153289396177,1.4432270752185183,1.431067115298783,1.4248914059281366,1.4214608315449442,1.4189741431111398,1.4137952011263395,1.414504974160971,1.4145105512833207,1.4166586194402977,1.4208955868046709,1.4239399466626916,1.4280998880680023,1.4312634377500317,1.4432270752185183,1.443326270739615,1.4433537228058113,1.443401195784737,1.455768002550228,1.4592183643634278,1.4639272822206535,1.4667946648739814,1.4718390585226735,1.4756228341674764,1.476878036710748,1.4798163265370792,1.4811094753344487,1.4823754672262441,1.4829669494773037,1.482427916845476,1.482337563333584,1.482256369855818,1.4812529183363243,1.4804292358999418,1.4794696247233605,1.4785341186555105,1.477791919743686,1.4763875131654403,1.475854371736411,1.4754326592175375,1.4739349732274962,1.4737062877511096,1.4735365144577215,1.472050079736324,1.4717668726128026,1.4717610121701337,1.470244137723061,1.469705511434809,1.4696077639648286,1.4682013768949624,1.4674823101371115,1.4672026459333956,1.4660148787415648,1.4653341041177925,1.464906750286333,1.464074148929726,1.4636034445872483,1.4632035407889208,1.462782524838404,1.4625732329185648,1.4623657441023465,1.4623199470164958,1.4625726337689238,1.4626027377153004,1.4626335290946524,1.463135674243111,1.4633793143883111,1.4636582306115877,1.4644583532717506,1.4648893523884667,1.4655214406667292,1.4667550555927176,1.4672500509897666,1.468425848855761,1.470150428548561,1.470386830492099,1.4721796967215641,1.4737902444285997,1.4740089822958784,1.4757475872960533,1.4763540647746125,1.4765717520113308,1.4772605327126986,1.4759866385863565,1.4756421813377147,1.4744841442860044,1.4700018789224667,1.46917455283026,1.4653177466469747,1.460162805812899,1.4497517262867325,1.4479743554123758,1.446515295336407,1.4432270752185183,1.4279695037895492,1.4206277140324546,1.4066242860958478,1.3855627630498106,1.3833943992349114,1.381689205757144,1.3554696734963643,1.327898450881102,1.3272889355082147,1.3265322638203059,1.2944281931194612,1.2702341387123943,1.2601863275062182,1.2407318924322461,1.2225233029113807,1.2125698265436866,1.1896074448435585,1.1808736642055284,1.154905514374979,1.135132679586587,1.1137907859306826,1.0972412022062703,1.0820467866794554,1.0552337902728612,1.0395768900375626,1.0181576516852915,1.0057123012185918,0.9819125778688549,0.9616331485196965,0.930789162450298,0.9242482657001472,0.921753702215232,0.917848586655841,0.8870523446965852,0.8665839535314395,0.8544185716687687,0.8414664643442138,0.8258142583765626,0.8089196413627309,0.7993156075264003,0.7921820147004319,0.7767825198357685,0.7667319023050712,0.7566116547867252,0.7547784103042456,0.7512553291940232,0.7358462001732429,0.7284172315602597,0.7186115816550691,0.7136986219622896,0.705139941922444,0.7021669197022344,0.6935910170253154,0.6871907320258215,0.6849086725738229,0.68120830219768,0.6735376108770863,0.6674403252130547,0.6613407161426581,0.6591817731132164,0.6537670725865525,0.6513127023632945,0.6462086500260424,0.644741923172472,0.644253956808388,0.6417012488087828,0.6415063087559205,0.6420600743264271,0.6446967769524372,0.6452375534099608,0.6479449245973004,0.6534547025948667,0.6568893370302802,0.6665750825351777,0.6686052346768618,0.67682226644739,0.6821458749492342,0.6935910170253154,0.7003928907205856,0.7035164960643883,0.7141355768136468,0.7196450208313991,0.7326168568029288,0.7385779672022394,0.7512553291940232,0.7568238255946382,0.759312883280753,0.7632879606175411,0.7712372150786293,0.777429899907983,0.781395096778192,0.7818352564200777,0.7846573910693428,0.7807101031084405,0.7806125752333926,0.7782071476111914,0.7705578598349674,0.7580472053738054,0.7556649291381641,0.7539222586067726,0.7512553291940232,0.7292253431769598,0.7124241205493687,0.7030544902025722,0.6935910170253154,0.6736035035704222,0.6521883761026954,0.6433947341033459,0.6359267048566073,0.6120941940127351,0.5837252956810159,0.580687323004633,0.5782623926878996,0.5582765855446481,0.5483280104521602,0.5205980805191914,0.5158099765677702,0.5093716925829566,0.4809455372421292,0.4629337683504837,0.44446011032131594,0.4095148649718334,0.4065180913211197,0.405269456181776,0.402856387062128,0.3629292941607227,0.34760514401306786,0.3235061173391691,0.31579797866534687,0.28994083184436015,0.26532068401294806,0.25643112044246674,0.232276519675652,0.2112928102904985,0.19629749567816468,0.17461220750694428,0.15132081127763408,0.14152208936924016,0.11694789533823613,0.0908413276956983,0.08447111253126227,0.05928358316952842,0.04269498588691745,0.01175754970012477,0.001619271000820266,-0.004404192858243228,-0.028727005986978416,-0.05023909909374069,-0.056045041167887444,-0.0656515870320109,-0.09566520110793464,-0.11370935333659515,-0.141969284570032,-0.14344122645602253,-0.1713736655053033,-0.18859651407295708,-0.21732386497707612,-0.22903797767401102,-0.2369093238356883,-0.2861720928965452,-0.28670228984271917,-0.2870977821945342,-0.2909356083585988,-0.33883850698176854,-0.3443666020114269,-0.350889119003436,-0.3926305841667985,-0.40203091418013503,-0.41238792338034447,-0.44818371983389627,-0.45969522634884274,-0.47176766488567745,-0.5050262511997738,-0.5173595385175505,-0.5298657759815124,-0.5626767149107059,-0.5750238506862586,-0.5874090292766083,-0.6206024040110818,-0.6326881628549663,-0.6448429681063028,-0.6785163405923513,-0.6903524750236745,-0.7022579487396392,-0.7364844807206299,-0.7480167871923822,-0.759523755303285,-0.7947737427148267,-0.8056810993610903,-0.816359318419476,-0.8537895900851749,-0.863345411529798,-0.8724374107750985,-0.914040055256403,-0.9210097236985058,-0.9274354391113384,-0.9762400111537666,-0.9786740358672139,-0.9807974665072572,-0.9979591703197426,-1.0316042756449604,-1.0363383480359216,-1.0442710201500152,-1.0786586910804177,-1.0940026602046298,-1.1211864755735794,-1.1270230604008815,-1.1516669723733375,-1.1621563849895615,-1.1799820074441043,-1.1947864500062524,-1.2093312845420456,-1.2214500435807598,-1.2302385571984855,-1.23730068176015,-1.237771131389318,-1.2484315213453647,-1.2488905809132067,-1.2494487140424229,-1.251669962475518,-1.2505578501627164,-1.2480008474274698,-1.245816157470716,-1.23953032070006,-1.2390159542168901,-1.2325313946985028,-1.2262138480752438,-1.2119228897711718,-1.2110149192484858,-1.2104352322290048,-1.2093312845420456,-1.1901167513665398,-1.1796411062267809,-1.1674973751080917,-1.1516669723733375,-1.142119466324818,-1.134295084784379,-1.1135329747177587,-1.0940026602046298,-1.0834893343959071,-1.0715389437502636,-1.0512041324599148,-1.0363383480359216,-1.0174709344176627,-0.990220948840753,-0.9830635826376208,-0.9786740358672139,-0.9617393940747374,-0.9470015711368722,-0.9210097236985058,-0.9110948403254842,-0.8940992918086903,-0.8741857008410614,-0.863345411529798,-0.8359336041399459,-0.8303318174225769,-0.8056810993610903,-0.7977494183862865,-0.780594224287174,-0.7581872620119041,-0.7480167871923822,-0.7246330410195356,-0.7168831999886631,-0.6903524750236745,-0.6748522658371909,-0.6360092676047207,-0.6326881628549663,-0.6309591520051567,-0.624206904947207,-0.5855158917359424,-0.5750238506862586,-0.5584146626048576,-0.5383455572768643,-0.5173595385175505,-0.4898018123259309,-0.48674971751708274,-0.45969522634884274,-0.4403901355008353,-0.4179593370342305,-0.40203091418013503,-0.39047650464296435,-0.34950959895478473,-0.3443666020114269,-0.34073863094498824,-0.32067541828826096,-0.29247612923246624,-0.28670228984271917,-0.2777387211768336,-0.24577631087353735,-0.22903797767401102,-0.20087447362403,-0.19983219526487472,-0.1713736655053033,-0.15501047849560168,-0.11975966078140043,-0.11370935333659515,-0.1105502939717784,-0.10045418016489238,-0.06746717126133905,-0.056045041167887444,-0.0332484062689824,-0.024317792740000232,0.001619271000820266,0.01865126454196986,0.053734181035087314,0.05928358316952842,0.06200719222068951,0.0703123073527081,0.10464214290982765,0.11694789533823613,0.14238466980287035,0.1473698385026032,0.17461220750694428,0.18969543153374646,0.23127354457361005,0.23198717138352132,0.232276519675652,0.23298085942573943,0.2721061811316887,0.28994083184436015,0.3117761395250538,0.3380052349980964,0.34760514401306786,0.350926794088001,0.35744363614961916,0.3876738946615834,0.405269456181776,0.4239752448026759,0.45543757807110685,0.45987049226036936,0.4629337683504837,0.4776491469876327,0.4945463158459025,0.5205980805191914,0.5294900532616253,0.5445725045152083,0.5648916124474841,0.5782623926878996,0.6020147563058829,0.6221080273912372,0.6359267048566073,0.6406069490357122,0.6537124101093319,0.6822806696842201,0.6935910170253154,0.712885723303482,0.728234972568742,0.7512553291940232,0.7788701251693646,0.7814389418436813,0.8089196413627309,0.8345832511009461,0.8405840363150756,0.8665839535314395,0.8930332378025558,0.8985882500194875,0.9242482657001472,0.9423253872502673,0.969762029064825,0.9819125778688549,0.989630247775851,1.02030923921301,1.0361730753014853,1.0395768900375626,1.0448766217737506,1.0837559945369493,1.0972412022062703,1.1173597425735484,1.132117196623144,1.154905514374979,1.1817769146642303,1.1863606043602952,1.2125698265436866,1.232971119846066,1.2518097864576947,1.2702341387123943,1.2854794284423385,1.3151417434680348,1.327898450881102,1.3386582799655895,1.3782871825500993,1.3855627630498106,1.3915413018783904,1.443051941598593,1.443209567398824,1.4432270752185183,1.4432511331561613,1.4929473712000916,1.500891387387226,1.513384157794523,1.5401367986364112,1.5585556995559338,1.5847507166075396,1.5927717452571772,1.6162200117246415,1.6278468271424402,1.655077340780689,1.6674528139297293,1.67388432389335,1.7022135095818816,1.7054636740581368,1.7315486360620578,1.7365690950920292,1.7426430666302077,1.7630140197635975,1.7814222501719699,1.7876882647124623,1.7880855841136678,1.7892129482307655,1.8023214791931195,1.8065928008053729,1.8059463427557705,1.8049739585094309,1.8042212516629168,1.799927433299413,1.799927433299413,1.8042212516629168,1.8049739585094309,1.8059463427557705,1.8065928008053729,1.8023214791931195,1.7892129482307655,1.7880855841136678,1.7876882647124623,1.7814222501719699,1.7630140197635975,1.7426430666302077,1.7365690950920292,1.7315486360620578,1.7054636740581368,1.7022135095818816,1.67388432389335,1.6674528139297293,1.655077340780689,1.6278468271424402,1.6162200117246415,1.5927717452571772,1.5847507166075396,1.5585556995559338,1.5401367986364112,1.513384157794523,1.500891387387226,1.4929473712000916,1.4432511331561613,1.4432270752185183,1.443209567398824,1.443051941598593,1.3915413018783904,1.3855627630498106,1.3782871825500993,1.3386582799655895,1.327898450881102,1.3151417434680348,1.2854794284423385,1.2702341387123943,1.2518097864576947,1.232971119846066,1.2125698265436866,1.1863606043602952,1.1817769146642303,1.154905514374979,1.132117196623144,1.1173597425735484,1.0972412022062703,1.0837559945369493,1.0448766217737506,1.0395768900375626,1.0361730753014853,1.02030923921301,0.989630247775851,0.9819125778688549,0.969762029064825,0.9423253872502673,0.9242482657001472,0.8985882500194875,0.8930332378025558,0.8665839535314395,0.8405840363150756,0.8345832511009461,0.8089196413627309,0.7814389418436813,0.7788701251693646,0.7512553291940232,0.728234972568742,0.712885723303482,0.6935910170253154,0.6822806696842201,0.6537124101093319,0.6406069490357122,0.6359267048566073,0.6221080273912372,0.6020147563058829,0.5782623926878996,0.5648916124474841,0.5445725045152083,0.5294900532616253,0.5205980805191914,0.4945463158459025,0.4776491469876327,0.4629337683504837,0.45987049226036936,0.45543757807110685,0.4239752448026759,0.405269456181776,0.3876738946615834,0.35744363614961916,0.350926794088001,0.34760514401306786,0.3380052349980964,0.3117761395250538,0.28994083184436015,0.2721061811316887,0.23298085942573943,0.232276519675652,0.23198717138352132,0.23127354457361005,0.18969543153374646,0.17461220750694428,0.1473698385026032,0.14238466980287035,0.11694789533823613,0.10464214290982765,0.0703123073527081,0.06200719222068951,0.05928358316952842,0.053734181035087314,0.01865126454196986,0.001619271000820266,-0.024317792740000232,-0.0332484062689824,-0.056045041167887444,-0.06746717126133905,-0.10045418016489238,-0.1105502939717784,-0.11370935333659515,-0.11975966078140043,-0.15501047849560168,-0.1713736655053033,-0.19983219526487472,-0.20087447362403,-0.22903797767401102,-0.24577631087353735,-0.2777387211768336,-0.28670228984271917,-0.29247612923246624,-0.32067541828826096,-0.34073863094498824,-0.3443666020114269,-0.34950959895478473,-0.39047650464296435,-0.40203091418013503,-0.4179593370342305,-0.4403901355008353,-0.45969522634884274,-0.48674971751708274,-0.4898018123259309,-0.5173595385175505,-0.5383455572768643,-0.5584146626048576,-0.5750238506862586,-0.5855158917359424,-0.624206904947207,-0.6309591520051567,-0.6326881628549663,-0.6360092676047207,-0.6748522658371909,-0.6903524750236745,-0.7168831999886631,-0.7246330410195356,-0.7480167871923822,-0.7581872620119041,-0.780594224287174,-0.7977494183862865,-0.8056810993610903,-0.8303318174225769,-0.8359336041399459,-0.863345411529798,-0.8741857008410614,-0.8940992918086903,-0.9110948403254842,-0.9210097236985058,-0.9470015711368722,-0.9617393940747374,-0.9786740358672139,-0.9830635826376208,-0.990220948840753,-1.0174709344176627,-1.0363383480359216,-1.0512041324599148,-1.0715389437502636,-1.0834893343959071,-1.0940026602046298,-1.1135329747177587,-1.134295084784379,-1.142119466324818,-1.1516669723733375,-1.1674973751080917,-1.1796411062267809,-1.1901167513665398,-1.2093312845420456,-1.2104352322290048,-1.2110149192484858,-1.2119228897711718,-1.2262138480752438,-1.2325313946985028,-1.2390159542168901,-1.23953032070006,-1.245816157470716,-1.2480008474274698,-1.2505578501627164,-1.251669962475518,-1.2494487140424229,-1.2488905809132067,-1.2484315213453647,-1.237771131389318,-1.23730068176015,-1.2302385571984855,-1.2214500435807598,-1.2093312845420456,-1.1947864500062524,-1.1799820074441043,-1.1621563849895615,-1.1516669723733375,-1.1270230604008815,-1.1211864755735794,-1.0940026602046298,-1.0786586910804177,-1.0442710201500152,-1.0363383480359216,-1.0316042756449604,-0.9979591703197426,-0.9807974665072572,-0.9786740358672139,-0.9762400111537666,-0.9274354391113384,-0.9210097236985058,-0.914040055256403,-0.8724374107750985,-0.863345411529798,-0.8537895900851749,-0.816359318419476,-0.8056810993610903,-0.7947737427148267,-0.759523755303285,-0.7480167871923822,-0.7364844807206299,-0.7022579487396392,-0.6903524750236745,-0.6785163405923513,-0.6448429681063028,-0.6326881628549663,-0.6206024040110818,-0.5874090292766083,-0.5750238506862586,-0.5626767149107059,-0.5298657759815124,-0.5173595385175505,-0.5050262511997738,-0.47176766488567745,-0.45969522634884274,-0.44818371983389627,-0.41238792338034447,-0.40203091418013503,-0.3926305841667985,-0.350889119003436,-0.3443666020114269,-0.33883850698176854,-0.2909356083585988,-0.2870977821945342,-0.28670228984271917,-0.2861720928965452,-0.2369093238356883,-0.22903797767401102,-0.21732386497707612,-0.18859651407295708,-0.1713736655053033,-0.14344122645602253,-0.141969284570032,-0.11370935333659515,-0.09566520110793464,-0.0656515870320109,-0.056045041167887444,-0.05023909909374069,-0.028727005986978416,-0.004404192858243228,0.001619271000820266,0.01175754970012477,0.04269498588691745,0.05928358316952842,0.08447111253126227,0.0908413276956983,0.11694789533823613,0.14152208936924016,0.15132081127763408,0.17461220750694428,0.19629749567816468,0.2112928102904985,0.232276519675652,0.25643112044246674,0.26532068401294806,0.28994083184436015,0.31579797866534687,0.3235061173391691,0.34760514401306786,0.3629292941607227,0.402856387062128,0.405269456181776,0.4065180913211197,0.4095148649718334,0.44446011032131594,0.4629337683504837,0.4809455372421292,0.5093716925829566,0.5158099765677702,0.5205980805191914,0.5483280104521602,0.5582765855446481,0.5782623926878996,0.580687323004633,0.5837252956810159,0.6120941940127351,0.6359267048566073,0.6433947341033459,0.6521883761026954,0.6736035035704222,0.6935910170253154,0.7030544902025722,0.7124241205493687,0.7292253431769598,0.7512553291940232,0.7539222586067726,0.7556649291381641,0.7580472053738054,0.7705578598349674,0.7782071476111914,0.7806125752333926,0.7807101031084405,0.7846573910693428,0.7818352564200777,0.781395096778192,0.777429899907983,0.7712372150786293,0.7632879606175411,0.759312883280753,0.7568238255946382,0.7512553291940232,0.7385779672022394,0.7326168568029288,0.7196450208313991,0.7141355768136468,0.7035164960643883,0.7003928907205856,0.6935910170253154,0.6821458749492342,0.67682226644739,0.6686052346768618,0.6665750825351777,0.6568893370302802,0.6534547025948667,0.6479449245973004,0.6452375534099608,0.6446967769524372,0.6420600743264271,0.6415063087559205,0.6417012488087828,0.644253956808388,0.644741923172472,0.6462086500260424,0.6513127023632945,0.6537670725865525,0.6591817731132164,0.6613407161426581,0.6674403252130547,0.6735376108770863,0.68120830219768,0.6849086725738229,0.6871907320258215,0.6935910170253154,0.7021669197022344,0.705139941922444,0.7136986219622896,0.7186115816550691,0.7284172315602597,0.7358462001732429,0.7512553291940232,0.7547784103042456,0.7566116547867252,0.7667319023050712,0.7767825198357685,0.7921820147004319,0.7993156075264003,0.8089196413627309,0.8258142583765626,0.8414664643442138,0.8544185716687687,0.8665839535314395,0.8870523446965852,0.917848586655841,0.921753702215232,0.9242482657001472,0.930789162450298,0.9616331485196965,0.9819125778688549,1.0057123012185918,1.0181576516852915,1.0395768900375626,1.0552337902728612,1.0820467866794554,1.0972412022062703,1.1137907859306826,1.135132679586587,1.154905514374979,1.1808736642055284,1.1896074448435585,1.2125698265436866,1.2225233029113807,1.2407318924322461,1.2601863275062182,1.2702341387123943,1.2944281931194612,1.3265322638203059,1.3272889355082147,1.327898450881102,1.3554696734963643,1.381689205757144,1.3833943992349114,1.3855627630498106,1.4066242860958478,1.4206277140324546,1.4279695037895492,1.4432270752185183,1.446515295336407,1.4479743554123758,1.4497517262867325,1.460162805812899,1.4653177466469747,1.46917455283026,1.4700018789224667,1.4744841442860044,1.4756421813377147,1.4759866385863565,1.4772605327126986,1.4765717520113308,1.4763540647746125,1.4757475872960533,1.4740089822958784,1.4737902444285997,1.4721796967215641,1.470386830492099,1.470150428548561,1.468425848855761,1.4672500509897666,1.4667550555927176,1.4655214406667292,1.4648893523884667,1.4644583532717506,1.4636582306115877,1.4633793143883111,1.463135674243111,1.4626335290946524,1.4626027377153004,1.4625726337689238,1.4623199470164958,1.4623657441023465,1.4625732329185648,1.462782524838404,1.4632035407889208,1.4636034445872483,1.464074148929726,1.464906750286333,1.4653341041177925,1.4660148787415648,1.4672026459333956,1.4674823101371115,1.4682013768949624,1.4696077639648286,1.469705511434809,1.470244137723061,1.4717610121701337,1.4717668726128026,1.472050079736324,1.4735365144577215,1.4737062877511096,1.4739349732274962,1.4754326592175375,1.475854371736411,1.4763875131654403,1.477791919743686,1.4785341186555105,1.4794696247233605,1.4804292358999418,1.4812529183363243,1.482256369855818,1.482337563333584,1.482427916845476,1.4829669494773037,1.4823754672262441,1.4811094753344487,1.4798163265370792,1.476878036710748,1.4756228341674764,1.4718390585226735,1.4667946648739814,1.4639272822206535,1.4592183643634278,1.455768002550228,1.443401195784737,1.4433537228058113,1.443326270739615,1.4432270752185183,1.4312634377500317,1.4280998880680023,1.4239399466626916,1.4208955868046709,1.4166586194402977,1.4145105512833207,1.414504974160971,1.4137952011263395,1.4189741431111398,1.4214608315449442,1.4248914059281366,1.431067115298783,1.4432270752185183,1.4512153289396177,1.4559166802850458,1.477746953109015,1.500891387387226,1.5060309208708769,1.5114855527488937,1.538157498405058,1.5585556995559338,1.5710907718022695,1.5882991954368069,1.604682605490852,1.6162200117246415,1.6383152762917104,1.6690064961218316,1.6716914688205704,1.67388432389335,1.7026198648848427,1.7040847073122083,1.7315486360620578,1.7335588424804294,1.7357475662658612,1.7500743745980434,1.7591574218198294,1.7809073366919672,1.7833261625714827,1.7892129482307655,1.799927433299413,1.6811394819574388,1.67388432389335,1.6628532882407376,1.6576209297528712,1.6379995013835589,1.6162200117246415,1.6104939046318099,1.6050144022755295,1.5790003711119707,1.5585556995559338,1.546569523804369,1.5308951336626486,1.5133184860099695,1.500891387387226,1.4798775261427113,1.4512722678331609,1.4468344372055975,1.4432270752185183,1.4163606267751558,1.386605489722347,1.3861398206584412,1.3855627630498106,1.3622579742037462,1.3458335323412913,1.3411692557451071,1.327898450881102,1.3263135755291198,1.3258162350258922,1.3257957860143876,1.3222304503114795,1.3218254222945185,1.322470380063709,1.327898450881102,1.3285778991580783,1.3286565012212095,1.3288611809067628,1.3392003378707495,1.3417741873906723,1.3467581188362865,1.3508500376894816,1.356774196567597,1.3623735351595978,1.3659661291860483,1.3701520020926288,1.3723455672188591,1.378559932191132,1.3793576906920966,1.3797051949204948,1.3830139983532903,1.3830139983532903,1.3827286673452215,1.3814124002082822,1.3813046061673728,1.380612458979718,1.3770058002297731,1.3763068846969717,1.3751602812061372,1.3724836796750108,1.3714595520752684,1.37102735561874,1.3701504331263483,1.369662803653347,1.3700036830533766,1.3705983023954906,1.3714158889219417,1.3721217458965422,1.373827879562573,1.3750129055764835,1.3755130556737876,1.3774804858435616,1.3783033457194658,1.3784829787210193,1.3796155462964408,1.380047341749623,1.380047341749623,1.3799674447741537,1.3801582073062186,1.3801582073062186,1.3793340339870386,1.3792727629613428,1.3792383242473165,1.378315813008156,1.3781641924677381,1.3781052625322308,1.3774560727174427,1.3773310664079461,1.3772872901883972,1.3770130967286938,1.37695569442555,1.3769931000360383,1.3771707624968648,1.3771815463972952,1.3773574233902237,1.3782610411283103,1.378376915832494,1.3786929390664153,1.3808109794159233,1.3810027551482968,1.3812993978798702,1.3849740453307722,1.3850127389623403,1.3850498726909906,1.3855627630498106,1.388726363489098,1.3889397442812057,1.3890398508654482,1.3905077198031894,1.3906551246399403,1.3903740577151598,1.3873934262607386,1.3872977181798256,1.3870190518918029,1.3855627630498106,1.377068699524346,1.375269626969827,1.3677844495159248,1.3615090657197206,1.351975001179214,1.3427485337166716,1.327898450881102,1.3196140008504718,1.313156596575475,1.2913786450986362,1.2702341387123943,1.2606750222273297,1.2464666845356365,1.2251111884449322,1.2125698265436866,1.1841976001679106,1.1828230291105624,1.154905514374979,1.1385211066522634,1.1105370944830661,1.0972412022062703,1.083469090291946,1.0561364134290474,1.0395768900375626,1.0107627599652171,1.0107057209373793,0.9819125778688549,0.9696031384316899,0.9488662710098352,0.9342495386776233,0.9242482657001472,0.9035555241755318,0.8822812249203449,0.875204876773148,0.8665839535314395,0.8510780721620814,0.8406403161133524,0.8298513629757918,0.8130438379922418,0.8108257493668138,0.8102822995388634,0.8089196413627309,0.7944686695239356,0.7890351729643332,0.7810513455384593,0.7806312212801623,0.7727480420721657,0.7691315960251366,0.7635745300589512,0.7613520900527351,0.7603565654898605,0.7555099546197228,0.7551682093198027,0.755255458313127,0.7550818011853271,0.7550818011853271,0.7557064872707273,0.7609606465759695,0.7621326948203468,0.7660850043728704,0.7717621366738463,0.7769762511528753,0.7859142566047406,0.7933185801462463,0.7992557680711019,0.8023844597258161,0.8089196413627309,0.8210741567821516,0.8269078444870641,0.8399598191572513,0.8442066072972145,0.8553201096160685,0.8587448506887063,0.8665839535314395,0.8762200006000582,0.8803939841201536,0.8867577683252459,0.8909513543911189,0.8987381440857756,0.9027827213500559,0.9062032926867007,0.9092346775501121,0.9096996726016777,0.9110738932688638,0.9110738932688638,0.9075561207659271,0.9047158746070694,0.9021283103335649,0.8912433281770666,0.884648387378141,0.8779557263122277,0.873193244169959,0.8665839535314395,0.8481807155719792,0.8337562677677615,0.8209636544814498,0.8089196413627309,0.7909661218733555,0.7712247236545382,0.7601564778771279,0.7512553291940232,0.7283749252306171,0.7004160695163804,0.6965729599487016,0.6935910170253154,0.6695408465888728,0.6641482815745161,0.6359267048566073,0.6315779463588891,0.6257825730209938,0.597276363564013,0.5782623926878996,0.5618530799173516,0.5336827795190424,0.5248557662762998,0.5205980805191914,0.5108265912919672,0.4833790806505811,0.4629337683504837,0.4394761409154606,0.4251877855760746,0.405269456181776,0.3930461713263429,0.35415525654030633,0.34760514401306786,0.34267043318193036,0.29233943762788295,0.28994083184436015,0.2878392527346647,0.23629788467664836,0.232276519675652,0.2281013597873689,0.1837560677873311,0.17461220750694428,0.1630249767940568,0.13382191073534422,0.11694789533823613,0.09229801268389215,0.08554790114368904,0.05928358316952842,0.039091914867718014,0.016233663457361658,0.001619271000820266,-0.006609809066187022,-0.03649346703449341,-0.05164889130914885,-0.056045041167887444,-0.06370767426048873,-0.09638243457654827,-0.11370935333659515,-0.14195213932007356,-0.14351707647932033,-0.1713736655053033,-0.18798127331258963,-0.21905592057133916,-0.22903797767401102,-0.23556969718019571,-0.27484692880943173,-0.2849177779468759,-0.28670228984271917,-0.2890443630067616,-0.33628652775850254,-0.3443666020114269,-0.35401906955726004,-0.38992324234337916,-0.40203091418013503,-0.4153459644491999,-0.4456588671077264,-0.45969522634884274,-0.47403641541398844,-0.503281682779221,-0.5173595385175505,-0.5310373463837612,-0.5622592186510196,-0.5750238506862586,-0.5872424530118345,-0.6218572447404411,-0.6326881628549663,-0.6429563515308332,-0.681875694220675,-0.6903524750236745,-0.6983368706567523,-0.7423321057396199,-0.7480167871923822,-0.753305622661046,-0.8035955798301302,-0.8056810993610903,-0.8075726121792011,-0.8300102927473807,-0.8604587970285391,-0.863345411529798,-0.8673686763343365,-0.9110165148989537,-0.9210097236985058,-0.9369593882922445,-0.9584032272524325,-0.9786740358672139,-1.0026322660721596,-1.018619786130166,-1.0363383480359216,-1.0444699503441366,-1.0598022884091138,-1.0780904716322386,-1.0940026602046298,-1.1064479979881292,-1.116465291974082,-1.1245491925157833,-1.126005421871715,-1.1361318232152287,-1.136135188153971,-1.1361409524157113,-1.1373986653127153,-1.1341577976694528,-1.1302232127930192,-1.125714069069912,-1.1164749246798729,-1.1075941835540855,-1.1021137746048324,-1.099006292901331,-1.0940026602046298,-1.076523207976034,-1.065259147699971,-1.0516634901797426,-1.0363383480359216,-1.0243752938258166,-1.0134517473728946,-0.9947997611861066,-0.9786740358672139,-0.9637489157918031,-0.9461698430562269,-0.9314802199362044,-0.9210097236985058,-0.8975345025255645,-0.863632815351707,-0.8634544822202601,-0.863345411529798,-0.8629365380840812,-0.8272963346699465,-0.8056810993610903,-0.7905845091263757,-0.7624170772090157,-0.752789058174681,-0.7480167871923822,-0.7358550288020034,-0.7127538437162171,-0.6903524750236745,-0.671595193780735,-0.640567082490934,-0.6326881628549663,-0.6288664554983452,-0.6153989603558383,-0.5839040816342123,-0.5750238506862586,-0.5607199193957508,-0.5369732141412569,-0.5173595385175505,-0.48857388824098447,-0.48849512006720097,-0.45969522634884274,-0.4391036434053093,-0.4197402909665042,-0.40203091418013503,-0.3891539845797096,-0.3514308093479186,-0.3443666020114269,-0.3393665001075803,-0.3114155762938413,-0.2907094334094258,-0.28670228984271917,-0.28059511976803364,-0.24369539699173215,-0.22903797767401102,-0.2047987906808646,-0.19756711232018453,-0.1713736655053033,-0.1524160079605137,-0.12472995127756192,-0.11370935333659515,-0.10779556735827489,-0.08846217552724189,-0.06412598640929845,-0.056045041167887444,-0.0401830050408889,-0.020759970646189174,0.001619271000820266,0.022635206542684916,0.045680376468338224,0.05928358316952842,0.06619342377337789,0.08777340362404562,0.10949877356476856,0.11694789533823613,0.13196433403274677,0.15254207833088973,0.17461220750694428,0.19537802602211585,0.2201884718886502,0.232276519675652,0.23795430304514031,0.253017764291088,0.2793509787977615,0.28994083184436015,0.3161094356697234,0.3198189200021262,0.34760514401306786,0.3596653068628233,0.3851779559143358,0.3984206758646538,0.405269456181776,0.428004278813678,0.4358882896511318,0.4629337683504837,0.47310323528853937,0.4913685223193287,0.5095325032589195,0.5205980805191914,0.5460456884002585,0.5616519862794913,0.5782623926878996,0.5829317985539793,0.5922480877611647,0.620839645074597,0.6359267048566073,0.660963174389233,0.6732594919404993,0.6935910170253154,0.7031297078590089,0.7410378455287234,0.7491184577150136,0.7512553291940232,0.7542147996685404,0.8002775694708517,0.8089196413627309,0.8185619881333861,0.857205581845021,0.8665839535314395,0.8747548864473145,0.9214596070157861,0.9242482657001472,0.9263107936525148,0.9372381987940739,0.9752392728345805,0.9819125778688549,0.9918293243266558,1.0231718623593893,1.0395768900375626,1.0645210594391545,1.0709860868038379,1.0972412022062703,1.1194063400645473,1.1356053753868829,1.154905514374979,1.168951711697511,1.2032090611675694,1.2125698265436866,1.2199404152638054,1.267772971631865,1.2702341387123943,1.2722800699304604,1.2956500282256305,1.3252029801050793,1.327898450881102,1.3312847340310978,1.3773712766007562,1.3855627630498106,1.396598160991664,1.4276530959700398,1.4432270752185183,1.4671555867270363,1.4752357198135786,1.500891387387226,1.5205897140924969,1.5485451551696756,1.5585556995559338,1.5633704444197343,1.5740217285712723,1.5998057182315084,1.6162200117246415,1.6329283280110896,1.6527383786002043,1.660470247196416,1.67388432389335,1.6807677699169692,1.6841294690302244,1.6841294690302244,1.6845089974918666,1.6844043959501236,1.6811394819574388,1.6811394819574388,1.6844043959501236,1.6845089974918666,1.6841294690302244,1.6841294690302244,1.6807677699169692,1.67388432389335,1.660470247196416,1.6527383786002043,1.6329283280110896,1.6162200117246415,1.5998057182315084,1.5740217285712723,1.5633704444197343,1.5585556995559338,1.5485451551696756,1.5205897140924969,1.500891387387226,1.4752357198135786,1.4671555867270363,1.4432270752185183,1.4276530959700398,1.396598160991664,1.3855627630498106,1.3773712766007562,1.3312847340310978,1.327898450881102,1.3252029801050793,1.2956500282256305,1.2722800699304604,1.2702341387123943,1.267772971631865,1.2199404152638054,1.2125698265436866,1.2032090611675694,1.168951711697511,1.154905514374979,1.1356053753868829,1.1194063400645473,1.0972412022062703,1.0709860868038379,1.0645210594391545,1.0395768900375626,1.0231718623593893,0.9918293243266558,0.9819125778688549,0.9752392728345805,0.9372381987940739,0.9263107936525148,0.9242482657001472,0.9214596070157861,0.8747548864473145,0.8665839535314395,0.857205581845021,0.8185619881333861,0.8089196413627309,0.8002775694708517,0.7542147996685404,0.7512553291940232,0.7491184577150136,0.7410378455287234,0.7031297078590089,0.6935910170253154,0.6732594919404993,0.660963174389233,0.6359267048566073,0.620839645074597,0.5922480877611647,0.5829317985539793,0.5782623926878996,0.5616519862794913,0.5460456884002585,0.5205980805191914,0.5095325032589195,0.4913685223193287,0.47310323528853937,0.4629337683504837,0.4358882896511318,0.428004278813678,0.405269456181776,0.3984206758646538,0.3851779559143358,0.3596653068628233,0.34760514401306786,0.3198189200021262,0.3161094356697234,0.28994083184436015,0.2793509787977615,0.253017764291088,0.23795430304514031,0.232276519675652,0.2201884718886502,0.19537802602211585,0.17461220750694428,0.15254207833088973,0.13196433403274677,0.11694789533823613,0.10949877356476856,0.08777340362404562,0.06619342377337789,0.05928358316952842,0.045680376468338224,0.022635206542684916,0.001619271000820266,-0.020759970646189174,-0.0401830050408889,-0.056045041167887444,-0.06412598640929845,-0.08846217552724189,-0.10779556735827489,-0.11370935333659515,-0.12472995127756192,-0.1524160079605137,-0.1713736655053033,-0.19756711232018453,-0.2047987906808646,-0.22903797767401102,-0.24369539699173215,-0.28059511976803364,-0.28670228984271917,-0.2907094334094258,-0.3114155762938413,-0.3393665001075803,-0.3443666020114269,-0.3514308093479186,-0.3891539845797096,-0.40203091418013503,-0.4197402909665042,-0.4391036434053093,-0.45969522634884274,-0.48849512006720097,-0.48857388824098447,-0.5173595385175505,-0.5369732141412569,-0.5607199193957508,-0.5750238506862586,-0.5839040816342123,-0.6153989603558383,-0.6288664554983452,-0.6326881628549663,-0.640567082490934,-0.671595193780735,-0.6903524750236745,-0.7127538437162171,-0.7358550288020034,-0.7480167871923822,-0.752789058174681,-0.7624170772090157,-0.7905845091263757,-0.8056810993610903,-0.8272963346699465,-0.8629365380840812,-0.863345411529798,-0.8634544822202601,-0.863632815351707,-0.8975345025255645,-0.9210097236985058,-0.9314802199362044,-0.9461698430562269,-0.9637489157918031,-0.9786740358672139,-0.9947997611861066,-1.0134517473728946,-1.0243752938258166,-1.0363383480359216,-1.0516634901797426,-1.065259147699971,-1.076523207976034,-1.0940026602046298,-1.099006292901331,-1.1021137746048324,-1.1075941835540855,-1.1164749246798729,-1.125714069069912,-1.1302232127930192,-1.1341577976694528,-1.1373986653127153,-1.1361409524157113,-1.136135188153971,-1.1361318232152287,-1.126005421871715,-1.1245491925157833,-1.116465291974082,-1.1064479979881292,-1.0940026602046298,-1.0780904716322386,-1.0598022884091138,-1.0444699503441366,-1.0363383480359216,-1.018619786130166,-1.0026322660721596,-0.9786740358672139,-0.9584032272524325,-0.9369593882922445,-0.9210097236985058,-0.9110165148989537,-0.8673686763343365,-0.863345411529798,-0.8604587970285391,-0.8300102927473807,-0.8075726121792011,-0.8056810993610903,-0.8035955798301302,-0.753305622661046,-0.7480167871923822,-0.7423321057396199,-0.6983368706567523,-0.6903524750236745,-0.681875694220675,-0.6429563515308332,-0.6326881628549663,-0.6218572447404411,-0.5872424530118345,-0.5750238506862586,-0.5622592186510196,-0.5310373463837612,-0.5173595385175505,-0.503281682779221,-0.47403641541398844,-0.45969522634884274,-0.4456588671077264,-0.4153459644491999,-0.40203091418013503,-0.38992324234337916,-0.35401906955726004,-0.3443666020114269,-0.33628652775850254,-0.2890443630067616,-0.28670228984271917,-0.2849177779468759,-0.27484692880943173,-0.23556969718019571,-0.22903797767401102,-0.21905592057133916,-0.18798127331258963,-0.1713736655053033,-0.14351707647932033,-0.14195213932007356,-0.11370935333659515,-0.09638243457654827,-0.06370767426048873,-0.056045041167887444,-0.05164889130914885,-0.03649346703449341,-0.006609809066187022,0.001619271000820266,0.016233663457361658,0.039091914867718014,0.05928358316952842,0.08554790114368904,0.09229801268389215,0.11694789533823613,0.13382191073534422,0.1630249767940568,0.17461220750694428,0.1837560677873311,0.2281013597873689,0.232276519675652,0.23629788467664836,0.2878392527346647,0.28994083184436015,0.29233943762788295,0.34267043318193036,0.34760514401306786,0.35415525654030633,0.3930461713263429,0.405269456181776,0.4251877855760746,0.4394761409154606,0.4629337683504837,0.4833790806505811,0.5108265912919672,0.5205980805191914,0.5248557662762998,0.5336827795190424,0.5618530799173516,0.5782623926878996,0.597276363564013,0.6257825730209938,0.6315779463588891,0.6359267048566073,0.6641482815745161,0.6695408465888728,0.6935910170253154,0.6965729599487016,0.7004160695163804,0.7283749252306171,0.7512553291940232,0.7601564778771279,0.7712247236545382,0.7909661218733555,0.8089196413627309,0.8209636544814498,0.8337562677677615,0.8481807155719792,0.8665839535314395,0.873193244169959,0.8779557263122277,0.884648387378141,0.8912433281770666,0.9021283103335649,0.9047158746070694,0.9075561207659271,0.9110738932688638,0.9110738932688638,0.9096996726016777,0.9092346775501121,0.9062032926867007,0.9027827213500559,0.8987381440857756,0.8909513543911189,0.8867577683252459,0.8803939841201536,0.8762200006000582,0.8665839535314395,0.8587448506887063,0.8553201096160685,0.8442066072972145,0.8399598191572513,0.8269078444870641,0.8210741567821516,0.8089196413627309,0.8023844597258161,0.7992557680711019,0.7933185801462463,0.7859142566047406,0.7769762511528753,0.7717621366738463,0.7660850043728704,0.7621326948203468,0.7609606465759695,0.7557064872707273,0.7550818011853271,0.7550818011853271,0.755255458313127,0.7551682093198027,0.7555099546197228,0.7603565654898605,0.7613520900527351,0.7635745300589512,0.7691315960251366,0.7727480420721657,0.7806312212801623,0.7810513455384593,0.7890351729643332,0.7944686695239356,0.8089196413627309,0.8102822995388634,0.8108257493668138,0.8130438379922418,0.8298513629757918,0.8406403161133524,0.8510780721620814,0.8665839535314395,0.875204876773148,0.8822812249203449,0.9035555241755318,0.9242482657001472,0.9342495386776233,0.9488662710098352,0.9696031384316899,0.9819125778688549,1.0107057209373793,1.0107627599652171,1.0395768900375626,1.0561364134290474,1.083469090291946,1.0972412022062703,1.1105370944830661,1.1385211066522634,1.154905514374979,1.1828230291105624,1.1841976001679106,1.2125698265436866,1.2251111884449322,1.2464666845356365,1.2606750222273297,1.2702341387123943,1.2913786450986362,1.313156596575475,1.3196140008504718,1.327898450881102,1.3427485337166716,1.351975001179214,1.3615090657197206,1.3677844495159248,1.375269626969827,1.377068699524346,1.3855627630498106,1.3870190518918029,1.3872977181798256,1.3873934262607386,1.3903740577151598,1.3906551246399403,1.3905077198031894,1.3890398508654482,1.3889397442812057,1.388726363489098,1.3855627630498106,1.3850498726909906,1.3850127389623403,1.3849740453307722,1.3812993978798702,1.3810027551482968,1.3808109794159233,1.3786929390664153,1.378376915832494,1.3782610411283103,1.3773574233902237,1.3771815463972952,1.3771707624968648,1.3769931000360383,1.37695569442555,1.3770130967286938,1.3772872901883972,1.3773310664079461,1.3774560727174427,1.3781052625322308,1.3781641924677381,1.378315813008156,1.3792383242473165,1.3792727629613428,1.3793340339870386,1.3801582073062186,1.3801582073062186,1.3799674447741537,1.380047341749623,1.380047341749623,1.3796155462964408,1.3784829787210193,1.3783033457194658,1.3774804858435616,1.3755130556737876,1.3750129055764835,1.373827879562573,1.3721217458965422,1.3714158889219417,1.3705983023954906,1.3700036830533766,1.369662803653347,1.3701504331263483,1.37102735561874,1.3714595520752684,1.3724836796750108,1.3751602812061372,1.3763068846969717,1.3770058002297731,1.380612458979718,1.3813046061673728,1.3814124002082822,1.3827286673452215,1.3830139983532903,1.3830139983532903,1.3797051949204948,1.3793576906920966,1.378559932191132,1.3723455672188591,1.3701520020926288,1.3659661291860483,1.3623735351595978,1.356774196567597,1.3508500376894816,1.3467581188362865,1.3417741873906723,1.3392003378707495,1.3288611809067628,1.3286565012212095,1.3285778991580783,1.327898450881102,1.322470380063709,1.3218254222945185,1.3222304503114795,1.3257957860143876,1.3258162350258922,1.3263135755291198,1.327898450881102,1.3411692557451071,1.3458335323412913,1.3622579742037462,1.3855627630498106,1.3861398206584412,1.386605489722347,1.4163606267751558,1.4432270752185183,1.4468344372055975,1.4512722678331609,1.4798775261427113,1.500891387387226,1.5133184860099695,1.5308951336626486,1.546569523804369,1.5585556995559338,1.5790003711119707,1.6050144022755295,1.6104939046318099,1.6162200117246415,1.6379995013835589,1.6576209297528712,1.6628532882407376,1.67388432389335,1.6811394819574388,1.510173911504061,1.500891387387226,1.4810056532527827,1.4604710296104186,1.4506022597726385,1.4432270752185183,1.4180092283087071,1.3857924092699174,1.3855627630498106,1.385531717141871,1.3854936142589032,1.3538242083873713,1.327898450881102,1.322457388148076,1.3166223628940634,1.295455256492963,1.2702341387123943,1.269223929000996,1.2684851763573204,1.2672826285313055,1.2505523480599536,1.2411526229237553,1.2373393531545482,1.2358608541771958,1.2305773688107045,1.2305773688107045,1.2314893357191052,1.2321375499720832,1.2357852485258998,1.2374431679973532,1.2417497616210427,1.247316458481175,1.2511115280120282,1.2555340809818243,1.2584209342879409,1.2694290643098687,1.2695953612576463,1.269687458926359,1.2702341387123943,1.277871557433675,1.2791331540717104,1.2802602995305663,1.2815256759636457,1.2819187812221426,1.2808005779874434,1.2764770654221258,1.2764224538416262,1.27532866474276,1.2702341387123943,1.2637239974367458,1.2618260955205804,1.2550875762193976,1.2478957113810476,1.239934346409187,1.2325071814453836,1.221945686211209,1.2192661072601676,1.2182636579205641,1.2125698265436866,1.207154251200493,1.2050909596802533,1.2056213495656238,1.2125698265436866,1.2130804947077372,1.2131205269658385,1.2133264946483862,1.2253734053717467,1.22887066963199,1.236240876754017,1.2388438598805611,1.2477036655419274,1.2522625106051515,1.2596452385878485,1.2628082664335296,1.2638385520905895,1.2702341387123943,1.2712387299971275,1.271334271549223,1.2713457902415928,1.2741008384780632,1.2743030354996914,1.2743030354996914,1.2756702970752145,1.2757878461652168,1.2757878461652168,1.2766047277143433,1.2766573113604278,1.2766573113604278,1.2772295117145238,1.2772757356884479,1.2772864144929739,1.2778156034681154,1.2779088401464107,1.2780526510297023,1.2789372503251015,1.2791243738877545,1.2795565193066811,1.2811996512695445,1.28168171414891,1.2826148331141876,1.284774378151043,1.2857957461210536,1.2871672797277056,1.2888232368177612,1.290213474702829,1.2909141506055266,1.2913210732872744,1.2918608326492103,1.2899336166989888,1.2879529298441335,1.2864444825487786,1.2827701828067322,1.2702341387123943,1.269564871516637,1.2692995629337438,1.2664397133952483,1.2451146931668045,1.2264828857908348,1.2191492071744547,1.2125698265436866,1.1872369692010722,1.1826463019488815,1.154905514374979,1.1414024108110703,1.105817231018539,1.0972412022062703,1.0878524924794468,1.0557588570826941,1.0395768900375626,1.015348118148912,0.993900101329007,0.9819125778688549,0.9790799744327354,0.9759119217766554,0.9524251758194509,0.9458626782228987,0.9277414786110589,0.9264653442122674,0.9242482657001472,0.9080331464787927,0.9006016064410294,0.8925973986028075,0.8900918456477611,0.8833235833586168,0.8808233657269251,0.8746074306612868,0.8734687026262002,0.873099903380623,0.8704221749323096,0.8703370962856707,0.870662978779499,0.8735368136723927,0.8739653003169514,0.8756363604383979,0.8818366218014178,0.8846715346557086,0.892324954419911,0.8937953200587567,0.9022866459180059,0.9085760362330855,0.9242482657001472,0.9251749799419442,0.925601713983101,0.9268226562694513,0.9446451660676272,0.9551234681509659,0.9636544792411024,0.9819125778688549,0.982030317296458,0.9820955744228876,0.9822314112351429,1.0005994201953308,1.0094781629182896,1.017139943132293,1.023772516310864,1.029653543947847,1.03171037750085,1.0395768900375626,1.0450410189913462,1.047136577870408,1.0507299777247394,1.0585242806817727,1.0638820877197124,1.0705278546105448,1.0719312233084266,1.075335027310516,1.0739245340737944,1.075021478580291,1.075021478580291,1.0611727379947031,1.0395768900375626,1.0387664665219662,1.0383511168902593,1.0075302128313317,0.9819125778688549,0.9763050196469387,0.9701948883954645,0.9419428667261687,0.9242482657001472,0.9072934643276445,0.8832026245096052,0.8728079161090263,0.8665839535314395,0.8383280828775237,0.8346264867693036,0.8089196413627309,0.8044033836101661,0.7984063312043364,0.7709206738196093,0.7512553291940232,0.7374897395028719,0.7188450317765733,0.7038115160928338,0.6935910170253154,0.6687423471305523,0.6472284758565623,0.6359267048566073,0.6333125314136683,0.6286067600334162,0.5943657497436594,0.5782623926878996,0.5530381316879631,0.5419808306984475,0.5205980805191914,0.5100042957135464,0.4674073049396501,0.4637174258057497,0.4629337683504837,0.4618986152108331,0.4126641876496753,0.405269456181776,0.3969195521584914,0.3579052733232282,0.34760514401306786,0.33709946250440526,0.2994695656944071,0.28994083184436015,0.281961996808191,0.23566196544772078,0.232276519675652,0.22980401575110676,0.21493600727978412,0.18030710598595157,0.17461220750694428,0.16656471183151433,0.13253884381632108,0.11694789533823613,0.0921040319502695,0.0858149490054334,0.05928358316952842,0.040467440642240504,0.012789577237273253,0.001619271000820266,-0.004384459932469831,-0.02434708519205886,-0.04864068530104326,-0.056045041167887444,-0.06952160293205445,-0.09305259018605128,-0.11370935333659515,-0.1379365866894151,-0.15050717952616832,-0.1713736655053033,-0.18353525157528372,-0.2268934652715453,-0.22903797767401102,-0.23042085768980458,-0.2381183836115972,-0.2792026170538371,-0.28670228984271917,-0.29671334219339984,-0.33027928045720945,-0.3443666020114269,-0.36124855414128065,-0.3837734764981118,-0.40203091418013503,-0.4218452584982666,-0.43974481460593884,-0.45969522634884274,-0.47913260416721837,-0.4985874494056586,-0.5173595385175505,-0.5348533672798177,-0.559072736428881,-0.5750238506862586,-0.5893195102063746,-0.6210334970080482,-0.6326881628549663,-0.642876232188418,-0.6841844967252717,-0.6903524750236745,-0.6956365665058097,-0.7430324343350723,-0.7474362754330803,-0.7480167871923822,-0.7488775629367801,-0.7970548900745817,-0.8056810993610903,-0.8197956976149285,-0.8441438503071361,-0.863345411529798,-0.8884821718526523,-0.9002237322966744,-0.9210097236985058,-0.9309876543250133,-0.9514296881167326,-0.9661766170383022,-0.9786740358672139,-0.9943553725836964,-1.0073699667241498,-1.012793474744413,-1.0159583158259955,-1.0226640831970815,-1.021734588856241,-1.0182991221185178,-1.0158223086211313,-1.005306626987211,-1.0024363589723309,-0.9925499586357724,-0.9869898841944846,-0.9786740358672139,-0.963935915167959,-0.9541396054459694,-0.9382374820550212,-0.9210097236985058,-0.9106078808170688,-0.9010924340911033,-0.8807187720932603,-0.863345411529798,-0.8494924775557862,-0.8329819596065042,-0.8168431584892457,-0.8056810993610903,-0.782077245095862,-0.7527831477559634,-0.7480167871923822,-0.7469771879818783,-0.7451931944172405,-0.7086792927255625,-0.6903524750236745,-0.6689604166328933,-0.6437871833720252,-0.6326881628549663,-0.6279334923892006,-0.613589494130665,-0.5840778244164615,-0.5750238506862586,-0.559791235357638,-0.5379066832401711,-0.5173595385175505,-0.4901129321564781,-0.48624981420204216,-0.45969522634884274,-0.4412634589658313,-0.4165513189662362,-0.40203091418013503,-0.39170222130261756,-0.34752846300243023,-0.3443666020114269,-0.3421689646916959,-0.3303800720795236,-0.2936925489435511,-0.28670228984271917,-0.2760977189417795,-0.24636225741518603,-0.22903797767401102,-0.20061749614873658,-0.19996421509568751,-0.1713736655053033,-0.15449969406074704,-0.1211944428218632,-0.11370935333659515,-0.10957849115483631,-0.09569634898967783,-0.06550532880215432,-0.056045041167887444,-0.03797842433053766,-0.021574536661709498,0.001619271000820266,0.022398965859734332,0.04573887883621852,0.05928358316952842,0.06652459105561714,0.0901803772019325,0.1104428477463748,0.11694789533823613,0.129661172672634,0.15411137201367753,0.17461220750694428,0.19749851253162465,0.21547597907045857,0.232276519675652,0.24055170603029952,0.263229099094882,0.2826485542391084,0.28994083184436015,0.30700520527281494,0.3237459420003188,0.34760514401306786,0.36425562808940803,0.4013666833417977,0.4040196747603848,0.405269456181776,0.40898745810210757,0.4425143968219749,0.4629337683504837,0.4807194896199154,0.5147799814041893,0.5185175481944455,0.5205980805191914,0.5276857752261779,0.5559520476303135,0.5782623926878996,0.5938614649441298,0.6253004898204066,0.6323292991434046,0.6359267048566073,0.6450436416091696,0.6729587329801032,0.6935910170253154,0.7158700821025681,0.7340773494049722,0.7512553291940232,0.7619598115252502,0.8042956246121453,0.8089196413627309,0.8128138793653874,0.8632089315669957,0.8665839535314395,0.8702688722111307,0.9159234926405024,0.9242482657001472,0.9353633892766884,0.965435879551412,0.9819125778688549,1.0065063792375164,1.0134935412700874,1.0395768900375626,1.0611031504492021,1.0795704738397949,1.0972412022062703,1.1090597454678348,1.1506407515244095,1.154905514374979,1.1579589426144126,1.178882923209113,1.2076967988828655,1.2125698265436866,1.2193608725942267,1.2580516020437167,1.2702341387123943,1.2868817210432435,1.3083705209194032,1.327898450881102,1.3557151448130509,1.357461140518541,1.3855627630498106,1.405128754039254,1.43074504248372,1.4432270752185183,1.4501732746624296,1.4683517334233156,1.487833664244969,1.500891387387226,1.5191858056325604,1.5382450765039652,1.5409922321873508,1.545170983675249,1.5482975917589834,1.538921236861594,1.5327028074448195,1.5195004630482107,1.510173911504061,1.510173911504061,1.5195004630482107,1.5327028074448195,1.538921236861594,1.5482975917589834,1.545170983675249,1.5409922321873508,1.5382450765039652,1.5191858056325604,1.500891387387226,1.487833664244969,1.4683517334233156,1.4501732746624296,1.4432270752185183,1.43074504248372,1.405128754039254,1.3855627630498106,1.357461140518541,1.3557151448130509,1.327898450881102,1.3083705209194032,1.2868817210432435,1.2702341387123943,1.2580516020437167,1.2193608725942267,1.2125698265436866,1.2076967988828655,1.178882923209113,1.1579589426144126,1.154905514374979,1.1506407515244095,1.1090597454678348,1.0972412022062703,1.0795704738397949,1.0611031504492021,1.0395768900375626,1.0134935412700874,1.0065063792375164,0.9819125778688549,0.965435879551412,0.9353633892766884,0.9242482657001472,0.9159234926405024,0.8702688722111307,0.8665839535314395,0.8632089315669957,0.8128138793653874,0.8089196413627309,0.8042956246121453,0.7619598115252502,0.7512553291940232,0.7340773494049722,0.7158700821025681,0.6935910170253154,0.6729587329801032,0.6450436416091696,0.6359267048566073,0.6323292991434046,0.6253004898204066,0.5938614649441298,0.5782623926878996,0.5559520476303135,0.5276857752261779,0.5205980805191914,0.5185175481944455,0.5147799814041893,0.4807194896199154,0.4629337683504837,0.4425143968219749,0.40898745810210757,0.405269456181776,0.4040196747603848,0.4013666833417977,0.36425562808940803,0.34760514401306786,0.3237459420003188,0.30700520527281494,0.28994083184436015,0.2826485542391084,0.263229099094882,0.24055170603029952,0.232276519675652,0.21547597907045857,0.19749851253162465,0.17461220750694428,0.15411137201367753,0.129661172672634,0.11694789533823613,0.1104428477463748,0.0901803772019325,0.06652459105561714,0.05928358316952842,0.04573887883621852,0.022398965859734332,0.001619271000820266,-0.021574536661709498,-0.03797842433053766,-0.056045041167887444,-0.06550532880215432,-0.09569634898967783,-0.10957849115483631,-0.11370935333659515,-0.1211944428218632,-0.15449969406074704,-0.1713736655053033,-0.19996421509568751,-0.20061749614873658,-0.22903797767401102,-0.24636225741518603,-0.2760977189417795,-0.28670228984271917,-0.2936925489435511,-0.3303800720795236,-0.3421689646916959,-0.3443666020114269,-0.34752846300243023,-0.39170222130261756,-0.40203091418013503,-0.4165513189662362,-0.4412634589658313,-0.45969522634884274,-0.48624981420204216,-0.4901129321564781,-0.5173595385175505,-0.5379066832401711,-0.559791235357638,-0.5750238506862586,-0.5840778244164615,-0.613589494130665,-0.6279334923892006,-0.6326881628549663,-0.6437871833720252,-0.6689604166328933,-0.6903524750236745,-0.7086792927255625,-0.7451931944172405,-0.7469771879818783,-0.7480167871923822,-0.7527831477559634,-0.782077245095862,-0.8056810993610903,-0.8168431584892457,-0.8329819596065042,-0.8494924775557862,-0.863345411529798,-0.8807187720932603,-0.9010924340911033,-0.9106078808170688,-0.9210097236985058,-0.9382374820550212,-0.9541396054459694,-0.963935915167959,-0.9786740358672139,-0.9869898841944846,-0.9925499586357724,-1.0024363589723309,-1.005306626987211,-1.0158223086211313,-1.0182991221185178,-1.021734588856241,-1.0226640831970815,-1.0159583158259955,-1.012793474744413,-1.0073699667241498,-0.9943553725836964,-0.9786740358672139,-0.9661766170383022,-0.9514296881167326,-0.9309876543250133,-0.9210097236985058,-0.9002237322966744,-0.8884821718526523,-0.863345411529798,-0.8441438503071361,-0.8197956976149285,-0.8056810993610903,-0.7970548900745817,-0.7488775629367801,-0.7480167871923822,-0.7474362754330803,-0.7430324343350723,-0.6956365665058097,-0.6903524750236745,-0.6841844967252717,-0.642876232188418,-0.6326881628549663,-0.6210334970080482,-0.5893195102063746,-0.5750238506862586,-0.559072736428881,-0.5348533672798177,-0.5173595385175505,-0.4985874494056586,-0.47913260416721837,-0.45969522634884274,-0.43974481460593884,-0.4218452584982666,-0.40203091418013503,-0.3837734764981118,-0.36124855414128065,-0.3443666020114269,-0.33027928045720945,-0.29671334219339984,-0.28670228984271917,-0.2792026170538371,-0.2381183836115972,-0.23042085768980458,-0.22903797767401102,-0.2268934652715453,-0.18353525157528372,-0.1713736655053033,-0.15050717952616832,-0.1379365866894151,-0.11370935333659515,-0.09305259018605128,-0.06952160293205445,-0.056045041167887444,-0.04864068530104326,-0.02434708519205886,-0.004384459932469831,0.001619271000820266,0.012789577237273253,0.040467440642240504,0.05928358316952842,0.0858149490054334,0.0921040319502695,0.11694789533823613,0.13253884381632108,0.16656471183151433,0.17461220750694428,0.18030710598595157,0.21493600727978412,0.22980401575110676,0.232276519675652,0.23566196544772078,0.281961996808191,0.28994083184436015,0.2994695656944071,0.33709946250440526,0.34760514401306786,0.3579052733232282,0.3969195521584914,0.405269456181776,0.4126641876496753,0.4618986152108331,0.4629337683504837,0.4637174258057497,0.4674073049396501,0.5100042957135464,0.5205980805191914,0.5419808306984475,0.5530381316879631,0.5782623926878996,0.5943657497436594,0.6286067600334162,0.6333125314136683,0.6359267048566073,0.6472284758565623,0.6687423471305523,0.6935910170253154,0.7038115160928338,0.7188450317765733,0.7374897395028719,0.7512553291940232,0.7709206738196093,0.7984063312043364,0.8044033836101661,0.8089196413627309,0.8346264867693036,0.8383280828775237,0.8665839535314395,0.8728079161090263,0.8832026245096052,0.9072934643276445,0.9242482657001472,0.9419428667261687,0.9701948883954645,0.9763050196469387,0.9819125778688549,1.0075302128313317,1.0383511168902593,1.0387664665219662,1.0395768900375626,1.0611727379947031,1.075021478580291,1.075021478580291,1.0739245340737944,1.075335027310516,1.0719312233084266,1.0705278546105448,1.0638820877197124,1.0585242806817727,1.0507299777247394,1.047136577870408,1.0450410189913462,1.0395768900375626,1.03171037750085,1.029653543947847,1.023772516310864,1.017139943132293,1.0094781629182896,1.0005994201953308,0.9822314112351429,0.9820955744228876,0.982030317296458,0.9819125778688549,0.9636544792411024,0.9551234681509659,0.9446451660676272,0.9268226562694513,0.925601713983101,0.9251749799419442,0.9242482657001472,0.9085760362330855,0.9022866459180059,0.8937953200587567,0.892324954419911,0.8846715346557086,0.8818366218014178,0.8756363604383979,0.8739653003169514,0.8735368136723927,0.870662978779499,0.8703370962856707,0.8704221749323096,0.873099903380623,0.8734687026262002,0.8746074306612868,0.8808233657269251,0.8833235833586168,0.8900918456477611,0.8925973986028075,0.9006016064410294,0.9080331464787927,0.9242482657001472,0.9264653442122674,0.9277414786110589,0.9458626782228987,0.9524251758194509,0.9759119217766554,0.9790799744327354,0.9819125778688549,0.993900101329007,1.015348118148912,1.0395768900375626,1.0557588570826941,1.0878524924794468,1.0972412022062703,1.105817231018539,1.1414024108110703,1.154905514374979,1.1826463019488815,1.1872369692010722,1.2125698265436866,1.2191492071744547,1.2264828857908348,1.2451146931668045,1.2664397133952483,1.2692995629337438,1.269564871516637,1.2702341387123943,1.2827701828067322,1.2864444825487786,1.2879529298441335,1.2899336166989888,1.2918608326492103,1.2913210732872744,1.2909141506055266,1.290213474702829,1.2888232368177612,1.2871672797277056,1.2857957461210536,1.284774378151043,1.2826148331141876,1.28168171414891,1.2811996512695445,1.2795565193066811,1.2791243738877545,1.2789372503251015,1.2780526510297023,1.2779088401464107,1.2778156034681154,1.2772864144929739,1.2772757356884479,1.2772295117145238,1.2766573113604278,1.2766573113604278,1.2766047277143433,1.2757878461652168,1.2757878461652168,1.2756702970752145,1.2743030354996914,1.2743030354996914,1.2741008384780632,1.2713457902415928,1.271334271549223,1.2712387299971275,1.2702341387123943,1.2638385520905895,1.2628082664335296,1.2596452385878485,1.2522625106051515,1.2477036655419274,1.2388438598805611,1.236240876754017,1.22887066963199,1.2253734053717467,1.2133264946483862,1.2131205269658385,1.2130804947077372,1.2125698265436866,1.2056213495656238,1.2050909596802533,1.207154251200493,1.2125698265436866,1.2182636579205641,1.2192661072601676,1.221945686211209,1.2325071814453836,1.239934346409187,1.2478957113810476,1.2550875762193976,1.2618260955205804,1.2637239974367458,1.2702341387123943,1.27532866474276,1.2764224538416262,1.2764770654221258,1.2808005779874434,1.2819187812221426,1.2815256759636457,1.2802602995305663,1.2791331540717104,1.277871557433675,1.2702341387123943,1.269687458926359,1.2695953612576463,1.2694290643098687,1.2584209342879409,1.2555340809818243,1.2511115280120282,1.247316458481175,1.2417497616210427,1.2374431679973532,1.2357852485258998,1.2321375499720832,1.2314893357191052,1.2305773688107045,1.2305773688107045,1.2358608541771958,1.2373393531545482,1.2411526229237553,1.2505523480599536,1.2672826285313055,1.2684851763573204,1.269223929000996,1.2702341387123943,1.295455256492963,1.3166223628940634,1.322457388148076,1.327898450881102,1.3538242083873713,1.3854936142589032,1.385531717141871,1.3855627630498106,1.3857924092699174,1.4180092283087071,1.4432270752185183,1.4506022597726385,1.4604710296104186,1.4810056532527827,1.500891387387226,1.510173911504061,1.331370335010678,1.327898450881102,1.3040394155908843,1.2827986499545214,1.2760657135861346,1.2702341387123943,1.2469471507940804,1.2238662032781087,1.2184506517490425,1.2125698265436866,1.1926445360361178,1.1770581953107633,1.1693969756833797,1.154905514374979,1.1498870326242607,1.147542759494359,1.1458110063433264,1.1373868783356413,1.1326341027862337,1.1321158847093185,1.1312522001445768,1.1294316554561363,1.1315852255590948,1.1327068157991174,1.134942057296278,1.1383299649865664,1.1446274142246549,1.1464202912928712,1.1480477429901934,1.154905514374979,1.1587944396067003,1.1596337020882257,1.160963981890156,1.1671266731697592,1.1690389704774318,1.1706503057793385,1.170596228321633,1.170596228321633,1.1678056662495604,1.1590102061867067,1.158622609885232,1.1574481133119678,1.154905514374979,1.1325949500723547,1.1143664934209423,1.1047509170467555,1.0972412022062703,1.0809096748255675,1.0618401454429818,1.0395768900375626,1.0114466697452174,1.0099879233362183,0.9819125778688549,0.963799206248273,0.932332241246772,0.9242482657001472,0.9208965896348995,0.9143684711094191,0.8825146019788526,0.8665839535314395,0.8454349567930532,0.8099857330065672,0.8093083626616289,0.8089196413627309,0.8074724431864504,0.7735603890692242,0.7512553291940232,0.7374631550872581,0.713225185314871,0.7001459494512443,0.6935910170253154,0.6773259587702216,0.6599750665711879,0.6359267048566073,0.6187713930961061,0.5838795759954976,0.5782623926878996,0.5754729200051485,0.5644729562318189,0.528732998230466,0.5205980805191914,0.5093502458613175,0.4788666604447731,0.4629337683504837,0.44386059585502213,0.425712600109478,0.405269456181776,0.3833588620136861,0.3694676946202078,0.34760514401306786,0.328277559952864,0.30755409662387434,0.28994083184436015,0.2765270207686399,0.2399719449780071,0.232276519675652,0.227168925799055,0.20416960731778966,0.17969967781800023,0.17461220750694428,0.1666777262435879,0.13343971110734376,0.11694789533823613,0.08837580983333604,0.08797420094386688,0.05928358316952842,0.043619739665065715,0.005499359385320535,0.001619271000820266,-3.733117460411606E-4,-0.006467622383231841,-0.04414797718097496,-0.056045041167887444,-0.07853488495060512,-0.08821785679173022,-0.11370935333659515,-0.13259826044526024,-0.1604082216870899,-0.1713736655053033,-0.1776950393112866,-0.20351518210468633,-0.22410960949183867,-0.22903797767401102,-0.23648330547225926,-0.2727183529457702,-0.28670228984271917,-0.3054690989634796,-0.32356048583649866,-0.3443666020114269,-0.3690184620779733,-0.3770307280669778,-0.40203091418013503,-0.42779272564679927,-0.43406118090489,-0.45969522634884274,-0.4835875339593225,-0.49424408866424674,-0.5173595385175505,-0.537347633566807,-0.5573157497292329,-0.5750238506862586,-0.5894002342257023,-0.6232512746565746,-0.6326881628549663,-0.6399859119734832,-0.6822893303177118,-0.6888776384397017,-0.6903524750236745,-0.6931107553827314,-0.734170499752985,-0.7480167871923822,-0.7763479663841872,-0.7780597035913512,-0.8056810993610903,-0.817833855959889,-0.8415294022036295,-0.8524211010228124,-0.863345411529798,-0.8785230365960985,-0.8897026684455942,-0.8912217334432655,-0.891512560929776,-0.8965665927525635,-0.8895390968187256,-0.8876042476483579,-0.8795541282910544,-0.8733317386080084,-0.863345411529798,-0.8514508836367964,-0.8442896626124261,-0.8259590129927914,-0.8056810993610903,-0.798554359029763,-0.7920657444094501,-0.7677299446062151,-0.7480167871923822,-0.735444664395958,-0.71864860032507,-0.7009046949395157,-0.6903524750236745,-0.6631661508608144,-0.6565549796606929,-0.6326881628549663,-0.6245059440827676,-0.6046717405761455,-0.5827404152513482,-0.5750238506862586,-0.5609087088466711,-0.5379338282199932,-0.5173595385175505,-0.4914700596921344,-0.4840277011271663,-0.45969522634884274,-0.4438407446880648,-0.41204782321286304,-0.40203091418013503,-0.3952774891727606,-0.3587208685281915,-0.34650849300603603,-0.3443666020114269,-0.34127220679437764,-0.29825558125796725,-0.28670228984271917,-0.2689469653650489,-0.2508874247704398,-0.22903797767401102,-0.20446395264892336,-0.1930194982869864,-0.1713736655053033,-0.15876356083300136,-0.11380699196644795,-0.11373094352620772,-0.11370935333659515,-0.11366989101030622,-0.06908178659881736,-0.056045041167887444,-0.03200941924845502,-0.024534162669578752,0.001619271000820266,0.020268506573450917,0.049048091231833624,0.05928358316952842,0.06514485177447593,0.0857704829485102,0.1099548874884877,0.11694789533823613,0.1299861012643193,0.1545881576632353,0.17461220750694428,0.1987561929999213,0.2126160949717475,0.232276519675652,0.2425500860237455,0.27169656981856827,0.28521198176262885,0.28994083184436015,0.30057045512951364,0.3269420834696999,0.34760514401306786,0.367925177505001,0.39800540752178604,0.405269456181776,0.40820802448193083,0.4146188261511461,0.447743582885781,0.4629337683504837,0.48675703356257927,0.5064185504428642,0.5205980805191914,0.5257506325158414,0.5364808250379025,0.5644698657610352,0.5782623926878996,0.6033558805624839,0.6176659527802899,0.6359267048566073,0.6431359441711968,0.6609355389750471,0.6842813691330552,0.6935910170253154,0.7121570586026422,0.7282088013726886,0.7512553291940232,0.7755457236322747,0.7863636845254525,0.8089196413627309,0.8280141231276095,0.8478175808386648,0.8665839535314395,0.8878564377673004,0.9014658474031454,0.9242482657001472,0.9512283799835335,0.9558537908492242,0.9819125778688549,0.9987813088256705,1.0301398904451369,1.0395768900375626,1.0453790647402283,1.0699435869985696,1.0907453199901558,1.0972412022062703,1.1093293128119552,1.1354063087390363,1.154905514374979,1.1805513681544535,1.189305835289709,1.2125698265436866,1.2263385274550154,1.26750981330204,1.2702341387123943,1.27184672982778,1.2772304048609908,1.3068649400604655,1.327898450881102,1.3385132898920697,1.348675943327947,1.3449998571180823,1.338575690296255,1.3347818287937225,1.331370335010678,1.331370335010678,1.3347818287937225,1.338575690296255,1.3449998571180823,1.348675943327947,1.3385132898920697,1.327898450881102,1.3068649400604655,1.2772304048609908,1.27184672982778,1.2702341387123943,1.26750981330204,1.2263385274550154,1.2125698265436866,1.189305835289709,1.1805513681544535,1.154905514374979,1.1354063087390363,1.1093293128119552,1.0972412022062703,1.0907453199901558,1.0699435869985696,1.0453790647402283,1.0395768900375626,1.0301398904451369,0.9987813088256705,0.9819125778688549,0.9558537908492242,0.9512283799835335,0.9242482657001472,0.9014658474031454,0.8878564377673004,0.8665839535314395,0.8478175808386648,0.8280141231276095,0.8089196413627309,0.7863636845254525,0.7755457236322747,0.7512553291940232,0.7282088013726886,0.7121570586026422,0.6935910170253154,0.6842813691330552,0.6609355389750471,0.6431359441711968,0.6359267048566073,0.6176659527802899,0.6033558805624839,0.5782623926878996,0.5644698657610352,0.5364808250379025,0.5257506325158414,0.5205980805191914,0.5064185504428642,0.48675703356257927,0.4629337683504837,0.447743582885781,0.4146188261511461,0.40820802448193083,0.405269456181776,0.39800540752178604,0.367925177505001,0.34760514401306786,0.3269420834696999,0.30057045512951364,0.28994083184436015,0.28521198176262885,0.27169656981856827,0.2425500860237455,0.232276519675652,0.2126160949717475,0.1987561929999213,0.17461220750694428,0.1545881576632353,0.1299861012643193,0.11694789533823613,0.1099548874884877,0.0857704829485102,0.06514485177447593,0.05928358316952842,0.049048091231833624,0.020268506573450917,0.001619271000820266,-0.024534162669578752,-0.03200941924845502,-0.056045041167887444,-0.06908178659881736,-0.11366989101030622,-0.11370935333659515,-0.11373094352620772,-0.11380699196644795,-0.15876356083300136,-0.1713736655053033,-0.1930194982869864,-0.20446395264892336,-0.22903797767401102,-0.2508874247704398,-0.2689469653650489,-0.28670228984271917,-0.29825558125796725,-0.34127220679437764,-0.3443666020114269,-0.34650849300603603,-0.3587208685281915,-0.3952774891727606,-0.40203091418013503,-0.41204782321286304,-0.4438407446880648,-0.45969522634884274,-0.4840277011271663,-0.4914700596921344,-0.5173595385175505,-0.5379338282199932,-0.5609087088466711,-0.5750238506862586,-0.5827404152513482,-0.6046717405761455,-0.6245059440827676,-0.6326881628549663,-0.6565549796606929,-0.6631661508608144,-0.6903524750236745,-0.7009046949395157,-0.71864860032507,-0.735444664395958,-0.7480167871923822,-0.7677299446062151,-0.7920657444094501,-0.798554359029763,-0.8056810993610903,-0.8259590129927914,-0.8442896626124261,-0.8514508836367964,-0.863345411529798,-0.8733317386080084,-0.8795541282910544,-0.8876042476483579,-0.8895390968187256,-0.8965665927525635,-0.891512560929776,-0.8912217334432655,-0.8897026684455942,-0.8785230365960985,-0.863345411529798,-0.8524211010228124,-0.8415294022036295,-0.817833855959889,-0.8056810993610903,-0.7780597035913512,-0.7763479663841872,-0.7480167871923822,-0.734170499752985,-0.6931107553827314,-0.6903524750236745,-0.6888776384397017,-0.6822893303177118,-0.6399859119734832,-0.6326881628549663,-0.6232512746565746,-0.5894002342257023,-0.5750238506862586,-0.5573157497292329,-0.537347633566807,-0.5173595385175505,-0.49424408866424674,-0.4835875339593225,-0.45969522634884274,-0.43406118090489,-0.42779272564679927,-0.40203091418013503,-0.3770307280669778,-0.3690184620779733,-0.3443666020114269,-0.32356048583649866,-0.3054690989634796,-0.28670228984271917,-0.2727183529457702,-0.23648330547225926,-0.22903797767401102,-0.22410960949183867,-0.20351518210468633,-0.1776950393112866,-0.1713736655053033,-0.1604082216870899,-0.13259826044526024,-0.11370935333659515,-0.08821785679173022,-0.07853488495060512,-0.056045041167887444,-0.04414797718097496,-0.006467622383231841,-3.733117460411606E-4,0.001619271000820266,0.005499359385320535,0.043619739665065715,0.05928358316952842,0.08797420094386688,0.08837580983333604,0.11694789533823613,0.13343971110734376,0.1666777262435879,0.17461220750694428,0.17969967781800023,0.20416960731778966,0.227168925799055,0.232276519675652,0.2399719449780071,0.2765270207686399,0.28994083184436015,0.30755409662387434,0.328277559952864,0.34760514401306786,0.3694676946202078,0.3833588620136861,0.405269456181776,0.425712600109478,0.44386059585502213,0.4629337683504837,0.4788666604447731,0.5093502458613175,0.5205980805191914,0.528732998230466,0.5644729562318189,0.5754729200051485,0.5782623926878996,0.5838795759954976,0.6187713930961061,0.6359267048566073,0.6599750665711879,0.6773259587702216,0.6935910170253154,0.7001459494512443,0.713225185314871,0.7374631550872581,0.7512553291940232,0.7735603890692242,0.8074724431864504,0.8089196413627309,0.8093083626616289,0.8099857330065672,0.8454349567930532,0.8665839535314395,0.8825146019788526,0.9143684711094191,0.9208965896348995,0.9242482657001472,0.932332241246772,0.963799206248273,0.9819125778688549,1.0099879233362183,1.0114466697452174,1.0395768900375626,1.0618401454429818,1.0809096748255675,1.0972412022062703,1.1047509170467555,1.1143664934209423,1.1325949500723547,1.154905514374979,1.1574481133119678,1.158622609885232,1.1590102061867067,1.1678056662495604,1.170596228321633,1.170596228321633,1.1706503057793385,1.1690389704774318,1.1671266731697592,1.160963981890156,1.1596337020882257,1.1587944396067003,1.154905514374979,1.1480477429901934,1.1464202912928712,1.1446274142246549,1.1383299649865664,1.134942057296278,1.1327068157991174,1.1315852255590948,1.1294316554561363,1.1312522001445768,1.1321158847093185,1.1326341027862337,1.1373868783356413,1.1458110063433264,1.147542759494359,1.1498870326242607,1.154905514374979,1.1693969756833797,1.1770581953107633,1.1926445360361178,1.2125698265436866,1.2184506517490425,1.2238662032781087,1.2469471507940804,1.2702341387123943,1.2760657135861346,1.2827986499545214,1.3040394155908843,1.327898450881102,1.331370335010678,1.045062277920938,1.0395768900375626,1.0310696806023913,1.0285019237268966,1.0266322275943254,1.020737787109224,1.0164470751751113,1.0145122274653615,1.01372770843528,1.0107235945136437,1.010111615465926,1.010083525827572,1.0100752927728816,1.0125339343372777,1.0128918050028566,1.0129810601462643,1.015507243425772,1.0169800690594726,1.0169800690594726,1.0151659539357003,1.016048161083598,1.016048161083598,1.0052061341963152,0.9955607893781333,0.9924901350841968,0.9867733003930224,0.9819125778688549,0.9729190397687133,0.9399834271450689,0.9242482657001472,0.9096434602453116,0.874553478333175,0.8665839535314395,0.8629149687855118,0.8532507315362294,0.8202096912720038,0.8089196413627309,0.7887737647899642,0.7762877011136466,0.7512553291940232,0.7334006034603764,0.7029519774346062,0.6935910170253154,0.6890458643421558,0.6720362705107328,0.6430239290032214,0.6359267048566073,0.625650335516692,0.5951500642994572,0.5782623926878996,0.5549500854787954,0.5455233156771784,0.5205980805191914,0.49407615420135587,0.4890885285035522,0.4629337683504837,0.4398673929672272,0.42822935494470604,0.405269456181776,0.38206335360618526,0.3715223938528158,0.34760514401306786,0.3192190717459118,0.31819121015787033,0.28994083184436015,0.27012318705289706,0.24721025581268474,0.232276519675652,0.22327365490518414,0.19161317364606045,0.17798684924788288,0.17461220750694428,0.1687854650855285,0.13320869483333198,0.11694789533823613,0.08920002118141257,0.08600972156792164,0.05928358316952842,0.045889391882970365,0.007445378124691704,0.0030268180121773014,0.001619271000820266,-0.0011382469501013404,-0.040501195066004136,-0.056045041167887444,-0.08402697733189601,-0.08654551659160026,-0.11370935333659515,-0.12809275576075363,-0.16942209273613962,-0.1713736655053033,-0.1725004169970199,-0.1769292609612263,-0.21915982911941434,-0.22903797767401102,-0.24403877946678287,-0.26771953355047806,-0.28670228984271917,-0.3118678985622889,-0.31858957784265574,-0.3443666020114269,-0.37259844084609384,-0.3738575314741537,-0.40203091418013503,-0.4299276410599284,-0.4319321370959619,-0.45969522634884274,-0.4835913893231698,-0.4949980875098352,-0.5173595385175505,-0.5344764668447031,-0.5635105436326806,-0.5750238506862586,-0.5829886883287254,-0.6156485572907262,-0.6282018314672548,-0.6326881628549663,-0.6451705088139343,-0.6677486873117982,-0.6903524750236745,-0.7056933298201393,-0.7302419914982345,-0.737339737415359,-0.7480167871923822,-0.7586121535329515,-0.7641339824016953,-0.76341137622873,-0.7620877556944188,-0.7599128520091214,-0.7558052991826845,-0.7480167871923822,-0.7359493946579301,-0.7296290701410353,-0.7105822677917986,-0.6903524750236745,-0.6823030731465889,-0.6741002594354368,-0.6492432192767126,-0.6326881628549663,-0.6133769487186442,-0.5787579165570711,-0.5761448459080887,-0.5750238506862586,-0.5726351714238676,-0.533422100215097,-0.5173595385175505,-0.48894379390363607,-0.48780772597367195,-0.45969522634884274,-0.4434483693106053,-0.4106172291829919,-0.40203091418013503,-0.39679311214235913,-0.37384390657977296,-0.34924096988050035,-0.3443666020114269,-0.3370083564712001,-0.3015913950157354,-0.28670228984271917,-0.26302044566654015,-0.2546738753465174,-0.22903797767401102,-0.20849277185385162,-0.18588787147853747,-0.1713736655053033,-0.16291023815640537,-0.13313759391491997,-0.11782972702673433,-0.11370935333659515,-0.10634364580770717,-0.0724555618276681,-0.056045041167887444,-0.027338062224409487,-0.026988166706494177,0.001619271000820266,0.01858827782350314,0.051046336112056334,0.05928358316952842,0.06443972729571623,0.08482489176085295,0.11063287985091597,0.11694789533823613,0.12793102922361266,0.15684646601953567,0.17461220750694428,0.20208431225133427,0.2059737283449805,0.232276519675652,0.24716634150252448,0.2891553158817932,0.28994083184436015,0.2903515782914776,0.2914187203007472,0.3328905839377354,0.34760514401306786,0.37402562609943635,0.38245830717256757,0.405269456181776,0.41488295123015817,0.4362382552798181,0.45494573404685834,0.4629337683504837,0.4841578705988363,0.4948718809621635,0.5205980805191914,0.5352662108497994,0.5685735193373529,0.5753052492136157,0.5782623926878996,0.5858753093418434,0.6165584658647076,0.6359267048566073,0.6585020739279446,0.6782917881665598,0.6935910170253154,0.7022595235804414,0.7360525674649359,0.7482999939560839,0.7512553291940232,0.7556011116440886,0.8003241420111737,0.8089196413627309,0.8178506005030814,0.8599202255591964,0.8665839535314395,0.872223068731246,0.9033226204151981,0.9197428965751526,0.9242482657001472,0.9348913411138704,0.9604399848678962,0.9819125778688549,0.9996440700794555,1.0332399656626774,1.0360307522434646,1.0395768900375626,1.0597413428045015,1.0735490055986054,1.0735490055986054,1.0720206801807168,1.0676356099079363,1.0606802889497033,1.0530812374154777,1.0470052188039491,1.045062277920938,1.045062277920938,1.0470052188039491,1.0530812374154777,1.0606802889497033,1.0676356099079363,1.0720206801807168,1.0735490055986054,1.0735490055986054,1.0597413428045015,1.0395768900375626,1.0360307522434646,1.0332399656626774,0.9996440700794555,0.9819125778688549,0.9604399848678962,0.9348913411138704,0.9242482657001472,0.9197428965751526,0.9033226204151981,0.872223068731246,0.8665839535314395,0.8599202255591964,0.8178506005030814,0.8089196413627309,0.8003241420111737,0.7556011116440886,0.7512553291940232,0.7482999939560839,0.7360525674649359,0.7022595235804414,0.6935910170253154,0.6782917881665598,0.6585020739279446,0.6359267048566073,0.6165584658647076,0.5858753093418434,0.5782623926878996,0.5753052492136157,0.5685735193373529,0.5352662108497994,0.5205980805191914,0.4948718809621635,0.4841578705988363,0.4629337683504837,0.45494573404685834,0.4362382552798181,0.41488295123015817,0.405269456181776,0.38245830717256757,0.37402562609943635,0.34760514401306786,0.3328905839377354,0.2914187203007472,0.2903515782914776,0.28994083184436015,0.2891553158817932,0.24716634150252448,0.232276519675652,0.2059737283449805,0.20208431225133427,0.17461220750694428,0.15684646601953567,0.12793102922361266,0.11694789533823613,0.11063287985091597,0.08482489176085295,0.06443972729571623,0.05928358316952842,0.051046336112056334,0.01858827782350314,0.001619271000820266,-0.026988166706494177,-0.027338062224409487,-0.056045041167887444,-0.0724555618276681,-0.10634364580770717,-0.11370935333659515,-0.11782972702673433,-0.13313759391491997,-0.16291023815640537,-0.1713736655053033,-0.18588787147853747,-0.20849277185385162,-0.22903797767401102,-0.2546738753465174,-0.26302044566654015,-0.28670228984271917,-0.3015913950157354,-0.3370083564712001,-0.3443666020114269,-0.34924096988050035,-0.37384390657977296,-0.39679311214235913,-0.40203091418013503,-0.4106172291829919,-0.4434483693106053,-0.45969522634884274,-0.48780772597367195,-0.48894379390363607,-0.5173595385175505,-0.533422100215097,-0.5726351714238676,-0.5750238506862586,-0.5761448459080887,-0.5787579165570711,-0.6133769487186442,-0.6326881628549663,-0.6492432192767126,-0.6741002594354368,-0.6823030731465889,-0.6903524750236745,-0.7105822677917986,-0.7296290701410353,-0.7359493946579301,-0.7480167871923822,-0.7558052991826845,-0.7599128520091214,-0.7620877556944188,-0.76341137622873,-0.7641339824016953,-0.7586121535329515,-0.7480167871923822,-0.737339737415359,-0.7302419914982345,-0.7056933298201393,-0.6903524750236745,-0.6677486873117982,-0.6451705088139343,-0.6326881628549663,-0.6282018314672548,-0.6156485572907262,-0.5829886883287254,-0.5750238506862586,-0.5635105436326806,-0.5344764668447031,-0.5173595385175505,-0.4949980875098352,-0.4835913893231698,-0.45969522634884274,-0.4319321370959619,-0.4299276410599284,-0.40203091418013503,-0.3738575314741537,-0.37259844084609384,-0.3443666020114269,-0.31858957784265574,-0.3118678985622889,-0.28670228984271917,-0.26771953355047806,-0.24403877946678287,-0.22903797767401102,-0.21915982911941434,-0.1769292609612263,-0.1725004169970199,-0.1713736655053033,-0.16942209273613962,-0.12809275576075363,-0.11370935333659515,-0.08654551659160026,-0.08402697733189601,-0.056045041167887444,-0.040501195066004136,-0.0011382469501013404,0.001619271000820266,0.0030268180121773014,0.007445378124691704,0.045889391882970365,0.05928358316952842,0.08600972156792164,0.08920002118141257,0.11694789533823613,0.13320869483333198,0.1687854650855285,0.17461220750694428,0.17798684924788288,0.19161317364606045,0.22327365490518414,0.232276519675652,0.24721025581268474,0.27012318705289706,0.28994083184436015,0.31819121015787033,0.3192190717459118,0.34760514401306786,0.3715223938528158,0.38206335360618526,0.405269456181776,0.42822935494470604,0.4398673929672272,0.4629337683504837,0.4890885285035522,0.49407615420135587,0.5205980805191914,0.5455233156771784,0.5549500854787954,0.5782623926878996,0.5951500642994572,0.625650335516692,0.6359267048566073,0.6430239290032214,0.6720362705107328,0.6890458643421558,0.6935910170253154,0.7029519774346062,0.7334006034603764,0.7512553291940232,0.7762877011136466,0.7887737647899642,0.8089196413627309,0.8202096912720038,0.8532507315362294,0.8629149687855118,0.8665839535314395,0.874553478333175,0.9096434602453116,0.9242482657001472,0.9399834271450689,0.9729190397687133,0.9819125778688549,0.9867733003930224,0.9924901350841968,0.9955607893781333,1.0052061341963152,1.016048161083598,1.016048161083598,1.0151659539357003,1.0169800690594726,1.0169800690594726,1.015507243425772,1.0129810601462643,1.0128918050028566,1.0125339343372777,1.0100752927728816,1.010083525827572,1.010111615465926,1.0107235945136437,1.01372770843528,1.0145122274653615,1.0164470751751113,1.020737787109224,1.0266322275943254,1.0285019237268966,1.0310696806023913,1.0395768900375626,1.045062277920938,0.870732077891081,0.8665839535314395,0.8642725656321564,0.8639465817341043,0.8617430027580046,0.8497830295770448,0.84420487845277,0.8280225222506252,0.8089196413627309,0.7982589925767187,0.7770172701736215,0.7568995560613438,0.7512553291940232,0.744027557757375,0.7054065272607022,0.6935910170253154,0.6815049512223665,0.6482921318951549,0.6359267048566073,0.6256502590160622,0.5864161718471634,0.5782623926878996,0.5717376263134595,0.5236411957557512,0.5205980805191914,0.5180681871700941,0.4708285214664407,0.46342654777542114,0.4629337683504837,0.46239328087147147,0.4059654000594657,0.405269456181776,0.40463467602501213,0.39824692469402523,0.3511597396883972,0.34760514401306786,0.342947278797026,0.30158949040080874,0.28994083184436015,0.2710420558894935,0.2553218968194715,0.232276519675652,0.21143689583331948,0.18608341273128293,0.17461220750694428,0.16941001542590728,0.15763755660993395,0.1271980828257333,0.11694789533823613,0.09474938885553108,0.08502296588778613,0.05928358316952842,0.043244644051847914,0.003763107582457348,0.002161886749517894,0.001619271000820266,4.8529839887878623E-4,-0.04100763490239512,-0.056045041167887444,-0.08388293804851132,-0.0869433840797682,-0.11370935333659515,-0.12771886109903274,-0.17119588217181558,-0.1713736655053033,-0.17147795050900383,-0.17187888436305254,-0.21880343788046952,-0.22903797767401102,-0.24437872757539614,-0.26804137971842845,-0.28670228984271917,-0.3104493516312199,-0.32016198129202156,-0.3443666020114269,-0.3687280384734266,-0.37815963434682276,-0.40203091418013503,-0.42281724790781317,-0.44171329743685606,-0.45969522634884274,-0.47288406960877927,-0.514165883877697,-0.5173595385175505,-0.5193157430064574,-0.5252227356874775,-0.5563704620135597,-0.5750238506862586,-0.5902410646083265,-0.6085859547406249,-0.6130293164535967,-0.6183870600761425,-0.6227331660490698,-0.6136525058034388,-0.6071077980110666,-0.5942773037762454,-0.5839667302625027,-0.5750238506862586,-0.5514841841660529,-0.5196844177908213,-0.5181042198245183,-0.5173595385175505,-0.5156009657673271,-0.47672940210779036,-0.45969522634884274,-0.434143273954398,-0.4243789908363671,-0.40203091418013503,-0.3907602043514866,-0.35440049769844517,-0.3462949014783141,-0.3443666020114269,-0.3412098730102118,-0.29983431761352053,-0.28670228984271917,-0.26443105636160613,-0.25392809395445903,-0.22903797767401102,-0.20842552165689954,-0.18530642748778492,-0.1713736655053033,-0.16331655337418693,-0.13605461429816756,-0.1182366918322253,-0.11370935333659515,-0.10577413200299723,-0.07198941987198904,-0.056045041167887444,-0.029131316456379786,-0.025931200903227758,0.001619271000820266,0.0215252020155261,0.04493572085010644,0.05928358316952842,0.06945813285455182,0.11646827008321292,0.11694789533823613,0.11731668572108678,0.11926359651676188,0.1668838884073489,0.17461220750694428,0.18684162132170457,0.21525927736110884,0.232276519675652,0.2610742943814821,0.2611742266884738,0.28994083184436015,0.3063578559543547,0.34665287483416884,0.34760514401306786,0.34807058282891123,0.3490749183932311,0.38998853212875506,0.405269456181776,0.43037441964655887,0.44420212558033434,0.4629337683504837,0.47073598513038517,0.4882436974689166,0.5115759217323914,0.5205980805191914,0.541468134435906,0.5535251201280911,0.5782623926878996,0.5973006371200098,0.6258028734291652,0.6359267048566073,0.642893699207634,0.6823518858780715,0.6919693734495116,0.6935910170253154,0.6958072254749603,0.7500004830335807,0.7512553291940232,0.7522892298822081,0.7571273042817621,0.7944260138502544,0.8089196413627309,0.8279477177863677,0.8475076973515789,0.8525943335172292,0.8665839535314395,0.8676605077624164,0.8679416121363484,0.8679416121363484,0.8724301410116957,0.872723780560579,0.8725921232144791,0.8715694263137608,0.8712263041056194,0.870732077891081,0.870732077891081,0.8712263041056194,0.8715694263137608,0.8725921232144791,0.872723780560579,0.8724301410116957,0.8679416121363484,0.8679416121363484,0.8676605077624164,0.8665839535314395,0.8525943335172292,0.8475076973515789,0.8279477177863677,0.8089196413627309,0.7944260138502544,0.7571273042817621,0.7522892298822081,0.7512553291940232,0.7500004830335807,0.6958072254749603,0.6935910170253154,0.6919693734495116,0.6823518858780715,0.642893699207634,0.6359267048566073,0.6258028734291652,0.5973006371200098,0.5782623926878996,0.5535251201280911,0.541468134435906,0.5205980805191914,0.5115759217323914,0.4882436974689166,0.47073598513038517,0.4629337683504837,0.44420212558033434,0.43037441964655887,0.405269456181776,0.38998853212875506,0.3490749183932311,0.34807058282891123,0.34760514401306786,0.34665287483416884,0.3063578559543547,0.28994083184436015,0.2611742266884738,0.2610742943814821,0.232276519675652,0.21525927736110884,0.18684162132170457,0.17461220750694428,0.1668838884073489,0.11926359651676188,0.11731668572108678,0.11694789533823613,0.11646827008321292,0.06945813285455182,0.05928358316952842,0.04493572085010644,0.0215252020155261,0.001619271000820266,-0.025931200903227758,-0.029131316456379786,-0.056045041167887444,-0.07198941987198904,-0.10577413200299723,-0.11370935333659515,-0.1182366918322253,-0.13605461429816756,-0.16331655337418693,-0.1713736655053033,-0.18530642748778492,-0.20842552165689954,-0.22903797767401102,-0.25392809395445903,-0.26443105636160613,-0.28670228984271917,-0.29983431761352053,-0.3412098730102118,-0.3443666020114269,-0.3462949014783141,-0.35440049769844517,-0.3907602043514866,-0.40203091418013503,-0.4243789908363671,-0.434143273954398,-0.45969522634884274,-0.47672940210779036,-0.5156009657673271,-0.5173595385175505,-0.5181042198245183,-0.5196844177908213,-0.5514841841660529,-0.5750238506862586,-0.5839667302625027,-0.5942773037762454,-0.6071077980110666,-0.6136525058034388,-0.6227331660490698,-0.6183870600761425,-0.6130293164535967,-0.6085859547406249,-0.5902410646083265,-0.5750238506862586,-0.5563704620135597,-0.5252227356874775,-0.5193157430064574,-0.5173595385175505,-0.514165883877697,-0.47288406960877927,-0.45969522634884274,-0.44171329743685606,-0.42281724790781317,-0.40203091418013503,-0.37815963434682276,-0.3687280384734266,-0.3443666020114269,-0.32016198129202156,-0.3104493516312199,-0.28670228984271917,-0.26804137971842845,-0.24437872757539614,-0.22903797767401102,-0.21880343788046952,-0.17187888436305254,-0.17147795050900383,-0.1713736655053033,-0.17119588217181558,-0.12771886109903274,-0.11370935333659515,-0.0869433840797682,-0.08388293804851132,-0.056045041167887444,-0.04100763490239512,4.8529839887878623E-4,0.001619271000820266,0.002161886749517894,0.003763107582457348,0.043244644051847914,0.05928358316952842,0.08502296588778613,0.09474938885553108,0.11694789533823613,0.1271980828257333,0.15763755660993395,0.16941001542590728,0.17461220750694428,0.18608341273128293,0.21143689583331948,0.232276519675652,0.2553218968194715,0.2710420558894935,0.28994083184436015,0.30158949040080874,0.342947278797026,0.34760514401306786,0.3511597396883972,0.39824692469402523,0.40463467602501213,0.405269456181776,0.4059654000594657,0.46239328087147147,0.4629337683504837,0.46342654777542114,0.4708285214664407,0.5180681871700941,0.5205980805191914,0.5236411957557512,0.5717376263134595,0.5782623926878996,0.5864161718471634,0.6256502590160622,0.6359267048566073,0.6482921318951549,0.6815049512223665,0.6935910170253154,0.7054065272607022,0.744027557757375,0.7512553291940232,0.7568995560613438,0.7770172701736215,0.7982589925767187,0.8089196413627309,0.8280225222506252,0.84420487845277,0.8497830295770448,0.8617430027580046,0.8639465817341043,0.8642725656321564,0.8665839535314395,0.870732077891081,0.12852308168961457,0.11694789533823613,0.09547691805981628,0.06935148632487653,0.062361544880642494,0.05928358316952842,0.05001037080421211,0.022913234509681413,0.001619271000820266,-0.015997288755292605,-0.04934090523887047,-0.05429473736433765,-0.056045041167887444,-0.059943258369119956,-0.09804858979207998,-0.11370935333659515,-0.14131585281176307,-0.1450663141705424,-0.1713736655053033,-0.18743849054106354,-0.2220847158397783,-0.22903797767401102,-0.23495869576855233,-0.2781836858212059,-0.28606006506151926,-0.28670228984271917,-0.28741051490670033,-0.30326193704253157,-0.34053060905471266,-0.3443666020114269,-0.35461652727436865,-0.3796835084933652,-0.40203091418013503,-0.4143676308512525,-0.4268475131624041,-0.4179420939731737,-0.40203091418013503,-0.3970297501523383,-0.39402487969033695,-0.3603715396678071,-0.3443666020114269,-0.32138183003554044,-0.29883483618045537,-0.28670228984271917,-0.28196044015253596,-0.27200326555577536,-0.23839554068800783,-0.22903797767401102,-0.21109689762483086,-0.19369538792963104,-0.1713736655053033,-0.14888462120307944,-0.1301821834981851,-0.11370935333659515,-0.10330835537266614,-0.06583159900827695,-0.05761680824203852,-0.056045041167887444,-0.05357238711777024,-0.006305669839965056,0.001619271000820266,0.012447869426829072,0.04828267244434281,0.05928358316952842,0.07043381816250838,0.11061921140962694,0.11694789533823613,0.12240847407921418,0.14617614820016822,0.14617614820016822,0.14597946134142914,0.1477395620877604,0.12852308168961457,0.6410616305124694,0.6359267048566073,0.6214929808076741,0.5997999957584743,0.5782623926878996,0.554097921675083,0.5426691874402936,0.5205980805191914,0.5080469063061606,0.4863218323382754,0.5048298007812919,0.5205980805191914,0.5375848343037117,0.5627304837073175,0.5752353127395771,0.5782623926878996,0.5820019602801882,0.6157792467055865,0.6272587932731897,0.6359267048566073,0.644385474986116,0.646490361209711,0.6410616305124694,0.12852308168961457,0.1477395620877604,0.14597946134142914,0.14617614820016822,0.14617614820016822,0.12240847407921418,0.11694789533823613,0.11061921140962694,0.07043381816250838,0.05928358316952842,0.04828267244434281,0.012447869426829072,0.001619271000820266,-0.006305669839965056,-0.05357238711777024,-0.056045041167887444,-0.05761680824203852,-0.06583159900827695,-0.10330835537266614,-0.11370935333659515,-0.1301821834981851,-0.14888462120307944,-0.1713736655053033,-0.19369538792963104,-0.21109689762483086,-0.22903797767401102,-0.23839554068800783,-0.27200326555577536,-0.28196044015253596,-0.28670228984271917,-0.29883483618045537,-0.32138183003554044,-0.3443666020114269,-0.3603715396678071,-0.39402487969033695,-0.3970297501523383,-0.40203091418013503,-0.4179420939731737,-0.4268475131624041,-0.4143676308512525,-0.40203091418013503,-0.3796835084933652,-0.35461652727436865,-0.3443666020114269,-0.34053060905471266,-0.30326193704253157,-0.28741051490670033,-0.28670228984271917,-0.28606006506151926,-0.2781836858212059,-0.23495869576855233,-0.22903797767401102,-0.2220847158397783,-0.18743849054106354,-0.1713736655053033,-0.1450663141705424,-0.14131585281176307,-0.11370935333659515,-0.09804858979207998,-0.059943258369119956,-0.056045041167887444,-0.05429473736433765,-0.04934090523887047,-0.015997288755292605,0.001619271000820266,0.022913234509681413,0.05001037080421211,0.05928358316952842,0.062361544880642494,0.06935148632487653,0.09547691805981628,0.11694789533823613,0.12852308168961457,0.6410616305124694,0.646490361209711,0.644385474986116,0.6359267048566073,0.6272587932731897,0.6157792467055865,0.5820019602801882,0.5782623926878996,0.5752353127395771,0.5627304837073175,0.5375848343037117,0.5205980805191914,0.5048298007812919,0.4863218323382754,0.5080469063061606,0.5205980805191914,0.5426691874402936,0.554097921675083,0.5782623926878996,0.5997999957584743,0.6214929808076741,0.6359267048566073,0.6410616305124694],\n", "\"..level..\":[0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.009933978653769668,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.019867957307539336,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.029801935961309006,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.03973591461507868,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.04966989326884834,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.05960387192261801,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.06953785057638767,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.07947182923015733,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.08940580788392702,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668,0.09933978653769668]\n", "}\n", "},{\n", "\"mapping\":{\n", "},\n", "\"stat\":\"density\",\n", "\"margin_side\":\"t\",\n", "\"marginal\":true,\n", "\"position\":\"stack\",\n", "\"geom\":\"area\",\n", "\"data\":{\n", "\"x\":[-8.861445954008323,-8.829065372868248,-8.796684791728175,-8.7643042105881,-8.731923629448026,-8.699543048307953,-8.667162467167879,-8.634781886027804,-8.602401304887731,-8.570020723747657,-8.537640142607582,-8.50525956146751,-8.472878980327435,-8.44049839918736,-8.408117818047288,-8.375737236907213,-8.343356655767138,-8.310976074627064,-8.278595493486991,-8.246214912346916,-8.213834331206842,-8.181453750066769,-8.149073168926694,-8.11669258778662,-8.084312006646547,-8.051931425506472,-8.019550844366398,-7.987170263226324,-7.9547896820862505,-7.922409100946177,-7.890028519806102,-7.8576479386660285,-7.825267357525954,-7.79288677638588,-7.7605061952458065,-7.728125614105732,-7.695745032965658,-7.663364451825585,-7.63098387068551,-7.598603289545436,-7.566222708405363,-7.533842127265288,-7.501461546125214,-7.469080964985141,-7.436700383845066,-7.404319802704992,-7.371939221564919,-7.339558640424844,-7.30717805928477,-7.274797478144697,-7.242416897004622,-7.210036315864548,-7.177655734724474,-7.1452751535844,-7.1128945724443255,-7.080513991304252,-7.048133410164178,-7.015752829024104,-6.98337224788403,-6.950991666743956,-6.918611085603882,-6.886230504463808,-6.853849923323734,-6.82146934218366,-6.789088761043586,-6.756708179903512,-6.724327598763438,-6.691947017623364,-6.65956643648329,-6.627185855343216,-6.594805274203142,-6.562424693063068,-6.530044111922994,-6.49766353078292,-6.465282949642846,-6.432902368502772,-6.400521787362697,-6.368141206222624,-6.33576062508255,-6.303380043942475,-6.2709994628024015,-6.238618881662328,-6.206238300522253,-6.1738577193821795,-6.141477138242106,-6.109096557102031,-6.076715975961958,-6.044335394821884,-6.011954813681809,-5.979574232541736,-5.947193651401662,-5.914813070261587,-5.882432489121514,-5.85005190798144,-5.817671326841365,-5.785290745701292,-5.752910164561218,-5.720529583421143,-5.68814900228107,-5.655768421140996,-5.623387840000921,-5.591007258860847,-5.558626677720774,-5.526246096580699,-5.493865515440625,-5.461484934300552,-5.4291043531604775,-5.396723772020403,-5.364343190880329,-5.3319626097402555,-5.299582028600181,-5.267201447460107,-5.2348208663200335,-5.202440285179959,-5.170059704039885,-5.1376791228998115,-5.105298541759737,-5.072917960619663,-5.04053737947959,-5.008156798339515,-4.975776217199441,-4.943395636059368,-4.911015054919293,-4.878634473779219,-4.846253892639145,-4.813873311499071,-4.781492730358997,-4.749112149218923,-4.716731568078849,-4.684350986938775,-4.651970405798701,-4.619589824658627,-4.587209243518553,-4.554828662378479,-4.522448081238405,-4.4900675000983306,-4.457686918958257,-4.425306337818183,-4.392925756678109,-4.360545175538035,-4.328164594397961,-4.295784013257887,-4.263403432117813,-4.231022850977739,-4.198642269837665,-4.166261688697591,-4.133881107557517,-4.101500526417443,-4.069119945277369,-4.036739364137294,-4.004358782997221,-3.971978201857147,-3.9395976207170724,-3.9072170395769987,-3.874836458436925,-3.8424558772968505,-3.8100752961567768,-3.777694715016703,-3.7453141338766285,-3.712933552736555,-3.68055297159648,-3.6481723904564065,-3.615791809316333,-3.5834112281762582,-3.5510306470361845,-3.518650065896111,-3.4862694847560363,-3.4538889036159626,-3.421508322475889,-3.3891277413358143,-3.3567471601957406,-3.324366579055667,-3.2919859979155923,-3.2596054167755186,-3.227224835635444,-3.1948442544953704,-3.1624636733552967,-3.130083092215222,-3.0977025110751484,-3.0653219299350747,-3.032941348795,-3.0005607676549264,-2.9681801865148527,-2.935799605374778,-2.9034190242347044,-2.8710384430946307,-2.838657861954556,-2.8062772808144825,-2.773896699674408,-2.741516118534334,-2.7091355373942605,-2.676754956254186,-2.644374375114112,-2.644374375114112,-2.6119937939740385,-2.579613212833964,-2.5472326316938902,-2.5148520505538166,-2.482471469413742,-2.4500908882736683,-2.4177103071335937,-2.38532972599352,-2.3529491448534463,-2.3205685637133717,-2.288187982573298,-2.2558074014332243,-2.2234268202931498,-2.191046239153076,-2.1586656580130024,-2.126285076872928,-2.093904495732854,-2.0615239145927804,-2.029143333452706,-1.9967627523126321,-1.9643821711725575,-1.9320015900324838,-1.8996210088924101,-1.8672404277523356,-1.8348598466122619,-1.8024792654721882,-1.7700986843321136,-1.73771810319204,-1.7053375220519662,-1.6729569409118916,-1.640576359771818,-1.6081957786317442,-1.5758151974916697,-1.543434616351596,-1.5110540352115214,-1.4786734540714477,-1.4786734540714477,-1.446292872931374,-1.4139122917912994,-1.3815317106512257,-1.349151129511152,-1.3167705483710774,-1.2843899672310037,-1.25200938609093,-1.2196288049508555,-1.1872482238107818,-1.1548676426707072,-1.1224870615306335,-1.0901064803905598,-1.0577258992504852,-1.0253453181104115,-0.9929647369703378,-0.9605841558302632,-0.9282035746901895,-0.8958229935501159,-0.8634424124100413,-0.8310618312699667,-0.7986812501298939,-0.7663006689898193,-0.7339200878497447,-0.7015395067096719,-0.6691589255695973,-0.6367783444295227,-0.6043977632894499,-0.5720171821493754,-0.5396366010093008,-0.507256019869228,-0.4748754387291534,-0.4424948575890788,-0.410114276449006,-0.3777336953089314,-0.34535311416885683,-0.31297253302878403,-0.28059195188870945,-0.24821137074863486,-0.21583078960856206,-0.18345020846848747,-0.1510696273284129,-0.11868904618833831,-0.0863084650482655,-0.05392788390819092,-0.02154730276811634,0.010833278371956467,0.04321385951203105,0.07559444065210563,0.10797502179217844,0.14035560293225302,0.1727361840723276,0.2051167652124004,0.237497346352475,0.2698779274925496,0.3022585086326224,0.33463908977269696,0.33463908977269696,0.36701967091277155,0.39940025205284435,0.43178083319291893,0.4641614143329935,0.4965419954730663,0.5289225766131409,0.5613031577532155,0.5936837388932883,0.6260643200333629,0.6584449011734375,0.690825482313512,0.7232060634535848,0.7555866445936594,0.787967225733734,0.8203478068738068,0.8527283880138814,0.885108969153956,0.9174895502940288,0.9498701314341034,0.982250712574178,1.0146312937142508,1.0470118748543253,1.0793924559944,1.1117730371344727,1.1441536182745473,1.176534199414622,1.2089147805546947,1.2412953616947693,1.2736759428348439,1.3060565239749167,1.3384371051149913,1.3708176862550658,1.4031982673951386,1.4355788485352132,1.4679594296752878,1.5003400108153624,1.5327205919554352,1.5651011730955098,1.5974817542355844,1.6298623353756572,1.6622429165157317,1.6946234976558063,1.7270040787958791,1.7593846599359537,1.7917652410760283,1.824145822216101,1.8565264033561757,1.8889069844962503,1.921287565636323,1.9536681467763977,1.9860487279164722,2.018429309056545,2.0508098901966196,2.083190471336694,2.115571052476767,2.1479516336168416,2.180332214756916,2.212712795896989,2.2450933770370636,2.277473958177138,2.309854539317211,2.3422351204572855,2.37461570159736,2.4069962827374347,2.4393768638775075,2.471757445017582,2.5041380261576567,2.5365186072977295,2.568899188437804,2.6012797695778787,2.6336603507179515,2.666040931858026,2.6984215129981006,2.7308020941381734,2.763182675278248,2.7955632564183226,2.8279438375583954,2.86032441869847,2.8927049998385446,2.9250855809786174,2.957466162118692,2.9898467432587665,3.0222273243988393,3.054607905538914,3.0869884866789885,3.1193690678190613,3.151749648959136,3.1841302300992105,3.216510811239285,3.248891392379358,3.2812719735194324,3.313652554659507,3.34603313579958,3.3784137169396544,3.410794298079729,3.443174879219802,3.4755554603598764,3.507936041499951,3.540316622640024,3.5726972037800984,3.605077784920173,3.6374583660602458,3.6698389472003203,3.702219528340395,3.7346001094804677,3.7669806906205423,3.799361271760617,3.8317418529006897,3.8641224340407643,3.896503015180839,3.9288835963209117,3.9612641774609862,3.993644758601061,4.026025339741135,4.058405920881208,4.090786502021283,4.123167083161357,4.15554766430143,4.187928245441505,4.220308826581579,4.252689407721652,4.285069988861727,4.317450570001801,4.349831151141874,4.382211732281949,4.414592313422023,4.446972894562096,4.479353475702171,4.511734056842245,4.544114637982318,4.576495219122393,4.608875800262467,4.64125638140254,4.673636962542615,4.706017543682689,4.738398124822762,4.770778705962837,4.803159287102911,4.835539868242986,4.867920449383059,4.900301030523133,4.932681611663208,4.9650621928032805,4.997442773943355,5.02982335508343,5.0622039362235025,5.094584517363577,5.126965098503652,5.1593456796437245,5.191726260783799,5.224106841923874,5.2564874230639465,5.288868004204021,5.321248585344096,5.353629166484168,5.386009747624243,5.418390328764318,5.45077090990439,5.483151491044465,5.51553207218454,5.547912653324612,5.580293234464687,5.6126738156047615,5.645054396744834,5.677434977884909,5.7098155590249835,5.742196140165058,5.774576721305131,5.8069573024452055,5.83933788358528,5.871718464725353,5.904099045865427,5.936479627005502,5.968860208145575,6.001240789285649,6.033621370425724,6.066001951565797,6.098382532705871,6.130763113845946,6.163143694986019,6.195524276126093,6.227904857266168,6.260285438406241,6.292666019546315,6.32504660068639,6.357427181826463,6.389807762966537,6.422188344106612,6.454568925246685,6.486949506386759,6.519330087526834,6.551710668666908,6.584091249806981,6.616471830947056,6.64885241208713,6.681232993227203,6.713613574367278,6.745994155507352,6.778374736647425,6.8107553177875,6.843135898927574,6.875516480067647,6.907897061207722,6.940277642347796,6.972658223487869,7.005038804627944,7.037419385768018,7.069799966908091,7.102180548048166,7.13456112918824,7.166941710328315,7.199322291468389,7.2317028726084605,7.264083453748535,7.29646403488861,7.328844616028684,7.361225197168759,7.393605778308833,7.425986359448904,7.458366940588979,7.490747521729054,7.523128102869128,7.555508684009203,7.587889265149277,7.620269846289348,7.652650427429423,7.6850310085694975],\n", "\"y\":[0.002774266233353328,0.0028293699014910983,0.0028786905246669307,0.00292191272484284,0.002958758049664274,0.002988987654709035,0.003012404607872889,0.0030288557925024417,0.0030382333904044956,0.0030404759303852857,0.00303556889248736,0.003023544862593906,0.003004483236568085,0.00297850947760249,0.002945793934986628,0.0029065502370704205,0.0028610332758139683,0.0028095368049603714,0.002752390678527741,0.0026899577609491602,0.0026226305447388243,0.0025508275159542623,0.00247498931186946,0.0023955747190687036,0.002313056563505798,0.002227917546833265,0.002140646085378412,0.002051732209422283,0.001961663580831564,0.0018709216865278266,0.0017799782637018138,0.0016892920100674113,0.0015993056288031633,0.0015104432531819327,0.0014231082903024032,0.0013376817169000357,0.0012545208530434294,0.001173958631750585,0.0010963033743403442,0.001021839072830267,9.508261720728072E-4,8.835028357563926E-4,8.200866720517476E-4,7.607768867122634E-4,7.057568239829515E-4,6.551968488615445E-4,6.092575181959158E-4,5.680929828827028E-4,5.318545591219493E-4,5.006944033320268E-4,4.747692229709093E-4,4.542439541609222E-4,4.392953366781035E-4,4.3011531753651E-4,4.2691421605496675E-4,4.29923585914687E-4,4.3939871326997067E-4,4.5562069442487633E-4,4.788980418948774E-4,5.095677737869424E-4,5.479959483000512E-4,5.945776127087937E-4,6.497361443729827E-4,7.139219700322637E-4,7.876106587994118E-4,8.713003937477311E-4,9.655088366703366E-4,0.001070769410331381,0.0011876270321774629,0.0013166333428670518,0.001458341481935508,0.0016133004712696511,0.0017820492746482728,0.0019651106082542065,0.0021629845826354028,0.002376142260967521,0.002605019221560007,0.002850009214298021,0.0031114580011121595,0.0033896574696487126,0.003684840107152998,0.003997173918297202,0.004326757866445113,0.004673617912844235,0.005037703722692787,0.0054188861011813735,0.005816955216695166,0.006231619662609521,0.006662506403719195,0.0071091616484695195,0.007571052683910646,0.00804757070671089,0.008538034680605855,0.00904169624820471,0.009557745722921108,0.010085319184659372,0.01062350670040783,0.011171361687653574,0.011727911434071455,0.012292168780776847,0.012863144968080682,0.0134398636317077,0.014021375923444048,0.014606776712882996,0.015195221806162893,0.01578594609332231,0.016378282508275006,0.01697168165476833,0.017565731918556614,0.01816017985111269,0.01875495057442743,0.01935016792087881,0.01994617398800769,0.020543547756643576,0.02114312239356851,0.02174600083820163,0.022353569258000392,0.022967507950689435,0.023589799274176107,0.024222732198025846,0.024868903094334194,0.025531212421134715,0.026212856998185624,0.026917317632803316,0.0276483419217097,0.028409922132631604,0.02920626815529292,0.030041775603809887,0.030920989249406877,0.031848562061651105,0.03282921023574363,0.033867664680371,0.03496861953277373,0.036136678352621965,0.03737629872170678,0.03869173604026588,0.04008698736108901,0.041565736137837206,0.04313129878303002,0.04478657393304836,0.04653399530181433,0.048375488971464355,0.05031243591766966,0.052345640499978786,0.054475305564734115,0.0567010147111356,0.05902172216157003,0.061435750557315316,0.06394079687229731,0.06653394650299932,0.06921169545430005,0.07196998040140362,0.07480421626964162,0.07770934083922484,0.08067986575350616,0.08370993318930589,0.08679337733867806,0.08992378975527135,0.0930945875371758,0.09629908325363161,0.09953055547682528,0.10278231875349375,0.10604779184533081,0.10932056308290317,0.11259445171537974,0.11586356419783522,0.11912234443879388,0.12236561713219174,0.1255886234187299,0.1287870482598861,0.13195703906140066,0.1350952152491447,0.13819866867579142,0.141264954918137,0.14429207570846164,0.14727845292488356,0.15022289474113884,0.15312455470128905,0.15598288463547258,0.1587975824649792,0.161568536055063,0.1642957643588671,0.1669793571530178,0.1696194146929474,0.17221598861267517,0.1747690253592477,0.17727831338685768,0.17974343524117342,0.18216372554291188,0.18453823573414138,0.18686570628503893,0.18914454687720997,0.19137282488709778,0.19137282488709778,0.1935482622946935,0.19566824094414315,0.19772981588934338,0.19972973637451438,0.20166447383194405,0.20353025613109968,0.20532310718885952,0.20703889095278782,0.2086733587003795,0.2102221985582283,0.2116810861365111,0.21304573519532105,0.2143119473086953,0.2154756595672306,0.21653298945779859,0.21748027617525295,0.2183141177518717,0.2190314035309858,0.21962934165701728,0.22010548140023622,0.22045773027632135,0.22068436605407268,0.22078404386552056,0.2207557987380654,0.22059904395565635,0.22031356572358377,0.21989951465830518,0.21935739464963241,0.218688049648201,0.21789264891768173,0.21697267126067754,0.21592988868203222,0.2147663498963588,0.21348436402098991,0.21208648472464792,0.21057549502915943,0.21057549502915943,0.20895439288966006,0.20722637761089627,0.20539483709590356,0.20346333587069498,0.2014356037861585,0.19931552526717217,0.19710712895950766,0.19481457761719212,0.19244215807614498,0.18999427117286363,0.18747542148829546,0.18489020682495508,0.18224330735781727,0.17953947443444154,0.17678351903503342,0.17398029993674338,0.17113471165661476,0.16825167227270071,0.16533611124180134,0.16239295734416817,0.1594271268900259,0.15644351231982945,0.1534469713201959,0.15044231656116036,0.1474343061387939,0.144427634781571,0.14142692585054198,0.138436724133841,0.1354614894068106,0.13250559070138665,0.1295733012036592,0.12666879367764877,0.12379613629716373,0.12095928875659291,0.11816209852589747,0.11540829711483017,0.11270149621626693,0.11004518360796955,0.10744271870545045,0.10489732767511727,0.10241209803570982,0.09998997269638445,0.09763374340089358,0.09534604356849126,0.09312934054293916,0.0909859272809168,0.08891791353005724,0.0869272165646654,0.08501555156401766,0.08318442173416857,0.08143510828964359,0.07976866042653026,0.07818588543350788,0.07668733910242435,0.07527331661510457,0.07394384409805271,0.07394384409805271,0.07269867105117003,0.07153726387007148,0.07045880069326237,0.06946216781445602,0.06854595790562257,0.06770847029686643,0.06694771355379055,0.06626141058056977,0.06564700645658611,0.06510167918545134,0.06462235349711831,0.06420571779647034,0.06384824429555452,0.06354621230223216,0.06329573456658023,0.06309278650949916,0.06293323807761307,0.06281288788702719,0.06272749923840078,0.06267283750989085,0.06264470836565234,0.06263899615856765,0.06265170185938289,0.06267897981284118,0.06271717260675282,0.06276284334376826,0.06281280462891607,0.06286414362909995,0.06291424262343379,0.06296079454455936,0.06300181310931624,0.06303563725005898,0.06306092968272599,0.06307666958115479,0.06308213946543391,0.06307690655134769,0.06306079894414401,0.06303387718888541,0.06299640180762597,0.06294879755696797,0.0628916152249722,0.0628254918512271,0.06275111029603088,0.06266915910269699,0.06258029359028516,0.062485099082658195,0.06238405712450708,0.062277515457425194,0.062165662431488994,0.06204850641293331,0.06192586061975498,0.06179733367815446,0.061662326047653385,0.06152003231565706,0.06136944921732189,0.06120938909788821,0.06103849840593096,0.060855280690692466,0.06065812347774819,0.060445328317115694,0.06021514323833316,0.05996579680911693,0.059695532978399996,0.05940264589059502,0.05908551388492392,0.05874263194009224,0.058372641888418245,0.05797435980223709,0.05754680004613575,0.05708919558820557,0.05660101426877761,0.05608197083273927,0.05553203463832676,0.05495143305822636,0.05434065068517225,0.05370042454162747,0.05303173556962396,0.052335796740946225,0.051614038178577556,0.05086808971720481,0.05009976135360059,0.04931102204732793,0.04850397732930995,0.04768084616160127,0.04684393746768503,0.04599562672051063,0.04513833293710828,0.044274496385844506,0.04340655726705238,0.042536935581624705,0.04166801235675801,0.04080211235474866,0.03994148835066172,0.03908830702865988,0.03824463651533921,0.03741243554183983,0.03659354420480688,0.035789676279247826,0.03500241302356717,0.03423319840800902,0.03348333569175678,0.03275398527033371,0.032046163713032524,0.031360743909229834,0.030698456242053876,0.030059890707526397,0.02944549989668223,0.028855602757110743,0.02829038904884718,0.027749924407675507,0.027234155926917514,0.026742918166996713,0.026275939500853135,0.02583284870304998,0.025413181691542622,0.025016388333916346,0.024641839234702825,0.02428883242731385,0.023956599903218252,0.023644313922127232,0.023351093059904963,0.023076007965308527,0.022818086811992714,0.02257632044790208,0.022349667259565064,0.022137057783214974,0.0219373991074141,0.021749579122311746,0.021572470678269392,0.021404935720887672,0.021245829470168585,0.021094004708491564,0.020948316235301866,0.0208076255361053,0.02067080569990504,0.020536746603134357,0.020404360360092633,0.020272587020649123,0.020140400476374127,0.02000681451715828,0.01987088896264464,0.019731735777237785,0.019588525064789974,0.01944049082990556,0.01928693638760949,0.019127239302186978,0.018960855739436056,0.018787324124313814,0.01860626800775673,0.01841739806190539,0.018220513141507542,0.018015500370236057,0.01780233423327565,0.01758107468098373,0.017351864271876183,0.01711492440580321,0.016870550719185674,0.016619107732877218,0.016361022859007042,0.016096779885566848,0.015826912066197567,0.01555199494741647,0.015272639066358607,0.0149894826490858,0.014703184432873866,0.01441441672597202,0.01412385880558522,0.013832190739788917,0.013540087702326507,0.013248214831378304,0.012957222665049187,0.012667743168111159,0.012380386347033357,0.012095737434060908,0.011814354606528805,0.011536767195100392,0.011263474324502951,0.010994943922807886,0.010731612030489621,0.010473882338427467,0.010222125884636026,0.009976680842688651,0.00973785234033088,0.009505912254402749,0.009281098937581379,0.009063616843260855,0.008853636026718384,0.008651291513168026,0.008456682535962734,0.008269871660665187,0.008090883822570618,0.007919705316160272,0.007756282784551799,0.007600522264991872,0.007452288352552993,0.0073114035482468665,0.007177647859605843,0.007050758721323498,0.006930431300760254,0.006816319248047307,0.006708035943259836,0.006605156283837264,0.006507219044319128,0.006413729827807376,0.0063241646146720756,0.006237973899241281,0.006154587389939824,0.006073419232971427,0.0059938737045911504,0.005915351302708559,0.005837255155403913,0.005758997652317807,0.0056800071951428185,0.005599734955916523,0.005517661526748016,0.005433303342203075,0.005346218755957528,0.005256013656560072,0.005162346513205637,0.0050649327512093546,0.004963548368215036,0.00485803271582069,0.004748290386942366,0.0046342921664890326,0.004516075021361168,0.004393741124951123,0.004267455930728322],\n", "\"..quantile..\":[0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0]\n", "}\n", "},{\n", "\"mapping\":{\n", "},\n", "\"stat\":\"density\",\n", "\"orientation\":\"y\",\n", "\"margin_side\":\"r\",\n", "\"marginal\":true,\n", "\"position\":\"stack\",\n", "\"geom\":\"area\",\n", "\"data\":{\n", "\"x\":[0.004244749633347162,0.004260210924079288,0.004269509904791106,0.004272989444542826,0.004271065611105359,0.00426422660340112,0.004253030995854203,0.004238105303041119,0.004220140880169087,0.004199890181682518,0.0041781624066279405,0.004155818565225504,0.004133766006350295,0.004112952450283805,0.004094359575136381,0.004078996208761958,0.00406789118079764,0.004062085891686154,0.004062626657212674,0.004070556888250781,0.004086909166112438,0.00411269727418389,0.0041489082464530634,0.004196494493141641,0.004256366062988668,0.0043293831008277195,0.004416348557982396,0.004518001211692213,0.004635009048278183,0.00476796306306016,0.004917371528130681,0.005083654776948284,0.005267140552304183,0.005468059961501837,0.005686544079526152,0.005922621237525897,0.006176215030046224,0.006447143070093644,0.00673511651626117,0.007039740390771523,0.007360514701401723,0.00769683637384601,0.008048001994178676,0.008413211353740504,0.00879157178105275,0.009182103237344108,0.009583744144055358,0.009995357902381109,0.01041574005664597,0.010843626045237136,0.011277699475075871,0.01171660084836203,0.012158936663728177,0.01260328880814298,0.013048224151057766,0.013492304248530249,0.01393409506250323,0.014372176599169242,0.01480515237048686,0.015231658584487799,0.015650372973046903,0.01606002317027542,0.01645939456060249,0.01684733752286474,0.017222774005227193,0.01758470337538343,0.017932207501072012,0.018264455027317848,0.018580704828760286,0.018880308627743734,0.019162712781289143,0.01942745925239654,0.01967418579310669,0.019902625378135298,0.02011260493845478,0.02030404345371895,0.020476949470709372,0.020631418121852048,0.02076762772316733,0.020885836034658576,0.020986376268042402,0.021069652926831973,0.02113613756210816,0.02118636452389121,0.021220926782936887,0.021240471891147982,0.021245698140770077,0.021237350973319292,0.02121621967899022,0.02118313441636144,0.021138963570816714,0.021084611458512193,0.0210210163712322,0.02094914894637083,0.020870010835835968,0.020784633638161864,0.020694078049779508,0.020599433184447253,0.020501816004473216,0.020402370803706705,0.020302268680440813,0.020202706938404102,0.020104908355932212,0.02001012026714934,0.019919613404461564,0.019834680458720465,0.019756634321865075,0.019686805986460637,0.01962654208705267,0.019577202079349237,0.019540155064610057,0.01951677627792884,0.019508443270007347,0.01951653182220547,0.019542411643798826,0.01958744190819082,0.019652966691057126,0.019740310377830302,0.019850773110397357,0.01998562634327413,0.020146108577785392,0.020333421338933483,0.020548725453754173,0.020793137682177557,0.02106772774193187,0.021373515758102316,0.021711470155895484,0.022082506002298722,0.02248748378905441,0.022927208636081282,0.02340242988158763,0.02391384101304412,0.024462079882313553,0.025047729138946696,0.025671316808284387,0.02633331693584227,0.02703415021673592,0.0277741845287882,0.028553735290556683,0.029373065570832205,0.030232385884147134,0.03113185361734167,0.032071572045067456,0.03305158890696122,0.03407189453575163,0.035132419543351355,0.03623303209057684,0.037373534785027133,0.03855366127032179,0.03977307258780988,0.04103135340848686,0.04232800824768005,0.04366245778760668,0.045034035442732,0.046441984309578695,0.047885454645953576,0.049363502024233494,0.05087508629922958,0.052419071523195464,0.05399422692876963,0.05559922908521319,0.05723266531442132,0.05889303843119614,0.06057877284755389,0.062288222053903,0.06401967746130509,0.06577137855932919,0.06754152431387529,0.06932828569944738,0.07112981923137517,0.07294428133611632,0.07476984337264522,0.07660470709570703,0.07844712033292874,0.0802953926329683,0.08214791063145442,0.08400315287578687,0.0858597038491643,0.08771626693863199,0.08957167610152951,0.09142490599939024,0.0932750803879151,0.0951214785758216,0.0969635397937599,0.09880086534658737,0.10063321845755414,0.10246052175069108,0.10428285235722935,0.10610043467244427,0.10791363083013245,0.1097229290021931,0.11152892966971997,0.1133323300488123,0.11513390688830206,0.11693449788702096,0.11873498200455382,0.12053625896105315,0.12233922823822536,0.12414476790467117,0.12595371359418128,0.1277668379651882,0.1295848309634019,0.13140828119780149,0.13323765872283613,0.13507329949727392,0.13691539176301307,0.13876396455591253,0.1406188785258543,0.14247981920553054,0.14434629282754766,0.14621762474810196,0.148092960493517,0.14997126940405447,0.15185135080844814,0.1537318426232582,0.15561123223408313,0.15748786948159524,0.15935998154477726,0.1612256894871852,0.16308302620992396,0.16492995553761364,0.16676439215118344,0.16858422207394866,0.17038732341516177,0.1721715870779661,0.17393493714628927,0.17567535067743012,0.17739087664355616,0.1790796537856806,0.1807399271674216,0.18237006324246618,0.18396856327860903,0.18553407501190897,0.18706540243633565,0.18856151366663101,0.19002154684440759,0.19144481408916397,0.19283080352637635,0.19417917945361876,0.19548978073230128,0.19676261751671434,0.19799786645328316,0.1991958645009845,0.20035710153858222,0.2014822119355689,0.202571965271366,0.203627256391551,0.20464909499062067,0.2056385949083286,0.20659696332110772,0.2075254900018202,0.20842553681035172,0.209298527564813,0.21014593842860863,0.21096928893291111,0.21177013373745124,0.2125500552154557,0.21331065693140977,0.2140535580634525,0.2147803888059693,0.2154927867725894,0.21619239440556093,0.21688085738454874,0.21755982401636612,0.2182309455770725,0.2188958775692146,0.21955628184970016,0.22021382957770733,0.22087020492699191,0.2215271095027451,0.22218626739949068,0.22284943083316555,0.22351838627722778,0.22419496102909175,0.2248810301292434,0.22557852355076122,0.2262894335715851,0.22701582223564384,0.2277598288018307,0.22852367707193205,0.22930968248007727,0.23012025881730602,0.23095792445582813,0.23095792445582813,0.23182530792874753,0.2327251527129782,0.23366032105622186,0.2346337966837495,0.23564868621786925,0.23670821914285456,0.23781574615134474,0.2389747357151136,0.24018876873417383,0.24146153113357477,0.2427968042972447,0.24419845325280748,0.24567041255036098,0.24721666981159568,0.2488412469627854,0.2505481792057634,0.2523414918241189,0.25422517496683494,0.2562031565974082,0.2582792738421531,0.26045724301577944,0.26274062864427533,0.2651328118435121,0.26763695844562146,0.2702559872930419,0.2729925391411637,0.2758489466238869,0.27882720574135716,0.28192894932520324,0.2851554229233378,0.28850746352371237,0.2919854815044171,0.295589446156514,0.29931887507652144,0.303172827668332,0.307149902930475,0.31124824163524606,0.3154655329325755,0.3197990253351311,0.3242455419634795,0.3288014998529159,0.3334629330482721,0.3382255191414067,0.34308460883955255,0.348035258092847,0.3530722622573943,0.35819019172738015,0.3633834284369711,0.36864620261080794,0.3739726291313427,0.3793567428924293,0.38479253252148593,0.39027397187701746,0.3957950487640084,0.4013497903558858,0.40693228486775807,0.4125366990902704,0.4181572914656861,0.4237884204662256,0.4294245481180052,0.43506023860056525,0.4406901519404325,0.4463090329059405,0.4519116952980463,0.45749300191671,0.46304784056307285,0.4685710965129553,0.47405762196574375,0.47950220303359764,0.47950220303359764,0.48489952488808413,0.49024413572397263,0.4955304102325653,0.5007525132988325,0.5059043646477942,0.5109796051656201,0.5159715656100229,0.5208732384028046,0.5256772531652179,0.5303758566146725,0.5349608973897831,0.5394238163106672,0.543755642513513,0.5479469958238558,0.5519880956525628,0.5558687766136338,0.5595785109744561,0.5631064379585873,0.566441399829557,0.5695719845928929,0.5724865750638584,0.5751734039613988,0.5776206146057673,0.5798163267193034,0.5817487067579822,0.5834060421365123,0.5847768186528619,0.5858498003698299,0.5866141111722526,0.5870593171891876,0.5871755092511908,0.5869533845438295,0.5863843266199443,0.5854604829446579,0.5841748391686081,0.5825212893558821,0.5804947014331662,0.5780909771750689,0.5753071060966561,0.5721412126871575,0.5721412126871575,0.5685925964876212,0.564661764589039,0.5603504562051641,0.5556616590547749,0.5505996173705596,0.5451698314349374,0.539379048626116,0.5332352460393924,0.5267476048283382,0.5199264764870639,0.5127833413676046,0.5053307597947253,0.49758231620361393,0.48955255678341536,0.4812569211609226,0.47271166870363507,0.4639338000595877,0.4549409745825861,0.4457514243157861,0.43638386522383493,0.42685740637411335,0.41719145777118866,0.4074056375455045,0.39751967918792425,0.38755333950629184,0.37752630795894576,0.3674581179936527,0.35736806098896506,0.3472751033590945,0.3371978073434638,0.3271542559586244,0.317161982543705,0.30723790528152467,0.2973982670263994,0.28765858071712447,0.27803358060004035,0.2685371794330711,0.25918243178765754,0.24998150351208803,0.24094564736736385,0.23208518479590126,0.22340949373449287,0.21492700233651,0.2066451884246739,0.19857058445524417,0.190708787737503,0.18306447561920725,0.17564142531950108,0.168442538065805,0.1614698671705278,0.15472464966721486,0.1482073411139126,0.14191765316408714,0.13585459350228696,0.1300165077427227,0.12440112289385909,0.11900559200074445,0.1138265395887904,0.10886010754782444,0.10410200111301733,0.09954753461942181,0.09519167672892064,0.09102909485197314,0.0870541985112801,0.0832611814199304,0.07964406207241496,0.07619672267269496,0.0729129462489904,0.06978645182980822,0.06681092757969856,0.06398006181609758,0.06128757185021946,0.05872723061514487,0.05629289106296158,0.05397850832996491,0.05177815968452654,0.04968606228630693,0.04769658879806694,0.04580428090250249,0.04400386078637885,0.04229024066286688,0.04065853041051576,0.03910404341382198,0.03762230069599704,0.036209033439385904,0.03486018399313437,0.03357190547121462,0.032340560046852714,0.03116271605178536,0.030035143990638356,0.02895481158204955,0.027918877938952473,0.026924687000657158,0.025969760328978374,0.025051789379621853,0.024168627358304433,0.023318280768604028,0.022498900755281884,0.021708774342757545,0.020946315663537267,0.02021005726570238,0.019498641582076297,0.018810812636450923,0.018145408054330882,0.01750135143712712,0.016877645149712767,0.016273363561859003,0.01568764677444059,0.015119694851588523,0.014568762570329961,0.014034154689856153,0.013515221733561362,0.013011356268553452,0.012521989659603033,0.01204658926760097,0.011584656056653203,0.011135722569049702,0.010699351223572311,0.01027513288999739,0.009862685691222417],\n", "\"y\":[-3.227582210446822,-3.2164104552517103,-3.205238700056599,-3.194066944861487,-3.1828951896663753,-3.1717234344712635,-3.160551679276152,-3.1493799240810403,-3.1382081688859285,-3.1270364136908166,-3.1158646584957053,-3.1046929033005934,-3.0935211481054816,-3.08234939291037,-3.0711776377152584,-3.0600058825201466,-3.048834127325035,-3.037662372129923,-3.0264906169348116,-3.0153188617396998,-3.004147106544588,-2.992975351349476,-2.9818035961543647,-2.970631840959253,-2.959460085764141,-2.9482883305690293,-2.937116575373918,-2.925944820178806,-2.9147730649836943,-2.9036013097885824,-2.892429554593471,-2.8812577993983592,-2.8700860442032474,-2.8589142890081356,-2.8477425338130242,-2.8365707786179124,-2.8253990234228006,-2.8142272682276888,-2.8030555130325774,-2.7918837578374656,-2.7807120026423537,-2.769540247447242,-2.7583684922521305,-2.7471967370570187,-2.736024981861907,-2.724853226666795,-2.7136814714716837,-2.702509716276572,-2.69133796108146,-2.6801662058863487,-2.668994450691237,-2.657822695496125,-2.646650940301013,-2.6354791851059014,-2.62430742991079,-2.613135674715678,-2.6019639195205664,-2.590792164325455,-2.579620409130343,-2.5684486539352314,-2.5572768987401195,-2.5461051435450077,-2.5349333883498963,-2.5237616331547845,-2.5125898779596727,-2.5014181227645613,-2.4902463675694495,-2.4790746123743377,-2.467902857179226,-2.456731101984114,-2.4455593467890027,-2.434387591593891,-2.423215836398779,-2.4120440812036676,-2.400872326008556,-2.389700570813444,-2.378528815618332,-2.3673570604232204,-2.356185305228109,-2.345013550032997,-2.3338417948378853,-2.322670039642774,-2.311498284447662,-2.3003265292525503,-2.2891547740574385,-2.2779830188623267,-2.2668112636672153,-2.2556395084721035,-2.2444677532769917,-2.2332959980818803,-2.2221242428867685,-2.2109524876916566,-2.199780732496545,-2.188608977301433,-2.1774372221063216,-2.16626546691121,-2.1550937117160984,-2.1439219565209866,-2.132750201325875,-2.121578446130763,-2.110406690935651,-2.0992349357405393,-2.088063180545428,-2.076891425350316,-2.0657196701552047,-2.054547914960093,-2.043376159764981,-2.0322044045698693,-2.0210326493747575,-2.0098608941796456,-1.9986891389845343,-1.9875173837894224,-1.9763456285943108,-1.965173873399199,-1.9540021182040874,-1.9428303630089756,-1.931658607813864,-1.9204868526187522,-1.9093150974236406,-1.8981433422285288,-1.8869715870334172,-1.8757998318383053,-1.8646280766431937,-1.853456321448082,-1.8422845662529703,-1.8311128110578585,-1.819941055862747,-1.808769300667635,-1.7975975454725235,-1.7864257902774119,-1.7752540350823,-1.7640822798871885,-1.7529105246920766,-1.741738769496965,-1.7305670143018532,-1.7193952591067416,-1.7082235039116298,-1.6970517487165182,-1.6858799935214064,-1.6747082383262948,-1.663536483131183,-1.6523647279360714,-1.6411929727409595,-1.630021217545848,-1.6188494623507361,-1.6076777071556245,-1.5965059519605127,-1.585334196765401,-1.5741624415702893,-1.5629906863751777,-1.5518189311800659,-1.5406471759849543,-1.5294754207898424,-1.5183036655947308,-1.507131910399619,-1.4959601552045074,-1.4847884000093956,-1.473616644814284,-1.4624448896191722,-1.4512731344240606,-1.4401013792289488,-1.4289296240338372,-1.4177578688387253,-1.4065861136436137,-1.395414358448502,-1.3842426032533903,-1.3730708480582785,-1.361899092863167,-1.350727337668055,-1.3395555824729435,-1.3283838272778317,-1.31721207208272,-1.3060403168876082,-1.2948685616924966,-1.2836968064973848,-1.2725250513022732,-1.2613532961071614,-1.2501815409120498,-1.239009785716938,-1.2278380305218264,-1.2166662753267148,-1.205494520131603,-1.1943227649364911,-1.1831510097413793,-1.171979254546268,-1.1608074993511561,-1.1496357441560443,-1.1384639889609325,-1.127292233765821,-1.1161204785707093,-1.1049487233755975,-1.0937769681804856,-1.0826052129853743,-1.0714334577902624,-1.0602617025951506,-1.0490899474000392,-1.0379181922049274,-1.0267464370098156,-1.0155746818147038,-1.0044029266195924,-0.9932311714244806,-0.9820594162293688,-0.9708876610342569,-0.9597159058391456,-0.9485441506440337,-0.9373723954489219,-0.9262006402538101,-0.9150288850586987,-0.9038571298635869,-0.8926853746684751,-0.8815136194733633,-0.8703418642782519,-0.8591701090831401,-0.8479983538880282,-0.8368265986929164,-0.825654843497805,-0.8144830883026932,-0.8033113331075814,-0.7921395779124696,-0.7809678227173582,-0.7697960675222464,-0.7586243123271346,-0.7474525571320227,-0.7362808019369114,-0.7251090467417995,-0.7139372915466877,-0.7027655363515759,-0.6915937811564645,-0.6804220259613527,-0.6692502707662409,-0.6580785155711291,-0.6469067603760177,-0.6357350051809059,-0.624563249985794,-0.6133914947906822,-0.6022197395955708,-0.591047984400459,-0.5798762292053472,-0.5687044740102354,-0.557532718815124,-0.5463609636200122,-0.5351892084249004,-0.5240174532297885,-0.5128456980346772,-0.5016739428395653,-0.4905021876444535,-0.4793304324493417,-0.4681586772542303,-0.4569869220591185,-0.4458151668640067,-0.43464341166889486,-0.4234716564737835,-0.41229990127867167,-0.40112814608355984,-0.389956390888448,-0.37878463569333665,-0.3676128804982248,-0.356441125303113,-0.3452693701080016,-0.3340976149128898,-0.322925859717778,-0.31175410452266616,-0.3005823493275548,-0.28941059413244297,-0.27823883893733115,-0.2670670837422193,-0.25589532854710795,-0.24472357335199613,-0.2335518181568843,-0.22238006296177248,-0.2112083077666611,-0.2000365525715493,-0.18886479737643747,-0.17769304218132564,-0.16652128698621427,-0.15534953179110245,-0.14417777659599063,-0.1330060214008788,-0.12183426620576743,-0.1106625110106556,-0.09949075581554379,-0.08831900062043196,-0.07714724542532059,-0.07714724542532059,-0.06597549023020877,-0.054803735035096945,-0.043631979839985124,-0.03246022464487375,-0.021288469449761926,-0.010116714254650105,0.0010550409404617156,0.012226796135573093,0.023398551330684914,0.034570306525796735,0.045742061720908556,0.05691381691601993,0.06808557211113175,0.07925732730624357,0.0904290825013554,0.10160083769646677,0.1127725928915786,0.12394434808669041,0.13511610328180224,0.1462878584769136,0.15745961367202543,0.16863136886713725,0.17980312406224908,0.19097487925736045,0.20214663445247227,0.2133183896475841,0.22449014484269592,0.2356619000378073,0.2468336552329191,0.25800541042803093,0.26917716562314276,0.28034892081825413,0.29152067601336595,0.3026924312084778,0.3138641864035896,0.325035941598701,0.3362076967938128,0.3473794519889246,0.358551207184036,0.3697229623791478,0.38089471757425963,0.39206647276937145,0.40323822796448283,0.41440998315959465,0.4255817383547065,0.4367534935498183,0.44792524874492967,0.4590970039400415,0.4702687591351533,0.48144051433026513,0.4926122695253765,0.5037840247204883,0.5149557799156002,0.526127535110712,0.5372992903058234,0.5484710455009352,0.559642800696047,0.5708145558911588,0.5819863110862702,0.593158066281382,0.6043298214764938,0.6155015766716057,0.626673331866717,0.6378450870618289,0.6490168422569407,0.6601885974520525,0.6713603526471639,0.6825321078422757,0.6937038630373875,0.6937038630373875,0.7048756182324993,0.7160473734276107,0.7272191286227225,0.7383908838178344,0.7495626390129462,0.7607343942080576,0.7719061494031694,0.7830779045982807,0.7942496597933926,0.8054214149885044,0.8165931701836162,0.827764925378728,0.8389366805738399,0.8501084357689517,0.8612801909640635,0.8724519461591744,0.8836237013542863,0.8947954565493981,0.9059672117445099,0.9171389669396217,0.9283107221347335,0.9394824773298454,0.9506542325249572,0.9618259877200681,0.9729977429151799,0.9841694981102918,0.9953412533054036,1.0065130085005154,1.0176847636956272,1.028856518890739,1.0400282740858509,1.0512000292809618,1.0623717844760736,1.0735435396711854,1.0847152948662973,1.095887050061409,1.107058805256521,1.1182305604516327,1.1294023156467436,1.1405740708418555,1.1405740708418555,1.1517458260369673,1.1629175812320791,1.174089336427191,1.1852610916223028,1.1964328468174146,1.2076046020125264,1.2187763572076373,1.2299481124027491,1.241119867597861,1.2522916227929728,1.2634633779880846,1.2746351331831964,1.2858068883783083,1.29697864357342,1.308150398768531,1.3193221539636428,1.3304939091587547,1.3416656643538665,1.3528374195489783,1.3640091747440901,1.375180929939202,1.3863526851343138,1.3975244403294247,1.4086961955245365,1.4198679507196483,1.4310397059147602,1.442211461109872,1.4533832163049838,1.4645549715000956,1.4757267266952074,1.4868984818903184,1.4980702370854302,1.509241992280542,1.5204137474756538,1.5315855026707657,1.5427572578658775,1.5539290130609893,1.5651007682561011,1.576272523451212,1.5874442786463239,1.5986160338414357,1.6097877890365475,1.6209595442316593,1.6321312994267712,1.643303054621883,1.6544748098169948,1.6656465650121057,1.6768183202072175,1.6879900754023294,1.6991618305974412,1.710333585792553,1.7215053409876648,1.7326770961827767,1.7438488513778885,1.7550206065729994,1.7661923617681112,1.777364116963223,1.7885358721583349,1.7997076273534467,1.8108793825485585,1.8220511377436703,1.8332228929387813,1.844394648133893,1.855566403329005,1.8667381585241167,1.8779099137192286,1.8890816689143404,1.9002534241094522,1.911425179304564,1.922596934499675,1.9337686896947868,1.9449404448898986,1.9561122000850104,1.9672839552801222,1.978455710475234,1.9896274656703459,2.0007992208654577,2.0119709760605686,2.0231427312556804,2.0343144864507923,2.045486241645904,2.056657996841016,2.0678297520361277,2.0790015072312396,2.0901732624263514,2.1013450176214623,2.112516772816574,2.123688528011686,2.1348602832067978,2.1460320384019096,2.1572037935970214,2.1683755487921332,2.179547303987245,2.190719059182356,2.201890814377468,2.2130625695725796,2.2242343247676915,2.2354060799628033,2.246577835157915,2.257749590353027,2.2689213455481387,2.2800931007432497,2.2912648559383615,2.3024366111334733,2.313608366328585,2.324780121523697,2.3359518767188088,2.3471236319139206,2.3582953871090324,2.3694671423041433,2.380638897499255,2.391810652694367,2.402982407889479,2.4141541630845906,2.4253259182797025,2.4364976734748143,2.447669428669926,2.458841183865037,2.470012939060149,2.4811846942552607],\n", "\"..quantile..\":[0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,0.75,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0]\n", "}\n", "}],\n", "\"theme\":{\n", "\"name\":\"light\"\n", "}\n", "};\n", " var plotContainer = document.getElementById(\"SdqVYy\");\n", " window.letsPlotCall(function() {{\n", " LetsPlot.buildPlotFromProcessedSpecs(plotSpec, -1, -1, plotContainer);\n", " }});\n", " })(); \n", " </script>" ] }, "execution_count": 13, "metadata": {}, "output_type": "execute_result" } ], "source": [ "// Show marginal densities on a 2D-density plot.\n", "\n", "letsPlot(dat) {x = \"x\"; y = \"y\"} + geomDensity2DFilled {fill = \"..level..\"} + coordCartesian() +\n", " ggmarginal(\"tr\", layer = geomArea(stat = Stat.density()))" ] }, { "cell_type": "code", "execution_count": 14, "id": "bizarre-longer", "metadata": {}, "outputs": [ { "data": { "text/html": [ " <div id=\"kotlin_out_0\"/>\n", " <script type=\"text/javascript\">\n", " if(!window.kotlinQueues) {\n", " window.kotlinQueues = {};\n", " }\n", " if(!window.kotlinQueues[\"DataFrame\"]) {\n", " var resQueue = [];\n", " window.kotlinQueues[\"DataFrame\"] = resQueue;\n", " window[\"call_DataFrame\"] = function(f) {\n", " resQueue.push(f);\n", " }\n", " }\n", " (function (){\n", " var modifiers = [(function(script) {\n", " script.src = \"https://cdn.jsdelivr.net/gh/Kotlin/dataframe@3db46ccccaa1291c0627307d64133317f545e6ae/core/src/main/resources/init.js\"\n", " script.type = \"text/javascript\";\n", "})];\n", " var e = document.getElementById(\"kotlin_out_0\");\n", " modifiers.forEach(function (gen) {\n", " var script = document.createElement(\"script\");\n", " gen(script)\n", " script.addEventListener(\"load\", function() {\n", " window[\"call_DataFrame\"] = function(f) {f();};\n", " window.kotlinQueues[\"DataFrame\"].forEach(function(f) {f();});\n", " window.kotlinQueues[\"DataFrame\"] = [];\n", " }, false);\n", " script.addEventListener(\"error\", function() {\n", " window[\"call_DataFrame\"] = function(f) {};\n", " window.kotlinQueues[\"DataFrame\"] = [];\n", " var div = document.createElement(\"div\");\n", " div.style.color = 'darkred';\n", " div.textContent = 'Error loading resource DataFrame';\n", " document.getElementById(\"kotlin_out_0\").appendChild(div);\n", " }, false);\n", " \n", " e.appendChild(script);\n", " });\n", " })();\n", " </script>" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ " <style>\n", " :root {\n", " --background: #fff;\n", " --background-odd: #f5f5f5;\n", " --background-hover: #d9edfd;\n", " --header-text-color: #474747;\n", " --text-color: #848484;\n", " --text-color-dark: #000;\n", " --text-color-medium: #737373;\n", " --text-color-pale: #b3b3b3;\n", " --inner-border-color: #aaa;\n", " --bold-border-color: #000;\n", " --link-color: #296eaa;\n", " --link-color-pale: #296eaa;\n", " --link-hover: #1a466c;\n", "}\n", "\n", ":root[theme=\"dark\"], :root [data-jp-theme-light=\"false\"], .dataframe_dark{\n", " --background: #303030;\n", " --background-odd: #3c3c3c;\n", " --background-hover: #464646;\n", " --header-text-color: #dddddd;\n", " --text-color: #b3b3b3;\n", " --text-color-dark: #dddddd;\n", " --text-color-medium: #b2b2b2;\n", " --text-color-pale: #737373;\n", " --inner-border-color: #707070;\n", " --bold-border-color: #777777;\n", " --link-color: #008dc0;\n", " --link-color-pale: #97e1fb;\n", " --link-hover: #00688e;\n", "}\n", "\n", "p.dataframe_description {\n", " color: var(--text-color-dark);\n", "}\n", "\n", "table.dataframe {\n", " font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n", " font-size: 12px;\n", " background-color: var(--background);\n", " color: var(--text-color-dark);\n", " border: none;\n", " border-collapse: collapse;\n", "}\n", "\n", "table.dataframe th, td {\n", " padding: 6px;\n", " border: 1px solid transparent;\n", " text-align: left;\n", "}\n", "\n", "table.dataframe th {\n", " background-color: var(--background);\n", " color: var(--header-text-color);\n", "}\n", "\n", "table.dataframe td {\n", " vertical-align: top;\n", "}\n", "\n", "table.dataframe th.bottomBorder {\n", " border-bottom-color: var(--bold-border-color);\n", "}\n", "\n", "table.dataframe tbody > tr:nth-child(odd) {\n", " background: var(--background-odd);\n", "}\n", "\n", "table.dataframe tbody > tr:nth-child(even) {\n", " background: var(--background);\n", "}\n", "\n", "table.dataframe tbody > tr:hover {\n", " background: var(--background-hover);\n", "}\n", "\n", "table.dataframe a {\n", " cursor: pointer;\n", " color: var(--link-color);\n", " text-decoration: none;\n", "}\n", "\n", "table.dataframe tr:hover > td a {\n", " color: var(--link-color-pale);\n", "}\n", "\n", "table.dataframe a:hover {\n", " color: var(--link-hover);\n", " text-decoration: underline;\n", "}\n", "\n", "table.dataframe img {\n", " max-width: fit-content;\n", "}\n", "\n", "table.dataframe th.complex {\n", " background-color: var(--background);\n", " border: 1px solid var(--background);\n", "}\n", "\n", "table.dataframe .leftBorder {\n", " border-left-color: var(--inner-border-color);\n", "}\n", "\n", "table.dataframe .rightBorder {\n", " border-right-color: var(--inner-border-color);\n", "}\n", "\n", "table.dataframe .rightAlign {\n", " text-align: right;\n", "}\n", "\n", "table.dataframe .expanderSvg {\n", " width: 8px;\n", " height: 8px;\n", " margin-right: 3px;\n", "}\n", "\n", "table.dataframe .expander {\n", " display: flex;\n", " align-items: center;\n", "}\n", "\n", "/* formatting */\n", "\n", "table.dataframe .null {\n", " color: var(--text-color-pale);\n", "}\n", "\n", "table.dataframe .structural {\n", " color: var(--text-color-medium);\n", " font-weight: bold;\n", "}\n", "\n", "table.dataframe .dataFrameCaption {\n", " font-weight: bold;\n", "}\n", "\n", "table.dataframe .numbers {\n", " color: var(--text-color-dark);\n", "}\n", "\n", "table.dataframe td:hover .formatted .structural, .null {\n", " color: var(--text-color-dark);\n", "}\n", "\n", "table.dataframe tr:hover .formatted .structural, .null {\n", " color: var(--text-color-dark);\n", "}\n", "\n", "\n", " </style>" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "// A marginal plot with a significant number of groups on margins. \n", "\n", "\n", "%use dataframe" ] }, { "cell_type": "code", "execution_count": 15, "id": "stainless-throat", "metadata": {}, "outputs": [ { "data": { "application/kotlindataframe+json": "{\"nrow\":3,\"ncol\":12,\"columns\":[\"untitled\",\"manufacturer\",\"model\",\"displ\",\"year\",\"cyl\",\"trans\",\"drv\",\"cty\",\"hwy\",\"fl\",\"class\"],\"kotlin_dataframe\":[{\"untitled\":1,\"manufacturer\":\"audi\",\"model\":\"a4\",\"displ\":1.8,\"year\":1999,\"cyl\":4,\"trans\":\"auto(l5)\",\"drv\":\"f\",\"cty\":18,\"hwy\":29,\"fl\":\"p\",\"class\":\"compact\"},{\"untitled\":2,\"manufacturer\":\"audi\",\"model\":\"a4\",\"displ\":1.8,\"year\":1999,\"cyl\":4,\"trans\":\"manual(m5)\",\"drv\":\"f\",\"cty\":21,\"hwy\":29,\"fl\":\"p\",\"class\":\"compact\"},{\"untitled\":3,\"manufacturer\":\"audi\",\"model\":\"a4\",\"displ\":2.0,\"year\":2008,\"cyl\":4,\"trans\":\"manual(m6)\",\"drv\":\"f\",\"cty\":20,\"hwy\":31,\"fl\":\"p\",\"class\":\"compact\"}]}", "text/html": [ " <html>\n", " <head>\n", " <style type=\"text/css\">\n", " :root {\n", " --background: #fff;\n", " --background-odd: #f5f5f5;\n", " --background-hover: #d9edfd;\n", " --header-text-color: #474747;\n", " --text-color: #848484;\n", " --text-color-dark: #000;\n", " --text-color-medium: #737373;\n", " --text-color-pale: #b3b3b3;\n", " --inner-border-color: #aaa;\n", " --bold-border-color: #000;\n", " --link-color: #296eaa;\n", " --link-color-pale: #296eaa;\n", " --link-hover: #1a466c;\n", "}\n", "\n", ":root[theme=\"dark\"], :root [data-jp-theme-light=\"false\"], .dataframe_dark{\n", " --background: #303030;\n", " --background-odd: #3c3c3c;\n", " --background-hover: #464646;\n", " --header-text-color: #dddddd;\n", " --text-color: #b3b3b3;\n", " --text-color-dark: #dddddd;\n", " --text-color-medium: #b2b2b2;\n", " --text-color-pale: #737373;\n", " --inner-border-color: #707070;\n", " --bold-border-color: #777777;\n", " --link-color: #008dc0;\n", " --link-color-pale: #97e1fb;\n", " --link-hover: #00688e;\n", "}\n", "\n", "p.dataframe_description {\n", " color: var(--text-color-dark);\n", "}\n", "\n", "table.dataframe {\n", " font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n", " font-size: 12px;\n", " background-color: var(--background);\n", " color: var(--text-color-dark);\n", " border: none;\n", " border-collapse: collapse;\n", "}\n", "\n", "table.dataframe th, td {\n", " padding: 6px;\n", " border: 1px solid transparent;\n", " text-align: left;\n", "}\n", "\n", "table.dataframe th {\n", " background-color: var(--background);\n", " color: var(--header-text-color);\n", "}\n", "\n", "table.dataframe td {\n", " vertical-align: top;\n", "}\n", "\n", "table.dataframe th.bottomBorder {\n", " border-bottom-color: var(--bold-border-color);\n", "}\n", "\n", "table.dataframe tbody > tr:nth-child(odd) {\n", " background: var(--background-odd);\n", "}\n", "\n", "table.dataframe tbody > tr:nth-child(even) {\n", " background: var(--background);\n", "}\n", "\n", "table.dataframe tbody > tr:hover {\n", " background: var(--background-hover);\n", "}\n", "\n", "table.dataframe a {\n", " cursor: pointer;\n", " color: var(--link-color);\n", " text-decoration: none;\n", "}\n", "\n", "table.dataframe tr:hover > td a {\n", " color: var(--link-color-pale);\n", "}\n", "\n", "table.dataframe a:hover {\n", " color: var(--link-hover);\n", " text-decoration: underline;\n", "}\n", "\n", "table.dataframe img {\n", " max-width: fit-content;\n", "}\n", "\n", "table.dataframe th.complex {\n", " background-color: var(--background);\n", " border: 1px solid var(--background);\n", "}\n", "\n", "table.dataframe .leftBorder {\n", " border-left-color: var(--inner-border-color);\n", "}\n", "\n", "table.dataframe .rightBorder {\n", " border-right-color: var(--inner-border-color);\n", "}\n", "\n", "table.dataframe .rightAlign {\n", " text-align: right;\n", "}\n", "\n", "table.dataframe .expanderSvg {\n", " width: 8px;\n", " height: 8px;\n", " margin-right: 3px;\n", "}\n", "\n", "table.dataframe .expander {\n", " display: flex;\n", " align-items: center;\n", "}\n", "\n", "/* formatting */\n", "\n", "table.dataframe .null {\n", " color: var(--text-color-pale);\n", "}\n", "\n", "table.dataframe .structural {\n", " color: var(--text-color-medium);\n", " font-weight: bold;\n", "}\n", "\n", "table.dataframe .dataFrameCaption {\n", " font-weight: bold;\n", "}\n", "\n", "table.dataframe .numbers {\n", " color: var(--text-color-dark);\n", "}\n", "\n", "table.dataframe td:hover .formatted .structural, .null {\n", " color: var(--text-color-dark);\n", "}\n", "\n", "table.dataframe tr:hover .formatted .structural, .null {\n", " color: var(--text-color-dark);\n", "}\n", "\n", "\n", "\n", "\n", " </style>\n", " </head>\n", " <body>\n", " \n", "<table class=\"dataframe\" id=\"df_-905969664\"></table>\n", "\n", "<p class=\"dataframe_description\">DataFrame: rowsCount = 3, columnsCount = 12</p>\n", " </body>\n", " <script>\n", " \n", "/*<!--*/\n", "call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: \"<span title=\\\"untitled: Int\\\">untitled</span>\", children: [], rightAlign: true, values: [\"<span class=\\\"formatted\\\" title=\\\"\\\"><span class=\\\"numbers\\\">1</span></span>\",\"<span class=\\\"formatted\\\" title=\\\"\\\"><span class=\\\"numbers\\\">2</span></span>\",\"<span class=\\\"formatted\\\" title=\\\"\\\"><span class=\\\"numbers\\\">3</span></span>\"] }, \n", "{ name: \"<span title=\\\"manufacturer: String\\\">manufacturer</span>\", children: [], rightAlign: false, values: [\"audi\",\"audi\",\"audi\"] }, \n", "{ name: \"<span title=\\\"model: String\\\">model</span>\", children: [], rightAlign: false, values: [\"a4\",\"a4\",\"a4\"] }, \n", "{ name: \"<span title=\\\"displ: Double\\\">displ</span>\", children: [], rightAlign: true, values: [\"<span class=\\\"formatted\\\" title=\\\"\\\"><span class=\\\"numbers\\\">1.8</span></span>\",\"<span class=\\\"formatted\\\" title=\\\"\\\"><span class=\\\"numbers\\\">1.8</span></span>\",\"<span class=\\\"formatted\\\" title=\\\"\\\"><span class=\\\"numbers\\\">2.0</span></span>\"] }, \n", "{ name: \"<span title=\\\"year: Int\\\">year</span>\", children: [], rightAlign: true, values: [\"<span class=\\\"formatted\\\" title=\\\"\\\"><span class=\\\"numbers\\\">1999</span></span>\",\"<span class=\\\"formatted\\\" title=\\\"\\\"><span class=\\\"numbers\\\">1999</span></span>\",\"<span class=\\\"formatted\\\" title=\\\"\\\"><span class=\\\"numbers\\\">2008</span></span>\"] }, \n", "{ name: \"<span title=\\\"cyl: Int\\\">cyl</span>\", children: [], rightAlign: true, values: [\"<span class=\\\"formatted\\\" title=\\\"\\\"><span class=\\\"numbers\\\">4</span></span>\",\"<span class=\\\"formatted\\\" title=\\\"\\\"><span class=\\\"numbers\\\">4</span></span>\",\"<span class=\\\"formatted\\\" title=\\\"\\\"><span class=\\\"numbers\\\">4</span></span>\"] }, \n", "{ name: \"<span title=\\\"trans: String\\\">trans</span>\", children: [], rightAlign: false, values: [\"auto(l5)\",\"manual(m5)\",\"manual(m6)\"] }, \n", "{ name: \"<span title=\\\"drv: String\\\">drv</span>\", children: [], rightAlign: false, values: [\"f\",\"f\",\"f\"] }, \n", "{ name: \"<span title=\\\"cty: Int\\\">cty</span>\", children: [], rightAlign: true, values: [\"<span class=\\\"formatted\\\" title=\\\"\\\"><span class=\\\"numbers\\\">18</span></span>\",\"<span class=\\\"formatted\\\" title=\\\"\\\"><span class=\\\"numbers\\\">21</span></span>\",\"<span class=\\\"formatted\\\" title=\\\"\\\"><span class=\\\"numbers\\\">20</span></span>\"] }, \n", "{ name: \"<span title=\\\"hwy: Int\\\">hwy</span>\", children: [], rightAlign: true, values: [\"<span class=\\\"formatted\\\" title=\\\"\\\"><span class=\\\"numbers\\\">29</span></span>\",\"<span class=\\\"formatted\\\" title=\\\"\\\"><span class=\\\"numbers\\\">29</span></span>\",\"<span class=\\\"formatted\\\" title=\\\"\\\"><span class=\\\"numbers\\\">31</span></span>\"] }, \n", "{ name: \"<span title=\\\"fl: String\\\">fl</span>\", children: [], rightAlign: false, values: [\"p\",\"p\",\"p\"] }, \n", "{ name: \"<span title=\\\"class: String\\\">class</span>\", children: [], rightAlign: false, values: [\"compact\",\"compact\",\"compact\"] }, \n", "], id: -905969664, rootId: -905969664, totalRows: 3 } ) });\n", "/*-->*/\n", "\n", "call_DataFrame(function() { DataFrame.renderTable(-905969664) });\n", "\n", "\n", " </script>\n", " </html>" ] }, "execution_count": 15, "metadata": {}, "output_type": "execute_result" } ], "source": [ "var mpg = DataFrame.readCSV(\"https://raw.githubusercontent.com/JetBrains/lets-plot-kotlin/master/docs/examples/data/mpg.csv\")\n", "mpg.head(3)\n" ] }, { "cell_type": "code", "execution_count": 16, "id": "combined-diagram", "metadata": {}, "outputs": [ { "data": { "text/html": [ " <div id=\"K6ULka\"></div>\n", " <script type=\"text/javascript\" data-lets-plot-script=\"plot\">\n", " (function() {\n", " var plotSpec={\n", "\"mapping\":{\n", "\"x\":\"cty\",\n", "\"y\":\"hwy\",\n", "\"fill\":\"manufacturer\"\n", "},\n", "\"data\":{\n", "\"cty\":[18.0,21.0,20.0,21.0,16.0,18.0,18.0,18.0,16.0,20.0,19.0,15.0,17.0,17.0,15.0,15.0,17.0,16.0,14.0,11.0,14.0,13.0,12.0,16.0,15.0,16.0,15.0,15.0,14.0,11.0,11.0,14.0,19.0,22.0,18.0,18.0,17.0,18.0,17.0,16.0,16.0,17.0,17.0,11.0,15.0,15.0,16.0,16.0,15.0,14.0,13.0,14.0,14.0,14.0,9.0,11.0,11.0,13.0,13.0,9.0,13.0,11.0,13.0,11.0,12.0,9.0,13.0,13.0,12.0,9.0,11.0,11.0,13.0,11.0,11.0,11.0,12.0,14.0,15.0,14.0,13.0,13.0,13.0,14.0,14.0,13.0,13.0,13.0,11.0,13.0,18.0,18.0,17.0,16.0,15.0,15.0,15.0,15.0,14.0,28.0,24.0,25.0,23.0,24.0,26.0,25.0,24.0,21.0,18.0,18.0,21.0,21.0,18.0,18.0,19.0,19.0,19.0,20.0,20.0,17.0,16.0,17.0,17.0,15.0,15.0,14.0,9.0,14.0,13.0,11.0,11.0,12.0,12.0,11.0,11.0,11.0,12.0,14.0,13.0,13.0,13.0,21.0,19.0,23.0,23.0,19.0,19.0,18.0,19.0,19.0,14.0,15.0,14.0,12.0,18.0,16.0,17.0,18.0,16.0,18.0,18.0,20.0,19.0,20.0,18.0,21.0,19.0,19.0,19.0,20.0,20.0,19.0,20.0,15.0,16.0,15.0,15.0,16.0,14.0,21.0,21.0,21.0,21.0,18.0,18.0,19.0,21.0,21.0,21.0,22.0,18.0,18.0,18.0,24.0,24.0,26.0,28.0,26.0,11.0,13.0,15.0,16.0,17.0,15.0,15.0,15.0,16.0,21.0,19.0,21.0,22.0,17.0,33.0,21.0,19.0,22.0,21.0,21.0,21.0,16.0,17.0,35.0,29.0,21.0,19.0,20.0,20.0,21.0,18.0,19.0,21.0,16.0,18.0,17.0],\n", "\"hwy\":[29.0,29.0,31.0,30.0,26.0,26.0,27.0,26.0,25.0,28.0,27.0,25.0,25.0,25.0,25.0,24.0,25.0,23.0,20.0,15.0,20.0,17.0,17.0,26.0,23.0,26.0,25.0,24.0,19.0,14.0,15.0,17.0,27.0,30.0,26.0,29.0,26.0,24.0,24.0,22.0,22.0,24.0,24.0,17.0,22.0,21.0,23.0,23.0,19.0,18.0,17.0,17.0,19.0,19.0,12.0,17.0,15.0,17.0,17.0,12.0,17.0,16.0,18.0,15.0,16.0,12.0,17.0,17.0,16.0,12.0,15.0,16.0,17.0,15.0,17.0,17.0,18.0,17.0,19.0,17.0,19.0,19.0,17.0,17.0,17.0,16.0,16.0,17.0,15.0,17.0,26.0,25.0,26.0,24.0,21.0,22.0,23.0,22.0,20.0,33.0,32.0,32.0,29.0,32.0,34.0,36.0,36.0,29.0,26.0,27.0,30.0,31.0,26.0,26.0,28.0,26.0,29.0,28.0,27.0,24.0,24.0,24.0,22.0,19.0,20.0,17.0,12.0,19.0,18.0,14.0,15.0,18.0,18.0,15.0,17.0,16.0,18.0,17.0,19.0,19.0,17.0,29.0,27.0,31.0,32.0,27.0,26.0,26.0,25.0,25.0,17.0,17.0,20.0,18.0,26.0,26.0,27.0,28.0,25.0,25.0,24.0,27.0,25.0,26.0,23.0,26.0,26.0,26.0,26.0,25.0,27.0,25.0,27.0,20.0,20.0,19.0,17.0,20.0,17.0,29.0,27.0,31.0,31.0,26.0,26.0,28.0,27.0,29.0,31.0,31.0,26.0,26.0,27.0,30.0,33.0,35.0,37.0,35.0,15.0,18.0,20.0,20.0,22.0,17.0,19.0,18.0,20.0,29.0,26.0,29.0,29.0,24.0,44.0,29.0,26.0,29.0,29.0,29.0,29.0,23.0,24.0,44.0,41.0,29.0,26.0,28.0,29.0,29.0,29.0,28.0,29.0,26.0,26.0,26.0],\n", "\"manufacturer\":[\"audi\",\"audi\",\"audi\",\"audi\",\"audi\",\"audi\",\"audi\",\"audi\",\"audi\",\"audi\",\"audi\",\"audi\",\"audi\",\"audi\",\"audi\",\"audi\",\"audi\",\"audi\",\"chevrolet\",\"chevrolet\",\"chevrolet\",\"chevrolet\",\"chevrolet\",\"chevrolet\",\"chevrolet\",\"chevrolet\",\"chevrolet\",\"chevrolet\",\"chevrolet\",\"chevrolet\",\"chevrolet\",\"chevrolet\",\"chevrolet\",\"chevrolet\",\"chevrolet\",\"chevrolet\",\"chevrolet\",\"dodge\",\"dodge\",\"dodge\",\"dodge\",\"dodge\",\"dodge\",\"dodge\",\"dodge\",\"dodge\",\"dodge\",\"dodge\",\"dodge\",\"dodge\",\"dodge\",\"dodge\",\"dodge\",\"dodge\",\"dodge\",\"dodge\",\"dodge\",\"dodge\",\"dodge\",\"dodge\",\"dodge\",\"dodge\",\"dodge\",\"dodge\",\"dodge\",\"dodge\",\"dodge\",\"dodge\",\"dodge\",\"dodge\",\"dodge\",\"dodge\",\"dodge\",\"dodge\",\"ford\",\"ford\",\"ford\",\"ford\",\"ford\",\"ford\",\"ford\",\"ford\",\"ford\",\"ford\",\"ford\",\"ford\",\"ford\",\"ford\",\"ford\",\"ford\",\"ford\",\"ford\",\"ford\",\"ford\",\"ford\",\"ford\",\"ford\",\"ford\",\"ford\",\"honda\",\"honda\",\"honda\",\"honda\",\"honda\",\"honda\",\"honda\",\"honda\",\"honda\",\"hyundai\",\"hyundai\",\"hyundai\",\"hyundai\",\"hyundai\",\"hyundai\",\"hyundai\",\"hyundai\",\"hyundai\",\"hyundai\",\"hyundai\",\"hyundai\",\"hyundai\",\"hyundai\",\"jeep\",\"jeep\",\"jeep\",\"jeep\",\"jeep\",\"jeep\",\"jeep\",\"jeep\",\"land rover\",\"land rover\",\"land rover\",\"land rover\",\"lincoln\",\"lincoln\",\"lincoln\",\"mercury\",\"mercury\",\"mercury\",\"mercury\",\"nissan\",\"nissan\",\"nissan\",\"nissan\",\"nissan\",\"nissan\",\"nissan\",\"nissan\",\"nissan\",\"nissan\",\"nissan\",\"nissan\",\"nissan\",\"pontiac\",\"pontiac\",\"pontiac\",\"pontiac\",\"pontiac\",\"subaru\",\"subaru\",\"subaru\",\"subaru\",\"subaru\",\"subaru\",\"subaru\",\"subaru\",\"subaru\",\"subaru\",\"subaru\",\"subaru\",\"subaru\",\"subaru\",\"toyota\",\"toyota\",\"toyota\",\"toyota\",\"toyota\",\"toyota\",\"toyota\",\"toyota\",\"toyota\",\"toyota\",\"toyota\",\"toyota\",\"toyota\",\"toyota\",\"toyota\",\"toyota\",\"toyota\",\"toyota\",\"toyota\",\"toyota\",\"toyota\",\"toyota\",\"toyota\",\"toyota\",\"toyota\",\"toyota\",\"toyota\",\"toyota\",\"toyota\",\"toyota\",\"toyota\",\"toyota\",\"toyota\",\"toyota\",\"volkswagen\",\"volkswagen\",\"volkswagen\",\"volkswagen\",\"volkswagen\",\"volkswagen\",\"volkswagen\",\"volkswagen\",\"volkswagen\",\"volkswagen\",\"volkswagen\",\"volkswagen\",\"volkswagen\",\"volkswagen\",\"volkswagen\",\"volkswagen\",\"volkswagen\",\"volkswagen\",\"volkswagen\",\"volkswagen\",\"volkswagen\",\"volkswagen\",\"volkswagen\",\"volkswagen\",\"volkswagen\",\"volkswagen\",\"volkswagen\"]\n", "},\n", "\"ggsize\":{\n", "\"width\":900.0,\n", "\"height\":700.0\n", "},\n", "\"kind\":\"plot\",\n", "\"scales\":[],\n", "\"layers\":[{\n", "\"mapping\":{\n", "},\n", "\"stat\":\"identity\",\n", "\"color\":\"black\",\n", "\"shape\":21.0,\n", "\"size\":7.0,\n", "\"alpha\":0.5,\n", "\"position\":\"jitter\",\n", "\"geom\":\"point\",\n", "\"data\":{\n", "}\n", "}],\n", "\"theme\":{\n", "\"name\":\"light\",\n", "\"plot_background\":{\n", "\"fill\":\"#eaeaea\",\n", "\"blank\":false\n", "},\n", "\"legend_background\":{\n", "\"fill\":\"#eaeaea\",\n", "\"blank\":false\n", "}\n", "}\n", "};\n", " var plotContainer = document.getElementById(\"K6ULka\");\n", " window.letsPlotCall(function() {{\n", " LetsPlot.buildPlotFromProcessedSpecs(plotSpec, -1, -1, plotContainer);\n", " }});\n", " })(); \n", " </script>" ] }, "execution_count": 16, "metadata": {}, "output_type": "execute_result" } ], "source": [ "val plotSettings = ggsize(900, 700) +\n", " theme(plotBackground = elementRect(fill = \"#eaeaea\"), \n", " legendBackground = elementRect(fill = \"#eaeaea\"))\n", "\n", "(letsPlot(mpg.toMap()) {x = \"cty\"; y = \"hwy\"; fill = \"manufacturer\"}\n", " + geomPoint( size = 7, shape = 21, alpha = .5, color = \"black\", position=positionJitter())\n", " + ggmarginal(\"tr\", size = 0.3, \n", " layer = geomBoxplot(width=0.5) {\n", " fill = asDiscrete(\"manufacturer\", orderBy = \"..lower..\")\n", " })\n", " + plotSettings) \n", " " ] } ], "metadata": { "kernelspec": { "display_name": "Kotlin", "language": "kotlin", "name": "kotlin" }, "language_info": { "codemirror_mode": "text/x-kotlin", "file_extension": ".kt", "mimetype": "text/x-kotlin", "name": "kotlin", "nbconvert_exporter": "", "pygments_lexer": "kotlin", "version": "1.8.20" } }, "nbformat": 4, "nbformat_minor": 5 }