diff --git a/code/grace_diff.pl b/code/grace_diff.pl new file mode 100755 index 0000000..a0f81dc --- /dev/null +++ b/code/grace_diff.pl @@ -0,0 +1,66 @@ +#!/usr/bin/perl + +use strict; +use warnings; +use 5.010; + +use autodie; + +use JSON; + +sub parse_json_file { + my ($filename) = @_; + + local $/; + open my $fh, '<', $filename; + + my $json_text = <$fh>; + + my $json = decode_json($json_text) or die; + return $json; +} + +sub output_json_file { + my ($json, $filename) = @_; + + open my $out, '>', $filename; + + my $json_text = encode_json($json); + + print {$out} $json_text; +} + +my $json_1 = parse_json_file('grace_1.json'); +my $json_2 = parse_json_file('grace_2.json'); + +my $data_1 = $json_1->{data}; +my $data_2 = $json_2->{data}; + +my $min = 0; +my $max = 0; + +foreach my $x (0..$#{ $data_1 }) { + foreach my $y (0..$#{ $data_1->[$x] }) { + foreach my $z (0..$#{ $data_1->[$x][$y] }) { + my $datum_1 = $data_1->[$x][$y][$z]; + my $datum_2 = $data_2->[$x][$y][$z]; + my $datum + = $data_2->[$x][$y][$z] + - $data_1->[$x][$y][$z]; + $datum = 32767 if ($datum_1 == 32767 or $datum_2 == 32767); + $data_1->[$x][$y][$z] = $datum; + + $min = $datum if $datum < $min; + $max = $datum if $datum > $max; + } + } +} + +output_json_file($json_1, 'grace_1_2_diff_v2.json'); + + + +# use Data::Dumper; +# +# print Data::Dumper->Dump([parse_json_file('grace_1.json')], [qw/json/]); + diff --git a/nasa/urls.py b/nasa/urls.py index 4795c8b..a85360c 100644 --- a/nasa/urls.py +++ b/nasa/urls.py @@ -7,6 +7,11 @@ from viz import views urlpatterns = patterns('', - url(r'^$', views.index, name='index'), + url(r'^1', views.index1, name='index1'), + url(r'^2', views.index2, name='index2'), + url(r'^3', views.index3, name='index3'), + url(r'^4', views.index4, name='index4'), + url(r'^data1', views.data1, name='data1.json'), + url(r'^data2', views.data2, name='data2.json'), url(r'^admin/', include(admin.site.urls)), ) diff --git a/run.sh b/run.sh new file mode 100755 index 0000000..e0641fc --- /dev/null +++ b/run.sh @@ -0,0 +1 @@ +sudo python manage.py runserver 0.0.0.0:80 diff --git a/viz/templates/data1.json b/viz/templates/data1.json index 2e5294e..be7f2cc 100644 --- a/viz/templates/data1.json +++ b/viz/templates/data1.json @@ -1 +1 @@ -{"data":[[[-12.05951,-12.0561,-12.05269,-12.04928,-12.04589,-12.0425,-12.03913,-12.03578,-12.03246,-12.02916,-12.0259,-12.02266,-12.01947,-12.01632,-12.01321,-12.01015,-12.00714,-12.00418,-12.00128,-11.99845,-11.99567,-11.99295,-11.99031,-11.98773,-11.98522,-11.98279,-11.98043,-11.97815,-11.97595,-11.97382,-11.97178,-11.96982,-11.96794,-11.96615,-11.96443,-11.96281,-11.96127,-11.95981,-11.95844,-11.95716,-11.95595,-11.95483,-11.9538,-11.95285,-11.95198,-11.95119,-11.95047,-11.94984,-11.94928,-11.9488,-11.94839,-11.94805,-11.94777,-11.94756,-11.94742,-11.94734,-11.94731,-11.94734,-11.94742,-11.94755,-11.94773,-11.94795,-11.94821,-11.94851,-11.94884,-11.9492,-11.94959,-11.95,-11.95043,-11.95087,-11.95133,-11.95179,-11.95226,-11.95273,-11.9532,-11.95365,-11.9541,-11.95453,-11.95494,-11.95534,-11.9557,-11.95604,-11.95634,-11.9566,-11.95683,-11.95701,-11.95715,-11.95723,-11.95726,-11.95724,-11.95715,-11.957,-11.95679,-11.95651,-11.95616,-11.95574,-11.95524,-11.95466,-11.95401,-11.95327,-11.95245,-11.95155,-11.95056,-11.94948,-11.94832,-11.94707,-11.94572,-11.94429,-11.94276,-11.94115,-11.93944,-11.93764,-11.93575,-11.93377,-11.9317,-11.92954,-11.92729,-11.92495,-11.92253,-11.92003,-11.91744,-11.91477,-11.91202,-11.90919,-11.90629,-11.90332,-11.90028,-11.89717,-11.894,-11.89076,-11.88747,-11.88412,-11.88072,-11.87728,-11.87379,-11.87025,-11.86669,-11.86308,-11.85945,-11.8558,-11.85213,-11.84843,-11.84473,-11.84102,-11.8373,-11.83358,-11.82987,-11.82617,-11.82249,-11.81882,-11.81518,-11.81156,-11.80797,-11.80442,-11.80091,-11.79745,-11.79403,-11.79067,-11.78737,-11.78413,-11.78095,-11.77784,-11.77481,-11.77185,-11.76898,-11.76619,-11.76349,-11.76088,-11.75836,-11.75595,-11.75363,-11.75142,-11.74932,-11.74732,-11.74544,-11.74367,-11.74202,-11.74048,-11.73907,-11.73778,-11.73662,-11.73558,-11.73467,-11.73388,-11.73323,-11.73271,-11.73232,-11.73206,-11.73193,-11.73194,-11.73208,-11.73235,-11.73276,-11.7333,-11.73398,-11.73479,-11.73573,-11.7368,-11.738,-11.73934,-11.7408,-11.74239,-11.74411,-11.74596,-11.74792,-11.75002,-11.75223,-11.75457,-11.75702,-11.75959,-11.76227,-11.76507,-11.76797,-11.77099,-11.77411,-11.77734,-11.78066,-11.78409,-11.78762,-11.79124,-11.79495,-11.79875,-11.80264,-11.80662,-11.81068,-11.81481,-11.81903,-11.82331,-11.82767,-11.8321,-11.83659,-11.84115,-11.84577,-11.85044,-11.85517,-11.85995,-11.86478,-11.86966,-11.87457,-11.87953,-11.88453,-11.88955,-11.89462,-11.8997,-11.90481,-11.90995,-11.9151,-11.92027,-11.92546,-11.93065,-11.93585,-11.94105,-11.94626,-11.95146,-11.95665,-11.96184,-11.96702,-11.97218,-11.97733,-11.98245,-11.98756,-11.99263,-11.99768,-12.00269,-12.00767,-12.01261,-12.01751,-12.02237,-12.02718,-12.03194,-12.03664,-12.0413,-12.04589,-12.05042,-12.05489,-12.05929,-12.06362,-12.06788,-12.07207,-12.07618,-12.08021,-12.08415,-12.08802,-12.09179,-12.09548,-12.09907,-12.10257,-12.10598,-12.10929,-12.11249,-12.1156,-12.1186,-12.1215,-12.12428,-12.12696,-12.12953,-12.13198,-12.13432,-12.13655,-12.13865,-12.14064,-12.14252,-12.14426,-12.14589,-12.1474,-12.14879,-12.15005,-12.15118,-12.1522,-12.15308,-12.15385,-12.15449,-12.155,-12.15539,-12.15565,-12.15579,-12.1558,-12.15569,-12.15546,-12.1551,-12.15462,-12.15403,-12.15331,-12.15248,-12.15153,-12.15046,-12.14928,-12.14799,-12.14659,-12.14507,-12.14346,-12.14174,-12.13991,-12.13799,-12.13597,-12.13386,-12.13165,-12.12936,-12.12697,-12.12451,-12.12196,-12.11934,-12.11665,-12.11388,-12.11104,-12.10815,-12.10519,-12.10217,-12.0991,-12.09599,-12.09282,-12.08962,-12.08637,-12.08309,-12.07979,-12.07645,-12.07309,-12.06971,-12.06632,-12.06292],[-3.27855,-3.25128,-3.22402,-3.19683,-3.16976,-3.14285,-3.11615,-3.08973,-3.06362,-3.03788,-3.01255,-2.9877,-2.96336,-2.93958,-2.91641,-2.8939,-2.87209,-2.85101,-2.83073,-2.81126,-2.79266,-2.77496,-2.75819,-2.74238,-2.72756,-2.71377,-2.70102,-2.68935,-2.67876,-2.66928,-2.66093,-2.65371,-2.64764,-2.64272,-2.63897,-2.63637,-2.63494,-2.63468,-2.63556,-2.6376,-2.64078,-2.64508,-2.6505,-2.65701,-2.6646,-2.67325,-2.68294,-2.69363,-2.70531,-2.71794,-2.7315,-2.74596,-2.76127,-2.77741,-2.79434,-2.81203,-2.83043,-2.84951,-2.86923,-2.88954,-2.91041,-2.93179,-2.95364,-2.97592,-2.99858,-3.02158,-3.04488,-3.06842,-3.09218,-3.11609,-3.14012,-3.16422,-3.18835,-3.21246,-3.2365,-3.26044,-3.28423,-3.30783,-3.33118,-3.35426,-3.37701,-3.39939,-3.42137,-3.4429,-3.46393,-3.48444,-3.50437,-3.52369,-3.54236,-3.56035,-3.5776,-3.5941,-3.6098,-3.62466,-3.63865,-3.65174,-3.66389,-3.67508,-3.68527,-3.69443,-3.70254,-3.70956,-3.71546,-3.72024,-3.72386,-3.72629,-3.72753,-3.72754,-3.72632,-3.72385,-3.72012,-3.71511,-3.70881,-3.70123,-3.69234,-3.68216,-3.67069,-3.65791,-3.64385,-3.62851,-3.61189,-3.59402,-3.5749,-3.55456,-3.53301,-3.51029,-3.48642,-3.46143,-3.43535,-3.40822,-3.38007,-3.35095,-3.3209,-3.28997,-3.25821,-3.22566,-3.19239,-3.15844,-3.12388,-3.08876,-3.05315,-3.0171,-2.9807,-2.94399,-2.90705,-2.86995,-2.83274,-2.79552,-2.75834,-2.72126,-2.68438,-2.64774,-2.61142,-2.5755,-2.54002,-2.50507,-2.47071,-2.43699,-2.40398,-2.37174,-2.34032,-2.30978,-2.28018,-2.25155,-2.22395,-2.19743,-2.17201,-2.14774,-2.12465,-2.10277,-2.08213,-2.06276,-2.04466,-2.02787,-2.01238,-1.99822,-1.98538,-1.97387,-1.96369,-1.95483,-1.94728,-1.94103,-1.93608,-1.93239,-1.92996,-1.92875,-1.92875,-1.92992,-1.93223,-1.93566,-1.94017,-1.94571,-1.95226,-1.95978,-1.96823,-1.97756,-1.98774,-1.99872,-2.01046,-2.02292,-2.03606,-2.04983,-2.0642,-2.07911,-2.09455,-2.11045,-2.12679,-2.14353,-2.16064,-2.17807,-2.1958,-2.21379,-2.23202,-2.25046,-2.26908,-2.28786,-2.30677,-2.32581,-2.34494,-2.36415,-2.38343,-2.40277,-2.42214,-2.44156,-2.461,-2.48046,-2.49993,-2.51942,-2.53892,-2.55844,-2.57796,-2.5975,-2.61705,-2.63662,-2.65622,-2.67584,-2.69549,-2.71518,-2.73492,-2.7547,-2.77454,-2.79443,-2.81439,-2.83442,-2.85453,-2.8747,-2.89496,-2.9153,-2.93573,-2.95624,-2.97683,-2.99751,-3.01827,-3.03911,-3.06003,-3.08102,-3.10208,-3.12319,-3.14436,-3.16557,-3.18681,-3.20808,-3.22936,-3.25065,-3.27192,-3.29317,-3.31438,-3.33554,-3.35662,-3.37763,-3.39854,-3.41933,-3.43999,-3.4605,-3.48085,-3.50101,-3.52097,-3.54072,-3.56024,-3.5795,-3.59849,-3.61721,-3.63562,-3.65372,-3.67148,-3.6889,-3.70595,-3.72263,-3.73891,-3.75479,-3.77024,-3.78526,-3.79984,-3.81395,-3.82758,-3.84074,-3.85339,-3.86553,-3.87715,-3.88824,-3.89877,-3.90876,-3.91817,-3.92701,-3.93525,-3.94289,-3.94993,-3.95633,-3.96211,-3.96724,-3.97171,-3.97553,-3.97866,-3.98111,-3.98286,-3.98391,-3.98424,-3.98385,-3.98272,-3.98085,-3.97822,-3.97483,-3.97068,-3.96575,-3.96004,-3.95355,-3.94626,-3.93817,-3.92928,-3.9196,-3.90911,-3.89781,-3.88572,-3.87283,-3.85914,-3.84467,-3.82942,-3.81339,-3.7966,-3.77906,-3.76078,-3.74178,-3.72209,-3.7017,-3.68066,-3.65898,-3.63668,-3.6138,-3.59036,-3.56639,-3.54193,-3.51701,-3.49167,-3.46594,-3.43987,-3.41349,-3.38685,-3.35999,-3.33296,-3.3058],[8.2298,8.30236,8.37554,8.44916,8.52298,8.59681,8.67043,8.74362,8.81617,8.88785,8.95846,9.02777,9.09559,9.16171,9.22592,9.28805,9.34789,9.40528,9.46005,9.51203,9.56109,9.60709,9.64989,9.68938,9.72547,9.75805,9.78707,9.81244,9.83411,9.85206,9.86625,9.87666,9.8833,9.88616,9.88529,9.88071,9.87245,9.86059,9.84518,9.82629,9.80401,9.77844,9.74966,9.7178,9.68295,9.64524,9.6048,9.56175,9.51623,9.46837,9.41831,9.3662,9.31217,9.25637,9.19894,9.14003,9.07977,9.01831,8.95579,8.89234,8.82809,8.76317,8.69772,8.63184,8.56567,8.49931,8.43287,8.36646,8.30017,8.23409,8.16833,8.10295,8.03804,7.97367,7.90992,7.84684,7.7845,7.72296,7.66227,7.60248,7.54364,7.4858,7.429,7.37328,7.3187,7.26529,7.21309,7.16216,7.11253,7.06426,7.01739,6.97198,6.92809,6.88577,6.84509,6.80611,6.76891,6.73357,6.70016,6.66877,6.6395,6.61243,6.58767,6.56532,6.54549,6.52829,6.51382,6.50221,6.49357,6.48802,6.48567,6.48665,6.49106,6.49903,6.51065,6.52603,6.54528,6.56848,6.59572,6.62707,6.66261,6.70239,6.74646,6.79484,6.84757,6.90464,6.96605,7.03177,7.10177,7.17598,7.25435,7.33677,7.42315,7.51336,7.60725,7.70468,7.80547,7.90942,8.01633,8.12598,8.23814,8.35254,8.46893,8.58703,8.70655,8.8272,8.94867,9.07065,9.19281,9.31485,9.43642,9.5572,9.67686,9.79507,9.91151,10.02586,10.1378,10.24702,10.35324,10.45615,10.55548,10.65098,10.74238,10.82946,10.912,10.98979,11.06266,11.13045,11.19301,11.25022,11.30198,11.34821,11.38886,11.42388,11.45327,11.47704,11.49521,11.50784,11.51501,11.51679,11.51332,11.50471,11.49112,11.47272,11.4497,11.42224,11.39057,11.35491,11.3155,11.27258,11.22641,11.17725,11.12537,11.07104,11.01454,10.95614,10.89612,10.83475,10.7723,10.70904,10.64522,10.5811,10.51692,10.45292,10.38931,10.32631,10.26412,10.20291,10.14287,10.08414,10.02687,9.97117,9.91715,9.86491,9.81451,9.76602,9.71948,9.6749,9.6323,9.59167,9.55299,9.51622,9.48131,9.4482,9.41681,9.38705,9.35883,9.33205,9.30658,9.28231,9.25911,9.23686,9.2154,9.19462,9.17436,9.1545,9.13489,9.1154,9.0959,9.07626,9.05635,9.03607,9.0153,8.99395,8.97191,8.94911,8.92547,8.90092,8.87542,8.84892,8.82139,8.7928,8.76315,8.73243,8.70065,8.66784,8.63402,8.59924,8.56353,8.52697,8.4896,8.45151,8.41277,8.37345,8.33366,8.29348,8.25299,8.21231,8.17152,8.13072,8.09001,8.04948,8.00922,7.96933,7.92989,7.89098,7.85268,7.81506,7.77819,7.74212,7.70691,7.6726,7.63924,7.60684,7.57544,7.54506,7.5157,7.48737,7.46005,7.43376,7.40846,7.38413,7.36076,7.33831,7.31674,7.29603,7.27613,7.25699,7.23859,7.22088,7.20381,7.18735,7.17146,7.1561,7.14124,7.12686,7.11293,7.09944,7.08636,7.0737,7.06146,7.04964,7.03825,7.02733,7.01689,7.00697,6.99762,6.98889,6.98083,6.97351,6.96701,6.96139,6.95674,6.95315,6.9507,6.9495,6.94964,6.95123,6.95435,6.95913,6.96565,6.97402,6.98434,6.9967,7.01119,7.0279,7.04691,7.06828,7.0921,7.11841,7.14726,7.17869,7.21273,7.24939,7.28868,7.33059,7.37511,7.42219,7.47179,7.52386,7.57832,7.63509,7.69406,7.75514,7.81819,7.88309,7.94969,8.01783,8.08735,8.15806],[14.68085,14.81616,14.9541,15.09409,15.2355,15.37771,15.52008,15.66199,15.8028,15.9419,16.07865,16.21247,16.34277,16.469,16.59062,16.70712,16.81804,16.92293,17.02139,17.11306,17.19759,17.27472,17.34418,17.40577,17.45933,17.50473,17.54188,17.57074,17.5913,17.6036,17.60769,17.60367,17.59169,17.57189,17.54447,17.50965,17.46766,17.41879,17.36329,17.30149,17.2337,17.16026,17.0815,16.9978,16.90951,16.817,16.72066,16.62087,16.51802,16.41247,16.30463,16.19486,16.08355,15.97106,15.85775,15.74399,15.6301,15.51643,15.40328,15.29097,15.17979,15.06999,14.96183,14.85555,14.75136,14.64944,14.54995,14.45305,14.35885,14.26743,14.17887,14.09321,14.01046,13.93061,13.85363,13.77946,13.70801,13.63918,13.57285,13.50887,13.44708,13.3873,13.32936,13.27304,13.21816,13.16449,13.11184,13.06,13.00877,12.95795,12.90738,12.85688,12.80633,12.7556,12.7046,12.65325,12.60153,12.54944,12.497,12.44429,12.39142,12.33852,12.28579,12.23346,12.18178,12.13105,12.08163,12.03387,11.98819,11.94502,11.90483,11.86811,11.83535,11.8071,11.78388,11.76624,11.75471,11.74986,11.7522,11.76226,11.78056,11.80756,11.84372,11.88947,11.94518,12.0112,12.08782,12.1753,12.27381,12.3835,12.50445,12.63666,12.7801,12.93464,13.10011,13.27628,13.46282,13.65938,13.8655,14.08071,14.30443,14.53605,14.7749,15.02027,15.27139,15.52745,15.7876,16.05095,16.31661,16.58363,16.85105,17.11793,17.38326,17.64609,17.90542,18.16031,18.40979,18.65294,18.88884,19.11662,19.33542,19.54445,19.74295,19.93019,20.10552,20.26833,20.41807,20.55425,20.67644,20.78429,20.87751,20.95588,21.01924,21.06751,21.10069,21.11884,21.12208,21.11062,21.08472,21.04472,20.99102,20.92406,20.84438,20.75253,20.64915,20.53489,20.41048,20.27666,20.13422,19.98397,19.82675,19.66343,19.49486,19.32195,19.14558,18.96662,18.78597,18.60448,18.42303,18.24241,18.06346,17.88695,17.71361,17.54415,17.37922,17.21945,17.0654,16.9176,16.77649,16.64248,16.51594,16.39715,16.28634,16.18368,16.08929,16.00323,15.92549,15.85601,15.79467,15.7413,15.69568,15.65754,15.62656,15.60238,15.5846,15.57279,15.56647,15.56516,15.56833,15.57543,15.58593,15.59924,15.61481,15.63206,15.65041,15.66932,15.68822,15.70659,15.7239,15.73968,15.75346,15.7648,15.77331,15.77863,15.78044,15.77845,15.77243,15.76218,15.74757,15.72848,15.70487,15.67671,15.64406,15.60699,15.56563,15.52014,15.47073,15.41765,15.36115,15.30157,15.23924,15.17451,15.10776,15.0394,14.96984,14.8995,14.8288,14.75817,14.68803,14.61879,14.55087,14.48463,14.42046,14.3587,14.29966,14.24364,14.1909,14.14166,14.09612,14.05442,14.01669,13.983,13.95338,13.92784,13.90633,13.88877,13.87505,13.86502,13.85849,13.85524,13.85503,13.85758,13.8626,13.86978,13.87877,13.88923,13.90082,13.91315,13.92588,13.93862,13.95104,13.96277,13.97347,13.98283,13.99053,13.99631,13.99988,14.00103,13.99956,13.99529,13.98809,13.97787,13.96455,13.9481,13.92855,13.90595,13.88039,13.85199,13.82092,13.7874,13.75165,13.71397,13.67464,13.63403,13.59248,13.5504,13.5082,13.46631,13.4252,13.38531,13.34713,13.31114,13.2778,13.24761,13.22104,13.19853,13.18054,13.16749,13.15979,13.15781,13.16189,13.17237,13.1895,13.21352,13.24464,13.28299,13.32869,13.38179,13.44229,13.51016,13.58529,13.66755,13.75673,13.85259,13.95485,14.06316,14.17715,14.29639,14.42042,14.54875],[12.44982,12.66479,12.88548,13.11047,13.33833,13.5676,13.79684,14.02458,14.24942,14.46999,14.68495,14.89303,15.09306,15.28391,15.46458,15.63412,15.79174,15.9367,16.06841,16.18635,16.29016,16.37954,16.45432,16.51444,16.5599,16.59083,16.60742,16.60995,16.59877,16.57429,16.53696,16.48731,16.42588,16.35326,16.27005,16.17688,16.0744,15.96324,15.84407,15.71753,15.58427,15.44494,15.30016,15.15057,14.99679,14.83941,14.67905,14.5163,14.35175,14.18598,14.01957,13.8531,13.68713,13.52224,13.35901,13.19799,13.03975,12.88485,12.73385,12.58729,12.4457,12.30959,12.17947,12.05579,11.93901,11.82951,11.72767,11.6338,11.54816,11.47095,11.40231,11.34231,11.29096,11.24817,11.21379,11.18758,11.16921,11.15829,11.15432,11.15675,11.16494,11.17816,11.19566,11.21658,11.24004,11.26512,11.29084,11.31624,11.34031,11.36206,11.38051,11.39471,11.40376,11.40679,11.403,11.39168,11.3722,11.34402,11.30674,11.26004,11.20375,11.13781,11.06233,10.97754,10.8838,10.78164,10.67172,10.55482,10.43188,10.30395,10.17221,10.03793,9.9025,9.76738,9.6341,9.50427,9.37952,9.2615,9.15191,9.05239,8.9646,8.89014,8.83056,8.78733,8.76184,8.75539,8.76913,8.80413,8.86129,8.94136,9.04497,9.17254,9.32437,9.50056,9.70104,9.92557,10.17376,10.44501,10.7386,11.05362,11.38902,11.74361,12.11605,12.50488,12.90854,13.32534,13.75352,14.19122,14.63653,15.08748,15.54205,15.9982,16.45387,16.907,17.35552,17.7974,18.23065,18.65329,19.06343,19.45923,19.83891,20.20079,20.54329,20.86492,21.1643,21.44015,21.69134,21.91684,22.11579,22.28742,22.43113,22.54645,22.63307,22.69081,22.71963,22.71967,22.69117,22.63456,22.55036,22.43927,22.3021,22.1398,21.95343,21.74416,21.51328,21.26218,20.99234,20.7053,20.40271,20.08624,19.75765,19.41873,19.07127,18.71712,18.35811,17.99608,17.63284,17.2702,16.90991,16.55367,16.20315,15.85994,15.52553,15.20137,14.88879,14.58902,14.3032,14.03236,13.77739,13.53909,13.31811,13.115,12.93016,12.76388,12.61631,12.48748,12.37728,12.2855,12.2118,12.15572,12.11669,12.09403,12.08699,12.09468,12.11617,12.15042,12.19633,12.25276,12.31849,12.39228,12.47284,12.55888,12.64907,12.74212,12.83671,12.93156,13.02542,13.11705,13.2053,13.28906,13.36728,13.43899,13.5033,13.55942,13.60664,13.64435,13.67208,13.68942,13.69611,13.69197,13.67699,13.6512,13.61482,13.56813,13.51154,13.44556,13.37079,13.28795,13.1978,13.10124,12.99918,12.89262,12.7826,12.6702,12.55652,12.4427,12.32985,12.2191,12.11153,12.00821,11.91019,11.8184,11.73377,11.65711,11.5892,11.53068,11.48212,11.44398,11.4166,11.40025,11.39503,11.40098,11.418,11.44587,11.48428,11.53281,11.59093,11.65804,11.73342,11.81629,11.9058,12.00104,12.10104,12.20478,12.31122,12.4193,12.52794,12.63606,12.7426,12.8465,12.94673,13.04231,13.13229,13.21578,13.29193,13.35999,13.41924,13.46908,13.50895,13.53841,13.55706,13.56465,13.56097,13.54594,13.51954,13.48189,13.43315,13.37361,13.30365,13.22373,13.13438,13.03625,12.93005,12.81658,12.69669,12.57133,12.44147,12.30819,12.17257,12.03576,11.89893,11.76329,11.63007,11.50048,11.37576,11.25711,11.14574,11.04281,10.94944,10.86668,10.79554,10.73695,10.69175,10.6607,10.64443,10.64348,10.65829,10.68914,10.73621,10.79954,10.87905,10.97448,11.0855,11.2116,11.35217,11.50646,11.6736,11.85263,12.04246,12.24194],[-1.11,-1.4,-1.67,-1.91,-2.11,-2.28,-2.4,-2.47,-2.51,-2.53,-2.52,-2.51,-2.48,-2.47,-2.46,-2.47,-2.49,-2.54,-2.59,-2.65,-2.72,-2.8,-2.85,-2.91,-2.94,-2.95,-2.94,-2.9,-2.83,-2.72,-2.59,-2.45,-2.28,-2.11,-1.92,-1.74,-1.57,-1.4,-1.24,-1.11,-0.99,-0.91,-0.83,-0.78,-0.74,-0.72,-0.71,-0.72,-0.73,-0.75,-0.78,-0.8,-0.83,-0.86,-0.9,-0.94,-0.99,-1.05,-1.13,-1.2,-1.3,-1.4,-1.52,-1.65,-1.78,-1.92,-2.05,-2.17,-2.29,-2.4,-2.48,-2.53,-2.57,-2.57,-2.56,-2.5,-2.41,-2.3,-2.16,-2.0,-1.81,-1.61,-1.39,-1.16,-0.91,-0.67,-0.41,-0.15,0.1,0.34,0.58,0.81,1.02,1.22,1.4,1.56,1.71,1.84,1.94,2.02,2.07,2.1,2.1,2.08,2.03,1.96,1.87,1.75,1.62,1.47,1.32,1.15,0.97,0.8,0.63,0.46,0.29,0.14,0.0,-0.13,-0.25,-0.36,-0.47,-0.56,-0.65,-0.74,-0.83,-0.92,-1.01,-1.12,-1.22,-1.33,-1.44,-1.53,-1.61,-1.67,-1.71,-1.71,-1.68,-1.6,-1.47,-1.3,-1.07,-0.81,-0.5,-0.16,0.2,0.58,0.96,1.32,1.68,2.0,2.29,2.54,2.73,2.89,2.99,3.06,3.09,3.08,3.05,3.01,2.96,2.91,2.87,2.84,2.81,2.8,2.8,2.82,2.84,2.86,2.89,2.91,2.92,2.93,2.91,2.89,2.85,2.81,2.75,2.7,2.64,2.59,2.53,2.48,2.43,2.38,2.34,2.3,2.25,2.2,2.14,2.06,1.97,1.88,1.78,1.68,1.58,1.49,1.41,1.35,1.31,1.32,1.35,1.41,1.51,1.63,1.8,1.97,2.17,2.36,2.56,2.75,2.92,3.07,3.19,3.29,3.36,3.4,3.42,3.41,3.39,3.35,3.3,3.25,3.19,3.14,3.09,3.04,3.01,2.97,2.93,2.91,2.88,2.85,2.83,2.79,2.76,2.71,2.66,2.59,2.52,2.43,2.34,2.22,2.1,1.97,1.82,1.67,1.51,1.34,1.17,1.01,0.85,0.69,0.55,0.42,0.32,0.25,0.21,0.21,0.24,0.3,0.41,0.55,0.72,0.91,1.12,1.35,1.57,1.8,2.02,2.22,2.39,2.55,2.67,2.77,2.86,2.91,2.96,3.01,3.05,3.1,3.16,3.24,3.36,3.49,3.66,3.86,4.09,4.34,4.61,4.88,5.15,5.41,5.66,5.87,6.04,6.15,6.21,6.21,6.15,6.02,5.82,5.57,5.26,4.9,4.51,4.09,3.66,3.22,2.79,2.36,1.96,1.58,1.22,0.9,0.61,0.35,0.12,-0.08,-0.25,-0.4,-0.53,-0.63,-0.71,-0.78,-0.84,-0.88,-0.9,-0.92,-0.92,-0.91,-0.89,-0.85,-0.8,-0.73,-0.65,-0.54,-0.42,-0.28,-0.14,0.03,0.2,0.37,0.52,0.66,0.77,0.86,0.9,0.88,0.83,0.72,0.56,0.34,0.1,-0.19,-0.49,-0.8],[-1.44,-1.7,-1.93,-2.13,-2.26,-2.35,-2.39,-2.38,-2.34,-2.27,-2.19,-2.1,-2.03,-1.98,-1.96,-1.97,-2.01,-2.09,-2.19,-2.31,-2.44,-2.59,-2.72,-2.84,-2.93,-3.0,-3.03,-3.02,-2.97,-2.89,-2.77,-2.62,-2.46,-2.27,-2.07,-1.87,-1.67,-1.49,-1.31,-1.17,-1.04,-0.93,-0.86,-0.82,-0.78,-0.78,-0.79,-0.81,-0.85,-0.9,-0.94,-0.99,-1.04,-1.08,-1.13,-1.16,-1.21,-1.25,-1.29,-1.33,-1.39,-1.44,-1.51,-1.56,-1.64,-1.71,-1.78,-1.84,-1.91,-1.96,-2.01,-2.05,-2.08,-2.1,-2.1,-2.08,-2.05,-2.01,-1.95,-1.86,-1.75,-1.62,-1.48,-1.31,-1.11,-0.91,-0.67,-0.44,-0.18,0.09,0.35,0.62,0.9,1.15,1.4,1.64,1.86,2.04,2.21,2.34,2.44,2.51,2.54,2.54,2.49,2.42,2.32,2.18,2.02,1.83,1.64,1.44,1.23,1.03,0.83,0.64,0.46,0.31,0.18,0.06,-0.03,-0.1,-0.16,-0.21,-0.26,-0.29,-0.32,-0.36,-0.41,-0.46,-0.53,-0.61,-0.69,-0.77,-0.84,-0.91,-0.96,-0.99,-0.99,-0.95,-0.86,-0.73,-0.56,-0.34,-0.07,0.23,0.55,0.89,1.24,1.58,1.91,2.2,2.47,2.69,2.86,2.97,3.05,3.06,3.05,2.99,2.91,2.82,2.74,2.64,2.58,2.54,2.53,2.56,2.61,2.69,2.78,2.9,3.01,3.12,3.21,3.28,3.32,3.33,3.3,3.24,3.15,3.06,2.94,2.83,2.71,2.61,2.52,2.45,2.38,2.35,2.32,2.29,2.26,2.23,2.19,2.13,2.06,1.96,1.86,1.75,1.62,1.51,1.41,1.33,1.27,1.25,1.27,1.32,1.42,1.54,1.7,1.87,2.07,2.28,2.48,2.68,2.85,3.03,3.17,3.3,3.4,3.47,3.54,3.58,3.61,3.63,3.63,3.63,3.62,3.62,3.61,3.6,3.59,3.59,3.57,3.56,3.55,3.53,3.5,3.45,3.41,3.33,3.26,3.16,3.05,2.91,2.76,2.58,2.4,2.2,1.98,1.76,1.53,1.3,1.07,0.85,0.65,0.47,0.32,0.21,0.14,0.1,0.12,0.18,0.29,0.44,0.63,0.85,1.08,1.32,1.57,1.8,2.01,2.19,2.33,2.44,2.49,2.52,2.51,2.46,2.4,2.32,2.25,2.17,2.12,2.08,2.08,2.13,2.22,2.35,2.54,2.75,3.0,3.28,3.58,3.87,4.16,4.41,4.63,4.8,4.9,4.93,4.89,4.77,4.57,4.31,3.99,3.62,3.21,2.79,2.34,1.91,1.48,1.09,0.73,0.4,0.1,-0.15,-0.37,-0.57,-0.74,-0.88,-1.01,-1.13,-1.23,-1.33,-1.42,-1.49,-1.56,-1.61,-1.66,-1.68,-1.7,-1.69,-1.68,-1.65,-1.6,-1.53,-1.45,-1.34,-1.21,-1.06,-0.9,-0.72,-0.53,-0.33,-0.15,0.03,0.18,0.3,0.38,0.41,0.38,0.29,0.15,-0.05,-0.28,-0.56,-0.85,-1.14],[-1.61,-1.85,-2.05,-2.2,-2.3,-2.34,-2.34,-2.29,-2.21,-2.1,-1.99,-1.89,-1.8,-1.75,-1.73,-1.75,-1.81,-1.92,-2.05,-2.21,-2.38,-2.56,-2.73,-2.89,-3.02,-3.12,-3.18,-3.2,-3.18,-3.11,-3.02,-2.89,-2.73,-2.56,-2.37,-2.17,-1.98,-1.8,-1.62,-1.47,-1.34,-1.24,-1.15,-1.1,-1.07,-1.06,-1.07,-1.1,-1.13,-1.17,-1.22,-1.26,-1.29,-1.33,-1.36,-1.39,-1.41,-1.42,-1.44,-1.46,-1.47,-1.49,-1.51,-1.53,-1.56,-1.58,-1.6,-1.62,-1.65,-1.67,-1.68,-1.7,-1.72,-1.73,-1.74,-1.74,-1.74,-1.72,-1.69,-1.65,-1.58,-1.5,-1.39,-1.25,-1.09,-0.91,-0.7,-0.47,-0.22,0.05,0.32,0.6,0.88,1.17,1.43,1.69,1.92,2.14,2.32,2.48,2.6,2.69,2.73,2.74,2.71,2.63,2.53,2.39,2.22,2.02,1.83,1.61,1.38,1.15,0.95,0.75,0.56,0.4,0.26,0.15,0.05,-0.02,-0.07,-0.11,-0.13,-0.16,-0.18,-0.2,-0.23,-0.26,-0.31,-0.36,-0.41,-0.46,-0.53,-0.58,-0.62,-0.65,-0.64,-0.61,-0.55,-0.44,-0.29,-0.11,0.12,0.37,0.66,0.96,1.27,1.59,1.89,2.18,2.43,2.64,2.8,2.91,2.98,2.99,2.97,2.9,2.81,2.71,2.6,2.5,2.42,2.37,2.36,2.4,2.47,2.57,2.71,2.87,3.03,3.19,3.34,3.45,3.53,3.57,3.55,3.49,3.39,3.27,3.12,2.97,2.81,2.67,2.55,2.45,2.38,2.35,2.32,2.31,2.32,2.32,2.31,2.29,2.24,2.17,2.07,1.95,1.82,1.67,1.53,1.4,1.29,1.22,1.17,1.17,1.2,1.29,1.41,1.56,1.74,1.94,2.16,2.37,2.59,2.8,2.98,3.15,3.3,3.42,3.53,3.61,3.68,3.72,3.75,3.78,3.78,3.78,3.79,3.78,3.78,3.77,3.77,3.76,3.75,3.73,3.71,3.68,3.64,3.57,3.49,3.39,3.28,3.14,2.97,2.79,2.58,2.36,2.12,1.88,1.62,1.38,1.13,0.9,0.69,0.49,0.33,0.2,0.11,0.08,0.09,0.15,0.26,0.41,0.59,0.81,1.05,1.29,1.54,1.77,1.99,2.16,2.31,2.41,2.47,2.49,2.46,2.4,2.32,2.22,2.11,2.02,1.93,1.86,1.83,1.82,1.86,1.96,2.09,2.27,2.48,2.72,2.97,3.24,3.5,3.74,3.95,4.1,4.2,4.22,4.17,4.04,3.84,3.55,3.22,2.84,2.43,1.99,1.57,1.15,0.76,0.4,0.09,-0.2,-0.43,-0.63,-0.79,-0.94,-1.07,-1.18,-1.29,-1.39,-1.5,-1.6,-1.72,-1.81,-1.9,-1.98,-2.05,-2.11,-2.14,-2.16,-2.15,-2.13,-2.08,-2.02,-1.94,-1.83,-1.71,-1.57,-1.41,-1.23,-1.04,-0.85,-0.66,-0.48,-0.32,-0.18,-0.08,-0.03,-0.03,-0.09,-0.2,-0.37,-0.58,-0.81,-1.09,-1.35],[-2.02,-2.17,-2.3,-2.37,-2.4,-2.39,-2.32,-2.22,-2.08,-1.93,-1.79,-1.66,-1.57,-1.52,-1.52,-1.58,-1.69,-1.84,-2.03,-2.26,-2.5,-2.75,-2.99,-3.22,-3.42,-3.59,-3.73,-3.82,-3.86,-3.87,-3.84,-3.79,-3.69,-3.57,-3.43,-3.28,-3.13,-2.96,-2.81,-2.68,-2.55,-2.44,-2.36,-2.3,-2.25,-2.22,-2.21,-2.21,-2.21,-2.21,-2.21,-2.21,-2.2,-2.19,-2.15,-2.11,-2.07,-2.01,-1.95,-1.89,-1.82,-1.75,-1.68,-1.6,-1.51,-1.44,-1.36,-1.29,-1.23,-1.16,-1.11,-1.08,-1.06,-1.06,-1.08,-1.09,-1.13,-1.17,-1.2,-1.23,-1.23,-1.22,-1.17,-1.09,-0.98,-0.83,-0.66,-0.45,-0.22,0.03,0.29,0.56,0.83,1.1,1.37,1.63,1.88,2.11,2.31,2.49,2.64,2.75,2.83,2.86,2.85,2.8,2.7,2.57,2.4,2.19,1.97,1.73,1.49,1.25,1.02,0.8,0.6,0.43,0.27,0.15,0.04,-0.04,-0.11,-0.15,-0.19,-0.21,-0.23,-0.24,-0.25,-0.24,-0.24,-0.22,-0.21,-0.2,-0.18,-0.15,-0.13,-0.1,-0.07,-0.03,0.02,0.08,0.15,0.24,0.34,0.47,0.63,0.81,1.0,1.22,1.45,1.68,1.92,2.13,2.32,2.46,2.57,2.63,2.64,2.6,2.51,2.38,2.24,2.1,1.97,1.87,1.82,1.82,1.89,2.02,2.21,2.44,2.71,2.97,3.24,3.46,3.65,3.76,3.8,3.75,3.66,3.48,3.27,3.04,2.8,2.57,2.37,2.21,2.12,2.07,2.07,2.11,2.19,2.27,2.36,2.43,2.48,2.47,2.42,2.32,2.17,1.99,1.78,1.56,1.34,1.13,0.97,0.84,0.76,0.75,0.78,0.88,1.02,1.21,1.44,1.68,1.93,2.2,2.46,2.7,2.92,3.12,3.28,3.42,3.53,3.6,3.66,3.69,3.7,3.69,3.69,3.68,3.67,3.66,3.67,3.68,3.7,3.71,3.73,3.73,3.71,3.68,3.62,3.54,3.41,3.25,3.07,2.86,2.62,2.37,2.11,1.84,1.57,1.31,1.07,0.83,0.62,0.43,0.28,0.15,0.07,0.03,0.03,0.07,0.16,0.29,0.45,0.65,0.87,1.1,1.34,1.58,1.8,2.01,2.18,2.33,2.44,2.53,2.58,2.61,2.61,2.58,2.55,2.5,2.44,2.38,2.32,2.27,2.24,2.21,2.22,2.25,2.29,2.37,2.48,2.58,2.71,2.82,2.92,2.98,3.0,2.95,2.84,2.67,2.41,2.09,1.72,1.31,0.87,0.44,0.04,-0.33,-0.65,-0.91,-1.1,-1.25,-1.33,-1.39,-1.41,-1.44,-1.48,-1.52,-1.61,-1.72,-1.86,-2.03,-2.22,-2.42,-2.61,-2.79,-2.95,-3.07,-3.17,-3.21,-3.24,-3.23,-3.19,-3.13,-3.06,-2.98,-2.88,-2.76,-2.65,-2.51,-2.37,-2.21,-2.04,-1.87,-1.7,-1.54,-1.39,-1.28,-1.2,-1.17,-1.19,-1.25,-1.36,-1.49,-1.67,-1.84],[-2.25,-2.36,-2.45,-2.51,-2.51,-2.48,-2.4,-2.28,-2.15,-1.99,-1.85,-1.72,-1.64,-1.59,-1.6,-1.67,-1.79,-1.96,-2.17,-2.42,-2.68,-2.96,-3.23,-3.49,-3.72,-3.93,-4.1,-4.23,-4.32,-4.37,-4.38,-4.37,-4.31,-4.24,-4.14,-4.02,-3.89,-3.75,-3.62,-3.5,-3.38,-3.28,-3.19,-3.13,-3.08,-3.04,-3.01,-2.99,-2.97,-2.95,-2.91,-2.88,-2.82,-2.76,-2.68,-2.6,-2.51,-2.4,-2.3,-2.18,-2.06,-1.95,-1.82,-1.69,-1.57,-1.44,-1.3,-1.19,-1.07,-0.97,-0.89,-0.83,-0.79,-0.78,-0.79,-0.83,-0.88,-0.94,-1.0,-1.05,-1.08,-1.09,-1.06,-1.0,-0.9,-0.77,-0.61,-0.41,-0.2,0.04,0.28,0.53,0.78,1.03,1.27,1.51,1.72,1.94,2.14,2.31,2.47,2.6,2.69,2.74,2.75,2.71,2.63,2.5,2.32,2.12,1.89,1.64,1.39,1.14,0.91,0.69,0.49,0.31,0.15,0.04,-0.07,-0.16,-0.23,-0.3,-0.34,-0.38,-0.4,-0.42,-0.41,-0.4,-0.37,-0.33,-0.27,-0.21,-0.13,-0.05,0.03,0.1,0.16,0.23,0.26,0.31,0.33,0.35,0.38,0.42,0.48,0.57,0.68,0.83,1.0,1.21,1.42,1.65,1.87,2.06,2.22,2.33,2.38,2.37,2.29,2.17,2.02,1.84,1.67,1.51,1.42,1.37,1.42,1.53,1.72,1.98,2.29,2.61,2.94,3.24,3.47,3.64,3.71,3.71,3.6,3.42,3.18,2.91,2.63,2.35,2.12,1.93,1.81,1.76,1.77,1.85,1.96,2.11,2.26,2.39,2.47,2.52,2.5,2.43,2.29,2.1,1.87,1.61,1.35,1.09,0.86,0.69,0.56,0.48,0.49,0.56,0.69,0.87,1.09,1.34,1.62,1.9,2.18,2.44,2.67,2.88,3.06,3.21,3.31,3.38,3.43,3.44,3.44,3.42,3.41,3.39,3.37,3.38,3.39,3.41,3.46,3.5,3.55,3.59,3.59,3.58,3.55,3.46,3.33,3.17,2.97,2.74,2.48,2.22,1.94,1.67,1.41,1.16,0.92,0.71,0.52,0.36,0.23,0.13,0.05,0.01,0.01,0.03,0.11,0.21,0.36,0.53,0.73,0.95,1.18,1.42,1.65,1.88,2.09,2.29,2.47,2.63,2.76,2.88,2.97,3.06,3.11,3.14,3.14,3.12,3.08,3.02,2.95,2.87,2.79,2.71,2.64,2.6,2.57,2.57,2.58,2.6,2.61,2.6,2.56,2.47,2.31,2.1,1.82,1.47,1.08,0.65,0.21,-0.23,-0.62,-0.98,-1.27,-1.48,-1.61,-1.69,-1.7,-1.67,-1.64,-1.6,-1.58,-1.61,-1.69,-1.82,-1.98,-2.21,-2.47,-2.73,-2.99,-3.24,-3.45,-3.62,-3.74,-3.81,-3.84,-3.83,-3.79,-3.73,-3.65,-3.57,-3.5,-3.41,-3.32,-3.22,-3.12,-3.0,-2.86,-2.71,-2.55,-2.38,-2.22,-2.07,-1.94,-1.84,-1.8,-1.79,-1.82,-1.89,-1.99,-2.12],[1.75,1.73,1.72,1.71,1.69,1.68,1.66,1.66,1.65,1.63,1.63,1.62,1.61,1.6,1.6,1.59,1.59,1.58,1.57,1.56,1.57,1.56,1.56,1.56,1.56,1.55,1.55,1.55,1.56,1.56,1.55,1.56,1.56,1.56,1.56,1.57,1.57,1.57,1.58,1.59,1.59,1.59,1.6,1.61,1.61,1.62,1.63,1.64,1.64,1.64,1.65,1.67,1.67,1.68,1.69,1.69,1.7,1.71,1.72,1.72,1.74,1.74,1.75,1.76,1.76,1.78,1.78,1.79,1.79,1.81,1.81,1.82,1.82,1.83,1.83,1.84,1.84,1.85,1.86,1.86,1.86,1.87,1.87,1.88,1.87,1.88,1.88,1.88,1.88,1.88,1.87,1.88,1.88,1.87,1.87,1.85,1.85,1.85,1.84,1.83,1.83,1.81,1.81,1.8,1.78,1.77,1.76,1.74,1.73,1.72,1.7,1.68,1.67,1.64,1.63,1.61,1.6,1.57,1.55,1.53,1.51,1.49,1.47,1.45,1.42,1.4,1.37,1.35,1.32,1.3,1.27,1.25,1.23,1.21,1.18,1.16,1.13,1.11,1.09,1.06,1.04,1.02,1.0,0.97,0.96,0.93,0.92,0.89,0.87,0.86,0.84,0.82,0.8,0.78,0.77,0.75,0.74,0.72,0.71,0.7,0.69,0.68,0.67,0.66,0.66,0.64,0.63,0.63,0.63,0.62,0.62,0.61,0.61,0.61,0.61,0.61,0.61,0.61,0.62,0.62,0.62,0.63,0.63,0.65,0.65,0.66,0.67,0.68,0.69,0.7,0.71,0.73,0.75,0.76,0.77,0.79,0.8,0.83,0.85,0.87,0.89,0.91,0.94,0.95,0.98,1.0,1.03,1.06,1.08,1.11,1.13,1.16,1.2,1.22,1.25,1.28,1.31,1.34,1.37,1.41,1.44,1.47,1.49,1.52,1.56,1.58,1.62,1.65,1.68,1.71,1.74,1.77,1.8,1.83,1.87,1.9,1.93,1.95,1.98,2.02,2.04,2.07,2.1,2.12,2.15,2.19,2.21,2.24,2.27,2.29,2.32,2.35,2.38,2.4,2.42,2.46,2.49,2.51,2.53,2.56,2.59,2.61,2.64,2.66,2.69,2.71,2.73,2.76,2.78,2.81,2.83,2.85,2.87,2.9,2.92,2.94,2.96,2.97,2.99,3.0,3.03,3.04,3.05,3.07,3.09,3.09,3.1,3.11,3.12,3.13,3.13,3.14,3.14,3.14,3.15,3.15,3.14,3.13,3.13,3.13,3.12,3.11,3.1,3.09,3.08,3.06,3.05,3.03,3.02,3.0,2.98,2.96,2.93,2.91,2.89,2.87,2.83,2.81,2.78,2.76,2.73,2.7,2.68,2.64,2.61,2.59,2.55,2.52,2.49,2.46,2.44,2.41,2.38,2.35,2.32,2.29,2.27,2.23,2.21,2.18,2.15,2.13,2.1,2.08,2.06,2.03,2.01,1.98,1.96,1.94,1.92,1.9,1.88,1.86,1.84,1.82,1.81,1.79,1.77,1.76],[1.02,1.01,0.99,0.98,0.98,0.96,0.96,0.95,0.94,0.94,0.92,0.92,0.91,0.91,0.91,0.9,0.9,0.9,0.89,0.89,0.9,0.9,0.9,0.9,0.9,0.9,0.89,0.9,0.9,0.91,0.9,0.91,0.92,0.92,0.93,0.93,0.94,0.94,0.94,0.96,0.96,0.97,0.97,0.98,0.99,1.0,1.01,1.02,1.03,1.04,1.04,1.05,1.06,1.07,1.08,1.1,1.1,1.11,1.13,1.13,1.14,1.16,1.16,1.18,1.19,1.2,1.21,1.22,1.23,1.25,1.25,1.26,1.28,1.29,1.29,1.31,1.32,1.33,1.34,1.34,1.35,1.36,1.37,1.38,1.39,1.4,1.41,1.42,1.43,1.43,1.44,1.44,1.44,1.45,1.45,1.46,1.46,1.47,1.47,1.47,1.48,1.48,1.48,1.48,1.48,1.48,1.49,1.49,1.49,1.49,1.49,1.48,1.48,1.48,1.47,1.47,1.46,1.46,1.46,1.46,1.45,1.44,1.43,1.43,1.42,1.42,1.41,1.4,1.39,1.39,1.38,1.38,1.36,1.36,1.35,1.34,1.34,1.32,1.32,1.31,1.3,1.3,1.29,1.28,1.27,1.26,1.25,1.25,1.25,1.24,1.22,1.22,1.21,1.21,1.21,1.2,1.19,1.19,1.19,1.18,1.18,1.18,1.17,1.17,1.17,1.17,1.16,1.17,1.16,1.17,1.16,1.17,1.16,1.17,1.17,1.18,1.18,1.18,1.18,1.19,1.19,1.2,1.21,1.21,1.23,1.23,1.24,1.24,1.25,1.27,1.27,1.28,1.3,1.3,1.32,1.33,1.34,1.36,1.37,1.38,1.4,1.42,1.42,1.44,1.46,1.47,1.49,1.51,1.52,1.55,1.56,1.58,1.6,1.61,1.64,1.65,1.67,1.68,1.71,1.73,1.75,1.76,1.78,1.8,1.82,1.83,1.86,1.87,1.89,1.91,1.92,1.94,1.96,1.98,2.0,2.01,2.03,2.04,2.07,2.08,2.09,2.11,2.13,2.14,2.16,2.17,2.19,2.19,2.21,2.23,2.23,2.25,2.26,2.27,2.29,2.29,2.3,2.31,2.32,2.33,2.35,2.36,2.37,2.37,2.37,2.38,2.39,2.39,2.4,2.41,2.41,2.42,2.42,2.43,2.43,2.43,2.43,2.43,2.44,2.44,2.44,2.43,2.43,2.43,2.43,2.43,2.42,2.41,2.41,2.4,2.39,2.38,2.38,2.37,2.36,2.35,2.33,2.32,2.31,2.3,2.28,2.27,2.24,2.23,2.21,2.19,2.18,2.15,2.14,2.12,2.1,2.07,2.05,2.03,2.01,1.98,1.96,1.93,1.9,1.88,1.86,1.84,1.81,1.78,1.75,1.73,1.71,1.68,1.65,1.63,1.6,1.58,1.55,1.53,1.5,1.48,1.46,1.43,1.41,1.38,1.36,1.34,1.31,1.29,1.27,1.25,1.24,1.22,1.2,1.18,1.16,1.15,1.13,1.12,1.1,1.08,1.06,1.05,1.04,1.02],[0.54,0.54,0.53,0.52,0.51,0.5,0.49,0.49,0.48,0.48,0.47,0.47,0.46,0.46,0.46,0.45,0.45,0.45,0.45,0.44,0.44,0.44,0.45,0.45,0.44,0.45,0.45,0.46,0.45,0.46,0.47,0.47,0.48,0.47,0.48,0.48,0.5,0.5,0.51,0.51,0.52,0.53,0.53,0.54,0.56,0.56,0.57,0.57,0.58,0.6,0.61,0.62,0.63,0.64,0.65,0.66,0.67,0.68,0.69,0.7,0.72,0.73,0.74,0.74,0.76,0.77,0.79,0.8,0.81,0.82,0.84,0.85,0.86,0.87,0.89,0.9,0.91,0.92,0.94,0.94,0.96,0.97,0.99,0.99,1.01,1.02,1.03,1.05,1.05,1.06,1.07,1.09,1.1,1.11,1.12,1.13,1.14,1.16,1.17,1.17,1.18,1.19,1.19,1.2,1.21,1.22,1.23,1.24,1.24,1.25,1.26,1.27,1.28,1.29,1.29,1.3,1.3,1.31,1.31,1.32,1.32,1.32,1.34,1.34,1.34,1.34,1.35,1.36,1.36,1.36,1.37,1.37,1.37,1.38,1.38,1.38,1.38,1.38,1.39,1.39,1.4,1.39,1.4,1.4,1.4,1.41,1.4,1.41,1.41,1.42,1.41,1.42,1.42,1.42,1.43,1.43,1.43,1.43,1.44,1.44,1.44,1.44,1.44,1.45,1.46,1.46,1.46,1.47,1.47,1.47,1.48,1.48,1.48,1.49,1.49,1.5,1.51,1.51,1.52,1.52,1.53,1.54,1.54,1.55,1.56,1.57,1.56,1.57,1.58,1.59,1.6,1.61,1.62,1.63,1.63,1.64,1.65,1.66,1.67,1.67,1.68,1.69,1.71,1.71,1.72,1.73,1.75,1.75,1.76,1.77,1.78,1.79,1.8,1.81,1.82,1.83,1.84,1.85,1.86,1.86,1.88,1.89,1.89,1.9,1.91,1.92,1.93,1.94,1.95,1.96,1.96,1.97,1.98,1.99,1.99,2.0,2.0,2.01,2.01,2.02,2.03,2.03,2.03,2.04,2.04,2.04,2.05,2.06,2.05,2.05,2.05,2.06,2.06,2.06,2.07,2.06,2.06,2.06,2.06,2.06,2.06,2.06,2.05,2.05,2.05,2.04,2.04,2.04,2.03,2.03,2.02,2.02,2.01,2.0,2.0,1.99,1.98,1.97,1.96,1.95,1.94,1.93,1.93,1.91,1.9,1.89,1.87,1.86,1.85,1.84,1.83,1.81,1.79,1.78,1.76,1.75,1.73,1.71,1.69,1.68,1.66,1.64,1.62,1.61,1.59,1.57,1.55,1.53,1.5,1.48,1.47,1.44,1.42,1.4,1.38,1.36,1.34,1.32,1.29,1.26,1.25,1.23,1.2,1.18,1.16,1.14,1.12,1.09,1.08,1.05,1.03,1.01,0.99,0.97,0.95,0.93,0.91,0.89,0.87,0.85,0.83,0.82,0.79,0.78,0.76,0.75,0.73,0.71,0.69,0.68,0.67,0.65,0.64,0.62,0.61,0.6,0.59,0.58,0.56,0.55],[0.37,0.35,0.35,0.34,0.33,0.32,0.32,0.32,0.32,0.3,0.3,0.3,0.3,0.29,0.29,0.29,0.29,0.28,0.28,0.28,0.28,0.28,0.28,0.28,0.28,0.28,0.28,0.29,0.28,0.29,0.29,0.3,0.3,0.31,0.3,0.31,0.32,0.32,0.33,0.33,0.34,0.35,0.35,0.36,0.36,0.37,0.38,0.39,0.39,0.4,0.41,0.41,0.43,0.43,0.45,0.45,0.46,0.48,0.48,0.49,0.51,0.51,0.52,0.53,0.55,0.56,0.56,0.57,0.58,0.6,0.61,0.62,0.63,0.64,0.65,0.66,0.67,0.69,0.71,0.72,0.73,0.74,0.75,0.77,0.78,0.79,0.79,0.81,0.82,0.83,0.84,0.86,0.87,0.89,0.89,0.9,0.92,0.93,0.94,0.95,0.96,0.98,0.98,1.0,1.01,1.02,1.03,1.04,1.05,1.06,1.07,1.08,1.09,1.1,1.11,1.12,1.14,1.14,1.15,1.16,1.17,1.18,1.19,1.2,1.21,1.21,1.23,1.24,1.24,1.25,1.26,1.26,1.27,1.29,1.3,1.3,1.31,1.32,1.33,1.34,1.33,1.34,1.35,1.36,1.37,1.38,1.39,1.39,1.39,1.4,1.41,1.41,1.42,1.43,1.43,1.44,1.45,1.45,1.46,1.47,1.47,1.49,1.49,1.5,1.5,1.51,1.51,1.52,1.52,1.54,1.54,1.54,1.55,1.55,1.57,1.57,1.57,1.58,1.59,1.59,1.59,1.61,1.61,1.61,1.62,1.63,1.63,1.64,1.64,1.65,1.66,1.66,1.67,1.67,1.68,1.68,1.69,1.69,1.7,1.7,1.72,1.72,1.73,1.72,1.73,1.73,1.74,1.74,1.75,1.75,1.76,1.77,1.76,1.77,1.77,1.78,1.79,1.78,1.79,1.8,1.79,1.8,1.81,1.8,1.81,1.81,1.81,1.81,1.82,1.81,1.82,1.82,1.81,1.82,1.82,1.81,1.82,1.82,1.81,1.82,1.82,1.81,1.81,1.8,1.81,1.81,1.8,1.8,1.79,1.79,1.78,1.78,1.77,1.77,1.76,1.76,1.76,1.76,1.75,1.74,1.74,1.73,1.72,1.71,1.7,1.7,1.69,1.68,1.67,1.66,1.65,1.63,1.63,1.62,1.61,1.6,1.58,1.58,1.56,1.55,1.53,1.53,1.51,1.5,1.49,1.48,1.46,1.45,1.43,1.42,1.41,1.38,1.37,1.36,1.34,1.33,1.32,1.3,1.28,1.27,1.25,1.23,1.21,1.2,1.18,1.16,1.15,1.12,1.11,1.1,1.07,1.06,1.04,1.03,1.01,0.99,0.98,0.96,0.94,0.92,0.9,0.88,0.87,0.85,0.84,0.81,0.8,0.78,0.77,0.75,0.74,0.71,0.7,0.68,0.67,0.65,0.64,0.62,0.61,0.59,0.59,0.57,0.55,0.54,0.53,0.51,0.51,0.49,0.47,0.47,0.45,0.45,0.43,0.42,0.42,0.4,0.4,0.39,0.38,0.37],[0.45,0.45,0.43,0.43,0.43,0.43,0.43,0.42,0.41,0.41,0.41,0.41,0.41,0.4,0.4,0.4,0.39,0.39,0.39,0.39,0.39,0.39,0.39,0.39,0.39,0.39,0.39,0.39,0.39,0.39,0.4,0.4,0.4,0.4,0.41,0.4,0.41,0.41,0.41,0.42,0.42,0.43,0.43,0.43,0.43,0.44,0.44,0.45,0.46,0.46,0.46,0.47,0.47,0.48,0.49,0.49,0.5,0.5,0.51,0.52,0.52,0.53,0.54,0.55,0.55,0.56,0.57,0.58,0.58,0.59,0.6,0.6,0.61,0.62,0.62,0.63,0.65,0.65,0.66,0.67,0.67,0.69,0.69,0.7,0.71,0.72,0.73,0.73,0.75,0.75,0.76,0.78,0.78,0.8,0.8,0.81,0.82,0.82,0.84,0.84,0.86,0.86,0.88,0.88,0.88,0.9,0.91,0.92,0.93,0.93,0.95,0.95,0.96,0.97,0.98,0.99,0.99,1.01,1.01,1.02,1.03,1.04,1.05,1.06,1.06,1.07,1.09,1.09,1.1,1.11,1.11,1.12,1.13,1.13,1.14,1.15,1.16,1.17,1.18,1.19,1.19,1.2,1.21,1.22,1.21,1.22,1.23,1.24,1.25,1.25,1.26,1.27,1.28,1.28,1.28,1.29,1.3,1.31,1.32,1.31,1.32,1.33,1.34,1.34,1.35,1.35,1.36,1.36,1.37,1.38,1.38,1.39,1.39,1.39,1.4,1.41,1.41,1.42,1.42,1.42,1.43,1.43,1.44,1.44,1.45,1.45,1.46,1.46,1.46,1.46,1.47,1.47,1.48,1.48,1.48,1.49,1.49,1.49,1.49,1.49,1.5,1.5,1.5,1.51,1.51,1.5,1.51,1.51,1.51,1.52,1.52,1.52,1.51,1.52,1.52,1.52,1.52,1.52,1.52,1.52,1.52,1.52,1.52,1.51,1.52,1.52,1.52,1.52,1.51,1.51,1.51,1.5,1.51,1.51,1.51,1.5,1.5,1.5,1.49,1.49,1.49,1.48,1.48,1.47,1.47,1.46,1.46,1.46,1.45,1.45,1.44,1.44,1.43,1.42,1.42,1.41,1.41,1.4,1.39,1.39,1.39,1.38,1.37,1.37,1.36,1.35,1.34,1.33,1.33,1.32,1.31,1.3,1.29,1.29,1.28,1.27,1.26,1.25,1.23,1.23,1.22,1.21,1.2,1.19,1.18,1.17,1.16,1.15,1.14,1.13,1.12,1.1,1.1,1.08,1.08,1.06,1.06,1.04,1.03,1.03,1.01,1.0,0.98,0.98,0.97,0.96,0.94,0.93,0.92,0.91,0.89,0.88,0.87,0.86,0.85,0.84,0.83,0.82,0.81,0.8,0.78,0.77,0.76,0.76,0.75,0.73,0.72,0.71,0.71,0.69,0.68,0.68,0.66,0.65,0.65,0.63,0.63,0.61,0.6,0.6,0.58,0.58,0.57,0.56,0.56,0.54,0.54,0.53,0.52,0.52,0.5,0.5,0.5,0.49,0.48,0.48,0.47,0.46,0.46,0.45],[0.73,0.73,0.73,0.73,0.73,0.72,0.73,0.72,0.72,0.72,0.71,0.72,0.72,0.71,0.71,0.72,0.71,0.71,0.71,0.71,0.71,0.71,0.71,0.71,0.71,0.71,0.71,0.71,0.71,0.71,0.71,0.71,0.71,0.71,0.72,0.71,0.71,0.72,0.72,0.71,0.71,0.72,0.72,0.72,0.73,0.72,0.72,0.72,0.73,0.73,0.73,0.73,0.74,0.73,0.73,0.74,0.74,0.74,0.74,0.75,0.75,0.75,0.75,0.76,0.76,0.76,0.76,0.77,0.77,0.77,0.77,0.78,0.78,0.78,0.78,0.79,0.79,0.79,0.79,0.8,0.8,0.8,0.8,0.81,0.82,0.82,0.82,0.82,0.83,0.83,0.83,0.83,0.83,0.85,0.85,0.85,0.85,0.85,0.85,0.87,0.87,0.87,0.87,0.87,0.88,0.89,0.89,0.89,0.89,0.9,0.9,0.9,0.9,0.91,0.92,0.92,0.92,0.92,0.93,0.93,0.93,0.94,0.94,0.94,0.95,0.96,0.96,0.96,0.96,0.97,0.97,0.97,0.98,0.98,0.98,0.99,0.99,0.99,0.99,1.0,1.0,1.0,1.01,1.01,1.01,1.02,1.02,1.02,1.03,1.03,1.03,1.04,1.04,1.04,1.05,1.05,1.05,1.05,1.05,1.05,1.06,1.06,1.06,1.07,1.07,1.07,1.08,1.08,1.07,1.08,1.08,1.08,1.09,1.09,1.09,1.09,1.09,1.09,1.1,1.1,1.1,1.11,1.1,1.1,1.11,1.11,1.11,1.11,1.11,1.11,1.12,1.12,1.11,1.12,1.12,1.12,1.13,1.12,1.12,1.12,1.13,1.12,1.12,1.13,1.13,1.12,1.12,1.13,1.13,1.12,1.12,1.13,1.13,1.12,1.12,1.13,1.13,1.12,1.12,1.13,1.13,1.12,1.12,1.12,1.12,1.12,1.12,1.12,1.11,1.12,1.12,1.11,1.11,1.11,1.11,1.11,1.11,1.11,1.1,1.1,1.1,1.1,1.09,1.09,1.1,1.09,1.09,1.09,1.09,1.08,1.08,1.08,1.07,1.07,1.07,1.07,1.06,1.06,1.06,1.06,1.05,1.05,1.05,1.05,1.04,1.04,1.04,1.04,1.03,1.03,1.03,1.03,1.01,1.01,1.01,1.01,1.0,1.0,1.0,1.0,0.99,0.98,0.98,0.98,0.98,0.98,0.97,0.96,0.96,0.96,0.96,0.95,0.95,0.94,0.94,0.93,0.93,0.93,0.93,0.92,0.92,0.91,0.91,0.9,0.9,0.9,0.89,0.89,0.89,0.88,0.88,0.88,0.87,0.87,0.87,0.86,0.86,0.86,0.85,0.85,0.85,0.84,0.84,0.84,0.83,0.83,0.82,0.82,0.82,0.81,0.81,0.8,0.8,0.8,0.79,0.79,0.79,0.79,0.79,0.78,0.78,0.77,0.77,0.77,0.76,0.77,0.76,0.76,0.76,0.75,0.75,0.75,0.75,0.75,0.74,0.74,0.74,0.74,0.74,0.73]]],"w10n":[{"name":"spec","value":"draft-20091228"},{"name":"application","value":"pomegranate-2.0.8"},{"name":"type","value":"nc"},{"name":"path","value":"\/data\/GRC_JPL_RL05_DPC_OCN_500_200301_201307.nc"},{"name":"identifier","value":"\/lwe_thickness[0:1]"}]} \ No newline at end of file +{{jquery}}({"w10n":[{"value":"draft-20091228","name":"spec"},{"value":"taiga-1.1.2","name":"application"},{"value":"nc","name":"type"},{"value":"/home/ubuntu/data/GRACE.CSR.LAND.RL05.DS.G200KM.nc","name":"path"},{"value":"/lwe_thickness[0:1]","name":"identifier"}],"data":[[[7.91792440414429,7.9074535369873,7.89709615707397,7.88685464859009,7.87674283981323,7.86675834655762,7.85690975189209,7.84720087051392,7.83763837814331,7.82822751998901,7.81897258758545,7.80987691879272,7.80094861984253,7.79219007492065,7.78360605239868,7.77520036697388,7.76697683334351,7.75894069671631,7.75109577178955,7.74344491958618,7.73599147796631,7.72873973846436,7.72169303894043,7.71485233306885,7.70822143554688,7.70180416107178,7.69560050964355,7.68961191177368,7.68384504318237,7.67829847335815,7.6729736328125,7.66787338256836,7.66299915313721,7.65835046768188,7.65392875671387,7.6497368812561,7.6457724571228,7.64203643798828,7.6385326385498,7.63525772094727,7.63221025466919,7.62939548492432,7.62680864334106,7.62445259094238,7.62232351303101,7.62042331695557,7.61875009536743,7.61730337142944,7.61608266830444,7.61508703231812,7.61431407928467,7.61376333236694,7.61343336105347,7.61332416534424,7.61343336105347,7.61375761032104,7.61429929733276,7.61505460739136,7.61602210998535,7.61720037460327,7.61858892440796,7.62018537521362,7.62198877334595,7.62399482727051,7.62620401382446,7.62861490249634,7.63122701644897,7.63403606414795,7.6370415687561,7.64023971557617,7.64363527297974,7.64722156524658,7.65099763870239,7.65496301651001,7.65911674499512,7.66345500946045,7.66797828674316,7.67268657684326,7.67757558822632,7.68264818191528,7.68789672851562,7.69332599639893,7.69893217086792,7.70471334457397,7.71067047119141,7.71680164337158,7.72310495376587,7.72958040237427,7.73622941970825,7.74304485321045,7.75003099441528,7.75718450546265,7.76450490951538,7.77199220657349,7.77964496612549,7.78746128082275,7.79544019699097,7.8035831451416,7.81188821792603,7.82035303115845,7.82897663116455,7.83775997161865,7.8467001914978,7.85579681396484,7.86504983901978,7.87445592880249,7.88401508331299,7.89372682571411,7.90358972549438,7.91360282897949,7.92376184463501,7.93406772613525,7.94451713562012,7.95511150360107,7.96584725379944,7.97672486305237,7.98773837089539,7.99888825416565,8.01017284393311,8.02158832550049,8.03313231468201,8.0448055267334,8.05660390853882,8.06852531433105,8.08056497573853,8.09272122383118,8.10499167442322,8.11737465858459,8.12986469268799,8.14245891571045,8.15515565872192,8.16794991493225,8.18083906173706,8.1938169002533,8.20688366889954,8.22003197669983,8.23326015472412,8.24656105041504,8.25993204116821,8.27337002754211,8.28686928749084,8.30042362213135,8.31402921676636,8.32768416404724,8.34137749671936,8.35510993003845,8.36887216567993,8.38265824317932,8.39646458625793,8.41028904914856,8.4241201877594,8.43795323371887,8.45178437232971,8.46560597419739,8.47941398620605,8.4932005405426,8.50695753097534,8.5206823348999,8.53436756134033,8.54800629615784,8.56159281730652,8.57511830329895,8.58857774734497,8.6019651889801,8.61527442932129,8.62849450111389,8.64162445068359,8.65465497970581,8.66757941246033,8.68038964271545,8.69308280944824,8.70564961433411,8.71808195114136,8.73037648200989,8.74252438545227,8.75452160835266,8.76635789871216,8.77803134918213,8.78953313827515,8.80085778236389,8.81199669837952,8.82294917106628,8.83370471000671,8.84425806999207,8.85460448265076,8.86474061012268,8.87465763092041,8.884352684021,8.89381718635559,8.90305018424988,8.91204524040222,8.92079949378967,8.92930483818054,8.93756103515625,8.94556164741516,8.95330476760864,8.96078634262085,8.96799969673157,8.97494602203369,8.98162007331848,8.98802042007446,8.99414491653442,8.99998998641968,9.00555467605591,9.01083493232727,9.01583290100098,9.02054500579834,9.02497100830078,9.02911043167114,9.03296113014221,9.03652405738831,9.03979992866516,9.04278874397278,9.045490026474,9.04790449142456,9.05003476142883,9.05188035964966,9.05344367027283,9.05472660064697,9.05573081970215,9.0564558506012,9.05690836906433,9.05708932876587,9.05700135231018,9.05664753913879,9.05602860450745,9.05515217781067,9.05401992797852,9.05263566970825,9.05100202560425,9.04912495613098,9.0470085144043,9.04465556144714,9.04207158088684,9.03925895690918,9.03622627258301,9.03297638893127,9.02951431274414,9.02584481239319,9.02197194099426,9.01790308952332,9.01364135742188,9.00919270515442,9.00456118583679,8.99975323677063,8.99477410316467,8.98962903022766,8.98432350158691,8.97885966300964,8.97324681282043,8.9674870967865,8.96158528327942,8.95554947853088,8.94938039779663,8.94308519363403,8.93666934967041,8.93013739585876,8.92349004745483,8.91673564910889,8.90987515449524,8.90291523933411,8.89585995674133,8.88871097564697,8.88147330284119,8.8741512298584,8.86674499511719,8.85926175117493,8.85170269012451,8.84406876564026,8.83636593818665,8.82859349250793,8.82075810432434,8.81285738945007,8.80489492416382,8.79687190055847,8.78879284858704,8.78065609931946,8.77246308326721,8.76421761512756,8.75591707229614,8.74756503105164,8.73915982246399,8.73070549964905,8.72219896316528,8.71364235877991,8.70503354072571,8.69637513160706,8.68766522407532,8.67890477180481,8.67009258270264,8.66122770309448,8.65231037139893,8.64334177970886,8.63431692123413,8.6252384185791,8.61610317230225,8.6069130897522,8.59766387939453,8.5883584022522,8.57899332046509,8.56956791877747,8.56008267402649,8.55053329467773,8.54092240333557,8.53124928474426,8.52151083946228,8.51170754432678,8.50183796882629,8.49190378189087,8.48190140724182,8.4718325138092,8.46169686317444,8.451491355896,8.44122052192688,8.43087983131409,8.42047381401062,8.40999841690063,8.39945769309998,8.38885235786438,8.37818169593811,8.36744475364685,8.35664749145508,8.34578537940979,8.3348662853241,8.32388639450073,8.31285095214844,8.30176091194153,8.29061675071716,8.27942538261414,8.26818370819092,8.25689888000488,8.24557137489319,8.23420643806458,8.2228057384491,8.21137237548828,8.19991159439087,8.18842720985413,8.176922082901,8.16540026664734,8.15386772155762,8.14232659339905,8.13078498840332,8.11924481391907,8.10770893096924,8.09618806838989,8.08468389511108,8.07320165634155,8.06174612045288,8.05032682418823,8.03894472122192,8.02760553359985,8.01631832122803,8.00508499145508,7.99391555786133,7.98281097412109,7.97178030014038,7.96082925796509,7.94996023178101,7.93918371200562,7.92850351333618],[1.22429037094116,1.17614126205444,1.12875938415527,1.08224034309387,1.03667211532593,0.992143154144287,0.948737382888794,0.906535387039185,0.865612745285034,0.826040506362915,0.78788685798645,0.751213073730469,0.716078042984009,0.68253493309021,0.65062952041626,0.620405435562134,0.591899156570435,0.565141916275024,0.540159702301025,0.51697301864624,0.495597124099731,0.476041555404663,0.458308458328247,0.442398071289062,0.428302764892578,0.416011095046997,0.405505418777466,0.396762847900391,0.389756679534912,0.38445520401001,0.380821943283081,0.378816366195679,0.378393650054932,0.379505157470703,0.382097721099854,0.386118412017822,0.391506195068359,0.398200273513794,0.406136274337769,0.415248155593872,0.425467729568481,0.436724901199341,0.448948621749878,0.462064266204834,0.476001739501953,0.490684509277344,0.506040096282959,0.521993160247803,0.538471937179565,0.555401563644409,0.572710275650024,0.590328931808472,0.608187198638916,0.626216173171997,0.644350290298462,0.662528276443481,0.680686950683594,0.698766946792603,0.716713666915894,0.734474182128906,0.75199818611145,0.769238948822021,0.786154270172119,0.802701711654663,0.818848609924316,0.834559440612793,0.849807024002075,0.864565372467041,0.87881326675415,0.892534017562866,0.905712127685547,0.918338775634766,0.930407762527466,0.94191575050354,0.952863454818726,0.963256120681763,0.973101615905762,0.982409477233887,0.991195678710938,0.999476671218872,1.00727248191833,1.01460576057434,1.02150249481201,1.02799081802368,1.03409957885742,1.03986191749573,1.04531192779541,1.05048298835754,1.05541372299194,1.06014227867126,1.06470727920532,1.06914877891541,1.07350921630859,1.07782673835754,1.08214473724365,1.0865044593811,1.09094762802124,1.09551477432251,1.1002471446991,1.10518503189087,1.11036825180054,1.11583471298218,1.12162303924561,1.12776947021484,1.13431096076965,1.1412787437439,1.14870929718018,1.15663170814514,1.16507720947266,1.17407321929932,1.18364787101746,1.1938271522522,1.2046332359314,1.21608972549438,1.22821569442749,1.24103260040283,1.25455689430237,1.26880478858948,1.28378987312317,1.29952621459961,1.31602621078491,1.33329939842224,1.35135579109192,1.37020134925842,1.38984537124634,1.41029143333435,1.4315459728241,1.45361185073853,1.4764906167984,1.50018715858459,1.52469921112061,1.55002975463867,1.57617628574371,1.60313844680786,1.63091671466827,1.65950536727905,1.68890297412872,1.71910560131073,1.75010967254639,1.78191065788269,1.81450283527374,1.84788060188293,1.8820366859436,1.91696393489838,1.95265674591064,1.98910230398178,2.02629548311234,2.06422352790833,2.1028761267662,2.14224082231522,2.1823046207428,2.22305229306221,2.26446929574013,2.3065385222435,2.34924088418484,2.39255748689175,2.43646859005094,2.48094880580902,2.525974214077,2.57152043282986,2.61755606532097,2.66405418515205,2.71098095178604,2.75830382108688,2.80598467588425,2.85398882627487,2.90227204561234,2.95079511404037,2.99951261281967,3.04837715625763,3.09734201431274,3.14635479450226,3.19536221027374,3.24431157112122,3.29314482212067,3.34180426597595,3.39022874832153,3.438356757164,3.48612630367279,3.53347027301788,3.58032500743866,3.62662124633789,3.67229199409485,3.71726882457733,3.76148116588593,3.80486071109772,3.84733700752258,3.88883984088898,3.92929923534393,3.96864700317383,4.00681471824646,4.04373300075531,4.07933688163757,4.11356103420258,4.14634263515472,4.17761766910553,4.20732939243317,4.23541915416718,4.26183176040649,4.2865161895752,4.30942249298096,4.33050465583801,4.34972095489502,4.36703062057495,4.382399559021,4.3957953453064,4.40719032287598,4.41656041145325,4.42388820648193,4.42915654182434,4.43235659599304,4.43348145484924,4.43252992630005,4.42950487136841,4.42441463470459,4.41727185249329,4.40809440612793,4.3969030380249,4.38372468948364,4.36859107017517,4.35153830051422,4.3326051235199,4.31183731555939,4.2892826795578,4.2649952173233,4.2390308380127,4.2114509344101,4.18231976032257,4.15170443058014,4.1196768283844,4.08631086349487,4.0516859292984,4.01587808132172,3.97897267341614,3.94105184078217,3.9022045135498,3.86251842975616,3.82208371162415,3.78099048137665,3.73932987451553,3.69719922542572,3.65468782186508,3.61189234256744,3.56890332698822,3.52581644058228,3.48272466659546,3.43971884250641,3.39689183235168,3.35433274507523,3.31212767958641,3.27036753296852,3.22913514077663,3.18851184844971,3.14858009666204,3.10941469669342,3.07109297625721,3.03368526697159,2.99726046621799,2.96188223361969,2.92761465907097,2.8945144712925,2.86263513565063,2.83202663064003,2.80273595452309,2.77480316162109,2.7482675909996,2.72316056489944,2.69951015710831,2.67734056711197,2.65667194128036,2.63751590251923,2.61988347768784,2.60377883911133,2.5892014503479,2.57614743709564,2.56460571289062,2.55456244945526,2.54599684476852,2.53888618946075,2.53320014476776,2.52890539169312,2.52596509456635,2.5243353843689,2.52397000789642,2.5248167514801,2.52682137489319,2.5299254655838,2.53406369686127,2.53917229175568,2.54517829418182,2.55201184749603,2.55959320068359,2.56784665584564,2.57668709754944,2.58603310585022,2.59579694271088,2.60589146614075,2.61622714996338,2.62671053409576,2.63725352287292,2.64775836467743,2.65813732147217,2.66829359531403,2.67813408374786,2.68756639957428,2.69649732112885,2.70483779907227,2.71249544620514,2.71938526630402,2.7254182100296,2.73051226139069,2.73458504676819,2.73755872249603,2.73935759067535,2.73991107940674,2.73914778232574,2.73700654506683,2.73342657089233,2.7283524274826,2.72173237800598,2.71352076530457,2.70367634296417,2.69216430187225,2.67895436286926,2.66402077674866,2.64734494686127,2.6289130449295,2.6087189912796,2.58675837516785,2.5630384683609,2.53756785392761,2.5103622674942,2.48144602775574,2.45084607601166,2.41859591007233,2.38473534584045,2.34930884838104,2.31236803531647,2.2739691734314,2.23417210578918,2.19304370880127,2.15065252780914,2.10707557201385,2.06239223480225,2.01668643951416,1.97004103660583,1.92254948616028,1.87430489063263,1.82540285587311,1.77594041824341,1.72601783275604,1.67573952674866,1.62520587444305,1.57452082633972,1.52379143238068,1.47311961650848,1.42261350154877,1.37237405776978,1.32250690460205,1.27311229705811],[-7.07276248931885,-7.20648431777954,-7.33658468723297,-7.46264600753784,-7.58427029848099,-7.7010789513588,-7.8127144575119,-7.91884166002274,-8.01914697885513,-8.11334425210953,-8.20117419958115,-8.28240114450455,-8.35681796073914,-8.42424643039703,-8.48453366756439,-8.53756004571915,-8.58323156833649,-8.62148147821426,-8.65227508544922,-8.67560625076294,-8.69149607419968,-8.69999140501022,-8.70117080211639,-8.69513422250748,-8.68201196193695,-8.66195595264435,-8.63514602184296,-8.60178029537201,-8.56208109855652,-8.5162947177887,-8.46468126773834,-8.40752327442169,-8.34511733055115,-8.27777743339539,-8.20583212375641,-8.12962210178375,-8.04949796199799,-7.96582198143005,-7.87896454334259,-7.78930187225342,-7.69721698760986,-7.60309314727783,-7.50732064247131,-7.41028571128845,-7.31237840652466,-7.2139847278595,-7.11548185348511,-7.01725220680237,-6.91966223716736,-6.82307362556458,-6.72784185409546,-6.63430643081665,-6.54279661178589,-6.45363163948059,-6.367112159729,-6.28352737426758,-6.2031455039978,-6.12622046470642,-6.05299019813538,-5.98366498947144,-5.91844415664673,-5.85750317573547,-5.80099415779114,-5.74904942512512,-5.70178127288818,-5.65927624702454,-5.62159848213196,-5.58879327774048,-5.56087756156921,-5.5378520488739,-5.51969122886658,-5.50634598731995,-5.49775147438049,-5.493816614151,-5.49443459510803,-5.4994752407074,-5.50879192352295,-5.52222037315369,-5.53957939147949,-5.56067419052124,-5.58529281616211,-5.61321246623993,-5.6441992521286,-5.67800962924957,-5.71438944339752,-5.75308096408844,-5.79381775856018,-5.83633196353912,-5.88035404682159,-5.92561161518097,-5.9718359708786,-6.01875787973404,-6.0661147236824,-6.11364775896072,-6.16110789775848,-6.20825052261353,-6.25484395027161,-6.30066481232643,-6.34550261497498,-6.38916054368019,-6.43145348131657,-6.47221180796623,-6.5112818479538,-6.54852329567075,-6.58381244167686,-6.61704356968403,-6.64812661707401,-6.6769854426384,-6.70356145501137,-6.72781372070312,-6.74971559643745,-6.76925298571587,-6.78643080592155,-6.80126485228539,-6.81378054618835,-6.82402235269547,-6.8320406973362,-6.83789637684822,-6.84166033565998,-6.8434090167284,-6.8432265818119,-6.84120121598244,-6.8374265357852,-6.83199473842978,-6.82500152476132,-6.81654443591833,-6.80671636760235,-6.79560662806034,-6.7833054959774,-6.7698937356472,-6.75544780492783,-6.74003612995148,-6.72372263669968,-6.70655804872513,-6.68858700990677,-6.66984331607819,-6.65034890174866,-6.63011848926544,-6.60915410518646,-6.58744287490845,-6.56496906280518,-6.5416978597641,-6.51758921146393,-6.49259090423584,-6.46663928031921,-6.43966269493103,-6.41158318519592,-6.38231205940247,-6.35175466537476,-6.3198082447052,-6.28637051582336,-6.25132775306702,-6.21457171440125,-6.17598581314087,-6.13545703887939,-6.0928750038147,-6.04812479019165,-6.00110292434692,-5.95170593261719,-5.89984130859375,-5.84541845321655,-5.78835964202881,-5.72859668731689,-5.66607046127319,-5.6007399559021,-5.5325665473938,-5.46153974533081,-5.38765382766724,-5.31091928482056,-5.23137235641479,-5.14905500411987,-5.06403493881226,-4.97639513015747,-4.88623189926147,-4.79366683959961,-4.69883871078491,-4.60189867019653,-4.5030198097229,-4.40239095687866,-4.30022001266479,-4.19672822952271,-4.09215402603149,-3.98674726486206,-3.88077449798584,-3.77451372146606,-3.66825008392334,-3.56228542327881,-3.45692300796509,-3.35248136520386,-3.24927711486816,-3.14763355255127,-3.04788112640381,-2.95034217834473,-2.85534763336182,-2.76321887969971,-2.67427921295166,-2.58884334564209,-2.50721740722656,-2.42970561981201,-2.35659408569336,-2.28816413879395,-2.22468090057373,-2.16639423370361,-2.11354160308838,-2.0663423538208,-2.02499675750732,-1.98968887329102,-1.9605827331543,-1.93782138824463,-1.92152404785156,-1.9117956161499,-1.90870952606201,-1.91232585906982,-1.92267513275146,-1.93976879119873,-1.96359539031982,-1.99411916732788,-2.03128337860107,-2.07500648498535,-2.12519025802612,-2.18170881271362,-2.24442386627197,-2.31316661834717,-2.38776159286499,-2.4680027961731,-2.55367708206177,-2.64454889297485,-2.74036693572998,-2.84087228775024,-2.94578313827515,-3.05481338500977,-3.16766023635864,-3.28401899337769,-3.40356588363647,-3.52598571777344,-3.65093517303467,-3.7780818939209,-3.90708827972412,-4.03760719299316,-4.16930198669434,-4.30181407928467,-4.43481206893921,-4.5679407119751,-4.70087099075317,-4.83326196670532,-4.96477675437927,-5.09508895874023,-5.22387862205505,-5.35082936286926,-5.47563743591309,-5.59799814224243,-5.71761870384216,-5.83422207832336,-5.94753193855286,-6.05729150772095,-6.16324138641357,-6.26514554023743,-6.36277198791504,-6.45590591430664,-6.5443389415741,-6.62787592411041,-6.70633852481842,-6.77955627441406,-6.84737598896027,-6.90965139865875,-6.96625554561615,-7.01707315444946,-7.06200206279755,-7.1009533405304,-7.13385188579559,-7.1606410741806,-7.18127381801605,-7.19571930170059,-7.20396274328232,-7.20600086450577,-7.2018483877182,-7.19153553247452,-7.17510610818863,-7.15261960029602,-7.12415319681168,-7.08979827165604,-7.04965877532959,-7.0038635134697,-6.95254570245743,-6.89586502313614,-6.83399266004562,-6.76711350679398,-6.69543051719666,-6.61916357278824,-6.53855162858963,-6.45383507013321,-6.36528754234314,-6.2731796503067,-6.17781317234039,-6.07949209213257,-5.97853672504425,-5.87528038024902,-5.77006351947784,-5.66325199604034,-5.55520236492157,-5.44629693031311,-5.33691215515137,-5.22744059562683,-5.11828207969666,-5.00983381271362,-4.90250158309937,-4.7966890335083,-4.6928026676178,-4.59124946594238,-4.49243402481079,-4.3967502117157,-4.30459570884705,-4.21634960174561,-4.13239312171936,-4.05309057235718,-3.97879719734192,-3.90984749794006,-3.8465690612793,-3.78926682472229,-3.73822808265686,-3.69372081756592,-3.65598893165588,-3.62525749206543,-3.60172438621521,-3.58556175231934,-3.57691597938538,-3.57590508460999,-3.58262157440186,-3.59712624549866,-3.61944985389709,-3.64959621429443,-3.68753528594971,-3.73320770263672,-3.78652215003967,-3.84736084938049,-3.91557264328003,-3.99097752571106,-4.07336354255676,-4.16249299049377,-4.25810289382935,-4.35989570617676,-4.46756148338318,-4.58075213432312,-4.69910430908203,-4.82222867012024,-4.94972705841064,-5.08117055892944,-5.2161180973053,-5.35412120819092,-5.49470829963684,-5.63741445541382,-5.78173875808716,-5.92719972133636,-6.07330679893494,-6.21956145763397,-6.36546993255615,-6.51053285598755,-6.65427219867706,-6.7962007522583,-6.93585097789764],[-11.7966406345367,-12.065345287323,-12.3239548206329,-12.5714418888092,-12.8068397045135,-13.0292520523071,-13.237845659256,-13.4318673610687,-13.610627412796,-13.77352643013,-13.9200327396393,-14.049703836441,-14.1621704101562,-14.2571470737457,-14.3344302177429,-14.3938949108124,-14.4354956150055,-14.4592604637146,-14.4652931690216,-14.453777551651,-14.4249529838562,-14.3791408538818,-14.3167157173157,-14.2381162643433,-14.1438369750977,-14.0344307422638,-13.9104895591736,-13.7726631164551,-13.6216342449188,-13.458128452301,-13.2829027175903,-13.0967512130737,-12.900486946106,-12.6949543952942,-12.4810152053833,-12.259548664093,-12.0314507484436,-11.7976264953613,-11.5589914321899,-11.3164639472961,-11.0709691047668,-10.8234314918518,-10.5747776031494,-10.3259167671204,-10.0777721405029,-9.83124017715454,-9.58721256256104,-9.34657144546509,-9.11017751693726,-8.87887144088745,-8.65347766876221,-8.43479490280151,-8.22359704971313,-8.02062511444092,-7.82659149169922,-7.64217567443848,-7.46801280975342,-7.30470561981201,-7.15281009674072,-7.01283645629883,-6.88524723052979,-6.7704496383667,-6.66880130767822,-6.58060264587402,-6.50609397888184,-6.44545364379883,-6.39879894256592,-6.36617946624756,-6.34758281707764,-6.34292984008789,-6.3520712852478,-6.37479496002197,-6.41081428527832,-6.45978450775146,-6.52129364013672,-6.59486198425293,-6.67995452880859,-6.77597379684448,-6.88227415084839,-6.9981484413147,-7.12284708023071,-7.25557804107666,-7.39551258087158,-7.54178476333618,-7.69350624084473,-7.84976530075073,-8.00963354110718,-8.17217493057251,-8.33645534515381,-8.50153589248657,-8.66649961471558,-8.83043432235718,-8.99246191978455,-9.15172743797302,-9.30741763114929,-9.45875382423401,-9.6050124168396,-9.7455153465271,-9.879643201828,-10.0068383216858,-10.1266100406647,-10.2385282516479,-10.3422380685806,-10.4374568462372,-10.5239716768265,-10.6016474962234,-10.6704227924347,-10.7303073406219,-10.7813822031021,-10.823804974556,-10.8577936887741,-10.8836346268654,-10.9016779065132,-10.9123283028603,-10.9160383939743,-10.9133207201958,-10.9047207832336,-10.8908216357231,-10.872242808342,-10.8496226072311,-10.8236214518547,-10.7949076890945,-10.7641600370407,-10.7320514917374,-10.6992484331131,-10.6664093732834,-10.6341638565063,-10.6031200885773,-10.5738561153412,-10.5469094514847,-10.5227785110474,-10.5019133090973,-10.4847149848938,-10.4715292453766,-10.4626452922821,-10.4582922458649,-10.4586389064789,-10.4637877941132,-10.4737799167633,-10.4885895252228,-10.5081243515015,-10.5322341918945,-10.5607018470764,-10.5932488441467,-10.6295404434204,-10.6691865921021,-10.711742401123,-10.7567143440247,-10.8035674095154,-10.8517236709595,-10.9005708694458,-10.9494686126709,-10.9977440834045,-11.0447177886963,-11.0896806716919,-11.131929397583,-11.1707549095154,-11.2054467201233,-11.2353119850159,-11.259669303894,-11.2778577804565,-11.2892484664917,-11.2932386398315,-11.2892694473267,-11.2768249511719,-11.255425453186,-11.2246570587158,-11.1841535568237,-11.1336069107056,-11.0727806091309,-11.0014934539795,-10.9196367263794,-10.8271656036377,-10.7241096496582,-10.6105661392212,-10.4867115020752,-10.3527822494507,-10.2090930938721,-10.0560216903687,-9.89401817321777,-9.72359657287598,-9.54533004760742,-9.3598575592041,-9.16786193847656,-8.97009754180908,-8.76733684539795,-8.5604248046875,-8.35022449493408,-8.13764190673828,-7.92360782623291,-7.70906448364258,-7.49499034881592,-7.28234767913818,-7.07213115692139,-6.86530685424805,-6.66285133361816,-6.46571826934814,-6.27484035491943,-6.09113597869873,-5.9154748916626,-5.74871063232422,-5.59164428710938,-5.44503211975098,-5.30958461761475,-5.18595504760742,-5.07474708557129,-4.97649192810059,-4.89167213439941,-4.82069301605225,-4.76390361785889,-4.72158145904541,-4.69392776489258,-4.68109035491943,-4.68313121795654,-4.70005893707275,-4.73180484771729,-4.77823829650879,-4.83916759490967,-4.91432952880859,-5.00341320037842,-5.10604095458984,-5.22179222106934,-5.35018444061279,-5.4907054901123,-5.64278221130371,-5.80581760406494,-5.97917556762695,-6.16218662261963,-6.35416603088379,-6.55439281463623,-6.76214027404785,-6.97666358947754,-7.1972188949585,-7.42303848266602,-7.65338182449341,-7.88747501373291,-8.12457990646362,-8.36395502090454,-8.6048731803894,-8.84663343429565,-9.08851766586304,-9.3298716545105,-9.57002973556519,-9.80837202072144,-10.0442891120911,-10.2771944999695,-10.5065379142761,-10.7317910194397,-10.952455997467,-11.1680636405945,-11.3781571388245,-11.5823159217834,-11.7801561355591,-11.9712936878204,-12.1553976535797,-12.3321325778961,-12.5012021064758,-12.6623225212097,-12.8152370452881,-12.95969414711,-13.0954689979553,-13.2223502397537,-13.3401355743408,-13.4486467838287,-13.5476967096329,-13.6371265649796,-13.7167823314667,-13.7865172028542,-13.8461918830872,-13.8956738114357,-13.9348413348198,-13.9635806679726,-13.9817807972431,-13.9893426299095,-13.9861758053303,-13.9721935689449,-13.947329595685,-13.9115200787783,-13.8647154718637,-13.806886151433,-13.738016307354,-13.6581046581268,-13.567175090313,-13.4652656912804,-13.3524518609047,-13.2288269400597,-13.0945158004761,-12.9496687650681,-12.7944797277451,-12.6291786432266,-12.4540178775787,-12.2693103551865,-12.0753835439682,-11.8726434707642,-11.6615107059479,-11.4424612522125,-11.2160174846649,-10.9827406406403,-10.7432589530945,-10.4982168674469,-10.2483313083649,-9.99433302879333,-9.73701953887939,-9.47722434997559,-9.21581172943115,-8.95368003845215,-8.69175863265991,-8.43100690841675,-8.17241477966309,-7.91698694229126,-7.66572713851929,-7.41967439651489,-7.17984437942505,-6.9472770690918,-6.7229905128479,-6.50799608230591,-6.30327367782593,-6.10979843139648,-5.92850112915039,-5.76027774810791,-5.60598182678223,-5.46641731262207,-5.34234237670898,-5.23444652557373,-5.14336204528809,-5.06964492797852,-5.01378154754639,-4.97618675231934,-4.95719146728516,-4.95703411102295,-4.97588348388672,-5.0138053894043,-5.07078266143799,-5.14670562744141,-5.24137544631958,-5.3545036315918,-5.48570966720581,-5.63451957702637,-5.8003716468811,-5.98263454437256,-6.1805739402771,-6.39339971542358,-6.62022733688354,-6.86010932922363,-7.11203145980835,-7.37493324279785,-7.64768171310425,-7.92909669876099,-8.21797609329224,-8.51305818557739,-8.81308317184448,-9.1167197227478,-9.42267179489136,-9.72961854934692,-10.0362331867218,-10.3412051200867,-10.6432192325592,-10.9410083293915,-11.2333114147186,-11.5189146995544],[-10.4897756576538,-10.9020898342133,-11.2937986850739,-11.6631373167038,-12.0084980726242,-12.3284304141998,-12.6216651201248,-12.8870989084244,-13.1238108873367,-13.3310652971268,-13.5083030462265,-13.6551452875137,-13.771391749382,-13.8570154905319,-13.9121540784836,-13.937104344368,-13.932315826416,-13.8983767032623,-13.8360049724579,-13.7460384368896,-13.6294238567352,-13.4872009754181,-13.32049036026,-13.1304862499237,-12.9184334278107,-12.6856300830841,-12.4334015846252,-12.1630997657776,-11.8760900497437,-11.5737404823303,-11.2574110031128,-10.9284615516663,-10.5882225036621,-10.2380151748657,-9.87912845611572,-9.51282930374146,-9.14035654067993,-8.76291847229004,-8.38170480728149,-7.99787664413452,-7.61257410049438,-7.22691917419434,-6.84202480316162,-6.45898723602295,-6.07889747619629,-5.70284938812256,-5.33193397521973,-4.96724605560303,-4.60988998413086,-4.26097583770752,-3.92162609100342,-3.59296989440918,-3.27614784240723,-2.97230052947998,-2.68257713317871,-2.40811920166016,-2.15006256103516,-1.90952205657959,-1.68759727478027,-1.48534679412842,-1.30379199981689,-1.14389610290527,-1.00656032562256,-0.892611503601074,-0.80278491973877,-0.737722396850586,-0.69794750213623,-0.683867454528809,-0.695759773254395,-0.733759880065918,-0.797849655151367,-0.887862205505371,-1.00346565246582,-1.14416313171387,-1.30929088592529,-1.49801540374756,-1.70933151245117,-1.94208145141602,-2.1949348449707,-2.46642017364502,-2.75490856170654,-3.05864715576172,-3.37575912475586,-3.70425987243652,-4.04206705093384,-4.38702535629272,-4.73691701889038,-5.08948135375977,-5.44244194030762,-5.79351186752319,-6.14042329788208,-6.48094463348389,-6.8128981590271,-7.13418102264404,-7.44278883934021,-7.73682379722595,-8.01451897621155,-8.27425026893616,-8.51455140113831,-8.73412823677063,-8.93187570571899,-9.10686898231506,-9.25839269161224,-9.38593256473541,-9.4891836643219,-9.5680570602417,-9.62267398834229,-9.65336263179779,-9.66065436601639,-9.64528733491898,-9.60818445682526,-9.5504497885704,-9.47336277365685,-9.37835896015167,-9.26701071858406,-9.14103004336357,-9.00223281979561,-8.85252478718758,-8.69390168786049,-8.52840405702591,-8.35811239480972,-8.18513214588165,-8.01156216859818,-7.83948504924774,-7.67094171047211,-7.50792753696442,-7.35235035419464,-7.20603406429291,-7.07070159912109,-6.94794845581055,-6.83923935890198,-6.74589514732361,-6.66907835006714,-6.6097891330719,-6.56885313987732,-6.54692220687866,-6.5444610118866,-6.56175184249878,-6.5988917350769,-6.65579080581665,-6.73217630386353,-6.82759523391724,-6.94142007827759,-7.07285404205322,-7.22094202041626,-7.3845682144165,-7.56248807907104,-7.75330877304077,-7.95552921295166,-8.16753816604614,-8.38762331008911,-8.61400413513184,-8.8448224067688,-9.07817125320435,-9.31210231781006,-9.54465579986572,-9.77385425567627,-9.99773120880127,-10.2143440246582,-10.4217824935913,-10.6181917190552,-10.8017816543579,-10.9708385467529,-11.1237373352051,-11.2589654922485,-11.3751077651978,-11.4708890914917,-11.5451631546021,-11.5969247817993,-11.6253252029419,-11.6296663284302,-11.6094169616699,-11.5642118453979,-11.493857383728,-11.3983297348022,-11.2777853012085,-11.1325435638428,-10.9631052017212,-10.7701272964478,-10.5544500350952,-10.3170480728149,-10.0590753555298,-9.78180885314941,-9.48667049407959,-9.17521572113037,-8.84909725189209,-8.51009654998779,-8.16005802154541,-7.80093669891357,-7.43473339080811,-7.06349754333496,-6.68933773040771,-6.31435585021973,-5.94069004058838,-5.57043743133545,-5.20571041107178,-4.84855556488037,-4.5009765625,-4.16492557525635,-3.84224891662598,-3.53473663330078,-3.24404716491699,-2.97173500061035,-2.71923923492432,-2.48785305023193,-2.27874279022217,-2.0929126739502,-1.93123149871826,-1.79439830780029,-1.68295764923096,-1.59729385375977,-1.53762912750244,-1.5040283203125,-1.4963903427124,-1.5144739151001,-1.55787372589111,-1.62605381011963,-1.71833419799805,-1.83391189575195,-1.9718599319458,-2.13113975524902,-2.31062984466553,-2.50909805297852,-2.72526264190674,-2.95775032043457,-3.20515727996826,-3.46603393554688,-3.73889255523682,-4.02225208282471,-4.31460380554199,-4.61446714401245,-4.92036247253418,-5.23086452484131,-5.54455709457397,-5.86011075973511,-6.17620754241943,-6.491623878479,-6.80519866943359,-7.11584663391113,-7.42257642745972,-7.7244348526001,-8.02060985565186,-8.31033945083618,-8.59297513961792,-8.86793565750122,-9.13472843170166,-9.39294958114624,-9.64227628707886,-9.88246631622314,-10.1133415699005,-10.3347904682159,-10.5467617511749,-10.7492792606354,-10.9423894882202,-11.1262075901031,-11.3008604049683,-11.4665175676346,-11.623363494873,-11.7716112136841,-11.9114620685577,-12.0431237816811,-12.1668093800545,-12.2826999723911,-12.3909788131714,-12.4917747825384,-12.5852120965719,-12.6713699996471,-12.7502844929695,-12.8219486474991,-12.8863075375557,-12.9432611465454,-12.992649435997,-13.0342665910721,-13.0678499937057,-13.0930866003036,-13.1096086502075,-13.1170072555542,-13.1148198843002,-13.1025508642197,-13.0796629190445,-13.0455964803696,-12.9997587203979,-12.9415553808212,-12.8703700304031,-12.7856016159058,-12.6866550445557,-12.5729584693909,-12.4439688920975,-12.2991883158684,-12.1381828784943,-11.9605538360775,-11.7660160809755,-11.5543234348297,-11.3253749608994,-11.0791329145432,-10.8156863451004,-10.5352418422699,-10.2381248474121,-9.92481851577759,-9.5958948135376,-9.25210857391357,-8.89430952072144,-8.52351999282837,-8.14089345932007,-7.74770402908325,-7.3453631401062,-6.93540048599243,-6.51945686340332,-6.09929609298706,-5.67677974700928,-5.25382137298584,-4.83244609832764,-4.41469860076904,-4.00271511077881,-3.59862518310547,-3.2046012878418,-2.82277488708496,-2.45530223846436,-2.10429000854492,-1.77178573608398,-1.45978355407715,-1.17018127441406,-0.904813766479492,-0.665372848510742,-0.453441619873047,-0.270462036132812,-0.11772346496582,0.003631591796875,0.0926313400268555,0.148495674133301,0.170611381530762,0.158567428588867,0.112136840820312,0.0313081741333008,-0.0837497711181641,-0.232668876647949,-0.414864540100098,-0.629570007324219,-0.87580680847168,-1.15244388580322,-1.45812606811523,-1.79137325286865,-2.15049839019775,-2.5336799621582,-2.93893909454346,-3.36420202255249,-3.80723714828491,-4.26571989059448,-4.73726415634155,-5.21937227249146,-5.70954465866089,-6.20515871047974,-6.70364475250244,-7.20241117477417,-7.69885897636414,-8.1904399394989,-8.6746187210083,-9.14896678924561,-9.61110281944275,-10.0587615966797],[-5.15035337209702,-5.65860211849213,-6.13178777694702,-6.56747198104858,-6.96353983879089,-7.31821620464325,-7.630087018013,-7.89809787273407,-8.12156760692596,-8.30018508434296,-8.43400537967682,-8.52344161272049,-8.56925147771835,-8.57252198457718,-8.5346445851028,-8.45729388296604,-8.34239250421524,-8.19208788871765,-8.00870823860168,-7.79473185539246,-7.55274963378906,-7.28542423248291,-6.99544787406921,-6.68551468849182,-6.3582718372345,-6.01629281044006,-5.66204333305359,-5.29785013198853,-4.92587518692017,-4.54809951782227,-4.16630077362061,-3.78204774856567,-3.39668035507202,-3.0113263130188,-2.6268892288208,-2.244065284729,-1.86335420608521,-1.48507118225098,-1.10938119888306,-0.736312866210938,-0.365788459777832,0.00233983993530273,0.368265628814697,0.732186794281006,1.09428024291992,1.45466709136963,1.81337738037109,2.170325756073,2.5252833366394,2.87785863876343,3.22747182846069,3.57333993911743,3.91448259353638,4.24969911575317,4.57757806777954,4.89650440216064,5.20466899871826,5.50008821487427,5.78061676025391,6.04399442672729,6.28785109519958,6.50976157188416,6.70727491378784,6.87794947624207,7.01939988136292,7.12934231758118,7.20562481880188,7.2462842464447,7.24956846237183,7.2139847278595,7.13833618164062,7.02174353599548,6.86368012428284,6.66399097442627,6.4229052066803,6.14105844497681,5.81949687004089,5.45966649055481,5.0634241104126,4.63300848007202,4.17105555534363,3.68054127693176,3.16477131843567,2.62735772132874,2.07217311859131,1.50331544876099,0.925073623657227,0.341872692108154,-0.241773128509521,-0.821292400360107,-1.39211678504944,-1.94972610473633,-2.48969340324402,-3.00773072242737,-3.49974608421326,-3.96186256408691,-4.39048218727112,-4.78230309486389,-5.13436317443848,-5.44407290220261,-5.70923751592636,-5.92806711792946,-6.09921248629689,-6.22176419198513,-6.2952615916729,-6.31970852613449,-6.29555410146713,-6.22369718551636,-6.10546368360519,-5.94261586666107,-5.73730158805847,-5.49205672740936,-5.20975971221924,-4.89362132549286,-4.54712402820587,-4.17402017116547,-3.77826988697052,-3.36399102210999,-2.9354687333107,-2.49705296754837,-2.05314683914185,-1.60817724466324,-1.16651457548141,-0.732476469129324,-0.310243621468544,0.0961276888847351,0.482796117663383,0.846128456294537,1.18273550271988,1.48952221125364,1.7636791691184,2.00273134000599,2.20454216003418,2.36732132732868,2.48965004086494,2.57047271728516,2.60910993814468,2.60525238513947,2.55895745754242,2.47064113616943,2.34107184410095,2.17135214805603,1.96291089057922,1.71747326850891,1.43705129623413,1.12393426895142,0.780625343322754,0.409878253936768,0.0146183967590332,-0.402060508728027,-0.836904525756836,-1.28656244277954,-1.74757051467896,-2.21641731262207,-2.68952465057373,-3.16332578659058,-3.63424825668335,-4.09873962402344,-4.55332469940186,-4.99458122253418,-5.41920471191406,-5.82400703430176,-6.20592784881592,-6.5620813369751,-6.88974666595459,-7.18641185760498,-7.44976329803467,-7.67772006988525,-7.86845111846924,-8.02036476135254,-8.13214206695557,-8.20273780822754,-8.23138904571533,-8.21762371063232,-8.16125965118408,-8.06241989135742,-7.92151737213135,-7.73926448822021,-7.51665782928467,-7.25499534606934,-6.95584011077881,-6.62103939056396,-6.25267696380615,-5.8530912399292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.22549033164978,5.31912422180176,5.37341618537903,5.3887255191803,5.365718126297,5.3053343296051,5.2087938785553,5.07756233215332,4.9133563041687,4.71810781955719,4.49394965171814,4.24319791793823,3.96829426288605,3.67183887958527,3.35649418830872,3.02503049373627,2.68022489547729,2.32488262653351,1.96180582046509,1.59372282028198,1.22333693504333,0.853222370147705,0.485856533050537,0.12356424331665,-0.231468200683594,-0.577255249023438,-0.911962985992432,-1.23398447036743,-1.54191410541534,-1.83456563949585,-2.11097729206085,-2.37037944793701,-2.61226046085358,-2.83629620075226,-3.04239046573639,-3.23063659667969,-3.40131723880768,-3.55489355325699,-3.69200152158737,-3.81342780590057,-3.92008328437805,-4.01300364732742,-4.09332358837128,-4.16227501630783,-4.22113969922066,-4.27126626670361,-4.31402835994959,-4.35081746894866,-4.38301791250706,-4.41201171278954,-4.43914094567299,-4.46569436788559,-4.49291175603867,-4.52193838357925,-4.55385375022888,-4.58960330486298,-4.63004148006439,-4.67588973045349,-4.72772228717804,-4.78597342967987,-4.8509087562561,-4.92264652252197,-5.00111103057861,-5.08607029914856,-5.17709040641785,-5.27355980873108,-5.37468338012695,-5.47948622703552,-5.58680367469788,-5.69530725479126,-5.80349588394165,-5.90971684455872,-6.01217794418335,-6.10896396636963,-6.19805455207825,-6.27733159065247,-6.34463596343994,-6.39776372909546,-6.43450045585632,-6.45264768600464,-6.45007252693176,-6.42469894886017,-6.37459075450897,-6.29791808128357,-6.19305884838104,-6.05856800079346,-5.89322601258755,-5.69607663154602,-5.46642482280731,-5.20389866828918,-4.90838348865509,-4.58014488220215,-4.21971893310547,-3.82802367210388,-3.40629649162292,-2.95610380172729,-2.47932815551758,-1.9781665802002,-1.45510149002075,-0.912911891937256,-0.354625225067139,0.216550350189209,0.797152519226074,1.38361406326294,1.97217988967896,2.55903148651123,3.14027070999146,3.71201610565186,4.27032804489136,4.81135416030884,5.3313159942627,5.82654094696045,6.29351139068604,6.72883653640747,7.12937021255493,7.49216938018799,7.8145432472229,8.09407043457031,8.32859468460083,8.51626873016357,8.65556669235229,8.74526214599609,8.78448820114136,8.77267694473267,8.70963668823242,8.59548306465149,8.43066835403442,8.21600389480591,7.95261311531067,7.64196300506592,7.2857871055603,6.88618206977844,6.44547128677368,5.96630120277405,5.45156073570251,4.90439343452454,4.32811737060547,3.72630286216736,3.10268354415894,2.46111083030701,1.80560040473938,1.14020490646362,0.469142198562622,-0.203431606292725,-0.873330354690552,-1.53638386726379,-2.18851047754288,-2.8256843984127,-3.44405767321587,-4.03992381691933,-4.60977900028229],[-0.642516851425171,-1.1776008605957,-1.65989089012146,-2.08615219593048,-2.45371723175049,-2.7605317234993,-3.00518569350243,-3.18694768100977,-3.30577251315117,-3.36231917142868,-3.3579421043396,-3.29467535018921,-3.17521297931671,-3.00286829471588,-2.78152573108673,-2.51558455824852,-2.20988824218512,-1.86965024471283,-1.50037157535553,-1.10774397850037,-0.697564959526062,-0.275634765625,0.152343511581421,0.580850124359131,1.00465571880341,1.41889929771423,1.81917798519135,2.20161402225494,2.56292283535004,2.90046298503876,3.21227675676346,3.49711138010025,3.7544387280941,3.98444195836782,4.18800254911184,4.36667017638683,4.52260541915894,4.6585328578949,4.77765494585037,4.88358038663864,4.98022949695587,5.07172709703445,5.16231215000153,5.25621688365936,5.35757112503052,5.47029149532318,5.5979745388031,5.74381101131439,5.91048991680145,6.10012745857239,6.3141964673996,6.55347335338593,6.81801068782806,7.10710310935974,7.41928100585938,7.75233340263367,8.10331511497498,8.46860408782959,8.84393715858459,9.22451043128967,9.60501885414124,9.97978639602661,10.3428399562836,10.6880300045013,11.0091264247894,11.2999560832977,11.554491519928,11.7669773101807,11.9320259094238,12.044723033905,12.1007256507874,12.0963358879089,12.0285754203796,11.89524269104,11.6949586868286,11.4272060394287,11.0923457145691,10.6916084289551,10.2270979881287,9.70176029205322,9.11936569213867,8.48443579673767,7.8021924495697,7.07850360870361,6.31979322433472,5.53296613693237,4.72531819343567,3.90444397926331,3.07812982797623,2.2542836368084,1.44082279503345,0.645584136247635,-0.123767137527466,-0.859817385673523,-1.55551145225763,-2.20419155061245,-2.79970329999924,-3.33643478155136,-3.80938446521759,-4.21421444416046,-4.54728889465332,-4.80569088459015,-4.98727023601532,-5.09065115451813,-5.11522936820984,-5.06120085716248,-4.92952299118042,-4.72191762924194,-4.44083070755005,-4.08943319320679,-3.67154347896576,-3.19161814451218,-2.6546713411808,-2.06625062227249,-1.43234145641327,-0.759337782859802,-0.0539500713348389,0.676885366439819,1.42601239681244,2.18621098995209,2.95023798942566,3.71086835861206,4.4610458612442,5.19387006759644,5.90274626016617,6.58136823773384,7.22385577112436,7.82475765049458,8.37909984588623,8.88246458768845,9.33097159862518,9.72134804725647,10.0509270429611,10.3176465034485,10.5200769901276,10.6573956012726,10.7293858528137,10.7364132404327,10.6794002056122,10.5598030090332,10.3795652389526,10.1410918235779,9.84720754623413,9.50109815597534,9.10628437995911,8.66659092903137,8.18604683876038,7.66891896724701,7.11961245536804,6.5426432788372,5.94263735413551,5.32424318790436,4.69215285778046,4.05102205276489,3.40550255775452,2.76016449928284,2.11949729919434,1.48791980743408,0.869703769683838,0.269026279449463,-0.310110569000244,-0.863856792449951,-1.38851690292358,-1.88061189651489,-2.33683300018311,-2.75412178039551,-3.12962770462036,-3.4607572555542,-3.74519014358521,-3.98086738586426,0,-4.2992992401123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10.6532304286957,10.8485367298126,10.9913971424103,11.0813913345337,11.1185927391052,11.1035461425781,11.0372619628906,10.9212236404419,10.7573609352112,10.5480511188507,10.2960648536682,10.0045607089996,9.67705869674683,9.31738781929016,8.9296452999115,8.51814430952072,8.087397467345,7.6420202255249,7.18671548366547,6.72618961334229,6.26510977745056,5.80807256698608,5.35947561264038,4.92357754707336,4.5043420791626,4.10545086860657,3.73024940490723,3.38172006607056,3.06241416931152,2.77451467514038,2.51971006393433,2.29927062988281,2.11399841308594,1.96424722671509,1.84994316101074,1.77057504653931,1.7252368927002,1.71264362335205,1.73116636276245,1.77886486053467,1.85352611541748,1.9526994228363,2.07371830940247,2.21378803253174,2.36996006965637,2.53921675682068,2.71848130226135,2.90466451644897,3.09469032287598,3.28548693656921,3.47408485412598,3.65758204460144,3.83316802978516,3.99815249443054,4.14998495578766,4.28624880313873,4.40470254421234,4.50325787067413,4.58002328872681,4.6332870721817,4.66155278682709,4.66355299949646,4.63825106620789,4.58487558364868,4.50290107727051,4.3921229839325,4.25261068344116,4.08478856086731,3.88940453529358,3.66756153106689,3.42072606086731,3.15075039863586,2.85984826087952,2.55062556266785,2.22606492042542,1.88947939872742,1.54454517364502,1.1952223777771,0.84579610824585,0.500741481781006,0.164735317230225,-0.157411098480225,-0.460795402526855,-0.740536451339722,-0.991786122322083,-1.20985722541809,-1.39023286104202,-1.52869117259979,-1.62135316431522,-1.66473692655563,-1.6558578312397,-1.59224700927734,-1.47203832864761,-1.29393774084747,-1.0573715865612,-0.762362718582153,-0.409689426422119,-0.000779628753662109,0.462261915206909,0.976680040359497,1.53909873962402,2.14557552337646,2.7916145324707,3.47224068641663,4.18213105201721,4.91555571556091,5.66658842563629,6.42903769016266,7.19663774967194,7.96305584907532,8.72205030918121,9.46738290786743,10.1930383443832,10.8932129740715,11.56237834692,12.1953413933516,12.7872155606747,13.3335641622543,13.8303601145744,14.274010181427,14.661393404007,14.9898245334625,15.2570924758911,15.4614826440811,15.6016933917999,15.6769292354584,15.6867802143097,15.631334066391,15.5110483169556,15.3267877101898,15.0798554420471,14.7719035148621,14.404993057251,13.9814858436584,13.5041728019714,12.9761085510254,12.400731086731,11.7817850112915,11.1233358383179,10.4296865463257,9.7054750919342,8.95558571815491,8.18509864807129,7.39933860301971,6.60375010967255,5.8040322214365,5.00586241483688,4.21502315998077,3.43730890750885,2.67844009399414,1.94408750534058,1.23971247673035,0.570563554763794,-0.058380126953125],[-0.9391770362854,-1.47650480270386,-1.942626953125,-2.33254909515381,-2.64210796356201,-2.86807799339294,-3.00827324390411,-3.06162744760513,-3.02825775742531,-2.90951399132609,-2.70799371600151,-2.4275444149971,-2.07323771715164,-1.65131461620331,-1.16911135613918,-0.634956777095795,-0.0580463409423828,0.551698923110962,1.1838002204895,1.82740372419357,2.47146564722061,3.10496070981026,3.71708815544844,4.297473102808,4.83637374639511,5.32487452030182,5.75506985187531,6.12022566795349,6.41492342948914,6.63518214225769,6.77855205535889,6.84417104721069,6.83280181884766,6.74682402610779,6.59019827842712,6.36840462684631,6.08832681179047,5.75812792778015,5.3870837688446,4.98540323972702,4.56400942802429,4.13431885838509,3.70800720900297,3.29674260318279,2.91196492314339,2.56462413072586,2.26493263244629,2.02216380834579,1.84442949295044,1.73850440979004,1.70967330038548,1.76159901916981,1.89624257385731,2.11380288004875,2.41269493103027,2.78958296775818,3.2394232749939,3.75556349754333,4.32986092567444,4.9528591632843,5.61393690109253,6.30154418945312,7.00341057777405,7.70678496360779,8.39867401123047,9.06611156463623,9.69637393951416,10.2772388458252,10.7971897125244,11.2456383705139,11.6131076812744,11.8913912773132,12.0736861228943,12.1546945571899,12.1307048797607,11.9996380805969,11.7610626220703,11.4161672592163,10.9677271842957,10.4200236797333,9.77877640724182,9.05100178718567,8.24487924575806,7.36963033676147,6.43535006046295,5.45283484458923,4.43343263864517,3.38886246085167,2.33104138448834,1.27194717526436,0.223445892333984,-0.802846536040306,-1.79569929838181,-2.74438500404358,-3.63882076740265,-4.46961331367493,-5.22819995880127,-5.90687870979309,-6.4988956451416,-6.99849343299866,-7.40094590187073,-7.7025682926178,-7.90076494216919,-7.99402356147766,-7.98190236091614,-7.86505722999573,-7.64518332481384,-7.32501101493835,-6.90825533866882,-6.39960694313049,-5.80463361740112,-5.12976384162903,-4.38217830657959,-3.56977558135986,-2.70104932785034,-1.78502935171127,-0.831161141395569,0.150818347930908,1.15091741085052,2.15909957885742,3.16535484790802,4.15978157520294,5.13279402256012,6.07513630390167,6.97809278964996,7.83349311351776,8.63389712572098,9.37262606620789,10.0438215099275,10.6425725221634,11.1648632884026,11.6076888442039,11.9690135717392,12.2477661371231,12.4438437223434,12.5580546855927,12.59206366539,12.5483446121216,12.4300792217255,12.2410922050476,11.9857466220856,11.6688570976257,11.2955894470215,10.8713459968567,10.401698589325,9.89230155944824,9.34876203536987,8.77664113044739,8.18132996559143,7.56801557540894,6.94167506694794,6.30699443817139,5.66840804368258,5.03004062175751,4.39575970172882,3.76916337013245,3.15358400344849,2.55217385292053,1.96786499023438,1.40345525741577,0.861597061157227,0.344842433929443,-0.144317150115967,-0.603466510772705,0,-1.42225027084351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.7075161933899,11.8447179794312,11.9203610420227,11.9337892532349,11.8849320411682,11.7743606567383,11.60325050354,11.3734397888184,11.0873994827271,10.7482488155365,10.3597108125687,9.92612883448601,9.45241120457649,8.94397568702698,8.4067325592041,7.84695172309875,7.27127408981323,6.68654823303223,6.09980487823486,5.51810646057129,4.94847440719604,4.39779758453369,3.87265968322754,3.37934684753418,2.92363834381104,2.51079082489014,2.14540386199951,1.83139610290527,1.57191181182861,1.369309425354,1.22508907318115,1.13992023468018,1.11363124847412,1.14524269104004,1.2329797744751,1.37434864044189,1.56618022918701,1.80473709106445,2.08576011657715,2.40457439422607,2.75620460510254,3.1354341506958,3.53690814971924,3.95525932312012,4.38511228561401,4.82122611999512,5.25854969024658,5.69222497940063,6.11770486831665,6.53066110610962,6.9271445274353,7.30349445343018,7.65635800361633,7.98265933990479,8.27962183952332,8.54471039772034,8.77561020851135,8.97022032737732,9.12659764289856,9.24296689033508,9.31770837306976,9.34934425354004,9.33654081821442,9.27816331386566,9.1732292175293,9.02103424072266,8.82109653949738,8.57332897186279,8.27798342704773,7.93577015399933,7.5478903055191,7.11613190174103,6.64286577701569,6.13113272190094,5.58468544483185,5.00791370868683,4.40598499774933,3.78467404842377,3.15051865577698,2.51056396961212,1.87240588665009,1.24407494068146,0.63395082950592,0.0505752563476562,-0.497437953948975,-1.0015777349472,-1.45356914401054,-1.84551546722651,-2.1701203584671,-2.42075043916702,-2.59165191650391,-2.67802882194519,-2.67618107795715,-2.58354192972183,0,0,0,-1.29848937690258,-0.75813764333725,-0.138334631919861,0.554830849170685,1.31427925825119,2.13203439116478,2.99939279258251,3.90713986754417,4.8455638885498,5.80479800701141,6.77479732036591,7.74564599990845,8.70762419700623,9.6514527797699,10.5682346820831,11.4497315883636,12.2883930206299,13.0774228572845,13.8108460903168,14.4834516048431,15.0909352302551,15.629819393158,16.0974125862122,16.4918069839478,16.8117799758911,17.0567669868469,17.2268099784851,17.3224158287048,17.344596862793,17.294668674469,17.1743307113647,16.9854860305786,16.7302398681641,16.4109292030334,16.0300030708313,15.5900850296021,15.0938668251038,14.5442824363708,13.9443402290344,13.2972841262817,12.6065793037415,11.8759636878967,11.1093909740448,10.3112028837204,9.48608422279358,8.63905310630798,7.77554005384445,6.90131378173828,6.02263760566711,5.14598536491394,4.27821016311646,3.42641544342041,2.59786081314087,1.79997825622559,1.04015398025513,0.325679302215576,-0.336339473724365],[-6.08190381526947,-6.68398189544678,-7.20090281963348,-7.62377619743347,-7.94473814964294,-8.15719723701477,-8.25605177879333,-8.23788499832153,-8.10113549232483,-7.84622263908386,-7.47564196586609,-6.99400758743286,-6.40805588662624,-5.72659856081009,-4.96042597293854,-4.12216448783875,-3.22608828544617,-2.28789091110229,-1.3244104385376,-0.353328227996826,0.607158660888672,1.53869867324829,2.4231481552124,3.24294137954712,3.98147022724152,4.62343841791153,5.15521129965782,5.56512242555618,5.84376513957977,5.98422849178314,5.98229479789734,5.83657097816467,5.54857850074768,5.12277340888977,4.56649684906006,3.88988727331161,3.10569459199905,2.22906309366226,1.27724534273148,0.269276857376099,-0.774417519569397,-1.83242398500443,-2.88277758657932,-3.90345093607903,-4.87277972698212,-5.76994585990906,-6.57544684410095,-7.27148389816284,-7.84238052368164,-8.2749228477478,-8.55864763259888,-8.68609166145325,-8.65294909477234,-8.45817971229553,-8.10403752326965,-7.59602200984955,-6.94276535511017,-6.15584644675255,-5.2495513856411,-4.24052953720093,-3.14749097824097,-1.99075984954834,-0.791862726211548,0.426923274993896,1.64302778244019,2.83408665657043,3.97833496332169,5.05507749319077,6.04505431652069,6.93081164360046,7.6970055103302,8.33065819740295,8.82133674621582,9.16128635406494,9.34551572799683,9.37179327011108,9.24061584472656,8.95507955551147,8.52074551582336,7.9454288482666,7.23899626731873,6.41307532787323,5.48077237606049,4.45640754699707,3.35520057380199,2.1929774582386,0.985895991325378,-0.249827563762665,-1.49817501008511,-2.7435188293457,-3.97084081172943,-5.16588091850281,-6.31527829170227,-7.40667486190796,-8.42882108688354,-9.37157297134399,-10.2259919643402,-10.984304189682,-11.6399395465851,-12.1875114440918,-12.6228034496307,-12.9427244663239,-13.1453195810318,-13.2297347784042,-13.1961799860001,-13.0459550619125,-12.7813900709152,-12.4058507680893,-11.9237138032913,-11.3403774499893,-10.6622055768967,-9.89652574062347,-9.05156195163727,-8.13642060756683,-7.16099846363068,-6.13591694831848,-5.0724071264267,-3.98218965530396,-2.87738752365112,-1.77029806375504,-0.673264682292938,0.401453375816345,1.44197487831116,2.43686521053314,3.37543785572052,4.24783790111542,5.04529297351837,5.76022499799728,6.38636869192123,6.91893911361694,7.35462290048599,7.69170665787533,7.93003571033478,8.07099169492722,8.11744153499603,8.0736483335495,7.945103764534,7.73843169212341,7.46113562583923,7.12145829200745,6.72812914848328,6.29017353057861,5.81667637825012,5.31655955314636,4.79841363430023,4.27030852437019,3.7396012544632,3.21286821365356,2.6957643032074,2.19295763969421,1.70814990997314,1.24402403831482,0.80233097076416,0.38392448425293,-0.0111274719238281,-0.383405685424805,-0.734061717987061,-1.06459760665894,-1.37676954269409,-1.67240571975708,-1.95327997207642,-2.22096467018127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.24870920181274,7.42172527313232,7.53675103187561,7.59127926826477,7.58323645591736,7.5110958814621,7.37392687797546,7.17145228013396,6.90416884422302,6.57335817813873,6.18118453025818,5.73072218894958,5.22599029541016,4.67196987569332,4.07458806037903,3.44068026542664,2.77791452407837,2.09474802017212,1.40024709701538,0.704028129577637,0.016021728515625,-0.653668403625488,-1.29493427276611,-1.89794921875,-2.45326614379883,-2.95212650299072,-3.38657760620117,-3.74971866607666,-4.03579711914062,-4.24041748046875,-4.36054420471191,-4.39469051361084,-4.34286499023438,-4.20660209655762,-3.98887348175049,-3.69409847259521,-3.32791805267334,-2.89711284637451,-2.40939331054688,-1.87321472167969,-1.29758930206299,-0.691803932189941,-0.0652523040771484,0.572780609130859,1.21337604522705,1.84805679321289,2.46903514862061,3.0693187713623,3.64274120330811,4.18411111831665,4.68909883499146,5.15435934066772,5.57739448547363,5.95649480819702,6.29061985015869,6.5792829990387,6.82244801521301,7.02029919624329,7.17319822311401,7.28147268295288,7.34533524513245,7.36479377746582,7.33955216407776,7.26898264884949,7.15215659141541,6.98778057098389,6.77437889575958,6.51024782657623,6.1937438249588,5.82328486442566,5.39759254455566,4.91583216190338,4.37784600257874,3.78425276279449,3.13668990135193,2.43793773651123,1.69194793701172,0.904083251953125,0.0809799432754518,-0.769238293170929,-1.63722687959671,-2.51240235567093,-3.38310235738754,-4.23673623800278,-5.06010085344315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10.6973299980164,11.5073919296265,12.2213940620422,12.836377620697,13.3511443138123,13.7660870552063,14.0829772949219,14.3048214912415,14.4356446266174,14.4802279472351,14.4439425468445,14.3324270248413,14.1514947414398,13.9068019390106,13.6037962436676,13.2474563121796,12.8422367572784,12.3920440673828,11.9001185894012,11.3690936565399,10.8009490966797,10.1972365379333,9.55900430679321,8.88704776763916,8.18203091621399,7.44464802742004,6.67570829391479,5.87641370296478,5.04849258065224,4.19426333904266,3.31684637069702,2.42017364501953,1.50925230979919,0.589885711669922,-0.331079959869385,-1.24587869644165,-2.14593744277954,-3.02189254760742,-3.86384105682373,-4.66149687767029,-5.40433096885681],[-12.2316269874573,-13.0200672149658,-13.7188563346863,-14.3126339912415,-14.7871851921082,-15.1298627853394,-15.3299837112427,-15.3791937828064,-15.2717750072479,-15.0049002170563,-14.5788311958313,-13.9970442056656,-13.2662789225578,-12.3965258598328,-11.4009214639664,-10.2955758571625,-9.09932684898376,-7.83343768119812,-6.52120113372803,-5.18751859664917,-3.8584189414978,-2.56052875518799,-1.32052564620972,-0.164587020874023,0.882202625274658,1.79639911651611,2.55675578117371,3.14471411705017,3.54488909244537,3.74546653032303,3.73855447769165,3.52043570950627,3.09175759553909,2.45761439204216,1.62753027677536,0.615370392799377,-0.560888327658176,-1.87946158647537,-3.315150141716,-4.8398255109787,-6.42301511764526,-8.03250575065613,-9.63503503799438,-11.1970367431641,-12.6853399276733,-14.0679306983948,-15.314709186554,-16.3981289863586,-17.2938842773438,-17.9814696311951,-18.4446716308594,-18.6719574928284,-18.6567735671997,-18.3977048397064,-17.8985192775726,-17.1680915355682,-16.2202033996582,-15.0732204914093,-13.7496710419655,-12.2756786346436,-10.6804015636444,-8.9953088760376,-7.25345253944397,-5.48871088027954,-3.73502206802368,-2.02555751800537,-0.392075538635254,1.13582277297974,2.53128051757812,3.77072429656982,4.83430862426758,5.70624697208405,6.37500837445259,6.83342909812927,7.07870948314667,7.11228966712952,6.93963575363159,6.56990718841553,6.01557493209839,5.29196214675903,4.41676449775696,3.40949082374573,2.29091507196426,1.08257476985455,-0.193769812583923,-1.51660921238363,-2.8651151061058,-4.2195051908493,-5.56137251853943,-6.87387681007385,-8.14194011688232,-9.35231757164001,-10.493622303009,-11.5562875270844,-12.5325047969818,-13.4160170555115,-14.2020485401154,-14.8870396614075,-15.4685153961182,-15.9448865652084,-16.3152732849121,-16.5793536305428,-16.7372739315033,-16.789568156004,-16.737098544836,-16.581099241972,-16.3231817483902,-15.9654181003571,-15.5104352831841,-14.9615609049797,-14.3229234814644,-13.599584877491,-12.797647356987,-11.9243779182434,-10.9882500171661,-9.99897391349077,-8.96746228635311,-7.90577775239944,-6.82702320814133,-5.74511742591858,-4.6745947599411,-3.63038218021393,-2.62738889455795,-1.68028530478477,-0.80303943157196,-0.00864911079406738,0.691274642944336,1.28680658340454,1.76998543739319,2.13512134552002,2.37890911102295,2.50063025951385,2.50215661525726,2.38795161247253,2.16494759917259,1.84242048114538,1.43165266513824,0.945733480155468,0.399077415466309,-0.192905187606812,-0.814285516738892,-1.44906091690063,-2.08160591125488,-2.69714760780334,-3.28212022781372,-3.82455205917358,-4.31440210342407,-4.74375629425049,-5.1070122718811,-5.40099334716797,-5.6248984336853,-5.78027391433716,-5.87083864212036,-5.90226745605469,-5.88192272186279,-5.81848049163818,-5.72162103652954,-5.60159397125244,-5.46881628036499,-5.3335223197937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.25734233856201,1.04554843902588,0.761059761047363,0.403191089630127,-0.027318000793457,-0.528106689453125,-1.09510779380798,-1.72248858213425,-2.40263223648071,-3.12617498636246,-3.88216724991798,-4.65819084644318,-5.44066953659058,-6.21511220932007,-6.96645951271057,-7.67952346801758,-8.33929491043091,-8.93145704269409,-9.44271326065063,-9.86126327514648,-10.177089214325,-10.3823442459106,-10.4715065956116,-10.4417147636414,-10.2927732467651,-10.0272002220154,-9.65016412734985,-9.16943264007568,-8.59504365921021,-7.93907737731934,-7.21527910232544,-6.43865013122559,-5.62509059906006,-4.79077959060669,-3.95183563232422,-3.12384366989136,-2.32135820388794,-1.55763530731201,-0.84422492980957,-0.190696716308594,0.395427227020264,0.908909559249878,1.34666180610657,1.70777916908264,1.99333655834198,2.20617997646332,2.3506156206131,2.43206870555878,2.45676493644714,2.43124759197235,2.36208641529083,2.25542938709259,2.11669397354126,1.95028471946716,1.7593355178833,1.54555201530457,1.30919671058655,1.04897141456604,0.76223611831665,0.445051670074463,0.0925765037536621,-0.30076003074646,-0.740820169448853,-1.23338031768799,-1.78367590904236,-2.39601922035217,-3.07333400845528,-3.8167769908905,-4.62550961971283,-5.49626326560974,-6.42335367202759,-7.3983428478241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7.7561616897583,-6.10118722915649,-4.40088373422623,-2.68235778808594,-0.972760081291199,0.701568603515625,2.31549382209778,3.84591245651245,5.27210718393326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.39386458741501,8.83565187454224,8.25569713115692,7.6634202003479,7.06622135639191,6.46943497657776,5.87625122070312,5.28777623176575,4.7031432390213,4.11985504627228,3.53389108181,2.94013774394989,2.33277207612991,1.70563372969627,1.05255132913589,0.367837518453598,-0.353298187255859,-1.11453700065613,-1.91801905632019,-2.76419776678085,-3.65140634775162,-4.57611155509949,-5.53256374597549,-6.51291038095951,-7.50733652710915,-8.50411683320999,-9.48997807502747,-10.4503343105316,-11.3695940971375],[-14.7766132354736,-15.838002204895,-16.8141713142395,-17.6821460723877,-18.420259475708,-19.0087637901306,-19.4303770065308,-19.6707978248596,-19.7191224098206,-19.5682191848755,-19.2149767875671,-18.6605145931244,-17.9102432727814,-16.9738774299622,-15.86532445997,-14.6024956703186,-13.2070127725601,-11.7038564682007,-10.1208999156952,-8.48840379714966,-6.8384370803833,-5.20423698425293,-3.6195387840271,-2.11788606643677,-0.731898784637451,0.507440090179443,1.5714955329895,2.43464636802673,3.07493591308594,3.47464561462402,3.62080472707748,3.50560257770121,3.1267144382,2.48750707507133,1.59711903333664,0.470431350171566,-0.872118026018143,-2.40485489368439,-4.09729981422424,-5.91474056243896,-7.81895613670349,-9.76897668838501,-11.7219958305359,-13.6343564987183,-15.4625205993652,-17.1641235351562,-18.6990399360657,-20.0303316116333,-21.1252293586731,-21.9559941291809,-22.5006403923035,-22.7435684204102,-22.676016330719,-22.2963402271271,-21.6101278066635,-20.6300812959671,-19.3757719025016,-17.8731476068497,-16.1539340019226,-14.2547557353973,-12.2163076400757,-10.0822367668152,-7.89804363250732,-5.7099175453186,-3.56356382369995,-1.50298309326172,0.430536270141602,2.19949913024902,3.77105093002319,5.11773824691772,6.21808981895447,7.05700182914734,7.62592470645905,7.92285886406898,7.95218521356583,7.72428387403488,7.25500619411469,6.56496465206146,5.67876124382019,4.62409114837646,3.43081820011139,2.12999802827835,0.752911061048508,-0.6697918176651,-2.10895138606429,-3.53761464357376,-4.93164670467377,-6.27017617225647,-7.53594756126404,-8.71542072296143,-9.79882955551147,-10.7800045013428,-11.6561179161072,-12.4273047447205,-13.0961899757385,-13.6672999858856,-14.1465713977814,-14.5406701564789,-14.8564966917038,-15.1006367206573,-15.2788987755775,-15.3959494680166,-15.4550790786743,-15.4580320119858,-15.4049863815308,-15.2946484088898,-15.1244690418243,-14.8909068107605,-14.5898494720459,-14.2170631885529,-13.7686548233032,-13.2415871620178,-12.6341464519501,-11.9464230537415,-11.1806672811508,-10.3415968418121,-9.4365611076355,-8.47567380964756,-7.47171697020531,-6.43996155261993,-5.39787065982819,-4.36471450328827,-3.36095595359802,-2.40774339437485,-1.52613055706024,-0.736454248428345,-0.0575516223907471,0.493905782699585,0.90404748916626,1.16242527961731,1.26241159439087,1.20161056518555,0.982008934020996,0.610074281692505,0.0965957641601562,-0.5434849858284,-1.29161876440048,-2.12602464854717,-3.02251464128494,-3.95514822006226,-4.89707887172699,-5.82143878936768,-6.70217132568359,-7.5149359703064,-8.23782706260681,-8.8520941734314,-9.34277868270874,-9.69910907745361,-9.91483592987061,-9.98840522766113,-9.9228949546814,-9.72586154937744,-9.40901803970337,-8.98771858215332,-8.48041343688965,-7.90790033340454,-7.29257726669312,-6.65766716003418,-6.02630567550659,-5.42085886001587,-4.86205101013184,-4.36834335327148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2.03878879547119,-1.76744174957275,-1.5493278503418,-1.39592266082764,-1.3182954788208,-1.3265905380249,-1.42944240570068,-1.63355159759521,-1.94312286376953,-2.35952138900757,-2.88098764419556,-3.50238704681396,-4.21514844894409,-5.00733268260956,-5.86376589536667,-6.76642680168152,-7.6948356628418,-8.62660622596741,-9.53815197944641,-10.4053254127502,-11.2042760848999,-11.912132024765,-12.5079200267792,-12.9731159210205,-13.2925107479095,-13.4545390605927,-13.4519786834717,-13.2821080684662,-12.9468562602997,-12.4528079032898,-11.8111391067505,-11.0371446609497,-10.1498174667358,-9.17125725746155,-8.12589073181152,-7.03982508182526,-5.93978476524353,-4.85236883163452,-3.80319094657898,-2.81598377227783,-1.9119758605957,-1.10915851593018,-0.421761989593506,0.139978885650635,0.5701904296875,0.867242813110352,1.03371953964233,1.07606554031372,1.00419855117798,0.830910682678223,0.571154117584229,0.24139404296875,-0.141312599182129,-0.560003519058228,-0.998651742935181,-1.44289028644562,-1.8806217610836,-2.30256921052933,-2.70265769958496,-3.07817095518112,-3.42996767163277,-3.76223421096802,-4.08233833312988,-4.40027940273285,-4.72825145721436,-5.07990312576294,-5.46960926055908,-5.91162085533142,-6.41926419734955,-7.00406950712204,-7.67500923573971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2.49851942062378,-0.285912990570068,1.83587789535522,3.83038377761841,5.66503572463989,7.31179451942444,0,0,0,0,0,0,0,0,0,0,0,0,9.09552145004272,8.20861741155386,7.2988098859787,0,5.50355362892151,4.65673494338989,3.86328554153442,3.13264608383179,2.47001361846924,1.87638425827026,1.34869003295898,0.880183219909668,0.460962295532227,0.0784235000610352,-0.282060384750366,-0.636355876922607,-1.00089979171753,-1.39203321933746,-1.82521753758192,-2.31428003311157,-2.87100982666016,-3.50446626543999,-4.22071498259902,-5.02221696823835,-5.90807285904884,-6.8736194819212,-7.91057139635086,-9.00723731517792,-10.1486797332764,-11.3172166347504,-12.4928283691406,-13.6536450386047],[-12.0171637535095,-13.3056676387787,-14.5129351615906,-15.6106247901917,-16.5722079277039,-17.3736410140991,-17.9939565658569,-18.4157605171204,-18.6256437301636,-18.6144981384277,-18.377724647522,-17.9153642654419,-17.2321050167084,-16.337235212326,-15.244478225708,-13.9717695116997,-12.5409458428621,-10.9773917198181,-9.30958247184753,-7.56861090660095,-5.78764748573303,-4.0013484954834,-2.24523115158081,-0.555022716522217,1.03403067588806,2.48786807060242,3.77433085441589,4.86384921520948,5.73016595840454,6.35098516941071,6.70860385894775,6.79046392440796,6.58963918685913,6.10521745681763,5.34256815910339,4.31348741054535,3.03619527816772,1.53515788912773,-0.159217894077301,-2.01107719540596,-3.97980082035065,-6.02077960968018,-8.08639979362488,-10.1271448135376,-12.0927548408508,-13.9335017204285,-15.6015272140503,-17.0520887374878,-18.2448906898499,-19.1452403068542,-19.7251360416412,-19.9641876220703,-19.8503358364105,-19.3803735971451,-18.5601959228516,-17.4047875367105,-15.9379830360413,-14.1918983459473,-12.2061681747437,-10.0268387794495,-7.70521783828735,-5.2963809967041,-2.85764217376709,-0.446934700012207,1.87885046005249,4.0655632019043,6.06325197219849,7.82764935493469,9.32138347625732,10.5149981379509,11.3877274096012,11.9279496669769,12.1333532333374,12.0108008384705,11.5758986473083,10.8522899150848,9.87068462371826,8.66763734817505,7.28422665596008,5.7645628452301,4.15424859523773,2.49882210791111,0.842219591140747,-0.774556398391724,-2.31472808122635,-3.74677029252052,-5.04523262381554,-6.19126904010773,-7.17294692993164,-7.98519062995911,-8.6295473575592,-9.11361956596375,-9.45031428337097,-9.65690898895264,-9.75393152236938,-9.76394605636597,-9.71038436889648,-9.61623215675354,-9.50294494628906,-9.3893678188324,-9.29083156585693,-9.21848380565643,-9.17882084846497,-9.17345523834229,-9.19912934303284,-9.24800753593445,-9.30817890167236,-9.36433029174805,-9.39868402481079,-9.39199304580688,-9.32465553283691,-9.17783880233765,-8.93463110923767,-8.58108353614807,-8.10716342926025,-7.50752425193787,-6.78205692768097,-5.9363004565239,-4.98149397596717,-3.93442159891129,-2.81701278686523,-1.65572628378868,-0.480599164962769,0.675698757171631,1.77918195724487,2.79572105407715,3.69247817993164,4.43915891647339,5.00927019119263,5.38130855560303,5.53963661193848,5.47532486915588,5.18658661842346,4.67908787727356,3.96583199501038,3.06694734096527,2.00892448425293,0.823974102735519,-0.451239943504333,-1.77674812078476,-3.11066055297852,-4.41070580482483,-5.63565397262573,-6.74687361717224,-7.70963191986084,-8.49433469772339,-9.07765960693359,-9.44325733184814,-9.58239603042603,-9.49420642852783,-9.18565368652344,-8.67124700546265,-7.9724702835083,-7.11689567565918,-6.13719654083252,-5.06987476348877,-3.95386600494385,-2.82923460006714,-1.73554039001465,-0.710617542266846,0.210921287536621,0.998777627944946,1.62790727615356,2.07944059371948,2.34107184410095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4.97716236114502,-4.58800411224365,-4.15045928955078,-3.66499614715576,-3.13563919067383,-2.57004165649414,-1.97952461242676,-1.37879180908203,-0.785511016845703,-0.219722747802734,0.296951293945312,0.742212295532227,1.09396839141846,1.33148956298828,1.43627738952637,1.39316749572754,1.1911563873291,0.824069023132324,0.291231155395508,-0.402231216430664,-1.24524164199829,-2.22083806991577,-3.30659818649292,-4.47515273094177,-5.69497132301331,-6.93142914772034,-8.14784157276154,-9.30681955814362,-10.3714650273323,-11.3068910241127,-12.0812385678291,-12.6671965122223,-13.0426709651947,-13.1920640468597,-13.106671333313,-12.7851076126099,-12.2334504127502,-11.4652280807495,-10.5008249282837,-9.36688423156738,-8.09539985656738,-6.72255992889404,-5.28763961791992,-3.83138465881348,-2.39472961425781,-1.01734924316406,0.263765335083008,1.41548538208008,2.40974426269531,3.22446632385254,3.84409523010254,4.26017570495605,4.47132873535156,4.48318862915039,4.30793762207031,3.96364784240723,3.47336959838867,2.86397171020508,2.16499328613281,1.40721225738525,0.621357917785645,-0.163238525390625,-0.919967651367188,-1.62602806091309,-2.26338863372803,-2.81953883171082,-3.28789150714874,-3.66813725233078,-3.96604073047638,-4.19317668676376,-4.36622405052185,-4.50620365142822,-4.63734292984009,-4.78590726852417,-4.97881937026978,-5.24229335784912,-5.60043382644653,-6.07391881942749,-6.67883348464966,-7.42554330825806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.914253234863281,3.54386520385742,6.02695894241333,8.31540632247925,10.36723279953,12.1474962234497,13.6294407844543,0,0,0,0,0,0,0,14.3919024467468,13.3829116821289,12.244677066803,11.0199928283691,9.75100255012512,8.47792148590088,7.23780965805054,6.06336808204651,4.98216485977173,4.01572561264038,3.17922830581665,2.4811692237854,1.92343139648438,1.5015549659729,1.20508718490601,1.01835775375366,0.921277523040771,0.890252351760864,0.899185657501221,0.920722246170044,0.927269816398621,0.892008945345879,0.789968132972717,0.59907603263855,0.300704002380371,-0.119447469711304,-0.671083211898804,-1.35862040519714,-2.18154239654541,-3.13408303260803,-4.20548033714294,-5.38042092323303,-6.63937306404114,-7.95934391021729,-9.31448885798454,-10.676838696003],[-6.4620144367218,-7.77797067165375,-9.00199756026268,-10.1064223051071,-11.0665013790131,-11.8609502315521,-12.4723162651062,-12.8872337341309,-13.0965604782104,-13.095395565033,-12.8830089569092,-12.4626893997192,-11.841525554657,-11.0301432609558,-10.0424196720123,-8.89516246318817,-7.60780453681946,-6.20209729671478,-4.70178723335266,-3.13233149051666,-1.5205991268158,0.105435371398926,1.71699976921082,3.28485023975372,4.77963900566101,6.17231380939484,7.43456625938416,8.53930139541626,9.46120452880859,10.1773085594177,10.6676154136658,10.9157199859619,10.9094483852386,10.6414561271667,10.1097855567932,9.31832695007324,8.2771919965744,7.00290441513062,5.51847466826439,3.85325285792351,2.04255712032318,0.127156496047974,-1.84754039347172,-3.83247864246368,-5.77611303329468,-7.62575793266296,-9.32909297943115,-10.8356573581696,-12.0984995365143,-13.075715303421,-13.7319345474243,-14.0396816730499,-13.9805142879486,-13.5459374189377,-12.7380138635635,-11.5696175340563,-10.0644060969353,-8.25634860992432,-6.18895030021667,-3.91405010223389,-1.49044227600098,1.01792097091675,3.54387068748474,6.0191068649292,8.37637406587601,10.5517058968544,12.4864273071289,14.1291546821594,15.4374723434448,16.3793349266052,16.9341473579407,17.0933752059937,16.8607892990112,16.252227306366,15.2949614524841,14.0266485214233,12.4939036369324,10.7505087852478,8.85546970367432,6.87083172798157,4.85940933227539,2.88253949210048,0.997846245765686,-0.74268114566803,-2.29451596736908,-3.62201464176178,-4.6995207965374,-5.51200199127197,-6.05532907694578,-6.33602623641491,-6.37068438529968,-6.18491145968437,-5.81195831298828,-5.29108747839928,-4.66562858223915,-3.98097917437553,-3.28254997730255,-2.61366409063339,-2.01369267702103,-1.51629391312599,-1.14795351028442,-0.926889896392822,-0.862318754196167,-0.954105615615845,-1.1928596496582,-1.56044912338257,-2.03092765808105,-2.57172966003418,-3.1452841758728,-3.71078252792358,-4.22612619400024,-4.6499080657959,-4.9434642791748,-5.07271146774292,-5.00990176200867,-4.73504233360291,-4.23699307441711,-3.51428735256195,-2.57540065050125,-1.43867091834545,-0.131790161132812,1.30908858776093,2.84074068069458,4.41436338424683,5.97762131690979,7.47652697563171,8.85776782035828,10.0707609653473,11.0697460174561,11.8157780170441,12.278290271759,12.436537027359,12.2805049419403,11.8115141391754,11.0422780513763,9.99666237831116,8.70873302221298,7.22179015143774,5.58660018444061,3.85962665081024,2.10097968578339,0.37204372882843,-1.26670670509338,-2.75811433792114,-4.05041933059692,-5.09918737411499,-5.86912059783936,-6.33521747589111,-6.483811378479,-6.31302452087402,-5.83277940750122,-5.06438827514648,-4.03972959518433,-2.79989528656006,-1.39366292953491,0.124404430389404,1.69619798660278,3.26203751564026,4.76321303844452,6.14393086358905,7.35359227657318,8.3485221862793,9.09344983100891,9.56285190582275,9.74161863327026,0,9.22078037261963,8.54441738128662,0,0,0,0,0,0,0,0,0,0,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.93489599227905,-1.78583717346191,-1.56377220153809,-1.25489044189453,-0.850451469421387,-0.347668647766113,0.249851226806641,0.931903839111328,1.68185424804688,2.47714614868164,3.29010009765625,4.08897590637207,4.8394136428833,5.5057373046875,6.05279445648193,6.44740772247314,6.66017961502075,6.66693925857544,6.44998788833618,5.99932909011841,5.31338405609131,4.39948892593384,3.27400779724121,1.9619722366333,0.496515274047852,-1.08211994171143,-2.72800159454346,-4.390944480896,-6.01842880249023,-7.557373046875,-8.95634746551514,-10.1671705245972,-11.1471872329712,-11.8604488372803,-12.2796325683594,-12.3868713378906,-12.174524307251,-11.6456069946289,-10.8138675689697,-9.70317649841309,-8.34679412841797,-6.78615951538086,-5.06937789916992,-3.24961090087891,-1.38286590576172,0.473854064941406,2.26470947265625,3.93704986572266,5.44321823120117,6.74237442016602,7.80192565917969,8.59841156005859,9.11845016479492,9.35885620117188,9.32664108276367,9.03845596313477,8.5197639465332,7.80354309082031,6.92873382568359,5.93855857849121,4.87852668762207,3.79444313049316,2.73053932189941,1.72743225097656,0.820451736450195,0.038177490234375,-0.598758697509766,-1.07843208312988,-1.39819669723511,-1.56458234786987,-1.5929753780365,-1.50678688287735,-1.33638644218445,-1.11755466461182,-0.889856338500977,-0.694696426391602,-0.573317527770996,-0.5648193359375,-0.704185485839844,-1.02051258087158,-1.53537178039551,-2.26167106628418,-3.20254325866699,-4.3510046005249,-5.6897668838501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10.7459287643433,9.32236123085022,7.99486005306244,6.79976737499237,5.76598525047302,4.91397452354431,4.25562047958374,3.79404044151306,3.52388572692871,3.43196392059326,3.49795317649841,3.69562101364136,3.99398165941238,4.35870999097824,4.75347292423248,5.14160466194153,5.48742854595184,5.75751125812531,5.92192143201828,5.9554215669632,5.83797097206116,5.55565571784973,5.10070085525513,4.47210502624512,3.67493534088135,2.72037076950073,1.62517881393433,0.410882949829102,-0.896860599517822,-2.26937770843506,-3.67581033706665,-5.08409738540649],[-2.69979810714722,-3.77654671669006,-4.72780585289001,-5.53420650959015,-6.18104922771454,-6.65842508152127,-6.9611502289772,-7.0884964466095,-7.04380118846893,-6.8339364528656,-6.46870923042297,-5.96021842956543,-5.32220649719238,-4.56945788860321,-3.71724629402161,-2.78089612722397,-1.77544506639242,-0.715445935726166,0.385128557682037,1.51283338665962,2.65461052954197,3.79756438732147,4.92868757247925,6.03456282615662,7.10109043121338,8.11327338218689,9.05508613586426,9.90944480895996,10.6583595275879,11.2832064628601,11.7651705741882,12.0858464241028,12.2279629707336,12.1762261390686,11.9182364940643,11.4454069137573,10.7539036273956,9.84544157981873,8.72801053524017,7.41637569665909,5.93233335018158,4.30476048588753,2.56928098201752,0.767659425735474,-1.05310249328613,-2.84199498593807,-4.54551863670349,-6.10933661460876,-7.48020577430725,-8.60791420936584,-9.44724678993225,-9.95992493629456,-10.1163282394409,-9.89702010154724,-9.29394781589508,-8.31122905015945,-6.96558763086796,-5.28623324632645,-3.31431698799133,-1.10185027122498,1.28972959518433,3.79150974750519,6.32934635877609,8.82636415958405,11.2056324481964,13.3929867744446,15.3196339607239,16.9247794151306,18.1578950881958,18.9806537628174,19.3684816360474,19.3115072250366,18.815034866333,17.899374961853,16.5991716384888,14.9621200561523,13.047203540802,10.9224009513855,8.66219282150269,6.34469223022461,4.04865658283234,1.85052067041397,-0.17857551574707,-1.97536972165108,-3.48690760135651,-4.67245280742645,-5.50495207309723,-5.97187209129333,-6.07554113864899,-5.83277052640915,-5.27399474382401,-4.44178166985512,-3.38888567686081,-2.17593538761139,-0.868663787841797,0.464874029159546,1.75727021694183,2.94469553232193,3.96958661079407,4.78314554691315,5.34741449356079,5.63685321807861,5.63941657543182,5.35705375671387,4.80559092760086,4.01402723789215,3.02320146560669,1.88409471511841,0.655518531799316,-0.598433017730713,-1.81120443344116,-2.91668033599854,-3.85218000411987,-4.5611777305603,-4.9959089756012,-5.11956238746643,-4.90797162055969,-4.35092091560364,-3.45272654294968,-2.2322706580162,-0.722439229488373,1.03101086616516,2.9712723493576,5.03251504898071,7.14268255233765,9.22612023353577,11.2068245410919,13.0113835334778,14.5719606876373,15.8291954994202,16.734503030777,17.2522745132446,17.3612893819809,17.0557446479797,16.3455427885056,15.2561118900776,13.8273241650313,12.1122280657291,10.1748389601707,8.0877457857132,5.92939019203186,3.78083550930023,1.72278994321823,-0.167712926864624,-1.82024216651917,-3.17365622520447,-4.17867922782898,-4.79960203170776,-5.01581907272339,-4.82253313064575,-4.23091268539429,-3.26761436462402,-1.97372627258301,-0.403014183044434,1.38016510009766,3.30339789390564,5.28930675983429,7.25826793909073,9.1318953037262,10.8358001708984,12.302725315094,13.4749875068665,14.3065915107727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.54919862747192,5.39987564086914,6.2911057472229,7.17900991439819,8.01619625091553,8.75422811508179,9.34565472602844,9.74653816223145,9.91856026649475,9.83088159561157,9.46202301979065,8.80105400085449,7.8485221862793,6.61687421798706,5.1302433013916,3.42394065856934,1.54337310791016,-0.457632064819336,-2.51855278015137,-4.5745792388916,-6.55886650085449,-8.40536499023438,-10.0509777069092,-11.4385166168213,-12.5183715820312,-13.2511367797852,-13.6087799072266,-13.575927734375,-13.1505241394043,-12.3441123962402,-11.1813201904297,-9.69908905029297,-7.94523239135742,-5.9766960144043,-3.85756683349609,-1.65643310546875,0.556060791015625,2.70985794067383,4.73812866210938,6.57966995239258,8.18123626708984,9.49950790405273,10.5024147033691,11.1703796386719,11.4967460632324,11.4878807067871,11.1626091003418,10.5513648986816,9.69459915161133,8.64099502563477,7.44523239135742,6.16571807861328,4.8618278503418,3.59165573120117,2.40921783447266,1.36231994628906,0.490503311157227,-0.176589965820312,-0.620420455932617,-0.834353446960449,-0.823806762695312,-0.605929374694824,-0.208757400512695,0.330034375190735,0.965001344680786,1.64491629600525,2.31517791748047,2.92038488388062,3.40682220458984,3.72505664825439,3.83230209350586,3.69450950622559,3.28807067871094,2.60121059417725,1.63472270965576,0.402294158935547,-1.06974792480469,-2.74316883087158,-4.56916332244873,-6.49020385742188,-8.44196844100952,-10.3559813499451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.59889376163483,5.07032608985901,4.76345944404602,4.6720769405365,4.78080236911774,5.0661433339119,5.4976392313838,6.03951978683472,6.65219306945801,7.29409837722778,7.92328715324402,8.49937057495117,8.9849938750267,9.34716008603573,9.55847400426865,9.59823715686798,9.45270562171936,9.11583065986633,8.58880352973938,7.88042211532593,7.00583553314209,5.98615312576294,4.84750509262085,3.61971712112427,2.33529567718506,1.02794885635376,-0.268487453460693,-1.52125787734985],[-3.61703658103943,-4.26815736293793,-4.74526357650757,-5.04257154464722,-5.16085202246904,-5.10704252123833,-4.89360737800598,-4.53764706850052,-4.05985707044601,-3.48333805799484,-2.83236426115036,-2.13114780187607,-1.40267762541771,-0.667680397629738,0.0562324486672878,0.755192190408707,1.41944709420204,2.04345700144768,2.62572610378265,3.16835343837738,3.67636674642563,4.15684819221497,4.61793315410614,5.06772458553314,5.51319181919098,5.95915269851685,6.40735554695129,6.85576105117798,7.298091173172,7.72363781929016,8.11739587783813,8.46051788330078,8.7310791015625,8.90512490272522,8.95797252655029,8.86564660072327,8.60649585723877,8.16274476051331,7.52203822135925,6.67881172895432,5.63539675343782,4.40286713838577,3.00142502784729,1.46042060852051,-0.182111024856567,-1.8803528547287,-3.58210153877735,-5.23046231269836,-6.76599431037903,-8.12903594970703,-9.26217889785767,-10.1128516197205,-10.6357517242432,-10.7951462268829,-10.5668339729309,-9.93969106674194,-8.91679346561432,-7.51589196920395,-5.76932653784752,-3.7233020067215,-1.43660235404968,1.02132534980774,3.57276660203934,6.13452780246735,8.62103629112244,10.9476923942566,13.0340886116028,14.8072896003723,16.2047667503357,17.1770076751709,17.6896457672119,17.7249374389648,17.2826566696167,16.3802051544189,15.0520844459534,13.3486404418945,11.3341341018677,9.08420205116272,6.68295073509216,4.21960985660553,1.78494215011597,-0.532308101654053,-2.64906148612499,-4.49109429121017,-5.99606990814209,-7.11596608161926,-7.81897759437561,-8.09066367149353,-7.93447780609131,-7.37145781517029,-6.43927001953125,-5.19050264358521,-3.69037616252899,-2.01396334171295,-0.242856621742249,1.53821635246277,3.24506464600563,4.79762995243073,6.12336659431458,7.16037893295288,7.86006093025208,8.18915009498596,8.13118004798889,7.6872181892395,6.87584364414215,5.73240461945534,4.30748617649078,2.66489458084106,0.878893852233887,-0.968912601470947,-2.79303455352783,-4.50771331787109,-6.03066420555115,-7.28651189804077,-8.21012806892395,-8.74948620796204,-8.86790823936462,-8.54584473371506,-7.78180474042892,-6.59258130565286,-5.01274704933167,-3.09342926740646,-0.900239631533623,1.48910105228424,3.98809218406677,6.50462400913239,8.9449428319931,11.2172642946243,13.2354999780655,14.9228894710541,16.2149459123611,17.0623041391373,17.4326459765434,17.3120970129967,16.7058711051941,15.6381478011608,14.1510754674673,12.3033068478107,10.1675377935171,7.82769605517387,5.37574708461761,2.90782016515732,0.520620912313461,-1.69261312484741,-3.6457439661026,-5.26307058334351,-6.4825679063797,-7.25812339782715,-7.56154227256775,-7.38358283042908,-6.73431873321533,-5.64271712303162,-4.15550708770752,-2.33516836166382,-0.257491111755371,1.99143767356873,4.31898069381714,6.62926325947046,8.82744181156158,10.8231680393219,12.5344796180725,13.8909049034119,14.8361878395081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.68764746189117,8.11860966682434,7.23001766204834,6.02778291702271,4.53142929077148,2.77371406555176,0.799607276916504,-1.3354663848877,-3.56745338439941,-5.82633399963379,-8.03860855102539,-10.1305332183838,-12.0305233001709,-13.6726264953613,-14.9984722137451,-15.960319519043,-16.522590637207,-16.6634140014648,-16.3755798339844,-15.6670265197754,-14.5604133605957,-13.0924606323242,-11.3124732971191,-9.28059005737305,-7.06557846069336,-4.74201965332031,-2.38764190673828,-0.0803756713867188,2.10466766357422,4.09787750244141,5.83781433105469,7.27366638183594,8.36672973632812,9.09211730957031,9.43933868408203,9.41261672973633,9.03055191040039,8.3252067565918,7.34059906005859,6.13079833984375,4.75751113891602,3.28753662109375,1.78975296020508,0.332450866699219,-1.01982498168945,-2.20888900756836,-3.18538284301758,-3.91081047058105,-4.35916900634766,-4.5180549621582,-4.38911437988281,-3.9878568649292,-3.34297657012939,-2.49506568908691,-1.49465370178223,-0.400057315826416,0.725302040576935,1.81582129001617,2.80655169487,3.63624334335327,4.25017166137695,4.60260820388794,4.65897464752197,4.39754295349121,3.81053161621094,2.90462970733643,1.70090770721436,0.234116554260254,-1.44857788085938,-3.28962993621826,-5.22310161590576,-7.17760801315308,-9.07879018783569,-10.8527193069458,-12.4286110401154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.16561532020569,8.65966188907623,9.00891447067261,9.18789891898632,9.17867082357407,8.97159016132355,8.56520676612854,7.96662950515747,7.19051694869995,6.2590799331665,5.20018815994263,4.04655647277832,2.83435010910034,1.60142374038696,0.385912418365479,-0.7755126953125,-1.84888696670532,-2.80431365966797],[-8.10052466392517,-8.32741761207581,-8.34029626846313,-8.14661455154419,-7.76162838935852,-7.20759415626526,-6.5126838684082,-5.70961308479309,-4.83409333229065,-3.92313396930695,-3.01331579685211,-2.13908278942108,-1.3311573266983,-0.615145152667537,-0.0104045867919922,0.470750480890274,0.823494374752045,1.05051919817924,1.16168040037155,1.17323672771454,1.10674345493317,0.987635374069214,0.843588709831238,0.702731370925903,0.591789841651917,0.534318566322327,0.549033641815186,0.648425221443176,0.837688684463501,1.11405718326569,1.46657860279083,1.87637665495276,2.31738513708115,2.75753402709961,3.16036546230316,3.48693078756332,3.69800660014153,3.7563643604517,3.62910622358322,3.28987622261047,2.72082340717316,1.91426539421082,0.873837232589722,-0.384817361831665,-1.83398389816284,-3.43438255786896,-5.13634014129639,-6.88144564628601,-8.60480332374573,-10.2376728057861,-11.7103676795959,-12.9554290771484,-13.910728931427,-14.5225219726562,-14.7481875419617,-14.5585694313049,-13.9398374557495,-12.8946447372437,-11.442621588707,-9.62012271955609,-7.47925102710724,-5.08611035346985,-2.51844310760498,0.13730263710022,2.78932905197144,5.34424489736557,7.71075296401978,9.80350708961487,11.5466420650482,12.8769974708557,13.7468638420105,14.1260209083557,14.0031261444092,13.3862452507019,12.3026494979858,10.7977595329285,8.93331599235535,6.78483510017395,4.43857562541962,1.98798114061356,-0.470212936401367,-2.83987319469452,-5.02954000234604,-6.95604246854782,-8.54797160625458,-9.74854373931885,-10.5179069042206,-10.8346388339996,-10.696590423584,-10.1208069324493,-9.14273595809937,-7.81460642814636,-6.20313966274261,-4.38669717311859,-2.45179423689842,-0.489509560167789,1.40847915410995,3.15379309654236,4.66510534286499,5.87165284156799,6.71624684333801,7.1577045917511,7.17265391349792,6.75657105445862,5.92401218414307,4.70806616544724,3.15894359350204,1.34199166297913,-0.665091753005981,-2.77550482749939,-4.896977186203,-6.93565225601196,-8.80014157295227,-10.4053139686584,-11.6760129928589,-12.5503165610135,-12.9821591377258,-12.9434853792191,-12.4254912137985,-11.4391388893127,-10.0148543119431,-8.20143830776215,-6.06406021118164,-3.68186724185944,-1.1445643901825,1.45092391967773,4.00462818145752,6.41744995117188,8.59517455101013,10.4524667263031,11.9161574840546,12.9284607172012,13.4492317438126,13.457660317421,12.9532033205032,11.955682516098,10.5044533014297,8.65701758861542,6.48664057254791,4.07946467399597,1.53124165534973,-1.05674120783806,-3.5814436674118,-5.94241726398468,-8.0457626581192,-9.80780571699142,-11.1587044894695,-12.0450633391738,-12.4322903156281,-12.3059334754944,-11.672345995903,-10.5584456920624,-9.01074719429016,-7.09338402748108,-4.88564682006836,-2.47884607315063,0.0276584625244141,2.5300452709198,4.92466616630554,7.11191785335541,9.00058174133301,10.511385679245,11.5801706314087,12.1606435775757,12.2261261940002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9.91519737243652,0,-13.7897090911865,-15.411828994751,-16.7427177429199,-17.7332172393799,-18.3457527160645,-18.5560035705566,-18.3539543151855,-17.7444229125977,-16.7468910217285,-15.3948707580566,-13.734619140625,-11.8235626220703,-9.72808837890625,-7.52099609375,-5.27887725830078,-3.07915878295898,-0.99725341796875,0.896259307861328,0,0,0,0,0,0,0,0,3.02169799804688,1.62460327148438,0.0502777099609375,-1.63156127929688,-3.34795761108398,-5.02529907226562,-6.59278106689453,-7.98514366149902,-9.14541816711426,-10.0273265838623,-10.5971813201904,-10.8354148864746,-10.7373237609863,-10.3131942749023,-9.58789920806885,-8.5998010635376,-7.39892482757568,-6.04485416412354,-4.60403823852539,-3.14674544334412,-1.74410057067871,-0.464784868061543,0.628068566322327,1.47957229614258,2.04562759399414,2.29479026794434,2.20978784561157,1.78819608688354,1.04257249832153,-0.000111103057861328,-1.29954385757446,-2.80412578582764,-4.45285701751709,-6.17833709716797,-7.90923166275024,-9.57370233535767,-11.1022120714188,-12.4304817169905,-13.5021165311337,-14.2707512974739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.38383054733276,0,0,0,6.05709326267242,6.079749584198,5.90448020398617,5.52557802200317,4.94621789455414,4.17799592018127,3.24087905883789,2.16177606582642,0.974206447601318,-0.284009456634521,-1.57185912132263,-2.8467845916748,-4.06668245792389,-5.19148999452591,-6.18501071631908,-7.01617097854614,-7.66039347648621],[-12.1102504730225,-12.0908193588257,-11.8511805534363,-11.4060201644897,-10.7777185440063,-9.99544048309326,-9.0939245223999,-8.11200928688049,-7.09096956253052,-6.0726945400238,-5.0978319644928,-4.20394015312195,-3.42376494407654,-2.78370440006256,-2.30255663394928,-1.99061930179596,-1.84918831288815,-1.87050474062562,-2.03815920650959,-2.32795304059982,-2.70918375253677,-3.1463061273098,-3.6008805334568,-4.03372406959534,-4.40716806054115,-4.68726220726967,-4.84587068855762,-4.86247615935281,-4.72563479840755,-4.4339607656002,-3.99660003185272,-3.43312728404999,-2.77286541461945,-2.05365496873856,-1.32007744908333,-0.621303558349609,-0.00852513313293457,0.467751502990723,0.760523319244385,0.829047203063965,0.641358375549316,0.176474094390869,-0.573925971984863,-1.60433435440063,-2.89495348930359,-4.41188192367554,-6.10807180404663,-7.92487949132919,-9.79432272911072,-11.6418540477753,-13.3894777297974,-14.9592652320862,-16.2768731117249,-17.2750697135925,-17.8969926834106,-18.0990657806396,-17.8533763885498,-17.1493532657623,-15.9947559833527,-14.4158184528351,-12.4565891081002,-10.1774452924728,-7.65286087989807,-4.96851444244385,-2.21788787841797,0.50163459777832,3.09267210960388,5.46198102831841,7.52432382106781,9.20606589317322,10.4482893943787,11.2092509269714,11.4661178588867,11.2158880233765,10.4755001068115,9.28107929229736,7.68635034561157,5.76031351089478,3.58434867858887,1.24878218770027,-1.15096016228199,-3.51822459697723,-5.75924742221832,-7.78685176372528,-9.52404856681824,-10.9070751667023,-11.8879210948944,-12.4360733032227,-12.5396571159363,-12.2056603431702,-11.4594855308533,-10.3436706066132,-8.9159471988678,-7.24671626091003,-5.41587197780609,-3.50948113203049,-1.61602655053139,0.177330022677779,1.78842270374298,3.14359456300735,4.18078196048737,4.85210764408112,5.12592899799347,4.98817443847656,4.44294369220734,3.5123553276062,2.23557579517365,0.667247891426086,-1.12486165761948,-3.0627346932888,-5.06139421649277,-7.03252217173576,-8.88830816745758,-10.5451300144196,-11.927225112915,-12.9700145721436,-13.6228413581848,-13.8513207435608,-13.6388416290283,-12.9873907566071,-11.9175820350647,-10.4679169654846,-8.69317150115967,-6.6623318195343,-4.45555686950684,-2.16111409664154,0.128468036651611,2.32011961936951,4.32404160499573,6.05756020545959,7.44837021827698,8.43772578239441,8.98277473449707,9.05835723876953,8.65814352035522,7.7949526309967,6.50023674964905,4.82299733161926,2.82778096199036,0.592157363891602,-1.79619097709656,-4.24318587779999,-6.6518349647522,-8.92631721496582,-10.9757611751556,-12.7178182601929,-14.0822279453278,-15.0135263204575,-15.4735298156738,-15.4429200142622,-14.9221809506416,-13.9317127466202,-12.5112183094025,-10.7181112766266,-8.62540483474731,-6.31889009475708,-3.8934588432312,-1.44968795776367,0.910637855529785,3.08838510513306,4.99141240119934,6.53827154636383,7.66153854131699,8.31079924106598,8.45465809106827,8.08209651708603,7.20299190282822,5.84767512977123,4.06565600633621,1.92368042469025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.45819664001465,1.10297775268555,-0.500034332275391,-2.29025840759277,-4.19961547851562,-6.15559387207031,-8.08357429504395,-9.9102840423584,-11.5665283203125,-12.9900779724121,-14.1283130645752,-14.9403200149536,-15.3988485336304,-15.491400718689,-15.2207231521606,-14.6047859191895,-13.6760053634644,-12.4797277450562,-11.0722880363464,0,0,-6.25550222396851,-4.69099974632263,-3.26291573047638,-2.03206568956375,-1.04949035122991,-0.354462057352066,0.0273517370223999,0.0847160816192627,-0.17882251739502,-0.74536657333374,-1.58353590965271,-2.65041267871857,-3.89330291748047,-5.25263237953186,-6.66432055830956,-8.06304728984833,-9.38499534130096,-10.5706572532654,-11.5673460960388,-12.3311891555786,-12.8290116786957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.11957919597626,2.8273554444313,0,1.66043996810913,0.802295684814453,-0.215012311935425,-1.36451506614685,-2.61371505260468,-3.92504942417145,-5.25827256590128,-6.57154941558838,-7.82304322719574,-8.97279763221741,-9.98419594764709,-10.8255891799927,-11.4713425636292,-11.9030547142029],[-12.1707291603088,-12.1341304779053,-11.9134845733643,-11.5227036476135,-10.981782913208,-10.316089630127,-9.55543422698975,-8.73289895057678,-7.88351655006409,-7.04278492927551,-6.24510908126831,-5.52223467826843,-4.9017254114151,-4.40558695793152,-4.04909706115723,-3.83993375301361,-3.77764403820038,-3.8535248041153,-4.05092453956604,-4.34599196910858,-4.70883095264435,-5.10505211353302,-5.49760818481445,-5.84885895252228,-6.12276148796082,-6.28702294826508,-6.31516492366791,-6.18831646442413,-5.89666056632996,-5.44042754173279,-4.83037805557251,-4.08772420883179,-3.24345619603992,-2.33714354038239,-1.41517519950867,-0.528620719909668,0.269294738769531,0.925906658172607,1.39190292358398,1.62408971786499,1.58791065216064,1.25968837738037,0.628347396850586,-0.303347587585449,-1.51825714111328,-2.98493719100952,-4.6584792137146,-6.48195123672485,-8.38851284980774,-10.3040821999311,-12.1503534317017,-13.8482284545898,-15.3212962150574,-16.4993534088135,-17.3216757774353,-17.7400298118591,-17.7211232185364,-17.2484593391418,-16.323454618454,-14.9658076763153,-13.2130120992661,-11.1191047132015,-8.75262105464935,-6.19392418861389,-3.53197932243347,-0.860639095306396,1.72511959075928,4.13320326805115,6.27817285060883,8.08478093147278,9.49105501174927,10.4507822990417,10.9353017807007,10.9345421791077,10.4572875499725,9.5306453704834,8.19872283935547,6.52062022686005,4.56787736713886,2.42142474651337,0.168139696121216,-2.10264179110527,-4.30285322666168,-6.34906673431396,-8.16580724716187,-9.68839073181152,-10.865336894989,-11.6601123809814,-12.0523924827576,-12.0385007858276,-11.6313161849976,-10.8594388961792,-9.76579093933105,-8.40569114685059,-6.84434008598328,-5.15413904190063,-3.41157817840576,-1.69408445060253,-0.0768383741378784,1.37034487724304,2.5858496427536,3.51874947547913,4.13090002536774,4.39848264306784,4.31296969158575,3.88144043274224,3.12623398005962,2.08401525020599,0.80417674779892,-0.653310045599937,-2.22046732902527,-3.82426726818085,-5.38988161087036,-6.84389972686768,-8.11762475967407,-9.15015912055969,-9.89106106758118,-10.3027164936066,-10.3619966506958,-10.0613708496094,-9.40929412841797,-8.42991852760315,-7.16201901435852,-5.65746009349823,-3.97881007194519,-2.19681143760681,-0.387216091156006,1.37241458892822,3.00595617294312,4.44208669662476,5.61712598800659,6.47789096832275,6.98381519317627,7.10863780975342,6.8415699005127,6.18774795532227,5.16802549362183,3.81828355789185,2.18796491622925,0.338171720504761,-1.66056740283966,-3.73125609755516,-5.79320526123047,-7.76538872718811,-9.56959509849548,-11.1334791183472,-12.393682718277,-13.2983241081238,-13.8093592822552,-13.9042449593544,-13.5771104097366,-12.839234828949,-11.7189173698425,-10.2605042457581,-8.52288055419922,-6.57732915878296,-4.50452947616577,-2.39170122146606,-0.328729629516602,1.59529161453247,3.29602003097534,4.69735026359558,5.73462843894958,6.35761547088623,6.5326122045517,6.24400335550308,5.49503719806671,4.30772399902344,2.72194719314575,0.793930530548096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.81008434295654,5.60578298568726,4.09929037094116,2.33711433410645,0.375542640686035,-1.7209005355835,-3.88215208053589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3.78065824508667,-2.36484909057617,0,0,0,0,0,0,0,0,0,0,-3.63535749912262,-4.78375780582428,-5.89506912231445,-6.9158763885498,-7.79880213737488,-8.50429391860962,-9.00227642059326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.62864899635315,-2.73572844266891,-3.90856626629829,-5.11375437676907,-6.31671142578125,-7.48254835605621,-8.57727932929993,-9.5692458152771,-10.4301726818085,-11.1363067626953,-11.6690649986267,-12.0159063339233],[-8.2931764125824,-8.37064027786255,-8.32556414604187,-8.16606974601746,-7.90383100509644,-7.55374467372894,-7.13348495960236,-6.66291105747223,-6.16334688663483,-5.65672445297241,-5.16462051868439,-4.70722171664238,-4.30226245522499,-3.96400603652,-3.70232710242271,-3.52198296785355,-3.42212277650833,-3.39609956741333,-3.43163526058197,-3.51133739948273,-3.61357390880585,-3.71368265151978,-3.78542876243591,-3.80266392230988,-3.74107527732849,-3.57990264892578,-3.30355608463287,-2.90298098325729,-2.37670587003231,-1.73148447275162,-0.982490420341492,-0.153043270111084,0.726174116134644,1.61829662322998,2.48191261291504,3.27293395996094,3.94677257537842,4.46059131622314,4.77555084228516,4.85899639129639,4.68639755249023,4.24299907684326,3.52506542205811,2.54068088531494,1.31000804901123,-0.134958267211914,-1.7512264251709,-3.48613739013672,-5.27919721603394,-7.06437015533447,-8.77263021469116,-10.3348443508148,-11.6847127974033,-12.7617002725601,-13.5138108730316,-13.900110244751,-13.8927941322327,-13.4787559509277,-12.6605081558228,-11.4564814567566,-9.90057468414307,-8.04103827476501,-5.93867963552475,-3.66451090760529,-1.29693084955215,1.08152168989182,3.38743901252747,5.54001927375793,7.46431994438171,0,0,11.266640663147,11.7422168254852,11.7921547889709,11.4225963354111,10.6552783250809,9.52639091014862,8.08486619591713,6.39026010036469,4.5102207660675,2.51767516136169,0.48799204826355,-1.50403118133545,-3.38687717914581,-5.09497761726379,-6.57099980115891,-7.76781499385834,-8.64994788169861,-9.19468808174133,-9.39255928993225,-9.24742484092712,-8.77602291107178,-8.00707840919495,-6.98002827167511,-5.74326705932617,-4.35224229097366,-2.86720025539398,-1.35082268714905,0.134206056594849,1.52767539024353,2.7741813659668,3.82528102397919,4.64141499996185,5.19349676370621,5.4640930891037,5.44813588261604,5.15314283967018,4.59893068671227,3.81679969280958,2.84817921556532,1.74285968393087,0.556805402040482,-0.650391008704901,-1.81815493106842,-2.88775014877319,-3.80502736568451,-4.52291321754456,-5.00372529029846,-5.22089815139771,-5.16031074523926,-4.82095468044281,-4.21500089764595,-3.36719036102295,-2.31374049186707,-1.10051584243774,0.218997955322266,1.58626365661621,2.94034242630005,4.22058534622192,5.36941289901733,6.33467149734497,7.07196474075317,7.54639911651611,7.73394250869751,7.62237977981567,7.21171236038208,6.51404523849487,5.5531120300293,4.363276720047,2.98817276954651,1.47916150093079,-0.106776356697083,-1.70898312330246,-3.26555097103119,-4.71561962366104,-6.00165998935699,-7.07189726829529,-7.88232088088989,-8.39871573448181,-8.59820580482483,-8.47051095962524,-8.018723487854,-7.25958156585693,-6.22313737869263,-4.9518928527832,-3.49941778182983,-1.92815971374512,-0.30726146697998,1.29052114486694,2.79172039031982,4.12551736831665,5.22681760787964,6.03916335105896,6.51744139194489,6.62993371486664,6.35984879732132,5.70620626211166,4.68392425775528,3.32323008775711,1.66846776008606,-0.223954200744629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.727868556976318,-0.297715425491333,-1.30216240882874,-2.23723196983337,-3.06049454212189,-3.73685151338577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.849413871765137,0.0609092712402344,-0.797876596450806,-1.70299291610718,0,-3.55064618587494,-4.44338470697403,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,-3.45884943008423,-3.21631062030792,-2.95922768115997,-2.69706428050995,0,-2.19058114290237,-1.95842039585114,0,-1.54730713367462,-1.36338001489639,-1.18512536585331,-1.0023379996419,-0.80264625698328,-0.572448367252946,-0.298046130686998,0.0331012755632401,0.431106582283974,0.902462333440781,1.44902649521828,2.06727510690689,2.74789750576019,3.47575950622559,4.23025286197662,4.98600840568542,5.7139630317688,6.38265085220337,6.95972204208374,7.41352128982544,7.71470785140991,7.83779430389404,7.76252365112305,7.47506427764893,6.96892642974854,6.24563598632812,5.31504535675049,4.19537162780762,2.91289901733398,1.50139617919922,0.001190185546875,-1.54197978973389,-3.07841682434082,-4.55612754821777,-5.92261505126953,-7.12688779830933,-8.12145376205444,-8.86432337760925,-9.32088494300842,-9.46562337875366,-9.28351163864136,-8.77103390172124,-7.93674671649933,-6.80135259032249,-5.39722996205091,-3.76742944121361,-1.9641455411911,-0.0467779636383057,1.92037737369537,3.87074249982834,5.73806548118591,7.45914113521576,8.97632384300232,0,0,0,12.1646254062653,12.1292282342911,11.7589462995529,11.0741163492203,10.1059103012085,8.89486335963011,7.48913592100143,5.94252550601959,4.31230330467224,2.65708994865417,1.03464436531067,-0.500083684921265,-1.89686131477356,-3.11176323890686,-4.10855197906494,-4.85967135429382,-5.3470242023468,-5.56229305267334,-5.5070366859436,-5.19239592552185,-4.63852787017822,-3.87377095222473,-2.93347644805908,-1.8587498664856,-0.694910526275635,0.510133266448975,1.70761394500732,2.84969186782837,3.89123272895813,4.79149222373962,5.51572048664093,6.03659439086914,6.33540875837207,6.40296006202698,6.24009680747986,5.8578736782074,5.27728962898254,4.5285359621048,3.64983493089676,2.68584860861301,1.68566834926605,0.700599670410156,-0.218324899673462,-1.02286398410797,-1.66996932029724,-2.12407940626144,-2.35891628265381,-2.3589414358139,-2.12017944455147,-1.65043842792511,-0.968876361846924,-0.10503888130188,0.902810096740723,2.00959348678589,3.16582059860229,4.3200478553772,5.42134618759155,6.42176198959351,7.27833890914917,7.95500898361206,8.42390441894531,8.66624593734741,8.67286968231201,8.44423627853394,7.99006366729736,7.32873034477234,6.48629975318909,5.49539816379547,4.39404046535492,3.22413414716721,2.03018006682396,0.857676148414612,-0.248373508453369,-1.24494600296021,-2.09266805648804,-2.75722599029541,-3.21092939376831,-3.43398237228394,-3.41565418243408,-3.15515327453613,-2.66216087341309,-1.95689678192139,-1.06974792480469,-0.0404443740844727,1.08352184295654,2.24855089187622,3.39740943908691,4.47167015075684,5.41456723213196,6.17367720603943,6.70349252223969,6.9677711725235,6.94134950637817,6.61141011863947,5.97822981327772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.05573725700378,4.06976175308228,3.05548334121704,2.06107664108276,1.13063907623291,0.302416801452637,-0.392423152923584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.15708947181702,8.38446092605591,8.45254135131836,0,8.05803918838501,0,6.93131160736084,6.10894298553467,5.13486957550049,4.03176021575928,2.82692241668701,1.55142498016357,0.239191055297852,-1.07394313812256,-2.35110187530518,-3.55532073974609,-4.65043354034424,-5.60203552246094,-6.37846946716309,-6.95183897018433,-7.29904413223267,-7.40281581878662,-7.25264883041382,-6.84564685821533,-6.18710231781006,-5.29082345962524,-4.17910242080688,-2.88230752944946,-1.43807506561279,0.109928131103516,1.71353912353516,3.3219268321991,4.88364171981812,6.34864771366119,7.67038297653198,8.80762824416161,9.72614032030106,0,0,0,0,10.4564037322998,9.8457955121994,9.02958130836487,8.04224157333374,6.92316764593124,5.71507596969604,4.46238526701927,3.20962297916412,1.99983024597168,0.87317943572998,-0.134374856948853,-0.992190599441528,-1.67587041854858,-2.16792154312134,-2.45823383331299,-2.54422378540039,-2.43080997467041,-2.13008832931519,-1.66079616546631,-1.04759883880615,-0.320109367370605,0.488126754760742,1.34083986282349,2.20028638839722,3.02854585647583,3.78885078430176,4.44689321517944,4.97207403182983,5.33869469165802,5.5270619392395,5.52446049451828,5.32592117786407,4.93477821350098,4.36295676231384,3.63092827796936,2.76725220680237,1.8077392578125,0.794188022613525,-0.227363586425781,-1.20862913131714,-2.10146188735962,-2.86033630371094,-3.44482946395874,-3.82202482223511,-3.96846079826355,-3.87171506881714,-3.53131294250488,-2.95894276350737,-2.17791354656219,-1.22198522090912,-0.13338303565979,1.03945541381836,2.24468040466309,3.42983388900757,4.54459285736084,5.54337072372437,6.38731813430786,7.04602575302124,7.49845314025879,7.733323097229,7.74902009963989,7.55293416976929,7.16044425964355,6.59374833106995,5.88047206401825,5.05227738618851,4.14365261793137,3.19059610366821,2.22965633869171,1.29687547683716,0.426921367645264,-0.347736835479736,-0.997817516326904,-1.49805068969727,-1.82824325561523,-1.97422313690186,-1.92878913879395,-1.69255256652832,-1.27452087402344,-0.692340850830078,0.0278768539428711,0.852118492126465,1.73982429504395,2.64533758163452,3.52016592025757,4.31528377532959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.23766851425171,4.24413013458252,3.22487640380859,2.22375965118408,1.28049945831299,0.429255485534668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.46232223510742,0.377347946166992,-0.751693725585938,-1.89423847198486,-3.02005004882812,-4.09999561309814,-5.10651779174805,-6.01396369934082,-6.79877376556396,-7.43964290618896,-7.91774082183838,-8.21701049804688,-8.32463693618774,-8.23162221908569,-7.93347024917603,-7.4309024810791,-6.73048067092896,-5.8450779914856,-4.79404783248901,-3.60310697555542,-2.30379199981689,-0.932522773742676,0.470659732818604,1.86365509033203,3.20409464836121,4.45110201835632,5.5670862197876,6.51934152841568,7.28137638419867,0,0,0,0,0,0,0,0,4.96916997432709,4.00913226604462,3.02511531114578,2.05451908707619,1.13322198390961,0.294363737106323,-0.432882308959961,-1.02435159683228,-1.46182203292847,-1.73369264602661,-1.83547115325928,-1.76991605758667,-1.54693174362183,-1.18312549591064,-0.701066970825195,-0.128331184387207,0.503743171691895,1.16132640838623,1.80953121185303,2.4137544631958,2.94101476669312,3.36113262176514,3.64778995513916,3.77940726280212,3.73989510536194,3.51926851272583,3.11415094137192,2.52814504504204,1.77208375930786,0.864161968231201,-0.170157432556152,-1.29851579666138,-2.48232889175415,-3.67783832550049,-4.83767700195312,-5.91269683837891,-6.85432815551758,-7.61710834503174,-8.16133260726929,-8.45569181442261,-8.47951555252075,-8.22457265853882,-7.69617533683777,-6.91341376304626,-5.90845787525177,-4.72506892681122,-3.41606831550598,-2.04045593738556,-0.65983247756958,0.665132522583008,1.87813520431519,2.93035554885864,3.78278064727783,4.40794134140015,4.79063606262207,4.92785120010376,4.82796716690063,4.50929117202759,3.99813890457153,3.32683086395264,2.53152894973755,1.65029656887054,0.721532663330436,-0.217455148696899,-1.13128018379211,-1.98721241950989,-2.75557804107666,-3.41004419326782,-3.92803955078125,-4.29108047485352,-4.48541641235352,-4.50268173217773,-4.34068870544434,0,0,-2.86516380310059,-2.11086845397949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.35681438446045,0.380036354064941,-0.591453552246094,-1.52314281463623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6.40857553482056,0,-7.97847366333008,-8.64601278305054,-9.21203660964966,-9.65955758094788,-9.97204279899597,-10.1339054107666,-10.1313014030457,-9.95319628715515,-9.59258270263672,-9.04768657684326,-8.32298243045807,0,-6.38721144199371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.154183983802795,-0.703513741493225,-1.48618185520172,-2.16164457798004,-2.7025306224823,-3.0877046585083,-3.30345416069031,-3.34441566467285,-3.21404218673706,-2.92463064193726,-2.49679565429688,-1.95846462249756,-1.3434009552002,-0.689353942871094,-0.0360746383666992,0.576797485351562,1.11169147491455,1.53482913970947,1.81762838363647,1.93766736984253,1.8792667388916,1.63370871543884,1.19919264316559,0.580621108412743,-0.210711240768433,-1.15742468833923,-2.23628616333008,-3.41845798492432,-4.66980123519897,-5.95126008987427,-7.21954250335693,-8.42822456359863,-9.5291748046875,-10.474609375,-11.2194814682007,-11.7242031097412,-11.9574913978577,-11.8989839553833,-11.5414910316467,-10.8924963474274,-9.97472512722015,-8.82556393742561,-7.49552881717682,-6.04537725448608,-4.54272538423538,-3.05774462223053,-1.65886640548706,-0.408573150634766,0.640380382537842,1.44775199890137,1.98775672912598,2.24970626831055,2.23757839202881,1.96861219406128,1.47107362747192,0.781488418579102,-0.0582089424133301,-1.00355887413025,-2.01008296012878,-3.03514897823334,-4.03949648141861,-4.98788738250732,-5.84950125217438,-6.59785866737366,-7.21058416366577,-7.66931581497192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.478582382202148,-1.26404571533203,-2.13284683227539,-3.05170440673828,-3.98838043212891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8.92648792266846,-9.60052931308746,-10.1888616681099,-10.6628177165985,-10.9940086901188,-11.1562465429306,-11.1276835203171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5.55444550514221,0,-5.21731376647949,-4.77899503707886,-4.19896364212036,-3.51633787155151,-2.77563858032227,-2.02390193939209,-1.30760288238525,-0.66984748840332,-0.147965431213379,0.228252410888672,0.437576293945312,0.467586040496826,0.314293384552002,-0.0187444686889648,-0.521581530570984,-1.17910265922546,-1.97208142280579,-2.87790751457214,-3.87098622322083,-4.92284154891968,-6.00196170806885,-7.07370805740356,-8.10046243667603,-9.04214668273926,-9.85741376876831,-10.505476474762,-10.9484872817993,0,0,0,0,-9.33006942272186,-8.26231357455254,-7.021639585495,-5.66633176803589,-4.26277933269739,-2.88093566894531,0,0,0.480212688446045,1.16656970977783,1.58360195159912,1.72364902496338,1.59458923339844,1.21803665161133,0.626587390899658,-0.139514923095703,-1.03574514389038,-2.01658225059509,-3.038205742836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3.38706207275391,-4.31885528564453,-5.29067420959473,-6.27276039123535,-7.23701667785645,-8.15744781494141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.631187915802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3.67132759094238,-4.78561782836914,-5.87981986999512,-6.92315673828125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.90256881713867,-3.09551620483398,-4.20672035217285,-5.20680236816406,-6.07315063476562,0,-7.34607887268066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3.72685432434082,-4.30998802185059,-4.72455978393555,-4.97463226318359,-5.06892681121826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.27280557155609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4.63427603244781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.2547507584095,-1.53325629234314,-1.92574095726013,-2.36710250377655,-2.79631650447845,-3.16662192344666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5.23667347431183,-5.02353224158287,-5.00241047143936,-5.15844833850861,-5.45723456144333,-5.84899806976318,-6.27617204189301,-6.68251264095306,-7.02247178554535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4.6881617307663,-4.55973625183105,-4.54331833124161,-4.63982039690018,-4.84001678228378,-5.12259620428085,-5.45531845092773,-5.79931563138962,-6.116490483284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.10258960723877,0.211038589477539,0.301466345787048,0.373550891876221,0.411816239356995,0.390590906143188,0.28352153301239,0.0744205117225647,0,0,0,0,0,0,0,-2.83897829055786,-3.14862126111984,-3.48751211166382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.36998891830444,6.37021684646606,6.38416147232056,6.41992378234863,6.45313358306885,6.43436336517334,6.30547976493835,6.01979374885559,0,0,0,0,0,0,0,1.01937487721443,0.561812534928322,0.100811194628477,-0.38230912014842,-0.875085514038801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.09811401367188,9.1170072555542,9.12522983551025,9.13358783721924,9.11129808425903,8.99546432495117,8.71228313446045,8.20344591140747,0,0,0,0,0,0,0,0.959321022033691,0.556260108947754,0.238104581832886,-0.041603684425354,-0.302083969116211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.707080364227295,0.786679267883301,1.22537660598755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.23044300079346,6.33663368225098,6.37904739379883,6.36303329467773,6.255615234375,5.99573707580566,5.5157527923584,4.76762294769287,3.7450122833252,2.49432945251465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.443903923034668,-0.258771896362305,-0.175799369812012,-0.204327583312988,-0.375813484191895,-0.734246253967285,-1.32026100158691,-2.15378093719482,-3.2210521697998,-4.46973371505737,-5.81452131271362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6.39137578010559,-6.21295976638794,-5.98670744895935,-5.75400376319885,-5.53957366943359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6.77768135070801,-6.55468654632568,-6.43348026275635,-6.44667339324951,-6.62287092208862,-6.97805213928223,-7.51023530960083,-8.19915342330933,-9.01074147224426,-9.90370297431946,-10.836149930954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7.37408924102783,-7.51857280731201,-7.54334020614624,-7.46557712554932,-7.2946457862854,-7.03068518638611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9.29314267635345,-9.05512750148773,-8.89116990566254,-8.86373746395111,-9.00135636329651,-9.28877830505371,-9.67372965812683,-10.0882970690727,-10.4764120578766,-10.815976858139,-11.126935005188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5.95920083299279,-6.32032150030136,-6.53051847219467,-6.57693600654602,-6.44842956960201,-6.1329870223999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7.33338189125061,-7.08469271659851,-6.88457572460175,-6.82929694652557,-6.95557653903961,-7.2245352268219,-7.5370671749115,-7.77566742897034,-7.8555064201355,-7.76354289054871,-7.56929636001587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2.86880934238434,-3.18462717533112,-3.38634431362152,-3.44723689556122,-3.34789955615997,-3.07027626037598,-2.59736561775208,-1.92093443870544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2.71905213594437,-2.53182071447372,-2.51393362879753,-2.72366997599602,-3.11814498901367,-3.56924760341644,-3.91829691827297,-4.04536808282137,-3.92324233055115,-3.63257837295532,-3.33259797096252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.33187365531921,2.54550266265869,3.02914881706238,3.72104471921921,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.646840214729309,0.730270147323608,0.861615657806396,1.04901170730591,1.31110215187073,1.67275977134705,2.15232419967651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.14896261692047,1.04963040351868,0.672973036766052,0.0382208824157715,-0.728947401046753,-1.45200204849243,-1.98082482814789,-2.25470960140228,-2.32301586866379,-2.31593316793442,-2.38130488991737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.64365828037262,5.66994988918304,5.84490191936493,6.20669305324554,6.68140375614166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.42057240009308,4.68829199671745,4.84303706139326,4.89275529980659,4.87004846334457,4.82258307933807,4.79860240221024,4.83292576670647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32512843608856,2.22668422013521,1.98758390545845,1.47206717729568,0.650989294052124,-0.388733267784119,-1.48838949203491,-2.48994337022305,-3.29967790842056,-3.91393578052521,-4.3976309299469,-4.83092164993286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.54242825508118,8.73420286178589,8.86823964118958,8.96592164039612,8.98018050193787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.72972655296326,6.97739553451538,6.98855626583099,6.78268849849701,6.40645968914032,5.9286402463913,5.4323548078537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.86951108276844,0.584360048174858,0.279800266027451,-0.209570854902267,-0.968516966328025,-1.97490841150284,-3.12386929988861,-4.28324568271637,-5.34855031967163,-6.27171647548676,-7.05326759815216,-7.70888257026672,-8.23242139816284,-8.57784485816956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.47230005264282,9.83718800544739,9.8961775302887,9.6561586856842,9.12755155563354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.56728053092957,6.73719239234924,6.66585004329681,6.355504155159,5.83805871009827,5.18890941143036,4.52391922473907,3.97160142660141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2.25099658966064,-2.64472287893295,-2.89310503005981,-3.15588861703873,-3.55387872457504,-4.1324856877327,-4.86201518774033,-5.66636234521866,-6.46049076318741,-7.17901426553726,-7.78562808036804,-8.26583588123322,-8.61256051063538,-8.81568133831024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.92942595481873,7.83968806266785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.33539152145386,4.41326075792313,4.24652463197708,3.84172792732716,3.29531043767929,2.76812487840652,2.41518402099609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5.58423697948456,-6.00215947628021,-6.14556491374969,-6.1166512966156,-6.03073614835739,-5.98009139299393,-6.01008005253971,-6.11392545700073,-6.24544602632523,-6.34420943260193,-6.36395072937012,-6.29465085268021,-6.17088836431503,-6.06310868123546,-6.05494566261768,-6.21366646140814,-6.5649334192276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.809625864028931,1.29858946800232,1.90844392776489,2.599534034729,3.26727175712585,3.75803899765015,3.91058611869812,3.61163544654846,2.84617722034454,1.72189784049988,0.454795122146606,-0.683274269104004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.693119049072266,1.2213796377182,1.54865252971649,1.57689237594604,1.34618616104126,1.02494788169861,0.824563503265381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7.77037715911865,-8.22651481628418,-8.38087844848633,-8.2288613319397,-7.83765935897827,-7.3183226287365,-6.77726244926453,-6.2719898223877,-5.79422128200531,-5.28954339027405,-4.70527958869934,-4.04271602630615,-3.3869731426239,-2.89637207984924,-2.75186991691589,-3.08592748641968,-3.92182278633118,-5.15033030509949,-6.55522930622101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.06372380256653,0.986951351165771,0.875656366348267,0.811122894287109,0.798559665679932,0.757400274276733,0.556451082229614,0.0810065269470215,-0.69688606262207,-1.67797589302063,-2.64660739898682,-3.33300125598907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1.54275846481323,-0.854612350463867,-0.468087911605835,-0.409404039382935,-0.520813941955566,-0.545591831207275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7.78383374214172,-8.42286550998688,-8.82971394062042,-8.87180960178375,-8.55199539661407,-7.98760452866554,-7.33398407697678,-6.69892346858978,-6.09582352638245,-5.45859885215759,-4.70835161209106,-3.83324074745178,-2.93682765960693,-2.22500157356262,-1.93231153488159,-2.21997952461243,-3.09382605552673,-4.38268971443176,-5.79098629951477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.848393201828,2.89161151647568,3.69366157054901,4.08376348018646,4.01082134246826,3.55578100681305,2.8883672952652,2.19003486633301,1.57998704910278,1.07840466499329,0.622557401657104,0.125690460205078,-0.451776266098022,-1.05573701858521,-1.5412323474884,-1.7257297039032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2.82110142707825,-2.02843594551086,-1.25044441223145,-0.72845983505249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5.35580176115036,-6.35614410042763,-7.20526838302612,-7.66954165697098,-7.71540464833379,-7.48208630084991,-7.17206192016602,-6.92847800254822,-6.76671957969666,-6.59012722969055,-6.27321863174438,-5.76086282730103,-5.12684011459351,-4.55795955657959,-4.26910638809204,-4.39178514480591,-4.89359402656555,-5.57288646697998,-6.13705253601074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.27327448129654,0.939550518989563,0.514518022537231,0.015247106552124,-0.521882057189941,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.50366023182869,6.60542511940002,7.54085469245911,8.08951473236084,8.14329218864441,7.7386429309845,7.02891778945923,6.21453762054443,5.46589338779449,4.87345523200929,4.44321426749229,4.13229882717133,3.90067911148071,3.74852710962296,3.71901386976242,3.86620205640793,4.20798856019974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.226806402206421,0.359447717666626,0.979823112487793,1.42546772956848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.52624094486237,-2.92523539066315,-4.15729081630707,-4.96606707572937,-5.34846067428589,-5.4983172416687,-5.6626341342926,-5.99888515472412,-6.50640344619751,-7.05497026443481,-7.47986888885498,-7.68331527709961,-7.68594455718994,-7.60328531265259,-7.56278610229492,-7.60873031616211,-7.64898061752319,-7.47790813446045,-6.87186551094055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.33875560760498,1.95158231258392,3.61098915338516,5.00331547856331,5.95757409930229,6.46381735801697,6.62578475475311,6.59137916564941,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.20001220703125,2.00849157571793,1.84657829999924,1.75419867038727,1.77009958028793,1.89975601434708,2.1049422621727,2.32836362719536,2.53953319787979,2.76911159604788,0,0,0,0,0,0,0,0,0,0,7.58631789684296,8.09695625305176,8.80773830413818,9.55356955528259,10.1518874168396,10.4754228591919,10.4929556846619,10.2662799358368,9.91283631324768,9.5565128326416,9.28928565979004,9.1559796333313,9.16085839271545,9.28419756889343,9.49465441703796,9.74951148033142,9.98585391044617,10.1151022911072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.88759066164494,4.15400856733322,4.45890974998474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.20010232925415,-1.45155048370361,-2.21349143981934,-2.59008026123047,-2.84807300567627,-3.24916839599609,-3.921058177948,-4.82437038421631,-5.8116774559021,-6.72610330581665,-7.47863578796387,-8.06551933288574,-8.52575254440308,-8.8702917098999,-9.02689504623413,-8.83552503585815,-8.1045126914978,-6.70780849456787,-4.67894983291626,-2.25173377990723,0.1851487159729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.25240516662598,5.76537108421326,7.1026554107666,8.05096817016602,8.59673619270325,8.87500381469727,9.05328893661499,9.2283148765564,9.39070129394531,9.46080589294434,9.35589265823364,9.04028797149658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.23226907849312,1.21399664878845,1.29634594917297,1.57472383975983,2.12508326768875,2.93235571309924,3.86560094356537,4.72576177120209,5.34446430206299,5.6758291721344,5.82419490814209,5.98744940757751,0,0,0,0,0,0,0,0,8.03083658218384,7.72813928127289,7.65513396263123,7.81663346290588,8.157306432724,8.59590566158295,9.05413639545441,9.47385764122009,9.82467925548553,10.1060335636139,10.3447232246399,10.585545539856,10.8734364509583,11.2293438911438,11.6275424957275,11.984203338623,12.165901184082,12.0213885307312,11.4320394992828,10.3675832748413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.421421527862549,-1.18475675582886,-1.43528127670288,-1.43200969696045,-1.48632907867432,-1.7972936630249,-2.38480567932129,-3.13579273223877,-3.91125202178955,-4.63525676727295,-5.31565380096436,-5.99602603912354,-6.68036270141602,-7.28140449523926,-7.62300205230713,-7.49602127075195,-6.74236392974854,-5.33241081237793,-3.40418148040771,-1.24469470977783,0.789333343505859,2.39131593704224,3.422447681427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.73428783938289,3.71299117803574,4.86107766628265,5.82999408245087,6.35466420650482,6.39627242088318,6.14923286437988,5.91389799118042,5.91851472854614,6.19758653640747,6.58923411369324,6.83707547187805,6.72465419769287,6.16543173789978,5.21292102336884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.72804000973701,-1.56447955965996,-1.29851573705673,-0.78999799489975,0.0814375877380371,1.30185568332672,2.6771088540554,3.89573812484741,4.67346572875977,4.89829981327057,4.69266045093536,4.35544171929359,4.21574459969997,4.47722122073174,5.13193701766431,5.97903555631638,6.72610974311829,7.1144495010376,7.00946736335754,6.42782080173492,5.50916707515717,4.4608119726181,3.50177752971649,2.81851124763489,2.53215084969997,2.67651587724686,3.19170951843262,3.94202375411987,4.75993448495865,5.50353878736496,6.10318529605865,6.57392501831055,6.98604559898376,7.40706372261047,7.84448504447937,8.21805787086487,8.37661194801331,8.15395796298981,7.44194412231445,6.2524328827858,4.74385187774897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3.73309278488159,-3.28519630432129,-3.13233661651611,-3.2963809967041,-3.59408283233643,-3.79905414581299,-3.80448532104492,-3.68360710144043,-3.62281513214111,-3.78367137908936,-4.18771743774414,-4.69231128692627,-5.06206226348877,-5.08593940734863,-4.67295360565186,-3.88377094268799,-2.89567279815674,-1.92820262908936,-1.16211700439453,-0.675656318664551,-0.411195755004883,-0.181453704833984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.695687294006348,0.108723402023315,0.73827052116394,0.881541132926941,0.396344006061554,-0.575244188308716,-1.65538668632507,-2.41787564754486,-2.60318779945374,-2.23711156845093,-1.59377557039261,-1.03925647214055,-0.855219006538391,-1.13767230510712,-1.80597931146622,-2.68759191036224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5.50304865837097,-5.30611383914948,-5.05296742916107,-4.57662975788116,-3.71714115142822,-2.46715062856674,-1.03631287813187,0.215758800506592,0.947450160980225,1.00947785377502,0.527120590209961,-0.155001640319824,-0.632510900497437,-0.618791103363037,-0.0537443161010742,0.896004676818848,1.92524588108063,2.70996624231339,3.00437222421169,2.69073949754238,1.78857289999723,0.441031515598297,-1.11208608001471,-2.57820785045624,-3.67768716812134,-4.22058165073395,-4.16637408733368,-3.63422548770905,-2.85044211149216,-2.05292403697968,-1.39800834655762,-0.915896236896515,-0.534696221351624,-0.155444741249084,0.266908407211304,0.681184649467468,0.957138061523438,0.949518442153931,0.573944330215454,-0.14202618598938,-1.05328035354614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7.97110795974731,-7.439612865448,-7.47326946258545,-7.81328868865967,-8.00925874710083,-7.70642280578613,-6.85118770599365,-5.69969844818115,-4.64430236816406,-3.98112964630127,-3.76485729217529,-3.82654571533203,-3.92117023468018,-3.89675045013428,-3.7780647277832,-3.72586345672607,-3.9138879776001,-4.40965747833252,-5.12724018096924,-5.86606407165527,-6.39683628082275,-6.54009366035461,-6.20324552059174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6.5009560585022,-6.08466559648514,-5.76077371835709,-5.79529842734337,-6.43068218231201,-7.69822883605957,-9.3355278968811,-10.874361038208,-11.8550534248352,-12.0426602363586,-11.5209102630615,-10.618173122406,-9.72113299369812,-9.09079265594482,-8.77913093566895,-8.67159128189087,-8.60332643985748,-8.46400033310056,-8.23074567317963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7.90368294715881,-7.90446221828461,-7.88499641418457,-7.67144930362701,-7.087432295084,-6.10229426622391,-4.89803028106689,-3.80629563331604,-3.14830803871155,-3.07119011878967,-3.47377800941467,-4.05941462516785,-4.4782167673111,-4.47673106193542,-3.98184680938721,-3.09548044204712,-2.02928328514099,-1.03018641471863,-0.33071756362915,-0.122956037521362,-0.533543400466442,-1.58521300554276,-3.1581654548645,-4.98564064502716,-6.71138739585876,-8.00092530250549,-8.66003441810608,-8.69939970970154,-8.30831694602966,-7.75050663948059,-7.23866319656372,-6.85438179969788,-6.55054843425751,-6.22332715988159,-5.80191874504089,-5.30081501603127,-4.80851948261261,-4.42899835109711,-4.21876454353333,-4.1586925983429,-4.17248892784119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-11.0366402864456,-10.9805860519409,-11.7094349861145,-12.657511472702,-13.1329665184021,-12.6972336769104,-11.3755006790161,-9.59141635894775,-7.89083003997803,-6.63951683044434,-5.87820339202881,-5.402268409729,-4.98628234863281,-4.58856678009033,-4.39865684509277,-4.70443439483643,-5.67543792724609,-7.20968055725098,-8.94338464736938,-10.4171962738037,-11.2956848144531,-11.5118147134781,-11.2587769031525,-10.8469638824463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9.15759116411209,-9.26070088148117,-9.48225319385529,-10.0376839637756,-11.0943307876587,-12.6127638816833,-14.29909324646,-15.7109894752502,-16.4611921310425,-16.3992233276367,-15.6657404899597,-14.5935702323914,-13.5212159156799,-12.6303188800812,-11.8935856819153,-11.1460392475128,-10.2200992107391,-9.05691888928413,-7.73327195644379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6.72877836227417,-7.06906628608704,-7.41787552833557,-7.71731019020081,-7.81307005882263,-7.55868595838547,-6.92603987455368,-6.04703521728516,-5.15680134296417,-4.47406232357025,-4.09477245807648,-3.96220338344574,-3.92362368106842,-3.82661950588226,-3.58922064304352,-3.2061870098114,-2.70602905750275,-2.10919225215912,-1.43069064617157,-0.727576315402985,-0.146278411149979,0.0853073596954346,-0.258541911840439,-1.27789142727852,-2.85773313045502,-4.67659044265747,-6.32197445631027,-7.45705008506775,-7.95015907287598,-7.89934343099594,-7.54599964618683,-7.13414299488068,-6.79696691036224,-6.52733790874481,-6.23229593038559,-5.82162845134735,-5.26891231536865,-4.61221039295197,-3.90903639793396,-3.1912796497345,-2.45982646942139,-1.72351479530334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9.93447533249855,-10.6952747106552,-12.2884283065796,-13.9380307197571,-14.8550016880035,-14.6317729949951,-13.4024820327759,-11.6949443817139,-10.0862293243408,-8.8842191696167,-8.02574062347412,-7.23288059234619,-6.30285167694092,-5.32557582855225,-4.67899322509766,-4.80234050750732,-5.89373779296875,-7.73028659820557,-9.73306488990784,-11.2497193813324,-11.893837749958,-11.7463402748108,-11.3014614582062,-11.1865487098694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6.21009695529938,-6.73453265428543,-7.20660150051117,-7.7215940952301,-8.44286918640137,-9.46545076370239,-10.7092971801758,-11.9145934581757,-12.7495155334473,-12.9708828926086,-12.5446991920471,-11.6574440002441,-10.6134781837463,-9.67836451530457,-8.95385146141052,-8.34663653373718,-7.6381459236145,-6.61074090003967,-5.16339263319969,-3.36331605911255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2.08461950719357,-2.7785068154335,-3.40834498405457,-3.88488376140594,-4.1128842830658,-4.03966271877289,-3.68612331151962,-3.13283389061689,-2.46726003289223,-1.73113951086998,-0.911894977092743,0.00993818044662476,0.990447640419006,1.88890990614891,2.51134556531906,2.71808916330338,2.52953210473061,2.15224176645279,1.89046630263329,1.98092478513718,2.44513136148453,3.05250529944897,3.42673392221332,3.24297505617142,2.4066878259182,1.11325918138027,-0.244132101535797,-1.26431745290756,-1.71920031309128,-1.63054275512695,-1.21295443177223,-0.730538606643677,-0.356908857822418,-0.113533854484558,0.0956549644470215,0.395673751831055,0.864242315292358,1.51194715499878,2.31311440467834,3.24289286136627,4.27635909989476,5.34240311384201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4.2912962436676,-5.70564031600952,-7.73161554336548,-9.59508514404297,-10.6417737007141,-10.6441740989685,-9.85984230041504,-8.81868076324463,-7.97707176208496,-7.4542818069458,-7.01045036315918,-6.27151966094971,-5.05034637451172,-3.55004692077637,-2.30870819091797,-1.90675830841064,-2.60931253433228,-4.16532516479492,-5.8974232673645,-7.04754948616028,-7.19018459320068,-6.48030340671539,-5.58912879228592,-5.35279126465321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2269317060709,-0.249320268630981,-0.611525475978851,-1.00378948450089,-1.54852658510208,-2.25434410572052,-2.99271464347839,-3.55248403549194,-3.73987293243408,-3.47143769264221,-2.81601083278656,-1.9699279665947,-1.18013536930084,-0.647935450077057,-0.448353290557861,-0.491991877555847,-0.543776631355286,-0.29857873916626,0.504335463047028,1.96570390462875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.97256100177765,3.1719925403595,2.55016589164734,2.21052169799805,2.1403169631958,2.23949718475342,2.39653933048248,2.57606327533722,2.86788856983185,3.45752018690109,4.51683440804482,6.06479281187057,7.87898993492126,9.526771068573,10.5240485668182,10.5556347370148,9.64392328262329,8.16780650615692,6.70815014839172,5.78999650478363,5.65135449171066,6.15703880786896,6.8991379737854,7.42553108930588,7.47151309251785,7.07394847273827,6.51718288660049,6.15420007705688,6.2103511095047,6.67760920524597,7.34723901748657,7.94726634025574,8.29609680175781,8.38513875007629,8.35472321510315,8.39521086215973,8.64431464672089,9.14155077934265,9.85125112533569,10.7140717506409,11.6710438728333,12.6336531639099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.82484912872314,1.36143922805786,-0.232136726379395,-1.44506072998047,-1.99098682403564,-1.93139457702637,-1.61026000976562,-1.43132972717285,-1.6008129119873,-1.98658561706543,-2.18452072143555,-1.76517105102539,-0.563560485839844,1.16218566894531,2.81162166595459,3.73589420318604,3.5906810760498,2.54666471481323,1.22674751281738,0.387399196624756,0.509064197540283,1.51941394805908,2.80906057357788,3.54230356216431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.96013601124287,6.16634637676179,6.40320533514023,6.42591857910156,6.16646099090576,5.74902549386024,5.3919929265976,5.27626693248749,5.46357798576355,5.89659738540649,6.45117735862732,6.98601388931274,7.35968893766403,7.43172433972359,7.08906874060631,6.31735593080521,5.28359895944595,4.35817301273346,4.01865482330322,4.64757323265076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.40318515151739,7.87874758243561,7.63748586177826,7.74732995033264,8.05024349689484,8.27379322052002,8.21177649497986,7.87727677822113,7.53957140445709,7.61187374591827,8.43550992012024,10.0672009587288,12.1845300197601,14.1726472377777,15.3638818264008,15.3224120140076,14.038304567337,11.9366987943649,9.69829601049423,7.97851902246475,7.15819841623306,7.23679882287979,7.90439826250076,8.73962042853236,9.4248026907444,9.87134915590286,10.2036979198456,10.6281606256962,11.2713776528835,12.0832405090332,12.856903553009,13.3488490581512,13.424286365509,13.1408710479736,12.7221503257751,12.4400358200073,12.4794764518738,12.8653779029846,13.4871644973755,14.1897554397583,14.857578754425,15.4290971755981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.91362333297729,5.55383491516113,5.6976752281189,6.13238334655762,6.51186180114746,6.51887130737305,6.01046371459961,5.09316730499268,4.09871387481689,3.46344089508057,3.54777336120605,4.463791847229,5.99024105072021,7.63121318817139,8.81486225128174,9.15448522567749,8.6446795463562,7.68182182312012,6.87919235229492,6.75919055938721,7.48159837722778,8.75826025009155,10.0066475868225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.08767296373844,8.32327318191528,9.2956383228302,9.67624998092651,9.51527333259583,9.13795208930969,8.89025139808655,8.9232349395752,9.15252149105072,9.38592514395714,9.49091011285782,9.46128630638123,9.34128201007843,9.09237098693848,8.54271292686462,7.49633711576462,5.945556640625,4.22740662097931,2.97551083564758,2.84498405456543,4.14640307426453,6.60694193840027,0,0,0,0,0,0,0,0,7.66354513168335,9.48582816123962,11.384425163269,12.7709112167358,13.278612613678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.95324718952179,9.04154658317566,9.4438185095787,10.1357302367687,10.8186556100845,11.0959391593933,10.7200498078018,9.77153211832047,8.66432321071625,7.96498477458954,8.11599045991898,9.20592173933983,10.9051361083984,12.5983135700226,13.644896030426,13.6404190063477,12.5617816746235,10.7449457943439,8.72567981481552,7.02883931994438,5.9982433244586,5.7252362370491,6.08352021127939,6.83404433727264,7.74419242143631,8.66896343231201,9.5650018453598,10.4414196610451,11.2828374952078,11.9960858821869,12.4215116500854,12.4125611782074,11.9413199424744,11.1614918708801,10.3752131462097,9.90530443191528,9.93791580200195,10.428484916687,11.1330349445343,11.7497081756592,12.0830087661743,12.1248893737793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.71120929718018,5.84985685348511,7.42602920532227,8.76368570327759,9.37290573120117,9.13574361801147,8.27713584899902,7.18887042999268,6.23982191085815,5.67347097396851,5.60298824310303,6.04455089569092,6.92573976516724,8.06286191940308,9.15816974639893,9.87256193161011,9.9704442024231,9.46236848831177,8.6450252532959,7.98969888687134,7.92606544494629,8.64040803909302,10.0013399124146,11.6453337520361,13.1555199623108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.14623546600342,3.12452137470245,5.16400098800659,6.49911212921143,6.8277006149292,6.42141258716583,5.86087656021118,5.60852646827698,5.72540378570557,5.91089367866516,5.79903721809387,5.26493179798126,4.50622725486755,3.85015535354614,3.45181512832642,3.13362598419189,2.50883078575134,1.3144291639328,-0.288144707679749,-1.68089807033539,-2.08541059494019,-1.02247881889343,1.34892630577087,0,0,0,0,0,0,0,0.611458603292704,1.79507554322481,4.01509469747543,6.58692193031311,8.78229460865259,10.0540102720261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.91773623228073,4.83207476139069,5.57410168647766,6.41449069976807,7.48391079902649,8.64117312431335,9.51292824745178,9.69422554969788,8.99638938903809,7.59158372879028,5.96176773309708,4.67560648918152,4.12022268772125,4.33660632371902,5.04081243276596,5.79987354576588,6.2485659122467,6.22714424133301,5.78752183914185,5.10168671607971,4.35454916954041,3.68768644332886,3.20345383882523,2.99046581983566,3.12550614215434,3.64026567339897,4.48180484771729,5.50561049580574,6.51460951566696,7.32032752037048,7.78748023509979,7.84275698661804,7.46415328979492,6.68349528312683,5.61502242088318,4.48204064369202,3.59144777059555,3.23004265129566,3.51868629455566,4.3125219643116,5.23167270421982,5.83429455757141,5.8473482131958,5.31673359870911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.55893874168396,0.686283349990845,3.08369207382202,4.68775463104248,5.09018528461456,4.53681826591492,3.65483832359314,3.00925803184509,2.79146480560303,2.82010793685913,2.80220770835876,2.62959098815918,2.48268175125122,2.6759672164917,3.37534189224243,4.41009092330933,5.32741975784302,5.66110944747925,5.235182762146,4.30372762680054,3.44222688674927,3.26466774940491,4.13373708724976,6.00935512781143,8.47655081748962,10.8972539901733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,-5.03760433197021,-2.58992147445679,-0.479441165924072,0.501205921173096,0.241482973098755,-0.673198699951172,-1.4098653793335,-1.46995377540588,-0.996673703193665,-0.610099911689758,-0.913485437631607,-2.0388191640377,-3.55348479747772,-4.77730619907379,-5.26409995555878,-5.09499728679657,-4.77927170693874,-4.84615290164948,-5.42787957191467,-6.13157486915588,-6.28766703605652,-5.40209341049194,-3.50878083705902,0,0,0,0,0,0,0,-3.31177973747253,-2.59330071508884,-1.17716693878174,0.45859956741333,1.77991724014282,2.37147283554077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2.20859557390213,-0.866984128952026,0.523347735404968,2.00362730026245,3.52003827691078,4.84998950362206,5.65985584259033,5.67922687530518,4.88117134571075,3.53652560710907,2.08918811380863,0.92242157459259,0.168445587158203,-0.312450170516968,-0.771966457366943,-1.35004138946533,-1.94779253005981,-2.28861451148987,-2.12192368507385,-1.42050933837891,-0.426208734512329,0.492923736572266,1.07537198066711,1.32668082416058,1.49672827124596,1.89159625768661,2.65061527490616,3.63749378919601,4.50968155264854,4.90842571854591,4.64019566774368,3.74368512630463,2.42937064170837,0.964048862457275,-0.410004079341888,-1.48827421665192,-2.08958365023136,-2.0804408788681,-1.45805478096008,-0.435765504837036,0.563977301120758,1.05961778759956,0.751420259475708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8.56117749214172,-5.97878623008728,-3.66756796836853,-2.57058322429657,-2.81198012828827,-3.71802008152008,-4.33505177497864,-4.08646845817566,-3.13123595714569,-2.20099061727524,-2.04903453588486,-2.89876568317413,-4.26571369171143,-5.261195063591,-5.16316485404968,-3.8730616569519,-1.97196364402771,-0.362480401992798,0.258671760559082,-0.227041721343994,-1.33657217025757,-2.27717262506485,-2.35321622341871,-1.27046853303909,0.769242465496063,3.16320449113846,5.10884684324265,5.84160822629929,4.8733936548233,2.19048047065735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,-7.56178712844849,-5.48061561584473,-4.16111898422241,-4.2085280418396,-5.40464615821838,-6.83456498384476,-7.50002384185791,-6.99418032169342,-5.77010351419449,-4.82247081398964,-5.0095911026001,-6.48172426223755,-8.59160017967224,-10.3204367160797,-10.9073126316071,-10.2590706348419,-8.90086460113525,-7.55557298660278,-6.6749415397644,-6.23481416702271,-5.88488101959229,-5.28861522674561,-4.38405135087669,0,0,0,0,0,0,0,-1.55984410643578,-1.35327130556107,-1.35379099845886,-1.66087198257446,-2.37068033218384,-3.54049277305603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3.02371126413345,-1.23097085952759,0.367251873016357,1.55772066116333,2.16088140010834,2.13952803611755,1.6733472943306,1.10161533951759,0.72905707359314,0.609713554382324,0.474313259124756,-0.11055850982666,-1.42347383499146,-3.31493854522705,-5.18186664581299,-6.24329876899719,-5.96750664710999,-4.38515186309814,-2.08347344398499,0.123211145401001,1.64173579216003,2.38739930093288,2.739029109478,3.21078968048096,4.06832569092512,5.14028960466385,5.93232464790344,5.94800615310669,4.99628853797913,3.29528284072876,1.33433032035828,-0.386037588119507,-1.55919462442398,-2.11726057529449,-2.14054137468338,-1.74668991565704,-1.05865406990051,-0.255915403366089,0.377520181238651,0,0,0,0,0,0,0,0,0,0,0,0,0,-3.65827894210815,-3.89623975753784,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-11.3619871139526,-9.15912818908691,-7.60668742656708,-7.40582811832428,-8.32536888122559,-9.36663341522217,-9.43889784812927,-8.10840153694153,-5.92361295223236,-4.09428209066391,-3.72659170627594,-5.1082911491394,-7.50011372566223,-9.55453276634216,-10.0856442451477,-8.71076798439026,-5.99755144119263,-3.08242237567902,-1.03963567316532,-0.384306699037552,-0.947574406862259,-2.10510921478271,-3.15275239944458,-3.60752654075623,-3.33458465337753,-2.53000260517001,-1.63447046279907,-1.21024465560913,-1.76631355285645,-3.53739190101624,-6.30331969261169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,-4.31691551208496,-3.26788663864136,-3.27731132507324,-4.60951662063599,-6.68750083446503,-8.36950373649597,-8.65663623809814,-7.35740089416504,-5.2500786781311,-3.62176662683487,-3.48319420218468,-4.96746814250946,-7.28187155723572,-9.20540332794189,-9.78057193756104,-8.76514005661011,-6.61829018592834,-4.12253777682781,-1.94950425624847,-0.439702868461609,0.349537491798401,0.480631563812494,0.0502891540527344,0,0,0,0,0,0,0,6.05304312705994,6.03900074958801,4.78539204597473,2.63371360301971,-0.0212998390197754,-2.87613379955292,-5.66634172201157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3.05006968975067,-1.40065512061119,-0.094939611852169,0.768717139959335,1.21434380114079,1.42488999664783,1.72797256708145,2.45975911617279,3.7343282699585,5.26110601425171,6.37836456298828,6.35794305801392,4.84542894363403,2.16833686828613,-0.714828491210938,-2.6451621055603,-2.84767436981201,-1.32440710067749,1.18445491790771,3.64883494377136,5.3275705575943,6.12285010516644,6.5067338347435,7.09738183021545,8.18036818504333,9.49094784259796,10.3844791054726,10.2640731334686,8.97563457489014,6.91971588134766,4.8280890583992,3.36744022369385,2.82372295856476,3.03975343704224,3.59979736804962,4.10260102152824,4.33947812020779,4.29340928792953,4.01500177383423,0,0,0,0,0,0,0,0,0,0,0,0,0.739388465881348,-0.501162052154541,-1.22280883789062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7.98038506507874,-6.55075979232788,-5.9013979434967,-6.37329232692719,-7.4890615940094,-8.19118714332581,-7.50994992256165,-5.24290728569031,-2.18695375323296,0.260760188102722,0.907558962702751,-0.521725863218307,-3.20274883508682,-5.65998423099518,-6.55545830726624,-5.34286499023438,-2.4377309679985,1.11581113934517,4.20967149734497,6.11790013313293,6.63138246536255,5.92640972137451,4.35612535476685,2.3207990527153,0.231295585632324,-1.52559459209442,-2.69105869531631,-3.26667267084122,-3.54878783226013,-3.9762327671051,-4.84889101982117,-6.10611772537231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.47313022613525,2.03485345840454,2.52595329284668,2.36156034469604,1.06245756149292,-1.25465559959412,-3.75511772930622,-5.28043985366821,-5.03494688868523,-3.11308133602142,-0.500938177108765,1.47002071142197,1.87723034620285,0.701021328568459,-1.22379311919212,-2.72206723690033,-2.90425705909729,-1.53366076946259,1.01039886474609,4.03914046287537,6.86736845970154,8.95867562294006,9.9275022149086,9.54968237876892,7.88201689720154,0,0,0,0,0,0,0,15.5973830223083,15.5403409004211,13.6322522163391,10.6254508495331,7.27165746688843,4.01530209183693,1.03288120031357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.936537027359009,1.68837666511536,2.23299789428711,2.73880004882812,3.46201372146606,4.71635937690735,6.74037337303162,9.48610138893127,12.4697980880737,14.846736907959,15.7551951408386,14.7789969444275,12.2529377937317,9.18684673309326,6.80386257171631,5.93698263168335,6.63784098625183,8.23171103000641,9.77873569726944,10.6471225321293,10.8404466882348,10.8881344795227,11.3966770172119,12.5726943016052,14.0368385314941,15.0444507598877,14.9610681533813,13.6802730560303,11.7175717353821,9.92772579193115,9.02801299095154,9.21843063831329,10.1129915714264,10.9976589679718,11.2387392520905,10.598258972168,9.29504823684692,7.81554937362671,0,0,0,0,0,0,0,0,0,0,0,0,6.53096807003021,5.61531090736389,4.65387046337128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.750578165054321,-0.172236442565918,-0.135089874267578,-0.650543928146362,-1.24326372146606,-1.14064002037048,0.260499477386475,2.94124245643616,6.14587211608887,8.72506135702133,9.75439047813416,9.05014276504517,7.26834583282471,5.54088073968887,4.8907179236412,5.77964985370636,8.01502108573914,10.9825592041016,13.9818096160889,16.4368333816528,17.9178328514099,18.0844850540161,16.7090950012207,13.8243738412857,9.87830984592438,5.71300435066223,2.28975820541382,0.276941299438477,-0.249545812606812,0.208819150924683,0.901768445968628,1.2563648223877,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,8.22367525100708,8.46652913093567,8.27609086036682,7.21636325120926,5.16315847635269,2.55884373188019,0.310184673406184,-0.661168098449707,0.0486359596252441,2.05824971199036,4.39059740304947,6.01421630382538,6.40186858177185,5.76873528957367,4.87411034107208,4.5545392036438,5.30268013477325,7.12400617077947,9.67482423782349,12.494278550148,15.1317932605743,17.1280456781387,17.9830825023819,17.2777611017227,14.9647281169891,11.6373240947723,0,0,0,0,0,0,0,20.966579914093,18.9165115356445,16.2274582982063,13.7785764336586,11.8547848165035,10.2269733548164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.68364000320435,4.53364706039429,5.91291189193726,7.91414546966553,10.5962243080139,13.8521585464478,17.2796831727028,20.2037473767996,21.9156832098961,22.0256658196449,20.7111250162125,18.6745970547199,16.8012858629227,15.7069006562233,15.4521187543869,15.5999853014946,15.5725852251053,15.0686555504799,14.2672175914049,13.687783062458,13.8076046705246,14.6952016353607,15.9082782268524,16.7294936180115,16.5960259437561,15.4549245834351,13.8215335607529,12.4995931088924,12.1245577186346,12.7936985492706,13.9940130710602,14.868227481842,14.6708669662476,13.1663012504578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.0397276878357,10.9192042350769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.49406552314758,5.30737328529358,5.1426477432251,5.18036127090454,5.62273406982422,6.67016553878784,8.40827417373657,10.6884627342224,13.1216627061367,15.2309135198593,16.6838338375092,17.4492974281311,17.7739939689636,18.0045857429504,18.3940320014954,19.029776096344,19.9090142250061,21.0536756515503,22.5217385292053,24.2664909362793,25.9499168395996,26.8997507095337,26.3305125236511,23.7583403587341,19.369708776474,14.0825113179162,9.20955967903137,5.88185787200928,4.553382396698,4.86537742614746,5.93054628372192,6.84135381877422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,9.18042802810669,9.56736946105957,9.79635381698608,9.34570360183716,7.94957041740417,5.84015011787415,3.70043981075287,2.32739126682281,2.19627644121647,3.19581401348114,4.70722377300262,5.98410165309906,6.59441876411438,6.64615714550018,6.66424465179443,7.2206757068634,8.57821393013,10.5800547599792,12.8260757923126,14.9644714593887,16.8553272262216,18.4853293895721,19.7340413928032,20.2360504940152,19.5250414609909,17.4161789417267,14.3548055887222,11.4191291332245,9.87129306793213,0,0,0,0,0,18.3374271392822,16.3130486011505,14.6179840564728,14.0466117858887,14.5398998260498,15.3268531560898,15.4701526165009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10.751718044281,13.2046935558319,15.7020766735077,18.0866103172302,20.0945994853973,21.4817218780518,22.1627006530762,22.2491574287415,21.953337430954,21.4318447113037,20.6918339729309,19.6344640254974,18.204273223877,16.5293697118759,14.9369325041771,13.8137835860252,13.3899611830711,13.5824074521661,14.0063555538654,14.1636987924576,13.7117455005646,12.6641647815704,11.4064154624939,10.5029354095459,10.3850815296173,11.0785146951675,12.1231756210327,12.7522275447845,12.2656030654907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.71594333648682,10.1460223197937,10.9279656410217,11.8905534744263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.84278303384781,6.98155546188354,6.19478034973145,6.1080470085144,6.938307762146,8.45904874801636,10.1901793479919,11.6873159408569,12.7804136276245,13.6535131931305,14.7350194752216,16.4515316486359,18.9576396942139,21.9795575141907,24.8704786300659,26.8820123672485,27.5364608764648,26.9050769805908,25.6190567016602,24.5685677528381,24.4244475364685,25.2377033233643,26.3548555374146,26.7230215072632,25.4366798400879,22.2337121963501,17.6656184196472,12.8493378162384,8.9393173456192,6.61075830459595,5.82106781005859,5.9514467716217,6.21149754524231,6.06215608119965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,4.66556295752525,5.5406739115715,6.17115376889706,5.8820589184761,4.60791558027267,2.94163984060287,1.75019073486328,1.61552196741104,2.46930662635714,3.65859058499336,4.39535766839981,4.29319339990616,3.63964888453484,3.22754740715027,3.85550844669342,5.82078123092651,8.72745203971863,11.7232105731964,13.9980835914612,15.214203119278,15.5949310064316,15.6417229771614,15.7024708390236,15.7109322249889,15.2856306806207,14.1103610098362,12.304799079895,10.4876017570496,9.44704484939575,9.62070608139038,0,0,0,0,9.01147150993347,7.00956201553345,6.26449775695801,7.35913419723511,9.95077323913574,12.9301159381866,14.9575862884521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.29246461391449,7.83601114153862,8.80669009685516,10.5383386611938,13.0102140903473,15.8511605262756,18.4768805503845,20.2993812561035,20.9329566955566,20.3232293128967,18.7515459060669,16.7115426063538,14.7115329504013,13.092302441597,11.9427667856216,11.1392019689083,10.4669867753983,9.74518918991089,8.89340257644653,7.93267393112183,6.95591592788696,6.10260105133057,5.53493452072144,5.38496613502502,5.65850746631622,6.14148357883096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.26966762542725,6.09903252124786,4.89584940671921,4.1506639122963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.29878380894661,5.86475664377213,5.09174996614456,3.63447260856628,2.53232145309448,2.63373374938965,4.11534690856934,6.37652158737183,8.38132333755493,9.2686185836792,8.89050674438477,7.96671032905579,7.74722146987915,9.34783279895782,13.1096830368042,18.3322854042053,23.5321640968323,27.1015005111694,28.0323181152344,26.3428912162781,23.0116972923279,19.4788062572479,16.9850487709045,16.0699737071991,16.4408507347107,17.2230534553528,17.4257574081421,16.3877515792847,14.0143623352051,10.7392945289612,7.26993012428284,4.25764246284962,2.04264855384827,0.580947160720825,-0.431309700012207,-1.31074738502502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.68420654535294,0.0828203194541857,1.37844598293304,1.43422436714172,0.435017794370651,-0.657975018024445,-0.818360149860382,0.306541442871094,2.13838028907776,3.56077527999878,3.68872547149658,2.4951491355896,0.880516052246094,0.143744468688965,1.19663697481155,4.01391792297363,7.64371800422668,10.744713306427,12.3029670715332,12.1033432483673,10.7155879735947,9.06550186872482,7.89473688602448,7.43563330173492,7.44886565208435,7.52706098556519,7.41687726974487,7.14047765731812,6.86579036712646,6.65923500061035,6.33067035675049,0,0,0,-0.910416126251221,-2.68341541290283,-2.95876836776733,-1.40642070770264,1.63355779647827,5.22501806914806,8.14997434616089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.288820147514343,-1.83839213848114,-2.47237157821655,-1.33297291398048,1.76528713107109,6.21570837497711,10.8445243835449,14.3988862037659,16.0787763595581,15.8499803543091,14.3769645690918,12.6139626502991,11.287329852581,10.5639324188232,10.0845756530762,9.30989729613066,7.93464970588684,6.0956711769104,4.25615787506104,2.87618350982666,2.11904907226562,1.79739189147949,1.57047748565674,1.21673774719238,0.760647058486938,0,0,0,0,0,0,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.9292676448822,-0.272552967071533,-2.85458052158356,-4.87687304615974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.0619224309921265,1.0122834444046,1.19523870944977,0.334508419036865,-1.06898403167725,-2.05287551879883,-1.74441814422607,0.0524301528930664,2.63023090362549,4.71281385421753,5.20266199111938,3.90584659576416,1.77566003799438,0.485287666320801,1.54213571548462,5.4402049779892,11.3307693004608,17.3876008987427,21.6477818489075,22.8645482063293,20.9456088542938,16.82859146595,11.9547790884972,7.66871917247772,4.81535112857819,3.62537825107574,3.81045979261398,4.74191376566887,5.64310228824615,5.79275518655777,4.73799335956573,2.45602107048035,-0.633806467056274,-3.86019122600555,-6.6132915019989,-8.60007238388062,-9.87445163726807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,-4.85108441114426,-2.10962748527527,-0.227241277694702,0.0544064044952393,-0.786171406507492,-1.45467840135098,-0.808955776505172,1.30527561903,3.93089985847473,5.65711903572083,5.5901894569397,3.97344970703125,2.05280923843384,1.29815673828125,2.50110024213791,5.31461906433105,8.48206424713135,10.5613765716553,10.678647518158,8.89103555679321,6.02825954556465,3.19576621055603,1.26553058624268,0.602926254272461,1.07962656021118,2.25934982299805,3.60456228256226,4.620774269104,4.94079780578613,4.38282775878906,2.98776912689209,1.00693035125732,0,0,-4.76517295837402,-5.71763837337494,-5.95605146884918,-5.39835834503174,-4.02264596708119,-1.99836665391922,0.192290544509888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9.08509087562561,-8.46241855621338,-5.26451563835144,-0.238148331642151,5.12103264033794,9.23377025127411,11.1706674098969,11.0539016723633,9.89060932397842,8.92481410503387,8.89231169223785,9.63021767139435,10.2739260941744,9.89658552408218,0,0,0,1.64229202270508,1.36219787597656,1.72786283493042,1.89224743843079,1.28590667247772,-0.0408667325973511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2.10509300231934,-2.69379341229796,-2.85625344514847,-2.52744591236115,-2.14513206481934,-2.19859099388123,-2.72332811355591,-3.15547323226929,-2.69664669036865,-0.949273586273193,1.65132856369019,3.97134923934937,4.85179591178894,3.89728951454163,1.8432469367981,0.223845481872559,0.520803928375244,3.31502246856689,7.95288926362991,12.8962910175323,16.4965178966522,17.7101709842682,16.3839266300201,13.0712849721313,8.63304054737091,3.92793560028076,-0.28528904914856,-3.34367775917053,-4.76211953163147,-4.45476597547531,-2.93641620874405,-1.26230025291443,-0.612941741943359,-1.70992398262024,-4.42739915847778,-7.88154673576355,-10.9621634483337,-12.9561347961426,-13.8409261703491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0.918003559112549,2.95923829078674,3.16985583305359,2.31331863999367,1.8856293708086,3.02293759770691,5.69363570213318,8.73190999031067,10.659411907196,10.6966574192047,9.26398822665215,7.65874135494232,7.17135262489319,8.25811767578125,10.2984085083008,12.0325329303741,12.3315570354462,10.7927395105362,7.84802225232124,4.43150854110718,1.50197887420654,-0.289093017578125,-0.689640998840332,0.202674388885498,1.99790668487549,4.05395412445068,5.58859157562256,5.93631076812744,4.87718677520752,2.82407093048096,0.673887252807617,0,0,0,0.427602052688599,0.132611453533173,-1.1818140745163,-2.8915211558342,-4.02512788772583,-3.94017245993018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7.43839597702026,-6.97894376516342,-4.09243893623352,0.441831588745117,5.12813258171082,8.46053811907768,9.69103842973709,9.20384627580643,8.24055981636047,8.11172389984131,9.37000560760498,11.4676821231842,13.1248860359192,13.1752798557281,0,0,0,4.60598850250244,4.94247007369995,5.98646354675293,6.50388073921204,5.66402953141369,3.52558624744415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.613788902759552,-1.82891249656677,-3.2160165309906,-2.95219850540161,-1.51819276809692,0.0301980972290039,0.907089233398438,1.15827369689941,1.54778575897217,2.88724756240845,5.33291578292847,8.18574577569962,10.3411400318146,11.0520694255829,10.4473722577095,9.44190683960915,9.12554317712784,10.0811536163092,12.0945428609848,14.3959953784943,16.1804206371307,16.9933953285217,16.7442934513092,15.4535818099976,13.0571429729462,9.50338959693909,5.06967231631279,0.567418575286865,-2.86254273355007,-4.34325450658798,-3.86356735229492,-2.41753083467484,-1.4928263425827,-2.19141745567322,-4.56445109844208,-7.62841463088989,-10.0573279857635,-11.061381816864,-10.829327583313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,7.10925678908825,8.71743357181549,8.59464550018311,7.69909834861755,7.49304485321045,8.90034532546997,11.670884847641,14.5896372795105,16.3479809761047,16.4313158988953,15.3982920646667,14.3946785926819,14.2965550422668,15.1105072200298,16.0264645814896,16.0254955887794,14.5684328973293,11.8936057090759,8.79027366638184,6.10042572021484,4.33947801589966,3.64564990997314,3.95603466033936,5.14145374298096,6.94271373748779,8.81603050231934,9.95654296875,9.65336799621582,7.81496620178223,5.25814247131348,3.42347145080566,0,0,0,0,11.4305572509766,8.34482610225677,3.58725916594267,-0.782712355256081,-3.06549942493439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.54855966567993,6.90250730514526,10.01131939888,11.7547520548105,11.772375151515,10.7109606266022,9.85901093482971,10.3475370407104,12.4064493179321,15.166787147522,17.1650018692017,17.2480478286743,0,0,0,9.04800796508789,9.83657360076904,11.2585079669952,11.9306444227695,10.9326836057007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.21643972396851,6.95150971412659,3.73498356342316,0.437435150146484,-1.03762340545654,0.0996780395507812,3.12673950195312,6.39639186859131,8.47440242767334,9.0358943939209,8.94422101974487,9.53062200546265,11.632964849472,15.0643184185028,18.8146576881409,21.7520232200623,23.279061794281,23.5186176300049,23.0114212036133,22.2645201683044,21.5278029441833,20.9016528129578,20.5556387901306,20.7500104904175,21.5693254470825,22.6004557609558,22.9177165031433,21.5316920280457,18.0658178329468,13.1643102169037,8.25765442848206,4.75655770301819,3.19353747367859,2.92099583148956,2.61104521155357,1.22399739921093,-1.24285459518433,-3.77300092577934,-5.10599184036255,-4.69926750659943,-3.16039335727692,-1.82052659988403,-1.7618625164032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,12.1087560653687,12.8112621307373,12.2912662029266,11.5405248403549,11.7104898691177,13.2932598590851,15.7781522274017,18.0318534374237,19.1096813678741,18.8912103772163,18.0796177387238,17.5927333831787,17.8283643722534,18.3642773628235,18.3047542572021,16.989513874054,14.5191006660461,11.7147874832153,9.57712459564209,8.67798233032227,8.93138790130615,9.85038089752197,10.9991397857666,12.2226972579956,13.4779243469238,14.4856662750244,14.6246881484985,13.29927110672,10.5705103874207,7.51485681533813,5.87122869491577,0,0,0,0,0,0,9.56007933616638,3.48972809314728,-0.0703489780426025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.2378394454718,12.9352804422379,12.3909502029419,13.3283519744873,15.5784902572632,18.0950059890747,19.5302085876465,19.0329918861389,0,0,0,10.9508423805237,11.7529773712158,13.0390753746033,13.5829334259033,12.5988624095917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.83438241481781,8.29580970108509,5.33931684494019,2.8352575302124,2.58820056915283,5.17080974578857,9.54798412322998,13.7441029548645,16.0957837104797,16.2508111000061,15.2862346172333,14.9356164932251,16.4936633706093,20.1133346557617,24.8636059761047,29.3744297027588,32.5571794509888,33.9614524841309,33.6923885345459,32.1388258934021,29.8119006156921,27.3651084899902,25.6102981567383,25.3072052001953,26.7330760955811,29.3223791122437,31.7356824874878,32.4586477279663,30.6274213790894,26.5386996269226,21.464891910553,16.8615131378174,13.4990347623825,11.1223322153091,8.87057685852051,6.12618923187256,3.13657921552658,0.913582503795624,0.462602257728577,1.91668611764908,4.25232148170471,5.85448598861694,5.56724977493286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,11.4147268310189,11.0782467126846,11.7808442115784,13.4648236632347,15.3812588453293,16.5906530618668,16.6181707382202,15.7749123573303,14.8929681777954,14.6642293930054,15.0843677520752,15.4373178482056,14.8506269454956,13.0120306015015,10.5029306411743,8.48415946960449,7.95545959472656,9.12843894958496,11.3579015731812,13.6431789398193,15.2799634933472,16.1556949615479,16.5037631988525,16.4009561538696,15.5181574821472,13.4174513816833,10.1916184425354,6.87235736846924,5.12438631057739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.1813600063324,12.3144826889038,12.5076608657837,13.9196801185608,15.9666519165039,17.580153465271,17.7865467071533,0,0,0,0,0,8.16656351089478,8.8347430229187,9.03998804092407,8.33716583251953,0,0,0,0.985329031944275,-0.0589283108711243,-0.474128365516663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.40953135490417,6.7650887966156,6.03933620452881,4.8390908241272,4.5152645111084,6.22100448608398,10.0209546089172,14.7007584571838,18.4423570632935,19.9277412891388,19.1382706165314,17.3416953086853,16.3120758533478,17.319011092186,20.5150109529495,25.0203204154968,29.52374792099,32.9383230209351,34.732871055603,34.8838315010071,33.6666526794434,31.5363094806671,29.1444058418274,27.3286645412445,26.8936276435852,28.2054181098938,30.8584957122803,33.7177038192749,35.4130220413208,35.0293703079224,32.5488653182983,28.7466197013855,24.6182546615601,20.757511138916,17.1333894729614,13.4110832214355,9.53102612495422,6.04864537715912,3.90848313271999,3.77145455777645,5.39076054096222,7.54811906814575,8.68368554115295,7.84274506568909,5.29959392547607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,8.02606225013733,6.99886608123779,6.34649085998535,6.59743356704712,7.79331278800964,9.39324069023132,10.5497945547104,10.623973608017,9.60750293731689,8.14270687103271,7.08967781066895,6.91952705383301,7.36670303344727,7.61623382568359,6.92350006103516,5.23354911804199,3.33835411071777,2.42483520507812,3.3072338104248,5.87751865386963,9.16021919250488,11.9224863052368,13.3904538154602,13.5632848739624,12.9429740905762,11.9589676856995,10.5972290039062,8.55610370635986,5.78963422775269,2.93570709228516,1.17192363739014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.4299852848053,6.00360226631165,5.88027167320251,6.22031402587891,0,8.07423210144043,9.14700794219971,9.85203194618225,0,0,0,0,7.26290655136108,8.54076099395752,10.546929359436,12.3233623504639,0,0,0,0,0,0,0,0.29411792755127,0.127886772155762,-0.0455183982849121,-0.226291656494141,-0.370934009552002,-0.525448560714722,-0.81441342830658,-1.30664908885956,-1.89245104789734,-2.29667484760284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.608956336975098,1.17335510253906,1.94209337234497,3.17902231216431,5.37788057327271,8.74200248718262,12.7849836349487,16.4090315103531,18.4705916419625,18.4747416377068,16.9219481945038,15.0629165172577,14.2148952484131,15.079909324646,17.4740557670593,20.5776109695435,23.4700672030449,25.5747892409563,26.773181207478,27.2251664400101,27.1269342899323,26.6190114021301,25.8695194721222,25.1806005239487,24.9483906030655,25.4544379711151,26.6402993202209,28.0622119903564,29.0934591293335,29.245587348938,28.3788967132568,26.6590423583984,24.3212518692017,21.4607286453247,18.0413188934326,14.1247057914734,10.1119275093079,6.74332547560334,4.76851272583008,4.46726644039154,5.36014866828918,6.36424720287323,6.36132037639618,4.84917411208153,2.25963133573532,-0.278620898723602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.63263487815857,0.532105922698975,0.334502220153809,1.16090297698975,2.56631565093994,3.76636171340942,4.05281019210815,3.18119478225708,1.50992488861084,-0.205910682678223,-1.26338005065918,-1.43841552734375,-1.11401176452637,-1.00464820861816,-1.63473510742188,-2.91268062591553,-4.10636138916016,-4.27130317687988,-2.87004280090332,-0.170793533325195,2.85494804382324,5.07917404174805,5.84502983093262,5.25911903381348,3.97701644897461,2.67637062072754,1.62435674667358,0.64626932144165,-0.531523704528809,-1.89290547370911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4.22049689292908,-3.41567796468735,-2.51898589730263,-1.90752202272415,-1.64189153909683,-1.54730492830276,-1.38785964250565,-0.992121756076813,-0.293726682662964,0.657385110855103,1.66758060455322,2.39614510536194,2.46172308921814,1.67605298757553,0,0,0,0,0,0,0,0,0,0,0,0,-5.46739292144775,-6.47608089447021,-7.43016076087952,-8.32387971878052,-8.78689110279083,-8.42380440235138,-7.19532942771912,-5.53113150596619,-4.0870663523674,-3.33605051040649,-3.29769188165665,-3.5867732167244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4.15825057029724,-3.29754447937012,-1.25018548965454,1.89544343948364,5.75910568237305,9.65280103683472,12.7394933700562,14.3595224916935,14.3663809150457,13.2531549930573,11.9462049007416,11.3503570556641,11.8996415138245,13.3816261291504,15.1330480575562,16.4728593826294,17.0955858230591,17.1935997009277,17.2667570114136,17.7733659744263,18.8529767990112,20.2714242935181,21.5789375305176,22.3523387908936,22.3789978027344,21.7130485475063,20.6215513944626,19.4742813110352,18.6171796321869,18.2459287643433,18.3049945831299,18.4612965583801,18.2055625915527,17.0779366493225,14.9238305091858,12.031308054924,9.03931303322315,6.63496363162994,5.19668054580688,4.59327268600464,4.26541471481323,3.5487060546875,2.05089998245239,-0.132981777191162,-2.47955751419067,-4.31936359405518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,-2.92811149358749,-3.39950709044933,-2.84168243408203,-1.57117295265198,-0.326900005340576,0.165151596069336,-0.424635410308838,-1.89795303344727,-3.6844425201416,-5.16672229766846,-5.98983573913574,-6.20351123809814,-6.18162441253662,-6.37240791320801,-7.01233768463135,-7.95815277099609,-8.73921585083008,-8.81955051422119,-7.93386173248291,-6.29916763305664,-4.5559024810791,-3.44743633270264,-3.41467618942261,-4.34974908828735,-5.66345977783203,-6.62533855438232,-6.76465713977814,-6.09329563379288,-5.04368238151073,-4.20483684539795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5.47672319412231,-3.81743383407593,-3.1369001865387,-3.60003459453583,-4.81103092432022,-6.14832866191864,-7.1553909778595,-7.71898198127747,-7.97187924385071,-8.06756091117859,-8.03033685684204,-7.77073264122009,-7.19811153411865,-6.30232954025269,-5.14859521389008,-3.84052670001984,-2.53432548046112,-1.50234937667847,-1.1377124786377,-1.79407119750977,-3.49368953704834,0,0,0,0,0,0,0,0,0,-3.90151166915894,-6.03530406951904,-7.30871570110321,-8.05429434776306,-8.89923584461212,-10.1500639915466,-11.4788546562195,-12.1391906738281,-11.5291233062744,-9.66384410858154,-7.20802213251591,-5.0647439956665,-3.84343492984772,-3.58865240216255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4.85346591472626,-4.09674310684204,-1.72806930541992,1.95873641967773,5.98221969604492,9.10823583602905,10.4730026721954,10.0487093925476,8.67332768440247,7.61082458496094,7.8827338218689,9.74595212936401,12.6004657745361,15.3564805984497,17.0293045043945,17.2244424819946,16.27357006073,15.0021934509277,14.3042097091675,14.7533655166626,16.4062051773071,18.8194646835327,21.2202196121216,22.7563810348511,22.7766199111938,21.0828682780266,18.0659882538021,14.6225233674049,11.8220261633396,10.4357585608959,10.5670735836029,11.6103501319885,12.5973038673401,12.7435187101364,11.862729549408,10.3872447609901,8.99123008549213,8.08285343647003,7.51910412311554,6.73431372642517,5.17451095581055,2.71604347229004,-0.228998184204102,-2.97768878936768,-4.99651908874512,-6.16841745376587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,-3.55532377958298,-2.91768488287926,-1.43740135803819,0.162386775016785,1.03250241279602,0.720847129821777,-0.60428524017334,-2.33853244781494,-3.85546875,-4.848219871521,-5.39903831481934,-5.7982702255249,-6.29569911956787,-6.96474647521973,-7.72868347167969,-8.46661853790283,-9.08770751953125,-9.53497982025146,-9.7667350769043,-9.77755451202393,-9.65486240386963,-9.59575700759888,-9.81325888633728,-10.3539669513702,-10.9537066966295,-11.076014995575,-10.1738805770874,-8.05260741710663,-5.11090940237045,-2.28045947849751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7.8848822414875,-7.10480177402496,-6.10828971862793,-5.31326270103455,-4.83258119225502,-4.56978112459183,-4.44875812530518,-4.55096936225891,-5.04243493080139,-5.96902060508728,-7.11040735244751,-8.02641797065735,-8.26547455787659,-7.58001387119293,-6.00967907905579,-3.82070994377136,-1.40309819579124,0,0,2.34464979171753,0.94324254989624,0,0,0,0,0,0,0,0,0,0,-3.36258256435394,-4.13059751689434,-4.14445918798447,-4.04921722412109,-4.5551780462265,-5.82815247401595,-7.32252073287964,-8.16884970664978,-7.80544289946556,-6.37259554862976,-4.59172391891479,-3.25761294364929,-2.75442624092102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.701348423957825,-1.40829038619995,-1.27335166931152,0.389381408691406,3.26822233200073,6.1731915473938,7.76862764358521,7.45386266708374,5.81643104553223,4.34923601150513,4.59822082519531,7.27177762985229,11.8528652191162,16.920223236084,20.9382162094116,23.0170860290527,23.2219371795654,22.3429927825928,21.3702831268311,21.0314836502075,21.6062593460083,22.9883337020874,24.8188824653625,26.5637505054474,27.5635174512863,27.1778192520142,25.0689971446991,21.4911041259766,17.3416020870209,13.8315005302429,11.8928575515747,11.6822018623352,12.5265958309174,13.3850545287132,13.5282330513,12.9635156393051,12.2996420860291,12.1543201208115,12.5555799007416,12.8053444623947,11.9319277405739,9.40755176544189,5.59310150146484,1.56423282623291,-1.56695461273193,-3.33713150024414,-4.12587404251099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,-0.917514562606812,0.852835655212402,3.19604778289795,5.07722949981689,5.64276671409607,4.74601793289185,2.97995185852051,1.2204122543335,0.0379600524902344,-0.594423294067383,-1.12422943115234,-1.96485042572021,-3.1466646194458,-4.33747577667236,-5.17831325531006,-5.62792873382568,-6.01889133453369,-6.7804126739502,-8.06384372711182,-9.58554553985596,-10.8183770179749,-11.3719606399536,-11.243673324585,-10.7297892570496,-10.0728120803833,-9.1544149518013,-7.52712965011597,-4.81326455622911,-1.18759894371033,2.45116525888443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4.67088752985001,-5.17661726474762,-5.07214212417603,-4.30465137958527,-2.81095433235168,-0.742007195949554,1.40439563989639,2.90157216787338,3.13304077088833,1.94829857349396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.66431745886803,2.49459499120712,3.79986822605133,4.68423759937286,4.49508827924728,3.28600308299065,1.74731457233429,0.675591707229614,0.399331092834473,0.596972465515137,0.623513698577881,0.0580248832702637,-0.982425332069397,-2.01342725753784,-2.67899169772863,-3.13035744428635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7745208889246,4.60657604038715,3.57908022403717,2.93382048606873,3.4719033241272,4.95850133895874,6.31025791168213,6.44134569168091,5.16278171539307,3.48210525512695,3.06492137908936,5.20658206939697,10.0054821968079,16.2835440635681,22.2847106456757,26.6612782478333,29.1040153503418,30.259003162384,31.090057849884,32.1934089660645,33.5294528007507,34.6662756204605,35.2413138151169,35.2321949005127,34.8500838279724,34.2187395095825,33.1822853088379,31.4510326385498,28.9695959091187,26.1632318496704,23.7909488677979,22.4598293304443,22.1706805229187,22.2831299304962,21.9810104370117,20.9071947336197,19.4639685153961,18.5014424324036,18.59135389328,19.4382472038269,19.9196724891663,18.789998292923,15.5641466490924,10.9255359172821,6.32857608795166,3.05797338485718,1.4273853302002,0.701992034912109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.30579549074173,2.43985813856125,4.81928867101669,7.6321427822113,9.70051145553589,10.1954842805862,9.13286399841309,7.29051876068115,5.61786079406738,4.58509254455566,3.9526481628418,3.10594654083252,1.65992832183838,-0.164255142211914,-1.69585037231445,-2.37675666809082,-2.27095413208008,-2.09548854827881,-2.71996402740479,-4.50259494781494,-6.96928310394287,-9.08763790130615,-9.93594646453857,-9.26911163330078,-7.57093715667725,-5.58522176742554,-3.7216899394989,-1.81993627548218,0.543952941894531,3.47288262844086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.55514878034592,5.64494597911835,3.8077780008316,2.12053880095482,0.539178967475891,-0.827028453350067,-1.57116964831948,-1.13175442814827,0.838511154055595,0,0,0,0,0,0,0,0,0,3.8051884546876,8.11555969715118,13.4440829753876,0,0,0,0,0,0,0,0,0,0,0,0,0,5.93400645256042,7.05025720596313,9.36911964416504,11.829164981842,13.2953824996948,13.2474269866943,12.0156292915344,10.4250240325928,9.13709545135498,8.19059586524963,7.07805824279785,5.27670957148075,2.79784190654755,0.299001574516296,-1.35777306556702,-1.77667927742004,-1.3964347243309,-1.2273200750351,-2.1017330288887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.33066356182098,8.06410574913025,6.86009979248047,5.81439480185509,5.61407828330994,6.04605984687805,6.2582848072052,5.56956005096436,4.19551229476929,3.3063440322876,4.32456970214844,7.94553756713867,13.5923867225647,19.717716217041,24.7603209614754,28.0894334316254,30.282864689827,32.561531662941,35.8081724047661,39.875812292099,43.6588540077209,45.8409757614136,45.7605724334717,43.7932434082031,41.0384979248047,38.6063957214355,37.0437393188477,36.2638387680054,35.9116716384888,35.7739820480347,35.8716058731079,36.2041616439819,36.4561991691589,36.0206437110901,34.4081935882568,31.7304172515869,28.8085074424744,26.712390422821,25.9963088035583,26.1977291107178,26.0329985618591,24.2261800765991,20.4084117412567,15.4262806177139,10.8035949766636,7.72079759836197,6.25751656293869,5.45903569459915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,3.27095240354538,4.09326255321503,6.12426519393921,8.64842408895493,10.5807063579559,11.1219630241394,10.2347145080566,8.58804130554199,7.01773738861084,5.91786193847656,5.03102111816406,3.78945255279541,1.91967391967773,-0.194835662841797,-1.71623039245605,-1.99420547485352,-1.15344619750977,-0.141401290893555,-0.143699645996094,-1.7590160369873,-4.52837753295898,-7.17303848266602,-8.38330268859863,-7.60361194610596,-5.2755970954895,-2.41447591781616,0.114386081695557,2.05945158004761,3.67483997344971,5.20854711532593,6.48217749595642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.54423505626619,6.18721807003021,6.08035802841187,5.73909094929695,4.76887083053589,3.27484154701233,0,0,0,0,0,0,0,15.0244319438934,12.1907576918602,8.30229896306992,0,0,5.89623129367828,10.670797586441,16.7918519973755,22.1707229614258,24.9783143997192,0,0,0,0,0,0,0,0,0,0,7.05026280879974,6.46895289421082,8.39650893211365,11.8595674037933,15.1874351501465,17.0000743865967,16.9146571159363,15.5459146499634,13.8760919570923,12.4896001815796,11.2231464385986,9.44910287857056,6.73841524124146,3.3784302175045,0.336578130722046,-1.32609614729881,-1.18031916022301,0.231928586959839,1.70662519335747,2.14737188816071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.39371085166931,7.75433492660522,6.6471198797226,5.84981048107147,5.71024143695831,5.88826954364777,5.71315975487232,4.87797915935516,3.89754009246826,3.90980672836304,5.90324831008911,9.92382764816284,14.8860068321228,19.199077218771,21.8208801746368,23.0004377365112,24.1546018123627,26.9144678115845,31.9677152633667,38.4790964126587,44.4832630157471,47.9941940307617,48.1070938110352,45.417797088623,41.5727272033691,38.3301210403442,36.7612090110779,37.017698764801,38.6309008598328,40.9660949707031,43.461443901062,45.5796375274658,46.7002711296082,46.2245950698853,43.919310092926,40.2255845069885,36.1903467178345,32.9325661659241,30.9474420547485,29.7542519569397,28.2018885612488,25.2798357009888,20.8769211769104,15.9245262145996,11.7880709171295,9.32361793518066,8.29455876350403,7.59374332427979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,3.62072086334229,3.32399225234985,3.94199752807617,5.22117805480957,6.42261981964111,6.8056697845459,6.11287593841553,4.69015121459961,3.16042137145996,1.9212474822998,0.876837730407715,-0.376021385192871,-2.06418704986572,-3.8737850189209,-5.04964637756348,-4.93846893310547,-3.57903480529785,-1.85801315307617,-1.04412841796875,-1.9773645401001,-4.47167205810547,-7.36483430862427,-9.19830513000488,-9.06657981872559,-7.07017946243286,-4.11243009567261,-1.25858068466187,0.841294288635254,2.08257865905762,2.61120319366455,2.47402048110962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.170789241790771,0.394505739212036,1.75028711557388,3.67331963777542,5.18767046928406,5.53101134300232,4.63295674324036,3.15866017341614,2.12891566753387,2.3755156993866,4.13489025831223,6.94685506820679,9.84421586990356,11.7191290855408,11.746563911438,9.76110446453094,6.46231943368912,0,1.96774560213089,3.60814654827118,8.12909722328186,14.0413360595703,19.0671808719635,21.2905430793762,0,17.1214437484741,14.2469143867493,13.5072717666626,15.2514066696167,18.0298824310303,19.4986748695374,17.9196314811707,13.3082005977631,7.49782907962799,3.08524245023727,1.93655284214765,4.18653168529272,8.30994129180908,12.1342029571533,14.086386680603,13.8935661315918,12.38929271698,10.6926331520081,9.39427447319031,8.28982484340668,6.75674676895142,0,0,0,0,-1.45256638526917,0.43200877160416,2.64735811948776,4.17631885409355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.43298423290253,4.28958284854889,3.44172921776772,3.30811566114426,3.79364025592804,4.31277060508728,4.25422191619873,3.55109751224518,2.88422588258982,3.28549826145172,5.36889863014221,8.74768221378326,12.1249440461397,14.0853633880615,14.0940597057343,13.0044250488281,12.6695685386658,14.8497848510742,20.0973114967346,27.3338108062744,34.3871030807495,39.1447620391846,40.6080393791199,39.253438949585,36.589037835598,34.287472486496,33.4545197486877,34.3836206197739,36.7538981735706,39.967285990715,43.3507282733917,46.1878066062927,47.7466979026794,47.4634079933167,45.2353110313416,41.5858445167542,37.4792075157166,33.8101902008057,30.8786511421204,28.2376227378845,25.0713677406311,20.8752694129944,15.9509136676788,11.3259906768799,8.11173105239868,6.73009037971497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,4.43153166770935,3.10676145553589,1.25386714935303,-0.26169490814209,-0.99050235748291,-1.1458568572998,-1.36140537261963,-2.16876888275146,-3.60390853881836,-5.23149871826172,-6.53661727905273,-7.34263801574707,-7.90450668334961,-8.60412549972534,-9.51517152786255,-10.2289161682129,-10.1308259963989,-8.94371032714844,-7.10633277893066,-5.64567279815674,-5.57208347320557,-7.19925785064697,-9.87302803993225,-12.3134920597076,-13.3422136306763,-12.5067191123962,-10.2173957824707,-7.38367700576782,-4.87843704223633,-3.21319913864136,-2.557457447052,-2.91939187049866,-4.20248800516129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8.36731100082397,-7.87454128265381,-5.65573024749756,-2.45794367790222,0.516513824462891,2.26678323745728,2.45423030853271,1.44294738769531,-0.00147008895874023,-1.10277116298676,-1.34954433143139,-0.613091256469488,0.83175465464592,2.35796499252319,3.1712099313736,2.67594701051712,0.908441916108131,0,-2.37848243862391,-1.25378069654107,2.26890122890472,6.95037293434143,10.7209197282791,11.8955982923508,0,7.5387589931488,6.02319478988647,7.44319605827332,11.5246165990829,16.0275514125824,18.0308856964111,15.7275173664093,9.58639404177666,2.14076292514801,-3.45085605978966,-5.14547562599182,-2.99298286437988,1.16558077931404,4.95326066017151,6.79155659675598,6.51382350921631,5.03339231014252,3.47322165966034,2.42306002229452,1.76386260986328,1.02600717544556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.063401460647583,-0.672356784343719,-0.300931453704834,0.730930253863335,1.60487112402916,1.67833030223846,0.968414306640625,0.198368906974792,0.313501477241516,1.76567900180817,4.07454381883144,6.02475571632385,6.42682075500488,4.96062451601028,2.52753973007202,0.843393325805664,1.50532913208008,5.10858535766602,10.9472284317017,17.440411567688,22.9758424758911,26.6391267776489,28.4498834609985,29.0854873657227,29.3810615539551,29.9471397399902,31.0608253479004,32.7467064857483,34.8636093139648,37.1046402454376,38.9788837432861,39.905964910984,39.4576482772827,37.6102933883667,34.7955236434937,31.6509346961975,28.6040396690369,25.5859394073486,22.1177678108215,17.7516686320305,12.5714112818241,7.36946165561676,3.31577893905342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,3.56409537792206,4.45643329620361,2.91366195678711,-0.361701965332031,-4.00821971893311,-6.86219882965088,-8.59620952606201,-9.72204542160034,-11.0109066963196,-12.8017866611481,-14.7253688573837,-16.0298542752862,-16.2225711941719,-15.5018925666809,-14.6293796300888,-14.3414851129055,-14.7695505619049,-15.3361177444458,-15.2246494293213,-14.0684912204742,-12.3258829116821,-11.0389821529388,-11.1377604603767,-12.786947786808,-15.2350248098373,-17.2515430450439,-17.8270535469055,-16.6657018661499,-14.2056505680084,-11.2634828090668,-8.62244319915771,-6.81919431686401,-6.13468712568283,-6.61144185066223,-7.96922945976257,-9.507004737854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-14.0341291427612,-14.285587310791,-12.5684018135071,-9.47578924894333,-6.08321475982666,-3.40286159515381,-2.01091623306274,-1.99044513702393,-3.07526731491089,-4.79708647727966,-6.55969581007957,-7.72940623760223,-7.84745812416077,-6.9078004360199,-5.47012734413147,-4.40345919132233,-4.32239544391632,-5.08548629283905,-5.7846964597702,-5.34654462337494,-3.38013386726379,-0.630637869238853,1.40084153413773,1.51245510578156,0,0,0,0,0,0,13.9097606539726,11.3896271884441,5.01171267032623,-2.49943447113037,-8.05488085746765,-9.8568742275238,-8.15711605548859,-4.76708221063018,-1.79241538047791,-0.477949380874634,-0.825939655303955,-2.02606689929962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2.96372412145138,-3.48136305809021,0,0,0,0,0,0,0,0,-2.44941848516464,-3.49694880843163,-3.26770952343941,-2.3015154004097,-1.50122091174126,-1.5633978843689,-2.52373743057251,-3.72938108444214,-4.28181719779968,-3.67053651809692,-2.17182874679565,-0.730291128158569,-0.38753080368042,-1.62371444702148,-4.02950668334961,-6.496994972229,-7.77725219726562,-7.04539680480957,-4.16287612915039,0.429147720336914,6.01796913146973,11.8889179229736,17.4367771148682,22.1689968109131,25.7237586975098,27.9563159942627,29.0177087783813,29.3074655532837,29.2667655944824,29.1295309066772,28.8164448738098,28.0682330131531,26.7233220338821,24.91372859478,22.9967930316925,21.2476804256439,19.5493032932281,17.3565405607224,14.0304298698902,9.35577797889709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,3.13522982597351,4.87354373931885,3.40630435943604,-0.647555351257324,-5.61675357818604,-9.8480806350708,-12.6525206565857,-14.4905947446823,-16.3232517242432,-18.6637191772461,-21.0705065727234,-22.4683051109314,-22.0400757789612,-19.9870042800903,-17.5442547798157,-16.2017025947571,-16.6852519512177,-18.4469084739685,-20.0453058481216,-20.1498926877975,-18.4561984539032,-15.878019452095,-13.9126896858215,-13.651549719274,-15.1152664422989,-17.3118183612823,-18.8901369571686,-18.8938500881195,-17.1481471061707,-14.1537787914276,-10.7108192592859,-7.58815133571625,-5.37917113304138,-4.45353078842163,-4.8583841919899,-6.17671811580658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-11.5262440443039,-14.4682769775391,-16.1231594085693,-15.9807155132294,-14.2252366542816,-11.5372320413589,-8.72754967212677,-6.46967148780823,0,0,-6.4410605430603,-8.44900035858154,-10.44419708848,-11.521693110466,-11.1441192626953,-9.49781560897827,-7.42692899703979,-5.91603398323059,-5.4551043510437,-5.75919389724731,-6.07603001594543,-5.85571241378784,-5.23957014083862,-4.93385058641434,-5.5187566280365,0,0,0,0,0,0,9.69365990161896,7.59461236000061,2.59661889076233,-3.02678215503693,-7.01604756340384,-8.31610471010208,-7.40624821186066,-5.68127152323723,-4.43541979789734,-4.17776024341583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2.97005987167358,-4.74085485935211,0,0,0,0,0,0,0,0,-2.12839835882187,-3.92039531469345,-4.52040386199951,-4.26124811172485,-3.94000554084778,-4.29613786935806,-5.52929019927979,-7.16097164154053,-8.33130121231079,-8.34398078918457,-7.11789059638977,-5.27165269851685,-3.80908298492432,-3.60887622833252,-5.00576305389404,-7.64984893798828,-10.647439956665,-12.8587284088135,-13.2189025878906,-11.0156345367432,-6.10194206237793,0.992969512939453,9.12969589233398,16.8543586730957,22.8617076873779,26.4318389892578,27.6059103012085,27.0009279251099,25.3823251724243,23.2751245498657,20.857412815094,18.1640701293945,15.383556842804,12.959175080061,11.364129781723,10.6993368864059,10.4442603588104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,4.94223999977112,3.70142602920532,-0.27934455871582,-5.2778844833374,-9.5129702091217,-12.2408534884453,-14.0180337429047,-15.9818315505981,-18.7305221557617,-21.6827359199524,-23.430890083313,-22.8424897193909,-20.075249671936,-16.7049841880798,-14.8044610023499,-15.5865802764893,-18.5629420280457,-21.8183360099792,-23.2218909263611,-21.7543532848358,-18.0791487693787,-14.0356585383415,-11.4638036489487,-11.1619427204132,-12.59516954422,-14.4029202461243,-15.2465262413025,-14.4299795627594,-12.0203498601913,-8.59384170174599,-4.91860783100128,-1.76795613765717,0.181332349777222,0.512904405593872,-0.684705138206482,-2.68351233005524,-4.32654225826263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3.73037242889404,-6.77364045381546,-10.2655748128891,-13.2148288413882,-14.8370725736022,-14.8741563558578,-13.576012134552,0,0,0,-5.91587257385254,-5.78510999679565,-6.67370414733887,-8.05641937255859,-9.09572339057922,-9.04693666100502,-7.69537842273712,-5.51661115884781,-3.41538758575916,-2.20332995057106,-2.17361509799957,-3.05317205190659,-4.31586718559265,-5.56164187192917,-6.64437633752823,-7.47964859008789,-7.77260112762451,0,-4.74558973312378,-1.19237470626831,2.72133564949036,5.65515261888504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.369401007890701,-2.29149016737938,-3.96036684513092,-4.57995808124542,-4.73669935017824,-5.22414445877075,-6.48602044582367,-8.28785610198975,-9.8237886428833,-10.1936883926392,-8.96238470077515,-6.47445201873779,-3.75708389282227,-2.07499217987061,-2.36795043945312,-4.82359313964844,-8.74651336669922,-12.7526302337646,-15.2135524749756,-14.8092746734619,-11.009801864624,-4.3008975982666,3.96188545227051,12.0448417663574,18.4690265655518,22.4860486984253,24.1601190567017,24.0515832901001,22.7375354766846,20.5016312599182,17.3870038986206,13.5266189575195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,3.46212196350098,2.37872183322906,-0.861321449279785,-4.7064865231514,-7.59272038936615,-9.01562547683716,-9.76602363586426,-11.1620879173279,-13.8668985366821,-17.2069582939148,-19.5473475456238,-19.4884233474731,-17.012050151825,-13.7035856246948,-11.8239750862122,-12.835045337677,-16.3878951072693,-20.4735445976257,-22.6371002197266,-21.4456193447113,-17.2676405906677,-11.9308935701847,-7.57785105705261,-5.50483465194702,-5.66500616073608,-6.9874472618103,-8.13762331008911,-8.17724847793579,-6.81263113021851,-4.28874371945858,-1.17975633591413,1.75905871391296,3.72029177099466,4.08109307289124,2.73981416225433,0.334047395735979,-1.92462462186813,-2.83828374743462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.83906173706055,2.06237030029297,1.26204824447632,-0.993681129068136,-4.32195281982422,-7.77814626693726,-10.4217119216919,-11.7700607776642,-11.8751828670502,0,0,0,-6.28639221191406,-4.71346950531006,-3.66265964508057,-3.27259874343872,-3.32089567184448,-3.27564573287964,-2.5988392829895,-1.11739540100098,0.79875659942627,2.38867211341858,2.89774239063263,1.98133647441864,-0.11123788356781,-2.6445078831166,-4.70660722255707,-5.55717635154724,0,0,-0.240619659423828,2.22022926807404,3.80643510818481,4.33630168437958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.0322844982147217,-2.37375228106976,-3.43869715929031,-3.6572802066803,-3.93073415756226,-4.96962547302246,-6.77087068557739,-8.57142782211304,-9.30958271026611,-8.30501937866211,-5.74016380310059,-2.65903377532959,-0.48784065246582,-0.345052719116211,-2.49727249145508,-6.21563720703125,-10.0723361968994,-12.5182247161865,-12.4805564880371,-9.73623085021973,-4.92059898376465,0.807331085205078,6.27847099304199,10.7546977996826,14.0842971801758,16.5067853927612,18.2533254623413,19.2207126617432,18.9604153633118,17.0176889896393,13.4012261629105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,-0.543868809938431,-0.130549192428589,-1.26121950149536,-3.53482675552368,-5.69527211785316,-6.60055410861969,-6.12739139795303,-5.31520736217499,-5.60895948112011,-7.74078631401062,-11.0858120918274,-14.0039944648743,-14.9634079933167,-13.6549506187439,-11.2890651226044,-9.83383536338806,-10.7004086971283,-13.7701444625854,-17.4159352779388,-19.4850754737854,-18.5769493579865,-14.7992007732391,-9.58926856517792,-4.819371342659,-1.81364369392395,-0.849495410919189,-1.30462265014648,-2.18906497955322,-2.65776944160461,-2.26364171504974,-0.975977693451569,0.884177267551422,2.71637433767319,3.78452408313751,3.5111255645752,1.84587734937668,-0.541397750377655,-2.4818497300148,-2.92356017231941,-1.59386360645294,0.761109590530396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.8265323638916,2.52504920959473,3.57519292831421,3.78143203258514,2.46015501022339,-0.140018463134766,-3.10372066497803,-5.53024101257324,-7.08186388015747,-8.00978136062622,0,0,0,0,0,-2.54574775695801,0.0800008773803711,1.54788255691528,1.83015632629395,1.66006183624268,2.00042772293091,3.32431197166443,5.21343791484833,6.57308416068554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.12789860367775,-1.07971239089966,-1.849116563797,-1.63735675811768,-1.51068735122681,-2.37639331817627,-4.3380241394043,-6.60301876068115,-7.99937725067139,-7.75429916381836,-6.02234554290771,-3.82755279541016,-2.46616744995117,-2.75310325622559,-4.56956577301025,-6.96210670471191,-8.69942474365234,-8.9373836517334,-7.6136360168457,-5.37954330444336,-3.14881324768066,-1.54427528381348,-0.552940368652344,0.430055618286133,2.20332336425781,5.22480201721191,9.23353481292725,13.2448205947876,15.9480862617493,16.3257690668106,14.1780913472176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.10806896537542,-2.93223923072219,-3.88590371608734,-4.36328315734863,-5.08751964569092,-6.40331673622131,-7.89380764961243,-8.64170265197754,-7.96001005172729,-6.0400915145874,-3.99679780006409,-3.22092223167419,-4.46591377258301,-7.31348037719727,-10.4128479957581,-12.3461880683899,-12.5306577682495,-11.5435581207275,-10.6648244857788,-10.9709916114807,-12.6041796207428,-14.6876616477966,-15.8987293243408,-15.2796454429626,-12.7590627670288,-9.1078360080719,-5.4470899105072,-2.67604005336761,-1.14988346397877,-0.700215220451355,-0.864669412374496,-1.13388061290607,-1.1197512447834,-0.661699175834656,0.100155642256141,0.730747256428003,0.672090828418732,-0.417118668556213,-2.32677084207535,-4.23521113395691,-5.07754683494568,-4.19690558314323,-1.86490631103516,0.741055250167847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.0706634521484375,0.695174217224121,1.94742345809937,2.48124599456787,1.69422912597656,-0.0430269241333008,-1.79211521148682,-2.87488651275635,-3.44182777404785,-4.30793190002441,0,0,0,0,0,0,-0.1129150390625,2.75067949295044,3.23011016845703,2.15072536468506,1.2459888458252,1.90717720985413,4.18520390987396,6.74541640281677,7.81495785713196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.38230800628662,-1.30671739578247,-0.498577117919922,-0.179454803466797,-1.28026866912842,-3.80413627624512,-6.82415103912354,-9.11374187469482,-9.96903419494629,-9.6505184173584,-9.14211845397949,-9.39992713928223,-10.6187696456909,-12.0321035385132,-12.3976602554321,-10.8563766479492,-7.59823513031006,-3.89011001586914,-1.42221450805664,-1.35720634460449,-3.63968849182129,-6.96125030517578,-9.39115524291992,-9.31843185424805,-6.20806884765625,-0.812589645385742,5.21370887756348,10.0567021369934,12.4693593978882,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4.72379686683416,-5.58924189954996,-5.87114531174302,-5.76079745590687,0,0,0,0,0,0],[-7.01329278945923,0,0,0,-2.01505875587463,-3.58346581459045,-5.34316110610962,-6.90428519248962,-8.28093814849854,-9.66078329086304,-11.039722442627,-12.045426607132,-12.1231243610382,-10.9665958881378,-8.86948037147522,-6.70754933357239,-5.51848530769348,-5.93465423583984,-7.83489392697811,-10.4360986948013,-12.7521989345551,-14.1173856258392,-14.4558596611023,-14.1751461029053,-13.8107957839966,-13.6820902824402,-13.7600526809692,-13.7725048065186,-13.418924331665,-12.5390753746033,-11.1617641448975,-9.46157109737396,-7.68856620788574,-6.10289084911346,-4.90406036376953,-4.15241229534149,-3.72832182049751,-3.3969202041626,-2.98709690570831,-2.57997071743011,-2.5362638188526,-3.26601432263851,-4.84003257751465,-6.721755027771,-7.89237093925476,-7.40352964401245,-5.05843108892441,-1.74480223655701,0.902929306030273,1.4058563709259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2.7947404384613,-3.36099791526794,-2.83666515350342,-2.09860038757324,-2.07393455505371,-2.96250820159912,-4.06149005889893,-4.37383651733398,-3.54708099365234,-2.37432479858398,-2.37173175811768,0,0,0,0,0,0,0,0,0.770034313201904,-1.31856322288513,-3.41179156303406,-3.36754310131073,-0.719284892082214,3.04714167118073,5.587741792202,5.37977600097656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3.905757188797,-2.99083662033081,-1.91530513763428,-1.92913627624512,-3.75114250183105,-7.08686542510986,-10.8243465423584,-13.7824430465698,-15.4875173568726,-16.416802406311,-17.5201568603516,-19.3494272232056,-21.4317827224731,-22.3838691711426,-20.7638378143311,-16.135027885437,-9.62804412841797,-3.57771301269531,-0.384527206420898,-1.25231742858887,-5.53291130065918,-11.0480155944824,-15.178973197937,-16.0969481468201,-13.4790697097778,-8.41583347320557,-2.69102573394775,2.08317184448242,5.02269792556763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3.72385132312775,-6.65215393900871,-9.98682618141174,-12.6396787166595,-14.0422506332397,-14.3298716545105,-14.0436840057373,-13.6132923364639,-13.0177965164185,-11.8680468797684,-9.82453483343124],[-11.5013337135315,-9.69712281227112,-8.12972950935364,-7.14485549926758,-6.91541075706482,-7.38568043708801,-8.35319948196411,-9.59240102767944,-10.9207882881165,-12.1832795143127,-13.20858335495,-13.8087778091431,-13.8444309234619,-13.3128700256348,-12.3928196430206,-11.4091444015503,-10.7347108125687,-10.6772944927216,-11.3905550427735,-12.8217450976372,-14.6974438428879,-16.561295747757,-17.8872046470642,-18.2655992507935,-17.5997219085693,-16.1992273330688,-14.6782116889954,-13.6678438186646,-13.4836633205414,-13.9478209018707,-14.4934887886047,-14.5034786462784,-13.6728706359863,-12.1593074649572,-10.4269118309021,-8.9079669713974,-7.74008032679558,-6.77752816677094,-5.85701298713684,-5.08201456069946,-4.85137808322906,-5.54737949371338,-7.08787655830383,-8.71374845504761,-9.27169752120972,-7.90945172309875,-4.75787436962128,-1.09658622741699,1.21597051620483,0.782143592834473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.09416460990906,4.75733733177185,1.7492800205946,0,0,0,0,0,0,0,0,0,0,0,0,-6.5164623260498,-6.79968070983887,-6.68255615234375,-6.87607765197754,-7.83047485351562,-9.19843101501465,-9.92040681838989,-8.99165344238281,-6.39828777313232,-3.47035789489746,0,0,0,0,0,0,0,0,0,-3.38057386875153,-6.60449206829071,-9.75012373924255,-10.2889888286591,-7.53778266906738,-3.04070168733597,0.581912517547607,1.47722768783569,0,0,-3.2545747756958,-1.40496182441711,2.02176785469055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8.08345341682434,-6.90821647644043,-6.23033666610718,-7.09532260894775,-9.79321956634521,-13.6525564193726,-17.4646377563477,-20.2731122970581,-21.9846887588501,-23.3462266921997,-25.2673406600952,-27.94176197052,-30.411584854126,-30.9590082168579,-28.1561393737793,-21.926552772522,-13.9033794403076,-6.78183555603027,-2.99030494689941,-3.45640182495117,-7.18735694885254,-11.8893766403198,-15.2168169021606,-15.8971812725067,-14.1141142845154,-11.046010017395,-7.97891187667847,-5.60722303390503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3.97542858123779,-5.70986819267273,-9.70256567001343,-14.4989972114563,-18.4547629356384,-20.5310211181641,-20.6442947387695,-19.4484376907349,-17.7842166423798,-16.1864311695099,-14.7288969755173,-13.2151582241058],[-13.6926929950714,-13.337639093399,-12.6850476264954,-11.7928080558777,-10.9270670413971,-10.4112162590027,-10.4365997314453,-10.9363803863525,-11.6103706359863,-12.1072778701782,-12.2593693733215,-12.2051210403442,-12.2923154830933,-12.8074240684509,-13.7222628593445,-14.6643142700195,-15.168862849474,-15.0527327656746,-14.6267238259315,-14.5489507615566,-15.3744463026524,-17.1002749204636,-19.0495519638062,-20.2258653640747,-19.9380059242249,-18.2803883552551,-16.125705242157,-14.6082816123962,-14.42817735672,-15.4358115196228,-16.7660636901855,-17.413370847702,-16.8434636592865,-15.2342211008072,-13.2226355075836,-11.3936843648553,-9.9141009747982,-8.57223123311996,-7.14915978908539,-5.77776408195496,-4.95440557599068,-5.15031006932259,-6.31129968166351,-7.66801571846008,-8.08574306964874,-6.78890204429626,-3.98503684997559,-0.92411994934082,0.722548961639404,-0.177779674530029,-3.51488149166107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.726229924708605,-0.519337832927704,-2.03924236446619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-13.8186645507812,-14.177729845047,-12.4063802957535,-8.78480005264282,-4.86003875732422,0,0,0,0,0,0,0,0,0,0,-10.8781280517578,-14.7298550605774,-15.7293610572815,-13.2608504295349,-8.82975053787231,-4.94008278846741,0,0,0,-5.04687738418579,-2.69952392578125,0.888928890228271,3.85760068893433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-12.7232067584991,-12.2055852413177,-11.6155471801758,-11.9850869178772,-13.8917045593262,-17.0824337005615,-20.6033220291138,-23.3882832527161,-24.941047668457,-25.6495642662048,-26.484429359436,-28.2431745529175,-30.8314485549927,-33.0958366394043,-33.3916883468628,-30.5821962356567,-24.8489961624146,-17.7702121734619,-11.5681324005127,-7.95518493652344,-7.28440856933594,-8.51455593109131,-9.98342561721802,-10.4643793106079,-9.82068490982056,-8.86662912368774,-8.59525609016418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-10.3114912509918,-7.55597573518753,-6.62163162231445,-8.28509926795959,-12.0689749717712,-16.5584456920624,-20.15704870224,-21.8291440010071,-21.4525637626648,-19.6769819259644,-17.4649857282639,-15.6110293865204,-14.4687721729279,-13.9465270042419],[-13.6723117828369,-14.3373997211456,-14.3201575279236,-13.5235524177551,-12.2962324619293,-11.210823059082,-10.6784253120422,-10.6568236351013,-10.6821098327637,-10.2399196624756,-9.22940015792847,-8.16279125213623,-7.89870452880859,-9.04360198974609,-11.433422088623,-14.1012728214264,-15.8202710747719,-15.891828417778,-14.6380634903908,-13.2275032959878,-12.9172201752663,-14.2131170630455,-16.5262565612793,-18.567729473114,-19.2111835479736,-18.2263150215149,-16.3847315311432,-14.8877856731415,-14.5392997264862,-15.244800567627,-16.1590819358826,-16.3289294242859,-15.3394677639008,-13.5098705291748,-11.5481453686953,-9.97952389717102,-8.80434793233871,-7.62909239530563,-6.12708795070648,-4.42855548858643,-3.10606932640076,-2.75078868865967,-3.46667957305908,-4.68772602081299,-5.48872303962708,-5.19195795059204,-3.84664583206177,-2.23946690559387,-1.42109870910645,-2.06482911109924,-4.07759857177734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2.51930755376816,-3.98062491416931,-4.54077589511871,-4.43534195423126,-3.98486584424973,-3.39396500587463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-13.0817165374756,-14.3339176177979,-14.0907579660416,-11.9232790470123,0,0,0,0,0,0,0,0,0,0,0,0,0,-16.0869107246399,-17.1480317115784,-15.2016582489014,-11.6241545677185,0,0,-6.60291481018066,-6.45316457748413,-5.03753519058228,-2.08884429931641,1.42709445953369,4.06867456436157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3.45225501060486,-5.93587422370911,-8.95495367050171,-11.6450686454773,-13.3463273048401,-14.0053062438965,-14.223343372345,-14.8922591209412,-16.6261892318726,-19.3446879386902,-22.2821907997131,-24.4359579086304,-25.1850500106812,-24.6912407875061,-23.8170680999756,-23.5914726257324,-24.5436229705811,-26.321702003479,-27.8508338928223,-27.9530401229858,-26.0529222488403,-22.5264577865601,-18.4648103713989,-14.9989614486694,-12.6215209960938,-10.9613256454468,-9.16936254501343,-6.66226315498352,-3.70716118812561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-10.9010045528412,-9.5689150094986,-9.22037959098816,-10.3455586433411,-12.6451423168182,-15.2524923682213,-17.2048368453979,-17.8856530189514,-17.236839056015,-15.7004413604736,-13.9783879220486,-12.7367799282074,-12.3585166931152,-12.8103547096252],[-12.7424063682556,-13.4812545776367,-13.3736946582794,-12.3514995574951,-10.8740954399109,-9.65195560455322,-9.14223718643188,-9.17892265319824,-9.05276823043823,-8.04681348800659,-6.07197523117065,-3.91540431976318,-2.84677791595459,-3.78644180297852,-6.59545803070068,-10.0187954902649,-12.3874608278275,-12.6492902636528,-11.0403127968311,-8.93019688129425,-7.93464887142181,-8.89028882980347,-11.374995470047,-14.0669829845428,-15.6534485816956,-15.6409509181976,-14.5325448513031,-13.3172419071198,-12.7028112411499,-12.6630208492279,-12.5872349739075,-11.8513770103455,-10.3342435359955,-8.48914623260498,-6.95435684919357,-6.04358494281769,-5.52667188644409,-4.85848212242126,-3.65479278564453,-2.03257942199707,-0.556932926177979,0.148445606231689,-0.179550170898438,-1.29870557785034,-2.66340446472168,-3.78253555297852,-4.45613572001457,-4.75147843360901,-4.80864617228508,-4.68812257051468,-4.39798295497894,-4.04553818702698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2.0998153090477,-4.79430317878723,-5.8433039188385,-5.11353158950806,-3.23653680086136,-1.12829151749611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-10.2065110206604,-10.3675670623779,-9.29819059371948,0,0,0,-1.79569911956787,-1.88765621185303,-2.4111967086792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6.79502749443054,-5.47766637802124,-2.94817352294922,0.381716728210449,3.39462327957153,5.07421398162842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.19573926925659,-3.70749974250793,-6.63442158699036,-9.11287212371826,-10.7190203666687,-11.7478604316711,-12.9767985343933,-15.067391872406,-18.0185458660126,-21.0587811470032,-23.0685584545135,-23.261727809906,-21.6824536323547,-19.1957316398621,-16.9833374023438,-15.8747072219849,-15.9342432022095,-16.5457105636597,-16.9053335189819,-16.5782165527344,-15.7440690994263,-14.9766216278076,-14.7151126861572,-14.7989587783813,-14.412141084671,-12.5300650596619,-8.63248738646507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9.97733235359192,-10.6914697289467,-11.1244959831238,-11.4298188686371,-11.6645090579987,-11.8222074508667,-11.8717575073242,-11.7726049423218,-11.4921176433563,-11.0578186511993,-10.6194534301758,-10.442581653595,-10.7772963047028,-11.6510331630707],[-11.8804609179497,-11.8929513692856,-11.1121895313263,-9.5889744758606,-7.8867506980896,-6.7722315788269,-6.65831995010376,-7.215500831604,-7.50073194503784,-6.59160995483398,-4.31267833709717,-1.51324319839478,0.369333267211914,0.222499847412109,-1.96187257766724,-5.00061178207397,-7.22540211677551,-7.5298593044281,-6.05769979953766,-4.07269310951233,-3.11285555362701,-4.012999355793,-6.4432384967804,-9.22440934181213,-11.1384923458099,-11.6441323757172,-11.0375986099243,-10.0390900373459,-9.19029355049133,-8.52851581573486,-7.72998690605164,-6.53011357784271,-5.03606024384499,-3.67675274610519,-2.8557460308075,-2.61322641372681,-2.57817697525024,-2.24216604232788,-1.32942008972168,0.0187082290649414,1.35488128662109,2.20439720153809,2.28126859664917,1.51671886444092,-0.0286455154418945,-2.20087480545044,-4.66259670257568,-6.79278230667114,-7.78425288200378,-7.01991963386536,-4.54449212551117,-1.27294731140137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.98417997360229,1.83303743600845,-1.06500601768494,-2.14574420452118,-1.05434149503708,1.31138089299202,3.52731478214264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5.186439037323,-4.0548849105835,-2.26541233062744,0,0,-0.573054313659668,-1.65785503387451,-2.32699823379517,-1.804771900177,-0.0349125862121582,2.2193922996521,0,0,0,0,0,0,0,0,0,0,0,0,-5.2585391998291,-3.32326465845108,-0.178108930587769,3.11801314353943,5.292600274086,5.69082677364349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.10787159204483,2.7561349272728,1.37282800674438,-0.857151985168457,-3.19697666168213,-4.95453357696533,-6.05689382553101,-7.14082288742065,-9.05648374557495,-12.1337168216705,-15.7612429857254,-18.6243504881859,-19.4773848056793,-17.9316473007202,-14.7166085243225,-11.2308406829834,-8.68970584869385,-7.45302581787109,-6.97618007659912,-6.38801574707031,-5.26000595092773,-4.00621509552002,-3.61565589904785,-4.88905906677246,-7.70204877853394,-10.8169164657593,-12.4228556156158,-11.1156320571899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5.08513486385345,-8.51472076773643,-11.0649233460426,-12.1785831451416,-11.7774126529694,-10.332350730896,-8.66632080078125,-7.56372690200806,-7.40353965759277,-8.03878951072693,-8.9945113658905,-9.83334594964981,-10.4208941534162,-10.9008531570435,-11.423886179924],[-10.9630680084229,-10.1824532747269,-8.80200815200806,-6.91365671157837,-5.0947151184082,-4.10217952728271,-4.31636333465576,-5.3583288192749,-6.22315692901611,-5.90481853485107,-4.10406255722046,-1.50679922103882,0.603570461273193,1.16599941253662,0.0378251075744629,-1.91879034042358,-3.42410397529602,-3.63421726226807,-2.67293930053711,-1.49198794364929,-1.18679821491241,-2.26273117959499,-4.34738922119141,-6.49855422973633,-7.83551478385925,-8.03171253204346,-7.36497378349304,-6.37636494636536,-5.45724421739578,-4.67607364058495,-3.91340234130621,-3.11508871614933,-2.40936547517776,-1.99241590499878,-1.91200566291809,-1.96785187721252,-1.83135581016541,-1.28145933151245,-0.349078178405762,0.746044635772705,1.78174018859863,2.64157176017761,3.22833180427551,3.28481131792068,2.36842411756516,0.133480966091156,-3.21269547939301,-6.65844750404358,-8.6770806312561,-8.03063583374023,-4.62650287151337,0.190858364105225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.13613390922546,6.81996512413025,4.37534236907959,3.53453814983368,4.64524710178375,6.5752055644989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.895255088806152,1.02827930450439,3.0073938369751,3.69722270965576,2.32542133331299,-0.670692443847656,-3.771240234375,-5.24589610099792,-4.23008286952972,-1.30201244354248,1.83000111579895,3.34419775009155,0,0,0,0,0,0,0,0,0,0,0,-4.11149257421494,-2.1823339164257,0.969933733344078,3.89323282241821,5.29291784763336,4.78107106685638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.86519479751587,3.16392195224762,1.75744330883026,-0.0184929370880127,-1.44279205799103,-2.06271243095398,0,-2.7269184589386,-4.58798503875732,0,-11.383367061615,-13.7207847833633,-13.6843674182892,-11.3202936053276,-7.84754109382629,-4.8558144569397,-3.26750659942627,-2.79648208618164,-2.2871732711792,-0.694522857666016,2.00051283836365,4.61129450798035,5.46574068069458,3.56038165092468,-0.630765914916992,-5.25440639257431,-8.0554370880127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.38279294967651,-2.95678424835205,-7.53797471523285,-11.0503090620041,-12.5344339609146,-11.8560110256076,-9.79191792011261,-7.63945651054382,-6.54746294021606,-6.9557421207428,-8.46939277648926,-10.2190946638584,-11.4393635988235,-11.8713369369507,-11.7433497905731,-11.4077000617981],[-9.34777873754501,-8.48377668857574,-7.23533010482788,-5.54665803909302,-3.86038112640381,-2.85789203643799,-2.94908905029297,-3.90496253967285,-4.93595600128174,-5.18976759910583,-4.32188963890076,-2.72655487060547,-1.25842046737671,-0.646496057510376,-1.02300596237183,-1.89707851409912,-2.56940865516663,-2.66307711601257,-2.37612581253052,-2.28614401817322,-2.87690460681915,-4.15246337652206,-5.61669158935547,-6.60860991477966,-6.72581887245178,-6.0318249464035,-4.93646063562483,-3.89131855964661,-3.15181016921997,-2.75458514690399,-2.65284329652786,-2.82912284135818,-3.26504409313202,-3.82034814357758,-4.18859493732452,-4.03657364845276,-3.24797296524048,-2.05421733856201,-0.894260168075562,-0.0745558738708496,0.490539789199829,1.19392871856689,2.3108082190156,3.55931007862091,4.06619966030121,2.89489370584488,-0.16272908449173,-4.12565398216248,-7.14890503883362,-7.55681777000427,-4.94867873191833,-0.594473004341125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10.1745859384537,10.5975227355957,8.99315464496613,7.18347692489624,6.73184609413147,7.77933573722839,8.9935040473938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.212931632995605,1.96852874755859,3.40757846832275,3.03905773162842,0.188200950622559,-4.33431529998779,-8.53383839130402,-10.3930218219757,-9.15045070648193,-5.82462632656097,-2.59550368785858,-1.42515969276428,-2.81880068778992,0,0,0,0,0,0,0,0,0,0,-5.26680135726929,-3.73124200105667,-1.02424669265747,1.40562677383423,2.49232533574104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.40269660949707,1.67200684547424,1.06117105484009,0.0748567581176758,-1.32879829406738,-2.60750460624695,0,0,0,0,0,0,-7.2735595703125,-8.89510774612427,-8.45612418651581,-6.35388180613518,-3.97866702079773,-2.7294385433197,-2.99398875236511,-3.84048962593079,-3.67710709571838,-1.4460226893425,2.48683488368988,6.39972233772278,8.23872900009155,6.9298095703125,3.10079115629196,-1.27094199508429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.38888597488403,0.784543991088867,-3.19509983062744,-7.49261283874512,-10.8162940442562,-12.2580726146698,-11.7764503955841,-10.2248195409775,-8.86972212791443,-8.6728837788105,-9.77728917449713,-11.5108036398888,-12.882685303688,-13.2214829921722,-12.5275447368622,-11.33092045784,-10.2086118459702],[-7.00524592399597,-6.96296620368958,-6.66877317428589,-5.77676677703857,-4.47824573516846,-3.31553792953491,-2.75825357437134,-2.87159490585327,-3.31169033050537,-3.62003755569458,-3.56661033630371,-3.27614450454712,-3.06351637840271,-3.14046764373779,-3.44745579361916,-3.74488973617554,-3.87192878127098,-3.93733674287796,-4.26315200328827,-5.1106024980545,-6.40645450353622,-7.70055556297302,-8.40908098220825,-8.17464900016785,-7.08331370353699,-5.59144818782806,-4.23797941207886,-3.36842614412308,-3.05776387453079,-3.23277720808983,-3.82616710662842,-4.79172614216805,-5.97198766469955,-6.98591822385788,-7.32310831546783,-6.65367150306702,-5.13348841667175,-3.41464495658875,-2.26043486595154,-1.99015927314758,-2.17865866422653,-1.90976512432098,-0.481913581490517,1.92306482791901,4.15044376254082,4.7318152487278,0,0,0,-6.34185361862183,-5.72728276252747,-3.39054667949677,0,-0.513208150863647,-1.78087446093559,-3.8337379693985,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.46070194244385,7.55372858047485,6.19321894645691,4.93153500556946,4.97991490364075,6.19435092806816,7.13068753480911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2.35924577713013,-1.64458990097046,-1.26815032958984,-2.50404977798462,-5.85278582572937,-10.4311103820801,-14.3280339241028,-15.7700519561768,-14.312885761261,-11.1989860534668,-8.57502698898315,-8.06602001190186,-9.67553973197937,0,0,0,0,0,0,0,0,0,-7.76221132278442,-8.54099535942078,-7.41703772544861,-5.38775014877319,-3.48753559589386,-2.24721205234528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3.44579887390137,-3.7544264793396,-4.29489469528198,-5.34764647483826,-6.65415704250336,-7.48708727955818,0,0,0,0,0,0,0,0,0,-4.21911679953337,-3.58964043855667,-4.46925961971283,-6.65310773253441,-8.75619685649872,-9.05678200721741,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.691684722900391,-2.46995639801025,-5.08154916763306,-7.88363218307495,-10.0640795230865,-11.101356074214,-11.1016947031021,-10.7484210729599,-10.8558802604675,-11.810647726059,-13.2849249839783,-14.4330060482025,-14.4497590065002,-13.1110870242119,-10.9262229651213,-8.80138003826141,-7.45730841159821],[-4.90676069259644,-5.9907374382019,-6.83321714401245,-6.84943127632141,-5.98770976066589,-4.61068558692932,-3.18994331359863,-2.05577087402344,-1.34185028076172,-1.08057451248169,-1.29534864425659,-1.98113965988159,-3.00704526901245,-4.0766909122467,-4.84589150547981,-5.14942473173141,-5.16059130430222,-5.32160129398108,-6.04679983854294,-7.39066761732101,-8.93053098022938,-9.97803354263306,-9.99556136131287,-8.93533945083618,-7.26650941371918,-5.68007871508598,-4.6918908143416,-4.42321503162384,-4.68214696645737,-5.22604823112488,-5.95336496829987,-6.86064666509628,-7.83213645033538,-8.50402277708054,-8.40186893939972,-7.30675661563873,-5.56135034561157,-4.00285124778748,-3.46484422683716,-4.14848220348358,-5.33923840522766,-5.76175403594971,-4.41811043024063,-1.36195850372314,2.16400790214539,4.39627313613892,4.12657046318054,1.46710968017578,-2.23057317733765,0,0,0,0,-6.64737629890442,-7.77665495872498,-8.81781959533691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12367391586304,1.41364240646362,0.0203099250793457,-0.800315856933594,-0.231308937072754,1.36945819854736,2.63426160812378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6.86611413955688,-7.47099360823631,-8.1542803645134,-9.7424533367157,-12.5340976715088,-15.8241910934448,-18.2214570045471,-18.5911998748779,-16.9360342025757,-14.5145745277405,-13.0327100753784,-13.4385237693787,-15.1859993934631,0,0,0,0,0,0,0,0,0,-11.0615216493607,-11.1982446461916,-10.2452255487442,-9.03485172986984,-7.89331078529358,-6.54544374346733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9.02653908729553,-9.80175447463989,-9.78776860237122,-9.28001403808594,-8.84880495071411,-9.01369500160217,-9.86704850196838,-10.9312015771866,-11.4067173302174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5.25839900970459,-5.96169137954712,-6.73266649246216,-7.53293943405151,-8.21222543716431,-8.71949601173401,-9.25235986709595,-10.1644137203693,-11.6546808481216,-13.4725403785706,-14.9040877819061,-15.1195166110992,-13.6896421313286,-10.926325917244,-7.7930018901825,-5.41296148300171,-4.47566175460815],[-4.21524620056152,-5.73616218566895,-6.94667530059814,-7.29106116294861,-6.63028489053249,-5.15052232146263,-3.19093215465546,-1.13291192054749,0.623028039932251,1.67720127105713,1.73328256607056,0.763081550598145,-0.897264003753662,-2.64988827705383,-3.93322288990021,-4.54381203651428,-4.75141460448503,-5.09638836979866,-5.98410540819168,-7.35513144731522,-8.67710429430008,-9.28354394435883,-8.83179867267609,-7.55726301670074,-6.14063403010368,-5.28193093836308,-5.28302353620529,-5.92477476596832,-6.69815230369568,-7.18654608726501,-7.30019688606262,-7.20473945140839,-7.04740886390209,-6.75320994853973,-6.09743595123291,-5.00979232788086,-3.83419108390808,-3.25901079177856,-3.87727653980255,-5.65672835707664,-7.73879146575928,-8.80426812171936,-7.84751653671265,-4.87201005220413,-1.01730418205261,2.01844596862793,2.92010068893433,1.46041202545166,-1.47964882850647,-4.55707223713398,-6.80935335159302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2.16622495651245,-2.66067028045654,-3.85936737060547,-5.11118650436401,-5.51913499832153,-4.63761520385742,-2.86478853225708,-1.21659183502197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-10.6136622428894,-12.0646381378174,-13.2609910964966,-14.5617628097534,-16.0866851806641,-17.4229035377502,-17.8701095581055,-17.05743932724,-15.4147782325745,-14.0429968833923,-13.9823136329651,-15.3822417259216,-17.2249526977539,0,0,0,0,0,0,0,0,-11.1682053804398,-10.9532362222672,-9.73257231712341,-8.68664479255676,-8.46699273586273,-8.60817003250122,-7.90031039714813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-10.1058096885681,-12.5898847579956,-13.9954464435577,-14.0252575874329,-12.9226996898651,-11.3818680047989,-10.2072392106056,-9.89298118650913,-10.3628063499928,-11.039322078228,-11.2147224545479,-10.4978270232677,-9.05028247833252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5.18701791763306,-6.90063035488129,-7.4781060218811,-7.10709810256958,-6.26907587051392,-5.45699834823608,-5.03241395950317,-5.23572587966919,-6.21964693069458,-7.98677182197571,-10.2524725794792,-12.3865913152695,-13.5780009031296,-13.2054901123047,-11.2130678296089,-8.23277759552002,-5.3327465057373,-3.51036167144775,-3.22194051742554],[-5.10718929767609,-5.74592196941376,-6.01514649391174,-5.73699939250946,-4.91070282459259,-3.59611719846725,-1.86432172358036,0.136875629425049,2.08837783336639,3.51627743244171,3.97803270816803,3.32207250595093,1.82786345481873,0.0891914367675781,-1.31606793403625,-2.15570867061615,-2.63749003410339,-3.19194281101227,-4.0967208147049,-5.22160363197327,-6.09373080730438,-6.2479407787323,-5.60895085334778,-4.61633861064911,-3.98192191123962,-4.2351690530777,-5.36907625198364,-6.83106327056885,-7.86024761199951,-7.93367791175842,-7.02310395240784,-5.51879453659058,-3.92387902736664,-2.57361036539078,-1.57887983322144,-0.986462354660034,-0.959700345993042,-1.76755094528198,-3.54190713167191,-5.98582401871681,-8.30421626567841,-9.49743580818176,-8.89257097244263,-6.5825622677803,-3.46336209774017,-0.806196928024292,0.390811920166016,-0.123610019683838,-1.83428019285202,-3.87137019634247,-5.55255389213562,-6.69446897506714,-7.52304291725159,-8.30942678451538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3.26169085502625,-3.88719058036804,-4.7379469871521,-5.35757923126221,-5.34667348861694,-4.6165566444397,-3.42542219161987,-2.16317844390869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8.88517596200109,-10.3059439659119,-11.9379506111145,-13.2891945838928,-14.2064170837402,-14.7387518882751,-14.8730163574219,-14.4408440589905,-13.3203086853027,-11.7544693946838,-10.4473176002502,-10.2349147796631,-11.4830508232117,-13.6528658866882,-15.4418187141418,0,0,0,0,0,0,0,0,-8.4455634355545,-5.69708657264709,-2.83412504196167,-1.57310390472412,-2.47090578079224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6.37620657682419,-5.55813717842102,-5.28238224983215,-6.11338329315186,-8.09705305099487,-10.6218616962433,-12.6863474845886,-13.4240508079529,-12.5705177783966,-10.5900317430496,-8.39141756296158,-6.81319313496351,-6.19486683607101,-6.28141355514526,-6.4918577671051,-6.35089021921158,-5.7918195836246,-5.14048027992249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4.2655383348465,-5.87871330976486,-5.92703199386597,-4.77468776702881,-3.16424989700317,-1.83151292800903,-1.26578426361084,-1.66450023651123,-2.98416423797607,-4.9768397808075,-7.19758284091949,-9.05973087251186,-10.0050680041313,-9.74835187196732,-8.45142982527614,-6.68611240386963,-5.16903209686279,-4.41219735145569,-4.49851942062378],[-6.46870994567871,-5.19003438949585,-3.55945003032684,-1.98870575428009,-0.775788903236389,0.0683573931455612,0.782611344009638,1.63220934569836,2.6663755774498,3.64308595657349,4.18243598937988,4.03547048568726,3.26516902446747,2.20240384340286,1.21248868107796,0.454175233840942,-0.182453513145447,-0.914725095033646,-1.81755667924881,-2.6954000890255,-3.19593134522438,-3.09506267309189,-2.53785240650177,-2.03454142808914,-2.17978125810623,-3.26526317745447,-5.04299229383469,-6.80435395240784,-7.73449075222015,-7.32683050632477,-5.61693334579468,-3.12540884315968,-0.585115671157837,1.36098212003708,2.33263990283012,2.22069717943668,1.11135864257812,-0.770195871591568,-3.06250941753387,-5.27112579345703,0,-7.38528060913086,-6.77661848068237,-5.32889413833618,-3.6353235244751,-2.31468677520752,-1.73507034778595,-1.87904832139611,-2.41839972138405,-2.94042430818081,-3.18434393405914,-3.15536952018738,-3.0697295665741,-3.18526744842529,-3.62664127349854,-4.29939345270395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1.34629620611668,-1.27657330036163,-1.00974488258362,-0.547421932220459,-0.142025947570801,-0.0757217407226562,-0.369458198547363,-0.640161514282227,-0.246445655822754,1.32257175445557,4.03805065155029,7.17251920700073,0,0,0,0,0,0,0,0,-8.94684982299805,-8.97837615013123,-9.25453889369965,-9.89017152786255,-10.6794078350067,-11.3419890403748,-11.7125730514526,-11.7474660873413,-11.4042477607727,-10.5674700737,-9.14833927154541,-7.30777305364609,-5.5917888879776,-4.77631092071533,-5.42257887125015,-7.40612685680389,-9.78896427154541,0,0,0,0,0,0,0,0,0,-2.19054517149925,2.64478336274624,6.83637547492981,8.30147743225098,6.45738500356674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4.98535871505737,-7.20780611038208,-8.53940856456757,-8.41316020488739,-7.17893546819687,-5.85055238008499,-5.4224020242691,-6.21458518505096,-7.67487716674805,-8.75173211097717,-8.57479831576347,-6.98881021142006,-4.60486453771591,-2.36893972754478,0,-0.450853407382965,-0.36493182182312,-0.154955625534058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.50362759828568,-0.115528225898743,1.17283451557159,1.74846011400223,1.4139147400856,0.328839182853699,-1.17571079730988,-2.76109951734543,-4.1604421287775,-5.20297825336456,-5.8345627784729,-6.13742971420288,-6.30312299728394,-6.52775931358337,-6.86943960189819,-7.16993069648743,-7.12287569046021],[-6.84471035003662,-3.71318650245667,-0.316209554672241,2.42915791273117,3.9372855424881,4.17204070091248,3.57592582702637,2.77233415842056,2.23254537582397,2.09899878903525,2.23340237140656,2.40530121326447,2.46262919902802,2.37433576583862,2.15609982609749,1.78327307105064,1.18933430314064,0.356375157833099,-0.591592311859131,-1.39840912818909,-1.81563091278076,-1.78750944137573,-1.54220294952393,-1.50149631500244,-2.0435357093811,-3.25787472724915,-4.84463679790497,-6.22233313322067,-6.78544735908508,-6.17441672086716,-4.42999708652496,-1.97961449623108,0.513963222503662,2.36805415153503,3.0883367061615,2.51880097389221,0.896531581878662,-1.21587824821472,-3.12021636962891,-4.24278914928436,-4.35947075393051,-3.67218944430351,-2.685786485672,-1.94202518463135,-1.75339066982269,-2.08001577854156,-2.60369420051575,-2.93194079399109,-2.79783248901367,-2.15042471885681,-1.12511086463928,0.0366430282592773,1.04569709300995,1.5948441028595,1.41601097583771,0.41037654876709,-1.19180393218994,-2.77431535720825,-3.50664091110229,0,0,0,0,0,0,0,0,0,0,0,0,0.733519077301025,1.05053472518921,1.42096018791199,2.37073773145676,3.96768975257874,5.6102991104126,6.34351921081543,5.51435661315918,3.32001304626465,0.846794128417969,-0.474695205688477,0.314952850341797,3.11841917037964,6.78834342956543,9.7196159362793,0,0,0,0,0,0,0,-7.73453736305237,-9.45819902420044,-10.8393144607544,-11.5824999809265,-11.541925907135,-10.8688545227051,-9.91421604156494,-8.9670946598053,-8.04671323299408,-6.93038135766983,-5.41855669021606,-3.63930177688599,-2.13316774368286,-1.59452867507935,-2.39698362350464,-4.22259283065796,-6.09680604934692,-6.88609337806702,-5.99074649810791,0,0,0,0,0,0,0,0,9.13980913162231,13.8607668876648,15.4977307319641,13.3613085746765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.8788822889328,2.42896366119385,0.772670924663544,-2.56493898481131,-6.12728714942932,-8.36632132530212,-8.51866269111633,-6.97575688362122,-4.93521356582642,-3.58718538284302,-3.3798850774765,-3.83243572711945,-3.9768363237381,-3.08776012063026,-1.18473356962204,1.02129757404327,2.66105192899704,0,0,0,0,0,0,0,0,2.15938234329224,0.198565244674683,-0.923364639282227,-0.892066240310669,0.0155341625213623,1.21249139308929,2.22503471374512,2.94022011756897,3.52213242650032,4.10943813621998,4.57117229700089,4.54263693094254,3.72635418176651,2.22191941738129,0.600781202316284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.09320640563965,4.07944774627686,4.16107851266861,3.12853455543518,1.32709765434265,-0.5961012840271,-2.04765915870667,-2.74827551841736,-2.80352997779846,-2.60570275783539,-2.64558207988739,-3.30932521820068,-4.70944714546204,-6.593022108078,-8.37469136714935,-9.32254731655121,-8.85774284601212],[-5.74873757362366,-2.03019571304321,1.87403464317322,4.91093520075083,6.39579939842224,6.22045063972473,4.80234712362289,2.83724512904882,1.00318548828363,-0.246598124504089,-0.747000455856323,-0.574538707733154,0.0385160446166992,0.782868623733521,1.34218156337738,1.47090476751328,1.07400450110435,0.24864387512207,-0.754805564880371,-1.65228819847107,-2.26726627349854,-2.60995864868164,-2.84589385986328,-3.1773886680603,-3.71691608428955,-4.42781686782837,-5.15230774879456,-5.68652701377869,-5.84682381153107,-5.50573122501373,-4.62009477615356,-3.27842116355896,-1.75020503997803,-0.471255302429199,0.0934000015258789,-0.314523220062256,-1.5387077331543,-2.99019241333008,-3.89227938652039,-3.69006490707397,-2.38841342926025,-0.591769218444824,0.809069156646729,1.12936246395111,0.262801170349121,-1.29138946533203,-2.7454297542572,-3.46134400367737,-3.23023533821106,-2.25264763832092,-0.906237363815308,0.478008031845093,1.66530048847198,2.41672444343567,2.42032241821289,1.41531705856323,-0.519527435302734,-2.74688673019409,-4.18422842025757,0,0,0,0,0,0,0,0,0,0,0,0,2.45046436786652,2.01836383342743,2.13405077159405,3.49662882089615,5.97213447093964,8.44521427154541,9.40476942062378,7.90733242034912,4.27080154418945,0.00711822509765625,-2.99527931213379,-3.52990627288818,-1.70682525634766,1.21023464202881,3.61293601989746,4.45165157318115,0,0,0,0,0,0,-8.47168493270874,-11.50799036026,-13.8185381889343,-14.6807899475098,-13.9676394462585,-12.2148876190186,-10.2675848007202,-8.76199853420258,-7.80110403895378,-7.02775740623474,-6.01324272155762,-4.66113996505737,-3.32803249359131,-2.57327556610107,0,-3.54446411132812,-4.34582090377808,-4.35964727401733,-3.27272653579712,0,0,0,0,0,0,0,0,9.481893658638,13.753019630909,15.5621049404144,14.1261253356934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.56764578819275,0.350356101989746,-1.45333123207092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.13635838031769,1.42223453521729,2.11252754926682,0.482570290565491,-2.74372519925237,-6.04362630844116,-7.93402624130249,-7.7688934803009,-6.01195514202118,-3.83383572101593,-2.31908702850342,-1.81319886445999,-1.82606101036072,-1.51423025131226,-0.368332862854004,1.39280939102173,2.99017906188965,3.67131674289703,3.27546918392181,2.36320090293884,0,0,0,0,0,0,3.21250116825104,1.60975480079651,0.567264080047607,0.323960542678833,0.6612548828125,1.20753192901611,1.77808570861816,2.46613746881485,3.42746465466917,4.56915652751923,5.4422105550766,5.48019564151764,4.43347442150116,2.66449689865112,1.03370654582977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.11337161064148,5.20921397209167,3.79014897346497,1.13350582122803,-1.90706491470337,-4.32602834701538,-5.42113447189331,-5.06687784194946,-3.7197060585022,-2.19672012329102,-1.34156370162964,-1.70163059234619,-3.3145489692688,-5.66940689086914,-7.86706066131592,-8.94420313835144,-8.25390839576721],[-4.04837894439697,-1.47909498214722,1.27978682518005,3.50898140668869,4.68878138065338,4.62716400623322,3.4658958055079,1.59914243221283,-0.447001934051514,-2.14424979686737,-3.0906862616539,-3.12320166826248,-2.37638223171234,-1.24295938014984,-0.224601984024048,0.273455038666725,0.101295001571998,-0.612948656082153,-1.58641743659973,-2.56541359424591,-3.44469523429871,-4.2488374710083,-5.01086497306824,-5.66500902175903,-6.05766534805298,-6.07761287689209,-5.79539179801941,-5.47620093822479,-5.42302691936493,-5.75030529499054,-6.26660144329071,-6.58248960971832,-6.39055371284485,-5.71557259559631,-4.929607629776,-4.4893262386322,-4.56968402862549,-4.87201905250549,-4.78113913536072,-3.79581236839294,-1.94030499458313,0.149226427078247,1.55617094039917,1.6297455728054,0.382138848304749,-1.53006508201361,-3.2181057035923,-4.07410869002342,-4.03952258825302,-3.48275989294052,-2.83531498908997,-2.29835516214371,-1.83986049890518,-1.43599498271942,-1.29051005840302,-1.77867937088013,-3.10549426078796,-4.94659566879272,-6.41622066497803,-6.49212026596069,0,0,0,0,0,0,0,0,0,3.09694421291351,2.91669267416,1.81418633460999,0.385415077209473,-0.219727039337158,0.841795921325684,3.3546724319458,5.98156404495239,6.99721145629883,5.36209774017334,1.41813087463379,-3.27199268341064,-6.84316539764404,-8.198561668396,-7.53992938995361,-6.05368423461914,-5.02721977233887,-5.03346252441406,-5.72567892074585,-6.31890034675598,0,0,-6.42512226104736,-8.1098096370697,-11.1633434295654,-14.7055048942566,-17.4214425086975,-18.3255233764648,-17.3143682479858,-15.161030292511,-12.9893879890442,-11.602276802063,-11.0971581935883,-10.9713923633099,-10.5801138877869,-9.59901523590088,-8.18951368331909,-6.80385208129883,-5.81820631027222,-5.27232313156128,-4.88569927215576,-4.30887937545776,-3.41056394577026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.97196793556213,1.13064739108086,-0.827165722846985,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5.93135476112366,-3.802221596241,-3.11168491840363,-4.02584087848663,-5.88479822874069,-7.55436754226685,-8.06212651729584,-7.13869500160217,-5.32345825433731,-3.56718055903912,-2.59662815928459,0,0,0,-1.27557754516602,0.102437973022461,1.01979923248291,0.837293863296509,-0.433284878730774,-2.08657610416412,0,0,0,0,0,0,0,0.904215395450592,0.472928643226624,0.206544995307922,-0.0540790557861328,-0.422559797763824,-0.755929380655289,-0.721283342689276,-0.104695320129395,0.899460192769766,1.69578266143799,1.6499090641737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.58955252170563,2.65630999207497,0.136841297149658,-3.33451557159424,-6.69322156906128,-8.91566228866577,-9.42646431922913,-8.27941036224365,-6.07888603210449,-3.71511745452881,-2.03248739242554,-1.54531955718994,-2.28160905838013,-3.79523634910583,-5.34097933769226,-6.15514254570007,-5.74086689949036],[-3.04112130403519,-2.74807775020599,-2.17403423786163,-1.38455069065094,-0.541036248207092,0.0985576324164867,0.252064228057861,-0.24729061126709,-1.31656491756439,-2.59517699480057,-3.57783502340317,-3.85994517803192,-3.35746669769287,-2.35934539139271,-1.36862856149673,-0.827765941619873,-0.904163599014282,-1.47000905871391,-2.26978546380997,-3.13237643241882,-4.05730450153351,-5.11218965053558,-6.24067354202271,-7.16731119155884,-7.52057719230652,-7.11658328771591,-6.19184491783381,-5.37295570969582,-5.34488970041275,-6.40930789709091,-8.23578886687756,-10.003670334816,-10.8698001503944,-10.4625555872917,-9.07129129767418,-7.40606045722961,-6.10319182276726,-5.33003175258636,-4.76393121480942,-3.94127309322357,-2.69860887527466,-1.36386716365814,-0.54943311214447,-0.70468544960022,-1.77048647403717,-3.20090913772583,-4.33736330270767,-4.85154490172863,-4.92409318685532,-5.03317439556122,-5.53091740608215,-6.34829831123352,-7.06261992454529,-7.26876163482666,-6.94705748558044,-6.51645946502686,-6.5105003118515,-7.12249362468719,-7.98806387931108,-8.40212589502335,0,0,0,0,0,0,0,0,0.295605897903442,1.32424736022949,1.14702606201172,-0.363770484924316,-2.41580295562744,-3.74012660980225,-3.4449291229248,-1.68689441680908,0.338014602661133,1.11790466308594,-0.211132049560547,-3.31521034240723,-6.90158176422119,-9.57230281829834,-10.6961984634399,-10.704140663147,-10.6359891891479,-11.3003735542297,-12.6706409454346,-13.9481701850891,-14.2271918654442,0,-11.7316309213638,-10.8894200921059,-11.6905282139778,-14.1523835659027,-17.2951707839966,-19.7287092208862,-20.4793877601624,-19.5160841941833,-17.6658139228821,-16.0276708602905,-15.3025708198547,-15.4600296020508,-15.8930110931396,-15.8821449279785,-15.0290377736092,-13.4058266282082,-11.4033615589142,-9.45506978034973,-7.84164834022522,-6.66193056106567,-5.90936756134033,-5.54024910926819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.03258728981018,1.03864359855652,-0.452083587646484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-10.8571112155914,-9.96583019196987,-9.58032494783401,-9.61014753580093,-9.66636833548546,-9.27520997077227,-8.18484189361334,-6.57082772254944,-4.97719478607178,-3.99647605419159,-3.88257676362991,0,0,0,0,-2.73742485046387,-2.21313261985779,-2.75734062492847,-4.30032598972321,-6.18311953544617,0,0,0,0,0,0,-1.36229884624481,-0.70154082775116,-0.346578359603882,-0.44452178478241,-1.13953995704651,-2.33963569998741,-3.63354674726725,-4.48187324404716,-4.57628761231899,-4.09609431028366,-3.63374257087708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.147340059280396,0.355119466781616,-0.0652129650115967,-1.7782821059227,-4.5350866317749,-7.60877156257629,-10.1398847103119,-11.4868271350861,-11.4268853664398,-10.1597587764263,-8.16478970646858,-6.00503140687943,-4.15622240304947,-2.9025222659111,-2.30746620893478,-2.25054568052292,-2.50685766339302,-2.83718985319138,-3.0534992814064],[-3.1423337161541,-4.9526846408844,-6.3911726474762,-6.86471581459045,-6.15408611297607,-4.54464185237885,-2.70770728588104,-1.37119460105896,-0.952391386032104,-1.36513102054596,-2.11761939525604,-2.63790655136108,-2.61842632293701,-2.1620991230011,-1.65129828453064,-1.45286178588867,-1.67985486984253,-2.17558544874191,-2.70809480547905,-3.19867190718651,-3.78401474654675,-4.65094059705734,-5.77937635779381,-6.82613372802734,-7.29177355766296,-6.89118385314941,-5.86234617233276,-4.94956773519516,-5.00721648335457,-6.44787336885929,-8.90107637643814,-11.3382611274719,-12.6184056997299,-12.122837305069,-10.0803520679474,-7.38709354400635,-5.05960822105408,0,-3.24573481082916,-3.28247284889221,-3.37188804149628,-3.39581555128098,-3.52164381742477,-3.93014848232269,-4.5619056224823,-5.11481404304504,-5.3019495010376,-5.14881014823914,-5.06012308597565,-5.56169134378433,-6.88747656345367,-8.72546935081482,-10.3379893302917,-11.0001912117004,-10.4594330787659,-9.09351253509521,-7.6601676940918,-6.82316565513611,-6.79099130630493,-7.30191016197205,-7.91814613342285,0,0,0,0,0,0,0,-2.88773107528687,-1.15854549407959,-0.799774169921875,-1.88948631286621,-3.72409820556641,-5.23261260986328,-5.66027450561523,-5.05257701873779,-4.19279766082764,-4.02987194061279,-5.00301551818848,-6.74942302703857,-8.40611362457275,-9.28076648712158,-9.39146327972412,-9.46596050262451,-10.3877906799316,-12.4887890815735,-15.2124638557434,-17.4145133495331,-18.1100145578384,-17.1508922576904,-15.3594048023224,-14.0195236206055,-14.0712594985962,-15.5483486652374,-17.6181947588921,-19.1643602848053,-19.4965212345123,-18.7200989723206,-17.5633444786072,-16.8355145454407,-16.9095005989075,-17.5524215698242,-18.1524267196655,-18.1253519058228,-17.2145009040833,-15.5347884893417,-13.4217764139175,-11.2558886110783,-9.37844264507294,-8.0797346830368,-7.5604807138443,-7.82038396596909,-8.55468618869781,-9.20509171485901,-9.2269549369812,-8.44766616821289,0,0,0,-7.84222346544266,-9.3304785490036,-9.91632306575775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.935873031616211,0.785197734832764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-11.1452374458313,-11.9052757024765,-12.5559133291245,-12.7249536514282,-12.1742337942123,-10.8762222528458,-9.02606070041656,-7.00261569023132,-5.27549004554749,-4.25356435775757,-4.11102557182312,0,0,0,0,0,-3.92925991117954,-3.39219862222672,-3.68442034721375,-4.76123702526093,-6.17977237701416,0,-7.86387038230896,-7.60272073745728,-6.73457312583923,-5.50607913732529,-4.10400074720383,-2.65532827377319,-1.3356761932373,-0.444716453552246,-0.329018592834473,-1.1697895526886,-2.79059171676636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.14635920524597,-1.7642947435379,-3.1624675989151,-5.17170244455338,-7.283522605896,-8.94943737983704,-9.85558414459229,-10.0181760787964,-9.68129301071167,-9.11743927001953,-8.4663679599762,-7.69706225395203,-6.6893413066864,-5.36963963508606,-3.8208741247654,-2.31269365549088,-1.23538446426392,-0.955949306488037,-1.64435434341431],[-3.50788497924805,-6.10564476251602,-8.36073541641235,-9.31800103187561,-8.52293586730957,-6.23647117614746,-3.31064856052399,-0.773824092000723,0.655885607004166,0.861079096794128,0.26702618598938,-0.502993106842041,-1.02295565605164,-1.25799918174744,-1.45837044715881,-1.86928844451904,-2.4945605546236,-3.09452468156815,-3.40716481208801,-3.40112669765949,-3.34031820297241,-3.58752965927124,-4.28887283802032,-5.19438967108727,-5.78650724887848,-5.65838479995728,-4.87734568119049,-4.04638503491879,-3.97128981351852,-5.12299239635468,-7.25193554162979,-9.43469290435314,-10.5555417239666,-9.93492746353149,-7.71489036083221,-4.76936388015747,-2.21437752246857,0,-0.792757577029988,-1.68180069327354,-2.91639930009842,-4.05580908060074,-4.92488783597946,-5.50339957326651,-5.75965040922165,-5.61339867115021,-5.06557309627533,-4.3572051525116,-3.96780252456665,-4.38210213184357,-5.75230425596237,-7.69931864738464,-9.42960786819458,-10.1337251663208,-9.43097019195557,-7.58235788345337,-5.34453475475311,-3.57148588076234,-2.82057294249535,-3.18445980548859,-4.39074313640594,0,0,0,0,0,0,0,-4.29826641082764,-2.29228210449219,-1.26069355010986,-1.32687187194824,-2.12510871887207,-3.07454872131348,-3.7694206237793,-4.20411491394043,-4.67020130157471,-5.41368579864502,-6.33468246459961,-6.99181509017944,-6.94237375259399,-6.17471313476562,-5.28484153747559,-5.20890235900879,-6.64404964447021,-9.53954696655273,-13.0253853797913,-15.8633008003235,-17.1474018096924,-16.8030118942261,-15.5646786689758,-14.4648275375366,-14.1884307861328,-14.7199940681458,-15.4855103492737,-15.843111038208,-15.5514178276062,-14.8955920338631,-14.4212843179703,-14.5079705715179,-15.1021256446838,-15.7795372009277,-16.0497574806213,-15.6530151367188,-14.6462845802307,-13.269646525383,-11.7575221657753,-10.2699721232057,-8.97132875025272,-8.11803290247917,-7.99161040782928,-8.66056561470032,-9.75476789474487,-10.5014750957489,-10.1145193576813,-8.34232378005981,-5.78817582130432,0,0,-4.77359485626221,-7.38485383987427,-9.41944360733032,-9.38170719146729,-6.87467002868652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7.36220955848694,-5.7059760093689,-4.11485910415649,0,0,-5.74083471298218,-7.99238395690918,-9.81758737564087,-10.4986588954926,-9.80673050880432,-8.04845261573792,-5.87878799438477,-4.00046682357788,-2.89655029773712,-2.69293606281281,-3.17344129085541,0,0,0,0,0,0,0,0,0,0,0,-2.56167009472847,-2.96892595291138,-3.16052159667015,-3.01376389991492,-2.42132294178009,-1.39992249011993,-0.182793617248535,0.801109552383423,1.09485530853271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3.7137234210968,-5.55315697193146,-6.53571879863739,-6.45563191175461,-5.66031968593597,-4.84570646286011,-4.66084104776382,-5.35665482282639,-6.66383290290833,-7.94194459915161,-8.4986629486084,-7.91632509231567,-6.24705684185028,-4.01302886009216,-2.02253341674805,-1.06703758239746,-1.59884929656982],[-2.98273694515228,-4.7725405395031,-6.42334175109863,-7.0416567325592,-6.15449333190918,-3.94037526845932,-1.14630389213562,1.28016889095306,2.64637100696564,2.80198097229004,2.10430282354355,1.10954287648201,0.208860516548157,-0.550381243228912,-1.36062215268612,-2.37624162435532,-3.49245411157608,-4.36050924658775,-4.63289016485214,-4.24947500228882,-3.53464686870575,-3.01026028394699,-3.0437690615654,-3.58477890491486,-4.19267213344574,-4.35269713401794,-3.86439096927643,-3.0216463804245,-2.44078636169434,-2.6391658782959,-3.64844012260437,-4.93292641639709,-5.68189835548401,-5.29376602172852,-3.74341511726379,-1.60509896278381,0.268949747085571,1.19887912273407,0.981193542480469,-0.106226444244385,-1.54514914751053,-2.86931794881821,-3.82454168796539,-4.34630656242371,-4.44710969924927,-4.14918112754822,-3.52209365367889,-2.7646803855896,-2.21246309578419,-2.20550694875419,-2.87460845708847,-3.9941314458847,-5.0295557975769,-5.38485926389694,-4.71622216701508,-3.1261984705925,-1.12455397844315,0.613258741796017,1.5427593588829,1.44238978624344,0.42830228805542,0,0,0,0,-5.99382257461548,-5.63217413425446,-4.60976523160934,-3.17806529998779,-1.66150093078613,-0.34189510345459,0.617498397827148,1.15765380859375,1.24408340454102,0.81056022644043,-0.195426940917969,-1.67787933349609,-3.28284454345703,-4.45127296447754,-4.67401170730591,-3.8272852897644,-2.3636622428894,-1.18291616439819,-1.20051383972168,-2.84451198577881,-5.79055690765381,-9.11656522750854,-11.7963261604309,-13.230327129364,-13.4877915382385,-13.1296243667603,-12.7624597549438,-12.644359588623,-12.6044397354126,-12.2975692749023,-11.5708808898926,-10.6483917236328,-9.99200403690338,-9.95144611597061,-10.4791865348816,-11.1353349685669,-11.3829216957092,-10.9516549110413,-9.99778485298157,-8.95021322369576,-8.17814493179321,-7.7510792016983,-7.47814202308655,-7.17604374885559,-6.91436767578125,-6.99331414699554,-7.63008715957403,-8.59801176190376,-9.15539229521528,-8.41945064067841,-5.99748492240906,-2.43695211410522,0.890214920043945,2.49689821153879,1.6862370967865,-0.936370849609375,-3.72455358505249,-4.91698408126831,-3.66867971420288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.77976036071777,1.06028461456299,3.29668807983398,4.12572193145752,3.21916007995605,0.936782836914062,-1.80211496353149,-3.93561315536499,-4.74627590179443,-4.15917301177979,-2.70641982555389,-1.20068395137787,-0.312257170677185,-0.276236563920975,-0.859472095966339,-1.56324344873428,0,0,0,0,0,0,0,0,0,0,0,4.79104483127594,3.9262563586235,2.75120049715042,1.67118810303509,1.07539585232735,1.14376883208752,1.74857302010059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.75704696774483,-3.17750947549939,-3.12179380655289,-1.73793232440948,0.111264944076538,1.29604697227478,0.992621898651123,-0.929025083780289,-3.87746787071228,-6.84144735336304,-8.83531594276428,-9.27804946899414,-8.17192316055298,-6.05667972564697,-3.79036283493042,-2.23840463161469,-1.9593181759119],[-1.41565954685211,-1.48098310828209,-1.72072595357895,-1.63095021247864,-0.884929399937391,0.47410774230957,2.03566229343414,3.23689591884613,3.66867434978485,3.28311800956726,2.37144362926483,1.33415567874908,0.408551692962646,-0.45269513130188,-1.46856927871704,-2.77230620384216,-4.2103419303894,-5.36290216445923,-5.79145967960358,-5.34673058986664,-4.31411039829254,-3.27650141716003,-2.76900267601013,-2.94922614097595,-3.5043671131134,-3.86062741279602,-3.55857944488525,-2.54844236373901,-1.21595191955566,-0.131208896636963,0.306147575378418,0.0934658050537109,-0.411955833435059,-0.749022483825684,-0.646371364593506,-0.164310932159424,0.386653900146484,0.670529365539551,0.531424522399902,0.0530037879943848,-0.540246963500977,-1.04500842094421,-1.38381433486938,-1.5937032699585,-1.73457980155945,-1.80691814422607,-1.74713635444641,-1.49692225456238,-1.08043265342712,-0.617785215377808,-0.255966901779175,-0.0654745101928711,0.0196738243103027,0.16994047164917,0.552998065948486,1.22031307220459,2.06065130233765,2.84855699539185,3.3554664850235,3.45579063892365,3.16976296901703,2.62812948226929,1.98937678337097,1.36259317398071,0.778658747673035,0.220884144306183,-0.307578757405281,-0.723643600940704,-0.855363845825195,-0.506181359291077,0.42393946647644,1.81781387329102,3.29885816574097,4.32502317428589,4.41053104400635,3.38338756561279,1.53556251525879,-0.449446678161621,-1.79643487930298,-2.03194141387939,-1.25601768493652,-0.120246410369873,0.501580715179443,-0.0226345062255859,-1.75133323669434,-4.16648006439209,-6.49757432937622,-8.16487693786621,-9.06048059463501,-9.49820041656494,-9.88997840881348,-10.3930330276489,-10.7866544723511,-10.6671557426453,-9.81228351593018,-8.43445158004761,-7.11476016044617,-6.44165945053101,-6.60275423526764,-7.22946402430534,-7.62568092346191,-7.23750185966492,-6.04026544094086,-4.56622076034546,-3.54724764823914,-3.42321228981018,-4.06623125076294,-4.9158079624176,-5.41750931739807,-5.4293532371521,-5.27937841415405,-5.41976404190063,-5.93902969360352,-6.32712316513062,-5.72526741027832,-3.53765153884888,0.0125703811645508,3.80983233451843,6.37858301401138,6.72775435447693,4.9706221818924,2.30094313621521,0.31229829788208,0.0789575576782227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.09025430679321,5.4712450504303,7.15403294563293,7.58056664466858,6.60669136047363,4.63808631896973,2.48165273666382,0.966262698173523,0.535053461790085,1.0430181324482,1.87823423743248,2.33615081012249,2.02754807472229,1.08411109447479,0.0526752471923828,-0.443831443786621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.0600371360778809,0.499648571014404,2.23650789260864,4.09468936920166,4.91743475198746,4.0227690115571,1.48822200298309,-1.95695877075195,-5.31118166446686,-7.71674883365631,-8.72264224290848,-8.33506774902344,-6.91440105438232,-5.01198554039001,-3.20517182350159,-1.94338643550873],[0.0312952995300293,1.50226759910583,2.52125370502472,3.11352571099997,3.42359367012978,3.57671632617712,3.57981491088867,3.34035170078278,2.78399395942688,1.9678852558136,1.08521294593811,0.342729091644287,-0.199617385864258,-0.694612979888916,-1.40760278701782,-2.50300884246826,-3.8671133518219,-5.10878014564514,-5.7649393081665,-5.59178018569946,-4.74949741363525,-3.74417924880981,-3.14367580413818,-3.23449850082397,-3.83322906494141,-4.37566423416138,-4.23720836639404,-3.09721326828003,-1.13599491119385,1.04283952713013,2.70972919464111,3.35203075408936,2.87942409515381,1.60542154312134,0.0509004592895508,-1.29828643798828,-2.15156412124634,-2.43960952758789,-2.24264621734619,-1.70153331756592,-0.972073078155518,-0.226096153259277,0.343148231506348,0.555310726165771,0.32063627243042,-0.283444404602051,-0.998862743377686,-1.46908473968506,-1.39104509353638,-0.662017345428467,0.559169292449951,1.91392493247986,2.99938178062439,3.53777551651001,3.4764518737793,2.97787809371948,2.32122135162354,1.77956914901733,1.53642177581787,1.66620492935181,2.15682244300842,2.93107581138611,3.84187459945679,4.65797960758209,5.08617959916592,4.86358076334,3.90116593241692,2.40087509155273,0.851259231567383,-0.142968058586121,-0.143522143363953,0.869024634361267,2.42896765470505,3.77583646774292,4.22626429796219,3.53194761276245,2.01491546630859,0.386643886566162,-0.657782554626465,-0.837711572647095,-0.437746047973633,-0.116089344024658,-0.485533475875854,-1.72785937786102,-3.48586571216583,-5.1019104719162,-6.04751038551331,-6.26056027412415,-6.16419553756714,-6.35201835632324,-7.15063142776489,-8.36037254333496,-9.36109972000122,-9.52386879920959,-8.65433216094971,-7.1601870059967,-5.81307649612427,-5.2504403591156,-5.54909634590149,-6.16645991802216,-6.30395042896271,-5.45876955986023,-3.79320329427719,-2.06360077857971,-1.14499926567078,-1.4642961025238,-2.72289729118347,-4.09798669815063,-4.78614568710327,-4.51757049560547,-3.68721723556519,-3.01419925689697,-2.97007846832275,-3.38356018066406,-3.51267528533936,-2.5532808303833,-0.24411678314209,2.85062170028687,5.59290981292725,6.91261455416679,6.43175113201141,4.67335158586502,2.72824773192406,1.60450637340546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.44320178031921,3.34852659702301,4.28695869445801,5.09585809707642,5.52459752559662,5.36277341842651,4.60765108466148,3.53998422622681,2.62126278877258,2.24542140960693,2.49078333377838,3.04052340984344,3.34790325164795,2.96730422973633,1.85556054115295,0.449038743972778,-0.548102140426636,-0.551952838897705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.35638856887817,2.68722629547119,1.60110807418823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.7507381439209,2.17664337158203,3.29047775268555,4.18554496765137,4.07103562355042,2.685706615448,0.366884708404541,-2.20812845230103,-4.39904594421387,-5.85630464553833,-6.5389997959137,-6.56101322174072,-6.02709245681763,-4.9848051071167,-3.49654912948608,-1.7310471534729],[-0.0287361145019531,1.9998185634613,3.45501399040222,4.02970391511917,3.77321684360504,2.98197478055954,1.9978187084198,1.05584990978241,0.257225275039673,-0.363714218139648,-0.77161431312561,-0.933534383773804,-0.885457038879395,-0.785090446472168,-0.874711036682129,-1.34878015518188,-2.2075207233429,-3.20940756797791,-3.98167014122009,-4.24019908905029,-3.9835364818573,-3.52453708648682,-3.31672143936157,-3.66422510147095,-4.4894323348999,-5.31229543685913,-5.47677206993103,-4.51262974739075,-2.43395328521729,0.197268009185791,2.48778700828552,3.60326218605042,3.13417840003967,1.2592601776123,-1.35851669311523,-3.86952638626099,-5.56934595108032,-6.11354970932007,-5.54959154129028,-4.20309019088745,-2.51437616348267,-0.910362720489502,0.26200008392334,0.769259452819824,0.531612396240234,-0.326462745666504,-1.45829248428345,-2.36505746841431,-2.56728410720825,-1.81875514984131,-0.253158569335938,1.63169431686401,3.16704440116882,3.79816007614136,3.31980276107788,1.94653701782227,0.195615291595459,-1.33932209014893,-2.19993329048157,-2.17017531394958,-1.26961827278137,0.308404207229614,2.24828946590424,4.13734394311905,5.50586301088333,5.932821393013,5.21357262134552,3.50802934169769,1.35373282432556,-0.51799201965332,-1.50466632843018,-1.4274754524231,-0.618249893188477,0.273481369018555,0.655116558074951,0.325363159179688,-0.440838217735291,-1.11427891254425,-1.29862129688263,-1.02663815021515,-0.760521054267883,-1.08344662189484,-2.27909833937883,-4.08255887031555,-5.78572833538055,-6.65104866027832,-6.37837152183056,-5.32051002979279,-4.29370427131653,-4.0876989364624,-4.97848033905029,-6.55454230308533,-7.97221779823303,-8.4818012714386,-7.8899986743927,-6.66275453567505,-5.6039571762085,-5.32053399085999,-5.82489609718323,-6.53669786453247,-6.68447130918503,-5.84307980537415,-4.24981325864792,-2.68312880396843,-1.97359949350357,-2.46109557151794,-3.75311266258359,-4.94884479045868,-5.1927330493927,-4.20705604553223,-2.46323680877686,-0.882662773132324,-0.25743293762207,-0.758190155029297,-1.83610105514526,-2.57278776168823,-2.24996614456177,-0.781576156616211,1.24982118606567,2.95394039154053,3.6497654914856,3.21981728076935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.1462824344635,3.1264955997467,2.62981748580933,1.86664652824402,1.07276797294617,0.404165029525757,-0.0770969390869141,-0.342746436595917,-0.339726507663727,-0.00362896919250488,0.652009010314941,1.44464659690857,2.02708745002747,2.03162598609924,1.29392266273499,0.0187709331512451,-1.2432804107666,-1.83422136306763,-1.33035230636597,0,0,0,0,0,0,0,0,0,0,0,0,3.67510199546814,2.6107017993927,1.34253716468811,0.174550533294678,-0.672014713287354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.58366632461548,1.52167081832886,0.954604625701904,-0.322959899902344,-2.02252006530762,-3.55171155929565,-4.40528345108032,-4.48108434677124,-4.10898113250732,-3.78605890274048,-3.81163239479065,-4.07440423965454,-4.13097906112671,-3.51379871368408,-2.05678701400757],[-1.75320219993591,-0.190842151641846,0.837274074554443,0.950669050216675,0.242729663848877,-0.846528291702271,-1.81770642846823,-2.36620318889618,-2.46469712257385,-2.2670339345932,-1.94052255898714,-1.55800133943558,-1.11201453208923,-0.610726475715637,-0.155478835105896,0.0774030685424805,-0.0550168752670288,-0.547519207000732,-1.22324734926224,-1.83647018671036,-2.24106180667877,-2.50515341758728,-2.87618637084961,-3.59737467765808,-4.68444752693176,-5.8164154291153,-6.43891394138336,-6.05090582370758,-4.52255946397781,-2.25372469425201,-0.0594909191131592,1.17904245853424,0.92350971698761,-0.768022656440735,-3.27323257923126,-5.69754886627197,-7.26366436481476,-7.59902554750443,-6.79928648471832,-5.28221809864044,-3.55376982688904,-2.02515959739685,-0.948871612548828,-0.444556474685669,-0.533931732177734,-1.12943983078003,-1.99449515342712,-2.74785208702087,-2.97076272964478,-2.39825773239136,-1.09324836730957,0.517637968063354,1.79964756965637,2.19361233711243,1.47885656356812,-0.128136396408081,-2.08589923381805,-3.77474677562714,-4.73401683568954,-4.77451622486115,-3.94821166992188,-2.44894301891327,-0.538459919393063,1.46456807851791,3.17527830600739,4.18862891197205,4.21030879020691,3.2139852643013,1.51012301445007,-0.35561740398407,-1.84734058380127,-2.69070959091187,-2.97104930877686,-3.0088152885437,-3.09379053115845,-3.2639012336731,-3.29157066345215,-2.8971574306488,-2.04039132595062,-1.06833256408572,-0.581931173801422,-1.0754377245903,-2.57424636185169,-4.52476936578751,-6.04433286190033,-6.40717613697052,-5.47737653553486,-3.81413733959198,-2.36885285377502,-1.94668483734131,-2.7549147605896,-4.31036448478699,-5.75603890419006,-6.38521265983582,-6.04749989509583,-5.19294953346252,-4.54250812530518,-4.60674858093262,-5.36325716972351,-6.29296064376831,-6.74163340032101,-6.36509092897177,-5.36638075113297,-4.36954200267792,-4.00829935073853,-4.49179542064667,-5.42686241865158,-6.01924467086792,-5.54159605503082,-3.79066479206085,-1.25791883468628,1.09346485137939,2.322678565979,1.99868822097778,0.412868738174438,-1.58977127075195,-3.05256915092468,-3.372718334198,-2.54640257358551,-1.08992004394531,0.285064935684204,1.04342520236969,1.04953730106354,0.551528573036194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.04679465293884,2.32044363021851,1.65313696861267,0.244806289672852,-1.46528935432434,-2.98353588581085,-3.94347959756851,-4.20029580593109,-3.8147077858448,-2.96994423866272,-1.89063388109207,-0.806229412555695,0.0529880523681641,0.473159790039062,0.322435021400452,-0.354801595211029,-1.28372341394424,-2.01629614830017,-2.10968279838562,-1.35003852844238,0,0,0,0,0,0,0,0,0,0,0,0,-0.0685218572616577,-0.426334500312805,-0.7922602891922,-1.15589022636414,-1.53870332241058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.136282920837402,-1.01667428016663,-2.89045238494873,-5.13181376457214,-6.97432684898376,-7.64638423919678,-6.84126603603363,-4.94444501399994,-2.85883581638336,-1.52019608020782,-1.39069271087646,-2.23138654232025,-3.28128516674042,-3.72254252433777,-3.1465425491333],[-3.72402493655682,-3.06966984272003,-2.8617879152298,-3.33475571870804,-4.24483889341354,-5.05512595176697,-5.27897334098816,-4.75943678617477,-3.72296717762947,-2.59941959381104,-1.74488341808319,-1.25023251771927,-0.946017101407051,-0.578190103173256,-0.0207406282424927,0.621767222881317,1.08408242464066,1.1237456202507,0.684103727340698,-0.0775889754295349,-0.912799626588821,-1.66248344630003,-2.36057475209236,-3.17859156429768,-4.24447323381901,-5.46573024988174,-6.49634170532227,-6.89684808254242,-6.40419566631317,-5.14124310016632,-3.61818504333496,-2.5013587474823,-2.27206307649612,-2.97361719608307,-4.19654858112335,-5.30867457389832,-5.79002809524536,-5.4760262966156,-4.58001899719238,-3.50999104976654,-2.61712074279785,-2.03760004043579,-1.70512948278338,-1.48642867803574,-1.31486043334007,-1.21939584612846,-1.2426470220089,-1.33569753170013,-1.3361964225769,-1.06674468517303,-0.488021612167358,0.213856220245361,0.688508152961731,0.608880639076233,-0.131638169288635,-1.34304237365723,-2.63402229547501,-3.61389142274857,-4.06821006536484,-4.00280507653952,-3.55084863305092,-2.83457636833191,-1.8948415517807,-0.736267447471619,0.563643217086792,1.78787410259247,2.62902384996414,2.83420684933662,2.34498386085033,1.32918393611908,0.0805082321166992,-1.13869285583496,-2.19437026977539,-3.05204296112061,-3.66256332397461,-3.87925338745117,-3.50516128540039,-2.46348285675049,-0.968611717224121,0.457324981689453,1.189568825881,0.83832198381424,-0.485552668571472,-2.16562569141388,-3.37527769804001,-3.52094578742981,-2.57410621643066,-1.08753538131714,0.120816230773926,0.429880619049072,-0.251170635223389,-1.47136306762695,-2.54117488861084,-2.95417642593384,-2.66846609115601,-2.08837842941284,-1.77837657928467,-2.10194849967957,-3.01137113571167,-4.10671544075012,-4.90916728973389,-5.16479468345642,-4.98625588417053,-4.74921655654907,-4.81472015380859,-5.25422596931458,-5.75008797645569,-5.73946499824524,-4.72763806581497,-2.59954243898392,0.243840098381042,3.00594781339169,4.8212251663208,5.1322700381279,3.9375097155571,1.79289945960045,-0.430040165781975,-1.91379722952843,-2.22061055898666,-1.43115191161633,-0.0462455749511719,1.28447550535202,2.06721006333828,2.15581637620926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.11288499832153,1.12123870849609,0.221206188201904,-1.27451705932617,-2.85194659233093,-3.99679899215698,-4.38518846035004,-3.97979843616486,-2.99783480167389,-1.78498721122742,-0.670008659362793,0.131203651428223,0.536763072013855,0.568321704864502,0.313987374305725,-0.0888080596923828,-0.459362789988518,-0.599850833415985,-0.358542680740356,0.290946245193481,1.20686483383179,2.11762261390686,0,0,0,0,0,0,0,0,0,0,-0.0622680187225342,0.207849860191345,0.637101545929909,0.963972672820091,0.922767072916031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.498939454555511,-2.11631065607071,-4.57866990566254,-7.20609486103058,-8.99417626857758,-9.13215827941895,-7.47374045848846,-4.67218291759491,-1.88254922628403,-0.188806653022766,-0.0769286453723907,-1.24559900164604,-2.84562063217163,-3.98942935466766,-4.22699147462845],[-4.15109384059906,-4.1387779712677,-4.5702999830246,-5.44917166233063,-6.36033654212952,-6.72253346443176,-6.15157580375671,-4.70919696986675,-2.88728678226471,-1.34066486358643,-0.532115936279297,-0.501017570495605,-0.886227488517761,-1.17735248804092,-1.03313279151917,-0.472983479499817,0.165632843971252,0.462308168411255,0.182655572891235,-0.590256094932556,-1.53698240220547,-2.32947945594788,-2.84657442569733,-3.23253130912781,-3.76421666145325,-4.62348175048828,-5.73482942581177,-6.7819322347641,-7.39263427257538,-7.36582565307617,-6.78546118736267,-5.94634795188904,-5.1475168466568,-4.50081807374954,-3.88955399394035,-3.10373643785715,-2.05078035593033,-0.88421642780304,0.0509783029556274,0.42832612991333,0.164549231529236,-0.496758699417114,-1.10506004095078,-1.25275033712387,-0.795703053474426,0.0905592441558838,1.04133689403534,1.72052726149559,1.98068052530289,1.87653917074203,1.55453932285309,1.12335884571075,0.606890559196472,0.000993490219116211,-0.634601399302482,-1.1462444961071,-1.36084359884262,-1.21529340744019,-0.835374116897583,-0.486150979995728,-0.409173011779785,-0.651364326477051,-1.00706458091736,-1.12330770492554,-0.708166718482971,0.288394808769226,1.63239386677742,2.92124933004379,3.7763444185257,3.99548137187958,3.59262311458588,2.7373058795929,1.66525936126709,0.624320983886719,-0.138140678405762,-0.39240550994873,0.00786304473876953,1.02410507202148,2.36997556686401,3.5688054561615,4.14558389782906,3.86772561073303,2.89073990285397,1.70146727561951,0.869519948959351,0.741980314254761,1.26195096969604,2.02149868011475,2.51592636108398,2.44207429885864,1.85961866378784,1.12486505508423,0.650948524475098,0.651610612869263,1.02480053901672,1.43437695503235,1.52253603935242,1.11299014091492,0.286218404769897,-0.700900793075562,-1.58210265636444,-2.22422313690186,-2.66444182395935,-3.03463172912598,-3.43141984939575,-3.81311178207397,-3.98018550872803,-3.6480016708374,-2.57748746871948,-0.70836353302002,1.75995111465454,4.3786301612854,6.56250262260437,7.78074479103088,7.76184713840485,6.62599691748619,4.87121017277241,3.19583529233932,2.21957784891129,2.22701692581177,3.06019258499146,4.21843194961548,5.11717054247856,5.37006548047066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.931777954101562,1.28109836578369,0.979184865951538,0.160460233688354,-0.830799341201782,-1.56961131095886,-1.7208878993988,-1.17682766914368,-0.0976364612579346,1.16489386558533,2.2236921787262,2.81638336181641,2.89456915855408,2.60761046409607,2.20352292060852,1.90765032172203,1.84024393558502,2.00096027553082,2.30706822872162,2.64952456951141,2.93617391586304,3.11363554000854,3.17529726028442,3.16216588020325,3.15180230140686,3.22621595859528,3.42273116111755,3.69523030519485,3.92143096029758,0,3.80760180950165,3.54764196276665,3.43288779258728,3.69311702251434,4.37925457954407,5.27259111404419,5.94996500015259,5.99247026443481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.16558361053467,-3.2621037364006,-5.50077390670776,-6.94610905647278,-6.91850256919861,-5.38258242607117,-2.99753046035767,-0.793197244405746,0.347774386405945,0.111603498458862,-1.15012145042419,-2.68539535999298,-3.79539752006531,-4.20620405673981],[-2.53544601798058,-2.55088901519775,-3.13394999504089,-4.10924935340881,-4.95604729652405,-5.10130405426025,-4.26352488994598,-2.64570188522339,-0.860314607620239,0.377046823501587,0.615020513534546,-0.111509919166565,-1.3277068734169,-2.40176689624786,-2.89751374721527,-2.79287648200989,-2.44414663314819,-2.32947826385498,-2.73581087589264,-3.5823438167572,-4.48424530029297,-5.00911259651184,-4.96027410030365,-4.50889003276825,-4.09588944911957,-4.170066177845,-4.92651569843292,-6.19994240999222,-7.56174772977829,-8.54163694381714,-8.82892489433289,-8.34393763542175,-7.17328929901123,-5.45677971839905,-3.33105117082596,-0.968581557273865,1.34494960308075,3.19916123896837,4.17640852928162,4.05925330519676,3.00115456618369,1.53054141998291,0.350370407104492,0.0240871906280518,0.71773624420166,2.14039289951324,3.70906536281109,4.83483374118805,5.16877341270447,4.6905854344368,3.63213473558426,2.32336056232452,1.06821250915527,0.101797103881836,-0.399979770183563,-0.324200537055731,0.327080342918634,1.37014770507812,2.43525689840317,3.07755708694458,2.97627055644989,2.11788910627365,0.846165657043457,-0.270116567611694,-0.692697286605835,-0.157894313335419,1.21876156330109,3.02189254760742,4.74038344621658,5.9788156747818,6.57627308368683,6.60278487205505,6.27318930625916,5.84415626525879,5.53756809234619,5.49510478973389,5.74980926513672,6.21172428131104,6.68536615371704,6.93730425834656,6.80141514539719,6.27088391780853,5.51496291160583,4.79512639343739,4.32049489021301,4.12987160682678,4.07909822463989,3.94641876220703,3.58866453170776,3.04421782493591,2.51270842552185,2.22491717338562,2.29089641571045,2.6274893283844,3.00975397229195,3.20565345883369,3.10066789388657,2.73356121778488,2.23307228088379,1.71422294527292,1.21337932348251,0.702107191085815,0.1551513671875,-0.390525817871094,-0.833984851837158,-1.06130981445312,-1.00024223327637,-0.629793167114258,0.0587100982666016,1.10249614715576,2.55320072174072,4.39492702484131,6.44824552536011,8.34804582595825,9.65017426013947,10.0350874066353,9.49590909481049,8.3853280544281,7.2682478427887,6.64623713493347,6.70573544502258,7.23660945892334,7.76934576034546,7.84792351722717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.68308329582214,2.33395391702652,1.72657731175423,1.09477299451828,0.729027271270752,0.865284562110901,1.58135950565338,2.74502140656114,4.04375171661377,5.09445801377296,5.59361247718334,5.44262750446796,4.78948071599007,3.96234569977969,3.32539933919907,3.1239560842514,3.39102452993393,3.95377349853516,4.52852320671082,4.85332536697388,4.79717016220093,4.40533399581909,3.87227201461792,3.46147632598877,3.40442895889282,3.81238317489624,4.62951993942261,5.64900469779968,6.59418034553528,7.24162971973419,7.53276461362839,7.61277215182781,7.75963732600212,8.22357249259949,9.05617141723633,10.0297491550446,10.7100300788879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2.31990912556648,-2.26171578839421,-1.4384751021862,-0.334493279457092,0.411694824695587,0.369038105010986,-0.452789962291718,-1.63238883018494,-2.60393118858337,-2.99684524536133,-2.8439553976059],[-0.186843797564507,0.220943361520767,-0.0957868695259094,-0.904949964955449,-1.69494224246591,-1.95644327718765,-1.46837809681892,-0.432113766670227,0.621935680508614,1.10756748914719,0.688279449939728,-0.552423641085625,-2.16967725753784,-3.61039125919342,-4.51558065414429,-4.89787411689758,-5.09266257286072,-5.51495283842087,-6.37049096822739,-7.49857497215271,-8.44594645500183,-8.731773853302,-8.14714503288269,-6.9101847410202,-5.58327853679657,-4.79884082078934,-4.94859535619617,-6.00381790101528,-7.54840770363808,-8.98177671432495,-9.76409721374512,-9.57950139045715,-8.36892032623291,-6.2727689743042,-3.56183326244354,-0.60398842394352,2.15084171295166,4.22469902038574,5.23898530006409,5.08002614974976,4.00616371631622,2.60289001464844,1.56915134191513,1.42257389426231,2.27294236421585,3.78534293174744,5.35119724273682,6.37075543403625,6.49753403663635,5.73264947533607,4.35492622852325,2.762690782547,1.32954287528992,0.332966804504395,-0.0560362339019775,0.225753545761108,1.10669326782227,2.34560036659241,3.54636442661285,4.26424217224121,4.18354675173759,3.28158852458,1.87843471765518,0.5253586769104,-0.223801374435425,-0.0438635349273682,1.04533386230469,2.72864580154419,4.57029438018799,6.21094226837158,7.48728680610657,8.43127751350403,9.17610836029053,9.83776426315308,10.4363340139389,10.8863099813461,11.0460784435272,10.7948523759842,10.1022962331772,9.06398344039917,7.88592612743378,6.81667387485504,6.04655933380127,5.61733269691467,5.39377324283123,5.12727391719818,4.59236192703247,3.72614550590515,2.68517851829529,1.77383351325989,1.27525687217712,1.28342831134796,1.64288920164108,2.03964515496045,2.18950486183167,2.00367683172226,1.62423869967461,1.30839028954506,1.243512570858,1.42180665209889,1.66008710861206,1.74613630771637,1.60183382034302,1.34174656867981,1.18328857421875,1.27646017074585,1.58442687988281,1.91288185119629,2.07637691497803,2.08245754241943,2.18906021118164,2.77129364013672,4.06798267364502,5.97254228591919,8.01838397979736,9.58932593464851,10.2387875318527,9.92590355873108,9.02315950393677,8.09179496765137,7.56313610076904,7.51778602600098,7.68658971786499,7.65593481063843,0,0,0,0,0,3.06290984153748,3.14094203710556,3.28568986058235,3.3813225030899,3.44816482067108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.91849291324615,4.58466935157776,3.9401188492775,3.12769469618797,2.38167625665665,1.94950201362371,2.00380523502827,2.57611756026745,3.5337632894516,4.60869711637497,5.47423255443573,5.85046339035034,5.60626065731049,4.81786000728607,3.75425660610199,2.78398546949029,2.23606586456299,2.27133417129517,2.82168745994568,3.62491512298584,4.33915233612061,4.6853551864624,4.55622148513794,4.05048990249634,3.42574596405029,2.99602222442627,3.01614189147949,3.59380626678467,4.65628433227539,5.98249530792236,7.28921365737915,8.34280490875244,9.05165910720825,9.4959397315979,9.87241232395172,10.3723624944687,11.0511099100113,11.7609423398972,12.1941266059875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.05398100614548,2.25301933288574,2.35737663507462,2.1002289056778,1.29552888870239,0.0129246711730957,-1.39119863510132,-2.42162418365479,-2.69689881801605,-2.16344374418259,-1.14464604854584],[0.952274441719055,1.77299708127975,1.84097290039062,1.33311975002289,0.637674570083618,0.139232635498047,0.0232350826263428,0.195874929428101,0.355216979980469,0.171087503433228,-0.525818705558777,-1.65044832229614,-2.9184779599309,-4.01918095350266,-4.80510807037354,-5.38277232646942,-6.04206597805023,-7.05727112293243,-8.47474217414856,-10.0200717449188,-11.1952006816864,-11.5260784626007,-10.8284060955048,-9.34056091308594,-7.64265561103821,-6.39921236038208,-6.05985730886459,-6.67081207036972,-7.88200271129608,-9.12505376338959,-9.85369062423706,-9.72620034217834,-8.66648936271667,-6.81975853443146,-4.46680932492018,-1.95287597179413,0.358610272407532,2.13495546579361,3.1508530639112,3.37816731631756,3.03338699508458,2.52669978141785,2.30597788095474,2.65881967544556,3.57564290612936,4.75358152389526,5.74409288167953,6.16483038663864,5.86240287125111,4.94778954982758,3.70609831809998,2.4522693157196,1.42069840431213,0.734880447387695,0.438894748687744,0.534615039825439,0.981375694274902,1.66296768188477,2.36878967285156,2.83558320999146,2.85225582122803,2.37563037872314,1.58236455917358,0.812397003173828,0.424216270446777,0.638584136962891,1.45687389373779,2.69572496414185,4.1104907989502,5.52969026565552,6.92134714126587,8.35749769210815,9.90479695796967,11.5112180970609,12.9584769010544,13.9131345748901,14.0573048591614,13.2392394542694,11.5717070102692,9.42554366588593,7.3088731020689,5.67450566589832,4.73670315742493,4.38564538955688,4.25097885727882,3.89583742618561,3.05060052871704,1.76290392875671,0.375008583068848,-0.668448686599731,-1.07895731925964,-0.897551000118256,-0.474358379840851,-0.259515404701233,-0.52893278002739,-1.21446615457535,-1.94686442613602,-2.28631234169006,-1.99391140788794,-1.17003500461578,-0.172726392745972,0.624260663986206,1.06706261634827,1.28983974456787,1.57120370864868,2.08417081832886,2.72312021255493,3.14228200912476,2.99419689178467,2.21207237243652,1.13741683959961,0.386746406555176,0.520288467407227,1.7098913192749,3.61321544647217,5.53778147697449,6.8011726140976,7.07577306032181,6.52075690031052,5.63918924331665,4.96296405792236,4.76192903518677,0,0,0,0,0,0,0,3.06262969970703,3.44810023903847,3.89742743968964,4.20985162258148,4.30237889289856,4.21216905117035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.13220679759979,4.64698481559753,3.90515287220478,3.13485226035118,2.58107191324234,2.41130638122559,2.65081918239594,3.17403817176819,3.75129652023315,4.12805616855621,4.10752725601196,3.61195421218872,2.70849871635437,1.59362959861755,0.538805484771729,-0.191272258758545,-0.42324161529541,-0.13325834274292,0.546361446380615,1.37781047821045,2.10668849945068,2.55319595336914,2.66870498657227,2.53939437866211,2.34198474884033,2.27542591094971,2.49582386016846,3.07380485534668,3.980788230896,5.1032075881958,6.2784538269043,7.34467220306396,8.190673828125,8.78776216506958,9.1870231628418,9.47801494598389,9.72603130340576,9.92012083530426,9.96332204341888,9.71613565087318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.09477996826172,4.5808346606791,4.34733919426799,3.2749291062355,1.50281405448914,-0.54880690574646,-2.29834318161011,-3.22292447090149,-3.07717061042786,-2.00113749504089,-0.461086273193359],[0.0867862701416016,0.912944078445435,1.19342017173767,0.997673273086548,0.51661491394043,-0.0476326942443848,-0.566803932189941,-1.01453351974487,-1.43581414222717,-1.88378262519836,-2.36398339271545,-2.82126933336258,-3.18083271384239,-3.42181766033173,-3.63642621040344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8.64772582054138,-7.6191314458847,-6.20977473258972,-4.64159822463989,-3.09773933887482,-1.69511365890503,-0.492244720458984,0.499685525894165,1.3180832862854,2.04938411712646,2.80392718315125,3.65815699100494,4.59050524234772,5.45699656009674,6.0379763841629,6.14313149452209,5.71858835220337,4.89020419120789,3.91165900230408,3.04437375068665,2.43924736976624,2.08842134475708,1.86955642700195,1.64645004272461,1.35784435272217,1.04103183746338,0.785525798797607,0.659666538238525,0.666393756866455,0.757307529449463,0.888119220733643,1.06827354431152,1.36396360397339,1.85092306137085,2.55279779434204,3.41391611099243,4.33204936981201,5.23337173461914,6.1384801864624,7.16791129112244,8.46983695030212,10.1009654216468,11.9257962703705,13.5982136726379,14.653139591217,14.681291103363,13.5139017105103,11.3297238349915,8.62290358543396,6.02962303161621,4.07972681522369,2.98371267318726,2.56072783470154,2.35190138220787,1.87152373790741,0.870724201202393,-0.528596639633179,-1.90907669067383,-2.80698911845684,-2.99594494700432,-2.63667987287045,-2.19620013609529,-2.17536404728889,-2.80383808165789,-3.88853025436401,-4.91317188739777,-5.33330938220024,-4.88771444559097,-3.73503994941711,-2.33417797088623,-1.15046072006226,-0.381001949310303,0.121860504150391,0.683140754699707,1.51236820220947,2.49078750610352,3.19381952285767,3.14826250076294,2.16370677947998,0.520313262939453,-1.12101364135742,-2.04669952392578,-1.86691474914551,-0.717931747436523,0.826565742492676,2.07727718353271,2.59173822402954,2.37169027328491,1.79935503005981,1.37472701072693,1.42441421747208,0,0,0,3.57123972475529,3.56371760368347,3.47486102581024,3.52742576599121,3.81319069862366,4.24091398715973,4.59632037580013,4.66507405042648,4.34249204397202,3.6727542579174,2.80742171406746,1.91730093955994,1.11081063747406,0.400938332080841,-0.266455098986626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.28902888298035,3.69354629516602,3.77506625652313,3.58501243591309,3.26805990934372,3.01413312554359,2.97263127565384,3.17517900466919,3.51120412349701,3.77129888534546,3.73743736743927,3.27578353881836,2.39099144935608,1.22283411026001,-0.00593137741088867,-1.06383895874023,-1.7777271270752,-2.07233285903931,-1.97462272644043,-1.58747053146362,-1.04466676712036,-0.463870048522949,0.085395336151123,0.58836555480957,1.06637573242188,1.54654693603516,2.03868198394775,2.533447265625,3.02081108093262,3.51258277893066,4.04818820953369,4.67369174957275,5.40308475494385,6.18679332733154,6.91201019287109,7.44182968139648,7.67600393295288,7.60011911392212,7.29430770874023,6.89447426795959,6.52554106712341,6.24192833900452,6.00723516941071,5.72202852368355,5.28467786312103,4.65259659290314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.47459216043353,4.31343790888786,3.16605524718761,1.28224837779999,-0.822519779205322,-2.55059480667114,-3.44526696205139,-3.35220503807068,-2.45035576820374,-1.14971327781677],[-1.75203227996826,-1.41612029075623,-1.21776819229126,-1.18346834182739,-1.33413743972778,-1.68278455734253,-2.20819759368896,-2.83045220375061,-3.41341042518616,-3.80132007598877,-3.87548732757568,-3.60617759078741,0,0,0,0,0,0,0,0,0,0,0,0,-8.71647167205811,-8.46894550323486,-8.42294645309448,0,0,0,0,-6.15808397531509,-4.82147890329361,-3.56998789310455,-2.56519317626953,-1.81306529045105,-1.1760516166687,-0.44891357421875,0.546407222747803,1.88923215866089,3.53143811225891,5.3076159954071,6.97108745574951,8.24723792076111,8.90110838413239,8.8115314245224,8.02943158149719,6.78822779655457,5.44399833679199,4.35454702377319,3.74365592002869,3.61454749107361,3.75925087928772,3.86365079879761,3.65785980224609,3.03804540634155,2.10351848602295,1.10018014907837,0.30987024307251,-0.0539851188659668,0.101034641265869,0.753199100494385,1.80742359161377,3.13492345809937,4.59287595748901,6.03066730499268,7.30338621139526,8.30597996711731,9.01837205886841,9.5320893228054,10.0281859636307,10.6986796855927,11.637770652771,12.7546892166138,13.7604508399963,14.2521448135376,13.8719246387482,12.4754540920258,10.2292252779007,7.57897764444351,5.08799159526825,3.20952916145325,2.09910088777542,1.56405246257782,1.18487358093262,0.553907752037048,-0.492377758026123,-1.7777087688446,-2.88832439482212,-3.42325836420059,-3.25150589644909,-2.62061715126038,-2.04127252101898,-2.00403726100922,-2.69044804573059,-3.8527227640152,-4.94110429286957,-5.40932548046112,-5.01768088340759,-3.951664686203,-2.68630075454712,-1.68445539474487,-1.1210470199585,-0.808005809783936,-0.365150451660156,0.476810455322266,1.64217472076416,2.70347690582275,3.11606740951538,2.55238008499146,1.12846088409424,-0.620946884155273,-2.00826835632324,-2.54422473907471,-2.17063808441162,-1.24783992767334,-0.318291664123535,0.20393180847168,0.237336158752441,0.0275821685791016,-0.0401883125305176,0.317623138427734,0,0,0,3.9745814204216,4.432204246521,4.70790886878967,4.95560038089752,5.24206781387329,5.49070286750793,5.52101504802704,5.15385019779205,4.31892061233521,3.1053132712841,1.73058987408876,0.447004109621048,-0.565534994006157,-1.26605932414532,-1.74503882229328,-2.14634793996811,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.5840015411377,2.06434586644173,2.45193672180176,2.74434864521027,2.98351955413818,3.25730955600739,3.65431720018387,4.19561187922955,4.78815238177776,5.23687651753426,5.31900407373905,4.88734309375286,3.94962054491043,2.68225908279419,1.36994171142578,0.299156188964844,-0.345266819000244,-0.536268711090088,-0.392536163330078,-0.108616828918457,0.139215469360352,0.270177364349365,0.327611923217773,0.448099136352539,0.786190032958984,1.42879152297974,2.34016227722168,3.3659143447876,4.29780673980713,4.97015285491943,5.339599609375,5.50471687316895,5.65080261230469,5.94518184661865,6.43727397918701,7.01914215087891,7.471999168396,7.5781569480896,7.24100828170776,6.54840421676636,5.74342727661133,5.11429142951965,4.85740089416504,4.98325300216675,5.31132519245148,5.55663967132568,5.46426558494568,4.92658424377441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.3605637550354,-0.156614065170288,-1.48928499221802,-2.35037732124329,-2.66217255592346,-2.53365421295166,-2.16629719734192],[-2.78624272346497,-3.21253657341003,-3.32622408866882,-3.20113158226013,-3.02702713012695,-3.01667547225952,-3.28893160820007,-3.7958573102951,-4.33718401193619,-4.65527817606926,-4.55952286720276,-4.01615798473358,0,0,0,0,0,0,0,0,0,0,0,0,-6.57191634178162,-7.22003769874573,-7.71176087856293,-7.82720267772675,-7.36245965957642,-6.23217511177063,-4.53694939613342,-2.55417990684509,-0.646280288696289,0.877356052398682,1.88275098800659,2.46163177490234,2.88765668869019,3.49968910217285,4.56356763839722,6.16712236404419,8.18304491043091,10.3045125007629,12.1348135471344,13.3011335879564,13.5619153846055,12.8811040222645,11.4476459622383,9.62862455844879,7.86205685138702,6.51893937587738,5.78286612033844,5.59622859954834,5.69915115833282,5.74773502349854,5.46178293228149,4.73842859268188,3.68578338623047,2.56987309455872,1.70797920227051,1.36038017272949,1.66351652145386,2.61867904663086,4.12151718139648,6.00417137145996,8.06853652000427,10.1069455295801,11.920435667038,13.3459949493408,14.2916421890259,14.7636699676514,14.8647541999817,14.7516055107117,14.5622291564941,14.3437123298645,14.0189220905304,13.4171227216721,12.3632755950093,10.7873975038528,8.79762697219849,6.67034149169922,4.74952435493469,3.29686045646667,2.36844515800476,1.79026103019714,1.25715613365173,0.511806726455688,-0.492698431015015,-1.54468834400177,-2.28060391545296,-2.39739254117012,-1.85243964195251,-0.928110837936401,-0.109521627426147,0.16678786277771,-0.247279644012451,-1.12583804130554,-1.99499344825745,-2.40217328071594,-2.1712634563446,-1.49059104919434,-0.780124187469482,-0.419381141662598,-0.504602909088135,-0.787334442138672,-0.834558725357056,-0.312871932983398,0.779574632644653,2.07830858230591,3.03994202613831,3.24121522903442,2.61336469650269,1.47669410705566,0.361891269683838,-0.271100997924805,-0.252985954284668,0.253098487854004,0.893640518188477,1.35036849975586,1.51236248016357,1.50400543212891,1.57255983352661,1.92008781433105,0,0,0,4.9327404499054,5.37426245212555,5.6669477969408,5.90481221675873,6.1172661781311,6.22700595855713,6.08235454559326,5.54486322402954,4.58253192901611,3.31614995002747,1.99115598201752,0.884478390216827,0.189492344856262,-0.0656325817108154,-0.0234251022338867,0.080819845199585,0.0462105274200439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.41126903891563,2.50494319200516,2.71534964442253,3.04426139593124,3.50013411045074,4.10442364215851,4.86121195554733,5.7113436460495,6.50930017232895,7.05171322822571,7.15514600276947,6.74784362316132,5.92512309551239,4.93301498889923,4.08011274039745,3.61471620202065,3.62346935272217,3.99808502197266,4.48650443553925,4.8059361577034,4.76884979009628,4.36730879545212,3.77932453155518,3.29344630241394,3.18325257301331,3.58521914482117,4.43450951576233,5.48953175544739,6.43732070922852,7.03351402282715,7.21136999130249,7.1059193611145,6.9785418510437,7.07709741592407,7.50125074386597,8.14343023300171,8.73900079727173,9.00296258926392,8.7840633392334,8.15529894828796,7.39119863510132,6.83984279632568,6.7519251704216,7.15319004654884,7.82374930381775,8.39523673057556,8.51775860786438,8.01650500297546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.16872358322144,1.58462941646576,0.91624903678894,0.217987060546875,-0.520535230636597,-1.31202340126038,-2.10758233070374],[-2.27021813392639,-3.37398266792297,-3.85527110099792,-3.78333139419556,-3.43546712398529,-3.15449152886868,-3.17971381545067,-3.54094624519348,-4.06718397140503,-4.49628841876984,-4.61838245391846,-4.3738317489624,0,-3.25638574361801,-2.72045242786407,-2.3162549585104,0,0,0,0,-0.937489427626133,-1.05259793996811,-1.56634593009949,-2.48291766643524,-3.66309118270874,-4.83740520477295,-5.66639852523804,-5.83326292037964,-5.14251518249512,-3.5916223526001,-1.38607740402222,1.11516904830933,3.51104640960693,5.4881854057312,6.91984272003174,7.89408230781555,8.66034960746765,9.51696610450745,10.685546040535,12.2204745411873,13.9839458465576,15.6896146535873,16.9940106868744,17.6023318767548,17.3559758663177,16.2784106731415,14.5686033964157,12.5449855327606,10.5557040572166,8.88190239667892,7.66540515422821,6.88602780923247,6.39691200852394,6.00316029787064,5.55082750320435,4.98941469192505,4.38455605506897,3.8816614151001,3.64368450641632,3.79461634159088,4.39188814163208,5.43103814125061,6.86788487434387,8.63674247264862,10.6510164439678,12.7888783216476,14.879894733429,16.7117486000061,18.0650682449341,18.7677998542786,18.7461981773376,18.0474967956543,16.8210301399231,15.264467716217,13.5599769353867,11.830570936203,10.1358106136322,8.50338649749756,6.97149801254272,5.60918617248535,4.49594974517822,3.66994619369507,3.08033561706543,2.58485507965088,2.0105082988739,1.2545530796051,0.368703126907349,-0.432877659797668,-0.864403128623962,-0.721183896064758,-0.0123744010925293,1.00918197631836,1.95044207572937,2.46819949150085,2.44186878204346,2.02706408500671,1.55337142944336,1.32182121276855,1.42124271392822,1.67612648010254,1.76173079013824,1.42053055763245,0.648925542831421,-0.262851715087891,-0.868573904037476,-0.806108236312866,-0.00128841400146484,1.282381772995,2.57638239860535,3.44503557682037,3.69432401657104,3.44002866744995,3.00942039489746,2.74530506134033,2.8291220664978,3.21630144119263,3.70350742340088,4.07028388977051,4.20407867431641,4.14088535308838,4.01320838928223,3.95282936096191,0,0,0,4.44123387336731,4.52726626396179,4.64073348045349,4.83532601594925,5.10237942636013,5.34993743896484,0,0,0,4.01159113645554,3.30888718366623,2.85905602574348,2.82389116287231,3.20418179035187,3.82538819313049,4.40383937954903,4.66869040392339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.80368769168854,4.32016861438751,3.91801655292511,3.69439876079559,3.674445271492,3.84025347232819,4.16908699274063,4.65009209513664,5.26829117536545,5.97208503633738,6.65536233782768,7.17820119857788,7.42482709884644,7.37022829055786,7.11506414413452,6.86152696609497,6.83275699615479,7.16969561576843,7.85432171821594,8.69832563400269,9.40787506103516,9.69936347007751,9.4183361530304,8.61006927490234,7.51027190685272,6.45705389976501,5.75924944877625,5.5755350291729,5.85649251937866,6.37624834105372,6.84167262166739,7.03118962049484,6.89923977851868,6.59570515155792,6.38892579078674,6.52770113945007,7.11009240150452,8.02590084075928,9.00460648536682,9.74691605567932,10.0739259719849,10.0169484615326,9.80007183551788,9.72231301665306,9.99828463792801,10.6386578083038,11.4312515258789,12.0327272415161,12.1250991821289,11.560863494873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.89755749702454,2.30070829391479,2.75145792961121,3.18084001541138,3.49774074554443,3.5598361492157,3.19944787025452,2.30657076835632,0.922441482543945,-0.722776174545288],[-1.20422196388245,-2.61917209625244,-3.33975005149841,-3.39909368753433,-3.07203137874603,-2.72730812430382,-2.65206173062325,-2.93860793113708,-3.48323780298233,-4.08157300949097,-4.55418083816767,-4.82791897654533,-4.9340912103653,-4.93926119804382,-4.86411833763123,-4.64798641204834,-4.18324542045593,-3.39813730120659,-2.33619838953018,0,-0.21627402305603,0.289319515228271,0.17744779586792,-0.522106170654297,-1.588463306427,-2.67021036148071,-3.38618469238281,-3.43130874633789,-2.6553373336792,-1.09384155273438,1.05414390563965,3.49259185791016,5.91760063171387,8.1006817817688,9.93956184387207,11.4605860710144,12.7750180959702,14.0088791549206,15.2356669306755,16.438299536705,17.5122444629669,18.3038516044617,18.6646447181702,18.4990296363831,17.7896666526794,16.5963277816772,15.0344190597534,13.2447295188904,11.3655292987823,9.51455330848694,7.78357720375061,6.24347722530365,0,3.973527722992,3.35427477955818,3.1340289413929,3.31570342928171,3.85302066802979,4.65151417255402,5.59142529964447,6.56786251068115,7.53238719701767,8.51507329940796,9.61125436425209,10.9314658045769,12.5311861038208,14.3492369651794,16.1850295066833,17.731143951416,18.6558442115784,18.707537651062,17.8016333580017,16.0550065040588,13.753623008728,11.2663929462433,8.94006016850471,7.01547825336456,5.59260392189026,4.64677834510803,4.07564973831177,3.74778127670288,3.53281021118164,3.31251931190491,2.98780274391174,2.49687743186951,1.84483170509338,1.12542724609375,0.50913667678833,0.185356140136719,0.276721119880676,0.768278360366821,1.49682533740997,2.21672463417053,2.71416580677032,2.90815359354019,2.87776866555214,2.79543069750071,2.802590072155,2.90301668643951,2.94348752498627,2.70124197006226,2.03230637311935,0.99289558827877,-0.143121242523193,-0.99009969830513,-1.2276247292757,-0.753507256507874,0.27000617980957,1.4999038875103,2.57765281200409,3.28589189052582,3.61746215820312,3.73141825199127,3.83374816179276,4.05612397193909,4.3964746594429,4.74221909046173,4.94813740253448,4.91629981994629,4.63483214378357,4.16440081596375,3.59409117698669,0,0,1.93801474571228,1.55585861206055,1.35286545753479,1.38961362838745,1.68938636779785,2.20965719223022,2.84003567695618,0,0,0,0,0,4.45113182067871,4.95610046386719,5.7296826839447,6.61553561687469,7.35587334632874,7.6871645450592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.42469501495361,4.90084624290466,4.35509729385376,3.91992121934891,3.65027041733265,3.52745558321476,3.49838334321976,3.52217853069305,3.59526598453522,3.74266767501831,3.98695945739746,4.32022488117218,4.70141404867172,5.08330190181732,5.4519008398056,5.8505927324295,6.36853718757629,7.09294462203979,8.04698657989502,9.14604234695435,10.1987006664276,10.9589893817902,11.2111694812775,10.8531639575958,9.94222211837769,8.68166303634644,7.35115456581116,6.20738196372986,5.395188331604,4.90685391426086,4.60766434669495,4.31761789321899,3.91291606426239,3.39984834194183,2.92406199127436,2.7083597779274,2.94635415077209,3.70380508899689,4.87727212905884,6.2332227230072,7.51003932952881,8.53192591667175,9.27727138996124,9.8661190867424,10.473824813962,11.2170703411102,12.0725812911987,12.8719534873962,13.3753447532654,13.3855085372925,12.8438158035278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.4681601524353,1.75939416885376,2.34736013412476,3.16062164306641,4.0130181312561,4.61616277694702,4.66248464584351,3.9559543132782,2.5261914730072,0.656782627105713],[-1.25124788284302,0,0,0,0,0,0,0,-3.47758388519287,-4.01750707626343,-4.55950379371643,-5.06092944741249,-5.52883064746857,-5.96011877059937,-6.28709077835083,-6.3734757900238,-6.07192802429199,-5.31271154433489,-4.17092072963715,-2.86911082267761,-1.70694446563721,-0.948624610900879,-0.720380783081055,-0.963759422302246,-1.46177673339844,-1.92105674743652,-2.07122325897217,-1.74144268035889,-0.890275001525879,0.412284851074219,2.03325366973877,3.83108711242676,5.69511032104492,7.55904579162598,9.3894829750061,11.1591062545776,12.8195974230766,14.2882426977158,15.4564206600189,16.2185204029083,16.5096640586853,16.3347105979919,15.7729969024658,14.9528594017029,14.0041146278381,13.008111000061,11.96821641922,10.8162503242493,9.4551362991333,7.82197904586792,0,0,0,0.788314312696457,0.111661553382874,0.254999577999115,1.17499095201492,2.66150657832623,4.39219003915787,6.02363336086273,7.29109454154968,8.08469796180725,8.47588562965393,8.68299055099487,8.98455846309662,9.60778820514679,10.6300954818726,11.9304928779602,13.2121014595032,14.0925874710083,14.2331738471985,13.4600615501404,11.8324010372162,9.62987279891968,7.26421022415161,5.14923617243767,3.57968205213547,2.66298711299896,2.32305908203125,2.36328744888306,2.5538067817688,2.70466017723083,2.70187020301819,2.50653386116028,2.13422441482544,1.63405859470367,1.0764080286026,0.54484760761261,0.12236225605011,-0.131233751773834,-0.202010691165924,-0.128546953201294,0.0174186229705811,0.169812232255936,0.304084792733192,0.445035852491856,0.637204557657242,0.893498778343201,1.15594094991684,1.30019551515579,1.1906555891037,0.760770082473755,0.0724969506263733,-0.684122532606125,-1.25914254039526,-1.44786964356899,-1.17976680397987,-0.545201361179352,0.252278685569763,0.991132199764252,1.52387142181396,1.82136589288712,1.95382678508759,2.02766561508179,2.11747765541077,2.22840285301208,2.30221247673035,2.25495956838131,2.02050632238388,1.57772627472878,0.953595697879791,0.209711670875549,-0.574614763259888,-1.31322574615479,-1.91805100440979,-2.30390810966492,-2.39982485771179,-2.16650938987732,-1.61377906799316,-0.808139801025391,0,0,0,0,0,0,0,0,5.05789768695831,5.69177937507629,6.17603349685669,6.3304238319397,6.02942609786987,5.25386989116669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.1942743062973,1.88051450252533,1.63872444629669,1.52459526062012,1.5176682472229,1.54029560089111,1.50467419624329,1.36260318756104,1.13245272636414,0.891413450241089,0.740779876708984,0.764824151992798,1.00477993488312,1.45791637897491,2.09588956832886,2.88638240098953,3.80276130884886,4.81598582863808,5.87564468383789,6.89461302757263,7.75068795681,8.30964922904968,8.46239125728607,8.16146230697632,7.4406201839447,6.40768122673035,5.21164298057556,3.99612700939178,2.85750240087509,1.82549601793289,0.875043392181396,-0.0350806713104248,-0.914573431015015,-1.70855909585953,-2.29816579818726,-2.53770756721497,-2.3138815164566,-1.59840233623981,-0.467781782150269,0.92170786857605,2.39284825325012,3.81033611297607,5.11671924591064,6.32359254360199,7.46555507183075,8.54568117856979,9.50499182939529,10.235409617424,10.6296052932739,10.6389873027802,10.3057363033295,9.74866342544556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.249028205871582,0.272578239440918,0.60679817199707,1.26797294616699,2.11503219604492,2.86588096618652,3.19114828109741,2.85362339019775,1.8271598815918,0.330381393432617],[-2.91571450233459,-3.69107142090797,0,0,0,0,0,0,-4.04567074775696,-4.18434691429138,-4.34626817703247,0,0,0,-5.76879715919495,-6.12214493751526,-6.21936404705048,-5.98172950744629,-5.4497789144516,-4.77279281616211,-4.14100027084351,-3.69517946243286,-3.4609317779541,-3.34110641479492,-3.16832733154297,-2.78842163085938,-2.13139915466309,-1.23577499389648,-0.217727661132812,0.795547485351562,1.73298168182373,2.61433219909668,3.53676557540894,4.62057638168335,5.93902134895325,7.4631814956665,9.04618182778358,10.4553239345551,11.4423444271088,11.8273859024048,11.5657153129578,10.7708826065063,9.6823525428772,8.58573031425476,7.71261394023895,7.15703189373016,6.84184597432613,6.55117309093475,6.01978492736816,5.04758262634277,3.59592127799988,0,0,-1.26044225692749,-1.83082318305969,-1.45865702629089,-0.196443796157837,1.68421864509583,3.77075791358948,5.62831735610962,6.92097267508507,7.49892234802246,7.42671847343445,6.9461362361908,6.38642930984497,6.05025410652161,6.11106276512146,6.55523288249969,7.18927979469299,7.71142554283142,7.82400393486023,7.34649968147278,6.28655743598938,4.84064149856567,3.32345461845398,2.05443149805069,1.24766612052917,0.949451833963394,1.04546569287777,1.32796790450811,1.58772981131915,1.68798318505287,1.59128472208977,1.33660626411438,0.988583266735077,0.590697705745697,0.146282553672791,-0.368198409676552,-0.97188401222229,-1.6517368555069,-2.35407787561417,-2.99746817350388,-3.49729925394058,-3.78901797533035,-3.84172111749649,-3.66168421506882,-3.28975801169872,-2.7954935580492,-2.26699522137642,-1.79381054639816,-1.44382405281067,-1.24137654900551,-1.15811631083488,-1.12477499246597,-1.06232562661171,-0.919382631778717,-0.697637140750885,-0.451872229576111,-0.264488697052002,-0.207677006721497,-0.312772870063782,-0.561152696609497,-0.898823261260986,-1.2643301486969,-1.6144323348999,-1.93581748008728,-2.24050402641296,-2.5511417388916,-2.88554745912552,-3.24689021706581,-3.62085103988647,-3.97721707820892,-4.27344223856926,-4.45956027507782,-4.48568880558014,-4.31234073638916,-3.92189931869507,-3.32708096504211,-2.57294845581055,-1.73094940185547,-0.886716365814209,0,0,0,0,0,0,0,0,1.2776859998703,1.24993112683296,1.12192386388779,0.848778069019318,0.428737282752991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2.15190839767456,-2.27362704277039,-2.25923991203308,-2.07206273078918,-1.73240685462952,-1.31966853141785,-0.946783304214478,-0.716287851333618,-0.677692532539368,-0.805425763130188,-1.00707739591599,-1.15716245770454,-1.14114266633987,-0.891455829143524,-0.403269648551941,0.272046446800232,1.04867446422577,1.83257710933685,2.54268360137939,3.12220621109009,3.54012095928192,3.78576153516769,3.86018627882004,3.76780897378922,3.510946393013,3.08877849578857,2.5004299134016,1.75062173604965,0.855069071054459,-0.156864166259766,-1.24264180660248,-2.34933292865753,-3.41646730899811,-4.3781670331955,-5.16576397418976,-5.71327505260706,-5.96657046675682,-5.89468240737915,-5.49779498577118,-4.80762362480164,-3.87835931777954,-2.77237835526466,-1.54913532733917,-0.263067483901978,1.02859592437744,2.2557635307312,3.33489191532135,4.18454647064209,4.75407230854034,5.0509712100029,5.14807632565498,5.15925254672766,5.18875747919083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.51145505905151,-1.86028671264648,-2.05540370941162,-1.9629487991333,-1.59430027008057,-1.11232566833496,-0.764593124389648,-0.77006721496582,-1.21396064758301,-2.00462913513184],[-4.82761716842651,-4.97292423248291,-5.05630874633789,-5.05979752540588,0,0,0,0,-4.36983716487885,-4.00467908382416,-3.60524809360504,-3.28463590145111,-3.15959316492081,-3.2938232421875,-3.6652272939682,-4.1774160861969,-4.7092287838459,-5.1726616024971,-5.54421842098236,-5.85089874267578,-6.12024402618408,-6.32692098617554,-6.37213468551636,-6.11414861679077,-5.43843936920166,-4.33163928985596,-2.91810274124146,-1.43498992919922,-0.151815891265869,0.731762409210205,1.16486024856567,1.26568365097046,1.27352237701416,1.45172572135925,1.9806717634201,2.88272289931774,4.00772190093994,5.0840163230896,5.81578946113586,5.99121081829071,5.56217509508133,4.66662341356277,3.58434534072876,2.64085388183594,2.09304428100586,2.03803968429565,2.37948560714722,2.86521244049072,3.18369245529175,3.08420467376709,2.47600650787354,0,0,-0.54390811920166,-0.881183624267578,-0.499292850494385,0.572533130645752,2.11964797973633,3.80987191200256,5.29109871387482,6.28632372617722,6.65913105010986,6.43458199501038,5.77465313673019,4.91915488243103,4.11058104038239,3.5244551897049,3.22474789619446,3.15779723413289,3.1865651011467,3.1537504196167,2.9502460360527,2.56154298782349,2.07181394100189,1.62277859449387,1.34507364034653,1.29387038946152,1.41982084512711,1.59015476703644,1.65005970001221,1.49391886591911,1.11063700914383,0.580357015132904,0.025216281414032,-0.459423959255219,-0.85693171620369,-1.23751804232597,-1.71873980760574,-2.39924396947026,-3.29954132437706,-4.33885550498962,-5.35816478729248,-6.17674911022186,-6.65512228012085,-6.7368677854538,-6.45450484752655,-5.90220189094543,-5.19207191467285,-4.4148405790329,-3.62027406692505,-2.82144916057587,-2.01627939939499,-1.21333499625325,-0.449246942996979,0.2098348736763,0.682913482189178,0.89815616607666,0.816053628921509,0.442067623138428,-0.175915241241455,-0.963397860527039,-1.84067004919052,-2.74025791883469,-3.61374789476395,-4.42751127481461,-5.15254330635071,-5.75620576739311,-6.20118415355682,-6.45187151432037,-6.48365449905396,-6.28934741020203,-5.87982618063688,-5.28018867969513,-4.52567458152771,-3.66041898727417,-2.73900699615479,-1.82684469223022,-0.995632648468018,-0.313003063201904,0.170152187347412,0.428530216217041,0,0,0,0,0,0,0,0,-3.56048506498337,-4.01561760902405,-4.33397817611694,-4.48055133223534,-4.41821810603142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4.5033283829689,-4.4747359752655,-4.21040201187134,-3.72571074962616,-3.07227098941803,-2.33354949951172,-1.60672891139984,-0.975513696670532,-0.484743863344193,-0.127458192640916,0.149434268474579,0.422607064247131,0.761313259601593,1.19918464869261,1.71862012147903,2.25283509492874,2.70457741618156,2.97581443190575,2.99922877550125,2.76153421401978,2.31059348583221,1.74257934093475,1.17175304889679,0.69269597530365,0.348171591758728,0.115659356117249,-0.0817071199417114,-0.342963196337223,-0.748772978782654,-1.32905256748199,-2.05131947994232,-2.83407950401306,-3.57793068885803,-4.20048129558563,-4.66056180000305,-4.96271002292633,-5.14216196537018,-5.23872685432434,-5.27146303653717,-5.22560673952103,-5.05704575777054,-4.71313322708011,-4.16194278001785,-3.41773527860641,-2.55096960067749,-1.67549733817577,-0.913800716400146,-0.351457476615906,0.000648975372314453,0.217809200286865,0.435749530792236,0.79254150390625,1.35962975025177,2.09218972921371,2.8252946138382,3.32465374469757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2.79173040390015,-3.49884080886841,-4.24256658554077,-4.81065320968628,-5.08526468276978,-5.07727861404419,-4.90289258956909,-4.71622896194458,-4.63335800170898,-4.68646669387817],[-4.93891644477844,-4.55077028274536,-4.29245808720589,-4.17538145184517,0,0,0,0,-3.78269279003143,-3.24577975273132,-2.60409259796143,-2.00987434387207,-1.62037578225136,-1.5433716326952,-1.80732661485672,-2.36837184429169,-3.14510214328766,-4.05664396286011,-5.03925251960754,-6.03216552734375,-6.94539761543274,-7.63692021369934,-7.92444515228271,-7.63842391967773,-6.69750881195068,-5.17043399810791,-3.28919315338135,-1.39817428588867,0.146973133087158,1.09287691116333,1.3693163394928,1.10514795780182,0.573423404246569,0.0880382359027863,-0.108053922653198,0.0780894756317139,0.56959867477417,1.16259145736694,1.61239957809448,1.73007726669312,1.45431709289551,0.874404907226562,0.197636127471924,-0.325623989105225,-0.491508483886719,-0.214286327362061,0.445661067962646,1.30695772171021,2.13504552841187,2.72644805908203,2.97760057449341,2.91361045837402,2.66885137557983,2.43038749694824,2.36865520477295,2.58197164535522,3.07289552688599,3.75939702987671,4.51024210453033,5.18731665611267,5.67950211465359,5.92069789394736,5.89282192289829,5.61942429840565,5.15544533729553,4.57558238506317,3.96162116527557,3.38892209529877,2.91488426923752,2.57316856086254,2.37631326913834,2.32442373037338,2.41317188739777,2.63348865509033,2.96020215749741,3.33551640808582,3.66023802757263,3.80533540248871,3.64736898988485,3.11693260073662,2.23793870210648,1.13484847545624,-0.00278401374816895,-0.988265872001648,-1.71030604839325,-2.17631578445435,-2.50428664684296,-2.86458951234818,-3.39721119403839,-4.14242032170296,-5.01670400798321,-5.84447604417801,-6.4294753074646,-6.63209080696106,-6.41757392883301,-5.85591459274292,-5.07782745361328,-4.21180605888367,-3.33365988731384,-2.45164054632187,-1.53073146939278,-0.540613979101181,0.49931263923645,1.50123724341393,2.32615593075752,2.82878640294075,2.90897998213768,2.54630183428526,1.80335243791342,0.798628568649292,-0.336330980062485,-1.49507316946983,-2.61341559886932,-3.66144049167633,-4.61901426315308,-5.4506471157074,-6.09426689147949,-6.46947765350342,-6.50034511089325,-6.14095067977905,-5.39214479923248,-4.30433893203735,-2.96837043762207,-1.50148010253906,-0.0338501930236816,1.30207538604736,2.38268566131592,3.10694742202759,3.4125189781189,3.28907823562622,2.78165006637573,1.97977256774902,0,0,0,0,0,0,0,-5.36867615580559,-5.87538951635361,-6.16263246536255,-6.15327155590057,-5.77253550291061,-4.97196805477142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2.4943640306592,-2.13114714622498,-1.60108458995819,-0.932386338710785,-0.154836297035217,0.699506819248199,1.59768222272396,2.5088484287262,3.4075014591217,4.27451586723328,5.09433841705322,5.84874093532562,6.50875043869019,7.02854537963867,7.34569835662842,7.39080548286438,7.10680508613586,6.47334861755371,5.52758181095123,4.371178150177,3.15634268522263,2.05083398520947,1.1922397762537,0.647265046834946,0.393307983875275,0.331031166017056,0.325079500675201,0.256953239440918,0.0682449340820312,-0.22331690788269,-0.541791915893555,-0.79556131362915,-0.925043821334839,-0.933992385864258,-0.890100479125977,-0.895173072814941,-1.03819847106934,-1.35218858718872,-1.7940411567688,-2.25636529922485,-2.60721826553345,-2.7412703037262,-2.62135457992554,-2.29236483573914,-1.86072647571564,-1.44668221473694,-1.12852567434311,-0.903461247682571,-0.683706127107143,-0.333427131175995,0.265914559364319,1.14846765995026,2.22517409920692,3.29404252767563,4.10081875324249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2.94191932678223,-3.80275201797485,-4.80044555664062,-5.72464036941528,-6.39692735671997,-6.72066354751587,-6.6954493522644,-6.39659595489502,-5.9351487159729,-5.42040205001831],[-2.55006694793701,-1.88463950157166,-1.47619605064392,-1.36822557449341,-1.53213286399841,-1.87119245529175,-2.24611902236938,-2.5181999206543,-2.59622406959534,-2.46849083900452,-2.20536375045776,-1.93045973777771,-1.77341198921204,-1.82594203948975,-2.12036800384521,-2.63657426834106,-3.32741069793701,-4.14271402359009,-5.03490972518921,-5.94269680976868,-6.76600003242493,-7.35451865196228,-7.52777004241943,-7.12802958488464,-6.08770847320557,-4.48052191734314,-2.5287971496582,-0.556565523147583,1.09837293624878,2.18169637024403,2.59292531013489,2.4036779999733,1.8196397125721,1.10356342792511,0.489423513412476,0.117928981781006,0.0123665332794189,0,0,0.342352867126465,0.319748878479004,0.187290668487549,0.017554759979248,-0.0844097137451172,-0.0210866928100586,0.264307975769043,0.77250337600708,1.45389890670776,2.22991514205933,3.0189197063446,0,4.39486622810364,4.90971493721008,5.27782893180847,5.4798184633255,5.50615912675858,5.37243154644966,5.13235038518906,4.8769406080246,4.7139927148819,4.73235750198364,4.96523332595825,5.36987614631653,5.83557569980621,6.21962189674377,6.3980917930603,6.31138682365417,5.98646473884583,5.52807378768921,5.08377683162689,4.79709136486053,4.76488983631134,5.01059019565582,5.47712004184723,6.03759860992432,6.51951146125793,6.73873400688171,6.53983902931213,5.83695256710052,4.64500579237938,3.08876591920853,1.38011789321899,-0.235903024673462,-1.55154967308044,-2.45850944519043,-2.97568416595459,-3.22885513305664,-3.38854944705963,-3.59173512458801,-3.88157713413239,-4.19197133183479,-4.38327378034592,-4.3115593791008,-3.89830529689789,-3.16770321130753,-2.23538422584534,-1.25587806105614,-0.356258153915405,0.411330044269562,1.07578675448895,1.71108470857143,2.37805259227753,3.07466638088226,3.72010743618011,4.18056619167328,4.32380723953247,4.07584065198898,3.45279079675674,2.55412554740906,1.5224024951458,0.49054329097271,-0.458159238100052,-1.29999580979347,-2.04964461922646,-2.72213269770145,-3.29922208189964,-3.71756887435913,-3.88362789154053,-3.70685660839081,-3.13511300086975,-2.17711400985718,-0.905224800109863,0.558822631835938,2.06604623794556,3.46203851699829,4.60376596450806,5.37326526641846,5.69046235084534,5.52599787712097,4.91046833992004,3.93409419059753,2.73258543014526,1.46066546440125,0.260217428207397,-0.766983509063721,0,0,0,0,-3.09188142418861,-3.24621480703354,-3.307976603508,-3.2077850997448,-2.85211113095284,-2.15431151539087,-1.07376825809479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.38152849674225,2.74677920341492,3.13170957565308,3.55994141101837,4.08033549785614,4.74479830265045,5.58416175842285,6.59092950820923,7.71514630317688,8.87387466430664,9.96937227249146,10.9087438583374,11.6171975135803,12.0420203208923,12.1493010520935,11.919421672821,11.3478393554688,10.4533267021179,9.29018306732178,7.95574569702148,6.58425164222717,5.32309699058533,4.29727721214294,3.57441627979279,3.1461888551712,2.93605268001556,2.8326250910759,2.73576512932777,2.59559071063995,2.42750579118729,2.29572033882141,2.27333569526672,2.39712858200073,2.63830637931824,2.90387010574341,3.06880211830139,3.02596044540405,2.73205327987671,2.22976541519165,1.63622808456421,1.101975440979,0.757687091827393,0.670007228851318,0.824894428253174,1.14436817169189,1.52887916564941,1.90660071372986,2.26734137535095,2.66561740636826,3.19021129608154,3.91274464130402,4.83778834342957,5.87779307365417,6.86636519432068,7.6076672077179,7.94234681129456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2.09239721298218,-2.56301069259644,-3.20879697799683,-3.95787572860718,-4.67896032333374,-5.22332906723022,-5.4706244468689,-5.3621973991394,-4.9136278629303,-4.20701885223389,-3.37021446228027],[0.810779094696045,1.45672655105591,1.78253793716431,1.72960138320923,1.31251525878906,0.615089416503906,-0.234819889068604,-1.10417699813843,-1.89335680007935,-2.55938673019409,-3.11491203308105,-3.60485506057739,-4.07332134246826,-4.53761148452759,-4.98178005218506,-5.3708815574646,-5.67525863647461,-5.88842535018921,-6.02604150772095,-6.10500621795654,-6.11453199386597,-5.9975471496582,-5.65714359283447,-4.99024629592896,-3.93599987030029,-2.51738142967224,-0.85586953163147,0.849535703659058,2.37232804298401,3.51866507530212,0,0,0,0,0,0,0,0,1.12804663181305,1.10622763633728,1.1999876499176,1.3514678478241,1.50151252746582,1.60293483734131,1.63408088684082,1.60924291610718,1.58124709129333,1.63236570358276,1.85259890556335,2.3088481426239,3.0132372379303,3.90194582939148,4.83547580242157,5.6260996684432,6.08921110630035,6.10488367080688,5.66866111755371,4.91056501865387,4.06999704241753,3.42974716424942,3.22894632816315,3.58499962091446,4.4536354765296,5.64303374290466,6.87774443626404,7.88911366462708,8.49905610084534,8.66790509223938,8.4918429851532,8.15511918067932,7.85792946815491,7.74680685997009,7.86956310272217,8.16518783569336,8.48638153076172,8.64379262924194,8.45804381370544,7.80705308914185,6.6592732667923,5.08630940318108,3.25132995843887,1.37390041351318,-0.322063446044922,-1.6632776260376,-2.56781578063965,-3.05598664283752,-3.22605967521667,-3.20332860946655,-3.08325505256653,-2.89323878288269,-2.59017431735992,-2.09466964006424,-1.34540897607803,-0.347005724906921,0.812794715166092,1.9856544137001,3.01501995325089,3.79317057132721,4.2956930398941,4.57711684703827,4.73092794418335,4.83455467224121,4.90724205970764,4.9015839099884,4.73231327533722,4.32694959640503,3.67226094007492,2.83285829424858,1.93266677856445,1.10849978774786,0.458749605342746,0.0116910040378571,-0.272420883178711,-0.468332171440125,-0.639544725418091,-0.801756381988525,-0.912791728973389,-0.892017126083374,-0.658091306686401,-0.166730165481567,0.567746877670288,1.47367787361145,2.44187545776367,3.3525595664978,4.09849166870117,4.59814381599426,4.80036807060242,4.68523281812668,4.26539093255997,3.58856838941574,2.7377555668354,1.82452429831028,0.973655186593533,0.300983257591724,-0.109841726720333,-0.224854269996285,0,0,0,1.18114033341408,1.51166749000549,1.69861900806427,1.76848840713501,1.80771070718765,1.93570858240128,2.26068514585495,2.83199667930603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.73731064796448,7.11546015739441,7.34171676635742,7.47897386550903,7.63363289833069,7.91910910606384,8.41564536094666,9.14095044136047,10.0424683094025,11.0132968425751,11.9245753288269,12.6617765426636,13.1506276130676,13.3649997711182,13.3168778419495,13.0367317199707,12.555920124054,11.8996167182922,11.0923414230347,10.1698713302612,9.18761420249939,8.21702265739441,7.32923889160156,6.57249069213867,5.95490193367004,5.44319581985474,4.97998714447021,4.51321852207184,4.02398812770844,3.53927165269852,3.12182773649693,2.84147480130196,2.74025344848633,2.80785322189331,2.97968339920044,3.15940570831299,3.25699520111084,3.22603845596313,3.08434772491455,2.90903759002686,2.80819463729858,2.88135147094727,3.18453311920166,3.71426391601562,4.41516876220703,5.20672416687012,6.01604127883911,6.8022985458374,7.56231957674026,8.3159684240818,9.0794929265976,9.83993029594421,10.5438747406006,11.1067204475403,11.4393606185913,11.4801592826843,11.218297958374,0,9.99380588531494,9.19098615646362,8.34210789203644,7.45819294452667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2.93155956268311,-3.05961132049561,-3.13188147544861,-3.18486547470093,-3.20341062545776,-3.13175463676453,-2.90018248558044,-2.45648813247681,-1.79162502288818,-0.952628135681152,-0.039860725402832],[2.60751295089722,3.01323080062866,3.10885763168335,2.84753704071045,2.23101615905762,1.30944728851318,0.166304588317871,-1.1054105758667,-2.42538547515869,-3.73699283599854,-5.00271224975586,-6.18792343139648,-7.24326705932617,-8.09732341766357,-8.66631412506104,-8.87850761413574,-8.702467918396,-8.16502332687378,-7.34872722625732,-6.36797285079956,-5.33309316635132,-4.3174467086792,-3.34114360809326,-2.37714815139771,-1.37557458877563,-0.294778347015381,0.873658657073975,2.09441733360291,3.29378747940063,4.37605565786362,0,0,0,5.9281530380249,5.50088250637054,4.85376214981079,4.1115962266922,3.41392123699188,2.88381135463715,2.59463560581207,2.5459009706974,2.65885162353516,2.79724299907684,2.81007266044617,2.58422827720642,2.08977866172791,1.40110373497009,0.68386173248291,0.14865517616272,-0.0160653591156006,0.289144277572632,1.031134724617,2.04131942987442,3.05868902802467,3.8083530664444,4.09175980091095,3.85814279317856,3.23087191581726,2.47630929946899,1.92273926734924,1.85560965538025,2.42491507530212,3.59732270240784,5.16957759857178,6.83720123022795,8.29258000850677,9.31643772125244,9.83168649673462,9.90417218208313,9.69598436355591,9.39331483840942,9.13743138313293,8.98194622993469,8.8866868019104,8.74399065971375,8.42333173751831,7.81725645065308,6.87524008750916,5.61855453252792,4.1356201171875,2.56158137321472,1.04823541641235,-0.268543481826782,-1.2957136631012,-1.99723505973816,-2.39058041572571,-2.52654051780701,-2.4596164226532,-2.22128701210022,-1.80837488174438,-1.19301807880402,-0.350516438484192,0.707811772823334,1.91366919875145,3.14539313316345,4.25718581676483,5.12275433540344,5.67385149002075,5.91574025154114,5.91219568252563,5.74734592437744,5.48321342468262,5.1340446472168,4.67018723487854,4.0491988658905,3.2576744556427,2.34142202138901,1.40698024630547,0.591617941856384,0.0147557258605957,-0.266624093055725,-0.277657091617584,-0.111328035593033,0.11280308291316,0.29745215177536,0.402002334594726,0.44831371307373,0.497848868370056,0.613449811935425,0.824697613716125,1.1123788356781,1.41698229312897,1.66442775726318,1.79529786109924,1.78427267074585,1.64303904771805,1.40879839658737,1.12686210870743,0.836565310135484,0.566564474254847,0.339282393455505,0.179639458656311,0.121572494506836,0.207185983657837,0.477218866348267,0.955204367637634,1.63079011440277,0,0,0,4.64791667461395,4.90667361021042,4.83746808767319,4.49708980321884,4.01010966300964,3.53018552064896,3.18700259923935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.86405038833618,8.33672094345093,8.55288362503052,8.57484030723572,8.51515913009644,8.49853157997131,8.61935925483704,8.91066336631775,9.33630394935608,9.80871379375458,10.2244594097137,10.5031657218933,10.6137037277222,10.5784504413605,10.4552493095398,10.30681681633,10.1718993186951,10.0504212379456,9.90803194046021,9.69545412063599,9.37207841873169,8.92178344726562,8.35439300537109,7.69409346580505,6.9623920917511,6.16667580604553,5.30053162574768,4.35630667209625,3.34266889095306,2.29739141464233,1.28715774416924,0.393443301320076,-0.310126215219498,-0.778973877429962,-1.00780665874481,-1.02556896209717,-0.877728462219238,-0.604001522064209,-0.221365928649902,0.280657291412354,0.93141508102417,1.7616605758667,2.78494644165039,3.98588275909424,5.31850719451904,6.71499538421631,8.09891653060913,9.39840805530548,10.5540681481361,11.5209777355194,12.267134308815,12.7712688446045,13.023362159729,13.0277934074402,12.8067345619202,12.3998856544495,11.8581883907318,11.2316472530365,10.555780351162,9.84254223201424,9.08148640394211,8.25245487689972,7.34621381759644,6.38480186462402,5.43134450912476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5.12633430957794,-4.5132577419281,-3.75806570053101,-2.945228099823,-2.12134528160095,-1.29826331138611,-0.469205379486084,0.369776248931885,1.20046329498291,1.97267723083496],[1.55872917175293,1.64602851867676,1.51133728027344,1.14083576202393,0.535785675048828,-0.2855224609375,-1.29218769073486,-2.44819736480713,-3.71773052215576,-5.06376361846924,-6.43932723999023,-7.77567195892334,-8.97496509552002,-9.91483402252197,-10.4675946235657,-10.5303192138672,-10.0559544563293,-9.07371282577515,-7.68986749649048,-6.06713771820068,-4.38845157623291,-2.81627035140991,-1.4594612121582,-0.356294631958008,0.523648262023926,1.26123142242432,1.95930194854736,2.71106171607971,3.5719165802002,4.54038548469543,5.55258226394653,6.49311536550522,7.22210471332073,7.61341190338135,7.59435403347015,7.17411649227142,6.44942402839661,5.58205103874207,4.75244498252869,4.103191614151,3.69162738323212,3.46947759389877,3.29901894181967,3.00259214639664,2.42985880374908,1.51990365982056,0.335803031921387,0,0,-2.78684747219086,-2.94979593157768,-2.5307220518589,-1.65629542246461,-0.564837830082979,0.468709737062454,1.22124034911394,1.5933190882206,1.63943302631378,1.5455014705658,1.56112122535706,1.91044545173645,2.71325445175171,3.94400548934937,5.44206547737122,6.96713978052139,8.27756601572037,9.20166110992432,9.67765116691589,9.75115156173706,9.53691363334656,9.16399836540222,8.72762584686279,8.2647545337677,7.7583634853363,7.16322699189186,6.43863465636969,5.5734344124794,4.59492540359497,3.56117486953735,2.54297471046448,1.60418653488159,0.787822723388672,0.111351013183594,-0.428916454315186,-0.847344398498535,-1.15620517730713,-1.35484886169434,-1.42443037033081,-1.33093166351318,-1.03688955307007,-0.519376397132874,0.211986541748047,1.10461097955704,2.06654903292656,2.98571646213531,3.75909078121185,4.32103776931763,4.65858292579651,4.80600619316101,4.82038927078247,4.74881672859192,4.60296893119812,4.35410642623901,3.95225846767426,3.36136555671692,2.59344804286957,1.72396321594715,0.878616511821747,0.194959759712219,-0.225476980209351,-0.35365879535675,-0.241713285446167,-1.89542770385742e-05,0.247057676315308,0.406975388526917,0.446698635816574,0.391674518585205,0.299106597900391,0.220425397157669,0.17157781124115,0.125058174133301,0.0264230370521545,-0.174008548259735,-0.48997437953949,-0.883678376674652,-1.27280586957932,-1.55717815458775,-1.65312782488763,-1.52175173163414,-1.17981925606728,-0.690247565507889,-0.136738657951355,0.406794786453247,0.90019416809082,1.34561002254486,1.77743828296661,2.23776137828827,2.74673902988434,3.28017574548721,0,4.09383422136307,4.16480928659439,3.91761070489883,3.36637282371521,2.6051766872406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.91629385948181,6.54493594169617,6.9336895942688,7.10672664642334,7.13361048698425,7.10103845596313,7.08004981279373,7.10155448317528,7.1506017598731,7.18110838532448,7.14458429813385,7.01996368169785,6.83078029751778,6.64184844493866,6.53590403497219,6.57998330891132,6.79561364650726,7.1453047990799,7.54097235202789,7.8701479434967,8.02916884422302,7.94977641105652,7.60965180397034,7.02534818649292,6.23293876647949,5.26782751083374,4.15268245339394,2.89888375997543,1.51909053325653,0.0436780452728271,-1.46805799007416,-2.92773687839508,-4.22969686985016,-5.27050685882568,-5.96898210048676,-6.27976846694946,-6.19684386253357,-5.74700081348419,-4.9772841334343,-3.94126518070698,-2.68843638896942,-1.25961494445801,0.31161093711853,1.99302172660828,3.74553537368774,5.51662039756775,7.23635864257812,8.81965184211731,10.1742177009583,11.2141112983227,11.8763617873192,12.1358023881912,12.0139071941376,11.577433347702,10.9255132675171,10.1676430702209,9.39845442771912,8.67704355716705,8.01817911863327,7.39879655838013,6.77849721908569,6.12669515609741,5.4467077255249,4.78712034225464,4.23459148406982,3.88955688476562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.800149917602539,1.27056694030762],[-1.16929340362549,-1.34163379669189,-1.59704875946045,-1.91274833679199,-2.27816390991211,-2.69396877288818,-3.17029762268066,-3.72353935241699,-4.37029552459717,-5.11785888671875,-5.95235538482666,-6.82822895050049,-7.66403102874756,-8.3486909866333,-8.75944805145264,-8.78822374343872,-8.36951351165771,-7.50131177902222,-6.25207567214966,-4.75069999694824,-3.16143083572388,-1.6497631072998,-0.347671031951904,0.673661708831787,1.41732597351074,1.95702219009399,2.41640877723694,2.93509745597839,3.62846398353577,4.55093574523926,5.67320263385773,6.88167577981949,8.00303754210472,8.84911787509918,9.26993215084076,9.19824409484863,8.67035126686096,7.81459021568298,6.81004595756531,5.82865858078003,4.98053431510925,4.28186321258545,3.65715926885605,2.9755230396986,2.10829418897629,0.98769199848175,-0.354597330093384,0,0,0,0,0,0,0,-1.48133793473244,-0.28619122505188,0.772103697061539,1.66406516730785,2.44538519531488,3.21840854082257,4.07935829088092,5.07210876047611,6.16585090756416,7.26382917165756,8.23756355047226,8.971186876297,9.39722263813019,9.51043200492859,9.35640132427216,9.00300562381744,8.50938415527344,7.90694236755371,7.19984740018845,6.38247638940811,5.46332550048828,4.48212242126465,3.51067900657654,2.63620209693909,1.93405628204346,1.4417839050293,1.14560413360596,0.985191822052002,0.874928951263428,0.733607769012451,0.511816024780273,0.207739353179932,-0.133394241333008,-0.435232400894165,-0.615955114364624,-0.615133285522461,-0.413531303405762,-0.0395025014877319,0.440091609954834,0.941735804080963,1.39289036765695,1.75556489825249,2.03680473566055,2.28119516372681,2.54699969291687,2.87481641769409,3.26158487796783,3.65202403068542,3.95311033725739,4.06763207912445,3.93390917778015,3.55498778820038,3.00376403331757,2.40042918920517,1.87028223276138,1.49910938739777,1.30465984344482,1.23626041412354,1.20208120346069,1.11173033714294,0.915080070495605,0.620533347129822,0.285588026046753,-0.0146869421005249,-0.225529611110687,-0.338812798261642,-0.395413776132045,-0.462595451623201,-0.597086369991302,-0.810760498046875,-1.05494296550751,-1.23109865188599,-1.22481727600098,-0.949824333190918,-0.385334730148315,0.408032178878784,1.29987645149231,2.12584242969751,2.73509734869003,3.03350377082825,3.00798487663269,2.72395062446594,2.29719425737858,1.85050690174103,1.47052836418152,1.18075776100159,0.940680980682373,0.671432256698608,0.297805070877075,-0.210233926773071,-0.814068078994751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.75558066368103,3.56230896711349,4.30696952342987,4.9312915802002,5.41033279895782,5.75122678279877,5.98012381792068,6.12447537854314,6.19869509339333,6.20078217983246,6.1210128068924,5.95865714550018,5.73771297931671,5.51255214214325,5.3585364818573,5.34920990467072,5.52830564975739,5.88795483112335,6.36281371116638,6.84374395012856,7.20656478404999,7.34576833248138,7.20041245222092,6.76324433088303,6.07112139463425,5.1817250661552,4.14774733781815,2.99899709224701,1.73979806900024,0.361646175384521,-1.13485217094421,-2.71874117851257,-4.31723618507385,-5.81914091110229,-7.09276342391968,-8.01264260709286,-8.48638373613358,-8.47352731227875,-7.99076294898987,-7.10325372219086,-5.90514719486237,-4.49588799476624,-2.96012324094772,-1.35671013593674,0.280205488204956,1.92923283576965,3.56494331359863,5.14205646514893,6.58886432647705,7.81295645236969,8.71925699710846,9.23514097929001,9.33366283774376,9.04660029709339,8.46127671003342,7.7008467912674,6.89381861686707,6.14273881912231,5.50266969203949,4.97696152329445,4.53123319149017,4.12022566795349,3.7165310382843,3.33008861541748,3.01046752929688,2.83069658279419,2.85853290557861,0,0,0,0,5.31108117103577,5.51448392868042,5.36607837677002,4.84246951341629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2.0677285194397,-1.52692842483521,-1.21950101852417,-1.11443853378296],[-2.99977207183838,-3.29649639129639,-3.5502815246582,-3.71748352050781,-3.77897071838379,-3.74126815795898,-3.63325786590576,-3.49948883056641,-3.39097499847412,-3.35443496704102,-3.42124652862549,-3.59801292419434,-3.86116695404053,-4.15759468078613,-4.4123010635376,-4.5422306060791,-4.47361421585083,-4.15883588790894,-3.58870935440063,-2.79675388336182,-1.8537917137146,-0.853269100189209,0.110095500946045,0.963839054107666,1.677659034729,2.27374744415283,2.82307958602905,3.42637276649475,4.18299460411072,5.15560913085938,6.34122866392136,7.65903431177139,8.96106219291687,10.0647752285004,10.798999786377,11.049144744873,10.7871918678284,10.0763101577759,9.04853582382202,7.86321377754211,6.66041684150696,5.5251784324646,4.47399067878723,3.46697509288788,2.43990468978882,1.34360086917877,0.176217846572399,-1.00278988480568,-2.08142751455307,0,0,0,0,-2.17471563816071,-1.01389849185944,0.357614755630493,1.83437955379486,3.33307415246964,4.79515993595123,6.17842245101929,7.44423508644104,8.54879951477051,9.44382500648499,10.0868589878082,10.4559319019318,10.5603127479553,10.4402754306793,10.1539199352264,9.75560402870178,9.27539324760437,8.70966708660126,8.02862638235092,7.19903696700931,6.21290385723114,5.10929417610168,3.97818946838379,2.94236588478088,2.12247085571289,1.5979700088501,1.37889957427979,1.39984846115112,1.53922271728516,1.65728998184204,1.63964748382568,1.43107032775879,1.04852414131165,0.569879055023193,0.103491544723511,-0.250000238418579,-0.430089235305786,-0.432355880737305,-0.303218126296997,-0.116255521774292,0.0607304573059082,0.195715188980103,0.308084011077881,0.463519915938377,0.749161839485168,1.23731973767281,1.9510605931282,2.84505248069763,3.81014180183411,4.70164465904236,5.38202929496765,5.76255321502686,5.82825422286987,5.63650465011597,5.28995370864868,4.89469546079636,4.52090565115213,4.18182063102722,3.8393896818161,3.4331750869751,2.91922104358673,2.30121660232544,1.63982057571411,1.03566026687622,0.593196272850037,0.381213188171387,0.406960308551788,0.615408718585968,0.914085563272238,1.21304047107697,1.46308398246765,1.67617523670197,1.91895747184753,2.28136658668518,2.83228588104248,3.57920742034912,4.44795298576355,5.29094481468201,5.92289113998413,6.17233753204346,5.93254156410694,5.1947031468153,4.05241069197655,2.67567241191864,1.26331529021263,-0.0107152462005615,-1.03898251056671,-1.79672265052795,-2.32841014862061,-2.71112465858459,-3.00996804237366,-3.24338412284851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.89208942651749,3.50979661941528,4.21566790342331,4.94682002067566,5.64865238964558,6.28250078111887,6.82591176778078,7.26829688251019,7.60538136959076,7.83705443143845,7.96953755617142,8.02045345306396,8.02233600616455,8.02029609680176,8.06174021959305,8.18029510974884,8.37943631410599,8.62312960624695,8.83902494609356,8.93510565534234,8.82514562271535,8.4546735547483,7.81739788502455,6.95610985159874,5.94719845056534,4.87441599369049,3.80170428752899,2.75538563728333,1.72237730026245,0.66484546661377,-0.454115867614746,-1.64379405975342,-2.86809778213501,-4.04351925849915,-5.05421090126038,-5.779461145401,-6.12464928627014,-6.04590344429016,-5.56038105487823,-4.73987531661987,-3.68969595432281,-2.52032667398453,-1.32139930129051,-0.145867921411991,0.990674555301666,2.0964218378067,3.18189132213593,4.23872292041779,5.228062748909,6.08330297470093,6.72697556018829,7.09579026699066,7.16419625282288,6.95731198787689,6.54756087064743,6.03556436300278,5.52196368575096,5.08050191402435,4.74208068847656,4.49549067020416,4.3035084977746,4.12730324268341,3.94848036766052,3.77943396568298,3.65767216682434,3.62681198120117,3.71226024627686,3.90270519256592,4.14533853530884,4.35778737068176,4.45222234725952,4.36227750778198,4.0623893737793,3.57215285301208,2.94469904899597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3.42946410179138,-2.95192623138428,-2.6265082359314,-2.48701477050781,-2.53096532821655,-2.72182512283325],[-2.28071022033691,-2.56227588653564,-2.75448799133301,-2.81863021850586,-2.73715209960938,-2.51499652862549,-2.17652988433838,-1.76022720336914,-1.31287479400635,-0.884337425231934,-0.522786140441895,-0.269773483276367,-0.15468692779541,-0.188785552978516,-0.360033988952637,-0.630580902099609,-0.938867568969727,-1.20746326446533,-1.35613822937012,-1.31778526306152,-1.05314445495605,-0.559773445129395,0.128327369689941,0.951422214508057,1.84262275695801,2.7487268447876,3.64607501029968,4.54518914222717,5.48144543170929,6.49401140958071,7.59999597072601,8.77325654029846,9.93634080886841,10.9698171615601,11.7373266220093,12.118839263916,12.0417866706848,11.5001425743103,10.5557971000671,9.32241535186768,7.93750810623169,6.53182029724121,5.20491755008698,4.01313382387161,2.97142511606216,2.06628119945526,1.2740740776062,0.578636646270752,-0.016871452331543,-0.486083030700684,0,-0.852731943130493,-0.640891790390015,-0.108277797698975,0.760268449783325,1.94835472106934,3.40433388948441,5.04194915294647,6.74617218971252,8.38499236106873,9.82679557800293,10.9613213539124,11.7198629379272,12.0890493392944,12.1128516197205,11.8799414634705,11.4981622695923,11.0626044273376,10.6274213790894,10.1914002895355,9.70364737510681,9.08864092826843,8.28266441822052,7.26831768453121,6.0937180519104,4.86782121658325,3.73206973075867,2.81758117675781,2.20317506790161,1.88951826095581,1.79928493499756,1.80365753173828,1.76582527160645,1.58604669570923,1.23252248764038,0.747700691223145,0.228742599487305,-0.209852457046509,-0.47747802734375,-0.537540435791016,-0.416150093078613,-0.187016248703003,0.0612679719924927,0.262982726097107,0.403969347476959,0.530284851789474,0.733192712068558,1.11534410715103,1.74996566772461,2.6478054523468,3.74420559406281,4.91159915924072,5.99379873275757,6.85017704963684,7.39406442642212,7.6118311882019,7.55611371994019,7.31690740585327,6.9824310541153,6.60591328144073,6.19146728515625,5.70447902940214,5.10135248303413,4.36537110805511,3.53264427185059,2.69611930847168,1.98467719554901,1.52480638027191,1.39972454309464,1.62189523875713,2.12997275590897,2.81127458810806,3.54109599720687,4.22350633144379,4.81828927993774,5.34378588199615,5.8553159236908,6.40782761573792,7.01751255989075,7.6376006603241,8.1581871509552,8.43171334266663,8.31595778465271,7.72058796882629,6.64133703708649,5.16993629932404,3.47568374872208,1.7644624710083,0.22788468003273,-1.00063708424568,-1.86902582645416,-2.40262281894684,-2.6759021282196,-2.77176022529602,-2.74405670166016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.81234490871429,6.12750325351954,6.59863436222076,7.18339329957962,7.83129425346851,8.49476508796215,9.1363470479846,9.73161520808935,10.2682275772095,10.7434639036655,11.1613925993443,11.5303028225899,11.8597422242165,12.156195640564,12.4171205759048,12.6249694824219,12.7436120510101,12.7203226089478,12.4949691295624,12.0153782367706,11.2548059225082,10.2260030508041,8.98553460836411,7.62601156532764,6.25674647092819,4.97856497764587,3.86018049716949,2.92451143264771,2.14937615394592,1.48239016532898,0.865386486053467,0.259676456451416,-0.336220264434814,-0.882543563842773,-1.30938577651978,-1.53905534744263,-1.51213026046753,-1.20852088928223,-0.656134605407715,0.0751116275787354,0.892403125762939,1.70540475845337,2.44922640919685,3.09775865077972,3.66289687156677,4.1808477640152,4.69109421037138,5.21618509292603,5.7499560713768,6.25872391462326,6.69450533390045,7.01476800441742,7.20052778720856,7.26531171798706,7.25118160247803,7.21341592073441,7.20003689080477,7.23487025499344,7.31085228919983,7.39640474319458,7.45171165466309,7.44735980033875,0,0,0,0,6.82958567142487,6.64064025878906,6.35051894187927,5.90095496177673,5.26189112663269,4.45257353782654,3.54628276824951,2.654372215271,1.89421463012695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.13106298446655,-1.18306589126587,-1.26952648162842,-1.42612218856812,-1.66350126266479,-1.96272087097168],[0.251219749450684,0.080662727355957,-0.0556173324584961,-0.145693778991699,-0.18622875213623,-0.180204391479492,-0.132601737976074,-0.047175407409668,0.0733184814453125,0.223081588745117,0.387331962585449,0.537927627563477,0.634027481079102,0.62978458404541,0.488167762756348,0.197273254394531,-0.216490745544434,-0.68394947052002,-1.10092163085938,-1.34788417816162,-1.31714534759521,-0.939949035644531,-0.205207824707031,0.836413383483887,2.08496618270874,3.41681146621704,4.71552920341492,5.89842975139618,6.93047820031643,7.82155585289001,8.60875153541565,9.33039093017578,10.0010900497437,10.5965647697449,11.0534563064575,11.2841958999634,11.2021930217743,10.7493448257446,9.91756319999695,8.7579517364502,7.37508225440979,5.90809893608093,4.50352990627289,3.28684616088867,2.33966588973999,1.68792033195496,1.30355834960938,1.11909580230713,1.0512318611145,1.02749633789062,1.00910234451294,1.00383949279785,1.06526660919189,1.27786016464233,1.73152685165405,2.49206113815308,3.57549428939819,4.93396806716919,6.457867577672,7.99486970901489,9.38169360160828,10.4805679321289,11.2103404998779,11.5631213188171,11.6010527610779,11.4334139823914,11.1805086135864,10.9351239204407,10.733913898468,10.5481300354004,10.2972965240479,9.88148498535156,9.22141790390015,8.29232907295227,7.13944263756275,5.86906343698502,4.61806130409241,3.51227378845215,2.62879014015198,1.97544193267822,1.49493980407715,1.09190273284912,0.672630786895752,0.182994365692139,-0.369451522827148,-0.916982650756836,-1.35599088668823,-1.58479762077332,-1.54109239578247,-1.22523355484009,-0.701179027557373,-0.0748844146728516,0.541890144348145,1.06913584470749,1.48410055041313,1.82547557353973,2.1749761402607,2.62290348112583,3.23016947507858,4.00053858757019,4.87324607372284,5.73871028423309,6.47185444831848,6.97093558311462,7.18780970573425,7.13883590698242,6.89271545410156,6.54062283039093,6.16036212444305,5.78889203071594,5.41385596990585,4.98750194907188,4.45714993774891,3.79974803328514,3.04624366760254,2.28522616624832,1.64329254627228,1.24869698286057,1.19137312099338,1.49372524023056,2.10293158888817,2.90720488876104,3.77004840970039,4.56993788480759,5.23176443576813,5.73923921585083,6.12540459632874,6.44577860832214,6.74506020545959,7.03018712997437,7.25984597206116,7.3545229434967,7.22346615791321,6.79906320571899,6.06620955467224,5.07591795921326,3.93778848648071,2.79344987869263,1.77945178747177,0.992204010486603,0.466845370829105,0.176567554473877,0.0523416996002197,0.015101432800293,0.00838708877563477,0,0,0,0,0,0,0,0,0,0,6.69227612018585,7.3342719078064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.79198551177979,9.66799402236938,9.48975706100464,9.32440543174744,9.22751832008362,9.23406612873077,9.3554859161377,9.58320021629333,9.89629283547401,10.2705873847008,10.6859548985958,11.1300142407417,11.597519159317,12.0866051912308,12.5933849811554,13.106743812561,13.6046814918518,14.0527760982513,14.4048960208893,14.6064534187317,14.6000480651855,14.3335466384888,13.7698273658752,12.8967223167419,11.7346255779266,10.3394005298615,8.79788327217102,7.21649074554443,5.70404708385468,4.35333590907976,3.2256110906601,2.34318029880524,1.69184756278992,1.23242425918579,0.917912006378174,0.710413932800293,0.592781066894531,0.571091413497925,0.667520046234131,0.906527042388916,1.29950928688049,1.83348393440247,2.46843409538269,3.14415311813354,3.79486352205276,4.36655968427658,4.83092355728149,5.19130802154541,5.47857117652893,5.73849868774414,6.0154185295105,6.33824646472931,6.71350002288818,7.12790042161942,7.55839629471302,7.98506930470467,8.40094003081322,8.81419244408607,9.24170486629009,9.69676971435547,10.1765322089195,10.6555619239807,11.0889368057251,11.424576997757,11.6201333999634,11.6567573547363,11.5437278747559,11.310714006424,10.9903972148895,10.5987774133682,10.1222252845764,9.51882746815681,8.73537957668304,7.73559188842773,6.52823662757874,5.18381094932556,3.83078527450562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.42239284515381,1.16382455825806,0.967554569244385,0.795857906341553,0.622050762176514,0.437687873840332],[2.23483037948608,2.20947504043579,2.10578870773315,1.90118932723999,1.57657909393311,1.12539100646973,0.562190055847168,-0.0737514495849609,-0.722991943359375,-1.31866073608398,-1.80402946472168,-2.14904975891113,-2.35956478118896,-2.47474193572998,-2.55219554901123,-2.64468288421631,-2.77573299407959,-2.92281341552734,-3.01486778259277,-2.94671249389648,-2.60733795166016,-1.91417026519775,-0.842756271362305,0.557731628417969,2.16893196105957,3.82715344429016,5.3602352142334,6.62667541205883,7.54569041728973,8.10954189300537,8.37507462501526,8.43776249885559,8.39670538902283,8.3215537071228,8.23132348060608,8.09116816520691,7.82760858535767,7.3571320772171,6.61931204795837,5.60427296161652,4.36613607406616,3.01817151904106,1.71041822433472,0.595771789550781,-0.206265926361084,-0.638075351715088,-0.716518402099609,-0.52580451965332,-0.192278861999512,0.152009963989258,0.406801223754883,0.531444549560547,0.555062294006348,0.565952777862549,0.683296680450439,1.01945447921753,1.64389944076538,2.55957078933716,3.69865131378174,4.93903338909149,6.1364588290453,7.16264998912811,7.93777227401733,8.44741702079773,8.73901629447937,8.8991117477417,9.01900196075439,9.16007995605469,9.33035039901733,9.47992706298828,9.51711678504944,9.33963918685913,8.87032413482666,8.08509647846222,7.02356330305338,5.77869534492493,4.46943736076355,3.20605301856995,2.06075286865234,1.05377912521362,0.159603118896484,-0.669658660888672,-1.47304153442383,-2.25377893447876,-2.96731996536255,-3.5291485786438,-3.84005331993103,-3.8198037147522,-3.43718302249908,-2.72531819343567,-1.77670419216156,-0.719346165657043,0.317825019359589,1.23836159706116,1.99940726161003,2.61348859965801,3.13139528036118,3.61286360025406,4.09621983766556,4.57827836275101,5.01189115643501,5.3219440728426,5.43376487493515,5.30316495895386,4.93662464618683,4.39373004436493,3.77033579349518,3.16848075389862,2.66371840238571,2.28211277723312,1.99533146619797,1.7360568344593,1.42805309593678,1.01993107795715,0.510196030139923,-0.0458226203918457,-0.549964006990194,-0.891423761844635,-0.982559353113174,-0.788084506988525,-0.33755087852478,0.282704830169678,0.955113887786865,1.56493759155273,2.03157591819763,2.32697105407715,2.47626447677612,2.54156970977783,2.59557676315308,2.69457387924194,2.86004400253296,3.07452058792114,3.29207420349121,3.45864152908325,3.53420877456665,3.50830221176147,3.40324854850769,3.26411318778992,3.13947916030884,3.06054592132568,3.02703508734703,3.00544238090515,2.9409784078598,2.77901190519333,2.48816387355328,0,0,0,0,0,0,0,0,0,0,3.14424496889114,3.80787587165833,4.47318649291992,5.14508032798767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10.4289116859436,10.5852155685425,10.5943360328674,10.4982290267944,10.3409075737,10.1609444618225,9.98721623420715,9.83885657787323,9.7282623052597,9.66539412736893,9.66107338666916,9.72747260332108,9.87544476985931,10.1095266342163,10.4223740100861,10.7906999588013,11.1744997501373,11.520007610321,11.7660098075867,11.8522081375122,11.7279868125916,11.3599882125854,10.7372031211853,9.87302613258362,8.80388402938843,7.58496689796448,6.28313827514648,4.96876454353333,3.70725178718567,2.55211496353149,1.54056477546692,0.69282990694046,0.0148185789585114,-0.496855229139328,-0.849052459001541,-1.04785615205765,-1.09679400920868,-0.998468041419983,-0.758692026138306,-0.391256093978882,0.0789405107498169,0.616094350814819,1.17803514003754,1.72398465871811,2.22337487339973,2.66299891471863,3.04951184988022,3.40637505054474,3.76593780517578,4.15907752513885,4.60617369413376,5.11264038085938,5.67037066817284,6.26470493525267,6.88337284326553,7.52360805124044,8.19351220875978,8.90643610432744,9.67003785073757,10.4743714034557,11.2843255996704,12.040934920311,12.6723585128784,13.1116902828217,13.3156542778015,13.2763690948486,13.0215301513672,12.6016707420349,12.0689263343811,11.4552733898163,10.7595291137695,9.94942462444305,8.97931376099586,7.81837922334671,6.47809827327728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.6440749168396,3.23926591873169,2.80174493789673,0,0,1.9669075012207,1.92136573791504,1.95892715454102,2.04060125350952,2.13088607788086,2.20246458053589],[1.93326377868652,2.02207946777344,1.94519472122192,1.65362071990967,1.10522270202637,0.281278610229492,-0.7984619140625,-2.06838989257812,-3.42161083221436,-4.72704029083252,-5.85519504547119,-6.7055549621582,-7.22706890106201,-7.42513370513916,-7.35237789154053,-7.08578205108643,-6.69735908508301,-6.22802257537842,-5.67355728149414,-4.98793601989746,-4.10352420806885,-2.96201276779175,-1.54607343673706,0.0989909172058105,1.86156511306763,3.58040332794189,5.07776285707951,6.1997447013855,6.85218596458435,7.02153182029724,6.77455925941467,6.23708403110504,5.5579120516777,4.86865642666817,4.25094410777092,3.7203306555748,3.23104977607727,2.69959980249405,2.03967994451523,1.19765284657478,0.17772198561579,-0.950872033834457,-2.06710660457611,-3.02808606624603,-3.70694255828857,-4.02755665779114,-3.98571014404297,-3.65033149719238,-3.14416742324829,-2.6095495223999,-2.16915941238403,-1.89330816268921,-1.78313398361206,-1.77432870864868,-1.75976514816284,-1.62369251251221,-1.2770094871521,-0.682936191558838,0.134193420410156,1.0988597869873,2.10896015167236,3.06660437583923,3.90493011474609,4.60249048471451,5.18103544414043,5.68824625015259,6.17185008525848,6.6544862985611,7.1181663274765,7.50385129451752,7.72639036178589,7.69977933168411,7.36402317881584,6.70449060201645,5.75721979141235,4.59864401817322,3.32371735572815,2.02039623260498,0.749724388122559,-0.461666584014893,-1.61448097229004,-2.71834707260132,-3.76994943618774,-4.73651313781738,-5.55199885368347,-6.12822604179382,-6.37786674499512,-6.24145042896271,-5.70909172296524,-4.82891899347305,-3.69913351535797,-2.44585102796555,-1.19406867027283,-0.0412392616271973,0.958332777023315,1.79355931282043,2.48253774642944,3.05039477348328,3.50788903236389,3.83918762207031,4.00358843803406,3.95070099830627,3.64338064193726,3.07956147193909,2.30423760414124,1.40614295005798,0.498948335647583,-0.307273149490356,-0.935264468193054,-1.36046242713928,-1.61486557126045,-1.77312774211168,-1.9255690574646,-2.14696100354195,-2.47137716412544,-2.88130602240562,-3.31429256498814,-3.68451528251171,-3.91164922714233,-3.94749760627747,-3.79154276847839,-3.49079155921936,-3.12446784973145,-2.77890300750732,-2.52097368240356,-2.37854671478271,-2.33353614807129,-2.32915830612183,-2.28838396072388,-2.1371693611145,-1.82526969909668,-1.33853244781494,-0.699892044067383,0.0398664474487305,0.817464351654053,1.57258653640747,2.25849771499634,2.8447847366333,3.31296491622925,3.64806699752808,3.83126902580261,3.83767181634903,3.64109882712364,3.22473751753569,2.59346368908882,0,0,0,0,0,0,0,0,0,0,-0.708019495010376,0.101823329925537,1.02464985847473,2.04120802879333,3.12614941596985,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.57515001296997,8.0101900100708,8.27990460395813,8.38935136795044,8.35285592079163,8.19110631942749,7.92888402938843,7.59408330917358,7.21750247478485,6.83250963687897,6.47356760501862,6.17274034023285,5.95474708080292,5.83159780502319,5.79855442047119,5.83311891555786,5.89805865287781,5.9480619430542,5.93866157531738,5.83488677069545,5.61761921644211,5.28569161891937,4.85341262817383,4.34451055526733,3.78432655334473,3.19285750389099,2.58043265342712,1.94747614860535,1.28814387321472,0.596409559249878,-0.127195835113525,-0.870497345924377,-1.60798496007919,-2.30317528545856,-2.91463312506676,-3.40446776151657,-3.74658048152924,-3.93278968334198,-3.97492837905884,-3.90202033519745,-3.75303959846497,-3.56699842214584,-3.37274044752121,-3.18132326006889,-2.98329024016857,-2.75155805423856,-2.44969642162323,-2.04320381581783,-1.51046603918076,-0.850254833698273,-0.0828018188476562,0.755845606327057,1.62483525276184,2.49131774902344,3.34034264087677,4.17830693721771,5.02758944034576,5.91377317905426,6.84944206476212,7.82030874490738,8.77918542921543,9.65127003192902,10.350045979023,10.7993166446686,10.9545030593872,10.8152589797974,10.4248988628387,9.85608720779419,9.18740749359131,8.47866606712341,7.75428152084351,7.00077003240585,6.1796669960022,5.25173181295395,4.20298600196838,3.06304669380188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.993612408638,-0.982354879379272,-0.913615465164185,-0.75702953338623,-0.502613067626953,-0.162539005279541,0.234437465667725,0.65249490737915,1.05763483047485,1.42202091217041,1.72222089767456],[-0.156557083129883,-0.0474371910095215,-0.101747989654541,-0.376880645751953,-0.931453704833984,-1.80333423614502,-2.98822927474976,-4.42630529403687,-6.00243806838989,-7.56177759170532,-8.93748807907104,-9.98356199264526,-10.6035108566284,-10.7667374610901,-10.5078678131104,-9.90950441360474,-9.07393312454224,-8.09280633926392,-7.0242657661438,-5.88461399078369,-4.65675926208496,-3.3121337890625,-1.83831453323364,-0.262556076049805,1.33736956119537,2.83958027884364,4.10080683231354,4.98912942409515,5.41710603237152,5.36519306898117,4.88816148042679,4.10217440128326,3.15594136714935,2.19410729408264,1.32322764396667,0.590003967285156,-0.0223791599273682,-0.579229593276978,-1.16557347774506,-1.85260277986526,-2.66952729225159,-3.58927142620087,-4.53225111961365,-5.38686031103134,-6.04035416245461,-6.4106570482254,-6.46946358680725,-6.24975895881653,-5.83563017845154,-5.33772659301758,-4.86195087432861,-4.48084211349487,-4.21603155136108,-4.03650760650635,-3.87239742279053,-3.6392183303833,-3.26470708847046,-2.70981597900391,-1.97794532775879,-1.1105055809021,-0.171474456787109,0.773060321807861,1.67307424545288,2.50450348854065,3.26801633834839,3.97799897193909,4.64631748199463,5.26741695404053,5.81042975187302,6.2215239405632,6.4359073638916,6.39543163776398,6.06568682193756,5.44669723510742,4.57355046272278,3.50694417953491,2.31714773178101,1.06724071502686,-0.198326587677002,-1.45601320266724,-2.69587373733521,-3.90782785415649,-5.06748628616333,-6.12739324569702,-7.01814389228821,-7.65981411933899,-7.98055338859558,-7.9362421631813,-7.52464041113853,-6.78889739513397,-5.80916726589203,-4.68474507331848,-3.51260396838188,-2.36922478675842,-1.30114245414734,-0.326928615570068,0.551336288452148,1.33207130432129,2.00021600723267,2.5211968421936,2.84558725357056,2.9233341217041,2.72268438339233,2.24689865112305,1.54227924346924,0.693721294403076,-0.191996097564697,-1.01047372817993,-1.68448925018311,-2.18149852752686,-2.51860928535461,-2.75318574905396,-2.96229469776154,-3.21729731559753,-3.56146132946014,-3.99725496768951,-4.48681366443634,-4.96486794948578,-5.35939741134644,-5.61341309547424,-5.7008957862854,-5.63228559494019,-5.44840621948242,-5.20519208908081,-4.954505443573,-4.72724628448486,-4.52383708953857,-4.31477832794189,-4.05084419250488,-3.67925262451172,-3.16098880767822,-2.48398494720459,-1.66866397857666,-0.764904022216797,0.158178329467773,1.02572631835938,1.77003717422485,2.33926296234131,2.70062065124512,2.83857583999634,2.75050520896912,2.4426600933075,1.92855823040009,1.23050892353058,0.382963895797729,0,0,0,0,0,0,0,0,0,-3.31720411777496,-2.48964428901672,-1.49285674095154,-0.357010841369629,0.884794235229492,2.1911940574646,3.50850105285645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.04694283008575,2.7868073284626,3.48257219791412,4.0982494354248,4.60047221183777,4.96220207214355,5.16567528247833,5.20458579063416,5.0852507352829,4.82664430141449,4.45894885063171,4.02034711837769,3.55214059352875,3.09252224862576,2.67035156488419,2.30040991306305,1.981614112854,1.69925093650818,1.43109822273254,1.15603876113892,0.862897872924805,0.556392192840576,0.258389472961426,0.00304269790649414,-0.173028469085693,-0.243107795715332,-0.201722621917725,-0.0712752342224121,0.0984435081481934,0.238421440124512,0.274752616882324,0.145094394683838,-0.186421394348145,-0.72053074836731,-1.4225937128067,-2.23092651367188,-3.07156679034233,-3.8757096529007,-4.59465169906616,-5.20852065086365,-5.72645258903503,-6.1782443523407,-6.60010707378387,-7.0187087059021,-7.43815946578979,-7.83389890193939,-8.15564465522766,-8.33853363990784,-8.31969726085663,-8.05558609962463,-7.53477358818054,-6.78282046318054,-5.85682845115662,-4.8315737247467,-3.78065347671509,-2.75841976236552,-1.78836679458618,-0.861387729644775,0.0546553134918213,0.997157096862793,1.98820352554321,3.01810145378113,4.03865706920624,4.96939873695374,5.71556115150452,6.19254446029663,6.34973609447479,6.18554690480232,5.74886322021484,5.12608814239502,4.41764295101166,3.71112751960754,3.06011605262756,2.47491490840912,1.92801624536514,1.37200057506561,0.763093113899231,0.0821852684020996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6.62789326906204,-6.11606325954199,-5.47336012125015,-4.72921085357666,-3.92968511581421,-3.12940049171448,-2.38006210327148,-1.71984124183655,-1.16776013374329,-0.725854635238647,-0.388686895370483],[-1.8110203742981,-1.81732153892517,-1.89351058006287,-2.08639657497406,0,-3.07079708576202,-3.94507133960724,-5.05720597505569,-6.32461160421371,-7.61677664518356,-8.77861520648003,-9.66186806559563,-10.1560291647911,-10.2101972699165,-9.83990275859833,-9.11730921268463,-8.1481466293335,-7.04255080223083,-5.88856744766235,-4.73604547977448,-3.59506785869598,-2.44843423366547,-1.27325022220612,-0.063886284828186,1.15175168216228,2.30832356214523,3.3132216334343,4.06784120202065,4.49345046281815,4.5535329580307,4.26557230949402,3.69837665557861,2.95550131797791,2.14950656890869,1.37451314926147,0.68505334854126,0.0871524810791016,-0.456058025360107,-1.00626587867737,-1.62524259090424,-2.35103183984756,-3.18219494819641,-4.07468140125275,-4.95185887813568,-5.72431528568268,-6.3131294362247,-6.66948014497757,-6.78490257263184,-6.68949007987976,-6.43933415412903,-6.09755706787109,-5.71525430679321,-5.31811666488647,-4.9025239944458,-4.44151926040649,-3.89794206619263,-3.23995399475098,-2.45362186431885,-1.54880619049072,-0.557015419006348,0.477230072021484,1.50788450241089,2.49742364883423,3.42199325561523,4.27019786834717,5.03671836853027,5.71360969543457,6.2832396030426,6.715855717659,6.97315001487732,7.01678919792175,6.81899952888489,6.37139248847961,5.68883657455444,4.80686140060425,3.7734808921814,2.63827705383301,1.44263410568237,0.214654445648193,-1.02959012985229,-2.27908086776733,-3.51793527603149,-4.71675157546997,-5.82874774932861,-6.79305005073547,-7.54451060295105,-8.02730643749237,-8.20790132880211,-8.08315473794937,-7.68065774440765,-7.05126214027405,-6.25606632232666,-5.35228425264359,-4.38264214992523,-3.37155818939209,-2.32935523986816,-1.26243686676025,-0.185436725616455,0.86933708190918,1.84928560256958,2.68733024597168,3.31491470336914,3.67846632003784,3.75408363342285,3.55562496185303,3.13330745697021,2.56266164779663,1.92701292037964,1.29828214645386,0.721839904785156,0.209458351135254,-0.257567882537842,-0.716630458831787,-1.20702648162842,-1.75349593162537,-2.35488414764404,-2.98118853569031,-3.57956981658936,-4.0870509147644,-4.44612073898315,-4.6183648109436,-4.59237289428711,-4.3840479850769,-4.02965259552002,-3.57422637939453,-3.05924224853516,-2.51321315765381,-1.94799900054932,-1.36167430877686,-0.746381759643555,-0.0986003875732422,0.571952819824219,1.23763084411621,1.85397815704346,2.3664379119873,2.72054100036621,2.87261009216309,2.79808330535889,2.49535131454468,1.98467421531677,1.30322742462158,0.498256683349609,-0.37938404083252,-1.27976050972939,-2.15599018335342,0,0,0,0,0,0,0,0,0,-2.48523116111755,-1.50486087799072,-0.40627384185791,0.783344745635986,2.03282308578491,3.30320692062378,4.54525232315063,5.69940757751465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.0105634331703186,0.654687583446503,1.35591971874237,2.05673468112946,2.71395307779312,3.28340995311737,3.72630625963211,4.01505713164806,4.13748574256897,4.0984593629837,3.91849112510681,3.62937635183334,3.26763209700584,2.86705935001373,2.45222592353821,2.0347113609314,1.61333227157593,1.17873382568359,0.721386432647705,0.240814208984375,-0.24671459197998,-0.705166816711426,-1.08181619644165,-1.31708192825317,-1.35884523391724,-1.17799520492554,-0.78081226348877,-0.214279174804688,0.438026428222656,1.06914234161377,1.56863236427307,1.84381103515625,1.83785700798035,1.53922116756439,0.980422914028168,0.226539611816406,-0.643415868282318,-1.55708473920822,-2.46542054414749,-3.35092931985855,-4.22539836168289,-5.11793518066406,-6.0572247505188,-7.05328142642975,-8.08444777876139,-9.09383046627045,-9.99668306112289,-10.6971520185471,-11.1097831726074,-11.1800897121429,-10.8981144428253,-10.30135679245,-9.46554136276245,-8.48609042167664,-7.45497751235962,-6.43979787826538,-5.47099626064301,-4.54069381952286,-3.61390700936317,-2.64844673871994,-1.61753821372986,-0.527859449386597,0.572616815567017,1.60014343261719,2.45306098461151,3.03669905662537,3.28860032558441,3.19597339630127,2.80034792423248,2.18787312507629,1.46801292896271,0.746725469827652,0.102260590298101,-0.429793745279312,-0.858316212892532,-1.2255939245224,-1.58755737543106,-1.99203836917877,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8.9351794719696,-8.0950545668602,-7.10341797024012,-6.03413105010986,-4.97569614648819,-4.0146290063858,-3.21798431873322,-2.62025034427643,-2.21899998188019,-1.98132014274597,-1.85946810245514],[-1.15160170197487,0,0,0,0,0,-2.62790411710739,-3.21368432044983,-3.9332777261734,-4.70960962772369,-5.43383753299713,-5.99007844924927,-6.28280341625214,-6.25916647911072,-5.92004430294037,-5.31690466403961,-4.53574132919312,-3.67308792471886,-2.811199888587,-1.99959293752909,-1.24790856149048,-0.531577687710524,0.19213523901999,0.963156145997345,1.79942504316568,2.68541812896729,3.57174128293991,4.38562685251236,5.04892253875732,5.49786579608917,5.69871664047241,5.65465378761292,5.40224885940552,4.99891757965088,4.50553798675537,3.96963596343994,3.41416072845459,2.83496069908142,2.20732378959656,1.49910020828247,0.686066627502441,-0.235246896743774,-1.24116387963295,-2.28246676921844,-3.29321974515915,-4.20374268293381,-4.95373868942261,-5.50182271003723,-5.82910180091858,-5.93665409088135,-5.83854532241821,-5.55340051651001,-5.09757518768311,-4.48207378387451,-3.71373081207275,-2.79957675933838,-1.75225353240967,-0.593971252441406,0.642568588256836,1.91678142547607,3.1852855682373,4.40762615203857,5.55055284500122,6.58945465087891,7.50665426254272,8.28765988349915,8.91705393791199,9.37613832950592,9.64344322681427,9.69828188419342,9.52619659900665,9.12428200244904,8.5043660402298,7.69257521629333,6.72521328926086,5.64214134216309,4.47981691360474,3.26636695861816,2.02048826217651,0.75442361831665,-0.520020008087158,-1.78466606140137,-3.01018095016479,-4.15517568588257,-5.17016172409058,-6.00531554222107,-6.61976504325867,-6.98938930034637,-7.11061658710241,-6.99879276752472,-6.68170714378357,-6.19030594825745,-5.54979056119919,-4.77418375015259,-3.86620545387268,-2.82289791107178,-1.64511919021606,-0.347748756408691,1.03273773193359,2.43636989593506,3.78460884094238,4.99120473861694,5.97649717330933,6.68131685256958,7.07687187194824,7.16811800003052,6.9897632598877,6.5964150428772,6.04956579208374,5.40523862838745,4.70523357391357,3.97427892684937,3.22302961349487,2.45554065704346,1.67834138870239,0.90818977355957,0.175870895385742,-0.475125789642334,-0.994583129882812,-1.33469915390015,-1.45953989028931,-1.35236978530884,-1.01895523071289,-0.486169815063477,0.203429222106934,0.999072074890137,1.84932422637939,2.70746421813965,3.53357315063477,4.29357433319092,4.95613670349121,5.48949146270752,5.85989856719971,6.03302621841431,5.97837352752686,5.6756911277771,5.12140941619873,4.33326768875122,3.35120677947998,2.23421835899353,1.05366778373718,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.0343327522277832,0.95855975151062,2.00167036056519,3.0776309967041,4.16665649414062,5.24369144439697,6.27664995193481,7.22627592086792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3.02260887622833,-2.44352227449417,-1.89184933900833,-1.39002513885498,-0.957307994365692,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.449077844619751,0.958687543869019,1.53786754608154,2.18524503707886,2.88613867759705,3.61199164390564,4.32311296463013,4.97437834739685,5.52260458469391,5.93395233154297,6.18967109918594,6.28878319263458,6.24698281288147,6.09194755554199,5.85613000392914,5.5688787996769,5.24989938735962,4.90604424476624,4.53252625465393,4.11851453781128,3.65578699111938,3.14799928665161,2.61762428283691,2.10782957077026,1.67801237106323,1.39290809631348,1.30783224105835,1.45342254638672,1.82410097122192,2.37390446662903,3.02145981788635,3.66353297233582,4.19443672895432,4.52601635456085,4.60398733615875,4.41560065746307,3.98715677857399,3.37210261821747,2.63317704200745,1.82376265525818,0.973886013031006,0.084965705871582,-0.865243911743164,-1.90885305404663,-3.06961965560913,-4.3454475402832,-5.6974036693573,-7.04885268211365,-8.29558122158051,-9.32493054866791,-10.0387257225811,-10.3742009997368,-10.3170655965805,-9.90332210063934,-9.20896124839783,-8.33053183555603,-7.36171317100525,-6.37244296073914,-5.39637923240662,-4.42979919910431,-3.44249582290649,-2.39694361388683,-1.27025610208511,-0.071746826171875,1.1488356590271,2.30565941333771,3.29299908876419,4.00858944654465,4.37830221652985,4.37456995248795,4.02377924323082,3.40036615729332,2.60935348272324,1.76202011108398,0.951727718114853,0.236175924539566,-0.369379535317421,-0.886884972453117,-1.36037881672382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6.1483987569809,-5.25031960010529,-4.2269743680954,-3.16957759857178,-2.18448758125305,-1.37172913551331,-0.803432464599609,-0.50811755657196,-0.46568751335144,-0.614840030670166,-0.871250689029694],[0,0,0,0,0,0,0,0,-0.426415085792542,-0.802721261978149,-1.18416655063629,-1.49685251712799,-1.67154103517532,-1.66280537843704,-1.46105509996414,-1.09404647350311,-0.6176598072052,-0.098846435546875,0.404110670089722,0.858193814754486,1.26431238651276,1.65563207864761,2.08619713783264,2.61323446035385,3.27827101945877,4.09233701229095,5.02926903963089,6.02868282794952,7.00753819942474,7.87682318687439,8.5588002204895,9.00034165382385,9.17934727668762,9.10325741767883,8.8010733127594,8.31181454658508,7.67310309410095,6.9130585193634,6.04743838310242,5.08212947845459,4.01951730251312,2.86633116006851,1.64025339484215,0.373425900936127,-0.888048887252808,-2.08811235427856,-3.16692543029785,-4.06748247146606,-4.74108934402466,-5.15094804763794,-5.27363300323486,-5.09910583496094,-4.63001155853271,-3.88084411621094,-2.87729454040527,-1.65545654296875,-0.260551452636719,1.25539970397949,2.83687686920166,4.42885589599609,5.98061943054199,7.44854879379272,8.79720878601074,9.99863624572754,11.0302546024323,11.8724843263626,12.5070399045944,12.916888255626,13.0879530310631,13.0121348500252,12.6905053257942,12.1354204416275,11.3705585449934,10.4284766614437,9.34626007080078,8.16047668457031,6.90295386314392,5.59870004653931,4.26674175262451,2.9233603477478,1.5866527557373,0.280694484710693,-0.962509155273438,-2.10405206680298,-3.10238122940063,-3.91953229904175,-4.52753114700317,-4.9129364490509,-5.07798838615417,-5.03781919553876,-4.81450045108795,-4.42966341972351,-3.89803749322891,-3.22405868768692,-2.40271282196045,-1.42482900619507,-0.285354137420654,1.00774717330933,2.42636299133301,3.91934442520142,5.41492986679077,6.82820463180542,8.07229232788086,9.07065439224243,9.76786851882935,10.1366496086121,10.1796555519104,9.92624616622925,9.42517399787903,8.73538899421692,7.91694402694702,7.02425932884216,6.10263562202454,5.18828845024109,4.31098484992981,3.49792551994324,2.77710032463074,2.1788158416748,1.7348427772522,1.47505760192871,1.42275857925415,1.58980274200439,1.97297716140747,2.55255842208862,3.29350137710571,4.14864253997803,5.06336545944214,5.9802942276001,6.84318494796753,7.59965181350708,8.20260810852051,8.61126279830933,8.79220151901245,8.72133684158325,8.38671088218689,7.79176545143127,6.95787870883942,5.92537724971771,4.75173905491829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.06413576006889,2.9118367433548,3.78985524177551,4.68787908554077,5.59450006484985,6.49563407897949,7.3735454082489,8.20646977424622,8.96930241584778,9.63556265830994,0,0,0,0,0,0,0,0,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.69016501307487,-0.886480867862701,-0.143929839134216,0.503537058830261,1.0345915555954,1.44193780422211,1.73136413097382,1.91867578029633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.58309268951416,4.27077484130859,4.96418523788452,5.66684150695801,6.3786358833313,7.09069681167603,7.78305554389954,8.4257915019989,8.98357748985291,9.42245292663574,9.71707507967949,9.85654765367508,9.84723651409149,9.71166777610779,9.4836573600769,9.20079755783081,8.89620232582092,8.59166014194489,8.29403233528137,7.9961710870266,7.68203675746918,7.33493804931641,6.94648933410645,6.52365398406982,6.09145903587341,5.69020485877991,5.36718654632568,5.16507411003113,5.10970139503479,5.20081341266632,5.40862922370434,5.67753612995148,5.93645787239075,6.11349034309387,6.15067005157471,6.01545417308807,5.7052506506443,5.24403691291809,4.67196226119995,4.03106832504272,3.35132551193237,2.64136028289795,1.88680124282837,1.05706405639648,0.118931770324707,-0.94719409942627,-2.13270616531372,-3.3928427696228,-4.64795923233032,-5.79443883895874,-6.72309041023254,-7.34022092819214,-7.58627510070801,-7.44702535867691,0,-6.1779513573274,-5.20514258742332,-4.12284398078918,-2.99781507253647,-1.86596989631653,-0.731224104762077,0.425259441137314,1.6287185959518,2.89190074801445,4.1998855471611,5.50260782241821,6.71808624267578,7.74593949317932,8.48735094070435,8.86692643165588,8.84980356693268,8.45003485679626,7.72767269611359,6.77560609579086,5.6994292140007,4.59611728787422,3.53682623803616,2.55819334834814,1.66386008262634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.356405258178711,1.22067832946777,2.08736062049866,2.85295510292053,3.41804301738739,3.71020060777664,3.70150566101074,3.41548173129559,2.92174108698964,2.3193117082119],[0,0,0,0,0,0,2.41049885749817,2.19878041744232,1.94650709629059,1.65298342704773,1.34493350982666,1.06761050224304,0.87078595161438,0.793990135192871,0.855417251586914,1.04772090911865,1.34176087379456,1.69701838493347,2.07541036605835,0,2.83457720279694,3.24174797534943,3.71876192092896,4.3131742477417,5.06164181232452,5.97601497173309,7.0347855091095,8.18209624290466,9.33467364311218,10.3948738574982,11.2667241096497,11.8711683750153,12.1572315692902,12.1069376468658,11.7336056232452,11.0746867656708,10.1814539432526,9.10838007926941,7.90470635890961,6.6097503900528,5.2524246275425,3.85435324907303,2.43498182296753,1.01709294319153,-0.368959903717041,-1.68327856063843,-2.87713670730591,-3.89612245559692,-4.6849946975708,-5.19341278076172,-5.38150024414062,-5.22451686859131,-4.71601963043213,-3.86908054351807,-2.71548652648926,-1.30291557312012,0.309341430664062,2.05570888519287,3.86970520019531,5.68866729736328,7.45696449279785,9.12745428085327,10.6611833572388,12.0258457660675,13.1937996149063,14.1406188681722,14.8446949720383,15.2883267402649,15.4598672389984,15.3562500476837,14.9849133491516,14.3643271923065,13.522709608078,12.4950255155563,11.3190787434578,10.0317280590534,8.66628801822662,7.25180053710938,5.81441402435303,4.38005065917969,2.97742938995361,1.64012479782104,0.406544208526611,-0.682416439056396,-1.58791446685791,-2.27865266799927,-2.73589706420898,-2.95652842521667,-2.95310425758362,-2.75070071220398,-2.38123363256454,-1.87663599848747,-1.2626911252737,-0.555180549621582,0.240695476531982,1.12721061706543,2.10822820663452,3.18208503723145,4.33490657806396,5.53638315200806,6.7391414642334,7.88207387924194,8.89723443984985,9.71888256072998,10.292857170105,10.5844843387604,10.5833220481873,10.3041269779205,9.78379988670349,9.07538104057312,8.24013543128967,7.33975577354431,6.42984223365784,5.55590415000916,4.75207448005676,4.04237127304077,3.4434220790863,2.96758794784546,2.62551331520081,2.42704272270203,2.38062882423401,2.49135780334473,2.75833559036255,3.17234373092651,3.71453094482422,4.35637760162354,5.06124019622803,5.78686094284058,6.48840284347534,7.12160038948059,7.64550638198853,8.02491474151611,8.23235893249512,8.24994587898254,8.0709673166275,7.70114660263062,7.15903033316135,6.47535401582718,5.69076383113861,4.85215783119202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.66694164276123,3.34458158165216,4.09420043230057,4.90160012245178,5.75103628635406,6.62571120262146,7.50817728042603,8.38027429580688,9.22284150123596,10.0156865119934,0,0,0,0,0,0,0,0,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.06861609220505,-0.152276754379272,0.654903590679169,1.32087635993958,1.83204036951065,2.19328033924103,2.42473022639751,2.55598057061434,2.61888651549816,2.64020662009716,2.63608491420746,2.60954812169075,2.55157372355461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.10002136230469,7.14119625091553,8.12870025634766,9.04701375961304,9.88883352279663,10.6492772102356,11.3206081390381,11.889155626297,12.3353323936462,12.6369204521179,12.7746521830559,12.7385366559029,12.5329678058624,12.1791985034943,11.7140734195709,11.1851015090942,10.6429028511047,10.1325783729553,9.6863169670105,9.31869220733643,9.02621340751648,8.79078263044357,8.58649307489395,8.38774228096008,8.17649449408054,7.94671067595482,7.70470239780843,7.46530184149742,7.24515837430954,7.05502486228943,6.89359021186829,6.7448627948761,6.57999134063721,6.36344957351685,6.06179350614548,5.65233500301838,5.12934291362762,4.50562620162964,3.80885553359985,3.073561668396,2.33114767074585,1.60082244873047,0.884556770324707,0.167749404907227,-0.574091911315918,-1.36415004730225,-2.21199893951416,-3.10322618484497,-3.99476861953735,-4.81746244430542,-5.48597478866577,0,0,0,0,0,0,-1.80567765235901,-0.381355285644531,1.07000887393951,2.507917791605,3.91728830337524,5.30143594741821,6.66973280906677,8.02319645881653,9.34294295310974,10.5843682289124,11.6795015335083,12.5472888946533,13.1089262962341,13.3049190044403,13.1086733341217,12.533627986908,11.6316657066345,10.4834713935852,9.18297362327576,7.82044570147991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.82355177402496,7.2900302708149,7.50111338496208,7.41992062330246,7.05616247653961,6.46451437473297,5.73234367370605],[0,0,0,0,0,3.57983422279358,3.09971502423286,2.63004142045975,2.15369701385498,1.67223370075226,1.20763492584229,0.797782182693481,0.487233400344849,0.316157102584839,0.310667514801025,0.4772629737854,0.802828311920166,1.25994658470154,1.81578755378723,0,3.12131214141846,3.85254716873169,4.64642572402954,5.51931858062744,6.48299312591553,7.53442287445068,8.64841222763062,9.77514028549194,10.8436603546143,11.7706255912781,12.4725193977356,12.8785562515259,12.9415817260742,12.6446099281311,12.001932144165,11.0548710823059,9.86349987983704,8.49635910987854,7.02057147026062,5.49425733089447,3.96254615485668,2.45756530761719,1.00163561105728,-0.387430191040039,-1.69067478179932,-2.88343381881714,-3.93305349349976,-4.79942607879639,-5.43815517425537,-5.80578804016113,-5.86585521697998,-5.59463214874268,-4.9854154586792,-4.0505428314209,-2.82086849212646,-1.34273815155029,0.326635360717773,2.12472343444824,3.98890113830566,5.86055374145508,7.68741321563721,9.42410707473755,11.0313251018524,12.474227309227,13.7210272103548,14.7424380779266,15.5123176574707,16.0095279216766,16.2204241752625,16.141215801239,15.7793784141541,15.1536042690277,14.2921597957611,13.2299344539642,12.0050181150436,10.6556896790862,9.21852588653564,7.72809386253357,6.21816730499268,4.72369432449341,3.28269720077515,1.93709468841553,0.731664180755615,-0.288869857788086,-1.08446502685547,-1.62496709823608,-1.89478731155396,-1.89580965042114,-1.64769172668457,-1.18531537055969,-0.553791284561157,0.197994828224182,1.02394342422485,1.88601452112198,2.75730373710394,3.62212088704109,4.47342348098755,5.30834257602692,6.12281560897827,6.90688872337341,7.64177131652832,8.2994476556778,8.84511077404022,9.24193680286407,9.45720231533051,9.46853142976761,9.2687201499939,8.86831694841385,8.29510748386383,7.59084010124207,6.80550622940063,5.99077379703522,5.19354104995728,4.451087474823,3.78849697113037,3.21875286102295,2.74501395225525,2.36423015594482,2.07122564315796,1.86186075210571,1.73486280441284,1.69195556640625,1.73641920089722,1.87085151672363,2.0947642326355,2.40265703201294,2.78319406509399,3.21943092346191,3.69000434875488,4.17095708847046,4.63774442672729,5.06714916229248,5.43879365921021,5.73626804351807,5.94783496856689,6.06670963764191,6.09088617563248,6.02267836034298,5.86779010295868,5.63417935371399,5.33099031448364,4.96770334243774,0,0,0,0,0,0,0,0,0,0,0,0,2.20090037584305,2.8595290184021,3.65707245469093,4.56309086084366,5.5441267490387,6.56665766239166,7.59933829307556,8.61382210254669,9.58435115218163,10.486698821187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.444728672504425,0.897470384836197,1.19161510467529,1.35634511709213,1.42812204360962,1.4431324005127,1.43011331558228,1.40556287765503,1.37227392196655,1.32146596908569,0,0,0,0,0,0,0,0,0,0,0,0,4.15071296691895,5.43049049377441,6.75525665283203,8.06145858764648,9.2960033416748,10.4199514389038,11.4084177017212,12.2474308013916,12.929018497467,13.4463877677917,13.7907919883728,13.9510061740875,13.9157204627991,13.6779918670654,13.240651845932,12.62064909935,11.8512997627258,10.981171131134,10.0695753097534,9.1795539855957,8.36936044692993,7.68479061126709,7.153360247612,6.78209865093231,6.55875790119171,6.4563547372818,6.43962228298187,6.4717663526535,6.51988565921783,6.55802035331726,6.56732940673828,6.53403186798096,6.44606161117554,6.29006969928741,6.04997849464417,5.70772418379784,5.2463653087616,4.6545135974884,3.93051195144653,3.08513021469116,2.14153623580933,1.13217735290527,0.0933561325073242,-0.941125392913818,-1.94551134109497,-2.90481233596802,-3.8140082359314,-4.67355966567993,-5.48239135742188,-6.23068809509277,-6.89421224594116,-7.43266153335571,-7.79267477989197,0,0,0,0,0,0,0,-0.432092189788818,1.3832368850708,3.18409729003906,4.92332002520561,6.57309138774872,8.12027382850647,9.55830144882202,10.8776421546936,12.05837059021,13.066463470459,13.8556976318359,14.3747611045837,14.5776474475861,14.4350044727325,13.9429004192352,13.1269778013229,12.0404407382011,10.7565118626226,9.35663276910782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.51219475269318,8.12852874398232,8.53056368231773,8.66676485538483,8.52325308322906,8.12574422359467,7.53248488903046],[0,0,0,0,0,3.33281135559082,2.55482858419418,1.77756381034851,1.00746196508408,0.263285517692566,-0.422076463699341,-1.00439298152924,-1.43471777439117,-1.6680862903595,-1.67200255393982,-1.43254613876343,-0.956610441207886,-0.269892454147339,0.588690280914307,1.5744776725769,0,3.76245784759521,4.90142154693604,6.04163599014282,7.16650199890137,8.25689029693604,9.2860860824585,10.2170572280884,11.0030860900879,11.5919332504272,11.9327182769775,11.9840202331543,11.7213506698608,11.1422190666199,10.2677083015442,9.14015913009644,7.81756258010864,6.36584949493408,4.85081267356873,3.33122944831848,1.85443416237831,0.455042541027069,-0.843488216400146,-2.02507066726685,-3.07632684707642,-3.98228740692139,-4.72361850738525,-5.27609157562256,-5.61229228973389,-5.70524787902832,-5.53295135498047,-5.08281707763672,-4.3549633026123,-3.36367797851562,-2.13677978515625,-0.713014602661133,0.861653327941895,2.53823375701904,4.26834106445312,6.00664949417114,7.71181058883667,9.34608864784241,10.8741384744644,12.2617099173367,13.4749218225479,14.4807150363922,15.248467206955,15.7526206970215,15.9756145477295,15.9103722572327,15.5616545677185,14.9458796977997,14.0894412994385,13.0258495807648,11.792533993721,10.428047478199,8.97029376029968,7.45612215995789,5.92223644256592,4.40675449371338,2.9506950378418,1.59858655929565,0.397529602050781,-0.605395317077637,-1.36728143692017,-1.85426092147827,-2.04623365402222,-1.94037055969238,-1.55260467529297,-0.91663932800293,-0.0805916786193848,0.898298501968384,1.95989882946014,3.04726303741336,4.11172127723694,5.11586594581604,6.03434371948242,6.85250818729401,7.56334292888641,8.16367673873901,8.65058028697968,9.01884114742279,9.26014065742493,9.36409091949463,9.32079744338989,9.1243679523468,8.77619445323944,8.28741252422333,7.67948508262634,6.9829403758049,6.23402807116508,5.47044774889946,4.72663182020187,4.0298730134964,3.39795756340027,2.83884310722351,2.35224843025208,1.93257141113281,1.57260179519653,1.26672554016113,1.01318693161011,0.814934730529785,0.678836822509766,0.613936901092529,0.62908411026001,0.730642795562744,0.920884609222412,1.19720268249512,1.55222272872925,1.97458362579346,2.45001792907715,2.96243238449097,3.49466276168823,4.0288462638855,4.54650020599365,5.02836441993713,5.45426416397095,5.80332815647125,6.05456590652466,6.1880062893033,6.1864618062973,6.03779768943787,5.73741042613983,5.29077649116516,0,0,0,0,0,0,0.995498657226562,0.849366545677185,0.957398653030396,1.33022093772888,1.95825681090355,2.81338691711426,3.85278463363647,5.02399921417236,6.27071964740753,7.53769159317017,8.774538397789,9.93755972385406,10.9896748065948,11.8991675376892,12.6373393535614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2.82853126525879,-1.81781190633774,-0.982497856020927,-0.338376581668854,0.116221070289612,0.399073839187622,0.539937973022461,0.5748291015625,0.539718627929688,0.464731216430664,0.37047004699707,0.267114639282227,0.15631103515625,0,0,0,0,0,0,0,0,0,0,0,3.59664154052734,4.8890438079834,6.24531555175781,7.59899520874023,8.88830947875977,10.0624198913574,11.0844955444336,11.9315052032471,12.5914106369019,13.0588512420654,13.3308005332947,13.4036438465118,13.2724350690842,12.9327080249786,12.3840751647949,11.6349482536316,10.7063660621643,9.63437128067017,8.46953129768372,7.27351939678192,6.11337864398956,5.05399072915316,4.15087825059891,3.44397754222155,2.95405347645283,2.68180632591248,2.60991287231445,2.70713657140732,2.93349462747574,3.24524533748627,3.59884941577911,3.95333731174469,4.27117037773132,4.51793527603149,4.66187620162964,4.67376279830933,4.52772951126099,4.20315265655518,3.68726778030396,2.97745990753174,2.08287191390991,1.0244779586792,-0.166631698608398,-1.45231342315674,-2.79108762741089,-4.1418251991272,-5.46602964401245,-6.72855281829834,-7.89659452438354,0,0,0,0,0,0,0,0,0,0,0,-3.37340354919434,-1.40043067932129,0.594340801239014,2.54622268676758,4.4029541015625,6.12583076953888,7.68707060813904,9.0654661655426,10.2413830757141,11.1932778358459,11.8963685035706,12.3246183395386,12.4554812908173,12.2761410474777,11.7896708846092,11.019038811326,10.0077294111252,8.81630527973175,7.51562190055847,6.17744255065918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.56545996665955,6.46821045875549,7.19332081079483,7.67901180684566,7.89193046092987,7.83101785182953,7.52442646026611],[0,0,0,0,3.76573276519775,2.86839413642883,1.93714994192123,0.990579627454281,0.0524692535400391,-0.844401523470879,-1.6572380065918,-2.33556175231934,-2.8265632390976,-3.08235704898834,-3.06754451990128,-2.76535733789206,-2.18101501464844,-1.3416006565094,-0.292524814605713,0.908538818359375,0,3.51754140853882,4.810631275177,6.03387355804443,7.15282917022705,8.14096069335938,8.97672176361084,9.64074325561523,10.1141786575317,10.3787307739258,10.4184169769287,10.2225542068481,9.78908348083496,9.12726497650146,8.25889301300049,7.21759414672852,6.04623937606812,4.79295778274536,3.50662684440613,2.2327094078064,1.01026457548141,-0.129340887069702,-1.16210389137268,-2.06965637207031,-2.83693885803223,-3.44995307922363,-3.89433479309082,-4.15518856048584,-4.21815586090088,-4.07151889801025,-3.70862865447998,-3.13011932373047,-2.34516620635986,-1.37153339385986,-0.234321594238281,1.03629779815674,2.40767574310303,3.8471212387085,5.32351732254028,6.80779314041138,8.27230477333069,9.68942737579346,11.0300285816193,12.2624226808548,13.3523445129395,14.2642970085144,14.9640557765961,15.4220480918884,15.6167550086975,15.537483215332,15.1858155727386,14.5754375457764,13.7304339408875,12.6823822259903,11.4670642912388,10.1215025186539,8.68192505836487,7.18306493759155,5.65878534317017,4.14357614517212,2.67425727844238,1.29120254516602,0.0383586883544922,-1.03816890716553,-1.89316082000732,-2.48639154434204,-2.78725099563599,-2.77893829345703,-2.46150255203247,-1.8529896736145,-0.98854923248291,0.0826020240783691,1.3017840385437,2.60628128051758,3.93498882651329,5.23301899433136,6.45498108863831,7.56648564338684,8.5437912940979,9.37209033966064,10.0429849624634,10.5518608093262,10.8958802223206,11.0730013847351,11.0821623802185,10.924533367157,10.6051263809204,10.1345000267029,9.52963876724243,8.81392645835876,8.01570749282837,7.1661388874054,6.29638493061066,5.43502931296825,4.60612279176712,3.8283269405365,3.11521482467651,2.47636604309082,1.91914129257202,1.45017147064209,1.07638216018677,0.805278778076172,0.644153594970703,0.598901748657227,0.672487258911133,0.863633155822754,1.1661434173584,1.56890964508057,2.05660057067871,2.61088275909424,3.21165752410889,3.83821105957031,4.46979761123657,5.08575439453125,5.66521787643433,6.1866135597229,6.62729716300964,6.96376848220825,7.17255032062531,7.23194009065628,7.124577075243,6.84055805206299,6.38057792186737,5.75874829292297,5.00427484512329,4.16174066066742,3.28931352496147,2.45515942573547,1.73187851905823,1.189896941185,0.890376210212708,0.878637790679932,1.1792231798172,1.79315102100372,2.69787831604481,3.84994411468506,0,0,8.15191078186035,9.63070392608643,11.0207533836365,12.2673554420471,13.3251504898071,14.157112121582,14.7323331832886,15.0240783691406,15.0083122253418,14.6637272834778,13.9731388092041,12.9262568950653,11.5232014656067,9.7781298160553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4.70887267589569,-3.20188820362091,-1.82143181562424,-0.612030267715454,0.393078684806824,1.17484164237976,1.72939896583557,2.06762886047363,2.21247053146362,2.19511985778809,2.05063056945801,1.81366539001465,1.51556396484375,1.18310546875,0.838905334472656,0.50360107421875,0.198520660400391,-0.051849365234375,0,0,0,0.112663269042969,0.59637451171875,1.29063034057617,2.18607330322266,3.25502014160156,4.45314025878906,5.72414398193359,7.00584411621094,8.23735427856445,9.36513328552246,10.3473892211914,11.1559181213379,11.7752208709717,12.1996908187866,12.4295673370361,12.4670639038086,12.3137063980103,11.9694279432297,11.4339473247528,10.7095680236816,9.80522108078003,8.73981785774231,7.54478132724762,6.26433384418488,4.9534432888031,3.67381358146667,2.48804020881653,1.45370399951935,0.617684245109558,0.0121330283582211,-0.34772789478302,-0.463641405105591,-0.352515459060669,-0.0434331893920898,0.425715923309326,1.01147699356079,1.6673412322998,2.34555196762085,2.99808883666992,3.57761383056641,4.03833913803101,4.33756446838379,4.43768501281738,4.30886554718018,3.93141746520996,3.29813814163208,2.41559934616089,1.30426263809204,-0.00250864028930664,-1.46042060852051,-3.01705145835876,-4.61462593078613,-6.19266819953918,-7.69032180309296,0,0,0,0,0,0,0,0,0,0,0,-5.20676040649414,-3.39062118530273,-1.53944826126099,0.288238048553467,2.04013919830322,3.67092776298523,5.14110493659973,6.41561603546143,7.46253705024719,8.25307083129883,8.76260137557983,8.9734593629837,0,8.485122859478,7.81724643707275,6.91650867462158,5.83980011940002,4.65445899963379,3.43153810501099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.16699028015137,2.44228458404541,3.7627592086792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.64700126647949,6.35292442142963,0,0,0],[0,0,0,0,3.51943647861481,2.64364737272263,1.73373460769653,0.811011871322989,-0.0985500402748585,-0.961657755076885,-1.73708622902632,-2.37764905393124,-2.83457724750042,-3.06358504295349,-3.03145384788513,-2.72176885604858,-2.13863217830658,-1.30754935741425,-0.27324366569519,0.905168056488037,0,3.42602252960205,4.63923406600952,5.74940824508667,6.71885108947754,7.52343845367432,8.15099620819092,8.59843444824219,8.86857986450195,8.96734714508057,8.90189933776855,8.6798734664917,8.30969047546387,7.80143451690674,7.16792869567871,6.42556953430176,5.59460592269897,4.69878005981445,3.764488697052,2.81965351104736,1.89257788658142,1.01104843616486,0.201676845550537,-0.510465621948242,-1.10218524932861,-1.55257225036621,-1.84366512298584,-1.96145153045654,-1.89695930480957,-1.64734840393066,-1.21655654907227,-0.615323066711426,0.139610290527344,1.02706336975098,2.02347564697266,3.10513687133789,4.24991035461426,5.43824577331543,6.65308475494385,7.87868356704712,9.09867930412292,10.2938785552979,11.4404489994049,12.5090836286545,13.4655094146729,14.2725222110748,14.8931879997253,15.2947773933411,15.4525904655457,15.3529691696167,14.9949052333832,14.3898775577545,13.5601284503937,12.5356014668941,11.350417971611,10.0395493507385,8.63633894920349,7.17137145996094,5.67281532287598,4.16793060302734,2.68519496917725,1.25644302368164,-0.0818004608154297,-1.28816223144531,-2.31790828704834,-3.12584686279297,-3.67037534713745,-3.91793489456177,-3.84728288650513,-3.45262718200684,-2.7453441619873,-1.75371265411377,-0.520846843719482,0.898829460144043,2.4442675113678,4.05249154567719,5.66300344467163,7.22120833396912,8.68044400215149,10.0026898384094,11.158148765564,12.1240420341492,12.8832716941833,13.4233045578003,13.7356204986572,13.8159470558167,13.6648859977722,13.2890110015869,12.7017254829407,11.9238538742065,10.9833312034607,9.91442680358887,8.75619220733643,7.55064976215363,6.34085237979889,5.1691335439682,4.07567834854126,3.09726667404175,2.26641464233398,1.61033582687378,1.14994812011719,0.898859024047852,0.862144470214844,1.03558921813965,1.40530681610107,1.94804573059082,2.6324634552002,3.42111015319824,4.27298545837402,5.14645767211914,6.00182723999023,6.80353546142578,7.52139854431152,8.13101816177368,8.61343479156494,8.95424270629883,9.14254903793335,9.17031812667847,9.03220808506012,8.72621086239815,8.25510627031326,7.62839162349701,6.86436557769775,5.99190425872803,5.05124568939209,4.0936176776886,3.17904950678349,2.37280094623566,1.74021553993225,1.34096455574036,1.22310638427734,1.41785180568695,1.9359393119812,2.76600217819214,3.87525723874569,5.21243607997894,6.7125403881073,8.30234599113464,9.90644645690918,11.4522070884705,12.8737716674805,14.1141133308411,15.1254911422729,15.8688201904297,16.3120784759521,16.4289608001709,16.1979622840881,15.6026744842529,14.6332011222839,13.2885928153992,11.5797562599182,9.53229188919067,7.1883385181427,4.60704066837206,1.86317706108093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2.20583736896515,-0.33309995289892,1.39138151705265,2.91348128765821,4.18863791227341,5.1850973367691,5.88581275939941,6.28943967819214,6.40947341918945,6.27239418029785,5.91495704650879,5.38096237182617,4.71842002868652,3.97727012634277,3.20757675170898,2.45871734619141,1.77865600585938,1.21315002441406,0.804595947265625,0.589927673339844,0.598087310791016,0.846931457519531,1.34045028686523,2.06681060791016,2.99789810180664,4.0908317565918,5.29104614257812,6.53742599487305,7.76765060424805,8.92408752441406,9.95815658569336,10.8332786560059,11.5257511138916,12.0234746932983,12.3233757019043,12.4279565811157,12.3420487642288,12.0705591440201,11.6175332069397,10.9869964122772,10.1848481893539,9.22189879417419,8.11630868911743,6.89577674865723,5.5980498790741,4.26980662345886,2.96411657333374,1.73633432388306,0.639840602874756,-0.278383634984493,-0.981281876564026,-1.44415044784546,-1.65571260452271,-1.6178617477417,-1.34450149536133,-0.859926223754883,-0.197010040283203,0.604337692260742,1.49857425689697,2.4354829788208,3.36140823364258,4.22049617767334,4.95673179626465,5.51642227172852,5.85144662857056,5.92239952087402,5.70213937759399,5.17842674255371,4.35571002960205,3.25568532943726,1.91658329963684,0.390902757644653,-1.25771355628967,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5.11651611328125,-3.59260559082031,-2.02089691162109,-0.449012756347656,1.07486629486084,2.5018138885498,3.78281044960022,4.87012749910355,5.72006511688232,6.29620337486267,6.57340965420008,0,0,5.60158491134644,4.76524877548218,3.75928497314453,0,0,0,0,0,0,0,0,0,0,0,0,0,-2.39483451843262,-1.71982383728027,-0.869535446166992,0.145395278930664,1.29853820800781,2.54755210876465,3.83739852905273,5.10565376281738,6.2899169921875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,2.79099798202515,2.00021541118622,1.2143520116806,0.446630835533142,-0.286370813846588,-0.96225968003273,-1.55201497673988,-2.02125484496355,-2.33348920941353,-2.45486545562744,-2.35953384637833,-2.03458553552628,-1.48357325792313,-0.727850437164307,0.194609081372619,1.2327743768692,2.32796001434326,3.42012476921082,4.45406532287598,5.38452005386353,6.17945384979248,6.82116079330444,7.30525398254395,7.63792896270752,7.83223342895508,7.90405368804932,7.86861324310303,7.73795509338379,7.51979923248291,7.21770668029785,6.83234882354736,6.36357021331787,5.81268215179443,5.18463468551636,4.48970627784729,3.74442732334137,2.97165727615356,2.19985127449036,1.46150541305542,0.791065692901611,0.222382545471191,-0.213911056518555,-0.492875099182129,-0.597354888916016,-0.519282341003418,-0.26011848449707,0.169778823852539,0.752755165100098,1.46625232696533,2.2856273651123,3.18692016601562,4.14914512634277,5.15551090240479,6.19353055953979,7.25382852554321,8.3279333114624,9.4055495262146,10.4718827605247,11.5057178735733,12.4787604808807,13.3564937114716,14.1006202697754,14.6726508140564,15.0381398200989,15.1707320213318,15.0553169250488,14.6897478103638,14.0847382545471,13.2621386051178,12.2517920732498,11.0877823531628,9.80473577976227,8.43485188484192,7.00622892379761,5.54276418685913,4.0654411315918,2.59463596343994,1.15287208557129,-0.232760429382324,-1.52901935577393,-2.69641304016113,-3.69065427780151,-4.46563196182251,-4.97742605209351,-5.18893814086914,-5.07417154312134,-4.62181615829468,-3.83729290962219,-2.74317336082458,-1.37792944908142,0.206981897354126,1.95081734657288,3.78781062364578,5.65133714675903,7.47737431526184,9.20709228515625,10.7884693145752,12.1769304275513,13.3354783058167,14.2344913482666,14.8515410423279,15.1715607643127,15.1871743202209,14.8994798660278,14.3187913894653,13.4653925895691,12.3697056770325,11.0721440315247,9.62215375900269,8.07673406600952,6.49830597639084,4.95215904712677,3.50359129905701,2.21472406387329,1.14145374298096,0.330247402191162,-0.18466854095459,-0.383588790893555,-0.263119697570801,0.163254737854004,0.865646362304688,1.79942321777344,2.90823650360107,4.1278772354126,5.39072036743164,6.63044261932373,7.78614330291748,8.80587100982666,9.64882946014404,10.2863674163818,10.7018728256226,10.8896086215973,10.8530158996582,10.6029485464096,10.1560398638248,9.5336000919342,8.76121652126312,7.86877369880676,6.89086151123047,5.86718034744263,4.84245622158051,3.86582255363464,2.98903954029083,2.26398468017578,1.73915040493011,1.45588767528534,1.44461810588837,1.72160661220551,2.28691363334656,3.12373408675194,4.19927275180817,5.46712803840637,6.87085390090942,8.3478581905365,9.83371996879578,11.2655744552612,12.5849673748016,13.7393183708191,14.6823887825012,15.3741893768311,15.7802801132202,15.871461391449,15.6237735748291,15.0194516181946,14.0485825538635,12.7113823890686,11.0205945968628,9.00362253189087,6.703638125211,4.17949223518372,1.50405836105347,-1.23899698257446,-3.95964765548706,-6.56676387786865,-8.97352361679077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1.68085515499115,0.639972662553191,2.86353802680969,4.91624426841736,6.72970151901245,8.24476075172424,9.41544583067298,10.2118114233017,10.6221542358398,10.6535067558289,10.3310585021973,9.69638252258301,8.80462265014648,7.72123336791992,6.51852607727051,5.27187538146973,4.05644989013672,2.94389724731445,1.99917984008789,1.2777099609375,0.822479248046875,0.661762237548828,0.8072509765625,1.25308990478516,1.97595596313477,2.93667602539062,4.08297348022461,5.35336303710938,6.68205642700195,8.00361442565918,9.25773429870605,10.3925876617432,11.3670806884766,12.15159034729,12.7271981239319,13.0840849876404,13.2193161696196,13.1347386837006,12.8354849815369,12.3291804790497,11.6262941360474,10.740914106369,9.69235897064209,8.50608944892883,7.21467041969299,5.85756397247314,4.47992777824402,3.13069725036621,1.85952842235565,0.713955730199814,-0.263694047927856,-1.03870153427124,-1.58571290969849,-1.88971042633057,-1.94607734680176,-1.76022052764893,-1.34689617156982,-0.729392051696777,0.0610628128051758,0.986021041870117,2.00020599365234,3.05243396759033,4.08658695220947,5.04363822937012,5.86409091949463,6.49140787124634,6.87547540664673,6.9767324924469,6.7695415019989,6.24490487575531,5.41196304559708,4.29810482263565,2.94730842113495,1.41721045970917,0,0,0,0,0,0,0,0,0,0,0,0,0,-7.65120124816895,-6.53843021392822,-5.24808502197266,-3.8153657913208,-2.28295230865479,-0.701137542724609,0.872536182403564,2.37518310546875,3.74162042140961,4.90897536277771,5.82154387235641,6.43603754043579,6.72610282897949,6.68546772003174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2.83840560913086,-2.28936004638672,-1.54838943481445,-0.622642517089844,0.470550537109375,1.70197296142578,3.03027725219727,4.40422058105469,5.76597595214844,7.05647850036621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0.815122604370117,0.0958352088928223,-0.561542510986328,-1.15155172348022,-1.66751551628113,-2.09909358620644,-2.43114942312241,-2.64426124095917,-2.71685659885406,-2.6285896897316,-2.36435770988464,-1.91815721988678,-1.29598081111908,-0.517182230949402,0.386115193367004,1.37149053812027,2.39027720689774,3.39251251518726,4.33202528953552,5.17080521583557,5.88203549385071,6.4513201713562,6.87605047225952,7.16315031051636,7.32569742202759,7.3790922164917,7.33749580383301,7.21111679077148,7.00483226776123,6.71825408935547,6.34716892242432,5.88602733612061,5.33100843429565,4.68306255340576,3.9504382610321,3.1502434015274,2.3087061047554,1.4601788520813,0.644822597503662,-0.0945892333984375,-0.716470718383789,-1.18421745300293,-1.4695463180542,-1.55499744415283,-1.43512535095215,-1.11636352539062,-0.615478515625,0.0430641174316406,0.830472946166992,1.71714687347412,2.675856590271,3.68403339385986,4.72470092773438,5.78614950180054,6.86021900177002,7.93967890739441,9.01524329185486,10.0728025436401,11.0915744304657,12.0435972213745,12.8947510719299,13.6072993278503,14.1435351371765,14.4699792861938,14.5613918304443,14.40389585495,13.9967255592346,13.3522100448608,12.4941458702087,11.4547071456909,10.2706369161606,8.97929824888706,7.61527740955353,6.20811867713928,4.78158569335938,3.3543758392334,1.94209289550781,0.560018539428711,-0.774017333984375,-2.03718042373657,-3.20030736923218,-4.22797632217407,-5.08011150360107,-5.71490430831909,-6.09280490875244,-6.18073582649231,-5.95625233650208,-5.41071200370789,-4.55124378204346,-3.40121376514435,-1.99898946285248,-0.395597219467163,1.34866869449615,3.16813009977341,4.99548578262329,6.76520919799805,8.41628551483154,9.89406538009644,11.1515274047852,12.1499247550964,12.8590965270996,13.2578039169312,13.3339242935181,13.0849757194519,12.5186266899109,11.6533260345459,10.5185508728027,9.15491628646851,7.61358726024628,5.95512491464615,4.24754631519318,2.56369066238403,0.977967739105225,-0.437491893768311,-1.61676263809204,-2.50428199768066,-3.0585241317749,-3.25498676300049,-3.0883846282959,-2.57334041595459,-1.74373722076416,-0.650690078735352,0.641057014465332,2.05760860443115,3.52105903625488,4.95490169525146,6.28883743286133,7.46299839019775,8.43074035644531,9.16016340255737,9.63436555862427,9.85040593147278,9.81745982170105,9.55456328392029,9.08817858994007,8.44999366998672,7.67527079582214,6.8015468120575,5.86785578727722,4.91426587104797,3.98135304450989,3.1097032725811,2.33887708187103,1.70614087581635,1.24468570947647,0.981747984886169,0.936706095933914,1.11940360069275,1.52912338078022,2.15425226092339,2.97270807623863,3.95319348573685,5.05706316232681,6.24029782414436,7.45583724975586,8.6553547848016,9.79094356298447,10.8161117434502,11.6864017248154,12.3599865436554,12.79802942276,12.9655623435974,12.8325064182281,12.3754072189331,11.5794286727905,10.4405655860901,8.96766471862793,7.18396964669228,5.12770783901215,2.85162353515625,0.42127513885498,-2.08782052993774,-4.59397125244141,-7.01359748840332,-9.26564264297485,-11.2754898071289,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.750116154551506,1.74953189119697,4.13997220993042,6.33826184272766,8.26730179786682,9.86016201972961,11.0643305778503,11.844900906086,12.1871867179871,12.0976455211639,11.6036682128906,10.7520399093628,9.60608005523682,8.24198913574219,6.74470138549805,5.20301055908203,3.70519638061523,2.33452224731445,1.16511154174805,0.258617401123047,-0.338718414306641,-0.597976684570312,-0.508636474609375,-0.0786247253417969,0.666645050048828,1.68633651733398,2.92711639404297,4.32657432556152,5.8173828125,7.33094787597656,8.8013219833374,10.1679582595825,11.3780393600464,12.3878269195557,13.1631930172443,13.6797108650208,13.9222702980042,13.8846206665039,13.5690357685089,12.9859861135483,12.1541296690702,11.1000391244888,9.85817718505859,8.46989679336548,6.98253655433655,5.44762849807739,3.91863703727722,2.44861406087875,1.08726885914803,-0.12119448184967,-1.14018297195435,-1.94198608398438,-2.5084547996521,-2.83107423782349,-2.91037368774414,-2.75516414642334,-2.38171672821045,-1.81298637390137,-1.07819747924805,-0.212374687194824,0.743721961975098,1.7441349029541,2.73823738098145,3.67225456237793,4.4911847114563,5.14168739318848,5.57511758804321,5.75131487846375,5.64185205101967,5.23282468318939,4.52662682533264,3.54252004623413,2.3155517578125,0.894261181354523,-0.662751749157906,-2.29105094820261,-3.92457734793425,0,0,0,0,0,-10.7967848777771,-11.119734287262,0,0,0,-9.55279541015625,-8.4603443145752,-7.11653470993042,-5.55213022232056,-3.80993413925171,-1.94487333297729,-0.0232305526733398,1.87995076179504,3.68467032909393,5.31144094467163,6.68687443435192,7.74953019618988,8.45502114295959,8.77962493896484,8.72228193283081,8.30416107177734,0,0,0,0,0,0,0,0,0,0,0,0,-3.58634567260742,-3.34138679504395,-2.83169937133789,-2.06584167480469,-1.06195831298828,0.150588989257812,1.53094100952148,3.0274543762207,4.58004760742188,6.12319183349609,7.5905647277832,8.91937637329102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,-2.65040063858032,-3.25524258613586,-3.7480947971344,-4.12251389026642,-4.37114578485489,-4.48477322980762,-4.45254623889923,-4.2633661031723,-3.9081963300705,-3.38282787799835,-2.69055944681168,-1.8442123234272,-0.867047190666199,0.207745432853699,1.33895874023438,2.48047029972076,3.58512735366821,4.6087720990181,5.51385217905045,6.2720490694046,6.8655903339386,7.28708457946777,7.53805208206177,7.62648153305054,7.56391382217407,7.36264228820801,7.03347444534302,6.58457565307617,6.02143573760986,5.34798860549927,4.56865692138672,3.69081354141235,2.72723770141602,1.69803524017334,0.631582140922546,-0.435778841376305,-1.46128416061401,-2.39854121208191,-3.20109796524048,-3.82645416259766,-4.23987674713135,-4.41754627227783,-4.34861850738525,-4.03585243225098,-3.49477386474609,-2.75147438049316,-1.83936595916748,-0.795401573181152,0.343680381774902,1.54452800750732,2.77940082550049,4.02690505981445,5.27150058746338,6.5017352104187,7.70765852928162,8.87797719240189,9.99751448631287,11.0455403327942,11.9953937530518,12.815468788147,13.4715938568115,13.9303641319275,14.1629872322083,14.1489472389221,13.8788886070251,13.3562731742859,12.5974287986755,11.6301264762878,10.4907217025757,9.22050356864929,7.86176776885986,6.45418144762516,5.03204023838043,3.62285041809082,2.24724006652832,0.920194625854492,-0.346750736236572,-1.5428614616394,-2.65556287765503,-3.66848707199097,-4.56050872802734,-5.30606603622437,-5.87667012214661,-6.24357724189758,-6.38096082210541,-6.26942467689514,-5.89900779724121,-5.2714659422636,-4.40145915746689,-3.31631681323051,-2.05477055907249,-0.664610058069229,0.800377286970615,2.28361940383911,3.72891461849213,5.0831845998764,6.2985166311264,7.33363270759583,8.15469765663147,8.73562383651733,9.05821585655212,9.11202526092529,8.89444136619568,8.41079080104828,7.67467856407166,6.70816850662231,5.54207330942154,4.21582615375519,2.77699327468872,1.28015327453613,-0.214851856231689,-1.64532089233398,-2.94878482818604,-4.06631231307983,-4.94622945785522,-5.54754209518433,-5.84285497665405,-5.82072639465332,-5.48668670654297,-4.86315155029297,-3.98809623718262,-2.91236209869385,-1.69606590270996,-0.404438018798828,0.896771430969238,2.14546012878418,3.28698444366455,4.27687835693359,5.08254766464233,5.68394565582275,6.07307958602905,6.25277066230774,6.23490393161774,6.03839921951294,5.68717979639769,5.20851522684097,4.63161599636078,3.98663938045502,3.30411899089813,2.61446833610535,1.94772577285767,1.33308911323547,0.798394113779068,0.369316585361958,0.0684455633163452,-0.0857315063476562,-0.0799469947814941,0.0930027961730957,0.433581590652466,0.935129404067993,1.58389616012573,2.35938262939453,3.23481130599976,4.17800331115723,5.15212416648865,6.11675977706909,7.02884721755981,7.8437340259552,8.51657569408417,9.00368803739548,9.26447516679764,9.26323795318604,8.97148275375366,8.37005710601807,7.45116519927979,6.21997725963593,4.69558399915695,2.9111053943634,0.912915229797363,-1.24107837677002,-3.48394155502319,-5.74287271499634,-7.9426474571228,-10.0091540813446,-11.8725368976593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.596305459737778,2.87819570302963,4.9612123966217,6.77151727676392,8.24648475646973,9.33849453926086,10.017612695694,10.2736914753914,10.1168907284737,9.57716679573059,8.70254802703857,7.55620574951172,6.21282577514648,4.75458335876465,3.26639938354492,1.8318920135498,0.529193878173828,-0.572656631469727,-1.41653442382812,-1.95945739746094,-2.17402648925781,-2.04897689819336,-1.58908271789551,-0.814384460449219,0.241287231445312,1.53230667114258,3.00333023071289,4.59217262268066,6.23213386535645,7.85501337051392,9.39346814155579,10.7835986292921,11.9672620296478,12.8940920829773,13.5235095024109,13.8263235092163,13.7861278057098,13.400297164917,12.6804410219193,11.652329236269,10.3549218177795,8.83898651599884,7.16437256336212,5.39720892906189,3.60631418228149,1.85942006111145,0.219802081584931,-1.2572822868824,-2.52676528692245,-3.55554091930389,-4.32301044464111,-4.82088470458984,-5.05223560333252,-5.02989387512207,-4.77475547790527,-4.31410360336304,-3.68014526367188,-2.90903472900391,-2.0400390625,-1.11529636383057,-0.17931079864502,0.721308708190918,1.53890419006348,2.22602462768555,2.73749232292175,3.03264474868774,3.07824422419071,2.85112303495407,2.34046936035156,1.54949047416449,0.496084570884705,-0.787789940834045,-2.25774684548378,-3.85960549116135,-5.53278803825378,-7.21372222900391,-8.83969449996948,0,0,-12.8268018960953,-13.7056722044945,-14.3016811087728,-14.5910568237305,-14.5567337274551,-14.1881020069122,0,0,-11.0812721252441,-9.42585134506226,-7.51211166381836,-5.39046859741211,-3.12419033050537,-0.788172721862793,1.53400504589081,3.75396728515625,5.78396081924438,7.54217365384102,8.95826876163483,9.97830986976624,10.568320274353,10.7166228294373,10.4340677261353,0,0,0,0,0,0,0,0,0,0,0,0,-4.90796852111816,-4.80272674560547,-4.350830078125,-3.56573486328125,-2.47482299804688,-1.11956787109375,0.445423126220703,2.15424728393555,3.93289184570312,5.70259094238281,7.38482666015625,8.90567779541016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3.06264805793762,-4.22032833099365,-5.13613872230053,-5.77637439966202,-6.11720097064972,-6.14666223526001,-5.86658620834351,-5.29349660873413,-4.45888566970825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,-5.95516115427017,-6.19018530845642,-6.24114093184471,-6.09510749578476,-5.74293375015259,-5.18093812465668,-4.41274964809418,-3.45091557502747,-2.31790316104889,-1.04623720049858,0.322450280189514,1.73939671367407,3.15157310664654,4.50509791076183,5.74880249798298,6.83745986223221,7.73436450958252,8.4128805398941,8.85691452026367,9.06033968925476,9.02561569213867,8.76187419891357,8.28299713134766,7.60586452484131,6.74928140640259,5.73355484008789,4.5807933807373,3.31578731536865,1.96708679199219,0.568010568618774,-0.842811703681946,-2.2216482758522,-3.5208330526948,-4.69078624248505,-5.68291521072388,-6.45290994644165,-6.96419095993042,-7.19091081619263,-7.12017726898193,-6.75318908691406,-6.10499286651611,-5.20297241210938,-4.08419036865234,-2.79193019866943,-1.37191200256348,0.13129997253418,1.67723941802979,3.23153209686279,4.76654386520386,6.26091575622559,7.69800758361816,9.06366895884275,10.3438093662262,11.5222396850586,12.5792798995972,13.4914321899414,14.2321863174438,14.773983001709,15.0909655094147,15.162148475647,14.9744877815247,14.5252892971039,13.8236308097839,12.8904542922974,11.7573974132538,10.4643425941467,9.05620431900024,7.57934379577637,6.07804906368256,4.59164106845856,3.15258622169495,1.78570795059204,0.508566856384277,-0.667198657989502,-1.73390197753906,-2.68555641174316,-3.51591825485229,-4.21704316139221,-4.77874350547791,-5.18890690803528,-5.43477690219879,-5.50475096702576,-5.39064231514931,-5.08974978327751,-4.60658848285675,-3.95393085479736,-3.15285158157349,-2.23202306032181,-1.22616925835609,-0.17387843132019,0.884741902351379,1.91044163703918,2.86691835522652,3.72233219444752,4.45029026269913,5.03021758794785,5.44720143079758,5.6916218996048,5.75844925642014,5.64678645133972,5.35946229100227,4.90304374694824,4.28788733482361,3.52862572669983,2.64456605911255,1.66006994247437,0.604607105255127,-0.487560272216797,-1.57821226119995,-2.62665987014771,-3.5915207862854,-4.43311977386475,-5.11592388153076,-5.61086368560791,-5.89760208129883,-5.96594715118408,-5.81673049926758,-5.46183490753174,-4.92326354980469,-4.23154449462891,-3.42352962493896,-2.53976249694824,-1.62185573577881,-0.709904670715332,0.159605026245117,0.955398082733154,1.65245771408081,2.23240518569946,2.68338108062744,2.99962615966797,3.18077111244202,3.23104518651962,3.15863481163979,2.97513747215271,2.69510090351105,2.33586704730988,1.91729652881622,1.46162641048431,0.993113547563553,0.537543594837189,0.121473491191864,-0.2287437915802,-0.488089323043823,-0.634293079376221,-0.649097681045532,-0.519590377807617,-0.239354610443115,0.190686702728271,0.76172924041748,1.45681047439575,2.25110483169556,3.11241388320923,4.00226545333862,4.87721586227417,5.69048285484314,6.39409375190735,6.9409431219101,7.28737239539623,7.39534372091293,7.23487555980682,6.78600764274597,6.04036498069763,5.00225430727005,3.68898415565491,2.13053107261658,0.368480205535889,-1.54569435119629,-3.55285549163818,-5.5887987613678,-7.5870304107666,-9.48154878616333,-11.2093378305435,-12.7128160595894,0,0,0,-15.6178598403931,-15.4396250247955,-14.8887624740601,-13.9809408187866,-12.7440793514252,-11.2176253795624,0,0,0,-3.35215646028519,-1.28987292945385,0.664065957069397,2.44088762998581,3.97991669178009,5.23168432712555,6.16069114208221,6.74704110622406,6.98755323886871,6.89552834630013,6.49970942735672,5.84241020679474,4.97676682472229,3.9636492729187,2.86846780776978,1.75754594802856,0.695318222045898,-0.258508682250977,-1.05122756958008,-1.63878154754639,-1.98696708679199,-2.07232284545898,-1.88242816925049,-1.41603755950928,-0.683074951171875,0.295737266540527,1.4893856048584,2.85701608657837,4.34919857978821,5.90881252288818,7.47306558489799,8.97533786296844,10.3478667736053,11.5247359275818,12.4450621604919,13.0565118789673,13.3185279369354,13.2053124904633,12.708042383194,11.8362416028976,10.6179949641228,9.09881688654423,7.33961695432663,5.41295170783997,3.39900660514832,1.38071393966675,-0.561228156089783,-2.35272900760174,-3.9306732416153,-5.24550461769104,-6.26322478055954,-6.96578428149223,-7.35063219070435,-7.42921423912048,-7.2247748374939,-6.76993441581726,-6.10424423217773,-5.27197551727295,-4.32037305831909,-3.29820919036865,-2.25499868392944,-1.24016427993774,-0.302658081054688,0.51002025604248,1.15274214744568,1.58431696891785,1.7691436111927,1.67942202091217,1.29727172851562,0.616513013839722,-0.355810642242432,-1.59881567955017,-3.07806825637817,-4.74679565429688,-6.54793864488602,-8.41702127456665,-10.2850925922394,-12.0824775695801,-13.7415375709534,-15.1995811462402,-16.4007902145386,-17.2978391647339,-17.8528218269348,-18.0377688407898,-17.8350064754486,-17.2373015880585,-16.2483882009983,-14.8833182752132,-13.1689789295197,-11.1445429325104,-8.86141419410706,-6.38309955596924,-3.78348827362061,-1.1450080871582,1.44452583789825,3.89551079273224,6.12130844593048,8.04259288311005,9.59173545241356,10.7168140411377,11.3843387365341,11.5812993049622,11.3155040740967,0,0,0,0,0,0,0,0,0,0,-5.31312084197998,-6.09145450592041,-6.48388671875,-6.4703540802002,-6.04745864868164,-5.22935676574707,-4.04769515991211,-2.55110931396484,-0.803497314453125,1.11859512329102,3.12989044189453,5.14012908935547,7.05956649780273,8.80360794067383,10.2974319458008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2.70734620094299,-4.23522090911865,-5.55997788906097,-6.64181137084961,-7.44771385192871,-7.95341396331787,-8.14519095420837,-8.02172422409058,-7.59528970718384,-6.89237642288208,-5.95323276519775,-4.83055686950684,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,-6.03132879734039,-5.98678600788116,-5.67144095897675,-5.08066928386688,-4.22136402130127,-3.11269235610962,-1.78613671660423,-0.284738183021545,1.33858495950699,3.02350328303874,4.70539689064026,6.31885689496994,7.80125430226326,9.09601641446352,10.155365049839,10.9422717690468,11.4315081834793,11.6098477840424,11.4755005836487,11.0370178222656,10.3119194507599,9.32523250579834,8.10825538635254,6.69756507873535,5.13430428504944,3.46377348899841,1.73501324653625,0.000288486480712891,-1.68569076061249,-3.26706858002581,-4.68866050243378,-5.89818358421326,-6.84891247749329,-7.50234842300415,-7.83073616027832,-7.81900978088379,-7.46591758728027,-6.78422546386719,-5.79972839355469,-4.54930591583252,-3.07816600799561,-1.43647766113281,0.324040412902832,2.15332794189453,4.00552845001221,5.84076881408691,7.62572908401489,9.333411693573,10.9419652223587,12.4330205917358,13.7898232936859,14.9955830574036,16.0323696136475,16.8808169364929,17.5206518173218,17.9320831298828,18.097797870636,18.0052757263184,17.6490607261658,17.0325412750244,16.1690273284912,15.0818333625793,13.8034062385559,12.3734159469604,10.8362441062927,9.23806667327881,7.62388920783997,6.03494188189507,4.50677645206451,3.06813406944275,1.740718126297,0.539745330810547,-0.524897575378418,-1.44710254669189,-2.22306108474731,-2.84996628761292,-3.32522559165955,-3.64622950553894,-3.81075167655945,-3.81774020195007,-3.66850310564041,-3.36782759428024,-2.92495599389076,-2.35417145490646,-1.67470145225525,-0.910173029871657,-0.0874943733215332,0.764752268791199,1.61796787381172,2.44521396420896,3.22265958786011,3.93052458763123,4.55354809761047,5.08092594146729,5.5057487487793,5.82421660423279,6.03453707695007,6.13605666160583,6.12848424911499,6.0116274356842,5.78529724478722,5.44987741112709,5.00707066059113,4.46089601516724,3.81867909431458,3.09193325042725,2.29691314697266,1.45462560653687,0.590540885925293,-0.266450881958008,-1.08542919158936,-1.83504772186279,-2.48563098907471,-3.01088333129883,-3.38967895507812,-3.60739707946777,-3.65679836273193,-3.53839111328125,-3.26031494140625,-2.83771800994873,-2.29177093505859,-1.64839887619019,-0.936888694763184,-0.188436985015869,0.565292835235596,1.29348802566528,1.96732449531555,2.56110560894012,3.05314655601978,3.42655444145203,3.66991031169891,3.77786159515381,3.75138819217682,3.59810853004456,3.3321161866188,2.97369021177292,2.54858595132828,2.08704614639282,1.62243282794952,1.18961754441261,0.823186874389648,0.555373907089233,0.414213180541992,0.421628952026367,0.591853141784668,0.930212020874023,1.43236398696899,2.0839672088623,2.86108136177063,3.7309033870697,4.65327429771423,5.58244836330414,6.46921706199646,7.2635118663311,7.91678142547607,8.38472557067871,8.62940812110901,8.62146019935608,8.34161877632141,7.78177857398987,6.9455828666687,5.84826365672052,4.5160436630249,2.98497939109802,1.29939031600952,-0.489990711212158,-2.32807540893555,-4.15754103660583,-5.92097687721252,-7.56278657913208,-9.03120100498199,-10.2798391580582,-11.2693412303925,-11.9686398748308,-12.3560215830803,-12.4201602935791,-12.1606507897377,-11.588299870491,-10.7252063751221,-9.60401232540607,0,-6.76489186286926,-5.15396893024445,-3.49454867839813,-1.84752249717712,-0.271827459335327,1.17868661880493,2.45780968666077,3.52911794185638,4.3676962852478,4.96081238985062,5.3081935942173,5.42121165990829,5.3215856552124,5.03961282968521,4.61191534996033,4.07920253276825,3.48419547080994,2.86941170692444,2.27581191062927,1.74144816398621,1.30058670043945,0.98317289352417,0.814520835876465,0.814811706542969,0.998847961425781,1.37552309036255,1.94698619842529,2.70790433883667,3.64459490776062,4.73403990268707,5.94370394945145,7.23120379447937,8.54532325267792,9.82728981971741,11.0132184028625,12.0373001098633,12.8355088233948,13.3498902320862,13.5327191352844,13.3504686355591,12.7868831157684,11.8451895713806,10.5488134622574,8.94064080715179,7.08108630776405,5.04429566860199,2.9139004945755,0.777800798416138,-1.27722418308258,-3.17034469544888,-4.83153307437897,-6.20458602905273,-7.24961233139038,-7.94379734992981,-8.2813401222229,-8.27219116687775,-7.94007560610771,-7.32009133696556,-6.45617985725403,-5.39874768257141,-4.20250678062439,-2.92466259002686,-1.62360715866089,-0.35761547088623,0.815942287445068,1.84195852279663,2.66870558261871,3.24953150749207,3.54449164867401,3.52251446247101,3.16349947452545,2.46000833809376,1.41891777515411,0.0621705055236816,-1.57326650619507,-3.43628418445587,-5.46346288919449,-7.5817457139492,-9.71143972873688,-11.7702741622925,-13.6768097877502,-15.3541898727417,-16.7332286834717,-17.7552366256714,-18.3741464614868,-18.5579857826233,-18.2898654937744,-17.5682644844055,0,-14.8356590270996,-12.8968380242586,-10.6469573974609,-8.15358376502991,-5.49397420883179,-2.75207090377808,-0.0159502029418945,2.62553405761719,5.08598661422729,7.28538370132446,9.15323090553284,10.6315016746521,11.6773838996887,12.2647869586945,12.3855917453766,12.0496829748154,11.2843230962753,10.1327769756317,8.65252113342285,0,0,0,0,0,0,-4.35665607452393,-5.6022891998291,-6.48248863220215,-6.95392417907715,-6.98970031738281,-6.58107757568359,-5.73859214782715,-4.4921817779541,-2.89064025878906,-0.999752044677734,1.1004638671875,3.3198127746582,5.5618896484375,7.72968292236328,9.73041915893555,11.4803199768066,12.9089851379395,13.9622421264648,14.6044979095459,14.8192386627197,14.6084842681885,0,0,0,0,0,0,0,0,0.13472843170166,-1.82796859741211,-3.64884948730469,-5.27833127975464,-6.67208909988403,-7.79208374023438,-8.60816049575806,-9.09961128234863,-9.25683498382568,-9.08268880844116,-8.59336185455322,-7.81846284866333,-6.80041551589966,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,-4.03191894292831,-3.95286178588867,-3.53533861041069,-2.78568259812891,-1.72584995627403,-0.392717003822327,1.16344146616757,2.88129425048828,4.69144833087921,6.51992166042328,8.29186451435089,9.93524849414825,11.3842667341232,12.5822395086288,13.4838293790817,14.0564988255501,14.2811748981476,14.152230411768,13.6768570691347,12.874031484127,11.7731986641884,10.4128540158272,8.83911919593811,7.10431045293808,5.26558896899223,3.38353818655014,1.52065771818161,-0.260274291038513,-1.89807391166687,-3.33524012565613,-4.52010202407837,-5.40907096862793,-5.96864080429077,-6.17711544036865,-6.02571201324463,-5.51895427703857,-4.67433738708496,-3.52107429504395,-2.09817123413086,-0.451931953430176,1.36690998077393,3.30606174468994,5.31432247161865,7.34372997283936,9.35115146636963,11.2989315986633,13.1550171375275,14.8923208042979,16.4877753257751,17.9211430549622,19.1739449501038,20.2287111282349,21.0687398910522,21.6783428192139,22.0436716079712,22.1539096832275,22.0027055740356,21.5895748138428,20.9210081100464,20.0111265182495,18.8816957473755,17.561559677124,16.0853199958801,14.491641998291,12.8212580680847,11.1148698329926,9.41124629974365,7.74574428796768,6.14930462837219,4.64800715446472,3.26312971115112,2.01162958145142,0.906926155090332,-0.0403404235839844,-0.821614742279053,-1.43002080917358,-1.86028552055359,-2.10903072357178,-2.17529201507568,-2.06129515171051,-1.77312648296356,-1.32130944728851,-0.72109180688858,0.00779968500137329,0.841711208224297,1.75403529405594,2.71661853790283,3.70115602016449,4.68063926696777,5.63065075874329,6.53022503852844,7.36232805252075,8.11387968063354,8.77532386779785,9.33993911743164,9.80282878875732,10.1600437164307,10.407742023468,10.5417928695679,10.5575149059296,10.4501028060913,10.21528840065,9.85037219524384,9.35540199279785,8.73440444469452,7.99645805358887,7.15633726119995,6.23495149612427,5.25897979736328,4.26010417938232,3.27382516860962,2.33751583099365,1.48859024047852,0.762203216552734,0.189165115356445,-0.206025123596191,-0.406745910644531,-0.405414581298828,-0.204093933105469,0.185482025146484,0.742424964904785,1.4377179145813,2.23572039604187,3.09601676464081,3.97553408145905,4.83071374893188,5.61986994743347,6.30531477928162,6.85533666610718,7.24585890769958,7.46183085441589,7.49793314933777,7.35906267166138,7.06003701686859,6.62493824958801,6.08581948280334,5.48106622695923,4.85325658321381,4.2468558549881,3.70576357841492,3.27069008350372,2.97694009542465,2.85220937430859,2.91494785249233,3.17316368222237,3.62384501099586,4.25288997590542,5.03583709895611,5.93893349170685,6.92097795009613,7.93534874916077,8.93227934837341,9.86152362823486,10.6746258735657,11.3274564743042,11.7819876670837,12.0081305503845,11.9848785400391,11.7009952068329,11.1553950309753,10.3568506240845,9.32352370023727,8.0820620059967,6.66646611690521,5.11683011054993,3.47791385650635,1.7976975440979,0.125804424285889,-1.48792457580566,-2.99511528015137,-4.35029888153076,-5.51256918907166,-6.44705104827881,-7.12621569633484,-7.53130793571472,-7.65316009521484,-7.49287033081055,-7.062087059021,-6.38251137733459,0,-4.40915703773499,-3.19930028915405,-1.9044303894043,-0.574430465698242,0.742022037506104,2.00009298324585,3.16086101531982,4.19293928146362,5.07368183135986,5.78947710990906,6.33576488494873,6.71615386009216,6.94129502773285,7.0275102853775,6.99514615535736,6.86714649200439,6.66789388656616,6.42201280593872,6.15398240089417,5.88769698143005,5.64636945724487,5.45253992080688,5.3281192779541,5.2939395904541,5.36936545372009,5.57133221626282,5.9129421710968,6.40196585655212,7.03915083408356,7.81640470027924,8.71575227379799,9.70828503370285,10.7545207738876,11.805196762085,12.8033399581909,13.6872749328613,14.3942770957947,14.8649020195007,15.0473828315735,14.9018692970276,14.403902053833,13.5471329689026,12.3445830345154,10.828560590744,9.04936277866364,7.07219855487347,4.97354799509048,2.83654248714447,0.745985507965088,-1.21621644496918,-2.9758759662509,-4.4697128534317,-5.64833378791809,-6.47756338119507,-6.93924117088318,-7.03081846237183,-6.76432353258133,-6.16479277610779,-5.26846122741699,-4.12093544006348,-2.77530717849731,-1.29043579101562,0.270538330078125,1.84180784225464,3.35616874694824,4.74697136878967,5.94978904724121,6.90477427840233,7.55877411365509,7.86809396743774,7.80108022689819,7.34023451805115,6.484370470047,5.24971187114716,3.67028224468231,1.79729628562927,-0.302514553070068,-2.54956698417664,-4.85464334487915,-7.12345719337463,-9.26078045368195,-11.1751956939697,-12.7832517623901,-14.0134954452515,-14.809693813324,-15.1331944465637,-14.9644870758057,-14.3036448955536,0,0,0,0,-4.89569616317749,-2.25305509567261,0.445996761322021,3.11010122299194,5.65078115463257,7.98545384407043,10.0406703948975,11.7543810456991,13.077677488327,13.9764888286591,14.4320147037506,14.4411993026733,14.0163600444794,13.1844263076782,11.9858415126801,10.4733064174652,8.7098748087883,0,0,0,0,0,-2.80809211730957,-4.13118934631348,-5.09313011169434,-5.64477920532227,-5.75259780883789,-5.4008674621582,-4.59320831298828,-3.35316848754883,-1.72401428222656,0.232749938964844,2.43984222412109,4.80796432495117,7.23953247070312,9.63416290283203,11.8933715820312,13.9255714416504,15.6505432128906,17.0028190612793,17.9346008300781,18.4169540405273,18.4400482177734,18.0123271942139,0,0,0,0,0,0,0,0,1.37083053588867,-0.752187728881836,-2.69614505767822,-4.40747356414795,-5.83906745910645,-6.95180320739746,-7.71601438522339,-8.11302900314331,-8.13655757904053,-7.79371309280396,-7.10539865493774,-6.10629463195801,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,-2.05817055702209,-1.55078530311584,-0.691050291061401,0.483863592147827,1.92252564430237,3.56190472841263,5.33055555820465,7.15215611457825,8.94920587539673,10.6466002464294,12.1749322414398,13.4733340740204,14.4917171001434,15.1923565864563,15.5507836341858,15.5560824871063,15.2105813026428,14.5291516780853,13.5380821228027,12.273794054985,10.7813577651978,9.11290168762207,7.32599258422852,5.4818811416626,3.64370536804199,1.87461566925049,0.235803604125977,-1.21552801132202,-2.42811346054077,0,-3.97290134429932,-4.24806022644043,-4.17255973815918,-3.74682712554932,-2.98294353485107,-1.90366744995117,-0.541044235229492,1.06548404693604,2.87119197845459,4.82827472686768,6.8879508972168,9.00227069854736,11.1256527900696,13.2157864570618,15.2342399358749,17.1465784907341,18.9222147464752,20.53404712677,21.9580764770508,23.1731367111206,24.1608180999756,24.9055767059326,25.3951387405396,25.6210126876831,25.5791597366333,25.2706098556519,24.7019023895264,23.8852958679199,22.838659286499,21.5850524902344,20.1519203186035,18.5701069831848,16.8727521896362,15.0941023826599,13.2684400081635,11.4292736053467,9.60871808230877,7.83716809749603,6.14317655563354,4.55348134040833,3.09318923950195,1.78578424453735,0.653069019317627,-0.285134792327881,-1.01151657104492,-1.51204204559326,-1.77679514884949,-1.80096530914307,-1.58563113212585,-1.13838839530945,-0.473670125007629,0.387492895126343,1.41801053285599,2.58570545911789,3.85479331016541,5.18738698959351,6.54518175125122,7.89111399650574,9.19069337844849,10.4130835533142,11.5317940711975,12.524956703186,13.375283241272,14.0696458816528,14.59858751297,14.9557209014893,15.1373391151428,15.1419577598572,14.9703578948975,14.6257462501526,14.1141886711121,13.4451739788055,12.6322975158691,11.6938492059708,10.6531075537205,9.53857666254044,8.38351356983185,7.22519731521606,6.10381674766541,5.06062793731689,4.13621377944946,3.36820554733276,2.78917074203491,2.42453050613403,2.29082298278809,2.39434337615967,2.7303638458252,3.28296971321106,4.02554965019226,4.92192208766937,5.92806023359299,6.99431538581848,8.06801986694336,9.09619426727295,10.02849817276,10.8198761940002,11.4330196380615,11.8403172492981,12.0254468917847,11.9840638637543,11.7241187095642,11.2652561664581,10.6377458572388,9.88068652153015,9.03991079330444,8.1653528213501,7.30838465690613,6.51908016204834,5.84343314170837,5.32112789154053,4.98338937759399,4.85156273841858,4.93610453605652,5.23628854751587,5.74035310745239,6.42640614509583,7.26358008384705,8.21385550498962,9.23395013809204,10.2773423194885,11.2965927124023,12.2452096939087,13.0797657966614,13.761251449585,14.2566151618958,14.5396814346313,14.5917949676514,14.4023396968842,13.9687392711639,13.2964961528778,12.3988959789276,11.2965767383575,10.0170510411263,8.59396839141846,7.06633758544922,5.47744488716125,3.87375593185425,2.30339288711548,0.814635276794434,-0.545949459075928,-1.73534774780273,-2.71589326858521,-3.45724296569824,-3.93770837783813,-4.14556837081909,-4.0797758102417,-3.74998474121094,0,0,0,-0.319799900054932,0.87157678604126,2.10621500015259,3.33933115005493,4.52991652488708,5.64243721961975,6.64820051193237,7.52588987350464,8.26192617416382,8.84997200965881,9.29029810428619,9.5888729095459,9.75625371932983,9.80659770965576,9.75689172744751,9.62607645988464,9.43483304977417,9.20519208908081,8.96039247512817,8.72472882270813,8.52333927154541,8.38149333000183,8.32390379905701,8.37347054481506,8.5496768951416,8.86688303947449,9.33250522613525,9.94514161348343,10.6934114694595,11.5548632144928,12.4961862564087,13.4738292694092,14.4357810020447,15.3242797851562,16.0790324211121,16.641152381897,16.9572043418884,16.983124256134,16.6875925064087,16.0548458099365,15.0862078666687,13.8006279468536,12.2340862751007,10.4375445246696,8.47432348877192,6.41654920578003,4.34115624427795,2.32608330249786,0.445948839187622,-1.23093646764755,-2.6457771062851,-3.75110256671906,-4.5124437212944,-4.90896435081959,-4.93365931510925,-4.59299123287201,-3.90625357627869,-2.90475034713745,-1.63069820404053,-0.136031150817871,1.51887083053589,3.26681971549988,5.03534436225891,6.74912464618683,8.3322325386107,9.71116816997528,10.8176612854004,11.592188835144,11.9872527122498,11.9700975418091,11.5255780220032,10.6577022075653,9.39062237739563,7.76835960149765,5.85341835021973,3.72426295280457,1.47203087806702,-0.804242134094238,-3.00219583511353,-5.02150103449821,-6.76875376701355,-8.16229581832886,-9.13624715805054,-9.64356780052185,-9.65814864635468,-9.1755668669939,0,0,0,0,-0.560319900512695,1.93226718902588,4.48001623153687,6.99157238006592,9.37980127334595,11.564751625061,13.4765315055847,15.0571684837341,16.2617295980453,17.0595235824585,17.4339661002159,17.3827182650566,16.9171050190926,16.0613411068916,14.8516439199448,13.33531498909,11.5693192481995,0,0,0,0,0,-0.233423233032227,-1.67232131958008,-2.76601600646973,-3.46008682250977,-3.71429061889648,-3.50518989562988,-2.82796478271484,-1.69756317138672,-0.148910522460938,1.76405715942383,3.97030258178711,6.38496780395508,8.91267776489258,11.4526519775391,13.9032325744629,16.1668586730957,18.1546783447266,19.7903213500977,21.013500213623,21.7818794250488,22.0722160339355,21.880485534668,21.2209434509277,20.1244049072266,18.6360778808594,16.8127956390381,14.7203044891357,12.4307136535645,10.0196971893311,7.56424140930176,5.14053726196289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2.12598037719727,-1.53067445755005,-0.60678768157959,0.600565910339355,2.03501486778259,3.63180446624756,5.32091047242284,7.03026747703552,8.68887877464294,10.2296772003174,11.5920577049255,12.7239110469818,13.5831952095032,14.1389601230621,14.3719310760498,14.274605512619,13.8510384559631,13.116224527359,12.0953435897827,10.8227298259735,9.34070324897766,7.69829750061035,5.94979047775269,4.15314718335867,2.36834979057312,0.655598640441895,-0.926572799682617,0,0,-4.36788558959961,-4.93943786621094,-5.17476558685303,-5.05998992919922,-4.5920877456665,-3.77870464324951,-2.63762855529785,-1.1958179473877,0.511914253234863,2.44439792633057,4.55575561523438,6.79701995849609,9.11780595779419,11.4676189422607,13.7971740961075,16.0593749284744,18.210177898407,20.2091779708862,22.0201187133789,23.6112947463989,24.9558811187744,26.0321893692017,26.8239088058472,27.320255279541,27.5160903930664,27.4119281768799,27.0138177871704,26.3330669403076,25.3858518600464,24.1927461624146,22.7780694961548,21.1692609786987,19.396279335022,17.4910035133362,15.4867172241211,13.4177992343903,11.3194360733032,9.22745299339294,7.17814922332764,5.20806193351746,3.35375237464905,1.65127801895142,0.135532379150391,-1.16067504882812,-2.20773506164551,-2.98053646087646,-3.45975112915039,-3.63318133354187,-3.49682724475861,-3.05571126937866,-2.32433593273163,-1.32651340961456,-0.0948340892791748,1.33037286996841,2.90269857645035,4.57142496109009,6.28362655639648,7.98637747764587,9.62874674797058,11.163667678833,12.5494747161865,13.7510447502136,14.7405662536621,15.4978232383728,16.0102143287659,16.2724480628967,16.2861642837524,16.0592312812805,15.6052575111389,14.94300365448,14.0958981513977,13.0915558338165,11.9614179134369,10.7403314113617,9.46594244241714,8.1782488077879,6.91860222816467,5.72873532772064,4.6496148109436,3.71978163719177,2.97398138046265,2.44138836860657,2.1440896987915,2.09565377235413,2.30004453659058,2.75086712837219,3.43117296695709,4.31374895572662,5.36204580962658,6.53157740831375,7.77185142040253,9.02872157096863,10.2469899654388,11.3730573654175,12.357714176178,13.1585483551025,13.7421307563782,14.0856027603149,14.1779108047485,14.0200924873352,13.6252388954163,13.0175595283508,12.2310571670532,11.3075571060181,10.2945528030396,9.24260854721069,8.2028660774231,7.22456789016724,6.3526132106781,5.62572455406189,5.07468640804291,4.72133028507233,4.57779836654663,4.64648354053497,4.92024374008179,5.38321805000305,6.01176977157593,6.77591729164124,7.64073157310486,8.56777477264404,9.51679706573486,10.4469861984253,11.3185529708862,12.0936374664307,12.7375998497009,13.219841003418,13.5145659446716,13.6016232967377,13.466986656189,13.1034317016602,12.5109589099884,11.6971136331558,10.6772763431072,9.47456163167953,8.11962866783142,6.64998459815979,5.10911107063293,3.54502487182617,2.00863885879517,0.551649570465088,-0.775688171386719,-1.92686128616333,-2.86157464981079,0,0,0,0,0,0,0,-0.956732749938965,0.210848569869995,1.4537718296051,2.72271800041199,3.9705935716629,5.15466153621674,6.23838293552399,7.19250023365021,7.99596625566483,8.6359778046608,9.10781461000443,9.41429507732391,9.56487774848938,9.57472956180573,9.46383571624756,9.25581860542297,8.97729539871216,8.65692639350891,8.32467365264893,8.01107335090637,7.74646759033203,7.55991721153259,7.4783034324646,7.52499771118164,7.71848392486572,8.07097816467285,8.58709388971329,9.26253414154053,10.083487033844,11.0260028839111,12.0565452575684,13.132707118988,14.2049083709717,15.2187347412109,16.1176252365112,16.8460955619812,17.3530604839325,17.5949864387512,17.53870844841,17.1638457775116,16.4642163515091,15.4486068487167,14.1406669020653,12.5777046903968,10.8090147078037,8.89347892999649,6.89666128158569,4.88803339004517,2.93746960163116,1.11276936531067,-0.52333065867424,-1.9151046872139,-3.01597088575363,-3.78987917304039,-4.21243113279343,-4.27156138420105,-3.96797335147858,-3.31530857086182,-2.33995652198792,-1.0805516242981,0.412832736968994,2.08000731468201,3.85213100910187,5.65419432520866,7.40748620033264,9.03292536735535,10.4541893005371,11.6016817092896,12.4161748886108,12.8519759178162,12.8802487850189,12.4909551143646,11.6943876743317,10.5213105678558,9.02203890681267,7.26434707641602,5.33052957057953,3.31295788288116,1.30965888500214,0,-2.26511538028717,-3.6585265994072,-4.69083128869534,-5.30894255638123,-5.4795298576355,-5.19014310836792,-4.44954395294189,-3.28648471832275,0,0,2.19650173187256,4.44658374786377,6.76895523071289,9.07761430740356,11.2898163795471,13.3289403915405,15.12721824646,16.6275351047516,17.7844395637512,18.5653690099716,18.9505172967911,18.9331057071686,18.5189586877823,17.7259690761566,0,0,0,0,0,0,0,0,1.45167541503906,-0.121566772460938,-1.37781143188477,-2.2581729888916,-2.71646690368652,-2.72200202941895,-2.26169586181641,-1.34150314331055,0.0129280090332031,1.75676727294922,3.82735061645508,6.14698028564453,8.62564086914062,11.1657524108887,13.6662979125977,16.0276069641113,18.1560707092285,19.9680633544922,21.3939514160156,22.380729675293,22.8936939239502,22.9175491333008,22.4562301635742,21.5318984985352,20.1833992004395,18.4638385772705,16.4379901885986,14.179651260376,11.7684421539307,9.28707695007324,6.81858062744141,4.44382858276367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4.6191782951355,-4.34171772003174,-3.75169706344604,-2.87914562225342,-1.76464891433716,-0.457337856292725,0.987331628799438,2.50991895794868,4.04931437969208,5.54495429992676,6.93887364864349,8.17751491069794,9.21329420804977,10.0058621764183,10.5231595039368,10.7421708703041,10.6494992375374,10.241649389267,9.52521371841431,8.51674723625183,7.24249184131622,5.73787438869476,4.04670917987823,2.22016459703445,0.315470695495605,0,0,0,0,0,0,0,-10.2999238967896,-10.2514276504517,-9.79174327850342,0,-7.64817333221436,-6.00000858306885,-4.01075649261475,-1.72557926177979,0.801973342895508,3.51191282272339,6.3397171497345,0,12.0809602737427,14.8615584373474,17.4981117248535,19.9335107803345,22.1170520782471,24.0055370330811,25.5640268325806,26.7663507461548,27.5952367782593,28.0422563552856,28.1074800491333,27.7988920211792,27.1316566467285,26.1272687911987,24.8126697540283,23.219313621521,21.3823041915894,19.3396549224854,17.1316213607788,14.8001255989075,12.388400554657,9.94062447547913,7.50162100791931,5.11652666330338,2.83032834529877,0.687400579452515,-1.26927852630615,-2.99905633926392,-4.46470856666565,-5.63373100757599,-6.47972166538239,-6.98369604349136,-7.13537821173668,-6.93420912325382,-6.3900278583169,-5.52340045571327,-4.36527802050114,-2.95631149411201,-1.34562695026398,0.411038815975189,2.253338098526,4.11870455741882,5.94489371776581,7.67237210273743,9.24662756919861,10.6201756000519,11.754154920578,12.6195113658905,13.1976070404053,13.4804453849792,13.4703648090363,13.179504275322,12.6287078857422,11.84645652771,10.8675154745579,9.73157039284706,8.48178923130035,7.1634932756424,5.82284688949585,4.50548338890076,3.25551676750183,2.11419439315796,1.11889982223511,0.302190780639648,-0.309338569641113,-0.6957688331604,-0.844694137573242,-0.751790046691895,-0.421160697937012,0.134588479995728,0.894513607025146,1.82996153831482,2.9054194688797,4.07984435558319,5.30816850066185,6.54312032461166,7.73723113536835,8.84488427639008,9.82426190376282,10.6393129825592,11.2612602710724,11.6699101924896,11.8543946743011,11.8136560916901,11.5561406612396,11.099338054657,10.4686319828033,9.69596326351166,8.81807816028595,7.874760389328,6.90681384503841,5.95427751541138,5.05471956729889,4.24164152145386,3.54341614246368,2.98227596282959,2.57389712333679,2.32708072662354,2.24397253990173,2.32029819488525,2.54600441455841,2.90584945678711,3.3802855014801,3.94619606435299,4.57760390639305,5.24658036231995,5.92377984523773,6.57934594154358,7.18331003189087,7.70649170875549,8.12111067771912,8.40155744552612,8.52533388137817,8.47385907173157,8.23353362083435,7.79664170742035,7.16218733787537,6.33669322729111,5.33457699418068,4.17837452888489,2.89837884902954,1.53198528289795,0.122453451156616,-1.28272223472595,0,0,0,0,0,0,0,0,0,0,0,0,-3.20066249370575,-2.032281935215,-0.841674596071243,0.322936482727528,1.41746699810028,2.40410482883453,3.25273501873016,3.94219934940338,4.4606066942215,4.80540543794632,4.98291125893593,5.00736663816497,4.89981201291084,4.68684232234955,4.3989394903183,4.0692743062973,3.73213243484497,3.42158102989197,3.1702663898468,3.0082311630249,2.9617555141449,3.05245745182037,3.29633629322052,3.70289921760559,4.27454507350922,5.00605547428131,5.88417553901672,6.88786745071411,7.98835599422455,9.15018737316132,10.3321226239204,11.4887417554855,12.5723599493504,13.535025537014,14.3308328390121,14.9182342290878,15.2621026039124,15.3356326818466,15.1219238042831,14.614883184433,13.8197885751724,12.7532645463943,11.4425491094589,9.92452144622803,8.24420547485352,6.45293498039246,4.60657703876495,2.76310861110687,0.980890274047852,-0.683595240116119,-2.17736548185349,-3.45286953449249,-4.46951651573181,-5.19506466388702,-5.60679620504379,-5.69250810146332,-5.45129686594009,-4.89405143260956,-4.04356330633163,-2.93427038192749,-1.61150288581848,-0.130421459674835,1.44596636295319,3.04895162582397,4.60709059238434,0,0,8.3213803768158,9.04148292541504,9.43115258216858,9.46966290473938,9.1537938117981,8.49838280677795,7.53599286079407,6.31554424762726,4.90014624595642,3.36360192298889,1.78680047392845,0.253282923717052,-1.15499496459961,-2.36213564872742,-3.30215501785278,-3.92228841781616,-4.18548679351807,-4.07182264328003,-3.57925701141357,-2.72303771972656,-1.53456497192383,-0.0592107772827148,1.64626979827881,3.51654148101807,5.48120212554932,7.467689037323,9.40433359146118,11.2228574752808,12.860889673233,14.2636806964874,15.3852806091309,16.1899161338806,16.6522463560104,0,0,0,0,0,0,0,0,0,0,2.69863128662109,0.880346298217773,-0.739126205444336,-2.09136390686035,-3.11561965942383,-3.76189422607422,-3.99375343322754,-3.79053688049316,-3.1490592956543,-2.08452796936035,-0.630542755126953,1.16181564331055,3.22608184814453,5.48263740539551,7.84271240234375,10.2120742797852,12.4953651428223,14.6005153656006,16.4425983428955,17.947998046875,19.0572834014893,19.7274684906006,19.9335994720459,19.6693992614746,18.9468784332275,17.7954139709473,16.2599048614502,14.3985042572021,12.2801837921143,9.98151969909668,7.5838680267334,5.17024230957031,2.82254600524902,0.618846893310547,-1.36932945251465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6.40436470508575,-5.54025381803513,-4.47339650988579,-3.24531257152557,-1.90372647345066,-0.501060128211975,0.907180786132812,2.26409363746643,3.5131299495697,4.59984397888184,5.47370886802673,6.08984971046448,6.41075229644775,6.4078254699707,6.06284189224243,5.36910319328308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-14.3417625427246,-12.1992201805115,-9.61345314979553,-6.6457188129425,-3.36976957321167,0.130693912506104,0,0,0,14.5301632881165,17.7688126564026,20.6961073875427,23.2445631027222,25.3588995933533,26.9972681999207,28.1318211555481,28.7488574981689,28.8484606742859,28.4436554908752,27.5592555999756,26.2304282188416,24.5011348724365,22.4224257469177,20.0507574081421,17.4464325904846,14.6720833778381,11.7912731170654,8.86740684509277,5.96263027191162,3.13691490888596,0.447222471237183,-2.05336028337479,-4.31630995869637,-6.29853403568268,-7.96321493387222,-9.28064405918121,-10.2291098833084,-10.7957018613815,-10.9769880771637,-10.7795475721359,-10.2202224731445,-9.32604169845581,-8.13383430242538,-6.68925470113754,-5.04559400677681,-3.26213456690311,-1.40202778577805,0.469871744513512,2.28944200277328,3.99578249454498,5.53348207473755,6.85474848747253,7.92117464542389,8.70505595207214,9.19025407731533,9.37243002653122,9.25887203216553,8.86769938468933,8.22678899765015,7.37211227416992,6.34602880477905,5.19529294967651,3.96904850006104,2.71680402755737,1.48661947250366,0.323408126831055,-0.732615947723389,-1.64692211151123,-2.39176940917969,-2.94673204421997,-3.29899168014526,-3.44354295730591,-3.38291025161743,-3.12678289413452,-2.69146203994751,-2.0990138053894,-1.37633991241455,-0.554147243499756,0.334307193756104,1.25441765785217,2.1715943813324,3.05249667167664,3.86631143093109,4.58587276935577,5.1887019276619,5.6576817035675,5.98176184296608,6.15610319375992,6.18212950229645,6.06718116998672,5.82401478290558,5.46985554695129,5.02551174163818,4.51414036750793,3.96009802818298,3.38769578933716,2.82012128829956,2.27839469909668,1.78063774108887,1.3415150642395,0.971856594085693,0.678658485412598,0.465150356292725,0.331192016601562,0.273612022399902,0.2868971824646,0.363565444946289,0.494808673858643,0.670805931091309,0.881160259246826,1.11502456665039,1.36111307144165,1.60781311988831,1.84295845031738,2.05390167236328,2.22728681564331,2.34925532341003,2.40555346012115,2.38192945718765,2.26472750306129,2.04156345874071,1.70227414369583,1.23984864354134,0.651361733675003,-0.0610877983272076,-0.88975702226162,-1.8207736313343,-2.83416247367859,-3.90415847301483,-4.99997997283936,-6.08708214759827,0,0,0,0,0,0,0,0,0,0,0,0,0,-6.69204485416412,-5.82460850477219,-4.99199020862579,-4.22801196575165,-3.56051278114319,-3.010089635849,-2.58904826641083,-2.30122542381287,-2.14203977584839,-2.09911692142487,-2.1533830165863,-2.28037248551846,-2.45169004797935,-2.63688480854034,-2.80484890937805,-2.92558097839355,-2.97158491611481,-2.91903960704803,-2.74887681007385,-2.44751214981079,-2.00735694169998,-1.42702727019787,-0.711498737335205,0.128207087516785,1.07537245750427,0,0,0,0,0,7.52908372879028,8.43426990509033,0,9.81087970733643,10.231397151947,10.4476141929626,10.447479724884,10.225414276123,9.78244400024414,9.12627696990967,8.27104759216309,7.23677492141724,6.04881453514099,4.73709225654602,3.3351743221283,0,0.408178806304932,-1.03981256484985,-2.4257100475952,-3.71183216571808,-4.86270594596863,-5.8460807800293,-6.63394498825073,-7.2035436630249,-7.5383734703064,-7.62910771369934,-7.47442364692688,-7.08156538009644,-6.46661007404327,-5.65446978807449,-4.67848253250122,-3.57941913604736,-2.40418863296509,-1.20385885238647,0,1.0592565536499,2.01944351196289,2.80454969406128,3.37862253189087,3.71579265594482,3.80218029022217,3.6367621421814,3.23166370391846,2.61171293258667,1.81333136558533,0.882499694824219,-0.127577982842922,-1.15937483310699,-2.15399289131165,-3.05442214012146,-3.80839061737061,-4.37103748321533,-4.70705795288086,-4.79211044311523,-4.61391162872314,-4.17230319976807,-3.47904396057129,-2.55669212341309,-1.43733310699463,-0.160909652709961,1.22689247131348,2.67651081085205,4.13654899597168,5.55552577972412,6.88383865356445,8.07513952255249,9.08750915527344,9.88491010665894,10.4377853870392,0,0,0,0,0,0,0,0,0,0,0.340555191040039,-1.25876426696777,-2.7347412109375,-4.02423858642578,-5.06879806518555,-5.81754302978516,-6.22987747192383,-6.2778205871582,-5.94783210754395,-5.24210166931152,-4.17905426025391,-2.79309463500977,-1.13327980041504,0.738080978393555,2.74859046936035,4.81848907470703,6.86438941955566,8.80290985107422,10.5542449951172,12.0459289550781,13.215895652771,14.0148296356201,14.4082746505737,14.3778247833252,13.9215259552002,13.053653717041,11.803747177124,10.2150325775146,8.34264945983887,6.25098991394043,4.01128387451172,1.6987190246582,-0.610197067260742,-2.84029960632324,-4.92056274414062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6.04215106368065,-4.59429669380188,-3.05992698669434,-1.50930547714233,-0.016505241394043,1.34343004226685,2.49747133255005,3.37772512435913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-21.2988665103912,-19.017315030098,-16.1298214197159,-12.7049523591995,-8.83053410053253,-4.61054837703705,0,0,0,0,0,0,0,0,0,30.5676417350769,31.2795987129211,31.3007688522339,30.64954662323,29.362859249115,27.494170665741,25.1111607551575,22.2929968833923,19.1274790763855,15.70814037323,12.1313474178314,8.49347472190857,4.8884539604187,1.40538287162781,-1.8735356926918,-4.87471652030945,-7.53475785255432,-9.80149674415588,-11.6349720954895,-13.0080428123474,-13.9066917896271,-14.3301186561584,-14.2905099391937,-13.8125178813934,-12.9324314594269,-11.6970958709717,-10.162442445755,-8.39186352491379,-6.45408017933369,-4.42106848955154,-2.36569726467133,-0.359182357788086,1.53126484155655,3.24479097127914,4.72907483577728,5.94208192825317,6.85349774360657,7.44567346572876,7.71402084827423,7.66689102351665,7.32481163740158,6.71934247016907,5.8913140296936,4.88886117935181,3.7649884223938,2.57516193389893,1.37476348876953,0.216691970825195,-0.850911140441895,-1.7864990234375,-2.55669498443604,-3.13746070861816,-3.51455020904541,-3.68383455276489,-3.65089702606201,-3.43029022216797,-3.04448747634888,-2.5224289894104,-1.89785528182983,-1.20762777328491,-0.489790916442871,0.21820068359375,0.881166458129883,1.4677906036377,1.95190215110779,2.31354403495789,2.53962469100952,2.62438988685608,2.56933987140656,2.38305008411407,2.08035087585449,1.68161821365356,1.21141338348389,0.697206497192383,0.167884111404419,-0.347759246826172,-0.822591304779053,-1.23242902755737,-1.5573034286499,-1.7823691368103,-1.89858245849609,-1.90300893783569,-1.79882764816284,-1.59491777420044,-1.30521774291992,-0.947754383087158,-0.543510437011719,-0.115128040313721,0.31442928314209,0.723044872283936,1.0908055305481,1.40070486068726,1.63953542709351,1.79813480377197,1.87162399291992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6.79039454460144,-7.47751212120056,-8.14318180084229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8.78283505886793,-8.64280433952808,-8.54887567460537,-8.49367465917021,-8.46508736908436,-8.44710856676102,-8.42099088430405,-8.36650496721268,-8.26323115825653,-8.09213054180145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.30804967880249,3.73544931411743,3.08098840713501,2.35766267776489,1.57843637466431,0.756078720092773,-0.0968747138977051,-0.967981815338135,-1.84475409984589,-2.71447294950485,-3.56387591362,-4.3790340423584,-5.14533662796021,-5.84759330749512,-6.47030925750732,-6.99814414978027,-7.41654634475708,-7.71253323554993,-7.87559461593628,-7.89862155914307,-7.77861511707306,-7.5175719410181,-7.12283682823181,-6.60740184783936,0,-5.29322338104248,-4.54548358917236,-3.77702856063843,-3.01990985870361,-2.30619335174561,-1.66606950759888,-1.12646627426147,-0.70934009552002,-0.430521011352539,-0.298853874206543,-0.315650224685669,-0.474617123603821,-0.762237973511219,-1.15861290693283,-1.6384654045105,-2.17256093025208,-2.729323387146,-3.27637147903442,-3.78220224380493,-4.21768856048584,-4.55722045898438,-4.77993202209473,-4.87033557891846,-4.81897926330566,-4.62243270874023,-4.28347492218018,-3.81072521209717,-3.21820545196533,-2.52481651306152,-1.75365543365479,-0.931358337402344,-0.0870580673217773,0.74828052520752,0,0,0,0,0,0,0,0,0,0,0,0,0,-1.38542175292969,-2.54324150085449,-3.67758560180664,-4.73588562011719,-5.66596984863281,-6.41860389709473,-6.95012855529785,-7.22475242614746,-7.21673583984375,-6.91201591491699,-6.30943298339844,-5.4212703704834,-4.27303791046143,-2.90300941467285,-1.36030960083008,0.296646118164062,2.00292205810547,3.68963432312012,5.28693294525146,6.72715473175049,7.94775295257568,8.89366769790649,9.51979637145996,9.79276180267334,9.69221782684326,9.21144962310791,8.35767364501953,7.15140819549561,5.62592220306396,3.82552719116211,1.80415916442871,-0.376840591430664,-2.6507625579834,-4.94779396057129,-7.19766426086426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-25.0938220024109,-22.8288207054138,-19.7978978157043,-16.0723087787628,-11.7493486404419,-6.94894170761108,0,0,0,0,0,0,0,0,0,0,0,35.7861022949219,34.8996257781982,33.210223197937,30.7871990203857,27.7206230163574,24.1176843643188,20.0986776351929,15.7926769256592,11.3331336975098,6.85338449478149,2.48261344432831,-1.65812472254038,-5.45939767360687,-8.8262927532196,-11.680947303772,-13.9641942977905,-15.636803150177,-16.679995059967,-17.095272064209,-16.9037590026855,-16.1448256969452,-14.8743093013763,-13.1621491909027,-11.0897628068924,-8.74697317183018,-6.22887897491455,-3.63231253623962,-1.05264210700989,1.41954207420349,3.70157730579376,5.72141829133034,7.41998046636581,8.7530300617218,9.69238090515137,10.2265276908875,10.3606090545654,10.1156964302063,9.52744817733765,8.64413452148438,7.52429540082812,6.23382234573364,4.84295964241028,3.42299699783325,2.04314756393433,0.767468452453613,-0.347841262817383,-1.25680351257324,-1.92537403106689,-2.33269596099854,-2.47169589996338,-2.34884643554688,-1.98358154296875,-1.40688896179199,-0.659506797790527,0.210341453552246,1.14945697784424,2.10249757766724,3.01459741592407,3.83417558670044,4.51535701751709,5.0200959444046,5.31994849443436,0,5.24611896276474,4.87194538116455,4.29169905185699,3.53248870372772,2.63039648532867,1.62838733196259,0.574425667524338,-0.48112765699625,-1.48788243532181,-2.39784216880798,-3.16774272918701,-3.76113164424896,-4.14999574422836,-4.31608133763075,-4.25162869691849,-3.95963394641876,-3.45357084274292,-2.75660753250122,-1.90027642250061,-0.922919273376465,0.132387638092041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.889594078063965,0.394213676452637,-0.0551571846008301,-0.454113483428955,-0.803325176239014,-1.10807132720947,-1.37748074531555,-1.62354254722595,-1.85971888899803,-2.09987908601761,-2.3566597700119,-2.64040870964527,-2.95807112753391,-3.31236460804939,-3.7013218998909,-4.11812767386436,-4.55135987699032,-4.98558565974236,-5.40225648880005,-5.78100097179413,-6.10070872306824,-6.34130382537842,-6.4848268032074,-6.5170202255249,0,-6.21449208096601,-5.87757438421249,-5.42554152011871,-4.87234699726105,-4.23731112480164,-3.54405951499939,-2.81963109970093,-2.09291839599609,-1.39332580566406,-0.749384760856628,-0.187297344207764,0.270208567380905,0.605099320411682,0.804551601409912,0.861801147460938,0.776187419891357,0.553174018859863,0.204137802124023,-0.254257202148438,-0.800827026367188,-1.41059494018555,-2.05599975585938,-2.70793151855469,-3.33708000183105,-3.91486549377441,-4.41496562957764,-4.81414127349854,-5.09345149993896,-5.23909091949463,0,-5.10404682159424,-4.82685947418213,0,0,0,0,0,0,0,0,0,0,0,0,0,0.191938400268555,-0.292739868164062,-0.896173477172852,-1.58566093444824,-2.32211875915527,-3.06193161010742,-3.75898551940918,-4.36727142333984,-4.84313011169434,-5.14785003662109,-5.24966430664062,-5.12582778930664,-4.76403141021729,-4.1633882522583,-3.33509254455566,-2.30178260803223,-1.09738159179688,0.234667778015137,1.64275550842285,3.06937694549561,4.45354461669922,5.7334897518158,6.84900045394897,7.74416065216064,8.36969065666199,8.68517899513245,8.66057872772217,8.2779016494751,7.53167915344238,6.4298791885376,4.99336624145508,3.25572395324707,1.26196670532227,-0.932744979858398,-3.26472854614258,-5.66419792175293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-21.4028329849243,-17.6213026046753,-13.1060237884521,-7.98449230194092,-2.40771102905273,3.4552903175354,9.4239456653595,0,0,0,0,0,0,0,0,40.7356185913086,39.7948684692383,37.9032068252563,35.1368989944458,31.5992202758789,27.4162817001343,22.7322120666504,17.7038040161133,0,0,0,0,-6.94067966938019,-10.7392115592957,-13.8909177780151,-16.3245873451233,-17.9953470230103,-18.8853631019592,-19.0035195350647,-18.3843550682068,-17.0859415531158,-15.187196969986,-12.7843478322029,-9.98707908391953,-6.9141252040863,-3.68884444236755,-0.434410572052002,2.73045253753662,5.69574284553528,8.36402624845505,10.6535993814468,12.501049041748,13.8631052970886,14.717568397522,15.063449382782,14.92027759552,14.3265905380249,13.3376717567444,12.0226464271545,10.4611842632294,8.73966312408447,6.9473095536232,5.17217183113098,3.49736452102661,1.99752187728882,0.735800266265869,-0.238656997680664,-0.892394065856934,-1.20873546600342,-1.18807411193848,-0.847182273864746,-0.218091011047363,0.653965950012207,1.71300077438354,2.89529466629028,4.13256216049194,5.35550975799561,6.49702036380768,7.49551342427731,8.29776525497437,8.86132717132568,0,0,0,0,0,0,0,0,0,0,0,-0.703963756561279,-1.56575000286102,-2.19289875030518,-2.55463215708733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.173747539520264,-0.0804305076599121,-0.198487281799316,-0.193986892700195,-0.0878827571868896,0.0929088592529297,0.317144751548767,0.55156709253788,0.762608177959919,0.918942511081695,0.993195414543152,0.963773965835571,0.816321611404419,0.54461669921875,0.151137351989746,-0.352970123291016,-0.948417186737061,-1.60872507095337,-2.30184316635132,-2.99156141281128,-3.63997530937195,-4.20913767814636,-4.66362881660461,0,-5.11042872071266,-5.06058759987354,-4.81433534622192,-4.37262296676636,-3.74598985910416,-2.95407253503799,-2.0250848531723,-0.994321674108505,0.0973172187805176,1.20512700080872,2.28275859355927,3.28414630889893,4.1659699678421,4.88917589187622,5.42125153541565,5.73738050460815,5.82173728942871,5.66832447052002,5.28119039535522,4.67428398132324,3.87111663818359,2.90363693237305,1.81098175048828,0.637648582458496,-0.568080902099609,-1.75666046142578,-2.87899971008301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.34748268127441,3.45371246337891,3.36378479003906,3.09332847595215,2.66824531555176,2.12337493896484,1.50088310241699,0.847763061523438,0.213687896728516,-0.351924896240234,-0.802288055419922,-1.09593772888184,-1.19898414611816,-1.08714008331299,-0.747311592102051,-0.178139686584473,0.608963012695312,1.59065103530884,2.73188972473145,3.98759388923645,5.30430471897125,6.62265461683273,7.87956699728966,9.01118820905685,9.95567214488983,10.656122431159,11.0628717541695,11.1363270282745,10.8484110832214,10.1847543716431,9.14520740509033,7.7448091506958,6.01335430145264,3.99484062194824,1.74643898010254,-0.663690567016602,-3.15829658508301,-5.65381622314453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-22.8411722183228,-19.198522567749,-14.7257776260376,-9.54890537261963,-3.82112216949463,2.28261756896973,8.57223796844482,14.8492615222931,20.9142956733704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7.3313380330801,-11.5824060440063,-15.1285839080811,-17.883501291275,-19.7904047966003,-20.8233060836792,-20.9869089126587,-20.3156380653381,-18.8713901042938,-16.7405489683151,-14.0300141274929,-10.8627775907516,-7.37285828590393,-3.70016193389893,0.0150680541992188,3.63721704483032,7.04023265838623,10.1120672821999,12.7583074569702,14.9051179885864,16.501341342926,17.5195569992065,17.9562244415283,17.8309121131897,17.1846122741699,16.0771985054016,14.5842461585999,12.7933821678162,10.8000829219818,8.70345658063889,6.60186743736267,4.58886194229126,2.74929761886597,1.15611886978149,-0.132429599761963,-1.07464742660522,-1.64660787582397,-1.84258604049683,-1.67437744140625,0,0,0,0,0,4.54018008708954,5.85499918460846,0,0,0,0,0,0,0,0,0,0,6.93947458267212,5.93337321281433,4.92163920402527,3.96200132369995,3.1088490486145,2.41057324409485,1.90723967552185,1.62881934642792,1.59381768107414,1.80858480930328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.73444747924805,1.78833103179932,1.98307251930237,2.28813600540161,2.66679513454437,3.07812267541885,3.47970288991928,3.82962870597839,4.08937573432922,4.22575502842665,4.21294009685516,4.03411197662354,3.68242955207825,3.16167449951172,2.48620939254761,1.68039274215698,0.77750825881958,-0.182056427001953,-1.15243482589722,-2.08509635925293,-2.93079519271851,-3.64261960983276,0,-4.50205421447754,-4.58749294281006,-4.41819381713867,-3.98932313919067,-3.30801105499268,-2.39311695098877,-1.27489256858826,0.00650143623352051,1.40254521369934,2.85838866233826,4.31538248062134,5.71341061592102,6.99403166770935,8.10253155231476,8.99095571041107,9.61990189552307,9.9604811668396,9.99579477310181,9.72161340713501,9.14662599563599,8.29238033294678,7.19221496582031,5.89002132415771,4.43813323974609,2.89550018310547,1.32463455200195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.94491577148438,5.897216796875,6.64313316345215,7.16046905517578,7.43928718566895,7.48244094848633,7.3051872253418,6.93435859680176,6.40707206726074,5.76849937438965,5.06978797912598,4.3651294708252,3.70919609069824,3.15415000915527,2.7469425201416,2.5266580581665,2.52239990234375,2.75191497802734,3.21984529495239,3.91788816452026,4.82426953315735,5.90486109256744,7.1143043152988,8.39817976951599,9.69498562812805,10.9390647411346,12.0635442733765,13.0035970211029,13.6991299390793,14.0982779562473,14.1594002246857,13.8540484905243,13.1681346893311,12.1036472320557,10.6787881851196,8.92793560028076,6.90104866027832,4.66174507141113,2.28552055358887,-0.143051147460938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-17.4040393829346,-12.3613166809082,-6.72582530975342,-0.666357040405273,5.63147926330566,11.9716172218323,18.1547952890396,0,0,33.8699865341187,37.6128959655762,40.3931617736816,42.1278171539307,42.7689189910889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-24.2906575202942,-23.9493231773376,-22.7821640968323,-20.8665854930878,-18.3026411533356,-15.2088307887316,-11.7171326875687,-7.9679172039032,-4.1043553352356,-0.267342090606689,3.40962266921997,6.80511808395386,9.81370835006237,12.3492438793182,14.3473243713379,15.766758441925,16.5901207923889,16.8234071731567,16.4947810173035,15.6524338722229,14.3618054389954,12.7022774219513,10.7632941901684,8.64039361476898,6.43101716041565,4.23054838180542,2.12846183776855,0.205041885375977,-1.47157001495361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.11790835857391,6.77877843379974,6.38486012816429,5.97659439966083,5.59326481819153,5.2709151506424,5.04038119316101,4.92583560943604,4.94357979297638,5.10135981440544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.07361793518066,3.14979314804077,0,3.60523509979248,3.91546130180359,4.22834777832031,4.50346851348877,4.70190517604351,4.78887689113617,4.73555636405945,4.52083277702332,4.13277640938759,3.56939101219177,2.83910632133484,1.96058988571167,0.962074279785156,-0.11979341506958,-1.24178647994995,-2.35572528839111,-3.41124963760376,0,0,0,-6.0905613899231,-6.18169188499451,-5.99404239654541,-5.5231602191925,0,-3.77493834495544,-2.54897022247314,-1.14078116416931,0.39902663230896,2.0130934715271,3.63984656333923,5.21582555770874,6.67890548706055,7.97041261196136,9.03822684288025,9.8387439250946,10.3389008045197,10.5178589820862,10.3677611351013,9.8941764831543,9.11613368988037,8.06512546539307,6.78404140472412,0,0,0,0,0,0,0,0,0,-5.6941089630127,-5.76619338989258,-5.52677345275879,-4.99106025695801,-4.18648147583008,-3.15134239196777,-1.93301963806152,-0.585573196411133,0.832551956176758,2.26181411743164,3.64362525939941,4.92378234863281,6.05430221557617,6.99604225158691,7.72029876708984,8.2099552154541,8.46024703979492,8.47881126403809,8.2850284576416,7.9091911315918,7.39051818847656,6.77541542053223,6.11474990844727,5.46147537231445,4.86779689788818,4.38244247436523,4.04799461364746,3.8986611366272,3.95865345001221,4.24020624160767,4.743408203125,5.4553040266037,6.35066542029381,7.3927081823349,8.5349452495575,9.72281384468079,10.8963470458984,11.9929234981537,12.9503543376923,13.7095237970352,14.2178816199303,14.4315065741539,14.3181865215302,13.858775138855,13.0491156578064,11.9004316329956,10.4395065307617,8.70837688446045,6.76262474060059,4.66987609863281,2.50714874267578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,-11.5249052047729,-14.1596918106079,-16.4135246276855,-18.2021760940552,-19.4587907791138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4.09895992279053,1.90767669677734,7.9709005355835,13.9070840477943,0,0,29.1880865097046,32.9169893264771,35.754376411438,37.6152486801147,38.4459934234619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-24.8268604278564,-22.1675637960434,-19.0334523618221,-15.5502318143845,-11.8495299816132,-8.06428909301758,-4.32400703430176,-0.750277042388916,2.54706621170044,5.47335124015808,7.95179641246796,9.92536115646362,11.3578672409058,12.2343096733093,12.5603680610657,12.3610882759094,11.6789860725403,10.5715854167938,9.10839581489563,7.36771059036255,5.43311548233032,3.39008140563965,1.32252597808838,-0.690200805664062,-2.57621097564697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.69142329692841,4.01719176769257,4.25996518135071,4.43789446353912,4.57008963823318,4.67536464333534,4.77083122730255,4.87094831466675,4.98661208152771,5.12457656860352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.60610914230347,2.65939855575562,2.68778419494629,2.6607985496521,2.55007457733154,2.33134055137634,1.98586809635162,1.50171446800232,0.87479068338871,0.10929824411869,-0.782026290893555,-1.77823495864868,-2.85085988044739,-3.96503472328186,-5.08108901977539,-6.15600258111954,-7.14574268460274,0,0,0,-9.44206714630127,-9.44368374347687,-9.18107271194458,-8.65369260311127,0,-6.85588371753693,-5.6367963552475,-4.2540191411972,-2.75451195240021,-1.19091534614563,0.380687952041626,1.9027898311615,3.31924366950989,4.57713627815247,5.62940549850464,6.43663740158081,6.96872043609619,7.20639038085938,7.1418514251709,6.77919673919678,6.13445472717285,5.23470783233643,4.11726570129395,2.8277530670166,0,0,0,0,0,0,0,-7.06355667114258,-7.50658798217773,-7.67304611206055,-7.56120300292969,-7.18084526062012,-6.55251502990723,-5.70644569396973,-4.68115615844727,-3.52140808105469,-2.27640342712402,-0.996952056884766,0.266223907470703,1.46544075012207,2.55758476257324,3.5064754486084,4.28424644470215,4.87246036529541,5.26288414001465,5.45765399932861,5.46886444091797,5.31803894042969,5.03456687927246,4.65437793731689,4.21773386001587,3.76732349395752,3.34591245651245,2.99407720565796,2.74794793128967,2.63726341724396,2.68397128582001,2.90043441951275,3.28924113512039,3.84223985671997,4.54112005233765,5.35786151885986,6.25620937347412,7.19288635253906,8.11977469921112,8.9861832857132,9.74135655164719,10.3366988897324,10.7287075519562,10.8806927204132,10.765456199646,10.3664155006409,9.67932844161987,8.71261310577393,7.48759841918945,6.03832244873047,4.41006374359131,2.658203125,0.845973968505859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,-10.5217313766479,-12.489372253418,-14.2424230575562,-15.7140760421753,-16.8481998443604,-17.6019058227539,-17.9476494789124,-17.8746953010559,-17.3899369239807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.3383026123047,27.7021837234497,30.2746553421021,31.9797286987305,32.7674436569214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.182928323745728,2.69580501317978,4.78016400337219,6.40083265304565,7.53983676433563,8.19598153233528,8.3839555978775,8.13288903236389,7.48442411422729,6.4905571937561,5.21111965179443,3.71125030517578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.171538352966309,-0.109280109405518,-0.424566268920898,-0.791664123535156,-1.22590637207031,-1.73936200141907,-2.33984279632568,-3.03021049499512,-3.80773085355759,-4.66391457617283,-5.58447861671448,-6.54972100257874,-7.53512167930603,-8.51229286193848,0,0,0,0,0,0,-12.5140352249146,-12.3690629005432,-12.0042681694031,-11.4238481521606,-10.6402010917664,-9.67343139648438,-8.55116653442383,-7.30736494064331,-5.98125356435776,-4.6159795820713,-3.25685262680054,-1.94981408119202,-0.739337921142578,0.33299446105957,1.23041915893555,1.92237567901611,2.38564968109131,2.60558128356934,2.57645130157471,2.30180168151855,1.79442977905273,1.07571029663086,0.174947738647461,-0.872074127197266,-2.02420234680176,-3.23690986633301,-4.46372032165527,0,0,0,-8.62533378601074,-9.29176902770996,-9.75527000427246,-10.0029773712158,-10.0305824279785,-9.8425235748291,-9.45149993896484,-8.87766265869141,-8.147705078125,-7.29337596893311,-6.35019588470459,-5.35537147521973,-4.34660720825195,-3.35989665985107,-2.42843818664551,-1.58082103729248,-0.840003967285156,-0.222433567047119,0.262591361999512,0.613103866577148,0.834230661392212,0.937954664230347,0.941982269287109,0.868898749351501,0.744617104530334,0.597086161375046,0.454605966806412,0.344233632087708,0.290216147899628,0.312521576881409,0.42590868473053,0.638567090034485,0.952055621892214,1.36047452688217,1.85094156861305,2.40385832265019,2.9939940571785,3.59126913547516,4.16234588623047,4.67225027084351,5.08613061904907,5.37085390090942,5.49712324142456,5.44062232971191,5.18403816223145,4.71773338317871,4.04104518890381,3.1624002456665,2.09951114654541,0.879222869873047,-0.463733673095703,-1.88744258880615,-3.34458446502686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,-3.49948978424072,-4.69503879547119,-5.92150020599365,-7.13158798217773,-8.27909660339355,-9.32093524932861,-10.2191066741943,-10.9424476623535,-11.468168258667,-11.7830286026001,-11.8841137886047,-11.7792129516602,-11.4867248535156,-11.0350775718689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-27.5456334352493,-24.8474710732698,-21.8653259277344,-18.6915551424026,-15.4191906452179,-12.1392216682434,-8.93793487548828,-5.89454436302185,-3.07925820350647,-0.551638007164001,1.64060288667679,3.46235406398773,4.89137771725655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7.15790200233459,-7.99516296386719,-8.83510255813599,-9.66194343566895,-10.457592010498,0,0,0,0,-13.2654328346252,-13.4597058296204,-13.4971284866333,-13.3701419830322,-13.0760593414307,-12.6173334121704,-12.001781463623,-11.2426776885986,-10.3582334518433,-9.37146496772766,-8.30925393104553,-7.20157879590988,-6.08060669898987,-4.9794659614563,-3.93119859695435,-2.96740102767944,-2.11723327636719,-1.40622234344482,-0.855297088623047,-0.480134010314941,-0.290332794189453,-0.289239883422852,-0.473745346069336,-0.834320068359375,-1.35551452636719,-2.01639556884766,-2.79152870178223,-3.65174293518066,-4.56544876098633,-5.49962997436523,0,0,0,-8.80370903015137,-9.38379859924316,-9.82443046569824,-10.1141929626465,-10.2472972869873,-10.2238235473633,-10.0494966506958,-9.73511791229248,-9.2960958480835,-8.75150966644287,-8.12333679199219,-7.43508195877075,-6.71112203598022,-5.97523164749146,-5.24992966651917,-4.5552806854248,-3.908247590065,-3.32205069065094,-2.80576518177986,-2.36412167549133,-1.9976401925087,-1.70261019095778,-1.47186136245728,-1.29514580965042,-1.16008567810059,-1.05286800861359,-0.959288775920868,-0.865678310394287,-0.759773805737496,-0.63170300424099,-0.474409282207489,-0.284551501274109,-0.0624074935913086,0.187500476837158,0.456816673278809,0.733479022979736,1.00244283676147,1.24611330032349,1.44534778594971,1.58046245574951,1.63227844238281,1.58308887481689,1.41795635223389,1.12530136108398,0.698241233825684,0.134803771972656,-0.561222076416016,-1.38039779663086,-2.3074951171875,-3.32165718078613,-4.39740943908691,-5.50497531890869,-6.61158084869385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,2.42448329925537,1.84292984008789,1.19032764434814,0.489114761352539,-0.23857307434082,-0.971952438354492,-1.69260120391846,-2.38531684875488,-3.03888034820557,-3.64659309387207,-4.20662212371826,-4.72209930419922,-5.20099973678589,-5.65572786331177,-6.10253858566284,-6.5606689453125,-7.05133581161499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.752241134643555,4.71940135955811,8.57869100570679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-26.7191458046436,-24.767547249794,-22.5032314062119,-19.99325299263,-17.3075964450836,-14.5171749591827,-11.6919043064117,-8.89882493019104,-6.20055270195007,-3.65378713607788,-1.3081374168396,0.794797778129578,2.62205278873444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8.9079167842865,-9.59480547904968,-10.2156159877777,0,0,0,-11.8072490692139,-11.9322166442871,-11.9337058067322,-11.8086450099945,-11.5567831993103,-11.1810326576233,-10.6874983310699,-10.085498213768,-9.3875450193882,-8.60891139507294,-7.76751637458801,-6.88327550888062,-5.97756338119507,-5.07270812988281,-4.19118213653564,-3.35498905181885,-2.58487796783447,-1.89970779418945,-1.31583309173584,-0.846479415893555,-0.501453399658203,-0.286626815795898,-0.203887939453125,-0.251068115234375,-0.421941757202148,-0.706563949584961,-1.09158325195312,-1.56076622009277,-2.09552574157715,-2.67564010620117,-3.27994537353516,-3.88704490661621,0,0,-5.52327156066895,-5.94832611083984,-6.2900390625,-6.53921890258789,-6.68993186950684,-6.73976135253906,-6.68974304199219,-6.5440149307251,-6.30966472625732,-5.9961986541748,-5.6151762008667,-5.17943000793457,-4.70275783538818,-4.19906806945801,-3.68205118179321,-3.16449093818665,-2.65788769721985,-2.17203974723816,-1.71483373641968,-1.29205751419067,-0.907457709312439,-0.562555432319641,-0.257145643234253,0.0106556415557861,0.243915557861328,0.44664192199707,0.623210191726685,0.777956008911133,0.914820194244385,1.0367546081543,1.14565896987915,1.24185371398926,1.3242769241333,1.39003849029541,1.43477153778076,1.45265007019043,1.43683052062988,1.37962436676025,1.27305221557617,1.10936164855957,0.881523132324219,0.58372688293457,0.212039947509766,-0.235427856445312,-0.757728576660156,-1.35117340087891,-2.00885581970215,-2.72091484069824,-3.47442054748535,-4.25355529785156,-5.04039192199707,-5.81494140625,-6.55604553222656,-7.24198150634766,-7.85140895843506,-8.36391830444336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,9.62412166595459,9.22761678695679,8.72136735916138,8.11404800415039,7.41489553451538,6.63329362869263,5.77832555770874,4.85845375061035,3.88118839263916,2.85287857055664,1.77859878540039,0.662104606628418,-0.494091987609863,-1.6885232925415,-2.92052984237671,-4.18987894058228,-5.49635601043701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-21.2565779685974,-19.5289454460144,0,0,0,0,0,-3.48360061645508,-0.206415176391602,3.10795068740845,6.39916229248047,9.60518711805344,12.6636185646057,15.5133156776428,18.09592628479,20.3574056625366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-21.5777153968811,-20.4688868522644,-19.0734767913818,-17.4344515800476,-15.5983099937439,-13.6137943267822,-11.5306420326233,-9.39829635620117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8.48900818824768,-8.55423092842102,-8.51539158821106,0,0,0,0,0,0,-5.66061210632324,-4.98433589935303,-4.27723979949951,-3.55375289916992,-2.8286247253418,-2.11640071868896,-1.43113422393799,-0.785957336425781,-0.192712783813477,0.33831787109375,0.798791885375977,1.18235206604004,1.48500442504883,1.70504188537598,1.84307670593262,1.90209007263184,1.88719367980957,1.80544471740723,1.66560554504395,1.47783851623535,1.25334930419922,1.00393676757812,0.741733551025391,0,0,-0.00470924377441406,-0.205072402954102,-0.366621017456055,-0.483030319213867,-0.549575805664062,-0.563417434692383,-0.523584365844727,-0.430801391601562,-0.287468910217285,-0.0974454879760742,0.134109497070312,0.401128768920898,0.696722984313965,1.01362133026123,1.34433460235596,1.68146705627441,2.01792669296265,2.34720182418823,2.66341876983643,2.96150684356689,3.23719358444214,3.48723125457764,3.70909118652344,3.90108013153076,4.06211948394775,4.19177341461182,4.28992748260498,4.35671615600586,4.39243793487549,4.39723873138428,4.37120151519775,4.31407737731934,4.22548770904541,4.1046199798584,3.95051002502441,3.76197242736816,3.53784942626953,3.27704238891602,2.9787540435791,2.6426887512207,2.26924133300781,1.85967826843262,1.41637992858887,0.942798614501953,0.443891525268555,-0.0741462707519531,-0.603622436523438,-1.13566589355469,-1.66012954711914,-2.16576957702637,-2.64079666137695,-3.07279968261719,-3.44931221008301,-3.75809669494629,-3.98770904541016,-4.12768745422363,-4.1690731048584,-4.10475158691406,-3.9298677444458,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.1342306137085,0.64726734161377,-0.880825519561768,-2.43995475769043,-4.01956152915955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-14.1344590187073,-12.211790561676,0,0,0,0,0,2.61440086364746,5.3391489982605,8.03522920608521,10.6611526012421,0,15.5374617576599,17.7081589698792,19.6511125564575,21.3332424163818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-14.5827889442444,-14.2905993461609,-13.7747168540955,-13.0582585334778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3.05363082885742,-2.58099937438965,-2.07453918457031,-1.54341697692871,-0.996906280517578,-0.444129943847656,0.106103897094727,0.645502090454102,1.16650009155273,1.6623477935791,2.1273307800293,2.55675888061523,2.94718551635742,3.29634666442871,3.6031494140625,3.86777877807617,4.09149742126465,4.2766056060791,4.42633628845215,4.54471015930176,4.63636779785156,4.70631217956543,4.75988960266113,4.8025016784668,4.83942794799805,4.87564849853516,4.91573333740234,4.96374988555908,5.02297115325928,5.09604072570801,5.18475437164307,5.2900390625,5.41206932067871,5.5501880645752,5.7030143737793,5.86848068237305,6.04400062561035,6.22648334503174,6.41252613067627,6.59847545623779,6.78058242797852,6.95504665374756,7.11825466156006,7.26672458648682,7.39723682403564,7.50685882568359,7.59312343597412,7.65384864807129,7.68729305267334,7.69206142425537,7.66721725463867,7.61210823059082,7.52640914916992,7.41016387939453,7.26359939575195,7.08724403381348,6.88180732727051,6.64831352233887,6.38791465759277,6.10207176208496,5.79246520996094,5.46110343933105,5.11030197143555,4.74275398254395,4.36157608032227,3.97032356262207,3.57302474975586,3.17425537109375,2.77897644042969,2.39276885986328,2.02159118652344,1.67184066772461,1.35013771057129,1.0633602142334,0.818536758422852,0.622453689575195,0.481788635253906,0.402755737304688,0.391000747680664,0.451290130615234,0.587507247924805,0.802358627319336,1.09728622436523,1.47222518920898,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.462650299072266,0.863990783691406,1.27351379394531,1.68663597106934,2.09921550750732,2.50749492645264,2.90827751159668,3.29883670806885,3.67695331573486,4.0410041809082,4.38982105255127,4.72272205352783,5.03948593139648,5.34028053283691,5.62562847137451,5.89622592926025,6.15307331085205,6.39727687835693,6.62998294830322,6.8523006439209,7.06531047821045,7.26998615264893,7.46704196929932,0,0,0,8.18666553497314,8.34898138046265,8.50317907333374,8.64827394485474,8.78311967849731,8.90636587142944,9.0165638923645,9.11217069625854,9.19161558151245,9.25330018997192,9.29575490951538,9.31755876541138,9.31742143630981,9.29421758651733,9.24707889556885,9.17531394958496,9.07848644256592,8.9564037322998,8.80921459197998,8.63727855682373,8.44124603271484,8.22209930419922,7.98105716705322,7.71962356567383,7.43956851959229,7.14296722412109,6.83210372924805,6.50955772399902,6.17812919616699,5.84086227416992,5.50102043151855,5.16208267211914,4.82771682739258,4.50177192687988,4.188232421875,3.8912181854248,3.61486434936523,3.36342620849609,3.14107894897461,2.95195770263672,2.79999542236328,2.68896102905273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.02104902267456,3.35098886489868,3.67878532409668,4.00291538238525,4.32202196121216,4.63480997085571,4.94017744064331,5.23712062835693,5.5247004032135,5.80202627182007,6.06829762458801,6.32275247573853,6.56461560726166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.39384460449219,7.20082521438599,6.99136304855347,6.76698398590088,6.52937889099121,6.28040313720703,6.02208232879639,5.75661182403564,5.48629760742188,5.21360683441162,4.94109058380127,4.67139530181885,4.40722560882568,4.15133571624756,3.90650272369385,3.67548179626465,3.46099090576172,3.26568603515625,3.09207820892334,2.94259738922119,2.81944942474365,2.72466564178467,2.6599760055542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]]}) diff --git a/viz/templates/data2.json b/viz/templates/data2.json new file mode 100644 index 0000000..53082f8 --- /dev/null +++ b/viz/templates/data2.json @@ -0,0 +1 @@ +{{jquery}}({"w10n":[{"value":"draft-20091228","name":"spec"},{"value":"taiga-1.1.2","name":"application"},{"value":"nc","name":"type"},{"value":"/home/ubuntu/data/GRACE.CSR.LAND.RL05.DS.G200KM.nc","name":"path"},{"value":"/lwe_thickness[0:1]","name":"identifier"}],"data":[[[7.91792440414429,7.9074535369873,7.89709615707397,7.88685464859009,7.87674283981323,7.86675834655762,7.85690975189209,7.84720087051392,7.83763837814331,7.82822751998901,7.81897258758545,7.80987691879272,7.80094861984253,7.79219007492065,7.78360605239868,7.77520036697388,7.76697683334351,7.75894069671631,7.75109577178955,7.74344491958618,7.73599147796631,7.72873973846436,7.72169303894043,7.71485233306885,7.70822143554688,7.70180416107178,7.69560050964355,7.68961191177368,7.68384504318237,7.67829847335815,7.6729736328125,7.66787338256836,7.66299915313721,7.65835046768188,7.65392875671387,7.6497368812561,7.6457724571228,7.64203643798828,7.6385326385498,7.63525772094727,7.63221025466919,7.62939548492432,7.62680864334106,7.62445259094238,7.62232351303101,7.62042331695557,7.61875009536743,7.61730337142944,7.61608266830444,7.61508703231812,7.61431407928467,7.61376333236694,7.61343336105347,7.61332416534424,7.61343336105347,7.61375761032104,7.61429929733276,7.61505460739136,7.61602210998535,7.61720037460327,7.61858892440796,7.62018537521362,7.62198877334595,7.62399482727051,7.62620401382446,7.62861490249634,7.63122701644897,7.63403606414795,7.6370415687561,7.64023971557617,7.64363527297974,7.64722156524658,7.65099763870239,7.65496301651001,7.65911674499512,7.66345500946045,7.66797828674316,7.67268657684326,7.67757558822632,7.68264818191528,7.68789672851562,7.69332599639893,7.69893217086792,7.70471334457397,7.71067047119141,7.71680164337158,7.72310495376587,7.72958040237427,7.73622941970825,7.74304485321045,7.75003099441528,7.75718450546265,7.76450490951538,7.77199220657349,7.77964496612549,7.78746128082275,7.79544019699097,7.8035831451416,7.81188821792603,7.82035303115845,7.82897663116455,7.83775997161865,7.8467001914978,7.85579681396484,7.86504983901978,7.87445592880249,7.88401508331299,7.89372682571411,7.90358972549438,7.91360282897949,7.92376184463501,7.93406772613525,7.94451713562012,7.95511150360107,7.96584725379944,7.97672486305237,7.98773837089539,7.99888825416565,8.01017284393311,8.02158832550049,8.03313231468201,8.0448055267334,8.05660390853882,8.06852531433105,8.08056497573853,8.09272122383118,8.10499167442322,8.11737465858459,8.12986469268799,8.14245891571045,8.15515565872192,8.16794991493225,8.18083906173706,8.1938169002533,8.20688366889954,8.22003197669983,8.23326015472412,8.24656105041504,8.25993204116821,8.27337002754211,8.28686928749084,8.30042362213135,8.31402921676636,8.32768416404724,8.34137749671936,8.35510993003845,8.36887216567993,8.38265824317932,8.39646458625793,8.41028904914856,8.4241201877594,8.43795323371887,8.45178437232971,8.46560597419739,8.47941398620605,8.4932005405426,8.50695753097534,8.5206823348999,8.53436756134033,8.54800629615784,8.56159281730652,8.57511830329895,8.58857774734497,8.6019651889801,8.61527442932129,8.62849450111389,8.64162445068359,8.65465497970581,8.66757941246033,8.68038964271545,8.69308280944824,8.70564961433411,8.71808195114136,8.73037648200989,8.74252438545227,8.75452160835266,8.76635789871216,8.77803134918213,8.78953313827515,8.80085778236389,8.81199669837952,8.82294917106628,8.83370471000671,8.84425806999207,8.85460448265076,8.86474061012268,8.87465763092041,8.884352684021,8.89381718635559,8.90305018424988,8.91204524040222,8.92079949378967,8.92930483818054,8.93756103515625,8.94556164741516,8.95330476760864,8.96078634262085,8.96799969673157,8.97494602203369,8.98162007331848,8.98802042007446,8.99414491653442,8.99998998641968,9.00555467605591,9.01083493232727,9.01583290100098,9.02054500579834,9.02497100830078,9.02911043167114,9.03296113014221,9.03652405738831,9.03979992866516,9.04278874397278,9.045490026474,9.04790449142456,9.05003476142883,9.05188035964966,9.05344367027283,9.05472660064697,9.05573081970215,9.0564558506012,9.05690836906433,9.05708932876587,9.05700135231018,9.05664753913879,9.05602860450745,9.05515217781067,9.05401992797852,9.05263566970825,9.05100202560425,9.04912495613098,9.0470085144043,9.04465556144714,9.04207158088684,9.03925895690918,9.03622627258301,9.03297638893127,9.02951431274414,9.02584481239319,9.02197194099426,9.01790308952332,9.01364135742188,9.00919270515442,9.00456118583679,8.99975323677063,8.99477410316467,8.98962903022766,8.98432350158691,8.97885966300964,8.97324681282043,8.9674870967865,8.96158528327942,8.95554947853088,8.94938039779663,8.94308519363403,8.93666934967041,8.93013739585876,8.92349004745483,8.91673564910889,8.90987515449524,8.90291523933411,8.89585995674133,8.88871097564697,8.88147330284119,8.8741512298584,8.86674499511719,8.85926175117493,8.85170269012451,8.84406876564026,8.83636593818665,8.82859349250793,8.82075810432434,8.81285738945007,8.80489492416382,8.79687190055847,8.78879284858704,8.78065609931946,8.77246308326721,8.76421761512756,8.75591707229614,8.74756503105164,8.73915982246399,8.73070549964905,8.72219896316528,8.71364235877991,8.70503354072571,8.69637513160706,8.68766522407532,8.67890477180481,8.67009258270264,8.66122770309448,8.65231037139893,8.64334177970886,8.63431692123413,8.6252384185791,8.61610317230225,8.6069130897522,8.59766387939453,8.5883584022522,8.57899332046509,8.56956791877747,8.56008267402649,8.55053329467773,8.54092240333557,8.53124928474426,8.52151083946228,8.51170754432678,8.50183796882629,8.49190378189087,8.48190140724182,8.4718325138092,8.46169686317444,8.451491355896,8.44122052192688,8.43087983131409,8.42047381401062,8.40999841690063,8.39945769309998,8.38885235786438,8.37818169593811,8.36744475364685,8.35664749145508,8.34578537940979,8.3348662853241,8.32388639450073,8.31285095214844,8.30176091194153,8.29061675071716,8.27942538261414,8.26818370819092,8.25689888000488,8.24557137489319,8.23420643806458,8.2228057384491,8.21137237548828,8.19991159439087,8.18842720985413,8.176922082901,8.16540026664734,8.15386772155762,8.14232659339905,8.13078498840332,8.11924481391907,8.10770893096924,8.09618806838989,8.08468389511108,8.07320165634155,8.06174612045288,8.05032682418823,8.03894472122192,8.02760553359985,8.01631832122803,8.00508499145508,7.99391555786133,7.98281097412109,7.97178030014038,7.96082925796509,7.94996023178101,7.93918371200562,7.92850351333618],[1.22429037094116,1.17614126205444,1.12875938415527,1.08224034309387,1.03667211532593,0.992143154144287,0.948737382888794,0.906535387039185,0.865612745285034,0.826040506362915,0.78788685798645,0.751213073730469,0.716078042984009,0.68253493309021,0.65062952041626,0.620405435562134,0.591899156570435,0.565141916275024,0.540159702301025,0.51697301864624,0.495597124099731,0.476041555404663,0.458308458328247,0.442398071289062,0.428302764892578,0.416011095046997,0.405505418777466,0.396762847900391,0.389756679534912,0.38445520401001,0.380821943283081,0.378816366195679,0.378393650054932,0.379505157470703,0.382097721099854,0.386118412017822,0.391506195068359,0.398200273513794,0.406136274337769,0.415248155593872,0.425467729568481,0.436724901199341,0.448948621749878,0.462064266204834,0.476001739501953,0.490684509277344,0.506040096282959,0.521993160247803,0.538471937179565,0.555401563644409,0.572710275650024,0.590328931808472,0.608187198638916,0.626216173171997,0.644350290298462,0.662528276443481,0.680686950683594,0.698766946792603,0.716713666915894,0.734474182128906,0.75199818611145,0.769238948822021,0.786154270172119,0.802701711654663,0.818848609924316,0.834559440612793,0.849807024002075,0.864565372467041,0.87881326675415,0.892534017562866,0.905712127685547,0.918338775634766,0.930407762527466,0.94191575050354,0.952863454818726,0.963256120681763,0.973101615905762,0.982409477233887,0.991195678710938,0.999476671218872,1.00727248191833,1.01460576057434,1.02150249481201,1.02799081802368,1.03409957885742,1.03986191749573,1.04531192779541,1.05048298835754,1.05541372299194,1.06014227867126,1.06470727920532,1.06914877891541,1.07350921630859,1.07782673835754,1.08214473724365,1.0865044593811,1.09094762802124,1.09551477432251,1.1002471446991,1.10518503189087,1.11036825180054,1.11583471298218,1.12162303924561,1.12776947021484,1.13431096076965,1.1412787437439,1.14870929718018,1.15663170814514,1.16507720947266,1.17407321929932,1.18364787101746,1.1938271522522,1.2046332359314,1.21608972549438,1.22821569442749,1.24103260040283,1.25455689430237,1.26880478858948,1.28378987312317,1.29952621459961,1.31602621078491,1.33329939842224,1.35135579109192,1.37020134925842,1.38984537124634,1.41029143333435,1.4315459728241,1.45361185073853,1.4764906167984,1.50018715858459,1.52469921112061,1.55002975463867,1.57617628574371,1.60313844680786,1.63091671466827,1.65950536727905,1.68890297412872,1.71910560131073,1.75010967254639,1.78191065788269,1.81450283527374,1.84788060188293,1.8820366859436,1.91696393489838,1.95265674591064,1.98910230398178,2.02629548311234,2.06422352790833,2.1028761267662,2.14224082231522,2.1823046207428,2.22305229306221,2.26446929574013,2.3065385222435,2.34924088418484,2.39255748689175,2.43646859005094,2.48094880580902,2.525974214077,2.57152043282986,2.61755606532097,2.66405418515205,2.71098095178604,2.75830382108688,2.80598467588425,2.85398882627487,2.90227204561234,2.95079511404037,2.99951261281967,3.04837715625763,3.09734201431274,3.14635479450226,3.19536221027374,3.24431157112122,3.29314482212067,3.34180426597595,3.39022874832153,3.438356757164,3.48612630367279,3.53347027301788,3.58032500743866,3.62662124633789,3.67229199409485,3.71726882457733,3.76148116588593,3.80486071109772,3.84733700752258,3.88883984088898,3.92929923534393,3.96864700317383,4.00681471824646,4.04373300075531,4.07933688163757,4.11356103420258,4.14634263515472,4.17761766910553,4.20732939243317,4.23541915416718,4.26183176040649,4.2865161895752,4.30942249298096,4.33050465583801,4.34972095489502,4.36703062057495,4.382399559021,4.3957953453064,4.40719032287598,4.41656041145325,4.42388820648193,4.42915654182434,4.43235659599304,4.43348145484924,4.43252992630005,4.42950487136841,4.42441463470459,4.41727185249329,4.40809440612793,4.3969030380249,4.38372468948364,4.36859107017517,4.35153830051422,4.3326051235199,4.31183731555939,4.2892826795578,4.2649952173233,4.2390308380127,4.2114509344101,4.18231976032257,4.15170443058014,4.1196768283844,4.08631086349487,4.0516859292984,4.01587808132172,3.97897267341614,3.94105184078217,3.9022045135498,3.86251842975616,3.82208371162415,3.78099048137665,3.73932987451553,3.69719922542572,3.65468782186508,3.61189234256744,3.56890332698822,3.52581644058228,3.48272466659546,3.43971884250641,3.39689183235168,3.35433274507523,3.31212767958641,3.27036753296852,3.22913514077663,3.18851184844971,3.14858009666204,3.10941469669342,3.07109297625721,3.03368526697159,2.99726046621799,2.96188223361969,2.92761465907097,2.8945144712925,2.86263513565063,2.83202663064003,2.80273595452309,2.77480316162109,2.7482675909996,2.72316056489944,2.69951015710831,2.67734056711197,2.65667194128036,2.63751590251923,2.61988347768784,2.60377883911133,2.5892014503479,2.57614743709564,2.56460571289062,2.55456244945526,2.54599684476852,2.53888618946075,2.53320014476776,2.52890539169312,2.52596509456635,2.5243353843689,2.52397000789642,2.5248167514801,2.52682137489319,2.5299254655838,2.53406369686127,2.53917229175568,2.54517829418182,2.55201184749603,2.55959320068359,2.56784665584564,2.57668709754944,2.58603310585022,2.59579694271088,2.60589146614075,2.61622714996338,2.62671053409576,2.63725352287292,2.64775836467743,2.65813732147217,2.66829359531403,2.67813408374786,2.68756639957428,2.69649732112885,2.70483779907227,2.71249544620514,2.71938526630402,2.7254182100296,2.73051226139069,2.73458504676819,2.73755872249603,2.73935759067535,2.73991107940674,2.73914778232574,2.73700654506683,2.73342657089233,2.7283524274826,2.72173237800598,2.71352076530457,2.70367634296417,2.69216430187225,2.67895436286926,2.66402077674866,2.64734494686127,2.6289130449295,2.6087189912796,2.58675837516785,2.5630384683609,2.53756785392761,2.5103622674942,2.48144602775574,2.45084607601166,2.41859591007233,2.38473534584045,2.34930884838104,2.31236803531647,2.2739691734314,2.23417210578918,2.19304370880127,2.15065252780914,2.10707557201385,2.06239223480225,2.01668643951416,1.97004103660583,1.92254948616028,1.87430489063263,1.82540285587311,1.77594041824341,1.72601783275604,1.67573952674866,1.62520587444305,1.57452082633972,1.52379143238068,1.47311961650848,1.42261350154877,1.37237405776978,1.32250690460205,1.27311229705811],[-7.07276248931885,-7.20648431777954,-7.33658468723297,-7.46264600753784,-7.58427029848099,-7.7010789513588,-7.8127144575119,-7.91884166002274,-8.01914697885513,-8.11334425210953,-8.20117419958115,-8.28240114450455,-8.35681796073914,-8.42424643039703,-8.48453366756439,-8.53756004571915,-8.58323156833649,-8.62148147821426,-8.65227508544922,-8.67560625076294,-8.69149607419968,-8.69999140501022,-8.70117080211639,-8.69513422250748,-8.68201196193695,-8.66195595264435,-8.63514602184296,-8.60178029537201,-8.56208109855652,-8.5162947177887,-8.46468126773834,-8.40752327442169,-8.34511733055115,-8.27777743339539,-8.20583212375641,-8.12962210178375,-8.04949796199799,-7.96582198143005,-7.87896454334259,-7.78930187225342,-7.69721698760986,-7.60309314727783,-7.50732064247131,-7.41028571128845,-7.31237840652466,-7.2139847278595,-7.11548185348511,-7.01725220680237,-6.91966223716736,-6.82307362556458,-6.72784185409546,-6.63430643081665,-6.54279661178589,-6.45363163948059,-6.367112159729,-6.28352737426758,-6.2031455039978,-6.12622046470642,-6.05299019813538,-5.98366498947144,-5.91844415664673,-5.85750317573547,-5.80099415779114,-5.74904942512512,-5.70178127288818,-5.65927624702454,-5.62159848213196,-5.58879327774048,-5.56087756156921,-5.5378520488739,-5.51969122886658,-5.50634598731995,-5.49775147438049,-5.493816614151,-5.49443459510803,-5.4994752407074,-5.50879192352295,-5.52222037315369,-5.53957939147949,-5.56067419052124,-5.58529281616211,-5.61321246623993,-5.6441992521286,-5.67800962924957,-5.71438944339752,-5.75308096408844,-5.79381775856018,-5.83633196353912,-5.88035404682159,-5.92561161518097,-5.9718359708786,-6.01875787973404,-6.0661147236824,-6.11364775896072,-6.16110789775848,-6.20825052261353,-6.25484395027161,-6.30066481232643,-6.34550261497498,-6.38916054368019,-6.43145348131657,-6.47221180796623,-6.5112818479538,-6.54852329567075,-6.58381244167686,-6.61704356968403,-6.64812661707401,-6.6769854426384,-6.70356145501137,-6.72781372070312,-6.74971559643745,-6.76925298571587,-6.78643080592155,-6.80126485228539,-6.81378054618835,-6.82402235269547,-6.8320406973362,-6.83789637684822,-6.84166033565998,-6.8434090167284,-6.8432265818119,-6.84120121598244,-6.8374265357852,-6.83199473842978,-6.82500152476132,-6.81654443591833,-6.80671636760235,-6.79560662806034,-6.7833054959774,-6.7698937356472,-6.75544780492783,-6.74003612995148,-6.72372263669968,-6.70655804872513,-6.68858700990677,-6.66984331607819,-6.65034890174866,-6.63011848926544,-6.60915410518646,-6.58744287490845,-6.56496906280518,-6.5416978597641,-6.51758921146393,-6.49259090423584,-6.46663928031921,-6.43966269493103,-6.41158318519592,-6.38231205940247,-6.35175466537476,-6.3198082447052,-6.28637051582336,-6.25132775306702,-6.21457171440125,-6.17598581314087,-6.13545703887939,-6.0928750038147,-6.04812479019165,-6.00110292434692,-5.95170593261719,-5.89984130859375,-5.84541845321655,-5.78835964202881,-5.72859668731689,-5.66607046127319,-5.6007399559021,-5.5325665473938,-5.46153974533081,-5.38765382766724,-5.31091928482056,-5.23137235641479,-5.14905500411987,-5.06403493881226,-4.97639513015747,-4.88623189926147,-4.79366683959961,-4.69883871078491,-4.60189867019653,-4.5030198097229,-4.40239095687866,-4.30022001266479,-4.19672822952271,-4.09215402603149,-3.98674726486206,-3.88077449798584,-3.77451372146606,-3.66825008392334,-3.56228542327881,-3.45692300796509,-3.35248136520386,-3.24927711486816,-3.14763355255127,-3.04788112640381,-2.95034217834473,-2.85534763336182,-2.76321887969971,-2.67427921295166,-2.58884334564209,-2.50721740722656,-2.42970561981201,-2.35659408569336,-2.28816413879395,-2.22468090057373,-2.16639423370361,-2.11354160308838,-2.0663423538208,-2.02499675750732,-1.98968887329102,-1.9605827331543,-1.93782138824463,-1.92152404785156,-1.9117956161499,-1.90870952606201,-1.91232585906982,-1.92267513275146,-1.93976879119873,-1.96359539031982,-1.99411916732788,-2.03128337860107,-2.07500648498535,-2.12519025802612,-2.18170881271362,-2.24442386627197,-2.31316661834717,-2.38776159286499,-2.4680027961731,-2.55367708206177,-2.64454889297485,-2.74036693572998,-2.84087228775024,-2.94578313827515,-3.05481338500977,-3.16766023635864,-3.28401899337769,-3.40356588363647,-3.52598571777344,-3.65093517303467,-3.7780818939209,-3.90708827972412,-4.03760719299316,-4.16930198669434,-4.30181407928467,-4.43481206893921,-4.5679407119751,-4.70087099075317,-4.83326196670532,-4.96477675437927,-5.09508895874023,-5.22387862205505,-5.35082936286926,-5.47563743591309,-5.59799814224243,-5.71761870384216,-5.83422207832336,-5.94753193855286,-6.05729150772095,-6.16324138641357,-6.26514554023743,-6.36277198791504,-6.45590591430664,-6.5443389415741,-6.62787592411041,-6.70633852481842,-6.77955627441406,-6.84737598896027,-6.90965139865875,-6.96625554561615,-7.01707315444946,-7.06200206279755,-7.1009533405304,-7.13385188579559,-7.1606410741806,-7.18127381801605,-7.19571930170059,-7.20396274328232,-7.20600086450577,-7.2018483877182,-7.19153553247452,-7.17510610818863,-7.15261960029602,-7.12415319681168,-7.08979827165604,-7.04965877532959,-7.0038635134697,-6.95254570245743,-6.89586502313614,-6.83399266004562,-6.76711350679398,-6.69543051719666,-6.61916357278824,-6.53855162858963,-6.45383507013321,-6.36528754234314,-6.2731796503067,-6.17781317234039,-6.07949209213257,-5.97853672504425,-5.87528038024902,-5.77006351947784,-5.66325199604034,-5.55520236492157,-5.44629693031311,-5.33691215515137,-5.22744059562683,-5.11828207969666,-5.00983381271362,-4.90250158309937,-4.7966890335083,-4.6928026676178,-4.59124946594238,-4.49243402481079,-4.3967502117157,-4.30459570884705,-4.21634960174561,-4.13239312171936,-4.05309057235718,-3.97879719734192,-3.90984749794006,-3.8465690612793,-3.78926682472229,-3.73822808265686,-3.69372081756592,-3.65598893165588,-3.62525749206543,-3.60172438621521,-3.58556175231934,-3.57691597938538,-3.57590508460999,-3.58262157440186,-3.59712624549866,-3.61944985389709,-3.64959621429443,-3.68753528594971,-3.73320770263672,-3.78652215003967,-3.84736084938049,-3.91557264328003,-3.99097752571106,-4.07336354255676,-4.16249299049377,-4.25810289382935,-4.35989570617676,-4.46756148338318,-4.58075213432312,-4.69910430908203,-4.82222867012024,-4.94972705841064,-5.08117055892944,-5.2161180973053,-5.35412120819092,-5.49470829963684,-5.63741445541382,-5.78173875808716,-5.92719972133636,-6.07330679893494,-6.21956145763397,-6.36546993255615,-6.51053285598755,-6.65427219867706,-6.7962007522583,-6.93585097789764],[-11.7966406345367,-12.065345287323,-12.3239548206329,-12.5714418888092,-12.8068397045135,-13.0292520523071,-13.237845659256,-13.4318673610687,-13.610627412796,-13.77352643013,-13.9200327396393,-14.049703836441,-14.1621704101562,-14.2571470737457,-14.3344302177429,-14.3938949108124,-14.4354956150055,-14.4592604637146,-14.4652931690216,-14.453777551651,-14.4249529838562,-14.3791408538818,-14.3167157173157,-14.2381162643433,-14.1438369750977,-14.0344307422638,-13.9104895591736,-13.7726631164551,-13.6216342449188,-13.458128452301,-13.2829027175903,-13.0967512130737,-12.900486946106,-12.6949543952942,-12.4810152053833,-12.259548664093,-12.0314507484436,-11.7976264953613,-11.5589914321899,-11.3164639472961,-11.0709691047668,-10.8234314918518,-10.5747776031494,-10.3259167671204,-10.0777721405029,-9.83124017715454,-9.58721256256104,-9.34657144546509,-9.11017751693726,-8.87887144088745,-8.65347766876221,-8.43479490280151,-8.22359704971313,-8.02062511444092,-7.82659149169922,-7.64217567443848,-7.46801280975342,-7.30470561981201,-7.15281009674072,-7.01283645629883,-6.88524723052979,-6.7704496383667,-6.66880130767822,-6.58060264587402,-6.50609397888184,-6.44545364379883,-6.39879894256592,-6.36617946624756,-6.34758281707764,-6.34292984008789,-6.3520712852478,-6.37479496002197,-6.41081428527832,-6.45978450775146,-6.52129364013672,-6.59486198425293,-6.67995452880859,-6.77597379684448,-6.88227415084839,-6.9981484413147,-7.12284708023071,-7.25557804107666,-7.39551258087158,-7.54178476333618,-7.69350624084473,-7.84976530075073,-8.00963354110718,-8.17217493057251,-8.33645534515381,-8.50153589248657,-8.66649961471558,-8.83043432235718,-8.99246191978455,-9.15172743797302,-9.30741763114929,-9.45875382423401,-9.6050124168396,-9.7455153465271,-9.879643201828,-10.0068383216858,-10.1266100406647,-10.2385282516479,-10.3422380685806,-10.4374568462372,-10.5239716768265,-10.6016474962234,-10.6704227924347,-10.7303073406219,-10.7813822031021,-10.823804974556,-10.8577936887741,-10.8836346268654,-10.9016779065132,-10.9123283028603,-10.9160383939743,-10.9133207201958,-10.9047207832336,-10.8908216357231,-10.872242808342,-10.8496226072311,-10.8236214518547,-10.7949076890945,-10.7641600370407,-10.7320514917374,-10.6992484331131,-10.6664093732834,-10.6341638565063,-10.6031200885773,-10.5738561153412,-10.5469094514847,-10.5227785110474,-10.5019133090973,-10.4847149848938,-10.4715292453766,-10.4626452922821,-10.4582922458649,-10.4586389064789,-10.4637877941132,-10.4737799167633,-10.4885895252228,-10.5081243515015,-10.5322341918945,-10.5607018470764,-10.5932488441467,-10.6295404434204,-10.6691865921021,-10.711742401123,-10.7567143440247,-10.8035674095154,-10.8517236709595,-10.9005708694458,-10.9494686126709,-10.9977440834045,-11.0447177886963,-11.0896806716919,-11.131929397583,-11.1707549095154,-11.2054467201233,-11.2353119850159,-11.259669303894,-11.2778577804565,-11.2892484664917,-11.2932386398315,-11.2892694473267,-11.2768249511719,-11.255425453186,-11.2246570587158,-11.1841535568237,-11.1336069107056,-11.0727806091309,-11.0014934539795,-10.9196367263794,-10.8271656036377,-10.7241096496582,-10.6105661392212,-10.4867115020752,-10.3527822494507,-10.2090930938721,-10.0560216903687,-9.89401817321777,-9.72359657287598,-9.54533004760742,-9.3598575592041,-9.16786193847656,-8.97009754180908,-8.76733684539795,-8.5604248046875,-8.35022449493408,-8.13764190673828,-7.92360782623291,-7.70906448364258,-7.49499034881592,-7.28234767913818,-7.07213115692139,-6.86530685424805,-6.66285133361816,-6.46571826934814,-6.27484035491943,-6.09113597869873,-5.9154748916626,-5.74871063232422,-5.59164428710938,-5.44503211975098,-5.30958461761475,-5.18595504760742,-5.07474708557129,-4.97649192810059,-4.89167213439941,-4.82069301605225,-4.76390361785889,-4.72158145904541,-4.69392776489258,-4.68109035491943,-4.68313121795654,-4.70005893707275,-4.73180484771729,-4.77823829650879,-4.83916759490967,-4.91432952880859,-5.00341320037842,-5.10604095458984,-5.22179222106934,-5.35018444061279,-5.4907054901123,-5.64278221130371,-5.80581760406494,-5.97917556762695,-6.16218662261963,-6.35416603088379,-6.55439281463623,-6.76214027404785,-6.97666358947754,-7.1972188949585,-7.42303848266602,-7.65338182449341,-7.88747501373291,-8.12457990646362,-8.36395502090454,-8.6048731803894,-8.84663343429565,-9.08851766586304,-9.3298716545105,-9.57002973556519,-9.80837202072144,-10.0442891120911,-10.2771944999695,-10.5065379142761,-10.7317910194397,-10.952455997467,-11.1680636405945,-11.3781571388245,-11.5823159217834,-11.7801561355591,-11.9712936878204,-12.1553976535797,-12.3321325778961,-12.5012021064758,-12.6623225212097,-12.8152370452881,-12.95969414711,-13.0954689979553,-13.2223502397537,-13.3401355743408,-13.4486467838287,-13.5476967096329,-13.6371265649796,-13.7167823314667,-13.7865172028542,-13.8461918830872,-13.8956738114357,-13.9348413348198,-13.9635806679726,-13.9817807972431,-13.9893426299095,-13.9861758053303,-13.9721935689449,-13.947329595685,-13.9115200787783,-13.8647154718637,-13.806886151433,-13.738016307354,-13.6581046581268,-13.567175090313,-13.4652656912804,-13.3524518609047,-13.2288269400597,-13.0945158004761,-12.9496687650681,-12.7944797277451,-12.6291786432266,-12.4540178775787,-12.2693103551865,-12.0753835439682,-11.8726434707642,-11.6615107059479,-11.4424612522125,-11.2160174846649,-10.9827406406403,-10.7432589530945,-10.4982168674469,-10.2483313083649,-9.99433302879333,-9.73701953887939,-9.47722434997559,-9.21581172943115,-8.95368003845215,-8.69175863265991,-8.43100690841675,-8.17241477966309,-7.91698694229126,-7.66572713851929,-7.41967439651489,-7.17984437942505,-6.9472770690918,-6.7229905128479,-6.50799608230591,-6.30327367782593,-6.10979843139648,-5.92850112915039,-5.76027774810791,-5.60598182678223,-5.46641731262207,-5.34234237670898,-5.23444652557373,-5.14336204528809,-5.06964492797852,-5.01378154754639,-4.97618675231934,-4.95719146728516,-4.95703411102295,-4.97588348388672,-5.0138053894043,-5.07078266143799,-5.14670562744141,-5.24137544631958,-5.3545036315918,-5.48570966720581,-5.63451957702637,-5.8003716468811,-5.98263454437256,-6.1805739402771,-6.39339971542358,-6.62022733688354,-6.86010932922363,-7.11203145980835,-7.37493324279785,-7.64768171310425,-7.92909669876099,-8.21797609329224,-8.51305818557739,-8.81308317184448,-9.1167197227478,-9.42267179489136,-9.72961854934692,-10.0362331867218,-10.3412051200867,-10.6432192325592,-10.9410083293915,-11.2333114147186,-11.5189146995544],[-10.4897756576538,-10.9020898342133,-11.2937986850739,-11.6631373167038,-12.0084980726242,-12.3284304141998,-12.6216651201248,-12.8870989084244,-13.1238108873367,-13.3310652971268,-13.5083030462265,-13.6551452875137,-13.771391749382,-13.8570154905319,-13.9121540784836,-13.937104344368,-13.932315826416,-13.8983767032623,-13.8360049724579,-13.7460384368896,-13.6294238567352,-13.4872009754181,-13.32049036026,-13.1304862499237,-12.9184334278107,-12.6856300830841,-12.4334015846252,-12.1630997657776,-11.8760900497437,-11.5737404823303,-11.2574110031128,-10.9284615516663,-10.5882225036621,-10.2380151748657,-9.87912845611572,-9.51282930374146,-9.14035654067993,-8.76291847229004,-8.38170480728149,-7.99787664413452,-7.61257410049438,-7.22691917419434,-6.84202480316162,-6.45898723602295,-6.07889747619629,-5.70284938812256,-5.33193397521973,-4.96724605560303,-4.60988998413086,-4.26097583770752,-3.92162609100342,-3.59296989440918,-3.27614784240723,-2.97230052947998,-2.68257713317871,-2.40811920166016,-2.15006256103516,-1.90952205657959,-1.68759727478027,-1.48534679412842,-1.30379199981689,-1.14389610290527,-1.00656032562256,-0.892611503601074,-0.80278491973877,-0.737722396850586,-0.69794750213623,-0.683867454528809,-0.695759773254395,-0.733759880065918,-0.797849655151367,-0.887862205505371,-1.00346565246582,-1.14416313171387,-1.30929088592529,-1.49801540374756,-1.70933151245117,-1.94208145141602,-2.1949348449707,-2.46642017364502,-2.75490856170654,-3.05864715576172,-3.37575912475586,-3.70425987243652,-4.04206705093384,-4.38702535629272,-4.73691701889038,-5.08948135375977,-5.44244194030762,-5.79351186752319,-6.14042329788208,-6.48094463348389,-6.8128981590271,-7.13418102264404,-7.44278883934021,-7.73682379722595,-8.01451897621155,-8.27425026893616,-8.51455140113831,-8.73412823677063,-8.93187570571899,-9.10686898231506,-9.25839269161224,-9.38593256473541,-9.4891836643219,-9.5680570602417,-9.62267398834229,-9.65336263179779,-9.66065436601639,-9.64528733491898,-9.60818445682526,-9.5504497885704,-9.47336277365685,-9.37835896015167,-9.26701071858406,-9.14103004336357,-9.00223281979561,-8.85252478718758,-8.69390168786049,-8.52840405702591,-8.35811239480972,-8.18513214588165,-8.01156216859818,-7.83948504924774,-7.67094171047211,-7.50792753696442,-7.35235035419464,-7.20603406429291,-7.07070159912109,-6.94794845581055,-6.83923935890198,-6.74589514732361,-6.66907835006714,-6.6097891330719,-6.56885313987732,-6.54692220687866,-6.5444610118866,-6.56175184249878,-6.5988917350769,-6.65579080581665,-6.73217630386353,-6.82759523391724,-6.94142007827759,-7.07285404205322,-7.22094202041626,-7.3845682144165,-7.56248807907104,-7.75330877304077,-7.95552921295166,-8.16753816604614,-8.38762331008911,-8.61400413513184,-8.8448224067688,-9.07817125320435,-9.31210231781006,-9.54465579986572,-9.77385425567627,-9.99773120880127,-10.2143440246582,-10.4217824935913,-10.6181917190552,-10.8017816543579,-10.9708385467529,-11.1237373352051,-11.2589654922485,-11.3751077651978,-11.4708890914917,-11.5451631546021,-11.5969247817993,-11.6253252029419,-11.6296663284302,-11.6094169616699,-11.5642118453979,-11.493857383728,-11.3983297348022,-11.2777853012085,-11.1325435638428,-10.9631052017212,-10.7701272964478,-10.5544500350952,-10.3170480728149,-10.0590753555298,-9.78180885314941,-9.48667049407959,-9.17521572113037,-8.84909725189209,-8.51009654998779,-8.16005802154541,-7.80093669891357,-7.43473339080811,-7.06349754333496,-6.68933773040771,-6.31435585021973,-5.94069004058838,-5.57043743133545,-5.20571041107178,-4.84855556488037,-4.5009765625,-4.16492557525635,-3.84224891662598,-3.53473663330078,-3.24404716491699,-2.97173500061035,-2.71923923492432,-2.48785305023193,-2.27874279022217,-2.0929126739502,-1.93123149871826,-1.79439830780029,-1.68295764923096,-1.59729385375977,-1.53762912750244,-1.5040283203125,-1.4963903427124,-1.5144739151001,-1.55787372589111,-1.62605381011963,-1.71833419799805,-1.83391189575195,-1.9718599319458,-2.13113975524902,-2.31062984466553,-2.50909805297852,-2.72526264190674,-2.95775032043457,-3.20515727996826,-3.46603393554688,-3.73889255523682,-4.02225208282471,-4.31460380554199,-4.61446714401245,-4.92036247253418,-5.23086452484131,-5.54455709457397,-5.86011075973511,-6.17620754241943,-6.491623878479,-6.80519866943359,-7.11584663391113,-7.42257642745972,-7.7244348526001,-8.02060985565186,-8.31033945083618,-8.59297513961792,-8.86793565750122,-9.13472843170166,-9.39294958114624,-9.64227628707886,-9.88246631622314,-10.1133415699005,-10.3347904682159,-10.5467617511749,-10.7492792606354,-10.9423894882202,-11.1262075901031,-11.3008604049683,-11.4665175676346,-11.623363494873,-11.7716112136841,-11.9114620685577,-12.0431237816811,-12.1668093800545,-12.2826999723911,-12.3909788131714,-12.4917747825384,-12.5852120965719,-12.6713699996471,-12.7502844929695,-12.8219486474991,-12.8863075375557,-12.9432611465454,-12.992649435997,-13.0342665910721,-13.0678499937057,-13.0930866003036,-13.1096086502075,-13.1170072555542,-13.1148198843002,-13.1025508642197,-13.0796629190445,-13.0455964803696,-12.9997587203979,-12.9415553808212,-12.8703700304031,-12.7856016159058,-12.6866550445557,-12.5729584693909,-12.4439688920975,-12.2991883158684,-12.1381828784943,-11.9605538360775,-11.7660160809755,-11.5543234348297,-11.3253749608994,-11.0791329145432,-10.8156863451004,-10.5352418422699,-10.2381248474121,-9.92481851577759,-9.5958948135376,-9.25210857391357,-8.89430952072144,-8.52351999282837,-8.14089345932007,-7.74770402908325,-7.3453631401062,-6.93540048599243,-6.51945686340332,-6.09929609298706,-5.67677974700928,-5.25382137298584,-4.83244609832764,-4.41469860076904,-4.00271511077881,-3.59862518310547,-3.2046012878418,-2.82277488708496,-2.45530223846436,-2.10429000854492,-1.77178573608398,-1.45978355407715,-1.17018127441406,-0.904813766479492,-0.665372848510742,-0.453441619873047,-0.270462036132812,-0.11772346496582,0.003631591796875,0.0926313400268555,0.148495674133301,0.170611381530762,0.158567428588867,0.112136840820312,0.0313081741333008,-0.0837497711181641,-0.232668876647949,-0.414864540100098,-0.629570007324219,-0.87580680847168,-1.15244388580322,-1.45812606811523,-1.79137325286865,-2.15049839019775,-2.5336799621582,-2.93893909454346,-3.36420202255249,-3.80723714828491,-4.26571989059448,-4.73726415634155,-5.21937227249146,-5.70954465866089,-6.20515871047974,-6.70364475250244,-7.20241117477417,-7.69885897636414,-8.1904399394989,-8.6746187210083,-9.14896678924561,-9.61110281944275,-10.0587615966797],[-5.15035337209702,-5.65860211849213,-6.13178777694702,-6.56747198104858,-6.96353983879089,-7.31821620464325,-7.630087018013,-7.89809787273407,-8.12156760692596,-8.30018508434296,-8.43400537967682,-8.52344161272049,-8.56925147771835,-8.57252198457718,-8.5346445851028,-8.45729388296604,-8.34239250421524,-8.19208788871765,-8.00870823860168,-7.79473185539246,-7.55274963378906,-7.28542423248291,-6.99544787406921,-6.68551468849182,-6.3582718372345,-6.01629281044006,-5.66204333305359,-5.29785013198853,-4.92587518692017,-4.54809951782227,-4.16630077362061,-3.78204774856567,-3.39668035507202,-3.0113263130188,-2.6268892288208,-2.244065284729,-1.86335420608521,-1.48507118225098,-1.10938119888306,-0.736312866210938,-0.365788459777832,0.00233983993530273,0.368265628814697,0.732186794281006,1.09428024291992,1.45466709136963,1.81337738037109,2.170325756073,2.5252833366394,2.87785863876343,3.22747182846069,3.57333993911743,3.91448259353638,4.24969911575317,4.57757806777954,4.89650440216064,5.20466899871826,5.50008821487427,5.78061676025391,6.04399442672729,6.28785109519958,6.50976157188416,6.70727491378784,6.87794947624207,7.01939988136292,7.12934231758118,7.20562481880188,7.2462842464447,7.24956846237183,7.2139847278595,7.13833618164062,7.02174353599548,6.86368012428284,6.66399097442627,6.4229052066803,6.14105844497681,5.81949687004089,5.45966649055481,5.0634241104126,4.63300848007202,4.17105555534363,3.68054127693176,3.16477131843567,2.62735772132874,2.07217311859131,1.50331544876099,0.925073623657227,0.341872692108154,-0.241773128509521,-0.821292400360107,-1.39211678504944,-1.94972610473633,-2.48969340324402,-3.00773072242737,-3.49974608421326,-3.96186256408691,-4.39048218727112,-4.78230309486389,-5.13436317443848,-5.44407290220261,-5.70923751592636,-5.92806711792946,-6.09921248629689,-6.22176419198513,-6.2952615916729,-6.31970852613449,-6.29555410146713,-6.22369718551636,-6.10546368360519,-5.94261586666107,-5.73730158805847,-5.49205672740936,-5.20975971221924,-4.89362132549286,-4.54712402820587,-4.17402017116547,-3.77826988697052,-3.36399102210999,-2.9354687333107,-2.49705296754837,-2.05314683914185,-1.60817724466324,-1.16651457548141,-0.732476469129324,-0.310243621468544,0.0961276888847351,0.482796117663383,0.846128456294537,1.18273550271988,1.48952221125364,1.7636791691184,2.00273134000599,2.20454216003418,2.36732132732868,2.48965004086494,2.57047271728516,2.60910993814468,2.60525238513947,2.55895745754242,2.47064113616943,2.34107184410095,2.17135214805603,1.96291089057922,1.71747326850891,1.43705129623413,1.12393426895142,0.780625343322754,0.409878253936768,0.0146183967590332,-0.402060508728027,-0.836904525756836,-1.28656244277954,-1.74757051467896,-2.21641731262207,-2.68952465057373,-3.16332578659058,-3.63424825668335,-4.09873962402344,-4.55332469940186,-4.99458122253418,-5.41920471191406,-5.82400703430176,-6.20592784881592,-6.5620813369751,-6.88974666595459,-7.18641185760498,-7.44976329803467,-7.67772006988525,-7.86845111846924,-8.02036476135254,-8.13214206695557,-8.20273780822754,-8.23138904571533,-8.21762371063232,-8.16125965118408,-8.06241989135742,-7.92151737213135,-7.73926448822021,-7.51665782928467,-7.25499534606934,-6.95584011077881,-6.62103939056396,-6.25267696380615,-5.8530912399292,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,5.22549033164978,5.31912422180176,5.37341618537903,5.3887255191803,5.365718126297,5.3053343296051,5.2087938785553,5.07756233215332,4.9133563041687,4.71810781955719,4.49394965171814,4.24319791793823,3.96829426288605,3.67183887958527,3.35649418830872,3.02503049373627,2.68022489547729,2.32488262653351,1.96180582046509,1.59372282028198,1.22333693504333,0.853222370147705,0.485856533050537,0.12356424331665,-0.231468200683594,-0.577255249023438,-0.911962985992432,-1.23398447036743,-1.54191410541534,-1.83456563949585,-2.11097729206085,-2.37037944793701,-2.61226046085358,-2.83629620075226,-3.04239046573639,-3.23063659667969,-3.40131723880768,-3.55489355325699,-3.69200152158737,-3.81342780590057,-3.92008328437805,-4.01300364732742,-4.09332358837128,-4.16227501630783,-4.22113969922066,-4.27126626670361,-4.31402835994959,-4.35081746894866,-4.38301791250706,-4.41201171278954,-4.43914094567299,-4.46569436788559,-4.49291175603867,-4.52193838357925,-4.55385375022888,-4.58960330486298,-4.63004148006439,-4.67588973045349,-4.72772228717804,-4.78597342967987,-4.8509087562561,-4.92264652252197,-5.00111103057861,-5.08607029914856,-5.17709040641785,-5.27355980873108,-5.37468338012695,-5.47948622703552,-5.58680367469788,-5.69530725479126,-5.80349588394165,-5.90971684455872,-6.01217794418335,-6.10896396636963,-6.19805455207825,-6.27733159065247,-6.34463596343994,-6.39776372909546,-6.43450045585632,-6.45264768600464,-6.45007252693176,-6.42469894886017,-6.37459075450897,-6.29791808128357,-6.19305884838104,-6.05856800079346,-5.89322601258755,-5.69607663154602,-5.46642482280731,-5.20389866828918,-4.90838348865509,-4.58014488220215,-4.21971893310547,-3.82802367210388,-3.40629649162292,-2.95610380172729,-2.47932815551758,-1.9781665802002,-1.45510149002075,-0.912911891937256,-0.354625225067139,0.216550350189209,0.797152519226074,1.38361406326294,1.97217988967896,2.55903148651123,3.14027070999146,3.71201610565186,4.27032804489136,4.81135416030884,5.3313159942627,5.82654094696045,6.29351139068604,6.72883653640747,7.12937021255493,7.49216938018799,7.8145432472229,8.09407043457031,8.32859468460083,8.51626873016357,8.65556669235229,8.74526214599609,8.78448820114136,8.77267694473267,8.70963668823242,8.59548306465149,8.43066835403442,8.21600389480591,7.95261311531067,7.64196300506592,7.2857871055603,6.88618206977844,6.44547128677368,5.96630120277405,5.45156073570251,4.90439343452454,4.32811737060547,3.72630286216736,3.10268354415894,2.46111083030701,1.80560040473938,1.14020490646362,0.469142198562622,-0.203431606292725,-0.873330354690552,-1.53638386726379,-2.18851047754288,-2.8256843984127,-3.44405767321587,-4.03992381691933,-4.60977900028229],[-0.642516851425171,-1.1776008605957,-1.65989089012146,-2.08615219593048,-2.45371723175049,-2.7605317234993,-3.00518569350243,-3.18694768100977,-3.30577251315117,-3.36231917142868,-3.3579421043396,-3.29467535018921,-3.17521297931671,-3.00286829471588,-2.78152573108673,-2.51558455824852,-2.20988824218512,-1.86965024471283,-1.50037157535553,-1.10774397850037,-0.697564959526062,-0.275634765625,0.152343511581421,0.580850124359131,1.00465571880341,1.41889929771423,1.81917798519135,2.20161402225494,2.56292283535004,2.90046298503876,3.21227675676346,3.49711138010025,3.7544387280941,3.98444195836782,4.18800254911184,4.36667017638683,4.52260541915894,4.6585328578949,4.77765494585037,4.88358038663864,4.98022949695587,5.07172709703445,5.16231215000153,5.25621688365936,5.35757112503052,5.47029149532318,5.5979745388031,5.74381101131439,5.91048991680145,6.10012745857239,6.3141964673996,6.55347335338593,6.81801068782806,7.10710310935974,7.41928100585938,7.75233340263367,8.10331511497498,8.46860408782959,8.84393715858459,9.22451043128967,9.60501885414124,9.97978639602661,10.3428399562836,10.6880300045013,11.0091264247894,11.2999560832977,11.554491519928,11.7669773101807,11.9320259094238,12.044723033905,12.1007256507874,12.0963358879089,12.0285754203796,11.89524269104,11.6949586868286,11.4272060394287,11.0923457145691,10.6916084289551,10.2270979881287,9.70176029205322,9.11936569213867,8.48443579673767,7.8021924495697,7.07850360870361,6.31979322433472,5.53296613693237,4.72531819343567,3.90444397926331,3.07812982797623,2.2542836368084,1.44082279503345,0.645584136247635,-0.123767137527466,-0.859817385673523,-1.55551145225763,-2.20419155061245,-2.79970329999924,-3.33643478155136,-3.80938446521759,-4.21421444416046,-4.54728889465332,-4.80569088459015,-4.98727023601532,-5.09065115451813,-5.11522936820984,-5.06120085716248,-4.92952299118042,-4.72191762924194,-4.44083070755005,-4.08943319320679,-3.67154347896576,-3.19161814451218,-2.6546713411808,-2.06625062227249,-1.43234145641327,-0.759337782859802,-0.0539500713348389,0.676885366439819,1.42601239681244,2.18621098995209,2.95023798942566,3.71086835861206,4.4610458612442,5.19387006759644,5.90274626016617,6.58136823773384,7.22385577112436,7.82475765049458,8.37909984588623,8.88246458768845,9.33097159862518,9.72134804725647,10.0509270429611,10.3176465034485,10.5200769901276,10.6573956012726,10.7293858528137,10.7364132404327,10.6794002056122,10.5598030090332,10.3795652389526,10.1410918235779,9.84720754623413,9.50109815597534,9.10628437995911,8.66659092903137,8.18604683876038,7.66891896724701,7.11961245536804,6.5426432788372,5.94263735413551,5.32424318790436,4.69215285778046,4.05102205276489,3.40550255775452,2.76016449928284,2.11949729919434,1.48791980743408,0.869703769683838,0.269026279449463,-0.310110569000244,-0.863856792449951,-1.38851690292358,-1.88061189651489,-2.33683300018311,-2.75412178039551,-3.12962770462036,-3.4607572555542,-3.74519014358521,-3.98086738586426,32767,-4.2992992401123,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,10.6532304286957,10.8485367298126,10.9913971424103,11.0813913345337,11.1185927391052,11.1035461425781,11.0372619628906,10.9212236404419,10.7573609352112,10.5480511188507,10.2960648536682,10.0045607089996,9.67705869674683,9.31738781929016,8.9296452999115,8.51814430952072,8.087397467345,7.6420202255249,7.18671548366547,6.72618961334229,6.26510977745056,5.80807256698608,5.35947561264038,4.92357754707336,4.5043420791626,4.10545086860657,3.73024940490723,3.38172006607056,3.06241416931152,2.77451467514038,2.51971006393433,2.29927062988281,2.11399841308594,1.96424722671509,1.84994316101074,1.77057504653931,1.7252368927002,1.71264362335205,1.73116636276245,1.77886486053467,1.85352611541748,1.9526994228363,2.07371830940247,2.21378803253174,2.36996006965637,2.53921675682068,2.71848130226135,2.90466451644897,3.09469032287598,3.28548693656921,3.47408485412598,3.65758204460144,3.83316802978516,3.99815249443054,4.14998495578766,4.28624880313873,4.40470254421234,4.50325787067413,4.58002328872681,4.6332870721817,4.66155278682709,4.66355299949646,4.63825106620789,4.58487558364868,4.50290107727051,4.3921229839325,4.25261068344116,4.08478856086731,3.88940453529358,3.66756153106689,3.42072606086731,3.15075039863586,2.85984826087952,2.55062556266785,2.22606492042542,1.88947939872742,1.54454517364502,1.1952223777771,0.84579610824585,0.500741481781006,0.164735317230225,-0.157411098480225,-0.460795402526855,-0.740536451339722,-0.991786122322083,-1.20985722541809,-1.39023286104202,-1.52869117259979,-1.62135316431522,-1.66473692655563,-1.6558578312397,-1.59224700927734,-1.47203832864761,-1.29393774084747,-1.0573715865612,-0.762362718582153,-0.409689426422119,-0.000779628753662109,0.462261915206909,0.976680040359497,1.53909873962402,2.14557552337646,2.7916145324707,3.47224068641663,4.18213105201721,4.91555571556091,5.66658842563629,6.42903769016266,7.19663774967194,7.96305584907532,8.72205030918121,9.46738290786743,10.1930383443832,10.8932129740715,11.56237834692,12.1953413933516,12.7872155606747,13.3335641622543,13.8303601145744,14.274010181427,14.661393404007,14.9898245334625,15.2570924758911,15.4614826440811,15.6016933917999,15.6769292354584,15.6867802143097,15.631334066391,15.5110483169556,15.3267877101898,15.0798554420471,14.7719035148621,14.404993057251,13.9814858436584,13.5041728019714,12.9761085510254,12.400731086731,11.7817850112915,11.1233358383179,10.4296865463257,9.7054750919342,8.95558571815491,8.18509864807129,7.39933860301971,6.60375010967255,5.8040322214365,5.00586241483688,4.21502315998077,3.43730890750885,2.67844009399414,1.94408750534058,1.23971247673035,0.570563554763794,-0.058380126953125],[-0.9391770362854,-1.47650480270386,-1.942626953125,-2.33254909515381,-2.64210796356201,-2.86807799339294,-3.00827324390411,-3.06162744760513,-3.02825775742531,-2.90951399132609,-2.70799371600151,-2.4275444149971,-2.07323771715164,-1.65131461620331,-1.16911135613918,-0.634956777095795,-0.0580463409423828,0.551698923110962,1.1838002204895,1.82740372419357,2.47146564722061,3.10496070981026,3.71708815544844,4.297473102808,4.83637374639511,5.32487452030182,5.75506985187531,6.12022566795349,6.41492342948914,6.63518214225769,6.77855205535889,6.84417104721069,6.83280181884766,6.74682402610779,6.59019827842712,6.36840462684631,6.08832681179047,5.75812792778015,5.3870837688446,4.98540323972702,4.56400942802429,4.13431885838509,3.70800720900297,3.29674260318279,2.91196492314339,2.56462413072586,2.26493263244629,2.02216380834579,1.84442949295044,1.73850440979004,1.70967330038548,1.76159901916981,1.89624257385731,2.11380288004875,2.41269493103027,2.78958296775818,3.2394232749939,3.75556349754333,4.32986092567444,4.9528591632843,5.61393690109253,6.30154418945312,7.00341057777405,7.70678496360779,8.39867401123047,9.06611156463623,9.69637393951416,10.2772388458252,10.7971897125244,11.2456383705139,11.6131076812744,11.8913912773132,12.0736861228943,12.1546945571899,12.1307048797607,11.9996380805969,11.7610626220703,11.4161672592163,10.9677271842957,10.4200236797333,9.77877640724182,9.05100178718567,8.24487924575806,7.36963033676147,6.43535006046295,5.45283484458923,4.43343263864517,3.38886246085167,2.33104138448834,1.27194717526436,0.223445892333984,-0.802846536040306,-1.79569929838181,-2.74438500404358,-3.63882076740265,-4.46961331367493,-5.22819995880127,-5.90687870979309,-6.4988956451416,-6.99849343299866,-7.40094590187073,-7.7025682926178,-7.90076494216919,-7.99402356147766,-7.98190236091614,-7.86505722999573,-7.64518332481384,-7.32501101493835,-6.90825533866882,-6.39960694313049,-5.80463361740112,-5.12976384162903,-4.38217830657959,-3.56977558135986,-2.70104932785034,-1.78502935171127,-0.831161141395569,0.150818347930908,1.15091741085052,2.15909957885742,3.16535484790802,4.15978157520294,5.13279402256012,6.07513630390167,6.97809278964996,7.83349311351776,8.63389712572098,9.37262606620789,10.0438215099275,10.6425725221634,11.1648632884026,11.6076888442039,11.9690135717392,12.2477661371231,12.4438437223434,12.5580546855927,12.59206366539,12.5483446121216,12.4300792217255,12.2410922050476,11.9857466220856,11.6688570976257,11.2955894470215,10.8713459968567,10.401698589325,9.89230155944824,9.34876203536987,8.77664113044739,8.18132996559143,7.56801557540894,6.94167506694794,6.30699443817139,5.66840804368258,5.03004062175751,4.39575970172882,3.76916337013245,3.15358400344849,2.55217385292053,1.96786499023438,1.40345525741577,0.861597061157227,0.344842433929443,-0.144317150115967,-0.603466510772705,32767,-1.42225027084351,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,11.7075161933899,11.8447179794312,11.9203610420227,11.9337892532349,11.8849320411682,11.7743606567383,11.60325050354,11.3734397888184,11.0873994827271,10.7482488155365,10.3597108125687,9.92612883448601,9.45241120457649,8.94397568702698,8.4067325592041,7.84695172309875,7.27127408981323,6.68654823303223,6.09980487823486,5.51810646057129,4.94847440719604,4.39779758453369,3.87265968322754,3.37934684753418,2.92363834381104,2.51079082489014,2.14540386199951,1.83139610290527,1.57191181182861,1.369309425354,1.22508907318115,1.13992023468018,1.11363124847412,1.14524269104004,1.2329797744751,1.37434864044189,1.56618022918701,1.80473709106445,2.08576011657715,2.40457439422607,2.75620460510254,3.1354341506958,3.53690814971924,3.95525932312012,4.38511228561401,4.82122611999512,5.25854969024658,5.69222497940063,6.11770486831665,6.53066110610962,6.9271445274353,7.30349445343018,7.65635800361633,7.98265933990479,8.27962183952332,8.54471039772034,8.77561020851135,8.97022032737732,9.12659764289856,9.24296689033508,9.31770837306976,9.34934425354004,9.33654081821442,9.27816331386566,9.1732292175293,9.02103424072266,8.82109653949738,8.57332897186279,8.27798342704773,7.93577015399933,7.5478903055191,7.11613190174103,6.64286577701569,6.13113272190094,5.58468544483185,5.00791370868683,4.40598499774933,3.78467404842377,3.15051865577698,2.51056396961212,1.87240588665009,1.24407494068146,0.63395082950592,0.0505752563476562,-0.497437953948975,-1.0015777349472,-1.45356914401054,-1.84551546722651,-2.1701203584671,-2.42075043916702,-2.59165191650391,-2.67802882194519,-2.67618107795715,-2.58354192972183,32767,32767,32767,-1.29848937690258,-0.75813764333725,-0.138334631919861,0.554830849170685,1.31427925825119,2.13203439116478,2.99939279258251,3.90713986754417,4.8455638885498,5.80479800701141,6.77479732036591,7.74564599990845,8.70762419700623,9.6514527797699,10.5682346820831,11.4497315883636,12.2883930206299,13.0774228572845,13.8108460903168,14.4834516048431,15.0909352302551,15.629819393158,16.0974125862122,16.4918069839478,16.8117799758911,17.0567669868469,17.2268099784851,17.3224158287048,17.344596862793,17.294668674469,17.1743307113647,16.9854860305786,16.7302398681641,16.4109292030334,16.0300030708313,15.5900850296021,15.0938668251038,14.5442824363708,13.9443402290344,13.2972841262817,12.6065793037415,11.8759636878967,11.1093909740448,10.3112028837204,9.48608422279358,8.63905310630798,7.77554005384445,6.90131378173828,6.02263760566711,5.14598536491394,4.27821016311646,3.42641544342041,2.59786081314087,1.79997825622559,1.04015398025513,0.325679302215576,-0.336339473724365],[-6.08190381526947,-6.68398189544678,-7.20090281963348,-7.62377619743347,-7.94473814964294,-8.15719723701477,-8.25605177879333,-8.23788499832153,-8.10113549232483,-7.84622263908386,-7.47564196586609,-6.99400758743286,-6.40805588662624,-5.72659856081009,-4.96042597293854,-4.12216448783875,-3.22608828544617,-2.28789091110229,-1.3244104385376,-0.353328227996826,0.607158660888672,1.53869867324829,2.4231481552124,3.24294137954712,3.98147022724152,4.62343841791153,5.15521129965782,5.56512242555618,5.84376513957977,5.98422849178314,5.98229479789734,5.83657097816467,5.54857850074768,5.12277340888977,4.56649684906006,3.88988727331161,3.10569459199905,2.22906309366226,1.27724534273148,0.269276857376099,-0.774417519569397,-1.83242398500443,-2.88277758657932,-3.90345093607903,-4.87277972698212,-5.76994585990906,-6.57544684410095,-7.27148389816284,-7.84238052368164,-8.2749228477478,-8.55864763259888,-8.68609166145325,-8.65294909477234,-8.45817971229553,-8.10403752326965,-7.59602200984955,-6.94276535511017,-6.15584644675255,-5.2495513856411,-4.24052953720093,-3.14749097824097,-1.99075984954834,-0.791862726211548,0.426923274993896,1.64302778244019,2.83408665657043,3.97833496332169,5.05507749319077,6.04505431652069,6.93081164360046,7.6970055103302,8.33065819740295,8.82133674621582,9.16128635406494,9.34551572799683,9.37179327011108,9.24061584472656,8.95507955551147,8.52074551582336,7.9454288482666,7.23899626731873,6.41307532787323,5.48077237606049,4.45640754699707,3.35520057380199,2.1929774582386,0.985895991325378,-0.249827563762665,-1.49817501008511,-2.7435188293457,-3.97084081172943,-5.16588091850281,-6.31527829170227,-7.40667486190796,-8.42882108688354,-9.37157297134399,-10.2259919643402,-10.984304189682,-11.6399395465851,-12.1875114440918,-12.6228034496307,-12.9427244663239,-13.1453195810318,-13.2297347784042,-13.1961799860001,-13.0459550619125,-12.7813900709152,-12.4058507680893,-11.9237138032913,-11.3403774499893,-10.6622055768967,-9.89652574062347,-9.05156195163727,-8.13642060756683,-7.16099846363068,-6.13591694831848,-5.0724071264267,-3.98218965530396,-2.87738752365112,-1.77029806375504,-0.673264682292938,0.401453375816345,1.44197487831116,2.43686521053314,3.37543785572052,4.24783790111542,5.04529297351837,5.76022499799728,6.38636869192123,6.91893911361694,7.35462290048599,7.69170665787533,7.93003571033478,8.07099169492722,8.11744153499603,8.0736483335495,7.945103764534,7.73843169212341,7.46113562583923,7.12145829200745,6.72812914848328,6.29017353057861,5.81667637825012,5.31655955314636,4.79841363430023,4.27030852437019,3.7396012544632,3.21286821365356,2.6957643032074,2.19295763969421,1.70814990997314,1.24402403831482,0.80233097076416,0.38392448425293,-0.0111274719238281,-0.383405685424805,-0.734061717987061,-1.06459760665894,-1.37676954269409,-1.67240571975708,-1.95327997207642,-2.22096467018127,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,7.24870920181274,7.42172527313232,7.53675103187561,7.59127926826477,7.58323645591736,7.5110958814621,7.37392687797546,7.17145228013396,6.90416884422302,6.57335817813873,6.18118453025818,5.73072218894958,5.22599029541016,4.67196987569332,4.07458806037903,3.44068026542664,2.77791452407837,2.09474802017212,1.40024709701538,0.704028129577637,0.016021728515625,-0.653668403625488,-1.29493427276611,-1.89794921875,-2.45326614379883,-2.95212650299072,-3.38657760620117,-3.74971866607666,-4.03579711914062,-4.24041748046875,-4.36054420471191,-4.39469051361084,-4.34286499023438,-4.20660209655762,-3.98887348175049,-3.69409847259521,-3.32791805267334,-2.89711284637451,-2.40939331054688,-1.87321472167969,-1.29758930206299,-0.691803932189941,-0.0652523040771484,0.572780609130859,1.21337604522705,1.84805679321289,2.46903514862061,3.0693187713623,3.64274120330811,4.18411111831665,4.68909883499146,5.15435934066772,5.57739448547363,5.95649480819702,6.29061985015869,6.5792829990387,6.82244801521301,7.02029919624329,7.17319822311401,7.28147268295288,7.34533524513245,7.36479377746582,7.33955216407776,7.26898264884949,7.15215659141541,6.98778057098389,6.77437889575958,6.51024782657623,6.1937438249588,5.82328486442566,5.39759254455566,4.91583216190338,4.37784600257874,3.78425276279449,3.13668990135193,2.43793773651123,1.69194793701172,0.904083251953125,0.0809799432754518,-0.769238293170929,-1.63722687959671,-2.51240235567093,-3.38310235738754,-4.23673623800278,-5.06010085344315,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,10.6973299980164,11.5073919296265,12.2213940620422,12.836377620697,13.3511443138123,13.7660870552063,14.0829772949219,14.3048214912415,14.4356446266174,14.4802279472351,14.4439425468445,14.3324270248413,14.1514947414398,13.9068019390106,13.6037962436676,13.2474563121796,12.8422367572784,12.3920440673828,11.9001185894012,11.3690936565399,10.8009490966797,10.1972365379333,9.55900430679321,8.88704776763916,8.18203091621399,7.44464802742004,6.67570829391479,5.87641370296478,5.04849258065224,4.19426333904266,3.31684637069702,2.42017364501953,1.50925230979919,0.589885711669922,-0.331079959869385,-1.24587869644165,-2.14593744277954,-3.02189254760742,-3.86384105682373,-4.66149687767029,-5.40433096885681],[-12.2316269874573,-13.0200672149658,-13.7188563346863,-14.3126339912415,-14.7871851921082,-15.1298627853394,-15.3299837112427,-15.3791937828064,-15.2717750072479,-15.0049002170563,-14.5788311958313,-13.9970442056656,-13.2662789225578,-12.3965258598328,-11.4009214639664,-10.2955758571625,-9.09932684898376,-7.83343768119812,-6.52120113372803,-5.18751859664917,-3.8584189414978,-2.56052875518799,-1.32052564620972,-0.164587020874023,0.882202625274658,1.79639911651611,2.55675578117371,3.14471411705017,3.54488909244537,3.74546653032303,3.73855447769165,3.52043570950627,3.09175759553909,2.45761439204216,1.62753027677536,0.615370392799377,-0.560888327658176,-1.87946158647537,-3.315150141716,-4.8398255109787,-6.42301511764526,-8.03250575065613,-9.63503503799438,-11.1970367431641,-12.6853399276733,-14.0679306983948,-15.314709186554,-16.3981289863586,-17.2938842773438,-17.9814696311951,-18.4446716308594,-18.6719574928284,-18.6567735671997,-18.3977048397064,-17.8985192775726,-17.1680915355682,-16.2202033996582,-15.0732204914093,-13.7496710419655,-12.2756786346436,-10.6804015636444,-8.9953088760376,-7.25345253944397,-5.48871088027954,-3.73502206802368,-2.02555751800537,-0.392075538635254,1.13582277297974,2.53128051757812,3.77072429656982,4.83430862426758,5.70624697208405,6.37500837445259,6.83342909812927,7.07870948314667,7.11228966712952,6.93963575363159,6.56990718841553,6.01557493209839,5.29196214675903,4.41676449775696,3.40949082374573,2.29091507196426,1.08257476985455,-0.193769812583923,-1.51660921238363,-2.8651151061058,-4.2195051908493,-5.56137251853943,-6.87387681007385,-8.14194011688232,-9.35231757164001,-10.493622303009,-11.5562875270844,-12.5325047969818,-13.4160170555115,-14.2020485401154,-14.8870396614075,-15.4685153961182,-15.9448865652084,-16.3152732849121,-16.5793536305428,-16.7372739315033,-16.789568156004,-16.737098544836,-16.581099241972,-16.3231817483902,-15.9654181003571,-15.5104352831841,-14.9615609049797,-14.3229234814644,-13.599584877491,-12.797647356987,-11.9243779182434,-10.9882500171661,-9.99897391349077,-8.96746228635311,-7.90577775239944,-6.82702320814133,-5.74511742591858,-4.6745947599411,-3.63038218021393,-2.62738889455795,-1.68028530478477,-0.80303943157196,-0.00864911079406738,0.691274642944336,1.28680658340454,1.76998543739319,2.13512134552002,2.37890911102295,2.50063025951385,2.50215661525726,2.38795161247253,2.16494759917259,1.84242048114538,1.43165266513824,0.945733480155468,0.399077415466309,-0.192905187606812,-0.814285516738892,-1.44906091690063,-2.08160591125488,-2.69714760780334,-3.28212022781372,-3.82455205917358,-4.31440210342407,-4.74375629425049,-5.1070122718811,-5.40099334716797,-5.6248984336853,-5.78027391433716,-5.87083864212036,-5.90226745605469,-5.88192272186279,-5.81848049163818,-5.72162103652954,-5.60159397125244,-5.46881628036499,-5.3335223197937,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,1.25734233856201,1.04554843902588,0.761059761047363,0.403191089630127,-0.027318000793457,-0.528106689453125,-1.09510779380798,-1.72248858213425,-2.40263223648071,-3.12617498636246,-3.88216724991798,-4.65819084644318,-5.44066953659058,-6.21511220932007,-6.96645951271057,-7.67952346801758,-8.33929491043091,-8.93145704269409,-9.44271326065063,-9.86126327514648,-10.177089214325,-10.3823442459106,-10.4715065956116,-10.4417147636414,-10.2927732467651,-10.0272002220154,-9.65016412734985,-9.16943264007568,-8.59504365921021,-7.93907737731934,-7.21527910232544,-6.43865013122559,-5.62509059906006,-4.79077959060669,-3.95183563232422,-3.12384366989136,-2.32135820388794,-1.55763530731201,-0.84422492980957,-0.190696716308594,0.395427227020264,0.908909559249878,1.34666180610657,1.70777916908264,1.99333655834198,2.20617997646332,2.3506156206131,2.43206870555878,2.45676493644714,2.43124759197235,2.36208641529083,2.25542938709259,2.11669397354126,1.95028471946716,1.7593355178833,1.54555201530457,1.30919671058655,1.04897141456604,0.76223611831665,0.445051670074463,0.0925765037536621,-0.30076003074646,-0.740820169448853,-1.23338031768799,-1.78367590904236,-2.39601922035217,-3.07333400845528,-3.8167769908905,-4.62550961971283,-5.49626326560974,-6.42335367202759,-7.3983428478241,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-7.7561616897583,-6.10118722915649,-4.40088373422623,-2.68235778808594,-0.972760081291199,0.701568603515625,2.31549382209778,3.84591245651245,5.27210718393326,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,9.39386458741501,8.83565187454224,8.25569713115692,7.6634202003479,7.06622135639191,6.46943497657776,5.87625122070312,5.28777623176575,4.7031432390213,4.11985504627228,3.53389108181,2.94013774394989,2.33277207612991,1.70563372969627,1.05255132913589,0.367837518453598,-0.353298187255859,-1.11453700065613,-1.91801905632019,-2.76419776678085,-3.65140634775162,-4.57611155509949,-5.53256374597549,-6.51291038095951,-7.50733652710915,-8.50411683320999,-9.48997807502747,-10.4503343105316,-11.3695940971375],[-14.7766132354736,-15.838002204895,-16.8141713142395,-17.6821460723877,-18.420259475708,-19.0087637901306,-19.4303770065308,-19.6707978248596,-19.7191224098206,-19.5682191848755,-19.2149767875671,-18.6605145931244,-17.9102432727814,-16.9738774299622,-15.86532445997,-14.6024956703186,-13.2070127725601,-11.7038564682007,-10.1208999156952,-8.48840379714966,-6.8384370803833,-5.20423698425293,-3.6195387840271,-2.11788606643677,-0.731898784637451,0.507440090179443,1.5714955329895,2.43464636802673,3.07493591308594,3.47464561462402,3.62080472707748,3.50560257770121,3.1267144382,2.48750707507133,1.59711903333664,0.470431350171566,-0.872118026018143,-2.40485489368439,-4.09729981422424,-5.91474056243896,-7.81895613670349,-9.76897668838501,-11.7219958305359,-13.6343564987183,-15.4625205993652,-17.1641235351562,-18.6990399360657,-20.0303316116333,-21.1252293586731,-21.9559941291809,-22.5006403923035,-22.7435684204102,-22.676016330719,-22.2963402271271,-21.6101278066635,-20.6300812959671,-19.3757719025016,-17.8731476068497,-16.1539340019226,-14.2547557353973,-12.2163076400757,-10.0822367668152,-7.89804363250732,-5.7099175453186,-3.56356382369995,-1.50298309326172,0.430536270141602,2.19949913024902,3.77105093002319,5.11773824691772,6.21808981895447,7.05700182914734,7.62592470645905,7.92285886406898,7.95218521356583,7.72428387403488,7.25500619411469,6.56496465206146,5.67876124382019,4.62409114837646,3.43081820011139,2.12999802827835,0.752911061048508,-0.6697918176651,-2.10895138606429,-3.53761464357376,-4.93164670467377,-6.27017617225647,-7.53594756126404,-8.71542072296143,-9.79882955551147,-10.7800045013428,-11.6561179161072,-12.4273047447205,-13.0961899757385,-13.6672999858856,-14.1465713977814,-14.5406701564789,-14.8564966917038,-15.1006367206573,-15.2788987755775,-15.3959494680166,-15.4550790786743,-15.4580320119858,-15.4049863815308,-15.2946484088898,-15.1244690418243,-14.8909068107605,-14.5898494720459,-14.2170631885529,-13.7686548233032,-13.2415871620178,-12.6341464519501,-11.9464230537415,-11.1806672811508,-10.3415968418121,-9.4365611076355,-8.47567380964756,-7.47171697020531,-6.43996155261993,-5.39787065982819,-4.36471450328827,-3.36095595359802,-2.40774339437485,-1.52613055706024,-0.736454248428345,-0.0575516223907471,0.493905782699585,0.90404748916626,1.16242527961731,1.26241159439087,1.20161056518555,0.982008934020996,0.610074281692505,0.0965957641601562,-0.5434849858284,-1.29161876440048,-2.12602464854717,-3.02251464128494,-3.95514822006226,-4.89707887172699,-5.82143878936768,-6.70217132568359,-7.5149359703064,-8.23782706260681,-8.8520941734314,-9.34277868270874,-9.69910907745361,-9.91483592987061,-9.98840522766113,-9.9228949546814,-9.72586154937744,-9.40901803970337,-8.98771858215332,-8.48041343688965,-7.90790033340454,-7.29257726669312,-6.65766716003418,-6.02630567550659,-5.42085886001587,-4.86205101013184,-4.36834335327148,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-2.03878879547119,-1.76744174957275,-1.5493278503418,-1.39592266082764,-1.3182954788208,-1.3265905380249,-1.42944240570068,-1.63355159759521,-1.94312286376953,-2.35952138900757,-2.88098764419556,-3.50238704681396,-4.21514844894409,-5.00733268260956,-5.86376589536667,-6.76642680168152,-7.6948356628418,-8.62660622596741,-9.53815197944641,-10.4053254127502,-11.2042760848999,-11.912132024765,-12.5079200267792,-12.9731159210205,-13.2925107479095,-13.4545390605927,-13.4519786834717,-13.2821080684662,-12.9468562602997,-12.4528079032898,-11.8111391067505,-11.0371446609497,-10.1498174667358,-9.17125725746155,-8.12589073181152,-7.03982508182526,-5.93978476524353,-4.85236883163452,-3.80319094657898,-2.81598377227783,-1.9119758605957,-1.10915851593018,-0.421761989593506,0.139978885650635,0.5701904296875,0.867242813110352,1.03371953964233,1.07606554031372,1.00419855117798,0.830910682678223,0.571154117584229,0.24139404296875,-0.141312599182129,-0.560003519058228,-0.998651742935181,-1.44289028644562,-1.8806217610836,-2.30256921052933,-2.70265769958496,-3.07817095518112,-3.42996767163277,-3.76223421096802,-4.08233833312988,-4.40027940273285,-4.72825145721436,-5.07990312576294,-5.46960926055908,-5.91162085533142,-6.41926419734955,-7.00406950712204,-7.67500923573971,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-2.49851942062378,-0.285912990570068,1.83587789535522,3.83038377761841,5.66503572463989,7.31179451942444,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,9.09552145004272,8.20861741155386,7.2988098859787,32767,5.50355362892151,4.65673494338989,3.86328554153442,3.13264608383179,2.47001361846924,1.87638425827026,1.34869003295898,0.880183219909668,0.460962295532227,0.0784235000610352,-0.282060384750366,-0.636355876922607,-1.00089979171753,-1.39203321933746,-1.82521753758192,-2.31428003311157,-2.87100982666016,-3.50446626543999,-4.22071498259902,-5.02221696823835,-5.90807285904884,-6.8736194819212,-7.91057139635086,-9.00723731517792,-10.1486797332764,-11.3172166347504,-12.4928283691406,-13.6536450386047],[-12.0171637535095,-13.3056676387787,-14.5129351615906,-15.6106247901917,-16.5722079277039,-17.3736410140991,-17.9939565658569,-18.4157605171204,-18.6256437301636,-18.6144981384277,-18.377724647522,-17.9153642654419,-17.2321050167084,-16.337235212326,-15.244478225708,-13.9717695116997,-12.5409458428621,-10.9773917198181,-9.30958247184753,-7.56861090660095,-5.78764748573303,-4.0013484954834,-2.24523115158081,-0.555022716522217,1.03403067588806,2.48786807060242,3.77433085441589,4.86384921520948,5.73016595840454,6.35098516941071,6.70860385894775,6.79046392440796,6.58963918685913,6.10521745681763,5.34256815910339,4.31348741054535,3.03619527816772,1.53515788912773,-0.159217894077301,-2.01107719540596,-3.97980082035065,-6.02077960968018,-8.08639979362488,-10.1271448135376,-12.0927548408508,-13.9335017204285,-15.6015272140503,-17.0520887374878,-18.2448906898499,-19.1452403068542,-19.7251360416412,-19.9641876220703,-19.8503358364105,-19.3803735971451,-18.5601959228516,-17.4047875367105,-15.9379830360413,-14.1918983459473,-12.2061681747437,-10.0268387794495,-7.70521783828735,-5.2963809967041,-2.85764217376709,-0.446934700012207,1.87885046005249,4.0655632019043,6.06325197219849,7.82764935493469,9.32138347625732,10.5149981379509,11.3877274096012,11.9279496669769,12.1333532333374,12.0108008384705,11.5758986473083,10.8522899150848,9.87068462371826,8.66763734817505,7.28422665596008,5.7645628452301,4.15424859523773,2.49882210791111,0.842219591140747,-0.774556398391724,-2.31472808122635,-3.74677029252052,-5.04523262381554,-6.19126904010773,-7.17294692993164,-7.98519062995911,-8.6295473575592,-9.11361956596375,-9.45031428337097,-9.65690898895264,-9.75393152236938,-9.76394605636597,-9.71038436889648,-9.61623215675354,-9.50294494628906,-9.3893678188324,-9.29083156585693,-9.21848380565643,-9.17882084846497,-9.17345523834229,-9.19912934303284,-9.24800753593445,-9.30817890167236,-9.36433029174805,-9.39868402481079,-9.39199304580688,-9.32465553283691,-9.17783880233765,-8.93463110923767,-8.58108353614807,-8.10716342926025,-7.50752425193787,-6.78205692768097,-5.9363004565239,-4.98149397596717,-3.93442159891129,-2.81701278686523,-1.65572628378868,-0.480599164962769,0.675698757171631,1.77918195724487,2.79572105407715,3.69247817993164,4.43915891647339,5.00927019119263,5.38130855560303,5.53963661193848,5.47532486915588,5.18658661842346,4.67908787727356,3.96583199501038,3.06694734096527,2.00892448425293,0.823974102735519,-0.451239943504333,-1.77674812078476,-3.11066055297852,-4.41070580482483,-5.63565397262573,-6.74687361717224,-7.70963191986084,-8.49433469772339,-9.07765960693359,-9.44325733184814,-9.58239603042603,-9.49420642852783,-9.18565368652344,-8.67124700546265,-7.9724702835083,-7.11689567565918,-6.13719654083252,-5.06987476348877,-3.95386600494385,-2.82923460006714,-1.73554039001465,-0.710617542266846,0.210921287536621,0.998777627944946,1.62790727615356,2.07944059371948,2.34107184410095,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-4.97716236114502,-4.58800411224365,-4.15045928955078,-3.66499614715576,-3.13563919067383,-2.57004165649414,-1.97952461242676,-1.37879180908203,-0.785511016845703,-0.219722747802734,0.296951293945312,0.742212295532227,1.09396839141846,1.33148956298828,1.43627738952637,1.39316749572754,1.1911563873291,0.824069023132324,0.291231155395508,-0.402231216430664,-1.24524164199829,-2.22083806991577,-3.30659818649292,-4.47515273094177,-5.69497132301331,-6.93142914772034,-8.14784157276154,-9.30681955814362,-10.3714650273323,-11.3068910241127,-12.0812385678291,-12.6671965122223,-13.0426709651947,-13.1920640468597,-13.106671333313,-12.7851076126099,-12.2334504127502,-11.4652280807495,-10.5008249282837,-9.36688423156738,-8.09539985656738,-6.72255992889404,-5.28763961791992,-3.83138465881348,-2.39472961425781,-1.01734924316406,0.263765335083008,1.41548538208008,2.40974426269531,3.22446632385254,3.84409523010254,4.26017570495605,4.47132873535156,4.48318862915039,4.30793762207031,3.96364784240723,3.47336959838867,2.86397171020508,2.16499328613281,1.40721225738525,0.621357917785645,-0.163238525390625,-0.919967651367188,-1.62602806091309,-2.26338863372803,-2.81953883171082,-3.28789150714874,-3.66813725233078,-3.96604073047638,-4.19317668676376,-4.36622405052185,-4.50620365142822,-4.63734292984009,-4.78590726852417,-4.97881937026978,-5.24229335784912,-5.60043382644653,-6.07391881942749,-6.67883348464966,-7.42554330825806,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.914253234863281,3.54386520385742,6.02695894241333,8.31540632247925,10.36723279953,12.1474962234497,13.6294407844543,32767,32767,32767,32767,32767,32767,32767,14.3919024467468,13.3829116821289,12.244677066803,11.0199928283691,9.75100255012512,8.47792148590088,7.23780965805054,6.06336808204651,4.98216485977173,4.01572561264038,3.17922830581665,2.4811692237854,1.92343139648438,1.5015549659729,1.20508718490601,1.01835775375366,0.921277523040771,0.890252351760864,0.899185657501221,0.920722246170044,0.927269816398621,0.892008945345879,0.789968132972717,0.59907603263855,0.300704002380371,-0.119447469711304,-0.671083211898804,-1.35862040519714,-2.18154239654541,-3.13408303260803,-4.20548033714294,-5.38042092323303,-6.63937306404114,-7.95934391021729,-9.31448885798454,-10.676838696003],[-6.4620144367218,-7.77797067165375,-9.00199756026268,-10.1064223051071,-11.0665013790131,-11.8609502315521,-12.4723162651062,-12.8872337341309,-13.0965604782104,-13.095395565033,-12.8830089569092,-12.4626893997192,-11.841525554657,-11.0301432609558,-10.0424196720123,-8.89516246318817,-7.60780453681946,-6.20209729671478,-4.70178723335266,-3.13233149051666,-1.5205991268158,0.105435371398926,1.71699976921082,3.28485023975372,4.77963900566101,6.17231380939484,7.43456625938416,8.53930139541626,9.46120452880859,10.1773085594177,10.6676154136658,10.9157199859619,10.9094483852386,10.6414561271667,10.1097855567932,9.31832695007324,8.2771919965744,7.00290441513062,5.51847466826439,3.85325285792351,2.04255712032318,0.127156496047974,-1.84754039347172,-3.83247864246368,-5.77611303329468,-7.62575793266296,-9.32909297943115,-10.8356573581696,-12.0984995365143,-13.075715303421,-13.7319345474243,-14.0396816730499,-13.9805142879486,-13.5459374189377,-12.7380138635635,-11.5696175340563,-10.0644060969353,-8.25634860992432,-6.18895030021667,-3.91405010223389,-1.49044227600098,1.01792097091675,3.54387068748474,6.0191068649292,8.37637406587601,10.5517058968544,12.4864273071289,14.1291546821594,15.4374723434448,16.3793349266052,16.9341473579407,17.0933752059937,16.8607892990112,16.252227306366,15.2949614524841,14.0266485214233,12.4939036369324,10.7505087852478,8.85546970367432,6.87083172798157,4.85940933227539,2.88253949210048,0.997846245765686,-0.74268114566803,-2.29451596736908,-3.62201464176178,-4.6995207965374,-5.51200199127197,-6.05532907694578,-6.33602623641491,-6.37068438529968,-6.18491145968437,-5.81195831298828,-5.29108747839928,-4.66562858223915,-3.98097917437553,-3.28254997730255,-2.61366409063339,-2.01369267702103,-1.51629391312599,-1.14795351028442,-0.926889896392822,-0.862318754196167,-0.954105615615845,-1.1928596496582,-1.56044912338257,-2.03092765808105,-2.57172966003418,-3.1452841758728,-3.71078252792358,-4.22612619400024,-4.6499080657959,-4.9434642791748,-5.07271146774292,-5.00990176200867,-4.73504233360291,-4.23699307441711,-3.51428735256195,-2.57540065050125,-1.43867091834545,-0.131790161132812,1.30908858776093,2.84074068069458,4.41436338424683,5.97762131690979,7.47652697563171,8.85776782035828,10.0707609653473,11.0697460174561,11.8157780170441,12.278290271759,12.436537027359,12.2805049419403,11.8115141391754,11.0422780513763,9.99666237831116,8.70873302221298,7.22179015143774,5.58660018444061,3.85962665081024,2.10097968578339,0.37204372882843,-1.26670670509338,-2.75811433792114,-4.05041933059692,-5.09918737411499,-5.86912059783936,-6.33521747589111,-6.483811378479,-6.31302452087402,-5.83277940750122,-5.06438827514648,-4.03972959518433,-2.79989528656006,-1.39366292953491,0.124404430389404,1.69619798660278,3.26203751564026,4.76321303844452,6.14393086358905,7.35359227657318,8.3485221862793,9.09344983100891,9.56285190582275,9.74161863327026,32767,9.22078037261963,8.54441738128662,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-1.93489599227905,-1.78583717346191,-1.56377220153809,-1.25489044189453,-0.850451469421387,-0.347668647766113,0.249851226806641,0.931903839111328,1.68185424804688,2.47714614868164,3.29010009765625,4.08897590637207,4.8394136428833,5.5057373046875,6.05279445648193,6.44740772247314,6.66017961502075,6.66693925857544,6.44998788833618,5.99932909011841,5.31338405609131,4.39948892593384,3.27400779724121,1.9619722366333,0.496515274047852,-1.08211994171143,-2.72800159454346,-4.390944480896,-6.01842880249023,-7.557373046875,-8.95634746551514,-10.1671705245972,-11.1471872329712,-11.8604488372803,-12.2796325683594,-12.3868713378906,-12.174524307251,-11.6456069946289,-10.8138675689697,-9.70317649841309,-8.34679412841797,-6.78615951538086,-5.06937789916992,-3.24961090087891,-1.38286590576172,0.473854064941406,2.26470947265625,3.93704986572266,5.44321823120117,6.74237442016602,7.80192565917969,8.59841156005859,9.11845016479492,9.35885620117188,9.32664108276367,9.03845596313477,8.5197639465332,7.80354309082031,6.92873382568359,5.93855857849121,4.87852668762207,3.79444313049316,2.73053932189941,1.72743225097656,0.820451736450195,0.038177490234375,-0.598758697509766,-1.07843208312988,-1.39819669723511,-1.56458234786987,-1.5929753780365,-1.50678688287735,-1.33638644218445,-1.11755466461182,-0.889856338500977,-0.694696426391602,-0.573317527770996,-0.5648193359375,-0.704185485839844,-1.02051258087158,-1.53537178039551,-2.26167106628418,-3.20254325866699,-4.3510046005249,-5.6897668838501,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,10.7459287643433,9.32236123085022,7.99486005306244,6.79976737499237,5.76598525047302,4.91397452354431,4.25562047958374,3.79404044151306,3.52388572692871,3.43196392059326,3.49795317649841,3.69562101364136,3.99398165941238,4.35870999097824,4.75347292423248,5.14160466194153,5.48742854595184,5.75751125812531,5.92192143201828,5.9554215669632,5.83797097206116,5.55565571784973,5.10070085525513,4.47210502624512,3.67493534088135,2.72037076950073,1.62517881393433,0.410882949829102,-0.896860599517822,-2.26937770843506,-3.67581033706665,-5.08409738540649],[-2.69979810714722,-3.77654671669006,-4.72780585289001,-5.53420650959015,-6.18104922771454,-6.65842508152127,-6.9611502289772,-7.0884964466095,-7.04380118846893,-6.8339364528656,-6.46870923042297,-5.96021842956543,-5.32220649719238,-4.56945788860321,-3.71724629402161,-2.78089612722397,-1.77544506639242,-0.715445935726166,0.385128557682037,1.51283338665962,2.65461052954197,3.79756438732147,4.92868757247925,6.03456282615662,7.10109043121338,8.11327338218689,9.05508613586426,9.90944480895996,10.6583595275879,11.2832064628601,11.7651705741882,12.0858464241028,12.2279629707336,12.1762261390686,11.9182364940643,11.4454069137573,10.7539036273956,9.84544157981873,8.72801053524017,7.41637569665909,5.93233335018158,4.30476048588753,2.56928098201752,0.767659425735474,-1.05310249328613,-2.84199498593807,-4.54551863670349,-6.10933661460876,-7.48020577430725,-8.60791420936584,-9.44724678993225,-9.95992493629456,-10.1163282394409,-9.89702010154724,-9.29394781589508,-8.31122905015945,-6.96558763086796,-5.28623324632645,-3.31431698799133,-1.10185027122498,1.28972959518433,3.79150974750519,6.32934635877609,8.82636415958405,11.2056324481964,13.3929867744446,15.3196339607239,16.9247794151306,18.1578950881958,18.9806537628174,19.3684816360474,19.3115072250366,18.815034866333,17.899374961853,16.5991716384888,14.9621200561523,13.047203540802,10.9224009513855,8.66219282150269,6.34469223022461,4.04865658283234,1.85052067041397,-0.17857551574707,-1.97536972165108,-3.48690760135651,-4.67245280742645,-5.50495207309723,-5.97187209129333,-6.07554113864899,-5.83277052640915,-5.27399474382401,-4.44178166985512,-3.38888567686081,-2.17593538761139,-0.868663787841797,0.464874029159546,1.75727021694183,2.94469553232193,3.96958661079407,4.78314554691315,5.34741449356079,5.63685321807861,5.63941657543182,5.35705375671387,4.80559092760086,4.01402723789215,3.02320146560669,1.88409471511841,0.655518531799316,-0.598433017730713,-1.81120443344116,-2.91668033599854,-3.85218000411987,-4.5611777305603,-4.9959089756012,-5.11956238746643,-4.90797162055969,-4.35092091560364,-3.45272654294968,-2.2322706580162,-0.722439229488373,1.03101086616516,2.9712723493576,5.03251504898071,7.14268255233765,9.22612023353577,11.2068245410919,13.0113835334778,14.5719606876373,15.8291954994202,16.734503030777,17.2522745132446,17.3612893819809,17.0557446479797,16.3455427885056,15.2561118900776,13.8273241650313,12.1122280657291,10.1748389601707,8.0877457857132,5.92939019203186,3.78083550930023,1.72278994321823,-0.167712926864624,-1.82024216651917,-3.17365622520447,-4.17867922782898,-4.79960203170776,-5.01581907272339,-4.82253313064575,-4.23091268539429,-3.26761436462402,-1.97372627258301,-0.403014183044434,1.38016510009766,3.30339789390564,5.28930675983429,7.25826793909073,9.1318953037262,10.8358001708984,12.302725315094,13.4749875068665,14.3065915107727,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,4.54919862747192,5.39987564086914,6.2911057472229,7.17900991439819,8.01619625091553,8.75422811508179,9.34565472602844,9.74653816223145,9.91856026649475,9.83088159561157,9.46202301979065,8.80105400085449,7.8485221862793,6.61687421798706,5.1302433013916,3.42394065856934,1.54337310791016,-0.457632064819336,-2.51855278015137,-4.5745792388916,-6.55886650085449,-8.40536499023438,-10.0509777069092,-11.4385166168213,-12.5183715820312,-13.2511367797852,-13.6087799072266,-13.575927734375,-13.1505241394043,-12.3441123962402,-11.1813201904297,-9.69908905029297,-7.94523239135742,-5.9766960144043,-3.85756683349609,-1.65643310546875,0.556060791015625,2.70985794067383,4.73812866210938,6.57966995239258,8.18123626708984,9.49950790405273,10.5024147033691,11.1703796386719,11.4967460632324,11.4878807067871,11.1626091003418,10.5513648986816,9.69459915161133,8.64099502563477,7.44523239135742,6.16571807861328,4.8618278503418,3.59165573120117,2.40921783447266,1.36231994628906,0.490503311157227,-0.176589965820312,-0.620420455932617,-0.834353446960449,-0.823806762695312,-0.605929374694824,-0.208757400512695,0.330034375190735,0.965001344680786,1.64491629600525,2.31517791748047,2.92038488388062,3.40682220458984,3.72505664825439,3.83230209350586,3.69450950622559,3.28807067871094,2.60121059417725,1.63472270965576,0.402294158935547,-1.06974792480469,-2.74316883087158,-4.56916332244873,-6.49020385742188,-8.44196844100952,-10.3559813499451,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,5.59889376163483,5.07032608985901,4.76345944404602,4.6720769405365,4.78080236911774,5.0661433339119,5.4976392313838,6.03951978683472,6.65219306945801,7.29409837722778,7.92328715324402,8.49937057495117,8.9849938750267,9.34716008603573,9.55847400426865,9.59823715686798,9.45270562171936,9.11583065986633,8.58880352973938,7.88042211532593,7.00583553314209,5.98615312576294,4.84750509262085,3.61971712112427,2.33529567718506,1.02794885635376,-0.268487453460693,-1.52125787734985],[-3.61703658103943,-4.26815736293793,-4.74526357650757,-5.04257154464722,-5.16085202246904,-5.10704252123833,-4.89360737800598,-4.53764706850052,-4.05985707044601,-3.48333805799484,-2.83236426115036,-2.13114780187607,-1.40267762541771,-0.667680397629738,0.0562324486672878,0.755192190408707,1.41944709420204,2.04345700144768,2.62572610378265,3.16835343837738,3.67636674642563,4.15684819221497,4.61793315410614,5.06772458553314,5.51319181919098,5.95915269851685,6.40735554695129,6.85576105117798,7.298091173172,7.72363781929016,8.11739587783813,8.46051788330078,8.7310791015625,8.90512490272522,8.95797252655029,8.86564660072327,8.60649585723877,8.16274476051331,7.52203822135925,6.67881172895432,5.63539675343782,4.40286713838577,3.00142502784729,1.46042060852051,-0.182111024856567,-1.8803528547287,-3.58210153877735,-5.23046231269836,-6.76599431037903,-8.12903594970703,-9.26217889785767,-10.1128516197205,-10.6357517242432,-10.7951462268829,-10.5668339729309,-9.93969106674194,-8.91679346561432,-7.51589196920395,-5.76932653784752,-3.7233020067215,-1.43660235404968,1.02132534980774,3.57276660203934,6.13452780246735,8.62103629112244,10.9476923942566,13.0340886116028,14.8072896003723,16.2047667503357,17.1770076751709,17.6896457672119,17.7249374389648,17.2826566696167,16.3802051544189,15.0520844459534,13.3486404418945,11.3341341018677,9.08420205116272,6.68295073509216,4.21960985660553,1.78494215011597,-0.532308101654053,-2.64906148612499,-4.49109429121017,-5.99606990814209,-7.11596608161926,-7.81897759437561,-8.09066367149353,-7.93447780609131,-7.37145781517029,-6.43927001953125,-5.19050264358521,-3.69037616252899,-2.01396334171295,-0.242856621742249,1.53821635246277,3.24506464600563,4.79762995243073,6.12336659431458,7.16037893295288,7.86006093025208,8.18915009498596,8.13118004798889,7.6872181892395,6.87584364414215,5.73240461945534,4.30748617649078,2.66489458084106,0.878893852233887,-0.968912601470947,-2.79303455352783,-4.50771331787109,-6.03066420555115,-7.28651189804077,-8.21012806892395,-8.74948620796204,-8.86790823936462,-8.54584473371506,-7.78180474042892,-6.59258130565286,-5.01274704933167,-3.09342926740646,-0.900239631533623,1.48910105228424,3.98809218406677,6.50462400913239,8.9449428319931,11.2172642946243,13.2354999780655,14.9228894710541,16.2149459123611,17.0623041391373,17.4326459765434,17.3120970129967,16.7058711051941,15.6381478011608,14.1510754674673,12.3033068478107,10.1675377935171,7.82769605517387,5.37574708461761,2.90782016515732,0.520620912313461,-1.69261312484741,-3.6457439661026,-5.26307058334351,-6.4825679063797,-7.25812339782715,-7.56154227256775,-7.38358283042908,-6.73431873321533,-5.64271712303162,-4.15550708770752,-2.33516836166382,-0.257491111755371,1.99143767356873,4.31898069381714,6.62926325947046,8.82744181156158,10.8231680393219,12.5344796180725,13.8909049034119,14.8361878395081,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,8.68764746189117,8.11860966682434,7.23001766204834,6.02778291702271,4.53142929077148,2.77371406555176,0.799607276916504,-1.3354663848877,-3.56745338439941,-5.82633399963379,-8.03860855102539,-10.1305332183838,-12.0305233001709,-13.6726264953613,-14.9984722137451,-15.960319519043,-16.522590637207,-16.6634140014648,-16.3755798339844,-15.6670265197754,-14.5604133605957,-13.0924606323242,-11.3124732971191,-9.28059005737305,-7.06557846069336,-4.74201965332031,-2.38764190673828,-0.0803756713867188,2.10466766357422,4.09787750244141,5.83781433105469,7.27366638183594,8.36672973632812,9.09211730957031,9.43933868408203,9.41261672973633,9.03055191040039,8.3252067565918,7.34059906005859,6.13079833984375,4.75751113891602,3.28753662109375,1.78975296020508,0.332450866699219,-1.01982498168945,-2.20888900756836,-3.18538284301758,-3.91081047058105,-4.35916900634766,-4.5180549621582,-4.38911437988281,-3.9878568649292,-3.34297657012939,-2.49506568908691,-1.49465370178223,-0.400057315826416,0.725302040576935,1.81582129001617,2.80655169487,3.63624334335327,4.25017166137695,4.60260820388794,4.65897464752197,4.39754295349121,3.81053161621094,2.90462970733643,1.70090770721436,0.234116554260254,-1.44857788085938,-3.28962993621826,-5.22310161590576,-7.17760801315308,-9.07879018783569,-10.8527193069458,-12.4286110401154,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,8.16561532020569,8.65966188907623,9.00891447067261,9.18789891898632,9.17867082357407,8.97159016132355,8.56520676612854,7.96662950515747,7.19051694869995,6.2590799331665,5.20018815994263,4.04655647277832,2.83435010910034,1.60142374038696,0.385912418365479,-0.7755126953125,-1.84888696670532,-2.80431365966797],[-8.10052466392517,-8.32741761207581,-8.34029626846313,-8.14661455154419,-7.76162838935852,-7.20759415626526,-6.5126838684082,-5.70961308479309,-4.83409333229065,-3.92313396930695,-3.01331579685211,-2.13908278942108,-1.3311573266983,-0.615145152667537,-0.0104045867919922,0.470750480890274,0.823494374752045,1.05051919817924,1.16168040037155,1.17323672771454,1.10674345493317,0.987635374069214,0.843588709831238,0.702731370925903,0.591789841651917,0.534318566322327,0.549033641815186,0.648425221443176,0.837688684463501,1.11405718326569,1.46657860279083,1.87637665495276,2.31738513708115,2.75753402709961,3.16036546230316,3.48693078756332,3.69800660014153,3.7563643604517,3.62910622358322,3.28987622261047,2.72082340717316,1.91426539421082,0.873837232589722,-0.384817361831665,-1.83398389816284,-3.43438255786896,-5.13634014129639,-6.88144564628601,-8.60480332374573,-10.2376728057861,-11.7103676795959,-12.9554290771484,-13.910728931427,-14.5225219726562,-14.7481875419617,-14.5585694313049,-13.9398374557495,-12.8946447372437,-11.442621588707,-9.62012271955609,-7.47925102710724,-5.08611035346985,-2.51844310760498,0.13730263710022,2.78932905197144,5.34424489736557,7.71075296401978,9.80350708961487,11.5466420650482,12.8769974708557,13.7468638420105,14.1260209083557,14.0031261444092,13.3862452507019,12.3026494979858,10.7977595329285,8.93331599235535,6.78483510017395,4.43857562541962,1.98798114061356,-0.470212936401367,-2.83987319469452,-5.02954000234604,-6.95604246854782,-8.54797160625458,-9.74854373931885,-10.5179069042206,-10.8346388339996,-10.696590423584,-10.1208069324493,-9.14273595809937,-7.81460642814636,-6.20313966274261,-4.38669717311859,-2.45179423689842,-0.489509560167789,1.40847915410995,3.15379309654236,4.66510534286499,5.87165284156799,6.71624684333801,7.1577045917511,7.17265391349792,6.75657105445862,5.92401218414307,4.70806616544724,3.15894359350204,1.34199166297913,-0.665091753005981,-2.77550482749939,-4.896977186203,-6.93565225601196,-8.80014157295227,-10.4053139686584,-11.6760129928589,-12.5503165610135,-12.9821591377258,-12.9434853792191,-12.4254912137985,-11.4391388893127,-10.0148543119431,-8.20143830776215,-6.06406021118164,-3.68186724185944,-1.1445643901825,1.45092391967773,4.00462818145752,6.41744995117188,8.59517455101013,10.4524667263031,11.9161574840546,12.9284607172012,13.4492317438126,13.457660317421,12.9532033205032,11.955682516098,10.5044533014297,8.65701758861542,6.48664057254791,4.07946467399597,1.53124165534973,-1.05674120783806,-3.5814436674118,-5.94241726398468,-8.0457626581192,-9.80780571699142,-11.1587044894695,-12.0450633391738,-12.4322903156281,-12.3059334754944,-11.672345995903,-10.5584456920624,-9.01074719429016,-7.09338402748108,-4.88564682006836,-2.47884607315063,0.0276584625244141,2.5300452709198,4.92466616630554,7.11191785335541,9.00058174133301,10.511385679245,11.5801706314087,12.1606435775757,12.2261261940002,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-9.91519737243652,32767,-13.7897090911865,-15.411828994751,-16.7427177429199,-17.7332172393799,-18.3457527160645,-18.5560035705566,-18.3539543151855,-17.7444229125977,-16.7468910217285,-15.3948707580566,-13.734619140625,-11.8235626220703,-9.72808837890625,-7.52099609375,-5.27887725830078,-3.07915878295898,-0.99725341796875,0.896259307861328,32767,32767,32767,32767,32767,32767,32767,32767,3.02169799804688,1.62460327148438,0.0502777099609375,-1.63156127929688,-3.34795761108398,-5.02529907226562,-6.59278106689453,-7.98514366149902,-9.14541816711426,-10.0273265838623,-10.5971813201904,-10.8354148864746,-10.7373237609863,-10.3131942749023,-9.58789920806885,-8.5998010635376,-7.39892482757568,-6.04485416412354,-4.60403823852539,-3.14674544334412,-1.74410057067871,-0.464784868061543,0.628068566322327,1.47957229614258,2.04562759399414,2.29479026794434,2.20978784561157,1.78819608688354,1.04257249832153,-0.000111103057861328,-1.29954385757446,-2.80412578582764,-4.45285701751709,-6.17833709716797,-7.90923166275024,-9.57370233535767,-11.1022120714188,-12.4304817169905,-13.5021165311337,-14.2707512974739,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,4.38383054733276,32767,32767,32767,6.05709326267242,6.079749584198,5.90448020398617,5.52557802200317,4.94621789455414,4.17799592018127,3.24087905883789,2.16177606582642,0.974206447601318,-0.284009456634521,-1.57185912132263,-2.8467845916748,-4.06668245792389,-5.19148999452591,-6.18501071631908,-7.01617097854614,-7.66039347648621],[-12.1102504730225,-12.0908193588257,-11.8511805534363,-11.4060201644897,-10.7777185440063,-9.99544048309326,-9.0939245223999,-8.11200928688049,-7.09096956253052,-6.0726945400238,-5.0978319644928,-4.20394015312195,-3.42376494407654,-2.78370440006256,-2.30255663394928,-1.99061930179596,-1.84918831288815,-1.87050474062562,-2.03815920650959,-2.32795304059982,-2.70918375253677,-3.1463061273098,-3.6008805334568,-4.03372406959534,-4.40716806054115,-4.68726220726967,-4.84587068855762,-4.86247615935281,-4.72563479840755,-4.4339607656002,-3.99660003185272,-3.43312728404999,-2.77286541461945,-2.05365496873856,-1.32007744908333,-0.621303558349609,-0.00852513313293457,0.467751502990723,0.760523319244385,0.829047203063965,0.641358375549316,0.176474094390869,-0.573925971984863,-1.60433435440063,-2.89495348930359,-4.41188192367554,-6.10807180404663,-7.92487949132919,-9.79432272911072,-11.6418540477753,-13.3894777297974,-14.9592652320862,-16.2768731117249,-17.2750697135925,-17.8969926834106,-18.0990657806396,-17.8533763885498,-17.1493532657623,-15.9947559833527,-14.4158184528351,-12.4565891081002,-10.1774452924728,-7.65286087989807,-4.96851444244385,-2.21788787841797,0.50163459777832,3.09267210960388,5.46198102831841,7.52432382106781,9.20606589317322,10.4482893943787,11.2092509269714,11.4661178588867,11.2158880233765,10.4755001068115,9.28107929229736,7.68635034561157,5.76031351089478,3.58434867858887,1.24878218770027,-1.15096016228199,-3.51822459697723,-5.75924742221832,-7.78685176372528,-9.52404856681824,-10.9070751667023,-11.8879210948944,-12.4360733032227,-12.5396571159363,-12.2056603431702,-11.4594855308533,-10.3436706066132,-8.9159471988678,-7.24671626091003,-5.41587197780609,-3.50948113203049,-1.61602655053139,0.177330022677779,1.78842270374298,3.14359456300735,4.18078196048737,4.85210764408112,5.12592899799347,4.98817443847656,4.44294369220734,3.5123553276062,2.23557579517365,0.667247891426086,-1.12486165761948,-3.0627346932888,-5.06139421649277,-7.03252217173576,-8.88830816745758,-10.5451300144196,-11.927225112915,-12.9700145721436,-13.6228413581848,-13.8513207435608,-13.6388416290283,-12.9873907566071,-11.9175820350647,-10.4679169654846,-8.69317150115967,-6.6623318195343,-4.45555686950684,-2.16111409664154,0.128468036651611,2.32011961936951,4.32404160499573,6.05756020545959,7.44837021827698,8.43772578239441,8.98277473449707,9.05835723876953,8.65814352035522,7.7949526309967,6.50023674964905,4.82299733161926,2.82778096199036,0.592157363891602,-1.79619097709656,-4.24318587779999,-6.6518349647522,-8.92631721496582,-10.9757611751556,-12.7178182601929,-14.0822279453278,-15.0135263204575,-15.4735298156738,-15.4429200142622,-14.9221809506416,-13.9317127466202,-12.5112183094025,-10.7181112766266,-8.62540483474731,-6.31889009475708,-3.8934588432312,-1.44968795776367,0.910637855529785,3.08838510513306,4.99141240119934,6.53827154636383,7.66153854131699,8.31079924106598,8.45465809106827,8.08209651708603,7.20299190282822,5.84767512977123,4.06565600633621,1.92368042469025,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,2.45819664001465,1.10297775268555,-0.500034332275391,-2.29025840759277,-4.19961547851562,-6.15559387207031,-8.08357429504395,-9.9102840423584,-11.5665283203125,-12.9900779724121,-14.1283130645752,-14.9403200149536,-15.3988485336304,-15.491400718689,-15.2207231521606,-14.6047859191895,-13.6760053634644,-12.4797277450562,-11.0722880363464,32767,32767,-6.25550222396851,-4.69099974632263,-3.26291573047638,-2.03206568956375,-1.04949035122991,-0.354462057352066,0.0273517370223999,0.0847160816192627,-0.17882251739502,-0.74536657333374,-1.58353590965271,-2.65041267871857,-3.89330291748047,-5.25263237953186,-6.66432055830956,-8.06304728984833,-9.38499534130096,-10.5706572532654,-11.5673460960388,-12.3311891555786,-12.8290116786957,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,3.11957919597626,2.8273554444313,32767,1.66043996810913,0.802295684814453,-0.215012311935425,-1.36451506614685,-2.61371505260468,-3.92504942417145,-5.25827256590128,-6.57154941558838,-7.82304322719574,-8.97279763221741,-9.98419594764709,-10.8255891799927,-11.4713425636292,-11.9030547142029],[-12.1707291603088,-12.1341304779053,-11.9134845733643,-11.5227036476135,-10.981782913208,-10.316089630127,-9.55543422698975,-8.73289895057678,-7.88351655006409,-7.04278492927551,-6.24510908126831,-5.52223467826843,-4.9017254114151,-4.40558695793152,-4.04909706115723,-3.83993375301361,-3.77764403820038,-3.8535248041153,-4.05092453956604,-4.34599196910858,-4.70883095264435,-5.10505211353302,-5.49760818481445,-5.84885895252228,-6.12276148796082,-6.28702294826508,-6.31516492366791,-6.18831646442413,-5.89666056632996,-5.44042754173279,-4.83037805557251,-4.08772420883179,-3.24345619603992,-2.33714354038239,-1.41517519950867,-0.528620719909668,0.269294738769531,0.925906658172607,1.39190292358398,1.62408971786499,1.58791065216064,1.25968837738037,0.628347396850586,-0.303347587585449,-1.51825714111328,-2.98493719100952,-4.6584792137146,-6.48195123672485,-8.38851284980774,-10.3040821999311,-12.1503534317017,-13.8482284545898,-15.3212962150574,-16.4993534088135,-17.3216757774353,-17.7400298118591,-17.7211232185364,-17.2484593391418,-16.323454618454,-14.9658076763153,-13.2130120992661,-11.1191047132015,-8.75262105464935,-6.19392418861389,-3.53197932243347,-0.860639095306396,1.72511959075928,4.13320326805115,6.27817285060883,8.08478093147278,9.49105501174927,10.4507822990417,10.9353017807007,10.9345421791077,10.4572875499725,9.5306453704834,8.19872283935547,6.52062022686005,4.56787736713886,2.42142474651337,0.168139696121216,-2.10264179110527,-4.30285322666168,-6.34906673431396,-8.16580724716187,-9.68839073181152,-10.865336894989,-11.6601123809814,-12.0523924827576,-12.0385007858276,-11.6313161849976,-10.8594388961792,-9.76579093933105,-8.40569114685059,-6.84434008598328,-5.15413904190063,-3.41157817840576,-1.69408445060253,-0.0768383741378784,1.37034487724304,2.5858496427536,3.51874947547913,4.13090002536774,4.39848264306784,4.31296969158575,3.88144043274224,3.12623398005962,2.08401525020599,0.80417674779892,-0.653310045599937,-2.22046732902527,-3.82426726818085,-5.38988161087036,-6.84389972686768,-8.11762475967407,-9.15015912055969,-9.89106106758118,-10.3027164936066,-10.3619966506958,-10.0613708496094,-9.40929412841797,-8.42991852760315,-7.16201901435852,-5.65746009349823,-3.97881007194519,-2.19681143760681,-0.387216091156006,1.37241458892822,3.00595617294312,4.44208669662476,5.61712598800659,6.47789096832275,6.98381519317627,7.10863780975342,6.8415699005127,6.18774795532227,5.16802549362183,3.81828355789185,2.18796491622925,0.338171720504761,-1.66056740283966,-3.73125609755516,-5.79320526123047,-7.76538872718811,-9.56959509849548,-11.1334791183472,-12.393682718277,-13.2983241081238,-13.8093592822552,-13.9042449593544,-13.5771104097366,-12.839234828949,-11.7189173698425,-10.2605042457581,-8.52288055419922,-6.57732915878296,-4.50452947616577,-2.39170122146606,-0.328729629516602,1.59529161453247,3.29602003097534,4.69735026359558,5.73462843894958,6.35761547088623,6.5326122045517,6.24400335550308,5.49503719806671,4.30772399902344,2.72194719314575,0.793930530548096,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,6.81008434295654,5.60578298568726,4.09929037094116,2.33711433410645,0.375542640686035,-1.7209005355835,-3.88215208053589,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-3.78065824508667,-2.36484909057617,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-3.63535749912262,-4.78375780582428,-5.89506912231445,-6.9158763885498,-7.79880213737488,-8.50429391860962,-9.00227642059326,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-1.62864899635315,-2.73572844266891,-3.90856626629829,-5.11375437676907,-6.31671142578125,-7.48254835605621,-8.57727932929993,-9.5692458152771,-10.4301726818085,-11.1363067626953,-11.6690649986267,-12.0159063339233],[-8.2931764125824,-8.37064027786255,-8.32556414604187,-8.16606974601746,-7.90383100509644,-7.55374467372894,-7.13348495960236,-6.66291105747223,-6.16334688663483,-5.65672445297241,-5.16462051868439,-4.70722171664238,-4.30226245522499,-3.96400603652,-3.70232710242271,-3.52198296785355,-3.42212277650833,-3.39609956741333,-3.43163526058197,-3.51133739948273,-3.61357390880585,-3.71368265151978,-3.78542876243591,-3.80266392230988,-3.74107527732849,-3.57990264892578,-3.30355608463287,-2.90298098325729,-2.37670587003231,-1.73148447275162,-0.982490420341492,-0.153043270111084,0.726174116134644,1.61829662322998,2.48191261291504,3.27293395996094,3.94677257537842,4.46059131622314,4.77555084228516,4.85899639129639,4.68639755249023,4.24299907684326,3.52506542205811,2.54068088531494,1.31000804901123,-0.134958267211914,-1.7512264251709,-3.48613739013672,-5.27919721603394,-7.06437015533447,-8.77263021469116,-10.3348443508148,-11.6847127974033,-12.7617002725601,-13.5138108730316,-13.900110244751,-13.8927941322327,-13.4787559509277,-12.6605081558228,-11.4564814567566,-9.90057468414307,-8.04103827476501,-5.93867963552475,-3.66451090760529,-1.29693084955215,1.08152168989182,3.38743901252747,5.54001927375793,7.46431994438171,32767,32767,11.266640663147,11.7422168254852,11.7921547889709,11.4225963354111,10.6552783250809,9.52639091014862,8.08486619591713,6.39026010036469,4.5102207660675,2.51767516136169,0.48799204826355,-1.50403118133545,-3.38687717914581,-5.09497761726379,-6.57099980115891,-7.76781499385834,-8.64994788169861,-9.19468808174133,-9.39255928993225,-9.24742484092712,-8.77602291107178,-8.00707840919495,-6.98002827167511,-5.74326705932617,-4.35224229097366,-2.86720025539398,-1.35082268714905,0.134206056594849,1.52767539024353,2.7741813659668,3.82528102397919,4.64141499996185,5.19349676370621,5.4640930891037,5.44813588261604,5.15314283967018,4.59893068671227,3.81679969280958,2.84817921556532,1.74285968393087,0.556805402040482,-0.650391008704901,-1.81815493106842,-2.88775014877319,-3.80502736568451,-4.52291321754456,-5.00372529029846,-5.22089815139771,-5.16031074523926,-4.82095468044281,-4.21500089764595,-3.36719036102295,-2.31374049186707,-1.10051584243774,0.218997955322266,1.58626365661621,2.94034242630005,4.22058534622192,5.36941289901733,6.33467149734497,7.07196474075317,7.54639911651611,7.73394250869751,7.62237977981567,7.21171236038208,6.51404523849487,5.5531120300293,4.363276720047,2.98817276954651,1.47916150093079,-0.106776356697083,-1.70898312330246,-3.26555097103119,-4.71561962366104,-6.00165998935699,-7.07189726829529,-7.88232088088989,-8.39871573448181,-8.59820580482483,-8.47051095962524,-8.018723487854,-7.25958156585693,-6.22313737869263,-4.9518928527832,-3.49941778182983,-1.92815971374512,-0.30726146697998,1.29052114486694,2.79172039031982,4.12551736831665,5.22681760787964,6.03916335105896,6.51744139194489,6.62993371486664,6.35984879732132,5.70620626211166,4.68392425775528,3.32323008775711,1.66846776008606,-0.223954200744629,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.727868556976318,-0.297715425491333,-1.30216240882874,-2.23723196983337,-3.06049454212189,-3.73685151338577,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.849413871765137,0.0609092712402344,-0.797876596450806,-1.70299291610718,32767,-3.55064618587494,-4.44338470697403,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,-3.45884943008423,-3.21631062030792,-2.95922768115997,-2.69706428050995,32767,-2.19058114290237,-1.95842039585114,32767,-1.54730713367462,-1.36338001489639,-1.18512536585331,-1.0023379996419,-0.80264625698328,-0.572448367252946,-0.298046130686998,0.0331012755632401,0.431106582283974,0.902462333440781,1.44902649521828,2.06727510690689,2.74789750576019,3.47575950622559,4.23025286197662,4.98600840568542,5.7139630317688,6.38265085220337,6.95972204208374,7.41352128982544,7.71470785140991,7.83779430389404,7.76252365112305,7.47506427764893,6.96892642974854,6.24563598632812,5.31504535675049,4.19537162780762,2.91289901733398,1.50139617919922,0.001190185546875,-1.54197978973389,-3.07841682434082,-4.55612754821777,-5.92261505126953,-7.12688779830933,-8.12145376205444,-8.86432337760925,-9.32088494300842,-9.46562337875366,-9.28351163864136,-8.77103390172124,-7.93674671649933,-6.80135259032249,-5.39722996205091,-3.76742944121361,-1.9641455411911,-0.0467779636383057,1.92037737369537,3.87074249982834,5.73806548118591,7.45914113521576,8.97632384300232,32767,32767,32767,12.1646254062653,12.1292282342911,11.7589462995529,11.0741163492203,10.1059103012085,8.89486335963011,7.48913592100143,5.94252550601959,4.31230330467224,2.65708994865417,1.03464436531067,-0.500083684921265,-1.89686131477356,-3.11176323890686,-4.10855197906494,-4.85967135429382,-5.3470242023468,-5.56229305267334,-5.5070366859436,-5.19239592552185,-4.63852787017822,-3.87377095222473,-2.93347644805908,-1.8587498664856,-0.694910526275635,0.510133266448975,1.70761394500732,2.84969186782837,3.89123272895813,4.79149222373962,5.51572048664093,6.03659439086914,6.33540875837207,6.40296006202698,6.24009680747986,5.8578736782074,5.27728962898254,4.5285359621048,3.64983493089676,2.68584860861301,1.68566834926605,0.700599670410156,-0.218324899673462,-1.02286398410797,-1.66996932029724,-2.12407940626144,-2.35891628265381,-2.3589414358139,-2.12017944455147,-1.65043842792511,-0.968876361846924,-0.10503888130188,0.902810096740723,2.00959348678589,3.16582059860229,4.3200478553772,5.42134618759155,6.42176198959351,7.27833890914917,7.95500898361206,8.42390441894531,8.66624593734741,8.67286968231201,8.44423627853394,7.99006366729736,7.32873034477234,6.48629975318909,5.49539816379547,4.39404046535492,3.22413414716721,2.03018006682396,0.857676148414612,-0.248373508453369,-1.24494600296021,-2.09266805648804,-2.75722599029541,-3.21092939376831,-3.43398237228394,-3.41565418243408,-3.15515327453613,-2.66216087341309,-1.95689678192139,-1.06974792480469,-0.0404443740844727,1.08352184295654,2.24855089187622,3.39740943908691,4.47167015075684,5.41456723213196,6.17367720603943,6.70349252223969,6.9677711725235,6.94134950637817,6.61141011863947,5.97822981327772,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,5.05573725700378,4.06976175308228,3.05548334121704,2.06107664108276,1.13063907623291,0.302416801452637,-0.392423152923584,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,8.15708947181702,8.38446092605591,8.45254135131836,32767,8.05803918838501,32767,6.93131160736084,6.10894298553467,5.13486957550049,4.03176021575928,2.82692241668701,1.55142498016357,0.239191055297852,-1.07394313812256,-2.35110187530518,-3.55532073974609,-4.65043354034424,-5.60203552246094,-6.37846946716309,-6.95183897018433,-7.29904413223267,-7.40281581878662,-7.25264883041382,-6.84564685821533,-6.18710231781006,-5.29082345962524,-4.17910242080688,-2.88230752944946,-1.43807506561279,0.109928131103516,1.71353912353516,3.3219268321991,4.88364171981812,6.34864771366119,7.67038297653198,8.80762824416161,9.72614032030106,32767,32767,32767,32767,10.4564037322998,9.8457955121994,9.02958130836487,8.04224157333374,6.92316764593124,5.71507596969604,4.46238526701927,3.20962297916412,1.99983024597168,0.87317943572998,-0.134374856948853,-0.992190599441528,-1.67587041854858,-2.16792154312134,-2.45823383331299,-2.54422378540039,-2.43080997467041,-2.13008832931519,-1.66079616546631,-1.04759883880615,-0.320109367370605,0.488126754760742,1.34083986282349,2.20028638839722,3.02854585647583,3.78885078430176,4.44689321517944,4.97207403182983,5.33869469165802,5.5270619392395,5.52446049451828,5.32592117786407,4.93477821350098,4.36295676231384,3.63092827796936,2.76725220680237,1.8077392578125,0.794188022613525,-0.227363586425781,-1.20862913131714,-2.10146188735962,-2.86033630371094,-3.44482946395874,-3.82202482223511,-3.96846079826355,-3.87171506881714,-3.53131294250488,-2.95894276350737,-2.17791354656219,-1.22198522090912,-0.13338303565979,1.03945541381836,2.24468040466309,3.42983388900757,4.54459285736084,5.54337072372437,6.38731813430786,7.04602575302124,7.49845314025879,7.733323097229,7.74902009963989,7.55293416976929,7.16044425964355,6.59374833106995,5.88047206401825,5.05227738618851,4.14365261793137,3.19059610366821,2.22965633869171,1.29687547683716,0.426921367645264,-0.347736835479736,-0.997817516326904,-1.49805068969727,-1.82824325561523,-1.97422313690186,-1.92878913879395,-1.69255256652832,-1.27452087402344,-0.692340850830078,0.0278768539428711,0.852118492126465,1.73982429504395,2.64533758163452,3.52016592025757,4.31528377532959,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,5.23766851425171,4.24413013458252,3.22487640380859,2.22375965118408,1.28049945831299,0.429255485534668,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,1.46232223510742,0.377347946166992,-0.751693725585938,-1.89423847198486,-3.02005004882812,-4.09999561309814,-5.10651779174805,-6.01396369934082,-6.79877376556396,-7.43964290618896,-7.91774082183838,-8.21701049804688,-8.32463693618774,-8.23162221908569,-7.93347024917603,-7.4309024810791,-6.73048067092896,-5.8450779914856,-4.79404783248901,-3.60310697555542,-2.30379199981689,-0.932522773742676,0.470659732818604,1.86365509033203,3.20409464836121,4.45110201835632,5.5670862197876,6.51934152841568,7.28137638419867,32767,32767,32767,32767,32767,32767,32767,32767,4.96916997432709,4.00913226604462,3.02511531114578,2.05451908707619,1.13322198390961,0.294363737106323,-0.432882308959961,-1.02435159683228,-1.46182203292847,-1.73369264602661,-1.83547115325928,-1.76991605758667,-1.54693174362183,-1.18312549591064,-0.701066970825195,-0.128331184387207,0.503743171691895,1.16132640838623,1.80953121185303,2.4137544631958,2.94101476669312,3.36113262176514,3.64778995513916,3.77940726280212,3.73989510536194,3.51926851272583,3.11415094137192,2.52814504504204,1.77208375930786,0.864161968231201,-0.170157432556152,-1.29851579666138,-2.48232889175415,-3.67783832550049,-4.83767700195312,-5.91269683837891,-6.85432815551758,-7.61710834503174,-8.16133260726929,-8.45569181442261,-8.47951555252075,-8.22457265853882,-7.69617533683777,-6.91341376304626,-5.90845787525177,-4.72506892681122,-3.41606831550598,-2.04045593738556,-0.65983247756958,0.665132522583008,1.87813520431519,2.93035554885864,3.78278064727783,4.40794134140015,4.79063606262207,4.92785120010376,4.82796716690063,4.50929117202759,3.99813890457153,3.32683086395264,2.53152894973755,1.65029656887054,0.721532663330436,-0.217455148696899,-1.13128018379211,-1.98721241950989,-2.75557804107666,-3.41004419326782,-3.92803955078125,-4.29108047485352,-4.48541641235352,-4.50268173217773,-4.34068870544434,32767,32767,-2.86516380310059,-2.11086845397949,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,1.35681438446045,0.380036354064941,-0.591453552246094,-1.52314281463623,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-6.40857553482056,32767,-7.97847366333008,-8.64601278305054,-9.21203660964966,-9.65955758094788,-9.97204279899597,-10.1339054107666,-10.1313014030457,-9.95319628715515,-9.59258270263672,-9.04768657684326,-8.32298243045807,32767,-6.38721144199371,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.154183983802795,-0.703513741493225,-1.48618185520172,-2.16164457798004,-2.7025306224823,-3.0877046585083,-3.30345416069031,-3.34441566467285,-3.21404218673706,-2.92463064193726,-2.49679565429688,-1.95846462249756,-1.3434009552002,-0.689353942871094,-0.0360746383666992,0.576797485351562,1.11169147491455,1.53482913970947,1.81762838363647,1.93766736984253,1.8792667388916,1.63370871543884,1.19919264316559,0.580621108412743,-0.210711240768433,-1.15742468833923,-2.23628616333008,-3.41845798492432,-4.66980123519897,-5.95126008987427,-7.21954250335693,-8.42822456359863,-9.5291748046875,-10.474609375,-11.2194814682007,-11.7242031097412,-11.9574913978577,-11.8989839553833,-11.5414910316467,-10.8924963474274,-9.97472512722015,-8.82556393742561,-7.49552881717682,-6.04537725448608,-4.54272538423538,-3.05774462223053,-1.65886640548706,-0.408573150634766,0.640380382537842,1.44775199890137,1.98775672912598,2.24970626831055,2.23757839202881,1.96861219406128,1.47107362747192,0.781488418579102,-0.0582089424133301,-1.00355887413025,-2.01008296012878,-3.03514897823334,-4.03949648141861,-4.98788738250732,-5.84950125217438,-6.59785866737366,-7.21058416366577,-7.66931581497192,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-0.478582382202148,-1.26404571533203,-2.13284683227539,-3.05170440673828,-3.98838043212891,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-8.92648792266846,-9.60052931308746,-10.1888616681099,-10.6628177165985,-10.9940086901188,-11.1562465429306,-11.1276835203171,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-5.55444550514221,32767,-5.21731376647949,-4.77899503707886,-4.19896364212036,-3.51633787155151,-2.77563858032227,-2.02390193939209,-1.30760288238525,-0.66984748840332,-0.147965431213379,0.228252410888672,0.437576293945312,0.467586040496826,0.314293384552002,-0.0187444686889648,-0.521581530570984,-1.17910265922546,-1.97208142280579,-2.87790751457214,-3.87098622322083,-4.92284154891968,-6.00196170806885,-7.07370805740356,-8.10046243667603,-9.04214668273926,-9.85741376876831,-10.505476474762,-10.9484872817993,32767,32767,32767,32767,-9.33006942272186,-8.26231357455254,-7.021639585495,-5.66633176803589,-4.26277933269739,-2.88093566894531,32767,32767,0.480212688446045,1.16656970977783,1.58360195159912,1.72364902496338,1.59458923339844,1.21803665161133,0.626587390899658,-0.139514923095703,-1.03574514389038,-2.01658225059509,-3.038205742836,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-3.38706207275391,-4.31885528564453,-5.29067420959473,-6.27276039123535,-7.23701667785645,-8.15744781494141,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,2.631187915802,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-3.67132759094238,-4.78561782836914,-5.87981986999512,-6.92315673828125,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-1.90256881713867,-3.09551620483398,-4.20672035217285,-5.20680236816406,-6.07315063476562,32767,-7.34607887268066,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-3.72685432434082,-4.30998802185059,-4.72455978393555,-4.97463226318359,-5.06892681121826,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,3.27280557155609,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-4.63427603244781,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-1.2547507584095,-1.53325629234314,-1.92574095726013,-2.36710250377655,-2.79631650447845,-3.16662192344666,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-5.23667347431183,-5.02353224158287,-5.00241047143936,-5.15844833850861,-5.45723456144333,-5.84899806976318,-6.27617204189301,-6.68251264095306,-7.02247178554535,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-4.6881617307663,-4.55973625183105,-4.54331833124161,-4.63982039690018,-4.84001678228378,-5.12259620428085,-5.45531845092773,-5.79931563138962,-6.116490483284,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.10258960723877,0.211038589477539,0.301466345787048,0.373550891876221,0.411816239356995,0.390590906143188,0.28352153301239,0.0744205117225647,32767,32767,32767,32767,32767,32767,32767,-2.83897829055786,-3.14862126111984,-3.48751211166382,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,6.36998891830444,6.37021684646606,6.38416147232056,6.41992378234863,6.45313358306885,6.43436336517334,6.30547976493835,6.01979374885559,32767,32767,32767,32767,32767,32767,32767,1.01937487721443,0.561812534928322,0.100811194628477,-0.38230912014842,-0.875085514038801,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,9.09811401367188,9.1170072555542,9.12522983551025,9.13358783721924,9.11129808425903,8.99546432495117,8.71228313446045,8.20344591140747,32767,32767,32767,32767,32767,32767,32767,0.959321022033691,0.556260108947754,0.238104581832886,-0.041603684425354,-0.302083969116211,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.707080364227295,0.786679267883301,1.22537660598755,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,6.23044300079346,6.33663368225098,6.37904739379883,6.36303329467773,6.255615234375,5.99573707580566,5.5157527923584,4.76762294769287,3.7450122833252,2.49432945251465,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-0.443903923034668,-0.258771896362305,-0.175799369812012,-0.204327583312988,-0.375813484191895,-0.734246253967285,-1.32026100158691,-2.15378093719482,-3.2210521697998,-4.46973371505737,-5.81452131271362,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-6.39137578010559,-6.21295976638794,-5.98670744895935,-5.75400376319885,-5.53957366943359,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-6.77768135070801,-6.55468654632568,-6.43348026275635,-6.44667339324951,-6.62287092208862,-6.97805213928223,-7.51023530960083,-8.19915342330933,-9.01074147224426,-9.90370297431946,-10.836149930954,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-7.37408924102783,-7.51857280731201,-7.54334020614624,-7.46557712554932,-7.2946457862854,-7.03068518638611,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-9.29314267635345,-9.05512750148773,-8.89116990566254,-8.86373746395111,-9.00135636329651,-9.28877830505371,-9.67372965812683,-10.0882970690727,-10.4764120578766,-10.815976858139,-11.126935005188,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-5.95920083299279,-6.32032150030136,-6.53051847219467,-6.57693600654602,-6.44842956960201,-6.1329870223999,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-7.33338189125061,-7.08469271659851,-6.88457572460175,-6.82929694652557,-6.95557653903961,-7.2245352268219,-7.5370671749115,-7.77566742897034,-7.8555064201355,-7.76354289054871,-7.56929636001587,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-2.86880934238434,-3.18462717533112,-3.38634431362152,-3.44723689556122,-3.34789955615997,-3.07027626037598,-2.59736561775208,-1.92093443870544,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-2.71905213594437,-2.53182071447372,-2.51393362879753,-2.72366997599602,-3.11814498901367,-3.56924760341644,-3.91829691827297,-4.04536808282137,-3.92324233055115,-3.63257837295532,-3.33259797096252,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,2.33187365531921,2.54550266265869,3.02914881706238,3.72104471921921,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.646840214729309,0.730270147323608,0.861615657806396,1.04901170730591,1.31110215187073,1.67275977134705,2.15232419967651,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,1.14896261692047,1.04963040351868,0.672973036766052,0.0382208824157715,-0.728947401046753,-1.45200204849243,-1.98082482814789,-2.25470960140228,-2.32301586866379,-2.31593316793442,-2.38130488991737,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,5.64365828037262,5.66994988918304,5.84490191936493,6.20669305324554,6.68140375614166,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,4.42057240009308,4.68829199671745,4.84303706139326,4.89275529980659,4.87004846334457,4.82258307933807,4.79860240221024,4.83292576670647,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,2.32512843608856,2.22668422013521,1.98758390545845,1.47206717729568,0.650989294052124,-0.388733267784119,-1.48838949203491,-2.48994337022305,-3.29967790842056,-3.91393578052521,-4.3976309299469,-4.83092164993286,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,8.54242825508118,8.73420286178589,8.86823964118958,8.96592164039612,8.98018050193787,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,6.72972655296326,6.97739553451538,6.98855626583099,6.78268849849701,6.40645968914032,5.9286402463913,5.4323548078537,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.86951108276844,0.584360048174858,0.279800266027451,-0.209570854902267,-0.968516966328025,-1.97490841150284,-3.12386929988861,-4.28324568271637,-5.34855031967163,-6.27171647548676,-7.05326759815216,-7.70888257026672,-8.23242139816284,-8.57784485816956,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,9.47230005264282,9.83718800544739,9.8961775302887,9.6561586856842,9.12755155563354,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,6.56728053092957,6.73719239234924,6.66585004329681,6.355504155159,5.83805871009827,5.18890941143036,4.52391922473907,3.97160142660141,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-2.25099658966064,-2.64472287893295,-2.89310503005981,-3.15588861703873,-3.55387872457504,-4.1324856877327,-4.86201518774033,-5.66636234521866,-6.46049076318741,-7.17901426553726,-7.78562808036804,-8.26583588123322,-8.61256051063538,-8.81568133831024,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,7.92942595481873,7.83968806266785,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,4.33539152145386,4.41326075792313,4.24652463197708,3.84172792732716,3.29531043767929,2.76812487840652,2.41518402099609,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-5.58423697948456,-6.00215947628021,-6.14556491374969,-6.1166512966156,-6.03073614835739,-5.98009139299393,-6.01008005253971,-6.11392545700073,-6.24544602632523,-6.34420943260193,-6.36395072937012,-6.29465085268021,-6.17088836431503,-6.06310868123546,-6.05494566261768,-6.21366646140814,-6.5649334192276,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.809625864028931,1.29858946800232,1.90844392776489,2.599534034729,3.26727175712585,3.75803899765015,3.91058611869812,3.61163544654846,2.84617722034454,1.72189784049988,0.454795122146606,-0.683274269104004,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.693119049072266,1.2213796377182,1.54865252971649,1.57689237594604,1.34618616104126,1.02494788169861,0.824563503265381,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-7.77037715911865,-8.22651481628418,-8.38087844848633,-8.2288613319397,-7.83765935897827,-7.3183226287365,-6.77726244926453,-6.2719898223877,-5.79422128200531,-5.28954339027405,-4.70527958869934,-4.04271602630615,-3.3869731426239,-2.89637207984924,-2.75186991691589,-3.08592748641968,-3.92182278633118,-5.15033030509949,-6.55522930622101,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,1.06372380256653,0.986951351165771,0.875656366348267,0.811122894287109,0.798559665679932,0.757400274276733,0.556451082229614,0.0810065269470215,-0.69688606262207,-1.67797589302063,-2.64660739898682,-3.33300125598907,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-1.54275846481323,-0.854612350463867,-0.468087911605835,-0.409404039382935,-0.520813941955566,-0.545591831207275,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-7.78383374214172,-8.42286550998688,-8.82971394062042,-8.87180960178375,-8.55199539661407,-7.98760452866554,-7.33398407697678,-6.69892346858978,-6.09582352638245,-5.45859885215759,-4.70835161209106,-3.83324074745178,-2.93682765960693,-2.22500157356262,-1.93231153488159,-2.21997952461243,-3.09382605552673,-4.38268971443176,-5.79098629951477,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,1.848393201828,2.89161151647568,3.69366157054901,4.08376348018646,4.01082134246826,3.55578100681305,2.8883672952652,2.19003486633301,1.57998704910278,1.07840466499329,0.622557401657104,0.125690460205078,-0.451776266098022,-1.05573701858521,-1.5412323474884,-1.7257297039032,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-2.82110142707825,-2.02843594551086,-1.25044441223145,-0.72845983505249,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-5.35580176115036,-6.35614410042763,-7.20526838302612,-7.66954165697098,-7.71540464833379,-7.48208630084991,-7.17206192016602,-6.92847800254822,-6.76671957969666,-6.59012722969055,-6.27321863174438,-5.76086282730103,-5.12684011459351,-4.55795955657959,-4.26910638809204,-4.39178514480591,-4.89359402656555,-5.57288646697998,-6.13705253601074,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,1.27327448129654,0.939550518989563,0.514518022537231,0.015247106552124,-0.521882057189941,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,5.50366023182869,6.60542511940002,7.54085469245911,8.08951473236084,8.14329218864441,7.7386429309845,7.02891778945923,6.21453762054443,5.46589338779449,4.87345523200929,4.44321426749229,4.13229882717133,3.90067911148071,3.74852710962296,3.71901386976242,3.86620205640793,4.20798856019974,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-0.226806402206421,0.359447717666626,0.979823112487793,1.42546772956848,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-1.52624094486237,-2.92523539066315,-4.15729081630707,-4.96606707572937,-5.34846067428589,-5.4983172416687,-5.6626341342926,-5.99888515472412,-6.50640344619751,-7.05497026443481,-7.47986888885498,-7.68331527709961,-7.68594455718994,-7.60328531265259,-7.56278610229492,-7.60873031616211,-7.64898061752319,-7.47790813446045,-6.87186551094055,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.33875560760498,1.95158231258392,3.61098915338516,5.00331547856331,5.95757409930229,6.46381735801697,6.62578475475311,6.59137916564941,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,2.20001220703125,2.00849157571793,1.84657829999924,1.75419867038727,1.77009958028793,1.89975601434708,2.1049422621727,2.32836362719536,2.53953319787979,2.76911159604788,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,7.58631789684296,8.09695625305176,8.80773830413818,9.55356955528259,10.1518874168396,10.4754228591919,10.4929556846619,10.2662799358368,9.91283631324768,9.5565128326416,9.28928565979004,9.1559796333313,9.16085839271545,9.28419756889343,9.49465441703796,9.74951148033142,9.98585391044617,10.1151022911072,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,3.88759066164494,4.15400856733322,4.45890974998474,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-0.20010232925415,-1.45155048370361,-2.21349143981934,-2.59008026123047,-2.84807300567627,-3.24916839599609,-3.921058177948,-4.82437038421631,-5.8116774559021,-6.72610330581665,-7.47863578796387,-8.06551933288574,-8.52575254440308,-8.8702917098999,-9.02689504623413,-8.83552503585815,-8.1045126914978,-6.70780849456787,-4.67894983291626,-2.25173377990723,0.1851487159729,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,4.25240516662598,5.76537108421326,7.1026554107666,8.05096817016602,8.59673619270325,8.87500381469727,9.05328893661499,9.2283148765564,9.39070129394531,9.46080589294434,9.35589265823364,9.04028797149658,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,1.23226907849312,1.21399664878845,1.29634594917297,1.57472383975983,2.12508326768875,2.93235571309924,3.86560094356537,4.72576177120209,5.34446430206299,5.6758291721344,5.82419490814209,5.98744940757751,32767,32767,32767,32767,32767,32767,32767,32767,8.03083658218384,7.72813928127289,7.65513396263123,7.81663346290588,8.157306432724,8.59590566158295,9.05413639545441,9.47385764122009,9.82467925548553,10.1060335636139,10.3447232246399,10.585545539856,10.8734364509583,11.2293438911438,11.6275424957275,11.984203338623,12.165901184082,12.0213885307312,11.4320394992828,10.3675832748413,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-0.421421527862549,-1.18475675582886,-1.43528127670288,-1.43200969696045,-1.48632907867432,-1.7972936630249,-2.38480567932129,-3.13579273223877,-3.91125202178955,-4.63525676727295,-5.31565380096436,-5.99602603912354,-6.68036270141602,-7.28140449523926,-7.62300205230713,-7.49602127075195,-6.74236392974854,-5.33241081237793,-3.40418148040771,-1.24469470977783,0.789333343505859,2.39131593704224,3.422447681427,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,2.73428783938289,3.71299117803574,4.86107766628265,5.82999408245087,6.35466420650482,6.39627242088318,6.14923286437988,5.91389799118042,5.91851472854614,6.19758653640747,6.58923411369324,6.83707547187805,6.72465419769287,6.16543173789978,5.21292102336884,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-1.72804000973701,-1.56447955965996,-1.29851573705673,-0.78999799489975,0.0814375877380371,1.30185568332672,2.6771088540554,3.89573812484741,4.67346572875977,4.89829981327057,4.69266045093536,4.35544171929359,4.21574459969997,4.47722122073174,5.13193701766431,5.97903555631638,6.72610974311829,7.1144495010376,7.00946736335754,6.42782080173492,5.50916707515717,4.4608119726181,3.50177752971649,2.81851124763489,2.53215084969997,2.67651587724686,3.19170951843262,3.94202375411987,4.75993448495865,5.50353878736496,6.10318529605865,6.57392501831055,6.98604559898376,7.40706372261047,7.84448504447937,8.21805787086487,8.37661194801331,8.15395796298981,7.44194412231445,6.2524328827858,4.74385187774897,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-3.73309278488159,-3.28519630432129,-3.13233661651611,-3.2963809967041,-3.59408283233643,-3.79905414581299,-3.80448532104492,-3.68360710144043,-3.62281513214111,-3.78367137908936,-4.18771743774414,-4.69231128692627,-5.06206226348877,-5.08593940734863,-4.67295360565186,-3.88377094268799,-2.89567279815674,-1.92820262908936,-1.16211700439453,-0.675656318664551,-0.411195755004883,-0.181453704833984,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-0.695687294006348,0.108723402023315,0.73827052116394,0.881541132926941,0.396344006061554,-0.575244188308716,-1.65538668632507,-2.41787564754486,-2.60318779945374,-2.23711156845093,-1.59377557039261,-1.03925647214055,-0.855219006538391,-1.13767230510712,-1.80597931146622,-2.68759191036224,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-5.50304865837097,-5.30611383914948,-5.05296742916107,-4.57662975788116,-3.71714115142822,-2.46715062856674,-1.03631287813187,0.215758800506592,0.947450160980225,1.00947785377502,0.527120590209961,-0.155001640319824,-0.632510900497437,-0.618791103363037,-0.0537443161010742,0.896004676818848,1.92524588108063,2.70996624231339,3.00437222421169,2.69073949754238,1.78857289999723,0.441031515598297,-1.11208608001471,-2.57820785045624,-3.67768716812134,-4.22058165073395,-4.16637408733368,-3.63422548770905,-2.85044211149216,-2.05292403697968,-1.39800834655762,-0.915896236896515,-0.534696221351624,-0.155444741249084,0.266908407211304,0.681184649467468,0.957138061523438,0.949518442153931,0.573944330215454,-0.14202618598938,-1.05328035354614,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-7.97110795974731,-7.439612865448,-7.47326946258545,-7.81328868865967,-8.00925874710083,-7.70642280578613,-6.85118770599365,-5.69969844818115,-4.64430236816406,-3.98112964630127,-3.76485729217529,-3.82654571533203,-3.92117023468018,-3.89675045013428,-3.7780647277832,-3.72586345672607,-3.9138879776001,-4.40965747833252,-5.12724018096924,-5.86606407165527,-6.39683628082275,-6.54009366035461,-6.20324552059174,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-6.5009560585022,-6.08466559648514,-5.76077371835709,-5.79529842734337,-6.43068218231201,-7.69822883605957,-9.3355278968811,-10.874361038208,-11.8550534248352,-12.0426602363586,-11.5209102630615,-10.618173122406,-9.72113299369812,-9.09079265594482,-8.77913093566895,-8.67159128189087,-8.60332643985748,-8.46400033310056,-8.23074567317963,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-7.90368294715881,-7.90446221828461,-7.88499641418457,-7.67144930362701,-7.087432295084,-6.10229426622391,-4.89803028106689,-3.80629563331604,-3.14830803871155,-3.07119011878967,-3.47377800941467,-4.05941462516785,-4.4782167673111,-4.47673106193542,-3.98184680938721,-3.09548044204712,-2.02928328514099,-1.03018641471863,-0.33071756362915,-0.122956037521362,-0.533543400466442,-1.58521300554276,-3.1581654548645,-4.98564064502716,-6.71138739585876,-8.00092530250549,-8.66003441810608,-8.69939970970154,-8.30831694602966,-7.75050663948059,-7.23866319656372,-6.85438179969788,-6.55054843425751,-6.22332715988159,-5.80191874504089,-5.30081501603127,-4.80851948261261,-4.42899835109711,-4.21876454353333,-4.1586925983429,-4.17248892784119,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-11.0366402864456,-10.9805860519409,-11.7094349861145,-12.657511472702,-13.1329665184021,-12.6972336769104,-11.3755006790161,-9.59141635894775,-7.89083003997803,-6.63951683044434,-5.87820339202881,-5.402268409729,-4.98628234863281,-4.58856678009033,-4.39865684509277,-4.70443439483643,-5.67543792724609,-7.20968055725098,-8.94338464736938,-10.4171962738037,-11.2956848144531,-11.5118147134781,-11.2587769031525,-10.8469638824463,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-9.15759116411209,-9.26070088148117,-9.48225319385529,-10.0376839637756,-11.0943307876587,-12.6127638816833,-14.29909324646,-15.7109894752502,-16.4611921310425,-16.3992233276367,-15.6657404899597,-14.5935702323914,-13.5212159156799,-12.6303188800812,-11.8935856819153,-11.1460392475128,-10.2200992107391,-9.05691888928413,-7.73327195644379,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-6.72877836227417,-7.06906628608704,-7.41787552833557,-7.71731019020081,-7.81307005882263,-7.55868595838547,-6.92603987455368,-6.04703521728516,-5.15680134296417,-4.47406232357025,-4.09477245807648,-3.96220338344574,-3.92362368106842,-3.82661950588226,-3.58922064304352,-3.2061870098114,-2.70602905750275,-2.10919225215912,-1.43069064617157,-0.727576315402985,-0.146278411149979,0.0853073596954346,-0.258541911840439,-1.27789142727852,-2.85773313045502,-4.67659044265747,-6.32197445631027,-7.45705008506775,-7.95015907287598,-7.89934343099594,-7.54599964618683,-7.13414299488068,-6.79696691036224,-6.52733790874481,-6.23229593038559,-5.82162845134735,-5.26891231536865,-4.61221039295197,-3.90903639793396,-3.1912796497345,-2.45982646942139,-1.72351479530334,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-9.93447533249855,-10.6952747106552,-12.2884283065796,-13.9380307197571,-14.8550016880035,-14.6317729949951,-13.4024820327759,-11.6949443817139,-10.0862293243408,-8.8842191696167,-8.02574062347412,-7.23288059234619,-6.30285167694092,-5.32557582855225,-4.67899322509766,-4.80234050750732,-5.89373779296875,-7.73028659820557,-9.73306488990784,-11.2497193813324,-11.893837749958,-11.7463402748108,-11.3014614582062,-11.1865487098694,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-6.21009695529938,-6.73453265428543,-7.20660150051117,-7.7215940952301,-8.44286918640137,-9.46545076370239,-10.7092971801758,-11.9145934581757,-12.7495155334473,-12.9708828926086,-12.5446991920471,-11.6574440002441,-10.6134781837463,-9.67836451530457,-8.95385146141052,-8.34663653373718,-7.6381459236145,-6.61074090003967,-5.16339263319969,-3.36331605911255,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-2.08461950719357,-2.7785068154335,-3.40834498405457,-3.88488376140594,-4.1128842830658,-4.03966271877289,-3.68612331151962,-3.13283389061689,-2.46726003289223,-1.73113951086998,-0.911894977092743,0.00993818044662476,0.990447640419006,1.88890990614891,2.51134556531906,2.71808916330338,2.52953210473061,2.15224176645279,1.89046630263329,1.98092478513718,2.44513136148453,3.05250529944897,3.42673392221332,3.24297505617142,2.4066878259182,1.11325918138027,-0.244132101535797,-1.26431745290756,-1.71920031309128,-1.63054275512695,-1.21295443177223,-0.730538606643677,-0.356908857822418,-0.113533854484558,0.0956549644470215,0.395673751831055,0.864242315292358,1.51194715499878,2.31311440467834,3.24289286136627,4.27635909989476,5.34240311384201,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-4.2912962436676,-5.70564031600952,-7.73161554336548,-9.59508514404297,-10.6417737007141,-10.6441740989685,-9.85984230041504,-8.81868076324463,-7.97707176208496,-7.4542818069458,-7.01045036315918,-6.27151966094971,-5.05034637451172,-3.55004692077637,-2.30870819091797,-1.90675830841064,-2.60931253433228,-4.16532516479492,-5.8974232673645,-7.04754948616028,-7.19018459320068,-6.48030340671539,-5.58912879228592,-5.35279126465321,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.2269317060709,-0.249320268630981,-0.611525475978851,-1.00378948450089,-1.54852658510208,-2.25434410572052,-2.99271464347839,-3.55248403549194,-3.73987293243408,-3.47143769264221,-2.81601083278656,-1.9699279665947,-1.18013536930084,-0.647935450077057,-0.448353290557861,-0.491991877555847,-0.543776631355286,-0.29857873916626,0.504335463047028,1.96570390462875,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,3.97256100177765,3.1719925403595,2.55016589164734,2.21052169799805,2.1403169631958,2.23949718475342,2.39653933048248,2.57606327533722,2.86788856983185,3.45752018690109,4.51683440804482,6.06479281187057,7.87898993492126,9.526771068573,10.5240485668182,10.5556347370148,9.64392328262329,8.16780650615692,6.70815014839172,5.78999650478363,5.65135449171066,6.15703880786896,6.8991379737854,7.42553108930588,7.47151309251785,7.07394847273827,6.51718288660049,6.15420007705688,6.2103511095047,6.67760920524597,7.34723901748657,7.94726634025574,8.29609680175781,8.38513875007629,8.35472321510315,8.39521086215973,8.64431464672089,9.14155077934265,9.85125112533569,10.7140717506409,11.6710438728333,12.6336531639099,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,2.82484912872314,1.36143922805786,-0.232136726379395,-1.44506072998047,-1.99098682403564,-1.93139457702637,-1.61026000976562,-1.43132972717285,-1.6008129119873,-1.98658561706543,-2.18452072143555,-1.76517105102539,-0.563560485839844,1.16218566894531,2.81162166595459,3.73589420318604,3.5906810760498,2.54666471481323,1.22674751281738,0.387399196624756,0.509064197540283,1.51941394805908,2.80906057357788,3.54230356216431,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,5.96013601124287,6.16634637676179,6.40320533514023,6.42591857910156,6.16646099090576,5.74902549386024,5.3919929265976,5.27626693248749,5.46357798576355,5.89659738540649,6.45117735862732,6.98601388931274,7.35968893766403,7.43172433972359,7.08906874060631,6.31735593080521,5.28359895944595,4.35817301273346,4.01865482330322,4.64757323265076,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,8.40318515151739,7.87874758243561,7.63748586177826,7.74732995033264,8.05024349689484,8.27379322052002,8.21177649497986,7.87727677822113,7.53957140445709,7.61187374591827,8.43550992012024,10.0672009587288,12.1845300197601,14.1726472377777,15.3638818264008,15.3224120140076,14.038304567337,11.9366987943649,9.69829601049423,7.97851902246475,7.15819841623306,7.23679882287979,7.90439826250076,8.73962042853236,9.4248026907444,9.87134915590286,10.2036979198456,10.6281606256962,11.2713776528835,12.0832405090332,12.856903553009,13.3488490581512,13.424286365509,13.1408710479736,12.7221503257751,12.4400358200073,12.4794764518738,12.8653779029846,13.4871644973755,14.1897554397583,14.857578754425,15.4290971755981,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,5.91362333297729,5.55383491516113,5.6976752281189,6.13238334655762,6.51186180114746,6.51887130737305,6.01046371459961,5.09316730499268,4.09871387481689,3.46344089508057,3.54777336120605,4.463791847229,5.99024105072021,7.63121318817139,8.81486225128174,9.15448522567749,8.6446795463562,7.68182182312012,6.87919235229492,6.75919055938721,7.48159837722778,8.75826025009155,10.0066475868225,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,7.08767296373844,8.32327318191528,9.2956383228302,9.67624998092651,9.51527333259583,9.13795208930969,8.89025139808655,8.9232349395752,9.15252149105072,9.38592514395714,9.49091011285782,9.46128630638123,9.34128201007843,9.09237098693848,8.54271292686462,7.49633711576462,5.945556640625,4.22740662097931,2.97551083564758,2.84498405456543,4.14640307426453,6.60694193840027,32767,32767,32767,32767,32767,32767,32767,32767,7.66354513168335,9.48582816123962,11.384425163269,12.7709112167358,13.278612613678,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,8.95324718952179,9.04154658317566,9.4438185095787,10.1357302367687,10.8186556100845,11.0959391593933,10.7200498078018,9.77153211832047,8.66432321071625,7.96498477458954,8.11599045991898,9.20592173933983,10.9051361083984,12.5983135700226,13.644896030426,13.6404190063477,12.5617816746235,10.7449457943439,8.72567981481552,7.02883931994438,5.9982433244586,5.7252362370491,6.08352021127939,6.83404433727264,7.74419242143631,8.66896343231201,9.5650018453598,10.4414196610451,11.2828374952078,11.9960858821869,12.4215116500854,12.4125611782074,11.9413199424744,11.1614918708801,10.3752131462097,9.90530443191528,9.93791580200195,10.428484916687,11.1330349445343,11.7497081756592,12.0830087661743,12.1248893737793,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,4.71120929718018,5.84985685348511,7.42602920532227,8.76368570327759,9.37290573120117,9.13574361801147,8.27713584899902,7.18887042999268,6.23982191085815,5.67347097396851,5.60298824310303,6.04455089569092,6.92573976516724,8.06286191940308,9.15816974639893,9.87256193161011,9.9704442024231,9.46236848831177,8.6450252532959,7.98969888687134,7.92606544494629,8.64040803909302,10.0013399124146,11.6453337520361,13.1555199623108,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,1.14623546600342,3.12452137470245,5.16400098800659,6.49911212921143,6.8277006149292,6.42141258716583,5.86087656021118,5.60852646827698,5.72540378570557,5.91089367866516,5.79903721809387,5.26493179798126,4.50622725486755,3.85015535354614,3.45181512832642,3.13362598419189,2.50883078575134,1.3144291639328,-0.288144707679749,-1.68089807033539,-2.08541059494019,-1.02247881889343,1.34892630577087,32767,32767,32767,32767,32767,32767,32767,0.611458603292704,1.79507554322481,4.01509469747543,6.58692193031311,8.78229460865259,10.0540102720261,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,3.91773623228073,4.83207476139069,5.57410168647766,6.41449069976807,7.48391079902649,8.64117312431335,9.51292824745178,9.69422554969788,8.99638938903809,7.59158372879028,5.96176773309708,4.67560648918152,4.12022268772125,4.33660632371902,5.04081243276596,5.79987354576588,6.2485659122467,6.22714424133301,5.78752183914185,5.10168671607971,4.35454916954041,3.68768644332886,3.20345383882523,2.99046581983566,3.12550614215434,3.64026567339897,4.48180484771729,5.50561049580574,6.51460951566696,7.32032752037048,7.78748023509979,7.84275698661804,7.46415328979492,6.68349528312683,5.61502242088318,4.48204064369202,3.59144777059555,3.23004265129566,3.51868629455566,4.3125219643116,5.23167270421982,5.83429455757141,5.8473482131958,5.31673359870911,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-1.55893874168396,0.686283349990845,3.08369207382202,4.68775463104248,5.09018528461456,4.53681826591492,3.65483832359314,3.00925803184509,2.79146480560303,2.82010793685913,2.80220770835876,2.62959098815918,2.48268175125122,2.6759672164917,3.37534189224243,4.41009092330933,5.32741975784302,5.66110944747925,5.235182762146,4.30372762680054,3.44222688674927,3.26466774940491,4.13373708724976,6.00935512781143,8.47655081748962,10.8972539901733,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-5.03760433197021,-2.58992147445679,-0.479441165924072,0.501205921173096,0.241482973098755,-0.673198699951172,-1.4098653793335,-1.46995377540588,-0.996673703193665,-0.610099911689758,-0.913485437631607,-2.0388191640377,-3.55348479747772,-4.77730619907379,-5.26409995555878,-5.09499728679657,-4.77927170693874,-4.84615290164948,-5.42787957191467,-6.13157486915588,-6.28766703605652,-5.40209341049194,-3.50878083705902,32767,32767,32767,32767,32767,32767,32767,-3.31177973747253,-2.59330071508884,-1.17716693878174,0.45859956741333,1.77991724014282,2.37147283554077,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-2.20859557390213,-0.866984128952026,0.523347735404968,2.00362730026245,3.52003827691078,4.84998950362206,5.65985584259033,5.67922687530518,4.88117134571075,3.53652560710907,2.08918811380863,0.92242157459259,0.168445587158203,-0.312450170516968,-0.771966457366943,-1.35004138946533,-1.94779253005981,-2.28861451148987,-2.12192368507385,-1.42050933837891,-0.426208734512329,0.492923736572266,1.07537198066711,1.32668082416058,1.49672827124596,1.89159625768661,2.65061527490616,3.63749378919601,4.50968155264854,4.90842571854591,4.64019566774368,3.74368512630463,2.42937064170837,0.964048862457275,-0.410004079341888,-1.48827421665192,-2.08958365023136,-2.0804408788681,-1.45805478096008,-0.435765504837036,0.563977301120758,1.05961778759956,0.751420259475708,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-8.56117749214172,-5.97878623008728,-3.66756796836853,-2.57058322429657,-2.81198012828827,-3.71802008152008,-4.33505177497864,-4.08646845817566,-3.13123595714569,-2.20099061727524,-2.04903453588486,-2.89876568317413,-4.26571369171143,-5.261195063591,-5.16316485404968,-3.8730616569519,-1.97196364402771,-0.362480401992798,0.258671760559082,-0.227041721343994,-1.33657217025757,-2.27717262506485,-2.35321622341871,-1.27046853303909,0.769242465496063,3.16320449113846,5.10884684324265,5.84160822629929,4.8733936548233,2.19048047065735,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-7.56178712844849,-5.48061561584473,-4.16111898422241,-4.2085280418396,-5.40464615821838,-6.83456498384476,-7.50002384185791,-6.99418032169342,-5.77010351419449,-4.82247081398964,-5.0095911026001,-6.48172426223755,-8.59160017967224,-10.3204367160797,-10.9073126316071,-10.2590706348419,-8.90086460113525,-7.55557298660278,-6.6749415397644,-6.23481416702271,-5.88488101959229,-5.28861522674561,-4.38405135087669,32767,32767,32767,32767,32767,32767,32767,-1.55984410643578,-1.35327130556107,-1.35379099845886,-1.66087198257446,-2.37068033218384,-3.54049277305603,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-3.02371126413345,-1.23097085952759,0.367251873016357,1.55772066116333,2.16088140010834,2.13952803611755,1.6733472943306,1.10161533951759,0.72905707359314,0.609713554382324,0.474313259124756,-0.11055850982666,-1.42347383499146,-3.31493854522705,-5.18186664581299,-6.24329876899719,-5.96750664710999,-4.38515186309814,-2.08347344398499,0.123211145401001,1.64173579216003,2.38739930093288,2.739029109478,3.21078968048096,4.06832569092512,5.14028960466385,5.93232464790344,5.94800615310669,4.99628853797913,3.29528284072876,1.33433032035828,-0.386037588119507,-1.55919462442398,-2.11726057529449,-2.14054137468338,-1.74668991565704,-1.05865406990051,-0.255915403366089,0.377520181238651,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-3.65827894210815,-3.89623975753784,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-11.3619871139526,-9.15912818908691,-7.60668742656708,-7.40582811832428,-8.32536888122559,-9.36663341522217,-9.43889784812927,-8.10840153694153,-5.92361295223236,-4.09428209066391,-3.72659170627594,-5.1082911491394,-7.50011372566223,-9.55453276634216,-10.0856442451477,-8.71076798439026,-5.99755144119263,-3.08242237567902,-1.03963567316532,-0.384306699037552,-0.947574406862259,-2.10510921478271,-3.15275239944458,-3.60752654075623,-3.33458465337753,-2.53000260517001,-1.63447046279907,-1.21024465560913,-1.76631355285645,-3.53739190101624,-6.30331969261169,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-4.31691551208496,-3.26788663864136,-3.27731132507324,-4.60951662063599,-6.68750083446503,-8.36950373649597,-8.65663623809814,-7.35740089416504,-5.2500786781311,-3.62176662683487,-3.48319420218468,-4.96746814250946,-7.28187155723572,-9.20540332794189,-9.78057193756104,-8.76514005661011,-6.61829018592834,-4.12253777682781,-1.94950425624847,-0.439702868461609,0.349537491798401,0.480631563812494,0.0502891540527344,32767,32767,32767,32767,32767,32767,32767,6.05304312705994,6.03900074958801,4.78539204597473,2.63371360301971,-0.0212998390197754,-2.87613379955292,-5.66634172201157,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-3.05006968975067,-1.40065512061119,-0.094939611852169,0.768717139959335,1.21434380114079,1.42488999664783,1.72797256708145,2.45975911617279,3.7343282699585,5.26110601425171,6.37836456298828,6.35794305801392,4.84542894363403,2.16833686828613,-0.714828491210938,-2.6451621055603,-2.84767436981201,-1.32440710067749,1.18445491790771,3.64883494377136,5.3275705575943,6.12285010516644,6.5067338347435,7.09738183021545,8.18036818504333,9.49094784259796,10.3844791054726,10.2640731334686,8.97563457489014,6.91971588134766,4.8280890583992,3.36744022369385,2.82372295856476,3.03975343704224,3.59979736804962,4.10260102152824,4.33947812020779,4.29340928792953,4.01500177383423,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.739388465881348,-0.501162052154541,-1.22280883789062,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-7.98038506507874,-6.55075979232788,-5.9013979434967,-6.37329232692719,-7.4890615940094,-8.19118714332581,-7.50994992256165,-5.24290728569031,-2.18695375323296,0.260760188102722,0.907558962702751,-0.521725863218307,-3.20274883508682,-5.65998423099518,-6.55545830726624,-5.34286499023438,-2.4377309679985,1.11581113934517,4.20967149734497,6.11790013313293,6.63138246536255,5.92640972137451,4.35612535476685,2.3207990527153,0.231295585632324,-1.52559459209442,-2.69105869531631,-3.26667267084122,-3.54878783226013,-3.9762327671051,-4.84889101982117,-6.10611772537231,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,1.47313022613525,2.03485345840454,2.52595329284668,2.36156034469604,1.06245756149292,-1.25465559959412,-3.75511772930622,-5.28043985366821,-5.03494688868523,-3.11308133602142,-0.500938177108765,1.47002071142197,1.87723034620285,0.701021328568459,-1.22379311919212,-2.72206723690033,-2.90425705909729,-1.53366076946259,1.01039886474609,4.03914046287537,6.86736845970154,8.95867562294006,9.9275022149086,9.54968237876892,7.88201689720154,32767,32767,32767,32767,32767,32767,32767,15.5973830223083,15.5403409004211,13.6322522163391,10.6254508495331,7.27165746688843,4.01530209183693,1.03288120031357,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.936537027359009,1.68837666511536,2.23299789428711,2.73880004882812,3.46201372146606,4.71635937690735,6.74037337303162,9.48610138893127,12.4697980880737,14.846736907959,15.7551951408386,14.7789969444275,12.2529377937317,9.18684673309326,6.80386257171631,5.93698263168335,6.63784098625183,8.23171103000641,9.77873569726944,10.6471225321293,10.8404466882348,10.8881344795227,11.3966770172119,12.5726943016052,14.0368385314941,15.0444507598877,14.9610681533813,13.6802730560303,11.7175717353821,9.92772579193115,9.02801299095154,9.21843063831329,10.1129915714264,10.9976589679718,11.2387392520905,10.598258972168,9.29504823684692,7.81554937362671,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,6.53096807003021,5.61531090736389,4.65387046337128,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-0.750578165054321,-0.172236442565918,-0.135089874267578,-0.650543928146362,-1.24326372146606,-1.14064002037048,0.260499477386475,2.94124245643616,6.14587211608887,8.72506135702133,9.75439047813416,9.05014276504517,7.26834583282471,5.54088073968887,4.8907179236412,5.77964985370636,8.01502108573914,10.9825592041016,13.9818096160889,16.4368333816528,17.9178328514099,18.0844850540161,16.7090950012207,13.8243738412857,9.87830984592438,5.71300435066223,2.28975820541382,0.276941299438477,-0.249545812606812,0.208819150924683,0.901768445968628,1.2563648223877,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,8.22367525100708,8.46652913093567,8.27609086036682,7.21636325120926,5.16315847635269,2.55884373188019,0.310184673406184,-0.661168098449707,0.0486359596252441,2.05824971199036,4.39059740304947,6.01421630382538,6.40186858177185,5.76873528957367,4.87411034107208,4.5545392036438,5.30268013477325,7.12400617077947,9.67482423782349,12.494278550148,15.1317932605743,17.1280456781387,17.9830825023819,17.2777611017227,14.9647281169891,11.6373240947723,32767,32767,32767,32767,32767,32767,32767,20.966579914093,18.9165115356445,16.2274582982063,13.7785764336586,11.8547848165035,10.2269733548164,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,3.68364000320435,4.53364706039429,5.91291189193726,7.91414546966553,10.5962243080139,13.8521585464478,17.2796831727028,20.2037473767996,21.9156832098961,22.0256658196449,20.7111250162125,18.6745970547199,16.8012858629227,15.7069006562233,15.4521187543869,15.5999853014946,15.5725852251053,15.0686555504799,14.2672175914049,13.687783062458,13.8076046705246,14.6952016353607,15.9082782268524,16.7294936180115,16.5960259437561,15.4549245834351,13.8215335607529,12.4995931088924,12.1245577186346,12.7936985492706,13.9940130710602,14.868227481842,14.6708669662476,13.1663012504578,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,11.0397276878357,10.9192042350769,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,5.49406552314758,5.30737328529358,5.1426477432251,5.18036127090454,5.62273406982422,6.67016553878784,8.40827417373657,10.6884627342224,13.1216627061367,15.2309135198593,16.6838338375092,17.4492974281311,17.7739939689636,18.0045857429504,18.3940320014954,19.029776096344,19.9090142250061,21.0536756515503,22.5217385292053,24.2664909362793,25.9499168395996,26.8997507095337,26.3305125236511,23.7583403587341,19.369708776474,14.0825113179162,9.20955967903137,5.88185787200928,4.553382396698,4.86537742614746,5.93054628372192,6.84135381877422,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,9.18042802810669,9.56736946105957,9.79635381698608,9.34570360183716,7.94957041740417,5.84015011787415,3.70043981075287,2.32739126682281,2.19627644121647,3.19581401348114,4.70722377300262,5.98410165309906,6.59441876411438,6.64615714550018,6.66424465179443,7.2206757068634,8.57821393013,10.5800547599792,12.8260757923126,14.9644714593887,16.8553272262216,18.4853293895721,19.7340413928032,20.2360504940152,19.5250414609909,17.4161789417267,14.3548055887222,11.4191291332245,9.87129306793213,32767,32767,32767,32767,32767,18.3374271392822,16.3130486011505,14.6179840564728,14.0466117858887,14.5398998260498,15.3268531560898,15.4701526165009,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,10.751718044281,13.2046935558319,15.7020766735077,18.0866103172302,20.0945994853973,21.4817218780518,22.1627006530762,22.2491574287415,21.953337430954,21.4318447113037,20.6918339729309,19.6344640254974,18.204273223877,16.5293697118759,14.9369325041771,13.8137835860252,13.3899611830711,13.5824074521661,14.0063555538654,14.1636987924576,13.7117455005646,12.6641647815704,11.4064154624939,10.5029354095459,10.3850815296173,11.0785146951675,12.1231756210327,12.7522275447845,12.2656030654907,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,9.71594333648682,10.1460223197937,10.9279656410217,11.8905534744263,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,7.84278303384781,6.98155546188354,6.19478034973145,6.1080470085144,6.938307762146,8.45904874801636,10.1901793479919,11.6873159408569,12.7804136276245,13.6535131931305,14.7350194752216,16.4515316486359,18.9576396942139,21.9795575141907,24.8704786300659,26.8820123672485,27.5364608764648,26.9050769805908,25.6190567016602,24.5685677528381,24.4244475364685,25.2377033233643,26.3548555374146,26.7230215072632,25.4366798400879,22.2337121963501,17.6656184196472,12.8493378162384,8.9393173456192,6.61075830459595,5.82106781005859,5.9514467716217,6.21149754524231,6.06215608119965,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,4.66556295752525,5.5406739115715,6.17115376889706,5.8820589184761,4.60791558027267,2.94163984060287,1.75019073486328,1.61552196741104,2.46930662635714,3.65859058499336,4.39535766839981,4.29319339990616,3.63964888453484,3.22754740715027,3.85550844669342,5.82078123092651,8.72745203971863,11.7232105731964,13.9980835914612,15.214203119278,15.5949310064316,15.6417229771614,15.7024708390236,15.7109322249889,15.2856306806207,14.1103610098362,12.304799079895,10.4876017570496,9.44704484939575,9.62070608139038,32767,32767,32767,32767,9.01147150993347,7.00956201553345,6.26449775695801,7.35913419723511,9.95077323913574,12.9301159381866,14.9575862884521,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,7.29246461391449,7.83601114153862,8.80669009685516,10.5383386611938,13.0102140903473,15.8511605262756,18.4768805503845,20.2993812561035,20.9329566955566,20.3232293128967,18.7515459060669,16.7115426063538,14.7115329504013,13.092302441597,11.9427667856216,11.1392019689083,10.4669867753983,9.74518918991089,8.89340257644653,7.93267393112183,6.95591592788696,6.10260105133057,5.53493452072144,5.38496613502502,5.65850746631622,6.14148357883096,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,7.26966762542725,6.09903252124786,4.89584940671921,4.1506639122963,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,5.29878380894661,5.86475664377213,5.09174996614456,3.63447260856628,2.53232145309448,2.63373374938965,4.11534690856934,6.37652158737183,8.38132333755493,9.2686185836792,8.89050674438477,7.96671032905579,7.74722146987915,9.34783279895782,13.1096830368042,18.3322854042053,23.5321640968323,27.1015005111694,28.0323181152344,26.3428912162781,23.0116972923279,19.4788062572479,16.9850487709045,16.0699737071991,16.4408507347107,17.2230534553528,17.4257574081421,16.3877515792847,14.0143623352051,10.7392945289612,7.26993012428284,4.25764246284962,2.04264855384827,0.580947160720825,-0.431309700012207,-1.31074738502502,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-1.68420654535294,0.0828203194541857,1.37844598293304,1.43422436714172,0.435017794370651,-0.657975018024445,-0.818360149860382,0.306541442871094,2.13838028907776,3.56077527999878,3.68872547149658,2.4951491355896,0.880516052246094,0.143744468688965,1.19663697481155,4.01391792297363,7.64371800422668,10.744713306427,12.3029670715332,12.1033432483673,10.7155879735947,9.06550186872482,7.89473688602448,7.43563330173492,7.44886565208435,7.52706098556519,7.41687726974487,7.14047765731812,6.86579036712646,6.65923500061035,6.33067035675049,32767,32767,32767,-0.910416126251221,-2.68341541290283,-2.95876836776733,-1.40642070770264,1.63355779647827,5.22501806914806,8.14997434616089,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-0.288820147514343,-1.83839213848114,-2.47237157821655,-1.33297291398048,1.76528713107109,6.21570837497711,10.8445243835449,14.3988862037659,16.0787763595581,15.8499803543091,14.3769645690918,12.6139626502991,11.287329852581,10.5639324188232,10.0845756530762,9.30989729613066,7.93464970588684,6.0956711769104,4.25615787506104,2.87618350982666,2.11904907226562,1.79739189147949,1.57047748565674,1.21673774719238,0.760647058486938,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,1.9292676448822,-0.272552967071533,-2.85458052158356,-4.87687304615974,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-0.0619224309921265,1.0122834444046,1.19523870944977,0.334508419036865,-1.06898403167725,-2.05287551879883,-1.74441814422607,0.0524301528930664,2.63023090362549,4.71281385421753,5.20266199111938,3.90584659576416,1.77566003799438,0.485287666320801,1.54213571548462,5.4402049779892,11.3307693004608,17.3876008987427,21.6477818489075,22.8645482063293,20.9456088542938,16.82859146595,11.9547790884972,7.66871917247772,4.81535112857819,3.62537825107574,3.81045979261398,4.74191376566887,5.64310228824615,5.79275518655777,4.73799335956573,2.45602107048035,-0.633806467056274,-3.86019122600555,-6.6132915019989,-8.60007238388062,-9.87445163726807,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-4.85108441114426,-2.10962748527527,-0.227241277694702,0.0544064044952393,-0.786171406507492,-1.45467840135098,-0.808955776505172,1.30527561903,3.93089985847473,5.65711903572083,5.5901894569397,3.97344970703125,2.05280923843384,1.29815673828125,2.50110024213791,5.31461906433105,8.48206424713135,10.5613765716553,10.678647518158,8.89103555679321,6.02825954556465,3.19576621055603,1.26553058624268,0.602926254272461,1.07962656021118,2.25934982299805,3.60456228256226,4.620774269104,4.94079780578613,4.38282775878906,2.98776912689209,1.00693035125732,32767,32767,-4.76517295837402,-5.71763837337494,-5.95605146884918,-5.39835834503174,-4.02264596708119,-1.99836665391922,0.192290544509888,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-9.08509087562561,-8.46241855621338,-5.26451563835144,-0.238148331642151,5.12103264033794,9.23377025127411,11.1706674098969,11.0539016723633,9.89060932397842,8.92481410503387,8.89231169223785,9.63021767139435,10.2739260941744,9.89658552408218,32767,32767,32767,1.64229202270508,1.36219787597656,1.72786283493042,1.89224743843079,1.28590667247772,-0.0408667325973511,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-2.10509300231934,-2.69379341229796,-2.85625344514847,-2.52744591236115,-2.14513206481934,-2.19859099388123,-2.72332811355591,-3.15547323226929,-2.69664669036865,-0.949273586273193,1.65132856369019,3.97134923934937,4.85179591178894,3.89728951454163,1.8432469367981,0.223845481872559,0.520803928375244,3.31502246856689,7.95288926362991,12.8962910175323,16.4965178966522,17.7101709842682,16.3839266300201,13.0712849721313,8.63304054737091,3.92793560028076,-0.28528904914856,-3.34367775917053,-4.76211953163147,-4.45476597547531,-2.93641620874405,-1.26230025291443,-0.612941741943359,-1.70992398262024,-4.42739915847778,-7.88154673576355,-10.9621634483337,-12.9561347961426,-13.8409261703491,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.918003559112549,2.95923829078674,3.16985583305359,2.31331863999367,1.8856293708086,3.02293759770691,5.69363570213318,8.73190999031067,10.659411907196,10.6966574192047,9.26398822665215,7.65874135494232,7.17135262489319,8.25811767578125,10.2984085083008,12.0325329303741,12.3315570354462,10.7927395105362,7.84802225232124,4.43150854110718,1.50197887420654,-0.289093017578125,-0.689640998840332,0.202674388885498,1.99790668487549,4.05395412445068,5.58859157562256,5.93631076812744,4.87718677520752,2.82407093048096,0.673887252807617,32767,32767,32767,0.427602052688599,0.132611453533173,-1.1818140745163,-2.8915211558342,-4.02512788772583,-3.94017245993018,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-7.43839597702026,-6.97894376516342,-4.09243893623352,0.441831588745117,5.12813258171082,8.46053811907768,9.69103842973709,9.20384627580643,8.24055981636047,8.11172389984131,9.37000560760498,11.4676821231842,13.1248860359192,13.1752798557281,32767,32767,32767,4.60598850250244,4.94247007369995,5.98646354675293,6.50388073921204,5.66402953141369,3.52558624744415,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.613788902759552,-1.82891249656677,-3.2160165309906,-2.95219850540161,-1.51819276809692,0.0301980972290039,0.907089233398438,1.15827369689941,1.54778575897217,2.88724756240845,5.33291578292847,8.18574577569962,10.3411400318146,11.0520694255829,10.4473722577095,9.44190683960915,9.12554317712784,10.0811536163092,12.0945428609848,14.3959953784943,16.1804206371307,16.9933953285217,16.7442934513092,15.4535818099976,13.0571429729462,9.50338959693909,5.06967231631279,0.567418575286865,-2.86254273355007,-4.34325450658798,-3.86356735229492,-2.41753083467484,-1.4928263425827,-2.19141745567322,-4.56445109844208,-7.62841463088989,-10.0573279857635,-11.061381816864,-10.829327583313,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,7.10925678908825,8.71743357181549,8.59464550018311,7.69909834861755,7.49304485321045,8.90034532546997,11.670884847641,14.5896372795105,16.3479809761047,16.4313158988953,15.3982920646667,14.3946785926819,14.2965550422668,15.1105072200298,16.0264645814896,16.0254955887794,14.5684328973293,11.8936057090759,8.79027366638184,6.10042572021484,4.33947801589966,3.64564990997314,3.95603466033936,5.14145374298096,6.94271373748779,8.81603050231934,9.95654296875,9.65336799621582,7.81496620178223,5.25814247131348,3.42347145080566,32767,32767,32767,32767,11.4305572509766,8.34482610225677,3.58725916594267,-0.782712355256081,-3.06549942493439,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,3.54855966567993,6.90250730514526,10.01131939888,11.7547520548105,11.772375151515,10.7109606266022,9.85901093482971,10.3475370407104,12.4064493179321,15.166787147522,17.1650018692017,17.2480478286743,32767,32767,32767,9.04800796508789,9.83657360076904,11.2585079669952,11.9306444227695,10.9326836057007,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,8.21643972396851,6.95150971412659,3.73498356342316,0.437435150146484,-1.03762340545654,0.0996780395507812,3.12673950195312,6.39639186859131,8.47440242767334,9.0358943939209,8.94422101974487,9.53062200546265,11.632964849472,15.0643184185028,18.8146576881409,21.7520232200623,23.279061794281,23.5186176300049,23.0114212036133,22.2645201683044,21.5278029441833,20.9016528129578,20.5556387901306,20.7500104904175,21.5693254470825,22.6004557609558,22.9177165031433,21.5316920280457,18.0658178329468,13.1643102169037,8.25765442848206,4.75655770301819,3.19353747367859,2.92099583148956,2.61104521155357,1.22399739921093,-1.24285459518433,-3.77300092577934,-5.10599184036255,-4.69926750659943,-3.16039335727692,-1.82052659988403,-1.7618625164032,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,12.1087560653687,12.8112621307373,12.2912662029266,11.5405248403549,11.7104898691177,13.2932598590851,15.7781522274017,18.0318534374237,19.1096813678741,18.8912103772163,18.0796177387238,17.5927333831787,17.8283643722534,18.3642773628235,18.3047542572021,16.989513874054,14.5191006660461,11.7147874832153,9.57712459564209,8.67798233032227,8.93138790130615,9.85038089752197,10.9991397857666,12.2226972579956,13.4779243469238,14.4856662750244,14.6246881484985,13.29927110672,10.5705103874207,7.51485681533813,5.87122869491577,32767,32767,32767,32767,32767,32767,9.56007933616638,3.48972809314728,-0.0703489780426025,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,14.2378394454718,12.9352804422379,12.3909502029419,13.3283519744873,15.5784902572632,18.0950059890747,19.5302085876465,19.0329918861389,32767,32767,32767,10.9508423805237,11.7529773712158,13.0390753746033,13.5829334259033,12.5988624095917,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,9.83438241481781,8.29580970108509,5.33931684494019,2.8352575302124,2.58820056915283,5.17080974578857,9.54798412322998,13.7441029548645,16.0957837104797,16.2508111000061,15.2862346172333,14.9356164932251,16.4936633706093,20.1133346557617,24.8636059761047,29.3744297027588,32.5571794509888,33.9614524841309,33.6923885345459,32.1388258934021,29.8119006156921,27.3651084899902,25.6102981567383,25.3072052001953,26.7330760955811,29.3223791122437,31.7356824874878,32.4586477279663,30.6274213790894,26.5386996269226,21.464891910553,16.8615131378174,13.4990347623825,11.1223322153091,8.87057685852051,6.12618923187256,3.13657921552658,0.913582503795624,0.462602257728577,1.91668611764908,4.25232148170471,5.85448598861694,5.56724977493286,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,11.4147268310189,11.0782467126846,11.7808442115784,13.4648236632347,15.3812588453293,16.5906530618668,16.6181707382202,15.7749123573303,14.8929681777954,14.6642293930054,15.0843677520752,15.4373178482056,14.8506269454956,13.0120306015015,10.5029306411743,8.48415946960449,7.95545959472656,9.12843894958496,11.3579015731812,13.6431789398193,15.2799634933472,16.1556949615479,16.5037631988525,16.4009561538696,15.5181574821472,13.4174513816833,10.1916184425354,6.87235736846924,5.12438631057739,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,13.1813600063324,12.3144826889038,12.5076608657837,13.9196801185608,15.9666519165039,17.580153465271,17.7865467071533,32767,32767,32767,32767,32767,8.16656351089478,8.8347430229187,9.03998804092407,8.33716583251953,32767,32767,32767,0.985329031944275,-0.0589283108711243,-0.474128365516663,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,6.40953135490417,6.7650887966156,6.03933620452881,4.8390908241272,4.5152645111084,6.22100448608398,10.0209546089172,14.7007584571838,18.4423570632935,19.9277412891388,19.1382706165314,17.3416953086853,16.3120758533478,17.319011092186,20.5150109529495,25.0203204154968,29.52374792099,32.9383230209351,34.732871055603,34.8838315010071,33.6666526794434,31.5363094806671,29.1444058418274,27.3286645412445,26.8936276435852,28.2054181098938,30.8584957122803,33.7177038192749,35.4130220413208,35.0293703079224,32.5488653182983,28.7466197013855,24.6182546615601,20.757511138916,17.1333894729614,13.4110832214355,9.53102612495422,6.04864537715912,3.90848313271999,3.77145455777645,5.39076054096222,7.54811906814575,8.68368554115295,7.84274506568909,5.29959392547607,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,8.02606225013733,6.99886608123779,6.34649085998535,6.59743356704712,7.79331278800964,9.39324069023132,10.5497945547104,10.623973608017,9.60750293731689,8.14270687103271,7.08967781066895,6.91952705383301,7.36670303344727,7.61623382568359,6.92350006103516,5.23354911804199,3.33835411071777,2.42483520507812,3.3072338104248,5.87751865386963,9.16021919250488,11.9224863052368,13.3904538154602,13.5632848739624,12.9429740905762,11.9589676856995,10.5972290039062,8.55610370635986,5.78963422775269,2.93570709228516,1.17192363739014,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,6.4299852848053,6.00360226631165,5.88027167320251,6.22031402587891,32767,8.07423210144043,9.14700794219971,9.85203194618225,32767,32767,32767,32767,7.26290655136108,8.54076099395752,10.546929359436,12.3233623504639,32767,32767,32767,32767,32767,32767,32767,0.29411792755127,0.127886772155762,-0.0455183982849121,-0.226291656494141,-0.370934009552002,-0.525448560714722,-0.81441342830658,-1.30664908885956,-1.89245104789734,-2.29667484760284,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.608956336975098,1.17335510253906,1.94209337234497,3.17902231216431,5.37788057327271,8.74200248718262,12.7849836349487,16.4090315103531,18.4705916419625,18.4747416377068,16.9219481945038,15.0629165172577,14.2148952484131,15.079909324646,17.4740557670593,20.5776109695435,23.4700672030449,25.5747892409563,26.773181207478,27.2251664400101,27.1269342899323,26.6190114021301,25.8695194721222,25.1806005239487,24.9483906030655,25.4544379711151,26.6402993202209,28.0622119903564,29.0934591293335,29.245587348938,28.3788967132568,26.6590423583984,24.3212518692017,21.4607286453247,18.0413188934326,14.1247057914734,10.1119275093079,6.74332547560334,4.76851272583008,4.46726644039154,5.36014866828918,6.36424720287323,6.36132037639618,4.84917411208153,2.25963133573532,-0.278620898723602,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,1.63263487815857,0.532105922698975,0.334502220153809,1.16090297698975,2.56631565093994,3.76636171340942,4.05281019210815,3.18119478225708,1.50992488861084,-0.205910682678223,-1.26338005065918,-1.43841552734375,-1.11401176452637,-1.00464820861816,-1.63473510742188,-2.91268062591553,-4.10636138916016,-4.27130317687988,-2.87004280090332,-0.170793533325195,2.85494804382324,5.07917404174805,5.84502983093262,5.25911903381348,3.97701644897461,2.67637062072754,1.62435674667358,0.64626932144165,-0.531523704528809,-1.89290547370911,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-4.22049689292908,-3.41567796468735,-2.51898589730263,-1.90752202272415,-1.64189153909683,-1.54730492830276,-1.38785964250565,-0.992121756076813,-0.293726682662964,0.657385110855103,1.66758060455322,2.39614510536194,2.46172308921814,1.67605298757553,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-5.46739292144775,-6.47608089447021,-7.43016076087952,-8.32387971878052,-8.78689110279083,-8.42380440235138,-7.19532942771912,-5.53113150596619,-4.0870663523674,-3.33605051040649,-3.29769188165665,-3.5867732167244,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-4.15825057029724,-3.29754447937012,-1.25018548965454,1.89544343948364,5.75910568237305,9.65280103683472,12.7394933700562,14.3595224916935,14.3663809150457,13.2531549930573,11.9462049007416,11.3503570556641,11.8996415138245,13.3816261291504,15.1330480575562,16.4728593826294,17.0955858230591,17.1935997009277,17.2667570114136,17.7733659744263,18.8529767990112,20.2714242935181,21.5789375305176,22.3523387908936,22.3789978027344,21.7130485475063,20.6215513944626,19.4742813110352,18.6171796321869,18.2459287643433,18.3049945831299,18.4612965583801,18.2055625915527,17.0779366493225,14.9238305091858,12.031308054924,9.03931303322315,6.63496363162994,5.19668054580688,4.59327268600464,4.26541471481323,3.5487060546875,2.05089998245239,-0.132981777191162,-2.47955751419067,-4.31936359405518,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-2.92811149358749,-3.39950709044933,-2.84168243408203,-1.57117295265198,-0.326900005340576,0.165151596069336,-0.424635410308838,-1.89795303344727,-3.6844425201416,-5.16672229766846,-5.98983573913574,-6.20351123809814,-6.18162441253662,-6.37240791320801,-7.01233768463135,-7.95815277099609,-8.73921585083008,-8.81955051422119,-7.93386173248291,-6.29916763305664,-4.5559024810791,-3.44743633270264,-3.41467618942261,-4.34974908828735,-5.66345977783203,-6.62533855438232,-6.76465713977814,-6.09329563379288,-5.04368238151073,-4.20483684539795,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-5.47672319412231,-3.81743383407593,-3.1369001865387,-3.60003459453583,-4.81103092432022,-6.14832866191864,-7.1553909778595,-7.71898198127747,-7.97187924385071,-8.06756091117859,-8.03033685684204,-7.77073264122009,-7.19811153411865,-6.30232954025269,-5.14859521389008,-3.84052670001984,-2.53432548046112,-1.50234937667847,-1.1377124786377,-1.79407119750977,-3.49368953704834,32767,32767,32767,32767,32767,32767,32767,32767,32767,-3.90151166915894,-6.03530406951904,-7.30871570110321,-8.05429434776306,-8.89923584461212,-10.1500639915466,-11.4788546562195,-12.1391906738281,-11.5291233062744,-9.66384410858154,-7.20802213251591,-5.0647439956665,-3.84343492984772,-3.58865240216255,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-4.85346591472626,-4.09674310684204,-1.72806930541992,1.95873641967773,5.98221969604492,9.10823583602905,10.4730026721954,10.0487093925476,8.67332768440247,7.61082458496094,7.8827338218689,9.74595212936401,12.6004657745361,15.3564805984497,17.0293045043945,17.2244424819946,16.27357006073,15.0021934509277,14.3042097091675,14.7533655166626,16.4062051773071,18.8194646835327,21.2202196121216,22.7563810348511,22.7766199111938,21.0828682780266,18.0659882538021,14.6225233674049,11.8220261633396,10.4357585608959,10.5670735836029,11.6103501319885,12.5973038673401,12.7435187101364,11.862729549408,10.3872447609901,8.99123008549213,8.08285343647003,7.51910412311554,6.73431372642517,5.17451095581055,2.71604347229004,-0.228998184204102,-2.97768878936768,-4.99651908874512,-6.16841745376587,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-3.55532377958298,-2.91768488287926,-1.43740135803819,0.162386775016785,1.03250241279602,0.720847129821777,-0.60428524017334,-2.33853244781494,-3.85546875,-4.848219871521,-5.39903831481934,-5.7982702255249,-6.29569911956787,-6.96474647521973,-7.72868347167969,-8.46661853790283,-9.08770751953125,-9.53497982025146,-9.7667350769043,-9.77755451202393,-9.65486240386963,-9.59575700759888,-9.81325888633728,-10.3539669513702,-10.9537066966295,-11.076014995575,-10.1738805770874,-8.05260741710663,-5.11090940237045,-2.28045947849751,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-7.8848822414875,-7.10480177402496,-6.10828971862793,-5.31326270103455,-4.83258119225502,-4.56978112459183,-4.44875812530518,-4.55096936225891,-5.04243493080139,-5.96902060508728,-7.11040735244751,-8.02641797065735,-8.26547455787659,-7.58001387119293,-6.00967907905579,-3.82070994377136,-1.40309819579124,32767,32767,2.34464979171753,0.94324254989624,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-3.36258256435394,-4.13059751689434,-4.14445918798447,-4.04921722412109,-4.5551780462265,-5.82815247401595,-7.32252073287964,-8.16884970664978,-7.80544289946556,-6.37259554862976,-4.59172391891479,-3.25761294364929,-2.75442624092102,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-0.701348423957825,-1.40829038619995,-1.27335166931152,0.389381408691406,3.26822233200073,6.1731915473938,7.76862764358521,7.45386266708374,5.81643104553223,4.34923601150513,4.59822082519531,7.27177762985229,11.8528652191162,16.920223236084,20.9382162094116,23.0170860290527,23.2219371795654,22.3429927825928,21.3702831268311,21.0314836502075,21.6062593460083,22.9883337020874,24.8188824653625,26.5637505054474,27.5635174512863,27.1778192520142,25.0689971446991,21.4911041259766,17.3416020870209,13.8315005302429,11.8928575515747,11.6822018623352,12.5265958309174,13.3850545287132,13.5282330513,12.9635156393051,12.2996420860291,12.1543201208115,12.5555799007416,12.8053444623947,11.9319277405739,9.40755176544189,5.59310150146484,1.56423282623291,-1.56695461273193,-3.33713150024414,-4.12587404251099,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-0.917514562606812,0.852835655212402,3.19604778289795,5.07722949981689,5.64276671409607,4.74601793289185,2.97995185852051,1.2204122543335,0.0379600524902344,-0.594423294067383,-1.12422943115234,-1.96485042572021,-3.1466646194458,-4.33747577667236,-5.17831325531006,-5.62792873382568,-6.01889133453369,-6.7804126739502,-8.06384372711182,-9.58554553985596,-10.8183770179749,-11.3719606399536,-11.243673324585,-10.7297892570496,-10.0728120803833,-9.1544149518013,-7.52712965011597,-4.81326455622911,-1.18759894371033,2.45116525888443,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-4.67088752985001,-5.17661726474762,-5.07214212417603,-4.30465137958527,-2.81095433235168,-0.742007195949554,1.40439563989639,2.90157216787338,3.13304077088833,1.94829857349396,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,1.66431745886803,2.49459499120712,3.79986822605133,4.68423759937286,4.49508827924728,3.28600308299065,1.74731457233429,0.675591707229614,0.399331092834473,0.596972465515137,0.623513698577881,0.0580248832702637,-0.982425332069397,-2.01342725753784,-2.67899169772863,-3.13035744428635,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,4.7745208889246,4.60657604038715,3.57908022403717,2.93382048606873,3.4719033241272,4.95850133895874,6.31025791168213,6.44134569168091,5.16278171539307,3.48210525512695,3.06492137908936,5.20658206939697,10.0054821968079,16.2835440635681,22.2847106456757,26.6612782478333,29.1040153503418,30.259003162384,31.090057849884,32.1934089660645,33.5294528007507,34.6662756204605,35.2413138151169,35.2321949005127,34.8500838279724,34.2187395095825,33.1822853088379,31.4510326385498,28.9695959091187,26.1632318496704,23.7909488677979,22.4598293304443,22.1706805229187,22.2831299304962,21.9810104370117,20.9071947336197,19.4639685153961,18.5014424324036,18.59135389328,19.4382472038269,19.9196724891663,18.789998292923,15.5641466490924,10.9255359172821,6.32857608795166,3.05797338485718,1.4273853302002,0.701992034912109,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,1.30579549074173,2.43985813856125,4.81928867101669,7.6321427822113,9.70051145553589,10.1954842805862,9.13286399841309,7.29051876068115,5.61786079406738,4.58509254455566,3.9526481628418,3.10594654083252,1.65992832183838,-0.164255142211914,-1.69585037231445,-2.37675666809082,-2.27095413208008,-2.09548854827881,-2.71996402740479,-4.50259494781494,-6.96928310394287,-9.08763790130615,-9.93594646453857,-9.26911163330078,-7.57093715667725,-5.58522176742554,-3.7216899394989,-1.81993627548218,0.543952941894531,3.47288262844086,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,7.55514878034592,5.64494597911835,3.8077780008316,2.12053880095482,0.539178967475891,-0.827028453350067,-1.57116964831948,-1.13175442814827,0.838511154055595,32767,32767,32767,32767,32767,32767,32767,32767,32767,3.8051884546876,8.11555969715118,13.4440829753876,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,5.93400645256042,7.05025720596313,9.36911964416504,11.829164981842,13.2953824996948,13.2474269866943,12.0156292915344,10.4250240325928,9.13709545135498,8.19059586524963,7.07805824279785,5.27670957148075,2.79784190654755,0.299001574516296,-1.35777306556702,-1.77667927742004,-1.3964347243309,-1.2273200750351,-2.1017330288887,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,8.33066356182098,8.06410574913025,6.86009979248047,5.81439480185509,5.61407828330994,6.04605984687805,6.2582848072052,5.56956005096436,4.19551229476929,3.3063440322876,4.32456970214844,7.94553756713867,13.5923867225647,19.717716217041,24.7603209614754,28.0894334316254,30.282864689827,32.561531662941,35.8081724047661,39.875812292099,43.6588540077209,45.8409757614136,45.7605724334717,43.7932434082031,41.0384979248047,38.6063957214355,37.0437393188477,36.2638387680054,35.9116716384888,35.7739820480347,35.8716058731079,36.2041616439819,36.4561991691589,36.0206437110901,34.4081935882568,31.7304172515869,28.8085074424744,26.712390422821,25.9963088035583,26.1977291107178,26.0329985618591,24.2261800765991,20.4084117412567,15.4262806177139,10.8035949766636,7.72079759836197,6.25751656293869,5.45903569459915,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,3.27095240354538,4.09326255321503,6.12426519393921,8.64842408895493,10.5807063579559,11.1219630241394,10.2347145080566,8.58804130554199,7.01773738861084,5.91786193847656,5.03102111816406,3.78945255279541,1.91967391967773,-0.194835662841797,-1.71623039245605,-1.99420547485352,-1.15344619750977,-0.141401290893555,-0.143699645996094,-1.7590160369873,-4.52837753295898,-7.17303848266602,-8.38330268859863,-7.60361194610596,-5.2755970954895,-2.41447591781616,0.114386081695557,2.05945158004761,3.67483997344971,5.20854711532593,6.48217749595642,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,6.54423505626619,6.18721807003021,6.08035802841187,5.73909094929695,4.76887083053589,3.27484154701233,32767,32767,32767,32767,32767,32767,32767,15.0244319438934,12.1907576918602,8.30229896306992,32767,32767,5.89623129367828,10.670797586441,16.7918519973755,22.1707229614258,24.9783143997192,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,7.05026280879974,6.46895289421082,8.39650893211365,11.8595674037933,15.1874351501465,17.0000743865967,16.9146571159363,15.5459146499634,13.8760919570923,12.4896001815796,11.2231464385986,9.44910287857056,6.73841524124146,3.3784302175045,0.336578130722046,-1.32609614729881,-1.18031916022301,0.231928586959839,1.70662519335747,2.14737188816071,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,8.39371085166931,7.75433492660522,6.6471198797226,5.84981048107147,5.71024143695831,5.88826954364777,5.71315975487232,4.87797915935516,3.89754009246826,3.90980672836304,5.90324831008911,9.92382764816284,14.8860068321228,19.199077218771,21.8208801746368,23.0004377365112,24.1546018123627,26.9144678115845,31.9677152633667,38.4790964126587,44.4832630157471,47.9941940307617,48.1070938110352,45.417797088623,41.5727272033691,38.3301210403442,36.7612090110779,37.017698764801,38.6309008598328,40.9660949707031,43.461443901062,45.5796375274658,46.7002711296082,46.2245950698853,43.919310092926,40.2255845069885,36.1903467178345,32.9325661659241,30.9474420547485,29.7542519569397,28.2018885612488,25.2798357009888,20.8769211769104,15.9245262145996,11.7880709171295,9.32361793518066,8.29455876350403,7.59374332427979,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,3.62072086334229,3.32399225234985,3.94199752807617,5.22117805480957,6.42261981964111,6.8056697845459,6.11287593841553,4.69015121459961,3.16042137145996,1.9212474822998,0.876837730407715,-0.376021385192871,-2.06418704986572,-3.8737850189209,-5.04964637756348,-4.93846893310547,-3.57903480529785,-1.85801315307617,-1.04412841796875,-1.9773645401001,-4.47167205810547,-7.36483430862427,-9.19830513000488,-9.06657981872559,-7.07017946243286,-4.11243009567261,-1.25858068466187,0.841294288635254,2.08257865905762,2.61120319366455,2.47402048110962,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.170789241790771,0.394505739212036,1.75028711557388,3.67331963777542,5.18767046928406,5.53101134300232,4.63295674324036,3.15866017341614,2.12891566753387,2.3755156993866,4.13489025831223,6.94685506820679,9.84421586990356,11.7191290855408,11.746563911438,9.76110446453094,6.46231943368912,32767,1.96774560213089,3.60814654827118,8.12909722328186,14.0413360595703,19.0671808719635,21.2905430793762,32767,17.1214437484741,14.2469143867493,13.5072717666626,15.2514066696167,18.0298824310303,19.4986748695374,17.9196314811707,13.3082005977631,7.49782907962799,3.08524245023727,1.93655284214765,4.18653168529272,8.30994129180908,12.1342029571533,14.086386680603,13.8935661315918,12.38929271698,10.6926331520081,9.39427447319031,8.28982484340668,6.75674676895142,32767,32767,32767,32767,-1.45256638526917,0.43200877160416,2.64735811948776,4.17631885409355,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,5.43298423290253,4.28958284854889,3.44172921776772,3.30811566114426,3.79364025592804,4.31277060508728,4.25422191619873,3.55109751224518,2.88422588258982,3.28549826145172,5.36889863014221,8.74768221378326,12.1249440461397,14.0853633880615,14.0940597057343,13.0044250488281,12.6695685386658,14.8497848510742,20.0973114967346,27.3338108062744,34.3871030807495,39.1447620391846,40.6080393791199,39.253438949585,36.589037835598,34.287472486496,33.4545197486877,34.3836206197739,36.7538981735706,39.967285990715,43.3507282733917,46.1878066062927,47.7466979026794,47.4634079933167,45.2353110313416,41.5858445167542,37.4792075157166,33.8101902008057,30.8786511421204,28.2376227378845,25.0713677406311,20.8752694129944,15.9509136676788,11.3259906768799,8.11173105239868,6.73009037971497,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,4.43153166770935,3.10676145553589,1.25386714935303,-0.26169490814209,-0.99050235748291,-1.1458568572998,-1.36140537261963,-2.16876888275146,-3.60390853881836,-5.23149871826172,-6.53661727905273,-7.34263801574707,-7.90450668334961,-8.60412549972534,-9.51517152786255,-10.2289161682129,-10.1308259963989,-8.94371032714844,-7.10633277893066,-5.64567279815674,-5.57208347320557,-7.19925785064697,-9.87302803993225,-12.3134920597076,-13.3422136306763,-12.5067191123962,-10.2173957824707,-7.38367700576782,-4.87843704223633,-3.21319913864136,-2.557457447052,-2.91939187049866,-4.20248800516129,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-8.36731100082397,-7.87454128265381,-5.65573024749756,-2.45794367790222,0.516513824462891,2.26678323745728,2.45423030853271,1.44294738769531,-0.00147008895874023,-1.10277116298676,-1.34954433143139,-0.613091256469488,0.83175465464592,2.35796499252319,3.1712099313736,2.67594701051712,0.908441916108131,32767,-2.37848243862391,-1.25378069654107,2.26890122890472,6.95037293434143,10.7209197282791,11.8955982923508,32767,7.5387589931488,6.02319478988647,7.44319605827332,11.5246165990829,16.0275514125824,18.0308856964111,15.7275173664093,9.58639404177666,2.14076292514801,-3.45085605978966,-5.14547562599182,-2.99298286437988,1.16558077931404,4.95326066017151,6.79155659675598,6.51382350921631,5.03339231014252,3.47322165966034,2.42306002229452,1.76386260986328,1.02600717544556,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.063401460647583,-0.672356784343719,-0.300931453704834,0.730930253863335,1.60487112402916,1.67833030223846,0.968414306640625,0.198368906974792,0.313501477241516,1.76567900180817,4.07454381883144,6.02475571632385,6.42682075500488,4.96062451601028,2.52753973007202,0.843393325805664,1.50532913208008,5.10858535766602,10.9472284317017,17.440411567688,22.9758424758911,26.6391267776489,28.4498834609985,29.0854873657227,29.3810615539551,29.9471397399902,31.0608253479004,32.7467064857483,34.8636093139648,37.1046402454376,38.9788837432861,39.905964910984,39.4576482772827,37.6102933883667,34.7955236434937,31.6509346961975,28.6040396690369,25.5859394073486,22.1177678108215,17.7516686320305,12.5714112818241,7.36946165561676,3.31577893905342,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,3.56409537792206,4.45643329620361,2.91366195678711,-0.361701965332031,-4.00821971893311,-6.86219882965088,-8.59620952606201,-9.72204542160034,-11.0109066963196,-12.8017866611481,-14.7253688573837,-16.0298542752862,-16.2225711941719,-15.5018925666809,-14.6293796300888,-14.3414851129055,-14.7695505619049,-15.3361177444458,-15.2246494293213,-14.0684912204742,-12.3258829116821,-11.0389821529388,-11.1377604603767,-12.786947786808,-15.2350248098373,-17.2515430450439,-17.8270535469055,-16.6657018661499,-14.2056505680084,-11.2634828090668,-8.62244319915771,-6.81919431686401,-6.13468712568283,-6.61144185066223,-7.96922945976257,-9.507004737854,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-14.0341291427612,-14.285587310791,-12.5684018135071,-9.47578924894333,-6.08321475982666,-3.40286159515381,-2.01091623306274,-1.99044513702393,-3.07526731491089,-4.79708647727966,-6.55969581007957,-7.72940623760223,-7.84745812416077,-6.9078004360199,-5.47012734413147,-4.40345919132233,-4.32239544391632,-5.08548629283905,-5.7846964597702,-5.34654462337494,-3.38013386726379,-0.630637869238853,1.40084153413773,1.51245510578156,32767,32767,32767,32767,32767,32767,13.9097606539726,11.3896271884441,5.01171267032623,-2.49943447113037,-8.05488085746765,-9.8568742275238,-8.15711605548859,-4.76708221063018,-1.79241538047791,-0.477949380874634,-0.825939655303955,-2.02606689929962,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-2.96372412145138,-3.48136305809021,32767,32767,32767,32767,32767,32767,32767,32767,-2.44941848516464,-3.49694880843163,-3.26770952343941,-2.3015154004097,-1.50122091174126,-1.5633978843689,-2.52373743057251,-3.72938108444214,-4.28181719779968,-3.67053651809692,-2.17182874679565,-0.730291128158569,-0.38753080368042,-1.62371444702148,-4.02950668334961,-6.496994972229,-7.77725219726562,-7.04539680480957,-4.16287612915039,0.429147720336914,6.01796913146973,11.8889179229736,17.4367771148682,22.1689968109131,25.7237586975098,27.9563159942627,29.0177087783813,29.3074655532837,29.2667655944824,29.1295309066772,28.8164448738098,28.0682330131531,26.7233220338821,24.91372859478,22.9967930316925,21.2476804256439,19.5493032932281,17.3565405607224,14.0304298698902,9.35577797889709,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,3.13522982597351,4.87354373931885,3.40630435943604,-0.647555351257324,-5.61675357818604,-9.8480806350708,-12.6525206565857,-14.4905947446823,-16.3232517242432,-18.6637191772461,-21.0705065727234,-22.4683051109314,-22.0400757789612,-19.9870042800903,-17.5442547798157,-16.2017025947571,-16.6852519512177,-18.4469084739685,-20.0453058481216,-20.1498926877975,-18.4561984539032,-15.878019452095,-13.9126896858215,-13.651549719274,-15.1152664422989,-17.3118183612823,-18.8901369571686,-18.8938500881195,-17.1481471061707,-14.1537787914276,-10.7108192592859,-7.58815133571625,-5.37917113304138,-4.45353078842163,-4.8583841919899,-6.17671811580658,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-11.5262440443039,-14.4682769775391,-16.1231594085693,-15.9807155132294,-14.2252366542816,-11.5372320413589,-8.72754967212677,-6.46967148780823,32767,32767,-6.4410605430603,-8.44900035858154,-10.44419708848,-11.521693110466,-11.1441192626953,-9.49781560897827,-7.42692899703979,-5.91603398323059,-5.4551043510437,-5.75919389724731,-6.07603001594543,-5.85571241378784,-5.23957014083862,-4.93385058641434,-5.5187566280365,32767,32767,32767,32767,32767,32767,9.69365990161896,7.59461236000061,2.59661889076233,-3.02678215503693,-7.01604756340384,-8.31610471010208,-7.40624821186066,-5.68127152323723,-4.43541979789734,-4.17776024341583,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-2.97005987167358,-4.74085485935211,32767,32767,32767,32767,32767,32767,32767,32767,-2.12839835882187,-3.92039531469345,-4.52040386199951,-4.26124811172485,-3.94000554084778,-4.29613786935806,-5.52929019927979,-7.16097164154053,-8.33130121231079,-8.34398078918457,-7.11789059638977,-5.27165269851685,-3.80908298492432,-3.60887622833252,-5.00576305389404,-7.64984893798828,-10.647439956665,-12.8587284088135,-13.2189025878906,-11.0156345367432,-6.10194206237793,0.992969512939453,9.12969589233398,16.8543586730957,22.8617076873779,26.4318389892578,27.6059103012085,27.0009279251099,25.3823251724243,23.2751245498657,20.857412815094,18.1640701293945,15.383556842804,12.959175080061,11.364129781723,10.6993368864059,10.4442603588104,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,4.94223999977112,3.70142602920532,-0.27934455871582,-5.2778844833374,-9.5129702091217,-12.2408534884453,-14.0180337429047,-15.9818315505981,-18.7305221557617,-21.6827359199524,-23.430890083313,-22.8424897193909,-20.075249671936,-16.7049841880798,-14.8044610023499,-15.5865802764893,-18.5629420280457,-21.8183360099792,-23.2218909263611,-21.7543532848358,-18.0791487693787,-14.0356585383415,-11.4638036489487,-11.1619427204132,-12.59516954422,-14.4029202461243,-15.2465262413025,-14.4299795627594,-12.0203498601913,-8.59384170174599,-4.91860783100128,-1.76795613765717,0.181332349777222,0.512904405593872,-0.684705138206482,-2.68351233005524,-4.32654225826263,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-3.73037242889404,-6.77364045381546,-10.2655748128891,-13.2148288413882,-14.8370725736022,-14.8741563558578,-13.576012134552,32767,32767,32767,-5.91587257385254,-5.78510999679565,-6.67370414733887,-8.05641937255859,-9.09572339057922,-9.04693666100502,-7.69537842273712,-5.51661115884781,-3.41538758575916,-2.20332995057106,-2.17361509799957,-3.05317205190659,-4.31586718559265,-5.56164187192917,-6.64437633752823,-7.47964859008789,-7.77260112762451,32767,-4.74558973312378,-1.19237470626831,2.72133564949036,5.65515261888504,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.369401007890701,-2.29149016737938,-3.96036684513092,-4.57995808124542,-4.73669935017824,-5.22414445877075,-6.48602044582367,-8.28785610198975,-9.8237886428833,-10.1936883926392,-8.96238470077515,-6.47445201873779,-3.75708389282227,-2.07499217987061,-2.36795043945312,-4.82359313964844,-8.74651336669922,-12.7526302337646,-15.2135524749756,-14.8092746734619,-11.009801864624,-4.3008975982666,3.96188545227051,12.0448417663574,18.4690265655518,22.4860486984253,24.1601190567017,24.0515832901001,22.7375354766846,20.5016312599182,17.3870038986206,13.5266189575195,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,3.46212196350098,2.37872183322906,-0.861321449279785,-4.7064865231514,-7.59272038936615,-9.01562547683716,-9.76602363586426,-11.1620879173279,-13.8668985366821,-17.2069582939148,-19.5473475456238,-19.4884233474731,-17.012050151825,-13.7035856246948,-11.8239750862122,-12.835045337677,-16.3878951072693,-20.4735445976257,-22.6371002197266,-21.4456193447113,-17.2676405906677,-11.9308935701847,-7.57785105705261,-5.50483465194702,-5.66500616073608,-6.9874472618103,-8.13762331008911,-8.17724847793579,-6.81263113021851,-4.28874371945858,-1.17975633591413,1.75905871391296,3.72029177099466,4.08109307289124,2.73981416225433,0.334047395735979,-1.92462462186813,-2.83828374743462,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,1.83906173706055,2.06237030029297,1.26204824447632,-0.993681129068136,-4.32195281982422,-7.77814626693726,-10.4217119216919,-11.7700607776642,-11.8751828670502,32767,32767,32767,-6.28639221191406,-4.71346950531006,-3.66265964508057,-3.27259874343872,-3.32089567184448,-3.27564573287964,-2.5988392829895,-1.11739540100098,0.79875659942627,2.38867211341858,2.89774239063263,1.98133647441864,-0.11123788356781,-2.6445078831166,-4.70660722255707,-5.55717635154724,32767,32767,-0.240619659423828,2.22022926807404,3.80643510818481,4.33630168437958,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-0.0322844982147217,-2.37375228106976,-3.43869715929031,-3.6572802066803,-3.93073415756226,-4.96962547302246,-6.77087068557739,-8.57142782211304,-9.30958271026611,-8.30501937866211,-5.74016380310059,-2.65903377532959,-0.48784065246582,-0.345052719116211,-2.49727249145508,-6.21563720703125,-10.0723361968994,-12.5182247161865,-12.4805564880371,-9.73623085021973,-4.92059898376465,0.807331085205078,6.27847099304199,10.7546977996826,14.0842971801758,16.5067853927612,18.2533254623413,19.2207126617432,18.9604153633118,17.0176889896393,13.4012261629105,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,-0.543868809938431,-0.130549192428589,-1.26121950149536,-3.53482675552368,-5.69527211785316,-6.60055410861969,-6.12739139795303,-5.31520736217499,-5.60895948112011,-7.74078631401062,-11.0858120918274,-14.0039944648743,-14.9634079933167,-13.6549506187439,-11.2890651226044,-9.83383536338806,-10.7004086971283,-13.7701444625854,-17.4159352779388,-19.4850754737854,-18.5769493579865,-14.7992007732391,-9.58926856517792,-4.819371342659,-1.81364369392395,-0.849495410919189,-1.30462265014648,-2.18906497955322,-2.65776944160461,-2.26364171504974,-0.975977693451569,0.884177267551422,2.71637433767319,3.78452408313751,3.5111255645752,1.84587734937668,-0.541397750377655,-2.4818497300148,-2.92356017231941,-1.59386360645294,0.761109590530396,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,1.8265323638916,2.52504920959473,3.57519292831421,3.78143203258514,2.46015501022339,-0.140018463134766,-3.10372066497803,-5.53024101257324,-7.08186388015747,-8.00978136062622,32767,32767,32767,32767,32767,-2.54574775695801,0.0800008773803711,1.54788255691528,1.83015632629395,1.66006183624268,2.00042772293091,3.32431197166443,5.21343791484833,6.57308416068554,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,1.12789860367775,-1.07971239089966,-1.849116563797,-1.63735675811768,-1.51068735122681,-2.37639331817627,-4.3380241394043,-6.60301876068115,-7.99937725067139,-7.75429916381836,-6.02234554290771,-3.82755279541016,-2.46616744995117,-2.75310325622559,-4.56956577301025,-6.96210670471191,-8.69942474365234,-8.9373836517334,-7.6136360168457,-5.37954330444336,-3.14881324768066,-1.54427528381348,-0.552940368652344,0.430055618286133,2.20332336425781,5.22480201721191,9.23353481292725,13.2448205947876,15.9480862617493,16.3257690668106,14.1780913472176,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,-1.10806896537542,-2.93223923072219,-3.88590371608734,-4.36328315734863,-5.08751964569092,-6.40331673622131,-7.89380764961243,-8.64170265197754,-7.96001005172729,-6.0400915145874,-3.99679780006409,-3.22092223167419,-4.46591377258301,-7.31348037719727,-10.4128479957581,-12.3461880683899,-12.5306577682495,-11.5435581207275,-10.6648244857788,-10.9709916114807,-12.6041796207428,-14.6876616477966,-15.8987293243408,-15.2796454429626,-12.7590627670288,-9.1078360080719,-5.4470899105072,-2.67604005336761,-1.14988346397877,-0.700215220451355,-0.864669412374496,-1.13388061290607,-1.1197512447834,-0.661699175834656,0.100155642256141,0.730747256428003,0.672090828418732,-0.417118668556213,-2.32677084207535,-4.23521113395691,-5.07754683494568,-4.19690558314323,-1.86490631103516,0.741055250167847,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-0.0706634521484375,0.695174217224121,1.94742345809937,2.48124599456787,1.69422912597656,-0.0430269241333008,-1.79211521148682,-2.87488651275635,-3.44182777404785,-4.30793190002441,32767,32767,32767,32767,32767,32767,-0.1129150390625,2.75067949295044,3.23011016845703,2.15072536468506,1.2459888458252,1.90717720985413,4.18520390987396,6.74541640281677,7.81495785713196,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-1.38230800628662,-1.30671739578247,-0.498577117919922,-0.179454803466797,-1.28026866912842,-3.80413627624512,-6.82415103912354,-9.11374187469482,-9.96903419494629,-9.6505184173584,-9.14211845397949,-9.39992713928223,-10.6187696456909,-12.0321035385132,-12.3976602554321,-10.8563766479492,-7.59823513031006,-3.89011001586914,-1.42221450805664,-1.35720634460449,-3.63968849182129,-6.96125030517578,-9.39115524291992,-9.31843185424805,-6.20806884765625,-0.812589645385742,5.21370887756348,10.0567021369934,12.4693593978882,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-4.72379686683416,-5.58924189954996,-5.87114531174302,-5.76079745590687,32767,32767,32767,32767,32767,32767],[-7.01329278945923,32767,32767,32767,-2.01505875587463,-3.58346581459045,-5.34316110610962,-6.90428519248962,-8.28093814849854,-9.66078329086304,-11.039722442627,-12.045426607132,-12.1231243610382,-10.9665958881378,-8.86948037147522,-6.70754933357239,-5.51848530769348,-5.93465423583984,-7.83489392697811,-10.4360986948013,-12.7521989345551,-14.1173856258392,-14.4558596611023,-14.1751461029053,-13.8107957839966,-13.6820902824402,-13.7600526809692,-13.7725048065186,-13.418924331665,-12.5390753746033,-11.1617641448975,-9.46157109737396,-7.68856620788574,-6.10289084911346,-4.90406036376953,-4.15241229534149,-3.72832182049751,-3.3969202041626,-2.98709690570831,-2.57997071743011,-2.5362638188526,-3.26601432263851,-4.84003257751465,-6.721755027771,-7.89237093925476,-7.40352964401245,-5.05843108892441,-1.74480223655701,0.902929306030273,1.4058563709259,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-2.7947404384613,-3.36099791526794,-2.83666515350342,-2.09860038757324,-2.07393455505371,-2.96250820159912,-4.06149005889893,-4.37383651733398,-3.54708099365234,-2.37432479858398,-2.37173175811768,32767,32767,32767,32767,32767,32767,32767,32767,0.770034313201904,-1.31856322288513,-3.41179156303406,-3.36754310131073,-0.719284892082214,3.04714167118073,5.587741792202,5.37977600097656,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-3.905757188797,-2.99083662033081,-1.91530513763428,-1.92913627624512,-3.75114250183105,-7.08686542510986,-10.8243465423584,-13.7824430465698,-15.4875173568726,-16.416802406311,-17.5201568603516,-19.3494272232056,-21.4317827224731,-22.3838691711426,-20.7638378143311,-16.135027885437,-9.62804412841797,-3.57771301269531,-0.384527206420898,-1.25231742858887,-5.53291130065918,-11.0480155944824,-15.178973197937,-16.0969481468201,-13.4790697097778,-8.41583347320557,-2.69102573394775,2.08317184448242,5.02269792556763,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-3.72385132312775,-6.65215393900871,-9.98682618141174,-12.6396787166595,-14.0422506332397,-14.3298716545105,-14.0436840057373,-13.6132923364639,-13.0177965164185,-11.8680468797684,-9.82453483343124],[-11.5013337135315,-9.69712281227112,-8.12972950935364,-7.14485549926758,-6.91541075706482,-7.38568043708801,-8.35319948196411,-9.59240102767944,-10.9207882881165,-12.1832795143127,-13.20858335495,-13.8087778091431,-13.8444309234619,-13.3128700256348,-12.3928196430206,-11.4091444015503,-10.7347108125687,-10.6772944927216,-11.3905550427735,-12.8217450976372,-14.6974438428879,-16.561295747757,-17.8872046470642,-18.2655992507935,-17.5997219085693,-16.1992273330688,-14.6782116889954,-13.6678438186646,-13.4836633205414,-13.9478209018707,-14.4934887886047,-14.5034786462784,-13.6728706359863,-12.1593074649572,-10.4269118309021,-8.9079669713974,-7.74008032679558,-6.77752816677094,-5.85701298713684,-5.08201456069946,-4.85137808322906,-5.54737949371338,-7.08787655830383,-8.71374845504761,-9.27169752120972,-7.90945172309875,-4.75787436962128,-1.09658622741699,1.21597051620483,0.782143592834473,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,7.09416460990906,4.75733733177185,1.7492800205946,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-6.5164623260498,-6.79968070983887,-6.68255615234375,-6.87607765197754,-7.83047485351562,-9.19843101501465,-9.92040681838989,-8.99165344238281,-6.39828777313232,-3.47035789489746,32767,32767,32767,32767,32767,32767,32767,32767,32767,-3.38057386875153,-6.60449206829071,-9.75012373924255,-10.2889888286591,-7.53778266906738,-3.04070168733597,0.581912517547607,1.47722768783569,32767,32767,-3.2545747756958,-1.40496182441711,2.02176785469055,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-8.08345341682434,-6.90821647644043,-6.23033666610718,-7.09532260894775,-9.79321956634521,-13.6525564193726,-17.4646377563477,-20.2731122970581,-21.9846887588501,-23.3462266921997,-25.2673406600952,-27.94176197052,-30.411584854126,-30.9590082168579,-28.1561393737793,-21.926552772522,-13.9033794403076,-6.78183555603027,-2.99030494689941,-3.45640182495117,-7.18735694885254,-11.8893766403198,-15.2168169021606,-15.8971812725067,-14.1141142845154,-11.046010017395,-7.97891187667847,-5.60722303390503,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-3.97542858123779,-5.70986819267273,-9.70256567001343,-14.4989972114563,-18.4547629356384,-20.5310211181641,-20.6442947387695,-19.4484376907349,-17.7842166423798,-16.1864311695099,-14.7288969755173,-13.2151582241058],[-13.6926929950714,-13.337639093399,-12.6850476264954,-11.7928080558777,-10.9270670413971,-10.4112162590027,-10.4365997314453,-10.9363803863525,-11.6103706359863,-12.1072778701782,-12.2593693733215,-12.2051210403442,-12.2923154830933,-12.8074240684509,-13.7222628593445,-14.6643142700195,-15.168862849474,-15.0527327656746,-14.6267238259315,-14.5489507615566,-15.3744463026524,-17.1002749204636,-19.0495519638062,-20.2258653640747,-19.9380059242249,-18.2803883552551,-16.125705242157,-14.6082816123962,-14.42817735672,-15.4358115196228,-16.7660636901855,-17.413370847702,-16.8434636592865,-15.2342211008072,-13.2226355075836,-11.3936843648553,-9.9141009747982,-8.57223123311996,-7.14915978908539,-5.77776408195496,-4.95440557599068,-5.15031006932259,-6.31129968166351,-7.66801571846008,-8.08574306964874,-6.78890204429626,-3.98503684997559,-0.92411994934082,0.722548961639404,-0.177779674530029,-3.51488149166107,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.726229924708605,-0.519337832927704,-2.03924236446619,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-13.8186645507812,-14.177729845047,-12.4063802957535,-8.78480005264282,-4.86003875732422,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-10.8781280517578,-14.7298550605774,-15.7293610572815,-13.2608504295349,-8.82975053787231,-4.94008278846741,32767,32767,32767,-5.04687738418579,-2.69952392578125,0.888928890228271,3.85760068893433,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-12.7232067584991,-12.2055852413177,-11.6155471801758,-11.9850869178772,-13.8917045593262,-17.0824337005615,-20.6033220291138,-23.3882832527161,-24.941047668457,-25.6495642662048,-26.484429359436,-28.2431745529175,-30.8314485549927,-33.0958366394043,-33.3916883468628,-30.5821962356567,-24.8489961624146,-17.7702121734619,-11.5681324005127,-7.95518493652344,-7.28440856933594,-8.51455593109131,-9.98342561721802,-10.4643793106079,-9.82068490982056,-8.86662912368774,-8.59525609016418,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-10.3114912509918,-7.55597573518753,-6.62163162231445,-8.28509926795959,-12.0689749717712,-16.5584456920624,-20.15704870224,-21.8291440010071,-21.4525637626648,-19.6769819259644,-17.4649857282639,-15.6110293865204,-14.4687721729279,-13.9465270042419],[-13.6723117828369,-14.3373997211456,-14.3201575279236,-13.5235524177551,-12.2962324619293,-11.210823059082,-10.6784253120422,-10.6568236351013,-10.6821098327637,-10.2399196624756,-9.22940015792847,-8.16279125213623,-7.89870452880859,-9.04360198974609,-11.433422088623,-14.1012728214264,-15.8202710747719,-15.891828417778,-14.6380634903908,-13.2275032959878,-12.9172201752663,-14.2131170630455,-16.5262565612793,-18.567729473114,-19.2111835479736,-18.2263150215149,-16.3847315311432,-14.8877856731415,-14.5392997264862,-15.244800567627,-16.1590819358826,-16.3289294242859,-15.3394677639008,-13.5098705291748,-11.5481453686953,-9.97952389717102,-8.80434793233871,-7.62909239530563,-6.12708795070648,-4.42855548858643,-3.10606932640076,-2.75078868865967,-3.46667957305908,-4.68772602081299,-5.48872303962708,-5.19195795059204,-3.84664583206177,-2.23946690559387,-1.42109870910645,-2.06482911109924,-4.07759857177734,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-2.51930755376816,-3.98062491416931,-4.54077589511871,-4.43534195423126,-3.98486584424973,-3.39396500587463,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-13.0817165374756,-14.3339176177979,-14.0907579660416,-11.9232790470123,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-16.0869107246399,-17.1480317115784,-15.2016582489014,-11.6241545677185,32767,32767,-6.60291481018066,-6.45316457748413,-5.03753519058228,-2.08884429931641,1.42709445953369,4.06867456436157,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-3.45225501060486,-5.93587422370911,-8.95495367050171,-11.6450686454773,-13.3463273048401,-14.0053062438965,-14.223343372345,-14.8922591209412,-16.6261892318726,-19.3446879386902,-22.2821907997131,-24.4359579086304,-25.1850500106812,-24.6912407875061,-23.8170680999756,-23.5914726257324,-24.5436229705811,-26.321702003479,-27.8508338928223,-27.9530401229858,-26.0529222488403,-22.5264577865601,-18.4648103713989,-14.9989614486694,-12.6215209960938,-10.9613256454468,-9.16936254501343,-6.66226315498352,-3.70716118812561,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-10.9010045528412,-9.5689150094986,-9.22037959098816,-10.3455586433411,-12.6451423168182,-15.2524923682213,-17.2048368453979,-17.8856530189514,-17.236839056015,-15.7004413604736,-13.9783879220486,-12.7367799282074,-12.3585166931152,-12.8103547096252],[-12.7424063682556,-13.4812545776367,-13.3736946582794,-12.3514995574951,-10.8740954399109,-9.65195560455322,-9.14223718643188,-9.17892265319824,-9.05276823043823,-8.04681348800659,-6.07197523117065,-3.91540431976318,-2.84677791595459,-3.78644180297852,-6.59545803070068,-10.0187954902649,-12.3874608278275,-12.6492902636528,-11.0403127968311,-8.93019688129425,-7.93464887142181,-8.89028882980347,-11.374995470047,-14.0669829845428,-15.6534485816956,-15.6409509181976,-14.5325448513031,-13.3172419071198,-12.7028112411499,-12.6630208492279,-12.5872349739075,-11.8513770103455,-10.3342435359955,-8.48914623260498,-6.95435684919357,-6.04358494281769,-5.52667188644409,-4.85848212242126,-3.65479278564453,-2.03257942199707,-0.556932926177979,0.148445606231689,-0.179550170898438,-1.29870557785034,-2.66340446472168,-3.78253555297852,-4.45613572001457,-4.75147843360901,-4.80864617228508,-4.68812257051468,-4.39798295497894,-4.04553818702698,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-2.0998153090477,-4.79430317878723,-5.8433039188385,-5.11353158950806,-3.23653680086136,-1.12829151749611,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-10.2065110206604,-10.3675670623779,-9.29819059371948,32767,32767,32767,-1.79569911956787,-1.88765621185303,-2.4111967086792,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-6.79502749443054,-5.47766637802124,-2.94817352294922,0.381716728210449,3.39462327957153,5.07421398162842,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-1.19573926925659,-3.70749974250793,-6.63442158699036,-9.11287212371826,-10.7190203666687,-11.7478604316711,-12.9767985343933,-15.067391872406,-18.0185458660126,-21.0587811470032,-23.0685584545135,-23.261727809906,-21.6824536323547,-19.1957316398621,-16.9833374023438,-15.8747072219849,-15.9342432022095,-16.5457105636597,-16.9053335189819,-16.5782165527344,-15.7440690994263,-14.9766216278076,-14.7151126861572,-14.7989587783813,-14.412141084671,-12.5300650596619,-8.63248738646507,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-9.97733235359192,-10.6914697289467,-11.1244959831238,-11.4298188686371,-11.6645090579987,-11.8222074508667,-11.8717575073242,-11.7726049423218,-11.4921176433563,-11.0578186511993,-10.6194534301758,-10.442581653595,-10.7772963047028,-11.6510331630707],[-11.8804609179497,-11.8929513692856,-11.1121895313263,-9.5889744758606,-7.8867506980896,-6.7722315788269,-6.65831995010376,-7.215500831604,-7.50073194503784,-6.59160995483398,-4.31267833709717,-1.51324319839478,0.369333267211914,0.222499847412109,-1.96187257766724,-5.00061178207397,-7.22540211677551,-7.5298593044281,-6.05769979953766,-4.07269310951233,-3.11285555362701,-4.012999355793,-6.4432384967804,-9.22440934181213,-11.1384923458099,-11.6441323757172,-11.0375986099243,-10.0390900373459,-9.19029355049133,-8.52851581573486,-7.72998690605164,-6.53011357784271,-5.03606024384499,-3.67675274610519,-2.8557460308075,-2.61322641372681,-2.57817697525024,-2.24216604232788,-1.32942008972168,0.0187082290649414,1.35488128662109,2.20439720153809,2.28126859664917,1.51671886444092,-0.0286455154418945,-2.20087480545044,-4.66259670257568,-6.79278230667114,-7.78425288200378,-7.01991963386536,-4.54449212551117,-1.27294731140137,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,4.98417997360229,1.83303743600845,-1.06500601768494,-2.14574420452118,-1.05434149503708,1.31138089299202,3.52731478214264,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-5.186439037323,-4.0548849105835,-2.26541233062744,32767,32767,-0.573054313659668,-1.65785503387451,-2.32699823379517,-1.804771900177,-0.0349125862121582,2.2193922996521,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-5.2585391998291,-3.32326465845108,-0.178108930587769,3.11801314353943,5.292600274086,5.69082677364349,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,3.10787159204483,2.7561349272728,1.37282800674438,-0.857151985168457,-3.19697666168213,-4.95453357696533,-6.05689382553101,-7.14082288742065,-9.05648374557495,-12.1337168216705,-15.7612429857254,-18.6243504881859,-19.4773848056793,-17.9316473007202,-14.7166085243225,-11.2308406829834,-8.68970584869385,-7.45302581787109,-6.97618007659912,-6.38801574707031,-5.26000595092773,-4.00621509552002,-3.61565589904785,-4.88905906677246,-7.70204877853394,-10.8169164657593,-12.4228556156158,-11.1156320571899,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-5.08513486385345,-8.51472076773643,-11.0649233460426,-12.1785831451416,-11.7774126529694,-10.332350730896,-8.66632080078125,-7.56372690200806,-7.40353965759277,-8.03878951072693,-8.9945113658905,-9.83334594964981,-10.4208941534162,-10.9008531570435,-11.423886179924],[-10.9630680084229,-10.1824532747269,-8.80200815200806,-6.91365671157837,-5.0947151184082,-4.10217952728271,-4.31636333465576,-5.3583288192749,-6.22315692901611,-5.90481853485107,-4.10406255722046,-1.50679922103882,0.603570461273193,1.16599941253662,0.0378251075744629,-1.91879034042358,-3.42410397529602,-3.63421726226807,-2.67293930053711,-1.49198794364929,-1.18679821491241,-2.26273117959499,-4.34738922119141,-6.49855422973633,-7.83551478385925,-8.03171253204346,-7.36497378349304,-6.37636494636536,-5.45724421739578,-4.67607364058495,-3.91340234130621,-3.11508871614933,-2.40936547517776,-1.99241590499878,-1.91200566291809,-1.96785187721252,-1.83135581016541,-1.28145933151245,-0.349078178405762,0.746044635772705,1.78174018859863,2.64157176017761,3.22833180427551,3.28481131792068,2.36842411756516,0.133480966091156,-3.21269547939301,-6.65844750404358,-8.6770806312561,-8.03063583374023,-4.62650287151337,0.190858364105225,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,9.13613390922546,6.81996512413025,4.37534236907959,3.53453814983368,4.64524710178375,6.5752055644989,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-0.895255088806152,1.02827930450439,3.0073938369751,3.69722270965576,2.32542133331299,-0.670692443847656,-3.771240234375,-5.24589610099792,-4.23008286952972,-1.30201244354248,1.83000111579895,3.34419775009155,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-4.11149257421494,-2.1823339164257,0.969933733344078,3.89323282241821,5.29291784763336,4.78107106685638,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,3.86519479751587,3.16392195224762,1.75744330883026,-0.0184929370880127,-1.44279205799103,-2.06271243095398,32767,-2.7269184589386,-4.58798503875732,32767,-11.383367061615,-13.7207847833633,-13.6843674182892,-11.3202936053276,-7.84754109382629,-4.8558144569397,-3.26750659942627,-2.79648208618164,-2.2871732711792,-0.694522857666016,2.00051283836365,4.61129450798035,5.46574068069458,3.56038165092468,-0.630765914916992,-5.25440639257431,-8.0554370880127,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,1.38279294967651,-2.95678424835205,-7.53797471523285,-11.0503090620041,-12.5344339609146,-11.8560110256076,-9.79191792011261,-7.63945651054382,-6.54746294021606,-6.9557421207428,-8.46939277648926,-10.2190946638584,-11.4393635988235,-11.8713369369507,-11.7433497905731,-11.4077000617981],[-9.34777873754501,-8.48377668857574,-7.23533010482788,-5.54665803909302,-3.86038112640381,-2.85789203643799,-2.94908905029297,-3.90496253967285,-4.93595600128174,-5.18976759910583,-4.32188963890076,-2.72655487060547,-1.25842046737671,-0.646496057510376,-1.02300596237183,-1.89707851409912,-2.56940865516663,-2.66307711601257,-2.37612581253052,-2.28614401817322,-2.87690460681915,-4.15246337652206,-5.61669158935547,-6.60860991477966,-6.72581887245178,-6.0318249464035,-4.93646063562483,-3.89131855964661,-3.15181016921997,-2.75458514690399,-2.65284329652786,-2.82912284135818,-3.26504409313202,-3.82034814357758,-4.18859493732452,-4.03657364845276,-3.24797296524048,-2.05421733856201,-0.894260168075562,-0.0745558738708496,0.490539789199829,1.19392871856689,2.3108082190156,3.55931007862091,4.06619966030121,2.89489370584488,-0.16272908449173,-4.12565398216248,-7.14890503883362,-7.55681777000427,-4.94867873191833,-0.594473004341125,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,10.1745859384537,10.5975227355957,8.99315464496613,7.18347692489624,6.73184609413147,7.77933573722839,8.9935040473938,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.212931632995605,1.96852874755859,3.40757846832275,3.03905773162842,0.188200950622559,-4.33431529998779,-8.53383839130402,-10.3930218219757,-9.15045070648193,-5.82462632656097,-2.59550368785858,-1.42515969276428,-2.81880068778992,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-5.26680135726929,-3.73124200105667,-1.02424669265747,1.40562677383423,2.49232533574104,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,2.40269660949707,1.67200684547424,1.06117105484009,0.0748567581176758,-1.32879829406738,-2.60750460624695,32767,32767,32767,32767,32767,32767,-7.2735595703125,-8.89510774612427,-8.45612418651581,-6.35388180613518,-3.97866702079773,-2.7294385433197,-2.99398875236511,-3.84048962593079,-3.67710709571838,-1.4460226893425,2.48683488368988,6.39972233772278,8.23872900009155,6.9298095703125,3.10079115629196,-1.27094199508429,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,3.38888597488403,0.784543991088867,-3.19509983062744,-7.49261283874512,-10.8162940442562,-12.2580726146698,-11.7764503955841,-10.2248195409775,-8.86972212791443,-8.6728837788105,-9.77728917449713,-11.5108036398888,-12.882685303688,-13.2214829921722,-12.5275447368622,-11.33092045784,-10.2086118459702],[-7.00524592399597,-6.96296620368958,-6.66877317428589,-5.77676677703857,-4.47824573516846,-3.31553792953491,-2.75825357437134,-2.87159490585327,-3.31169033050537,-3.62003755569458,-3.56661033630371,-3.27614450454712,-3.06351637840271,-3.14046764373779,-3.44745579361916,-3.74488973617554,-3.87192878127098,-3.93733674287796,-4.26315200328827,-5.1106024980545,-6.40645450353622,-7.70055556297302,-8.40908098220825,-8.17464900016785,-7.08331370353699,-5.59144818782806,-4.23797941207886,-3.36842614412308,-3.05776387453079,-3.23277720808983,-3.82616710662842,-4.79172614216805,-5.97198766469955,-6.98591822385788,-7.32310831546783,-6.65367150306702,-5.13348841667175,-3.41464495658875,-2.26043486595154,-1.99015927314758,-2.17865866422653,-1.90976512432098,-0.481913581490517,1.92306482791901,4.15044376254082,4.7318152487278,32767,32767,32767,-6.34185361862183,-5.72728276252747,-3.39054667949677,32767,-0.513208150863647,-1.78087446093559,-3.8337379693985,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,7.46070194244385,7.55372858047485,6.19321894645691,4.93153500556946,4.97991490364075,6.19435092806816,7.13068753480911,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-2.35924577713013,-1.64458990097046,-1.26815032958984,-2.50404977798462,-5.85278582572937,-10.4311103820801,-14.3280339241028,-15.7700519561768,-14.312885761261,-11.1989860534668,-8.57502698898315,-8.06602001190186,-9.67553973197937,32767,32767,32767,32767,32767,32767,32767,32767,32767,-7.76221132278442,-8.54099535942078,-7.41703772544861,-5.38775014877319,-3.48753559589386,-2.24721205234528,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-3.44579887390137,-3.7544264793396,-4.29489469528198,-5.34764647483826,-6.65415704250336,-7.48708727955818,32767,32767,32767,32767,32767,32767,32767,32767,32767,-4.21911679953337,-3.58964043855667,-4.46925961971283,-6.65310773253441,-8.75619685649872,-9.05678200721741,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-0.691684722900391,-2.46995639801025,-5.08154916763306,-7.88363218307495,-10.0640795230865,-11.101356074214,-11.1016947031021,-10.7484210729599,-10.8558802604675,-11.810647726059,-13.2849249839783,-14.4330060482025,-14.4497590065002,-13.1110870242119,-10.9262229651213,-8.80138003826141,-7.45730841159821],[-4.90676069259644,-5.9907374382019,-6.83321714401245,-6.84943127632141,-5.98770976066589,-4.61068558692932,-3.18994331359863,-2.05577087402344,-1.34185028076172,-1.08057451248169,-1.29534864425659,-1.98113965988159,-3.00704526901245,-4.0766909122467,-4.84589150547981,-5.14942473173141,-5.16059130430222,-5.32160129398108,-6.04679983854294,-7.39066761732101,-8.93053098022938,-9.97803354263306,-9.99556136131287,-8.93533945083618,-7.26650941371918,-5.68007871508598,-4.6918908143416,-4.42321503162384,-4.68214696645737,-5.22604823112488,-5.95336496829987,-6.86064666509628,-7.83213645033538,-8.50402277708054,-8.40186893939972,-7.30675661563873,-5.56135034561157,-4.00285124778748,-3.46484422683716,-4.14848220348358,-5.33923840522766,-5.76175403594971,-4.41811043024063,-1.36195850372314,2.16400790214539,4.39627313613892,4.12657046318054,1.46710968017578,-2.23057317733765,32767,32767,32767,32767,-6.64737629890442,-7.77665495872498,-8.81781959533691,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,2.12367391586304,1.41364240646362,0.0203099250793457,-0.800315856933594,-0.231308937072754,1.36945819854736,2.63426160812378,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-6.86611413955688,-7.47099360823631,-8.1542803645134,-9.7424533367157,-12.5340976715088,-15.8241910934448,-18.2214570045471,-18.5911998748779,-16.9360342025757,-14.5145745277405,-13.0327100753784,-13.4385237693787,-15.1859993934631,32767,32767,32767,32767,32767,32767,32767,32767,32767,-11.0615216493607,-11.1982446461916,-10.2452255487442,-9.03485172986984,-7.89331078529358,-6.54544374346733,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-9.02653908729553,-9.80175447463989,-9.78776860237122,-9.28001403808594,-8.84880495071411,-9.01369500160217,-9.86704850196838,-10.9312015771866,-11.4067173302174,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-5.25839900970459,-5.96169137954712,-6.73266649246216,-7.53293943405151,-8.21222543716431,-8.71949601173401,-9.25235986709595,-10.1644137203693,-11.6546808481216,-13.4725403785706,-14.9040877819061,-15.1195166110992,-13.6896421313286,-10.926325917244,-7.7930018901825,-5.41296148300171,-4.47566175460815],[-4.21524620056152,-5.73616218566895,-6.94667530059814,-7.29106116294861,-6.63028489053249,-5.15052232146263,-3.19093215465546,-1.13291192054749,0.623028039932251,1.67720127105713,1.73328256607056,0.763081550598145,-0.897264003753662,-2.64988827705383,-3.93322288990021,-4.54381203651428,-4.75141460448503,-5.09638836979866,-5.98410540819168,-7.35513144731522,-8.67710429430008,-9.28354394435883,-8.83179867267609,-7.55726301670074,-6.14063403010368,-5.28193093836308,-5.28302353620529,-5.92477476596832,-6.69815230369568,-7.18654608726501,-7.30019688606262,-7.20473945140839,-7.04740886390209,-6.75320994853973,-6.09743595123291,-5.00979232788086,-3.83419108390808,-3.25901079177856,-3.87727653980255,-5.65672835707664,-7.73879146575928,-8.80426812171936,-7.84751653671265,-4.87201005220413,-1.01730418205261,2.01844596862793,2.92010068893433,1.46041202545166,-1.47964882850647,-4.55707223713398,-6.80935335159302,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-2.16622495651245,-2.66067028045654,-3.85936737060547,-5.11118650436401,-5.51913499832153,-4.63761520385742,-2.86478853225708,-1.21659183502197,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-10.6136622428894,-12.0646381378174,-13.2609910964966,-14.5617628097534,-16.0866851806641,-17.4229035377502,-17.8701095581055,-17.05743932724,-15.4147782325745,-14.0429968833923,-13.9823136329651,-15.3822417259216,-17.2249526977539,32767,32767,32767,32767,32767,32767,32767,32767,-11.1682053804398,-10.9532362222672,-9.73257231712341,-8.68664479255676,-8.46699273586273,-8.60817003250122,-7.90031039714813,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-10.1058096885681,-12.5898847579956,-13.9954464435577,-14.0252575874329,-12.9226996898651,-11.3818680047989,-10.2072392106056,-9.89298118650913,-10.3628063499928,-11.039322078228,-11.2147224545479,-10.4978270232677,-9.05028247833252,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-5.18701791763306,-6.90063035488129,-7.4781060218811,-7.10709810256958,-6.26907587051392,-5.45699834823608,-5.03241395950317,-5.23572587966919,-6.21964693069458,-7.98677182197571,-10.2524725794792,-12.3865913152695,-13.5780009031296,-13.2054901123047,-11.2130678296089,-8.23277759552002,-5.3327465057373,-3.51036167144775,-3.22194051742554],[-5.10718929767609,-5.74592196941376,-6.01514649391174,-5.73699939250946,-4.91070282459259,-3.59611719846725,-1.86432172358036,0.136875629425049,2.08837783336639,3.51627743244171,3.97803270816803,3.32207250595093,1.82786345481873,0.0891914367675781,-1.31606793403625,-2.15570867061615,-2.63749003410339,-3.19194281101227,-4.0967208147049,-5.22160363197327,-6.09373080730438,-6.2479407787323,-5.60895085334778,-4.61633861064911,-3.98192191123962,-4.2351690530777,-5.36907625198364,-6.83106327056885,-7.86024761199951,-7.93367791175842,-7.02310395240784,-5.51879453659058,-3.92387902736664,-2.57361036539078,-1.57887983322144,-0.986462354660034,-0.959700345993042,-1.76755094528198,-3.54190713167191,-5.98582401871681,-8.30421626567841,-9.49743580818176,-8.89257097244263,-6.5825622677803,-3.46336209774017,-0.806196928024292,0.390811920166016,-0.123610019683838,-1.83428019285202,-3.87137019634247,-5.55255389213562,-6.69446897506714,-7.52304291725159,-8.30942678451538,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-3.26169085502625,-3.88719058036804,-4.7379469871521,-5.35757923126221,-5.34667348861694,-4.6165566444397,-3.42542219161987,-2.16317844390869,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-8.88517596200109,-10.3059439659119,-11.9379506111145,-13.2891945838928,-14.2064170837402,-14.7387518882751,-14.8730163574219,-14.4408440589905,-13.3203086853027,-11.7544693946838,-10.4473176002502,-10.2349147796631,-11.4830508232117,-13.6528658866882,-15.4418187141418,32767,32767,32767,32767,32767,32767,32767,32767,-8.4455634355545,-5.69708657264709,-2.83412504196167,-1.57310390472412,-2.47090578079224,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-6.37620657682419,-5.55813717842102,-5.28238224983215,-6.11338329315186,-8.09705305099487,-10.6218616962433,-12.6863474845886,-13.4240508079529,-12.5705177783966,-10.5900317430496,-8.39141756296158,-6.81319313496351,-6.19486683607101,-6.28141355514526,-6.4918577671051,-6.35089021921158,-5.7918195836246,-5.14048027992249,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-4.2655383348465,-5.87871330976486,-5.92703199386597,-4.77468776702881,-3.16424989700317,-1.83151292800903,-1.26578426361084,-1.66450023651123,-2.98416423797607,-4.9768397808075,-7.19758284091949,-9.05973087251186,-10.0050680041313,-9.74835187196732,-8.45142982527614,-6.68611240386963,-5.16903209686279,-4.41219735145569,-4.49851942062378],[-6.46870994567871,-5.19003438949585,-3.55945003032684,-1.98870575428009,-0.775788903236389,0.0683573931455612,0.782611344009638,1.63220934569836,2.6663755774498,3.64308595657349,4.18243598937988,4.03547048568726,3.26516902446747,2.20240384340286,1.21248868107796,0.454175233840942,-0.182453513145447,-0.914725095033646,-1.81755667924881,-2.6954000890255,-3.19593134522438,-3.09506267309189,-2.53785240650177,-2.03454142808914,-2.17978125810623,-3.26526317745447,-5.04299229383469,-6.80435395240784,-7.73449075222015,-7.32683050632477,-5.61693334579468,-3.12540884315968,-0.585115671157837,1.36098212003708,2.33263990283012,2.22069717943668,1.11135864257812,-0.770195871591568,-3.06250941753387,-5.27112579345703,32767,-7.38528060913086,-6.77661848068237,-5.32889413833618,-3.6353235244751,-2.31468677520752,-1.73507034778595,-1.87904832139611,-2.41839972138405,-2.94042430818081,-3.18434393405914,-3.15536952018738,-3.0697295665741,-3.18526744842529,-3.62664127349854,-4.29939345270395,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-1.34629620611668,-1.27657330036163,-1.00974488258362,-0.547421932220459,-0.142025947570801,-0.0757217407226562,-0.369458198547363,-0.640161514282227,-0.246445655822754,1.32257175445557,4.03805065155029,7.17251920700073,32767,32767,32767,32767,32767,32767,32767,32767,-8.94684982299805,-8.97837615013123,-9.25453889369965,-9.89017152786255,-10.6794078350067,-11.3419890403748,-11.7125730514526,-11.7474660873413,-11.4042477607727,-10.5674700737,-9.14833927154541,-7.30777305364609,-5.5917888879776,-4.77631092071533,-5.42257887125015,-7.40612685680389,-9.78896427154541,32767,32767,32767,32767,32767,32767,32767,32767,32767,-2.19054517149925,2.64478336274624,6.83637547492981,8.30147743225098,6.45738500356674,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-4.98535871505737,-7.20780611038208,-8.53940856456757,-8.41316020488739,-7.17893546819687,-5.85055238008499,-5.4224020242691,-6.21458518505096,-7.67487716674805,-8.75173211097717,-8.57479831576347,-6.98881021142006,-4.60486453771591,-2.36893972754478,32767,-0.450853407382965,-0.36493182182312,-0.154955625534058,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-1.50362759828568,-0.115528225898743,1.17283451557159,1.74846011400223,1.4139147400856,0.328839182853699,-1.17571079730988,-2.76109951734543,-4.1604421287775,-5.20297825336456,-5.8345627784729,-6.13742971420288,-6.30312299728394,-6.52775931358337,-6.86943960189819,-7.16993069648743,-7.12287569046021],[-6.84471035003662,-3.71318650245667,-0.316209554672241,2.42915791273117,3.9372855424881,4.17204070091248,3.57592582702637,2.77233415842056,2.23254537582397,2.09899878903525,2.23340237140656,2.40530121326447,2.46262919902802,2.37433576583862,2.15609982609749,1.78327307105064,1.18933430314064,0.356375157833099,-0.591592311859131,-1.39840912818909,-1.81563091278076,-1.78750944137573,-1.54220294952393,-1.50149631500244,-2.0435357093811,-3.25787472724915,-4.84463679790497,-6.22233313322067,-6.78544735908508,-6.17441672086716,-4.42999708652496,-1.97961449623108,0.513963222503662,2.36805415153503,3.0883367061615,2.51880097389221,0.896531581878662,-1.21587824821472,-3.12021636962891,-4.24278914928436,-4.35947075393051,-3.67218944430351,-2.685786485672,-1.94202518463135,-1.75339066982269,-2.08001577854156,-2.60369420051575,-2.93194079399109,-2.79783248901367,-2.15042471885681,-1.12511086463928,0.0366430282592773,1.04569709300995,1.5948441028595,1.41601097583771,0.41037654876709,-1.19180393218994,-2.77431535720825,-3.50664091110229,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.733519077301025,1.05053472518921,1.42096018791199,2.37073773145676,3.96768975257874,5.6102991104126,6.34351921081543,5.51435661315918,3.32001304626465,0.846794128417969,-0.474695205688477,0.314952850341797,3.11841917037964,6.78834342956543,9.7196159362793,32767,32767,32767,32767,32767,32767,32767,-7.73453736305237,-9.45819902420044,-10.8393144607544,-11.5824999809265,-11.541925907135,-10.8688545227051,-9.91421604156494,-8.9670946598053,-8.04671323299408,-6.93038135766983,-5.41855669021606,-3.63930177688599,-2.13316774368286,-1.59452867507935,-2.39698362350464,-4.22259283065796,-6.09680604934692,-6.88609337806702,-5.99074649810791,32767,32767,32767,32767,32767,32767,32767,32767,9.13980913162231,13.8607668876648,15.4977307319641,13.3613085746765,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,1.8788822889328,2.42896366119385,0.772670924663544,-2.56493898481131,-6.12728714942932,-8.36632132530212,-8.51866269111633,-6.97575688362122,-4.93521356582642,-3.58718538284302,-3.3798850774765,-3.83243572711945,-3.9768363237381,-3.08776012063026,-1.18473356962204,1.02129757404327,2.66105192899704,32767,32767,32767,32767,32767,32767,32767,32767,2.15938234329224,0.198565244674683,-0.923364639282227,-0.892066240310669,0.0155341625213623,1.21249139308929,2.22503471374512,2.94022011756897,3.52213242650032,4.10943813621998,4.57117229700089,4.54263693094254,3.72635418176651,2.22191941738129,0.600781202316284,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,3.09320640563965,4.07944774627686,4.16107851266861,3.12853455543518,1.32709765434265,-0.5961012840271,-2.04765915870667,-2.74827551841736,-2.80352997779846,-2.60570275783539,-2.64558207988739,-3.30932521820068,-4.70944714546204,-6.593022108078,-8.37469136714935,-9.32254731655121,-8.85774284601212],[-5.74873757362366,-2.03019571304321,1.87403464317322,4.91093520075083,6.39579939842224,6.22045063972473,4.80234712362289,2.83724512904882,1.00318548828363,-0.246598124504089,-0.747000455856323,-0.574538707733154,0.0385160446166992,0.782868623733521,1.34218156337738,1.47090476751328,1.07400450110435,0.24864387512207,-0.754805564880371,-1.65228819847107,-2.26726627349854,-2.60995864868164,-2.84589385986328,-3.1773886680603,-3.71691608428955,-4.42781686782837,-5.15230774879456,-5.68652701377869,-5.84682381153107,-5.50573122501373,-4.62009477615356,-3.27842116355896,-1.75020503997803,-0.471255302429199,0.0934000015258789,-0.314523220062256,-1.5387077331543,-2.99019241333008,-3.89227938652039,-3.69006490707397,-2.38841342926025,-0.591769218444824,0.809069156646729,1.12936246395111,0.262801170349121,-1.29138946533203,-2.7454297542572,-3.46134400367737,-3.23023533821106,-2.25264763832092,-0.906237363815308,0.478008031845093,1.66530048847198,2.41672444343567,2.42032241821289,1.41531705856323,-0.519527435302734,-2.74688673019409,-4.18422842025757,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,2.45046436786652,2.01836383342743,2.13405077159405,3.49662882089615,5.97213447093964,8.44521427154541,9.40476942062378,7.90733242034912,4.27080154418945,0.00711822509765625,-2.99527931213379,-3.52990627288818,-1.70682525634766,1.21023464202881,3.61293601989746,4.45165157318115,32767,32767,32767,32767,32767,32767,-8.47168493270874,-11.50799036026,-13.8185381889343,-14.6807899475098,-13.9676394462585,-12.2148876190186,-10.2675848007202,-8.76199853420258,-7.80110403895378,-7.02775740623474,-6.01324272155762,-4.66113996505737,-3.32803249359131,-2.57327556610107,32767,-3.54446411132812,-4.34582090377808,-4.35964727401733,-3.27272653579712,32767,32767,32767,32767,32767,32767,32767,32767,9.481893658638,13.753019630909,15.5621049404144,14.1261253356934,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,2.56764578819275,0.350356101989746,-1.45333123207092,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-1.13635838031769,1.42223453521729,2.11252754926682,0.482570290565491,-2.74372519925237,-6.04362630844116,-7.93402624130249,-7.7688934803009,-6.01195514202118,-3.83383572101593,-2.31908702850342,-1.81319886445999,-1.82606101036072,-1.51423025131226,-0.368332862854004,1.39280939102173,2.99017906188965,3.67131674289703,3.27546918392181,2.36320090293884,32767,32767,32767,32767,32767,32767,3.21250116825104,1.60975480079651,0.567264080047607,0.323960542678833,0.6612548828125,1.20753192901611,1.77808570861816,2.46613746881485,3.42746465466917,4.56915652751923,5.4422105550766,5.48019564151764,4.43347442150116,2.66449689865112,1.03370654582977,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,5.11337161064148,5.20921397209167,3.79014897346497,1.13350582122803,-1.90706491470337,-4.32602834701538,-5.42113447189331,-5.06687784194946,-3.7197060585022,-2.19672012329102,-1.34156370162964,-1.70163059234619,-3.3145489692688,-5.66940689086914,-7.86706066131592,-8.94420313835144,-8.25390839576721],[-4.04837894439697,-1.47909498214722,1.27978682518005,3.50898140668869,4.68878138065338,4.62716400623322,3.4658958055079,1.59914243221283,-0.447001934051514,-2.14424979686737,-3.0906862616539,-3.12320166826248,-2.37638223171234,-1.24295938014984,-0.224601984024048,0.273455038666725,0.101295001571998,-0.612948656082153,-1.58641743659973,-2.56541359424591,-3.44469523429871,-4.2488374710083,-5.01086497306824,-5.66500902175903,-6.05766534805298,-6.07761287689209,-5.79539179801941,-5.47620093822479,-5.42302691936493,-5.75030529499054,-6.26660144329071,-6.58248960971832,-6.39055371284485,-5.71557259559631,-4.929607629776,-4.4893262386322,-4.56968402862549,-4.87201905250549,-4.78113913536072,-3.79581236839294,-1.94030499458313,0.149226427078247,1.55617094039917,1.6297455728054,0.382138848304749,-1.53006508201361,-3.2181057035923,-4.07410869002342,-4.03952258825302,-3.48275989294052,-2.83531498908997,-2.29835516214371,-1.83986049890518,-1.43599498271942,-1.29051005840302,-1.77867937088013,-3.10549426078796,-4.94659566879272,-6.41622066497803,-6.49212026596069,32767,32767,32767,32767,32767,32767,32767,32767,32767,3.09694421291351,2.91669267416,1.81418633460999,0.385415077209473,-0.219727039337158,0.841795921325684,3.3546724319458,5.98156404495239,6.99721145629883,5.36209774017334,1.41813087463379,-3.27199268341064,-6.84316539764404,-8.198561668396,-7.53992938995361,-6.05368423461914,-5.02721977233887,-5.03346252441406,-5.72567892074585,-6.31890034675598,32767,32767,-6.42512226104736,-8.1098096370697,-11.1633434295654,-14.7055048942566,-17.4214425086975,-18.3255233764648,-17.3143682479858,-15.161030292511,-12.9893879890442,-11.602276802063,-11.0971581935883,-10.9713923633099,-10.5801138877869,-9.59901523590088,-8.18951368331909,-6.80385208129883,-5.81820631027222,-5.27232313156128,-4.88569927215576,-4.30887937545776,-3.41056394577026,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,2.97196793556213,1.13064739108086,-0.827165722846985,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-5.93135476112366,-3.802221596241,-3.11168491840363,-4.02584087848663,-5.88479822874069,-7.55436754226685,-8.06212651729584,-7.13869500160217,-5.32345825433731,-3.56718055903912,-2.59662815928459,32767,32767,32767,-1.27557754516602,0.102437973022461,1.01979923248291,0.837293863296509,-0.433284878730774,-2.08657610416412,32767,32767,32767,32767,32767,32767,32767,0.904215395450592,0.472928643226624,0.206544995307922,-0.0540790557861328,-0.422559797763824,-0.755929380655289,-0.721283342689276,-0.104695320129395,0.899460192769766,1.69578266143799,1.6499090641737,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,3.58955252170563,2.65630999207497,0.136841297149658,-3.33451557159424,-6.69322156906128,-8.91566228866577,-9.42646431922913,-8.27941036224365,-6.07888603210449,-3.71511745452881,-2.03248739242554,-1.54531955718994,-2.28160905838013,-3.79523634910583,-5.34097933769226,-6.15514254570007,-5.74086689949036],[-3.04112130403519,-2.74807775020599,-2.17403423786163,-1.38455069065094,-0.541036248207092,0.0985576324164867,0.252064228057861,-0.24729061126709,-1.31656491756439,-2.59517699480057,-3.57783502340317,-3.85994517803192,-3.35746669769287,-2.35934539139271,-1.36862856149673,-0.827765941619873,-0.904163599014282,-1.47000905871391,-2.26978546380997,-3.13237643241882,-4.05730450153351,-5.11218965053558,-6.24067354202271,-7.16731119155884,-7.52057719230652,-7.11658328771591,-6.19184491783381,-5.37295570969582,-5.34488970041275,-6.40930789709091,-8.23578886687756,-10.003670334816,-10.8698001503944,-10.4625555872917,-9.07129129767418,-7.40606045722961,-6.10319182276726,-5.33003175258636,-4.76393121480942,-3.94127309322357,-2.69860887527466,-1.36386716365814,-0.54943311214447,-0.70468544960022,-1.77048647403717,-3.20090913772583,-4.33736330270767,-4.85154490172863,-4.92409318685532,-5.03317439556122,-5.53091740608215,-6.34829831123352,-7.06261992454529,-7.26876163482666,-6.94705748558044,-6.51645946502686,-6.5105003118515,-7.12249362468719,-7.98806387931108,-8.40212589502335,32767,32767,32767,32767,32767,32767,32767,32767,0.295605897903442,1.32424736022949,1.14702606201172,-0.363770484924316,-2.41580295562744,-3.74012660980225,-3.4449291229248,-1.68689441680908,0.338014602661133,1.11790466308594,-0.211132049560547,-3.31521034240723,-6.90158176422119,-9.57230281829834,-10.6961984634399,-10.704140663147,-10.6359891891479,-11.3003735542297,-12.6706409454346,-13.9481701850891,-14.2271918654442,32767,-11.7316309213638,-10.8894200921059,-11.6905282139778,-14.1523835659027,-17.2951707839966,-19.7287092208862,-20.4793877601624,-19.5160841941833,-17.6658139228821,-16.0276708602905,-15.3025708198547,-15.4600296020508,-15.8930110931396,-15.8821449279785,-15.0290377736092,-13.4058266282082,-11.4033615589142,-9.45506978034973,-7.84164834022522,-6.66193056106567,-5.90936756134033,-5.54024910926819,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,2.03258728981018,1.03864359855652,-0.452083587646484,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-10.8571112155914,-9.96583019196987,-9.58032494783401,-9.61014753580093,-9.66636833548546,-9.27520997077227,-8.18484189361334,-6.57082772254944,-4.97719478607178,-3.99647605419159,-3.88257676362991,32767,32767,32767,32767,-2.73742485046387,-2.21313261985779,-2.75734062492847,-4.30032598972321,-6.18311953544617,32767,32767,32767,32767,32767,32767,-1.36229884624481,-0.70154082775116,-0.346578359603882,-0.44452178478241,-1.13953995704651,-2.33963569998741,-3.63354674726725,-4.48187324404716,-4.57628761231899,-4.09609431028366,-3.63374257087708,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-0.147340059280396,0.355119466781616,-0.0652129650115967,-1.7782821059227,-4.5350866317749,-7.60877156257629,-10.1398847103119,-11.4868271350861,-11.4268853664398,-10.1597587764263,-8.16478970646858,-6.00503140687943,-4.15622240304947,-2.9025222659111,-2.30746620893478,-2.25054568052292,-2.50685766339302,-2.83718985319138,-3.0534992814064],[-3.1423337161541,-4.9526846408844,-6.3911726474762,-6.86471581459045,-6.15408611297607,-4.54464185237885,-2.70770728588104,-1.37119460105896,-0.952391386032104,-1.36513102054596,-2.11761939525604,-2.63790655136108,-2.61842632293701,-2.1620991230011,-1.65129828453064,-1.45286178588867,-1.67985486984253,-2.17558544874191,-2.70809480547905,-3.19867190718651,-3.78401474654675,-4.65094059705734,-5.77937635779381,-6.82613372802734,-7.29177355766296,-6.89118385314941,-5.86234617233276,-4.94956773519516,-5.00721648335457,-6.44787336885929,-8.90107637643814,-11.3382611274719,-12.6184056997299,-12.122837305069,-10.0803520679474,-7.38709354400635,-5.05960822105408,32767,-3.24573481082916,-3.28247284889221,-3.37188804149628,-3.39581555128098,-3.52164381742477,-3.93014848232269,-4.5619056224823,-5.11481404304504,-5.3019495010376,-5.14881014823914,-5.06012308597565,-5.56169134378433,-6.88747656345367,-8.72546935081482,-10.3379893302917,-11.0001912117004,-10.4594330787659,-9.09351253509521,-7.6601676940918,-6.82316565513611,-6.79099130630493,-7.30191016197205,-7.91814613342285,32767,32767,32767,32767,32767,32767,32767,-2.88773107528687,-1.15854549407959,-0.799774169921875,-1.88948631286621,-3.72409820556641,-5.23261260986328,-5.66027450561523,-5.05257701873779,-4.19279766082764,-4.02987194061279,-5.00301551818848,-6.74942302703857,-8.40611362457275,-9.28076648712158,-9.39146327972412,-9.46596050262451,-10.3877906799316,-12.4887890815735,-15.2124638557434,-17.4145133495331,-18.1100145578384,-17.1508922576904,-15.3594048023224,-14.0195236206055,-14.0712594985962,-15.5483486652374,-17.6181947588921,-19.1643602848053,-19.4965212345123,-18.7200989723206,-17.5633444786072,-16.8355145454407,-16.9095005989075,-17.5524215698242,-18.1524267196655,-18.1253519058228,-17.2145009040833,-15.5347884893417,-13.4217764139175,-11.2558886110783,-9.37844264507294,-8.0797346830368,-7.5604807138443,-7.82038396596909,-8.55468618869781,-9.20509171485901,-9.2269549369812,-8.44766616821289,32767,32767,32767,-7.84222346544266,-9.3304785490036,-9.91632306575775,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.935873031616211,0.785197734832764,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-11.1452374458313,-11.9052757024765,-12.5559133291245,-12.7249536514282,-12.1742337942123,-10.8762222528458,-9.02606070041656,-7.00261569023132,-5.27549004554749,-4.25356435775757,-4.11102557182312,32767,32767,32767,32767,32767,-3.92925991117954,-3.39219862222672,-3.68442034721375,-4.76123702526093,-6.17977237701416,32767,-7.86387038230896,-7.60272073745728,-6.73457312583923,-5.50607913732529,-4.10400074720383,-2.65532827377319,-1.3356761932373,-0.444716453552246,-0.329018592834473,-1.1697895526886,-2.79059171676636,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-1.14635920524597,-1.7642947435379,-3.1624675989151,-5.17170244455338,-7.283522605896,-8.94943737983704,-9.85558414459229,-10.0181760787964,-9.68129301071167,-9.11743927001953,-8.4663679599762,-7.69706225395203,-6.6893413066864,-5.36963963508606,-3.8208741247654,-2.31269365549088,-1.23538446426392,-0.955949306488037,-1.64435434341431],[-3.50788497924805,-6.10564476251602,-8.36073541641235,-9.31800103187561,-8.52293586730957,-6.23647117614746,-3.31064856052399,-0.773824092000723,0.655885607004166,0.861079096794128,0.26702618598938,-0.502993106842041,-1.02295565605164,-1.25799918174744,-1.45837044715881,-1.86928844451904,-2.4945605546236,-3.09452468156815,-3.40716481208801,-3.40112669765949,-3.34031820297241,-3.58752965927124,-4.28887283802032,-5.19438967108727,-5.78650724887848,-5.65838479995728,-4.87734568119049,-4.04638503491879,-3.97128981351852,-5.12299239635468,-7.25193554162979,-9.43469290435314,-10.5555417239666,-9.93492746353149,-7.71489036083221,-4.76936388015747,-2.21437752246857,32767,-0.792757577029988,-1.68180069327354,-2.91639930009842,-4.05580908060074,-4.92488783597946,-5.50339957326651,-5.75965040922165,-5.61339867115021,-5.06557309627533,-4.3572051525116,-3.96780252456665,-4.38210213184357,-5.75230425596237,-7.69931864738464,-9.42960786819458,-10.1337251663208,-9.43097019195557,-7.58235788345337,-5.34453475475311,-3.57148588076234,-2.82057294249535,-3.18445980548859,-4.39074313640594,32767,32767,32767,32767,32767,32767,32767,-4.29826641082764,-2.29228210449219,-1.26069355010986,-1.32687187194824,-2.12510871887207,-3.07454872131348,-3.7694206237793,-4.20411491394043,-4.67020130157471,-5.41368579864502,-6.33468246459961,-6.99181509017944,-6.94237375259399,-6.17471313476562,-5.28484153747559,-5.20890235900879,-6.64404964447021,-9.53954696655273,-13.0253853797913,-15.8633008003235,-17.1474018096924,-16.8030118942261,-15.5646786689758,-14.4648275375366,-14.1884307861328,-14.7199940681458,-15.4855103492737,-15.843111038208,-15.5514178276062,-14.8955920338631,-14.4212843179703,-14.5079705715179,-15.1021256446838,-15.7795372009277,-16.0497574806213,-15.6530151367188,-14.6462845802307,-13.269646525383,-11.7575221657753,-10.2699721232057,-8.97132875025272,-8.11803290247917,-7.99161040782928,-8.66056561470032,-9.75476789474487,-10.5014750957489,-10.1145193576813,-8.34232378005981,-5.78817582130432,32767,32767,-4.77359485626221,-7.38485383987427,-9.41944360733032,-9.38170719146729,-6.87467002868652,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-7.36220955848694,-5.7059760093689,-4.11485910415649,32767,32767,-5.74083471298218,-7.99238395690918,-9.81758737564087,-10.4986588954926,-9.80673050880432,-8.04845261573792,-5.87878799438477,-4.00046682357788,-2.89655029773712,-2.69293606281281,-3.17344129085541,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-2.56167009472847,-2.96892595291138,-3.16052159667015,-3.01376389991492,-2.42132294178009,-1.39992249011993,-0.182793617248535,0.801109552383423,1.09485530853271,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-3.7137234210968,-5.55315697193146,-6.53571879863739,-6.45563191175461,-5.66031968593597,-4.84570646286011,-4.66084104776382,-5.35665482282639,-6.66383290290833,-7.94194459915161,-8.4986629486084,-7.91632509231567,-6.24705684185028,-4.01302886009216,-2.02253341674805,-1.06703758239746,-1.59884929656982],[-2.98273694515228,-4.7725405395031,-6.42334175109863,-7.0416567325592,-6.15449333190918,-3.94037526845932,-1.14630389213562,1.28016889095306,2.64637100696564,2.80198097229004,2.10430282354355,1.10954287648201,0.208860516548157,-0.550381243228912,-1.36062215268612,-2.37624162435532,-3.49245411157608,-4.36050924658775,-4.63289016485214,-4.24947500228882,-3.53464686870575,-3.01026028394699,-3.0437690615654,-3.58477890491486,-4.19267213344574,-4.35269713401794,-3.86439096927643,-3.0216463804245,-2.44078636169434,-2.6391658782959,-3.64844012260437,-4.93292641639709,-5.68189835548401,-5.29376602172852,-3.74341511726379,-1.60509896278381,0.268949747085571,1.19887912273407,0.981193542480469,-0.106226444244385,-1.54514914751053,-2.86931794881821,-3.82454168796539,-4.34630656242371,-4.44710969924927,-4.14918112754822,-3.52209365367889,-2.7646803855896,-2.21246309578419,-2.20550694875419,-2.87460845708847,-3.9941314458847,-5.0295557975769,-5.38485926389694,-4.71622216701508,-3.1261984705925,-1.12455397844315,0.613258741796017,1.5427593588829,1.44238978624344,0.42830228805542,32767,32767,32767,32767,-5.99382257461548,-5.63217413425446,-4.60976523160934,-3.17806529998779,-1.66150093078613,-0.34189510345459,0.617498397827148,1.15765380859375,1.24408340454102,0.81056022644043,-0.195426940917969,-1.67787933349609,-3.28284454345703,-4.45127296447754,-4.67401170730591,-3.8272852897644,-2.3636622428894,-1.18291616439819,-1.20051383972168,-2.84451198577881,-5.79055690765381,-9.11656522750854,-11.7963261604309,-13.230327129364,-13.4877915382385,-13.1296243667603,-12.7624597549438,-12.644359588623,-12.6044397354126,-12.2975692749023,-11.5708808898926,-10.6483917236328,-9.99200403690338,-9.95144611597061,-10.4791865348816,-11.1353349685669,-11.3829216957092,-10.9516549110413,-9.99778485298157,-8.95021322369576,-8.17814493179321,-7.7510792016983,-7.47814202308655,-7.17604374885559,-6.91436767578125,-6.99331414699554,-7.63008715957403,-8.59801176190376,-9.15539229521528,-8.41945064067841,-5.99748492240906,-2.43695211410522,0.890214920043945,2.49689821153879,1.6862370967865,-0.936370849609375,-3.72455358505249,-4.91698408126831,-3.66867971420288,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-1.77976036071777,1.06028461456299,3.29668807983398,4.12572193145752,3.21916007995605,0.936782836914062,-1.80211496353149,-3.93561315536499,-4.74627590179443,-4.15917301177979,-2.70641982555389,-1.20068395137787,-0.312257170677185,-0.276236563920975,-0.859472095966339,-1.56324344873428,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,4.79104483127594,3.9262563586235,2.75120049715042,1.67118810303509,1.07539585232735,1.14376883208752,1.74857302010059,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-1.75704696774483,-3.17750947549939,-3.12179380655289,-1.73793232440948,0.111264944076538,1.29604697227478,0.992621898651123,-0.929025083780289,-3.87746787071228,-6.84144735336304,-8.83531594276428,-9.27804946899414,-8.17192316055298,-6.05667972564697,-3.79036283493042,-2.23840463161469,-1.9593181759119],[-1.41565954685211,-1.48098310828209,-1.72072595357895,-1.63095021247864,-0.884929399937391,0.47410774230957,2.03566229343414,3.23689591884613,3.66867434978485,3.28311800956726,2.37144362926483,1.33415567874908,0.408551692962646,-0.45269513130188,-1.46856927871704,-2.77230620384216,-4.2103419303894,-5.36290216445923,-5.79145967960358,-5.34673058986664,-4.31411039829254,-3.27650141716003,-2.76900267601013,-2.94922614097595,-3.5043671131134,-3.86062741279602,-3.55857944488525,-2.54844236373901,-1.21595191955566,-0.131208896636963,0.306147575378418,0.0934658050537109,-0.411955833435059,-0.749022483825684,-0.646371364593506,-0.164310932159424,0.386653900146484,0.670529365539551,0.531424522399902,0.0530037879943848,-0.540246963500977,-1.04500842094421,-1.38381433486938,-1.5937032699585,-1.73457980155945,-1.80691814422607,-1.74713635444641,-1.49692225456238,-1.08043265342712,-0.617785215377808,-0.255966901779175,-0.0654745101928711,0.0196738243103027,0.16994047164917,0.552998065948486,1.22031307220459,2.06065130233765,2.84855699539185,3.3554664850235,3.45579063892365,3.16976296901703,2.62812948226929,1.98937678337097,1.36259317398071,0.778658747673035,0.220884144306183,-0.307578757405281,-0.723643600940704,-0.855363845825195,-0.506181359291077,0.42393946647644,1.81781387329102,3.29885816574097,4.32502317428589,4.41053104400635,3.38338756561279,1.53556251525879,-0.449446678161621,-1.79643487930298,-2.03194141387939,-1.25601768493652,-0.120246410369873,0.501580715179443,-0.0226345062255859,-1.75133323669434,-4.16648006439209,-6.49757432937622,-8.16487693786621,-9.06048059463501,-9.49820041656494,-9.88997840881348,-10.3930330276489,-10.7866544723511,-10.6671557426453,-9.81228351593018,-8.43445158004761,-7.11476016044617,-6.44165945053101,-6.60275423526764,-7.22946402430534,-7.62568092346191,-7.23750185966492,-6.04026544094086,-4.56622076034546,-3.54724764823914,-3.42321228981018,-4.06623125076294,-4.9158079624176,-5.41750931739807,-5.4293532371521,-5.27937841415405,-5.41976404190063,-5.93902969360352,-6.32712316513062,-5.72526741027832,-3.53765153884888,0.0125703811645508,3.80983233451843,6.37858301401138,6.72775435447693,4.9706221818924,2.30094313621521,0.31229829788208,0.0789575576782227,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,3.09025430679321,5.4712450504303,7.15403294563293,7.58056664466858,6.60669136047363,4.63808631896973,2.48165273666382,0.966262698173523,0.535053461790085,1.0430181324482,1.87823423743248,2.33615081012249,2.02754807472229,1.08411109447479,0.0526752471923828,-0.443831443786621,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-0.0600371360778809,0.499648571014404,2.23650789260864,4.09468936920166,4.91743475198746,4.0227690115571,1.48822200298309,-1.95695877075195,-5.31118166446686,-7.71674883365631,-8.72264224290848,-8.33506774902344,-6.91440105438232,-5.01198554039001,-3.20517182350159,-1.94338643550873],[0.0312952995300293,1.50226759910583,2.52125370502472,3.11352571099997,3.42359367012978,3.57671632617712,3.57981491088867,3.34035170078278,2.78399395942688,1.9678852558136,1.08521294593811,0.342729091644287,-0.199617385864258,-0.694612979888916,-1.40760278701782,-2.50300884246826,-3.8671133518219,-5.10878014564514,-5.7649393081665,-5.59178018569946,-4.74949741363525,-3.74417924880981,-3.14367580413818,-3.23449850082397,-3.83322906494141,-4.37566423416138,-4.23720836639404,-3.09721326828003,-1.13599491119385,1.04283952713013,2.70972919464111,3.35203075408936,2.87942409515381,1.60542154312134,0.0509004592895508,-1.29828643798828,-2.15156412124634,-2.43960952758789,-2.24264621734619,-1.70153331756592,-0.972073078155518,-0.226096153259277,0.343148231506348,0.555310726165771,0.32063627243042,-0.283444404602051,-0.998862743377686,-1.46908473968506,-1.39104509353638,-0.662017345428467,0.559169292449951,1.91392493247986,2.99938178062439,3.53777551651001,3.4764518737793,2.97787809371948,2.32122135162354,1.77956914901733,1.53642177581787,1.66620492935181,2.15682244300842,2.93107581138611,3.84187459945679,4.65797960758209,5.08617959916592,4.86358076334,3.90116593241692,2.40087509155273,0.851259231567383,-0.142968058586121,-0.143522143363953,0.869024634361267,2.42896765470505,3.77583646774292,4.22626429796219,3.53194761276245,2.01491546630859,0.386643886566162,-0.657782554626465,-0.837711572647095,-0.437746047973633,-0.116089344024658,-0.485533475875854,-1.72785937786102,-3.48586571216583,-5.1019104719162,-6.04751038551331,-6.26056027412415,-6.16419553756714,-6.35201835632324,-7.15063142776489,-8.36037254333496,-9.36109972000122,-9.52386879920959,-8.65433216094971,-7.1601870059967,-5.81307649612427,-5.2504403591156,-5.54909634590149,-6.16645991802216,-6.30395042896271,-5.45876955986023,-3.79320329427719,-2.06360077857971,-1.14499926567078,-1.4642961025238,-2.72289729118347,-4.09798669815063,-4.78614568710327,-4.51757049560547,-3.68721723556519,-3.01419925689697,-2.97007846832275,-3.38356018066406,-3.51267528533936,-2.5532808303833,-0.24411678314209,2.85062170028687,5.59290981292725,6.91261455416679,6.43175113201141,4.67335158586502,2.72824773192406,1.60450637340546,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,2.44320178031921,3.34852659702301,4.28695869445801,5.09585809707642,5.52459752559662,5.36277341842651,4.60765108466148,3.53998422622681,2.62126278877258,2.24542140960693,2.49078333377838,3.04052340984344,3.34790325164795,2.96730422973633,1.85556054115295,0.449038743972778,-0.548102140426636,-0.551952838897705,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,4.35638856887817,2.68722629547119,1.60110807418823,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,1.7507381439209,2.17664337158203,3.29047775268555,4.18554496765137,4.07103562355042,2.685706615448,0.366884708404541,-2.20812845230103,-4.39904594421387,-5.85630464553833,-6.5389997959137,-6.56101322174072,-6.02709245681763,-4.9848051071167,-3.49654912948608,-1.7310471534729],[-0.0287361145019531,1.9998185634613,3.45501399040222,4.02970391511917,3.77321684360504,2.98197478055954,1.9978187084198,1.05584990978241,0.257225275039673,-0.363714218139648,-0.77161431312561,-0.933534383773804,-0.885457038879395,-0.785090446472168,-0.874711036682129,-1.34878015518188,-2.2075207233429,-3.20940756797791,-3.98167014122009,-4.24019908905029,-3.9835364818573,-3.52453708648682,-3.31672143936157,-3.66422510147095,-4.4894323348999,-5.31229543685913,-5.47677206993103,-4.51262974739075,-2.43395328521729,0.197268009185791,2.48778700828552,3.60326218605042,3.13417840003967,1.2592601776123,-1.35851669311523,-3.86952638626099,-5.56934595108032,-6.11354970932007,-5.54959154129028,-4.20309019088745,-2.51437616348267,-0.910362720489502,0.26200008392334,0.769259452819824,0.531612396240234,-0.326462745666504,-1.45829248428345,-2.36505746841431,-2.56728410720825,-1.81875514984131,-0.253158569335938,1.63169431686401,3.16704440116882,3.79816007614136,3.31980276107788,1.94653701782227,0.195615291595459,-1.33932209014893,-2.19993329048157,-2.17017531394958,-1.26961827278137,0.308404207229614,2.24828946590424,4.13734394311905,5.50586301088333,5.932821393013,5.21357262134552,3.50802934169769,1.35373282432556,-0.51799201965332,-1.50466632843018,-1.4274754524231,-0.618249893188477,0.273481369018555,0.655116558074951,0.325363159179688,-0.440838217735291,-1.11427891254425,-1.29862129688263,-1.02663815021515,-0.760521054267883,-1.08344662189484,-2.27909833937883,-4.08255887031555,-5.78572833538055,-6.65104866027832,-6.37837152183056,-5.32051002979279,-4.29370427131653,-4.0876989364624,-4.97848033905029,-6.55454230308533,-7.97221779823303,-8.4818012714386,-7.8899986743927,-6.66275453567505,-5.6039571762085,-5.32053399085999,-5.82489609718323,-6.53669786453247,-6.68447130918503,-5.84307980537415,-4.24981325864792,-2.68312880396843,-1.97359949350357,-2.46109557151794,-3.75311266258359,-4.94884479045868,-5.1927330493927,-4.20705604553223,-2.46323680877686,-0.882662773132324,-0.25743293762207,-0.758190155029297,-1.83610105514526,-2.57278776168823,-2.24996614456177,-0.781576156616211,1.24982118606567,2.95394039154053,3.6497654914856,3.21981728076935,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,3.1462824344635,3.1264955997467,2.62981748580933,1.86664652824402,1.07276797294617,0.404165029525757,-0.0770969390869141,-0.342746436595917,-0.339726507663727,-0.00362896919250488,0.652009010314941,1.44464659690857,2.02708745002747,2.03162598609924,1.29392266273499,0.0187709331512451,-1.2432804107666,-1.83422136306763,-1.33035230636597,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,3.67510199546814,2.6107017993927,1.34253716468811,0.174550533294678,-0.672014713287354,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,1.58366632461548,1.52167081832886,0.954604625701904,-0.322959899902344,-2.02252006530762,-3.55171155929565,-4.40528345108032,-4.48108434677124,-4.10898113250732,-3.78605890274048,-3.81163239479065,-4.07440423965454,-4.13097906112671,-3.51379871368408,-2.05678701400757],[-1.75320219993591,-0.190842151641846,0.837274074554443,0.950669050216675,0.242729663848877,-0.846528291702271,-1.81770642846823,-2.36620318889618,-2.46469712257385,-2.2670339345932,-1.94052255898714,-1.55800133943558,-1.11201453208923,-0.610726475715637,-0.155478835105896,0.0774030685424805,-0.0550168752670288,-0.547519207000732,-1.22324734926224,-1.83647018671036,-2.24106180667877,-2.50515341758728,-2.87618637084961,-3.59737467765808,-4.68444752693176,-5.8164154291153,-6.43891394138336,-6.05090582370758,-4.52255946397781,-2.25372469425201,-0.0594909191131592,1.17904245853424,0.92350971698761,-0.768022656440735,-3.27323257923126,-5.69754886627197,-7.26366436481476,-7.59902554750443,-6.79928648471832,-5.28221809864044,-3.55376982688904,-2.02515959739685,-0.948871612548828,-0.444556474685669,-0.533931732177734,-1.12943983078003,-1.99449515342712,-2.74785208702087,-2.97076272964478,-2.39825773239136,-1.09324836730957,0.517637968063354,1.79964756965637,2.19361233711243,1.47885656356812,-0.128136396408081,-2.08589923381805,-3.77474677562714,-4.73401683568954,-4.77451622486115,-3.94821166992188,-2.44894301891327,-0.538459919393063,1.46456807851791,3.17527830600739,4.18862891197205,4.21030879020691,3.2139852643013,1.51012301445007,-0.35561740398407,-1.84734058380127,-2.69070959091187,-2.97104930877686,-3.0088152885437,-3.09379053115845,-3.2639012336731,-3.29157066345215,-2.8971574306488,-2.04039132595062,-1.06833256408572,-0.581931173801422,-1.0754377245903,-2.57424636185169,-4.52476936578751,-6.04433286190033,-6.40717613697052,-5.47737653553486,-3.81413733959198,-2.36885285377502,-1.94668483734131,-2.7549147605896,-4.31036448478699,-5.75603890419006,-6.38521265983582,-6.04749989509583,-5.19294953346252,-4.54250812530518,-4.60674858093262,-5.36325716972351,-6.29296064376831,-6.74163340032101,-6.36509092897177,-5.36638075113297,-4.36954200267792,-4.00829935073853,-4.49179542064667,-5.42686241865158,-6.01924467086792,-5.54159605503082,-3.79066479206085,-1.25791883468628,1.09346485137939,2.322678565979,1.99868822097778,0.412868738174438,-1.58977127075195,-3.05256915092468,-3.372718334198,-2.54640257358551,-1.08992004394531,0.285064935684204,1.04342520236969,1.04953730106354,0.551528573036194,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,2.04679465293884,2.32044363021851,1.65313696861267,0.244806289672852,-1.46528935432434,-2.98353588581085,-3.94347959756851,-4.20029580593109,-3.8147077858448,-2.96994423866272,-1.89063388109207,-0.806229412555695,0.0529880523681641,0.473159790039062,0.322435021400452,-0.354801595211029,-1.28372341394424,-2.01629614830017,-2.10968279838562,-1.35003852844238,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-0.0685218572616577,-0.426334500312805,-0.7922602891922,-1.15589022636414,-1.53870332241058,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.136282920837402,-1.01667428016663,-2.89045238494873,-5.13181376457214,-6.97432684898376,-7.64638423919678,-6.84126603603363,-4.94444501399994,-2.85883581638336,-1.52019608020782,-1.39069271087646,-2.23138654232025,-3.28128516674042,-3.72254252433777,-3.1465425491333],[-3.72402493655682,-3.06966984272003,-2.8617879152298,-3.33475571870804,-4.24483889341354,-5.05512595176697,-5.27897334098816,-4.75943678617477,-3.72296717762947,-2.59941959381104,-1.74488341808319,-1.25023251771927,-0.946017101407051,-0.578190103173256,-0.0207406282424927,0.621767222881317,1.08408242464066,1.1237456202507,0.684103727340698,-0.0775889754295349,-0.912799626588821,-1.66248344630003,-2.36057475209236,-3.17859156429768,-4.24447323381901,-5.46573024988174,-6.49634170532227,-6.89684808254242,-6.40419566631317,-5.14124310016632,-3.61818504333496,-2.5013587474823,-2.27206307649612,-2.97361719608307,-4.19654858112335,-5.30867457389832,-5.79002809524536,-5.4760262966156,-4.58001899719238,-3.50999104976654,-2.61712074279785,-2.03760004043579,-1.70512948278338,-1.48642867803574,-1.31486043334007,-1.21939584612846,-1.2426470220089,-1.33569753170013,-1.3361964225769,-1.06674468517303,-0.488021612167358,0.213856220245361,0.688508152961731,0.608880639076233,-0.131638169288635,-1.34304237365723,-2.63402229547501,-3.61389142274857,-4.06821006536484,-4.00280507653952,-3.55084863305092,-2.83457636833191,-1.8948415517807,-0.736267447471619,0.563643217086792,1.78787410259247,2.62902384996414,2.83420684933662,2.34498386085033,1.32918393611908,0.0805082321166992,-1.13869285583496,-2.19437026977539,-3.05204296112061,-3.66256332397461,-3.87925338745117,-3.50516128540039,-2.46348285675049,-0.968611717224121,0.457324981689453,1.189568825881,0.83832198381424,-0.485552668571472,-2.16562569141388,-3.37527769804001,-3.52094578742981,-2.57410621643066,-1.08753538131714,0.120816230773926,0.429880619049072,-0.251170635223389,-1.47136306762695,-2.54117488861084,-2.95417642593384,-2.66846609115601,-2.08837842941284,-1.77837657928467,-2.10194849967957,-3.01137113571167,-4.10671544075012,-4.90916728973389,-5.16479468345642,-4.98625588417053,-4.74921655654907,-4.81472015380859,-5.25422596931458,-5.75008797645569,-5.73946499824524,-4.72763806581497,-2.59954243898392,0.243840098381042,3.00594781339169,4.8212251663208,5.1322700381279,3.9375097155571,1.79289945960045,-0.430040165781975,-1.91379722952843,-2.22061055898666,-1.43115191161633,-0.0462455749511719,1.28447550535202,2.06721006333828,2.15581637620926,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,1.11288499832153,1.12123870849609,0.221206188201904,-1.27451705932617,-2.85194659233093,-3.99679899215698,-4.38518846035004,-3.97979843616486,-2.99783480167389,-1.78498721122742,-0.670008659362793,0.131203651428223,0.536763072013855,0.568321704864502,0.313987374305725,-0.0888080596923828,-0.459362789988518,-0.599850833415985,-0.358542680740356,0.290946245193481,1.20686483383179,2.11762261390686,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-0.0622680187225342,0.207849860191345,0.637101545929909,0.963972672820091,0.922767072916031,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-0.498939454555511,-2.11631065607071,-4.57866990566254,-7.20609486103058,-8.99417626857758,-9.13215827941895,-7.47374045848846,-4.67218291759491,-1.88254922628403,-0.188806653022766,-0.0769286453723907,-1.24559900164604,-2.84562063217163,-3.98942935466766,-4.22699147462845],[-4.15109384059906,-4.1387779712677,-4.5702999830246,-5.44917166233063,-6.36033654212952,-6.72253346443176,-6.15157580375671,-4.70919696986675,-2.88728678226471,-1.34066486358643,-0.532115936279297,-0.501017570495605,-0.886227488517761,-1.17735248804092,-1.03313279151917,-0.472983479499817,0.165632843971252,0.462308168411255,0.182655572891235,-0.590256094932556,-1.53698240220547,-2.32947945594788,-2.84657442569733,-3.23253130912781,-3.76421666145325,-4.62348175048828,-5.73482942581177,-6.7819322347641,-7.39263427257538,-7.36582565307617,-6.78546118736267,-5.94634795188904,-5.1475168466568,-4.50081807374954,-3.88955399394035,-3.10373643785715,-2.05078035593033,-0.88421642780304,0.0509783029556274,0.42832612991333,0.164549231529236,-0.496758699417114,-1.10506004095078,-1.25275033712387,-0.795703053474426,0.0905592441558838,1.04133689403534,1.72052726149559,1.98068052530289,1.87653917074203,1.55453932285309,1.12335884571075,0.606890559196472,0.000993490219116211,-0.634601399302482,-1.1462444961071,-1.36084359884262,-1.21529340744019,-0.835374116897583,-0.486150979995728,-0.409173011779785,-0.651364326477051,-1.00706458091736,-1.12330770492554,-0.708166718482971,0.288394808769226,1.63239386677742,2.92124933004379,3.7763444185257,3.99548137187958,3.59262311458588,2.7373058795929,1.66525936126709,0.624320983886719,-0.138140678405762,-0.39240550994873,0.00786304473876953,1.02410507202148,2.36997556686401,3.5688054561615,4.14558389782906,3.86772561073303,2.89073990285397,1.70146727561951,0.869519948959351,0.741980314254761,1.26195096969604,2.02149868011475,2.51592636108398,2.44207429885864,1.85961866378784,1.12486505508423,0.650948524475098,0.651610612869263,1.02480053901672,1.43437695503235,1.52253603935242,1.11299014091492,0.286218404769897,-0.700900793075562,-1.58210265636444,-2.22422313690186,-2.66444182395935,-3.03463172912598,-3.43141984939575,-3.81311178207397,-3.98018550872803,-3.6480016708374,-2.57748746871948,-0.70836353302002,1.75995111465454,4.3786301612854,6.56250262260437,7.78074479103088,7.76184713840485,6.62599691748619,4.87121017277241,3.19583529233932,2.21957784891129,2.22701692581177,3.06019258499146,4.21843194961548,5.11717054247856,5.37006548047066,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.931777954101562,1.28109836578369,0.979184865951538,0.160460233688354,-0.830799341201782,-1.56961131095886,-1.7208878993988,-1.17682766914368,-0.0976364612579346,1.16489386558533,2.2236921787262,2.81638336181641,2.89456915855408,2.60761046409607,2.20352292060852,1.90765032172203,1.84024393558502,2.00096027553082,2.30706822872162,2.64952456951141,2.93617391586304,3.11363554000854,3.17529726028442,3.16216588020325,3.15180230140686,3.22621595859528,3.42273116111755,3.69523030519485,3.92143096029758,32767,3.80760180950165,3.54764196276665,3.43288779258728,3.69311702251434,4.37925457954407,5.27259111404419,5.94996500015259,5.99247026443481,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-1.16558361053467,-3.2621037364006,-5.50077390670776,-6.94610905647278,-6.91850256919861,-5.38258242607117,-2.99753046035767,-0.793197244405746,0.347774386405945,0.111603498458862,-1.15012145042419,-2.68539535999298,-3.79539752006531,-4.20620405673981],[-2.53544601798058,-2.55088901519775,-3.13394999504089,-4.10924935340881,-4.95604729652405,-5.10130405426025,-4.26352488994598,-2.64570188522339,-0.860314607620239,0.377046823501587,0.615020513534546,-0.111509919166565,-1.3277068734169,-2.40176689624786,-2.89751374721527,-2.79287648200989,-2.44414663314819,-2.32947826385498,-2.73581087589264,-3.5823438167572,-4.48424530029297,-5.00911259651184,-4.96027410030365,-4.50889003276825,-4.09588944911957,-4.170066177845,-4.92651569843292,-6.19994240999222,-7.56174772977829,-8.54163694381714,-8.82892489433289,-8.34393763542175,-7.17328929901123,-5.45677971839905,-3.33105117082596,-0.968581557273865,1.34494960308075,3.19916123896837,4.17640852928162,4.05925330519676,3.00115456618369,1.53054141998291,0.350370407104492,0.0240871906280518,0.71773624420166,2.14039289951324,3.70906536281109,4.83483374118805,5.16877341270447,4.6905854344368,3.63213473558426,2.32336056232452,1.06821250915527,0.101797103881836,-0.399979770183563,-0.324200537055731,0.327080342918634,1.37014770507812,2.43525689840317,3.07755708694458,2.97627055644989,2.11788910627365,0.846165657043457,-0.270116567611694,-0.692697286605835,-0.157894313335419,1.21876156330109,3.02189254760742,4.74038344621658,5.9788156747818,6.57627308368683,6.60278487205505,6.27318930625916,5.84415626525879,5.53756809234619,5.49510478973389,5.74980926513672,6.21172428131104,6.68536615371704,6.93730425834656,6.80141514539719,6.27088391780853,5.51496291160583,4.79512639343739,4.32049489021301,4.12987160682678,4.07909822463989,3.94641876220703,3.58866453170776,3.04421782493591,2.51270842552185,2.22491717338562,2.29089641571045,2.6274893283844,3.00975397229195,3.20565345883369,3.10066789388657,2.73356121778488,2.23307228088379,1.71422294527292,1.21337932348251,0.702107191085815,0.1551513671875,-0.390525817871094,-0.833984851837158,-1.06130981445312,-1.00024223327637,-0.629793167114258,0.0587100982666016,1.10249614715576,2.55320072174072,4.39492702484131,6.44824552536011,8.34804582595825,9.65017426013947,10.0350874066353,9.49590909481049,8.3853280544281,7.2682478427887,6.64623713493347,6.70573544502258,7.23660945892334,7.76934576034546,7.84792351722717,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,2.68308329582214,2.33395391702652,1.72657731175423,1.09477299451828,0.729027271270752,0.865284562110901,1.58135950565338,2.74502140656114,4.04375171661377,5.09445801377296,5.59361247718334,5.44262750446796,4.78948071599007,3.96234569977969,3.32539933919907,3.1239560842514,3.39102452993393,3.95377349853516,4.52852320671082,4.85332536697388,4.79717016220093,4.40533399581909,3.87227201461792,3.46147632598877,3.40442895889282,3.81238317489624,4.62951993942261,5.64900469779968,6.59418034553528,7.24162971973419,7.53276461362839,7.61277215182781,7.75963732600212,8.22357249259949,9.05617141723633,10.0297491550446,10.7100300788879,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-2.31990912556648,-2.26171578839421,-1.4384751021862,-0.334493279457092,0.411694824695587,0.369038105010986,-0.452789962291718,-1.63238883018494,-2.60393118858337,-2.99684524536133,-2.8439553976059],[-0.186843797564507,0.220943361520767,-0.0957868695259094,-0.904949964955449,-1.69494224246591,-1.95644327718765,-1.46837809681892,-0.432113766670227,0.621935680508614,1.10756748914719,0.688279449939728,-0.552423641085625,-2.16967725753784,-3.61039125919342,-4.51558065414429,-4.89787411689758,-5.09266257286072,-5.51495283842087,-6.37049096822739,-7.49857497215271,-8.44594645500183,-8.731773853302,-8.14714503288269,-6.9101847410202,-5.58327853679657,-4.79884082078934,-4.94859535619617,-6.00381790101528,-7.54840770363808,-8.98177671432495,-9.76409721374512,-9.57950139045715,-8.36892032623291,-6.2727689743042,-3.56183326244354,-0.60398842394352,2.15084171295166,4.22469902038574,5.23898530006409,5.08002614974976,4.00616371631622,2.60289001464844,1.56915134191513,1.42257389426231,2.27294236421585,3.78534293174744,5.35119724273682,6.37075543403625,6.49753403663635,5.73264947533607,4.35492622852325,2.762690782547,1.32954287528992,0.332966804504395,-0.0560362339019775,0.225753545761108,1.10669326782227,2.34560036659241,3.54636442661285,4.26424217224121,4.18354675173759,3.28158852458,1.87843471765518,0.5253586769104,-0.223801374435425,-0.0438635349273682,1.04533386230469,2.72864580154419,4.57029438018799,6.21094226837158,7.48728680610657,8.43127751350403,9.17610836029053,9.83776426315308,10.4363340139389,10.8863099813461,11.0460784435272,10.7948523759842,10.1022962331772,9.06398344039917,7.88592612743378,6.81667387485504,6.04655933380127,5.61733269691467,5.39377324283123,5.12727391719818,4.59236192703247,3.72614550590515,2.68517851829529,1.77383351325989,1.27525687217712,1.28342831134796,1.64288920164108,2.03964515496045,2.18950486183167,2.00367683172226,1.62423869967461,1.30839028954506,1.243512570858,1.42180665209889,1.66008710861206,1.74613630771637,1.60183382034302,1.34174656867981,1.18328857421875,1.27646017074585,1.58442687988281,1.91288185119629,2.07637691497803,2.08245754241943,2.18906021118164,2.77129364013672,4.06798267364502,5.97254228591919,8.01838397979736,9.58932593464851,10.2387875318527,9.92590355873108,9.02315950393677,8.09179496765137,7.56313610076904,7.51778602600098,7.68658971786499,7.65593481063843,32767,32767,32767,32767,32767,3.06290984153748,3.14094203710556,3.28568986058235,3.3813225030899,3.44816482067108,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,4.91849291324615,4.58466935157776,3.9401188492775,3.12769469618797,2.38167625665665,1.94950201362371,2.00380523502827,2.57611756026745,3.5337632894516,4.60869711637497,5.47423255443573,5.85046339035034,5.60626065731049,4.81786000728607,3.75425660610199,2.78398546949029,2.23606586456299,2.27133417129517,2.82168745994568,3.62491512298584,4.33915233612061,4.6853551864624,4.55622148513794,4.05048990249634,3.42574596405029,2.99602222442627,3.01614189147949,3.59380626678467,4.65628433227539,5.98249530792236,7.28921365737915,8.34280490875244,9.05165910720825,9.4959397315979,9.87241232395172,10.3723624944687,11.0511099100113,11.7609423398972,12.1941266059875,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,2.05398100614548,2.25301933288574,2.35737663507462,2.1002289056778,1.29552888870239,0.0129246711730957,-1.39119863510132,-2.42162418365479,-2.69689881801605,-2.16344374418259,-1.14464604854584],[0.952274441719055,1.77299708127975,1.84097290039062,1.33311975002289,0.637674570083618,0.139232635498047,0.0232350826263428,0.195874929428101,0.355216979980469,0.171087503433228,-0.525818705558777,-1.65044832229614,-2.9184779599309,-4.01918095350266,-4.80510807037354,-5.38277232646942,-6.04206597805023,-7.05727112293243,-8.47474217414856,-10.0200717449188,-11.1952006816864,-11.5260784626007,-10.8284060955048,-9.34056091308594,-7.64265561103821,-6.39921236038208,-6.05985730886459,-6.67081207036972,-7.88200271129608,-9.12505376338959,-9.85369062423706,-9.72620034217834,-8.66648936271667,-6.81975853443146,-4.46680932492018,-1.95287597179413,0.358610272407532,2.13495546579361,3.1508530639112,3.37816731631756,3.03338699508458,2.52669978141785,2.30597788095474,2.65881967544556,3.57564290612936,4.75358152389526,5.74409288167953,6.16483038663864,5.86240287125111,4.94778954982758,3.70609831809998,2.4522693157196,1.42069840431213,0.734880447387695,0.438894748687744,0.534615039825439,0.981375694274902,1.66296768188477,2.36878967285156,2.83558320999146,2.85225582122803,2.37563037872314,1.58236455917358,0.812397003173828,0.424216270446777,0.638584136962891,1.45687389373779,2.69572496414185,4.1104907989502,5.52969026565552,6.92134714126587,8.35749769210815,9.90479695796967,11.5112180970609,12.9584769010544,13.9131345748901,14.0573048591614,13.2392394542694,11.5717070102692,9.42554366588593,7.3088731020689,5.67450566589832,4.73670315742493,4.38564538955688,4.25097885727882,3.89583742618561,3.05060052871704,1.76290392875671,0.375008583068848,-0.668448686599731,-1.07895731925964,-0.897551000118256,-0.474358379840851,-0.259515404701233,-0.52893278002739,-1.21446615457535,-1.94686442613602,-2.28631234169006,-1.99391140788794,-1.17003500461578,-0.172726392745972,0.624260663986206,1.06706261634827,1.28983974456787,1.57120370864868,2.08417081832886,2.72312021255493,3.14228200912476,2.99419689178467,2.21207237243652,1.13741683959961,0.386746406555176,0.520288467407227,1.7098913192749,3.61321544647217,5.53778147697449,6.8011726140976,7.07577306032181,6.52075690031052,5.63918924331665,4.96296405792236,4.76192903518677,32767,32767,32767,32767,32767,32767,32767,3.06262969970703,3.44810023903847,3.89742743968964,4.20985162258148,4.30237889289856,4.21216905117035,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,5.13220679759979,4.64698481559753,3.90515287220478,3.13485226035118,2.58107191324234,2.41130638122559,2.65081918239594,3.17403817176819,3.75129652023315,4.12805616855621,4.10752725601196,3.61195421218872,2.70849871635437,1.59362959861755,0.538805484771729,-0.191272258758545,-0.42324161529541,-0.13325834274292,0.546361446380615,1.37781047821045,2.10668849945068,2.55319595336914,2.66870498657227,2.53939437866211,2.34198474884033,2.27542591094971,2.49582386016846,3.07380485534668,3.980788230896,5.1032075881958,6.2784538269043,7.34467220306396,8.190673828125,8.78776216506958,9.1870231628418,9.47801494598389,9.72603130340576,9.92012083530426,9.96332204341888,9.71613565087318,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,4.09477996826172,4.5808346606791,4.34733919426799,3.2749291062355,1.50281405448914,-0.54880690574646,-2.29834318161011,-3.22292447090149,-3.07717061042786,-2.00113749504089,-0.461086273193359],[0.0867862701416016,0.912944078445435,1.19342017173767,0.997673273086548,0.51661491394043,-0.0476326942443848,-0.566803932189941,-1.01453351974487,-1.43581414222717,-1.88378262519836,-2.36398339271545,-2.82126933336258,-3.18083271384239,-3.42181766033173,-3.63642621040344,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-8.64772582054138,-7.6191314458847,-6.20977473258972,-4.64159822463989,-3.09773933887482,-1.69511365890503,-0.492244720458984,0.499685525894165,1.3180832862854,2.04938411712646,2.80392718315125,3.65815699100494,4.59050524234772,5.45699656009674,6.0379763841629,6.14313149452209,5.71858835220337,4.89020419120789,3.91165900230408,3.04437375068665,2.43924736976624,2.08842134475708,1.86955642700195,1.64645004272461,1.35784435272217,1.04103183746338,0.785525798797607,0.659666538238525,0.666393756866455,0.757307529449463,0.888119220733643,1.06827354431152,1.36396360397339,1.85092306137085,2.55279779434204,3.41391611099243,4.33204936981201,5.23337173461914,6.1384801864624,7.16791129112244,8.46983695030212,10.1009654216468,11.9257962703705,13.5982136726379,14.653139591217,14.681291103363,13.5139017105103,11.3297238349915,8.62290358543396,6.02962303161621,4.07972681522369,2.98371267318726,2.56072783470154,2.35190138220787,1.87152373790741,0.870724201202393,-0.528596639633179,-1.90907669067383,-2.80698911845684,-2.99594494700432,-2.63667987287045,-2.19620013609529,-2.17536404728889,-2.80383808165789,-3.88853025436401,-4.91317188739777,-5.33330938220024,-4.88771444559097,-3.73503994941711,-2.33417797088623,-1.15046072006226,-0.381001949310303,0.121860504150391,0.683140754699707,1.51236820220947,2.49078750610352,3.19381952285767,3.14826250076294,2.16370677947998,0.520313262939453,-1.12101364135742,-2.04669952392578,-1.86691474914551,-0.717931747436523,0.826565742492676,2.07727718353271,2.59173822402954,2.37169027328491,1.79935503005981,1.37472701072693,1.42441421747208,32767,32767,32767,3.57123972475529,3.56371760368347,3.47486102581024,3.52742576599121,3.81319069862366,4.24091398715973,4.59632037580013,4.66507405042648,4.34249204397202,3.6727542579174,2.80742171406746,1.91730093955994,1.11081063747406,0.400938332080841,-0.266455098986626,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,3.28902888298035,3.69354629516602,3.77506625652313,3.58501243591309,3.26805990934372,3.01413312554359,2.97263127565384,3.17517900466919,3.51120412349701,3.77129888534546,3.73743736743927,3.27578353881836,2.39099144935608,1.22283411026001,-0.00593137741088867,-1.06383895874023,-1.7777271270752,-2.07233285903931,-1.97462272644043,-1.58747053146362,-1.04466676712036,-0.463870048522949,0.085395336151123,0.58836555480957,1.06637573242188,1.54654693603516,2.03868198394775,2.533447265625,3.02081108093262,3.51258277893066,4.04818820953369,4.67369174957275,5.40308475494385,6.18679332733154,6.91201019287109,7.44182968139648,7.67600393295288,7.60011911392212,7.29430770874023,6.89447426795959,6.52554106712341,6.24192833900452,6.00723516941071,5.72202852368355,5.28467786312103,4.65259659290314,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,4.47459216043353,4.31343790888786,3.16605524718761,1.28224837779999,-0.822519779205322,-2.55059480667114,-3.44526696205139,-3.35220503807068,-2.45035576820374,-1.14971327781677],[-1.75203227996826,-1.41612029075623,-1.21776819229126,-1.18346834182739,-1.33413743972778,-1.68278455734253,-2.20819759368896,-2.83045220375061,-3.41341042518616,-3.80132007598877,-3.87548732757568,-3.60617759078741,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-8.71647167205811,-8.46894550323486,-8.42294645309448,32767,32767,32767,32767,-6.15808397531509,-4.82147890329361,-3.56998789310455,-2.56519317626953,-1.81306529045105,-1.1760516166687,-0.44891357421875,0.546407222747803,1.88923215866089,3.53143811225891,5.3076159954071,6.97108745574951,8.24723792076111,8.90110838413239,8.8115314245224,8.02943158149719,6.78822779655457,5.44399833679199,4.35454702377319,3.74365592002869,3.61454749107361,3.75925087928772,3.86365079879761,3.65785980224609,3.03804540634155,2.10351848602295,1.10018014907837,0.30987024307251,-0.0539851188659668,0.101034641265869,0.753199100494385,1.80742359161377,3.13492345809937,4.59287595748901,6.03066730499268,7.30338621139526,8.30597996711731,9.01837205886841,9.5320893228054,10.0281859636307,10.6986796855927,11.637770652771,12.7546892166138,13.7604508399963,14.2521448135376,13.8719246387482,12.4754540920258,10.2292252779007,7.57897764444351,5.08799159526825,3.20952916145325,2.09910088777542,1.56405246257782,1.18487358093262,0.553907752037048,-0.492377758026123,-1.7777087688446,-2.88832439482212,-3.42325836420059,-3.25150589644909,-2.62061715126038,-2.04127252101898,-2.00403726100922,-2.69044804573059,-3.8527227640152,-4.94110429286957,-5.40932548046112,-5.01768088340759,-3.951664686203,-2.68630075454712,-1.68445539474487,-1.1210470199585,-0.808005809783936,-0.365150451660156,0.476810455322266,1.64217472076416,2.70347690582275,3.11606740951538,2.55238008499146,1.12846088409424,-0.620946884155273,-2.00826835632324,-2.54422473907471,-2.17063808441162,-1.24783992767334,-0.318291664123535,0.20393180847168,0.237336158752441,0.0275821685791016,-0.0401883125305176,0.317623138427734,32767,32767,32767,3.9745814204216,4.432204246521,4.70790886878967,4.95560038089752,5.24206781387329,5.49070286750793,5.52101504802704,5.15385019779205,4.31892061233521,3.1053132712841,1.73058987408876,0.447004109621048,-0.565534994006157,-1.26605932414532,-1.74503882229328,-2.14634793996811,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,1.5840015411377,2.06434586644173,2.45193672180176,2.74434864521027,2.98351955413818,3.25730955600739,3.65431720018387,4.19561187922955,4.78815238177776,5.23687651753426,5.31900407373905,4.88734309375286,3.94962054491043,2.68225908279419,1.36994171142578,0.299156188964844,-0.345266819000244,-0.536268711090088,-0.392536163330078,-0.108616828918457,0.139215469360352,0.270177364349365,0.327611923217773,0.448099136352539,0.786190032958984,1.42879152297974,2.34016227722168,3.3659143447876,4.29780673980713,4.97015285491943,5.339599609375,5.50471687316895,5.65080261230469,5.94518184661865,6.43727397918701,7.01914215087891,7.471999168396,7.5781569480896,7.24100828170776,6.54840421676636,5.74342727661133,5.11429142951965,4.85740089416504,4.98325300216675,5.31132519245148,5.55663967132568,5.46426558494568,4.92658424377441,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,1.3605637550354,-0.156614065170288,-1.48928499221802,-2.35037732124329,-2.66217255592346,-2.53365421295166,-2.16629719734192],[-2.78624272346497,-3.21253657341003,-3.32622408866882,-3.20113158226013,-3.02702713012695,-3.01667547225952,-3.28893160820007,-3.7958573102951,-4.33718401193619,-4.65527817606926,-4.55952286720276,-4.01615798473358,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-6.57191634178162,-7.22003769874573,-7.71176087856293,-7.82720267772675,-7.36245965957642,-6.23217511177063,-4.53694939613342,-2.55417990684509,-0.646280288696289,0.877356052398682,1.88275098800659,2.46163177490234,2.88765668869019,3.49968910217285,4.56356763839722,6.16712236404419,8.18304491043091,10.3045125007629,12.1348135471344,13.3011335879564,13.5619153846055,12.8811040222645,11.4476459622383,9.62862455844879,7.86205685138702,6.51893937587738,5.78286612033844,5.59622859954834,5.69915115833282,5.74773502349854,5.46178293228149,4.73842859268188,3.68578338623047,2.56987309455872,1.70797920227051,1.36038017272949,1.66351652145386,2.61867904663086,4.12151718139648,6.00417137145996,8.06853652000427,10.1069455295801,11.920435667038,13.3459949493408,14.2916421890259,14.7636699676514,14.8647541999817,14.7516055107117,14.5622291564941,14.3437123298645,14.0189220905304,13.4171227216721,12.3632755950093,10.7873975038528,8.79762697219849,6.67034149169922,4.74952435493469,3.29686045646667,2.36844515800476,1.79026103019714,1.25715613365173,0.511806726455688,-0.492698431015015,-1.54468834400177,-2.28060391545296,-2.39739254117012,-1.85243964195251,-0.928110837936401,-0.109521627426147,0.16678786277771,-0.247279644012451,-1.12583804130554,-1.99499344825745,-2.40217328071594,-2.1712634563446,-1.49059104919434,-0.780124187469482,-0.419381141662598,-0.504602909088135,-0.787334442138672,-0.834558725357056,-0.312871932983398,0.779574632644653,2.07830858230591,3.03994202613831,3.24121522903442,2.61336469650269,1.47669410705566,0.361891269683838,-0.271100997924805,-0.252985954284668,0.253098487854004,0.893640518188477,1.35036849975586,1.51236248016357,1.50400543212891,1.57255983352661,1.92008781433105,32767,32767,32767,4.9327404499054,5.37426245212555,5.6669477969408,5.90481221675873,6.1172661781311,6.22700595855713,6.08235454559326,5.54486322402954,4.58253192901611,3.31614995002747,1.99115598201752,0.884478390216827,0.189492344856262,-0.0656325817108154,-0.0234251022338867,0.080819845199585,0.0462105274200439,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,2.41126903891563,2.50494319200516,2.71534964442253,3.04426139593124,3.50013411045074,4.10442364215851,4.86121195554733,5.7113436460495,6.50930017232895,7.05171322822571,7.15514600276947,6.74784362316132,5.92512309551239,4.93301498889923,4.08011274039745,3.61471620202065,3.62346935272217,3.99808502197266,4.48650443553925,4.8059361577034,4.76884979009628,4.36730879545212,3.77932453155518,3.29344630241394,3.18325257301331,3.58521914482117,4.43450951576233,5.48953175544739,6.43732070922852,7.03351402282715,7.21136999130249,7.1059193611145,6.9785418510437,7.07709741592407,7.50125074386597,8.14343023300171,8.73900079727173,9.00296258926392,8.7840633392334,8.15529894828796,7.39119863510132,6.83984279632568,6.7519251704216,7.15319004654884,7.82374930381775,8.39523673057556,8.51775860786438,8.01650500297546,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,2.16872358322144,1.58462941646576,0.91624903678894,0.217987060546875,-0.520535230636597,-1.31202340126038,-2.10758233070374],[-2.27021813392639,-3.37398266792297,-3.85527110099792,-3.78333139419556,-3.43546712398529,-3.15449152886868,-3.17971381545067,-3.54094624519348,-4.06718397140503,-4.49628841876984,-4.61838245391846,-4.3738317489624,32767,-3.25638574361801,-2.72045242786407,-2.3162549585104,32767,32767,32767,32767,-0.937489427626133,-1.05259793996811,-1.56634593009949,-2.48291766643524,-3.66309118270874,-4.83740520477295,-5.66639852523804,-5.83326292037964,-5.14251518249512,-3.5916223526001,-1.38607740402222,1.11516904830933,3.51104640960693,5.4881854057312,6.91984272003174,7.89408230781555,8.66034960746765,9.51696610450745,10.685546040535,12.2204745411873,13.9839458465576,15.6896146535873,16.9940106868744,17.6023318767548,17.3559758663177,16.2784106731415,14.5686033964157,12.5449855327606,10.5557040572166,8.88190239667892,7.66540515422821,6.88602780923247,6.39691200852394,6.00316029787064,5.55082750320435,4.98941469192505,4.38455605506897,3.8816614151001,3.64368450641632,3.79461634159088,4.39188814163208,5.43103814125061,6.86788487434387,8.63674247264862,10.6510164439678,12.7888783216476,14.879894733429,16.7117486000061,18.0650682449341,18.7677998542786,18.7461981773376,18.0474967956543,16.8210301399231,15.264467716217,13.5599769353867,11.830570936203,10.1358106136322,8.50338649749756,6.97149801254272,5.60918617248535,4.49594974517822,3.66994619369507,3.08033561706543,2.58485507965088,2.0105082988739,1.2545530796051,0.368703126907349,-0.432877659797668,-0.864403128623962,-0.721183896064758,-0.0123744010925293,1.00918197631836,1.95044207572937,2.46819949150085,2.44186878204346,2.02706408500671,1.55337142944336,1.32182121276855,1.42124271392822,1.67612648010254,1.76173079013824,1.42053055763245,0.648925542831421,-0.262851715087891,-0.868573904037476,-0.806108236312866,-0.00128841400146484,1.282381772995,2.57638239860535,3.44503557682037,3.69432401657104,3.44002866744995,3.00942039489746,2.74530506134033,2.8291220664978,3.21630144119263,3.70350742340088,4.07028388977051,4.20407867431641,4.14088535308838,4.01320838928223,3.95282936096191,32767,32767,32767,4.44123387336731,4.52726626396179,4.64073348045349,4.83532601594925,5.10237942636013,5.34993743896484,32767,32767,32767,4.01159113645554,3.30888718366623,2.85905602574348,2.82389116287231,3.20418179035187,3.82538819313049,4.40383937954903,4.66869040392339,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,4.80368769168854,4.32016861438751,3.91801655292511,3.69439876079559,3.674445271492,3.84025347232819,4.16908699274063,4.65009209513664,5.26829117536545,5.97208503633738,6.65536233782768,7.17820119857788,7.42482709884644,7.37022829055786,7.11506414413452,6.86152696609497,6.83275699615479,7.16969561576843,7.85432171821594,8.69832563400269,9.40787506103516,9.69936347007751,9.4183361530304,8.61006927490234,7.51027190685272,6.45705389976501,5.75924944877625,5.5755350291729,5.85649251937866,6.37624834105372,6.84167262166739,7.03118962049484,6.89923977851868,6.59570515155792,6.38892579078674,6.52770113945007,7.11009240150452,8.02590084075928,9.00460648536682,9.74691605567932,10.0739259719849,10.0169484615326,9.80007183551788,9.72231301665306,9.99828463792801,10.6386578083038,11.4312515258789,12.0327272415161,12.1250991821289,11.560863494873,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,1.89755749702454,2.30070829391479,2.75145792961121,3.18084001541138,3.49774074554443,3.5598361492157,3.19944787025452,2.30657076835632,0.922441482543945,-0.722776174545288],[-1.20422196388245,-2.61917209625244,-3.33975005149841,-3.39909368753433,-3.07203137874603,-2.72730812430382,-2.65206173062325,-2.93860793113708,-3.48323780298233,-4.08157300949097,-4.55418083816767,-4.82791897654533,-4.9340912103653,-4.93926119804382,-4.86411833763123,-4.64798641204834,-4.18324542045593,-3.39813730120659,-2.33619838953018,32767,-0.21627402305603,0.289319515228271,0.17744779586792,-0.522106170654297,-1.588463306427,-2.67021036148071,-3.38618469238281,-3.43130874633789,-2.6553373336792,-1.09384155273438,1.05414390563965,3.49259185791016,5.91760063171387,8.1006817817688,9.93956184387207,11.4605860710144,12.7750180959702,14.0088791549206,15.2356669306755,16.438299536705,17.5122444629669,18.3038516044617,18.6646447181702,18.4990296363831,17.7896666526794,16.5963277816772,15.0344190597534,13.2447295188904,11.3655292987823,9.51455330848694,7.78357720375061,6.24347722530365,32767,3.973527722992,3.35427477955818,3.1340289413929,3.31570342928171,3.85302066802979,4.65151417255402,5.59142529964447,6.56786251068115,7.53238719701767,8.51507329940796,9.61125436425209,10.9314658045769,12.5311861038208,14.3492369651794,16.1850295066833,17.731143951416,18.6558442115784,18.707537651062,17.8016333580017,16.0550065040588,13.753623008728,11.2663929462433,8.94006016850471,7.01547825336456,5.59260392189026,4.64677834510803,4.07564973831177,3.74778127670288,3.53281021118164,3.31251931190491,2.98780274391174,2.49687743186951,1.84483170509338,1.12542724609375,0.50913667678833,0.185356140136719,0.276721119880676,0.768278360366821,1.49682533740997,2.21672463417053,2.71416580677032,2.90815359354019,2.87776866555214,2.79543069750071,2.802590072155,2.90301668643951,2.94348752498627,2.70124197006226,2.03230637311935,0.99289558827877,-0.143121242523193,-0.99009969830513,-1.2276247292757,-0.753507256507874,0.27000617980957,1.4999038875103,2.57765281200409,3.28589189052582,3.61746215820312,3.73141825199127,3.83374816179276,4.05612397193909,4.3964746594429,4.74221909046173,4.94813740253448,4.91629981994629,4.63483214378357,4.16440081596375,3.59409117698669,32767,32767,1.93801474571228,1.55585861206055,1.35286545753479,1.38961362838745,1.68938636779785,2.20965719223022,2.84003567695618,32767,32767,32767,32767,32767,4.45113182067871,4.95610046386719,5.7296826839447,6.61553561687469,7.35587334632874,7.6871645450592,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,5.42469501495361,4.90084624290466,4.35509729385376,3.91992121934891,3.65027041733265,3.52745558321476,3.49838334321976,3.52217853069305,3.59526598453522,3.74266767501831,3.98695945739746,4.32022488117218,4.70141404867172,5.08330190181732,5.4519008398056,5.8505927324295,6.36853718757629,7.09294462203979,8.04698657989502,9.14604234695435,10.1987006664276,10.9589893817902,11.2111694812775,10.8531639575958,9.94222211837769,8.68166303634644,7.35115456581116,6.20738196372986,5.395188331604,4.90685391426086,4.60766434669495,4.31761789321899,3.91291606426239,3.39984834194183,2.92406199127436,2.7083597779274,2.94635415077209,3.70380508899689,4.87727212905884,6.2332227230072,7.51003932952881,8.53192591667175,9.27727138996124,9.8661190867424,10.473824813962,11.2170703411102,12.0725812911987,12.8719534873962,13.3753447532654,13.3855085372925,12.8438158035278,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,1.4681601524353,1.75939416885376,2.34736013412476,3.16062164306641,4.0130181312561,4.61616277694702,4.66248464584351,3.9559543132782,2.5261914730072,0.656782627105713],[-1.25124788284302,32767,32767,32767,32767,32767,32767,32767,-3.47758388519287,-4.01750707626343,-4.55950379371643,-5.06092944741249,-5.52883064746857,-5.96011877059937,-6.28709077835083,-6.3734757900238,-6.07192802429199,-5.31271154433489,-4.17092072963715,-2.86911082267761,-1.70694446563721,-0.948624610900879,-0.720380783081055,-0.963759422302246,-1.46177673339844,-1.92105674743652,-2.07122325897217,-1.74144268035889,-0.890275001525879,0.412284851074219,2.03325366973877,3.83108711242676,5.69511032104492,7.55904579162598,9.3894829750061,11.1591062545776,12.8195974230766,14.2882426977158,15.4564206600189,16.2185204029083,16.5096640586853,16.3347105979919,15.7729969024658,14.9528594017029,14.0041146278381,13.008111000061,11.96821641922,10.8162503242493,9.4551362991333,7.82197904586792,32767,32767,32767,0.788314312696457,0.111661553382874,0.254999577999115,1.17499095201492,2.66150657832623,4.39219003915787,6.02363336086273,7.29109454154968,8.08469796180725,8.47588562965393,8.68299055099487,8.98455846309662,9.60778820514679,10.6300954818726,11.9304928779602,13.2121014595032,14.0925874710083,14.2331738471985,13.4600615501404,11.8324010372162,9.62987279891968,7.26421022415161,5.14923617243767,3.57968205213547,2.66298711299896,2.32305908203125,2.36328744888306,2.5538067817688,2.70466017723083,2.70187020301819,2.50653386116028,2.13422441482544,1.63405859470367,1.0764080286026,0.54484760761261,0.12236225605011,-0.131233751773834,-0.202010691165924,-0.128546953201294,0.0174186229705811,0.169812232255936,0.304084792733192,0.445035852491856,0.637204557657242,0.893498778343201,1.15594094991684,1.30019551515579,1.1906555891037,0.760770082473755,0.0724969506263733,-0.684122532606125,-1.25914254039526,-1.44786964356899,-1.17976680397987,-0.545201361179352,0.252278685569763,0.991132199764252,1.52387142181396,1.82136589288712,1.95382678508759,2.02766561508179,2.11747765541077,2.22840285301208,2.30221247673035,2.25495956838131,2.02050632238388,1.57772627472878,0.953595697879791,0.209711670875549,-0.574614763259888,-1.31322574615479,-1.91805100440979,-2.30390810966492,-2.39982485771179,-2.16650938987732,-1.61377906799316,-0.808139801025391,32767,32767,32767,32767,32767,32767,32767,32767,5.05789768695831,5.69177937507629,6.17603349685669,6.3304238319397,6.02942609786987,5.25386989116669,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,2.1942743062973,1.88051450252533,1.63872444629669,1.52459526062012,1.5176682472229,1.54029560089111,1.50467419624329,1.36260318756104,1.13245272636414,0.891413450241089,0.740779876708984,0.764824151992798,1.00477993488312,1.45791637897491,2.09588956832886,2.88638240098953,3.80276130884886,4.81598582863808,5.87564468383789,6.89461302757263,7.75068795681,8.30964922904968,8.46239125728607,8.16146230697632,7.4406201839447,6.40768122673035,5.21164298057556,3.99612700939178,2.85750240087509,1.82549601793289,0.875043392181396,-0.0350806713104248,-0.914573431015015,-1.70855909585953,-2.29816579818726,-2.53770756721497,-2.3138815164566,-1.59840233623981,-0.467781782150269,0.92170786857605,2.39284825325012,3.81033611297607,5.11671924591064,6.32359254360199,7.46555507183075,8.54568117856979,9.50499182939529,10.235409617424,10.6296052932739,10.6389873027802,10.3057363033295,9.74866342544556,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.249028205871582,0.272578239440918,0.60679817199707,1.26797294616699,2.11503219604492,2.86588096618652,3.19114828109741,2.85362339019775,1.8271598815918,0.330381393432617],[-2.91571450233459,-3.69107142090797,32767,32767,32767,32767,32767,32767,-4.04567074775696,-4.18434691429138,-4.34626817703247,32767,32767,32767,-5.76879715919495,-6.12214493751526,-6.21936404705048,-5.98172950744629,-5.4497789144516,-4.77279281616211,-4.14100027084351,-3.69517946243286,-3.4609317779541,-3.34110641479492,-3.16832733154297,-2.78842163085938,-2.13139915466309,-1.23577499389648,-0.217727661132812,0.795547485351562,1.73298168182373,2.61433219909668,3.53676557540894,4.62057638168335,5.93902134895325,7.4631814956665,9.04618182778358,10.4553239345551,11.4423444271088,11.8273859024048,11.5657153129578,10.7708826065063,9.6823525428772,8.58573031425476,7.71261394023895,7.15703189373016,6.84184597432613,6.55117309093475,6.01978492736816,5.04758262634277,3.59592127799988,32767,32767,-1.26044225692749,-1.83082318305969,-1.45865702629089,-0.196443796157837,1.68421864509583,3.77075791358948,5.62831735610962,6.92097267508507,7.49892234802246,7.42671847343445,6.9461362361908,6.38642930984497,6.05025410652161,6.11106276512146,6.55523288249969,7.18927979469299,7.71142554283142,7.82400393486023,7.34649968147278,6.28655743598938,4.84064149856567,3.32345461845398,2.05443149805069,1.24766612052917,0.949451833963394,1.04546569287777,1.32796790450811,1.58772981131915,1.68798318505287,1.59128472208977,1.33660626411438,0.988583266735077,0.590697705745697,0.146282553672791,-0.368198409676552,-0.97188401222229,-1.6517368555069,-2.35407787561417,-2.99746817350388,-3.49729925394058,-3.78901797533035,-3.84172111749649,-3.66168421506882,-3.28975801169872,-2.7954935580492,-2.26699522137642,-1.79381054639816,-1.44382405281067,-1.24137654900551,-1.15811631083488,-1.12477499246597,-1.06232562661171,-0.919382631778717,-0.697637140750885,-0.451872229576111,-0.264488697052002,-0.207677006721497,-0.312772870063782,-0.561152696609497,-0.898823261260986,-1.2643301486969,-1.6144323348999,-1.93581748008728,-2.24050402641296,-2.5511417388916,-2.88554745912552,-3.24689021706581,-3.62085103988647,-3.97721707820892,-4.27344223856926,-4.45956027507782,-4.48568880558014,-4.31234073638916,-3.92189931869507,-3.32708096504211,-2.57294845581055,-1.73094940185547,-0.886716365814209,32767,32767,32767,32767,32767,32767,32767,32767,1.2776859998703,1.24993112683296,1.12192386388779,0.848778069019318,0.428737282752991,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-2.15190839767456,-2.27362704277039,-2.25923991203308,-2.07206273078918,-1.73240685462952,-1.31966853141785,-0.946783304214478,-0.716287851333618,-0.677692532539368,-0.805425763130188,-1.00707739591599,-1.15716245770454,-1.14114266633987,-0.891455829143524,-0.403269648551941,0.272046446800232,1.04867446422577,1.83257710933685,2.54268360137939,3.12220621109009,3.54012095928192,3.78576153516769,3.86018627882004,3.76780897378922,3.510946393013,3.08877849578857,2.5004299134016,1.75062173604965,0.855069071054459,-0.156864166259766,-1.24264180660248,-2.34933292865753,-3.41646730899811,-4.3781670331955,-5.16576397418976,-5.71327505260706,-5.96657046675682,-5.89468240737915,-5.49779498577118,-4.80762362480164,-3.87835931777954,-2.77237835526466,-1.54913532733917,-0.263067483901978,1.02859592437744,2.2557635307312,3.33489191532135,4.18454647064209,4.75407230854034,5.0509712100029,5.14807632565498,5.15925254672766,5.18875747919083,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-1.51145505905151,-1.86028671264648,-2.05540370941162,-1.9629487991333,-1.59430027008057,-1.11232566833496,-0.764593124389648,-0.77006721496582,-1.21396064758301,-2.00462913513184],[-4.82761716842651,-4.97292423248291,-5.05630874633789,-5.05979752540588,32767,32767,32767,32767,-4.36983716487885,-4.00467908382416,-3.60524809360504,-3.28463590145111,-3.15959316492081,-3.2938232421875,-3.6652272939682,-4.1774160861969,-4.7092287838459,-5.1726616024971,-5.54421842098236,-5.85089874267578,-6.12024402618408,-6.32692098617554,-6.37213468551636,-6.11414861679077,-5.43843936920166,-4.33163928985596,-2.91810274124146,-1.43498992919922,-0.151815891265869,0.731762409210205,1.16486024856567,1.26568365097046,1.27352237701416,1.45172572135925,1.9806717634201,2.88272289931774,4.00772190093994,5.0840163230896,5.81578946113586,5.99121081829071,5.56217509508133,4.66662341356277,3.58434534072876,2.64085388183594,2.09304428100586,2.03803968429565,2.37948560714722,2.86521244049072,3.18369245529175,3.08420467376709,2.47600650787354,32767,32767,-0.54390811920166,-0.881183624267578,-0.499292850494385,0.572533130645752,2.11964797973633,3.80987191200256,5.29109871387482,6.28632372617722,6.65913105010986,6.43458199501038,5.77465313673019,4.91915488243103,4.11058104038239,3.5244551897049,3.22474789619446,3.15779723413289,3.1865651011467,3.1537504196167,2.9502460360527,2.56154298782349,2.07181394100189,1.62277859449387,1.34507364034653,1.29387038946152,1.41982084512711,1.59015476703644,1.65005970001221,1.49391886591911,1.11063700914383,0.580357015132904,0.025216281414032,-0.459423959255219,-0.85693171620369,-1.23751804232597,-1.71873980760574,-2.39924396947026,-3.29954132437706,-4.33885550498962,-5.35816478729248,-6.17674911022186,-6.65512228012085,-6.7368677854538,-6.45450484752655,-5.90220189094543,-5.19207191467285,-4.4148405790329,-3.62027406692505,-2.82144916057587,-2.01627939939499,-1.21333499625325,-0.449246942996979,0.2098348736763,0.682913482189178,0.89815616607666,0.816053628921509,0.442067623138428,-0.175915241241455,-0.963397860527039,-1.84067004919052,-2.74025791883469,-3.61374789476395,-4.42751127481461,-5.15254330635071,-5.75620576739311,-6.20118415355682,-6.45187151432037,-6.48365449905396,-6.28934741020203,-5.87982618063688,-5.28018867969513,-4.52567458152771,-3.66041898727417,-2.73900699615479,-1.82684469223022,-0.995632648468018,-0.313003063201904,0.170152187347412,0.428530216217041,32767,32767,32767,32767,32767,32767,32767,32767,-3.56048506498337,-4.01561760902405,-4.33397817611694,-4.48055133223534,-4.41821810603142,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-4.5033283829689,-4.4747359752655,-4.21040201187134,-3.72571074962616,-3.07227098941803,-2.33354949951172,-1.60672891139984,-0.975513696670532,-0.484743863344193,-0.127458192640916,0.149434268474579,0.422607064247131,0.761313259601593,1.19918464869261,1.71862012147903,2.25283509492874,2.70457741618156,2.97581443190575,2.99922877550125,2.76153421401978,2.31059348583221,1.74257934093475,1.17175304889679,0.69269597530365,0.348171591758728,0.115659356117249,-0.0817071199417114,-0.342963196337223,-0.748772978782654,-1.32905256748199,-2.05131947994232,-2.83407950401306,-3.57793068885803,-4.20048129558563,-4.66056180000305,-4.96271002292633,-5.14216196537018,-5.23872685432434,-5.27146303653717,-5.22560673952103,-5.05704575777054,-4.71313322708011,-4.16194278001785,-3.41773527860641,-2.55096960067749,-1.67549733817577,-0.913800716400146,-0.351457476615906,0.000648975372314453,0.217809200286865,0.435749530792236,0.79254150390625,1.35962975025177,2.09218972921371,2.8252946138382,3.32465374469757,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-2.79173040390015,-3.49884080886841,-4.24256658554077,-4.81065320968628,-5.08526468276978,-5.07727861404419,-4.90289258956909,-4.71622896194458,-4.63335800170898,-4.68646669387817],[-4.93891644477844,-4.55077028274536,-4.29245808720589,-4.17538145184517,32767,32767,32767,32767,-3.78269279003143,-3.24577975273132,-2.60409259796143,-2.00987434387207,-1.62037578225136,-1.5433716326952,-1.80732661485672,-2.36837184429169,-3.14510214328766,-4.05664396286011,-5.03925251960754,-6.03216552734375,-6.94539761543274,-7.63692021369934,-7.92444515228271,-7.63842391967773,-6.69750881195068,-5.17043399810791,-3.28919315338135,-1.39817428588867,0.146973133087158,1.09287691116333,1.3693163394928,1.10514795780182,0.573423404246569,0.0880382359027863,-0.108053922653198,0.0780894756317139,0.56959867477417,1.16259145736694,1.61239957809448,1.73007726669312,1.45431709289551,0.874404907226562,0.197636127471924,-0.325623989105225,-0.491508483886719,-0.214286327362061,0.445661067962646,1.30695772171021,2.13504552841187,2.72644805908203,2.97760057449341,2.91361045837402,2.66885137557983,2.43038749694824,2.36865520477295,2.58197164535522,3.07289552688599,3.75939702987671,4.51024210453033,5.18731665611267,5.67950211465359,5.92069789394736,5.89282192289829,5.61942429840565,5.15544533729553,4.57558238506317,3.96162116527557,3.38892209529877,2.91488426923752,2.57316856086254,2.37631326913834,2.32442373037338,2.41317188739777,2.63348865509033,2.96020215749741,3.33551640808582,3.66023802757263,3.80533540248871,3.64736898988485,3.11693260073662,2.23793870210648,1.13484847545624,-0.00278401374816895,-0.988265872001648,-1.71030604839325,-2.17631578445435,-2.50428664684296,-2.86458951234818,-3.39721119403839,-4.14242032170296,-5.01670400798321,-5.84447604417801,-6.4294753074646,-6.63209080696106,-6.41757392883301,-5.85591459274292,-5.07782745361328,-4.21180605888367,-3.33365988731384,-2.45164054632187,-1.53073146939278,-0.540613979101181,0.49931263923645,1.50123724341393,2.32615593075752,2.82878640294075,2.90897998213768,2.54630183428526,1.80335243791342,0.798628568649292,-0.336330980062485,-1.49507316946983,-2.61341559886932,-3.66144049167633,-4.61901426315308,-5.4506471157074,-6.09426689147949,-6.46947765350342,-6.50034511089325,-6.14095067977905,-5.39214479923248,-4.30433893203735,-2.96837043762207,-1.50148010253906,-0.0338501930236816,1.30207538604736,2.38268566131592,3.10694742202759,3.4125189781189,3.28907823562622,2.78165006637573,1.97977256774902,32767,32767,32767,32767,32767,32767,32767,-5.36867615580559,-5.87538951635361,-6.16263246536255,-6.15327155590057,-5.77253550291061,-4.97196805477142,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-2.4943640306592,-2.13114714622498,-1.60108458995819,-0.932386338710785,-0.154836297035217,0.699506819248199,1.59768222272396,2.5088484287262,3.4075014591217,4.27451586723328,5.09433841705322,5.84874093532562,6.50875043869019,7.02854537963867,7.34569835662842,7.39080548286438,7.10680508613586,6.47334861755371,5.52758181095123,4.371178150177,3.15634268522263,2.05083398520947,1.1922397762537,0.647265046834946,0.393307983875275,0.331031166017056,0.325079500675201,0.256953239440918,0.0682449340820312,-0.22331690788269,-0.541791915893555,-0.79556131362915,-0.925043821334839,-0.933992385864258,-0.890100479125977,-0.895173072814941,-1.03819847106934,-1.35218858718872,-1.7940411567688,-2.25636529922485,-2.60721826553345,-2.7412703037262,-2.62135457992554,-2.29236483573914,-1.86072647571564,-1.44668221473694,-1.12852567434311,-0.903461247682571,-0.683706127107143,-0.333427131175995,0.265914559364319,1.14846765995026,2.22517409920692,3.29404252767563,4.10081875324249,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-2.94191932678223,-3.80275201797485,-4.80044555664062,-5.72464036941528,-6.39692735671997,-6.72066354751587,-6.6954493522644,-6.39659595489502,-5.9351487159729,-5.42040205001831],[-2.55006694793701,-1.88463950157166,-1.47619605064392,-1.36822557449341,-1.53213286399841,-1.87119245529175,-2.24611902236938,-2.5181999206543,-2.59622406959534,-2.46849083900452,-2.20536375045776,-1.93045973777771,-1.77341198921204,-1.82594203948975,-2.12036800384521,-2.63657426834106,-3.32741069793701,-4.14271402359009,-5.03490972518921,-5.94269680976868,-6.76600003242493,-7.35451865196228,-7.52777004241943,-7.12802958488464,-6.08770847320557,-4.48052191734314,-2.5287971496582,-0.556565523147583,1.09837293624878,2.18169637024403,2.59292531013489,2.4036779999733,1.8196397125721,1.10356342792511,0.489423513412476,0.117928981781006,0.0123665332794189,32767,32767,0.342352867126465,0.319748878479004,0.187290668487549,0.017554759979248,-0.0844097137451172,-0.0210866928100586,0.264307975769043,0.77250337600708,1.45389890670776,2.22991514205933,3.0189197063446,32767,4.39486622810364,4.90971493721008,5.27782893180847,5.4798184633255,5.50615912675858,5.37243154644966,5.13235038518906,4.8769406080246,4.7139927148819,4.73235750198364,4.96523332595825,5.36987614631653,5.83557569980621,6.21962189674377,6.3980917930603,6.31138682365417,5.98646473884583,5.52807378768921,5.08377683162689,4.79709136486053,4.76488983631134,5.01059019565582,5.47712004184723,6.03759860992432,6.51951146125793,6.73873400688171,6.53983902931213,5.83695256710052,4.64500579237938,3.08876591920853,1.38011789321899,-0.235903024673462,-1.55154967308044,-2.45850944519043,-2.97568416595459,-3.22885513305664,-3.38854944705963,-3.59173512458801,-3.88157713413239,-4.19197133183479,-4.38327378034592,-4.3115593791008,-3.89830529689789,-3.16770321130753,-2.23538422584534,-1.25587806105614,-0.356258153915405,0.411330044269562,1.07578675448895,1.71108470857143,2.37805259227753,3.07466638088226,3.72010743618011,4.18056619167328,4.32380723953247,4.07584065198898,3.45279079675674,2.55412554740906,1.5224024951458,0.49054329097271,-0.458159238100052,-1.29999580979347,-2.04964461922646,-2.72213269770145,-3.29922208189964,-3.71756887435913,-3.88362789154053,-3.70685660839081,-3.13511300086975,-2.17711400985718,-0.905224800109863,0.558822631835938,2.06604623794556,3.46203851699829,4.60376596450806,5.37326526641846,5.69046235084534,5.52599787712097,4.91046833992004,3.93409419059753,2.73258543014526,1.46066546440125,0.260217428207397,-0.766983509063721,32767,32767,32767,32767,-3.09188142418861,-3.24621480703354,-3.307976603508,-3.2077850997448,-2.85211113095284,-2.15431151539087,-1.07376825809479,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,2.38152849674225,2.74677920341492,3.13170957565308,3.55994141101837,4.08033549785614,4.74479830265045,5.58416175842285,6.59092950820923,7.71514630317688,8.87387466430664,9.96937227249146,10.9087438583374,11.6171975135803,12.0420203208923,12.1493010520935,11.919421672821,11.3478393554688,10.4533267021179,9.29018306732178,7.95574569702148,6.58425164222717,5.32309699058533,4.29727721214294,3.57441627979279,3.1461888551712,2.93605268001556,2.8326250910759,2.73576512932777,2.59559071063995,2.42750579118729,2.29572033882141,2.27333569526672,2.39712858200073,2.63830637931824,2.90387010574341,3.06880211830139,3.02596044540405,2.73205327987671,2.22976541519165,1.63622808456421,1.101975440979,0.757687091827393,0.670007228851318,0.824894428253174,1.14436817169189,1.52887916564941,1.90660071372986,2.26734137535095,2.66561740636826,3.19021129608154,3.91274464130402,4.83778834342957,5.87779307365417,6.86636519432068,7.6076672077179,7.94234681129456,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-2.09239721298218,-2.56301069259644,-3.20879697799683,-3.95787572860718,-4.67896032333374,-5.22332906723022,-5.4706244468689,-5.3621973991394,-4.9136278629303,-4.20701885223389,-3.37021446228027],[0.810779094696045,1.45672655105591,1.78253793716431,1.72960138320923,1.31251525878906,0.615089416503906,-0.234819889068604,-1.10417699813843,-1.89335680007935,-2.55938673019409,-3.11491203308105,-3.60485506057739,-4.07332134246826,-4.53761148452759,-4.98178005218506,-5.3708815574646,-5.67525863647461,-5.88842535018921,-6.02604150772095,-6.10500621795654,-6.11453199386597,-5.9975471496582,-5.65714359283447,-4.99024629592896,-3.93599987030029,-2.51738142967224,-0.85586953163147,0.849535703659058,2.37232804298401,3.51866507530212,32767,32767,32767,32767,32767,32767,32767,32767,1.12804663181305,1.10622763633728,1.1999876499176,1.3514678478241,1.50151252746582,1.60293483734131,1.63408088684082,1.60924291610718,1.58124709129333,1.63236570358276,1.85259890556335,2.3088481426239,3.0132372379303,3.90194582939148,4.83547580242157,5.6260996684432,6.08921110630035,6.10488367080688,5.66866111755371,4.91056501865387,4.06999704241753,3.42974716424942,3.22894632816315,3.58499962091446,4.4536354765296,5.64303374290466,6.87774443626404,7.88911366462708,8.49905610084534,8.66790509223938,8.4918429851532,8.15511918067932,7.85792946815491,7.74680685997009,7.86956310272217,8.16518783569336,8.48638153076172,8.64379262924194,8.45804381370544,7.80705308914185,6.6592732667923,5.08630940318108,3.25132995843887,1.37390041351318,-0.322063446044922,-1.6632776260376,-2.56781578063965,-3.05598664283752,-3.22605967521667,-3.20332860946655,-3.08325505256653,-2.89323878288269,-2.59017431735992,-2.09466964006424,-1.34540897607803,-0.347005724906921,0.812794715166092,1.9856544137001,3.01501995325089,3.79317057132721,4.2956930398941,4.57711684703827,4.73092794418335,4.83455467224121,4.90724205970764,4.9015839099884,4.73231327533722,4.32694959640503,3.67226094007492,2.83285829424858,1.93266677856445,1.10849978774786,0.458749605342746,0.0116910040378571,-0.272420883178711,-0.468332171440125,-0.639544725418091,-0.801756381988525,-0.912791728973389,-0.892017126083374,-0.658091306686401,-0.166730165481567,0.567746877670288,1.47367787361145,2.44187545776367,3.3525595664978,4.09849166870117,4.59814381599426,4.80036807060242,4.68523281812668,4.26539093255997,3.58856838941574,2.7377555668354,1.82452429831028,0.973655186593533,0.300983257591724,-0.109841726720333,-0.224854269996285,32767,32767,32767,1.18114033341408,1.51166749000549,1.69861900806427,1.76848840713501,1.80771070718765,1.93570858240128,2.26068514585495,2.83199667930603,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,6.73731064796448,7.11546015739441,7.34171676635742,7.47897386550903,7.63363289833069,7.91910910606384,8.41564536094666,9.14095044136047,10.0424683094025,11.0132968425751,11.9245753288269,12.6617765426636,13.1506276130676,13.3649997711182,13.3168778419495,13.0367317199707,12.555920124054,11.8996167182922,11.0923414230347,10.1698713302612,9.18761420249939,8.21702265739441,7.32923889160156,6.57249069213867,5.95490193367004,5.44319581985474,4.97998714447021,4.51321852207184,4.02398812770844,3.53927165269852,3.12182773649693,2.84147480130196,2.74025344848633,2.80785322189331,2.97968339920044,3.15940570831299,3.25699520111084,3.22603845596313,3.08434772491455,2.90903759002686,2.80819463729858,2.88135147094727,3.18453311920166,3.71426391601562,4.41516876220703,5.20672416687012,6.01604127883911,6.8022985458374,7.56231957674026,8.3159684240818,9.0794929265976,9.83993029594421,10.5438747406006,11.1067204475403,11.4393606185913,11.4801592826843,11.218297958374,32767,9.99380588531494,9.19098615646362,8.34210789203644,7.45819294452667,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-2.93155956268311,-3.05961132049561,-3.13188147544861,-3.18486547470093,-3.20341062545776,-3.13175463676453,-2.90018248558044,-2.45648813247681,-1.79162502288818,-0.952628135681152,-0.039860725402832],[2.60751295089722,3.01323080062866,3.10885763168335,2.84753704071045,2.23101615905762,1.30944728851318,0.166304588317871,-1.1054105758667,-2.42538547515869,-3.73699283599854,-5.00271224975586,-6.18792343139648,-7.24326705932617,-8.09732341766357,-8.66631412506104,-8.87850761413574,-8.702467918396,-8.16502332687378,-7.34872722625732,-6.36797285079956,-5.33309316635132,-4.3174467086792,-3.34114360809326,-2.37714815139771,-1.37557458877563,-0.294778347015381,0.873658657073975,2.09441733360291,3.29378747940063,4.37605565786362,32767,32767,32767,5.9281530380249,5.50088250637054,4.85376214981079,4.1115962266922,3.41392123699188,2.88381135463715,2.59463560581207,2.5459009706974,2.65885162353516,2.79724299907684,2.81007266044617,2.58422827720642,2.08977866172791,1.40110373497009,0.68386173248291,0.14865517616272,-0.0160653591156006,0.289144277572632,1.031134724617,2.04131942987442,3.05868902802467,3.8083530664444,4.09175980091095,3.85814279317856,3.23087191581726,2.47630929946899,1.92273926734924,1.85560965538025,2.42491507530212,3.59732270240784,5.16957759857178,6.83720123022795,8.29258000850677,9.31643772125244,9.83168649673462,9.90417218208313,9.69598436355591,9.39331483840942,9.13743138313293,8.98194622993469,8.8866868019104,8.74399065971375,8.42333173751831,7.81725645065308,6.87524008750916,5.61855453252792,4.1356201171875,2.56158137321472,1.04823541641235,-0.268543481826782,-1.2957136631012,-1.99723505973816,-2.39058041572571,-2.52654051780701,-2.4596164226532,-2.22128701210022,-1.80837488174438,-1.19301807880402,-0.350516438484192,0.707811772823334,1.91366919875145,3.14539313316345,4.25718581676483,5.12275433540344,5.67385149002075,5.91574025154114,5.91219568252563,5.74734592437744,5.48321342468262,5.1340446472168,4.67018723487854,4.0491988658905,3.2576744556427,2.34142202138901,1.40698024630547,0.591617941856384,0.0147557258605957,-0.266624093055725,-0.277657091617584,-0.111328035593033,0.11280308291316,0.29745215177536,0.402002334594726,0.44831371307373,0.497848868370056,0.613449811935425,0.824697613716125,1.1123788356781,1.41698229312897,1.66442775726318,1.79529786109924,1.78427267074585,1.64303904771805,1.40879839658737,1.12686210870743,0.836565310135484,0.566564474254847,0.339282393455505,0.179639458656311,0.121572494506836,0.207185983657837,0.477218866348267,0.955204367637634,1.63079011440277,32767,32767,32767,4.64791667461395,4.90667361021042,4.83746808767319,4.49708980321884,4.01010966300964,3.53018552064896,3.18700259923935,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,7.86405038833618,8.33672094345093,8.55288362503052,8.57484030723572,8.51515913009644,8.49853157997131,8.61935925483704,8.91066336631775,9.33630394935608,9.80871379375458,10.2244594097137,10.5031657218933,10.6137037277222,10.5784504413605,10.4552493095398,10.30681681633,10.1718993186951,10.0504212379456,9.90803194046021,9.69545412063599,9.37207841873169,8.92178344726562,8.35439300537109,7.69409346580505,6.9623920917511,6.16667580604553,5.30053162574768,4.35630667209625,3.34266889095306,2.29739141464233,1.28715774416924,0.393443301320076,-0.310126215219498,-0.778973877429962,-1.00780665874481,-1.02556896209717,-0.877728462219238,-0.604001522064209,-0.221365928649902,0.280657291412354,0.93141508102417,1.7616605758667,2.78494644165039,3.98588275909424,5.31850719451904,6.71499538421631,8.09891653060913,9.39840805530548,10.5540681481361,11.5209777355194,12.267134308815,12.7712688446045,13.023362159729,13.0277934074402,12.8067345619202,12.3998856544495,11.8581883907318,11.2316472530365,10.555780351162,9.84254223201424,9.08148640394211,8.25245487689972,7.34621381759644,6.38480186462402,5.43134450912476,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-5.12633430957794,-4.5132577419281,-3.75806570053101,-2.945228099823,-2.12134528160095,-1.29826331138611,-0.469205379486084,0.369776248931885,1.20046329498291,1.97267723083496],[1.55872917175293,1.64602851867676,1.51133728027344,1.14083576202393,0.535785675048828,-0.2855224609375,-1.29218769073486,-2.44819736480713,-3.71773052215576,-5.06376361846924,-6.43932723999023,-7.77567195892334,-8.97496509552002,-9.91483402252197,-10.4675946235657,-10.5303192138672,-10.0559544563293,-9.07371282577515,-7.68986749649048,-6.06713771820068,-4.38845157623291,-2.81627035140991,-1.4594612121582,-0.356294631958008,0.523648262023926,1.26123142242432,1.95930194854736,2.71106171607971,3.5719165802002,4.54038548469543,5.55258226394653,6.49311536550522,7.22210471332073,7.61341190338135,7.59435403347015,7.17411649227142,6.44942402839661,5.58205103874207,4.75244498252869,4.103191614151,3.69162738323212,3.46947759389877,3.29901894181967,3.00259214639664,2.42985880374908,1.51990365982056,0.335803031921387,32767,32767,-2.78684747219086,-2.94979593157768,-2.5307220518589,-1.65629542246461,-0.564837830082979,0.468709737062454,1.22124034911394,1.5933190882206,1.63943302631378,1.5455014705658,1.56112122535706,1.91044545173645,2.71325445175171,3.94400548934937,5.44206547737122,6.96713978052139,8.27756601572037,9.20166110992432,9.67765116691589,9.75115156173706,9.53691363334656,9.16399836540222,8.72762584686279,8.2647545337677,7.7583634853363,7.16322699189186,6.43863465636969,5.5734344124794,4.59492540359497,3.56117486953735,2.54297471046448,1.60418653488159,0.787822723388672,0.111351013183594,-0.428916454315186,-0.847344398498535,-1.15620517730713,-1.35484886169434,-1.42443037033081,-1.33093166351318,-1.03688955307007,-0.519376397132874,0.211986541748047,1.10461097955704,2.06654903292656,2.98571646213531,3.75909078121185,4.32103776931763,4.65858292579651,4.80600619316101,4.82038927078247,4.74881672859192,4.60296893119812,4.35410642623901,3.95225846767426,3.36136555671692,2.59344804286957,1.72396321594715,0.878616511821747,0.194959759712219,-0.225476980209351,-0.35365879535675,-0.241713285446167,-1.89542770385742e-05,0.247057676315308,0.406975388526917,0.446698635816574,0.391674518585205,0.299106597900391,0.220425397157669,0.17157781124115,0.125058174133301,0.0264230370521545,-0.174008548259735,-0.48997437953949,-0.883678376674652,-1.27280586957932,-1.55717815458775,-1.65312782488763,-1.52175173163414,-1.17981925606728,-0.690247565507889,-0.136738657951355,0.406794786453247,0.90019416809082,1.34561002254486,1.77743828296661,2.23776137828827,2.74673902988434,3.28017574548721,32767,4.09383422136307,4.16480928659439,3.91761070489883,3.36637282371521,2.6051766872406,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,5.91629385948181,6.54493594169617,6.9336895942688,7.10672664642334,7.13361048698425,7.10103845596313,7.08004981279373,7.10155448317528,7.1506017598731,7.18110838532448,7.14458429813385,7.01996368169785,6.83078029751778,6.64184844493866,6.53590403497219,6.57998330891132,6.79561364650726,7.1453047990799,7.54097235202789,7.8701479434967,8.02916884422302,7.94977641105652,7.60965180397034,7.02534818649292,6.23293876647949,5.26782751083374,4.15268245339394,2.89888375997543,1.51909053325653,0.0436780452728271,-1.46805799007416,-2.92773687839508,-4.22969686985016,-5.27050685882568,-5.96898210048676,-6.27976846694946,-6.19684386253357,-5.74700081348419,-4.9772841334343,-3.94126518070698,-2.68843638896942,-1.25961494445801,0.31161093711853,1.99302172660828,3.74553537368774,5.51662039756775,7.23635864257812,8.81965184211731,10.1742177009583,11.2141112983227,11.8763617873192,12.1358023881912,12.0139071941376,11.577433347702,10.9255132675171,10.1676430702209,9.39845442771912,8.67704355716705,8.01817911863327,7.39879655838013,6.77849721908569,6.12669515609741,5.4467077255249,4.78712034225464,4.23459148406982,3.88955688476562,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.800149917602539,1.27056694030762],[-1.16929340362549,-1.34163379669189,-1.59704875946045,-1.91274833679199,-2.27816390991211,-2.69396877288818,-3.17029762268066,-3.72353935241699,-4.37029552459717,-5.11785888671875,-5.95235538482666,-6.82822895050049,-7.66403102874756,-8.3486909866333,-8.75944805145264,-8.78822374343872,-8.36951351165771,-7.50131177902222,-6.25207567214966,-4.75069999694824,-3.16143083572388,-1.6497631072998,-0.347671031951904,0.673661708831787,1.41732597351074,1.95702219009399,2.41640877723694,2.93509745597839,3.62846398353577,4.55093574523926,5.67320263385773,6.88167577981949,8.00303754210472,8.84911787509918,9.26993215084076,9.19824409484863,8.67035126686096,7.81459021568298,6.81004595756531,5.82865858078003,4.98053431510925,4.28186321258545,3.65715926885605,2.9755230396986,2.10829418897629,0.98769199848175,-0.354597330093384,32767,32767,32767,32767,32767,32767,32767,-1.48133793473244,-0.28619122505188,0.772103697061539,1.66406516730785,2.44538519531488,3.21840854082257,4.07935829088092,5.07210876047611,6.16585090756416,7.26382917165756,8.23756355047226,8.971186876297,9.39722263813019,9.51043200492859,9.35640132427216,9.00300562381744,8.50938415527344,7.90694236755371,7.19984740018845,6.38247638940811,5.46332550048828,4.48212242126465,3.51067900657654,2.63620209693909,1.93405628204346,1.4417839050293,1.14560413360596,0.985191822052002,0.874928951263428,0.733607769012451,0.511816024780273,0.207739353179932,-0.133394241333008,-0.435232400894165,-0.615955114364624,-0.615133285522461,-0.413531303405762,-0.0395025014877319,0.440091609954834,0.941735804080963,1.39289036765695,1.75556489825249,2.03680473566055,2.28119516372681,2.54699969291687,2.87481641769409,3.26158487796783,3.65202403068542,3.95311033725739,4.06763207912445,3.93390917778015,3.55498778820038,3.00376403331757,2.40042918920517,1.87028223276138,1.49910938739777,1.30465984344482,1.23626041412354,1.20208120346069,1.11173033714294,0.915080070495605,0.620533347129822,0.285588026046753,-0.0146869421005249,-0.225529611110687,-0.338812798261642,-0.395413776132045,-0.462595451623201,-0.597086369991302,-0.810760498046875,-1.05494296550751,-1.23109865188599,-1.22481727600098,-0.949824333190918,-0.385334730148315,0.408032178878784,1.29987645149231,2.12584242969751,2.73509734869003,3.03350377082825,3.00798487663269,2.72395062446594,2.29719425737858,1.85050690174103,1.47052836418152,1.18075776100159,0.940680980682373,0.671432256698608,0.297805070877075,-0.210233926773071,-0.814068078994751,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,2.75558066368103,3.56230896711349,4.30696952342987,4.9312915802002,5.41033279895782,5.75122678279877,5.98012381792068,6.12447537854314,6.19869509339333,6.20078217983246,6.1210128068924,5.95865714550018,5.73771297931671,5.51255214214325,5.3585364818573,5.34920990467072,5.52830564975739,5.88795483112335,6.36281371116638,6.84374395012856,7.20656478404999,7.34576833248138,7.20041245222092,6.76324433088303,6.07112139463425,5.1817250661552,4.14774733781815,2.99899709224701,1.73979806900024,0.361646175384521,-1.13485217094421,-2.71874117851257,-4.31723618507385,-5.81914091110229,-7.09276342391968,-8.01264260709286,-8.48638373613358,-8.47352731227875,-7.99076294898987,-7.10325372219086,-5.90514719486237,-4.49588799476624,-2.96012324094772,-1.35671013593674,0.280205488204956,1.92923283576965,3.56494331359863,5.14205646514893,6.58886432647705,7.81295645236969,8.71925699710846,9.23514097929001,9.33366283774376,9.04660029709339,8.46127671003342,7.7008467912674,6.89381861686707,6.14273881912231,5.50266969203949,4.97696152329445,4.53123319149017,4.12022566795349,3.7165310382843,3.33008861541748,3.01046752929688,2.83069658279419,2.85853290557861,32767,32767,32767,32767,5.31108117103577,5.51448392868042,5.36607837677002,4.84246951341629,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-2.0677285194397,-1.52692842483521,-1.21950101852417,-1.11443853378296],[-2.99977207183838,-3.29649639129639,-3.5502815246582,-3.71748352050781,-3.77897071838379,-3.74126815795898,-3.63325786590576,-3.49948883056641,-3.39097499847412,-3.35443496704102,-3.42124652862549,-3.59801292419434,-3.86116695404053,-4.15759468078613,-4.4123010635376,-4.5422306060791,-4.47361421585083,-4.15883588790894,-3.58870935440063,-2.79675388336182,-1.8537917137146,-0.853269100189209,0.110095500946045,0.963839054107666,1.677659034729,2.27374744415283,2.82307958602905,3.42637276649475,4.18299460411072,5.15560913085938,6.34122866392136,7.65903431177139,8.96106219291687,10.0647752285004,10.798999786377,11.049144744873,10.7871918678284,10.0763101577759,9.04853582382202,7.86321377754211,6.66041684150696,5.5251784324646,4.47399067878723,3.46697509288788,2.43990468978882,1.34360086917877,0.176217846572399,-1.00278988480568,-2.08142751455307,32767,32767,32767,32767,-2.17471563816071,-1.01389849185944,0.357614755630493,1.83437955379486,3.33307415246964,4.79515993595123,6.17842245101929,7.44423508644104,8.54879951477051,9.44382500648499,10.0868589878082,10.4559319019318,10.5603127479553,10.4402754306793,10.1539199352264,9.75560402870178,9.27539324760437,8.70966708660126,8.02862638235092,7.19903696700931,6.21290385723114,5.10929417610168,3.97818946838379,2.94236588478088,2.12247085571289,1.5979700088501,1.37889957427979,1.39984846115112,1.53922271728516,1.65728998184204,1.63964748382568,1.43107032775879,1.04852414131165,0.569879055023193,0.103491544723511,-0.250000238418579,-0.430089235305786,-0.432355880737305,-0.303218126296997,-0.116255521774292,0.0607304573059082,0.195715188980103,0.308084011077881,0.463519915938377,0.749161839485168,1.23731973767281,1.9510605931282,2.84505248069763,3.81014180183411,4.70164465904236,5.38202929496765,5.76255321502686,5.82825422286987,5.63650465011597,5.28995370864868,4.89469546079636,4.52090565115213,4.18182063102722,3.8393896818161,3.4331750869751,2.91922104358673,2.30121660232544,1.63982057571411,1.03566026687622,0.593196272850037,0.381213188171387,0.406960308551788,0.615408718585968,0.914085563272238,1.21304047107697,1.46308398246765,1.67617523670197,1.91895747184753,2.28136658668518,2.83228588104248,3.57920742034912,4.44795298576355,5.29094481468201,5.92289113998413,6.17233753204346,5.93254156410694,5.1947031468153,4.05241069197655,2.67567241191864,1.26331529021263,-0.0107152462005615,-1.03898251056671,-1.79672265052795,-2.32841014862061,-2.71112465858459,-3.00996804237366,-3.24338412284851,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,2.89208942651749,3.50979661941528,4.21566790342331,4.94682002067566,5.64865238964558,6.28250078111887,6.82591176778078,7.26829688251019,7.60538136959076,7.83705443143845,7.96953755617142,8.02045345306396,8.02233600616455,8.02029609680176,8.06174021959305,8.18029510974884,8.37943631410599,8.62312960624695,8.83902494609356,8.93510565534234,8.82514562271535,8.4546735547483,7.81739788502455,6.95610985159874,5.94719845056534,4.87441599369049,3.80170428752899,2.75538563728333,1.72237730026245,0.66484546661377,-0.454115867614746,-1.64379405975342,-2.86809778213501,-4.04351925849915,-5.05421090126038,-5.779461145401,-6.12464928627014,-6.04590344429016,-5.56038105487823,-4.73987531661987,-3.68969595432281,-2.52032667398453,-1.32139930129051,-0.145867921411991,0.990674555301666,2.0964218378067,3.18189132213593,4.23872292041779,5.228062748909,6.08330297470093,6.72697556018829,7.09579026699066,7.16419625282288,6.95731198787689,6.54756087064743,6.03556436300278,5.52196368575096,5.08050191402435,4.74208068847656,4.49549067020416,4.3035084977746,4.12730324268341,3.94848036766052,3.77943396568298,3.65767216682434,3.62681198120117,3.71226024627686,3.90270519256592,4.14533853530884,4.35778737068176,4.45222234725952,4.36227750778198,4.0623893737793,3.57215285301208,2.94469904899597,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-3.42946410179138,-2.95192623138428,-2.6265082359314,-2.48701477050781,-2.53096532821655,-2.72182512283325],[-2.28071022033691,-2.56227588653564,-2.75448799133301,-2.81863021850586,-2.73715209960938,-2.51499652862549,-2.17652988433838,-1.76022720336914,-1.31287479400635,-0.884337425231934,-0.522786140441895,-0.269773483276367,-0.15468692779541,-0.188785552978516,-0.360033988952637,-0.630580902099609,-0.938867568969727,-1.20746326446533,-1.35613822937012,-1.31778526306152,-1.05314445495605,-0.559773445129395,0.128327369689941,0.951422214508057,1.84262275695801,2.7487268447876,3.64607501029968,4.54518914222717,5.48144543170929,6.49401140958071,7.59999597072601,8.77325654029846,9.93634080886841,10.9698171615601,11.7373266220093,12.118839263916,12.0417866706848,11.5001425743103,10.5557971000671,9.32241535186768,7.93750810623169,6.53182029724121,5.20491755008698,4.01313382387161,2.97142511606216,2.06628119945526,1.2740740776062,0.578636646270752,-0.016871452331543,-0.486083030700684,32767,-0.852731943130493,-0.640891790390015,-0.108277797698975,0.760268449783325,1.94835472106934,3.40433388948441,5.04194915294647,6.74617218971252,8.38499236106873,9.82679557800293,10.9613213539124,11.7198629379272,12.0890493392944,12.1128516197205,11.8799414634705,11.4981622695923,11.0626044273376,10.6274213790894,10.1914002895355,9.70364737510681,9.08864092826843,8.28266441822052,7.26831768453121,6.0937180519104,4.86782121658325,3.73206973075867,2.81758117675781,2.20317506790161,1.88951826095581,1.79928493499756,1.80365753173828,1.76582527160645,1.58604669570923,1.23252248764038,0.747700691223145,0.228742599487305,-0.209852457046509,-0.47747802734375,-0.537540435791016,-0.416150093078613,-0.187016248703003,0.0612679719924927,0.262982726097107,0.403969347476959,0.530284851789474,0.733192712068558,1.11534410715103,1.74996566772461,2.6478054523468,3.74420559406281,4.91159915924072,5.99379873275757,6.85017704963684,7.39406442642212,7.6118311882019,7.55611371994019,7.31690740585327,6.9824310541153,6.60591328144073,6.19146728515625,5.70447902940214,5.10135248303413,4.36537110805511,3.53264427185059,2.69611930847168,1.98467719554901,1.52480638027191,1.39972454309464,1.62189523875713,2.12997275590897,2.81127458810806,3.54109599720687,4.22350633144379,4.81828927993774,5.34378588199615,5.8553159236908,6.40782761573792,7.01751255989075,7.6376006603241,8.1581871509552,8.43171334266663,8.31595778465271,7.72058796882629,6.64133703708649,5.16993629932404,3.47568374872208,1.7644624710083,0.22788468003273,-1.00063708424568,-1.86902582645416,-2.40262281894684,-2.6759021282196,-2.77176022529602,-2.74405670166016,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,5.81234490871429,6.12750325351954,6.59863436222076,7.18339329957962,7.83129425346851,8.49476508796215,9.1363470479846,9.73161520808935,10.2682275772095,10.7434639036655,11.1613925993443,11.5303028225899,11.8597422242165,12.156195640564,12.4171205759048,12.6249694824219,12.7436120510101,12.7203226089478,12.4949691295624,12.0153782367706,11.2548059225082,10.2260030508041,8.98553460836411,7.62601156532764,6.25674647092819,4.97856497764587,3.86018049716949,2.92451143264771,2.14937615394592,1.48239016532898,0.865386486053467,0.259676456451416,-0.336220264434814,-0.882543563842773,-1.30938577651978,-1.53905534744263,-1.51213026046753,-1.20852088928223,-0.656134605407715,0.0751116275787354,0.892403125762939,1.70540475845337,2.44922640919685,3.09775865077972,3.66289687156677,4.1808477640152,4.69109421037138,5.21618509292603,5.7499560713768,6.25872391462326,6.69450533390045,7.01476800441742,7.20052778720856,7.26531171798706,7.25118160247803,7.21341592073441,7.20003689080477,7.23487025499344,7.31085228919983,7.39640474319458,7.45171165466309,7.44735980033875,32767,32767,32767,32767,6.82958567142487,6.64064025878906,6.35051894187927,5.90095496177673,5.26189112663269,4.45257353782654,3.54628276824951,2.654372215271,1.89421463012695,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-1.13106298446655,-1.18306589126587,-1.26952648162842,-1.42612218856812,-1.66350126266479,-1.96272087097168],[0.251219749450684,0.080662727355957,-0.0556173324584961,-0.145693778991699,-0.18622875213623,-0.180204391479492,-0.132601737976074,-0.047175407409668,0.0733184814453125,0.223081588745117,0.387331962585449,0.537927627563477,0.634027481079102,0.62978458404541,0.488167762756348,0.197273254394531,-0.216490745544434,-0.68394947052002,-1.10092163085938,-1.34788417816162,-1.31714534759521,-0.939949035644531,-0.205207824707031,0.836413383483887,2.08496618270874,3.41681146621704,4.71552920341492,5.89842975139618,6.93047820031643,7.82155585289001,8.60875153541565,9.33039093017578,10.0010900497437,10.5965647697449,11.0534563064575,11.2841958999634,11.2021930217743,10.7493448257446,9.91756319999695,8.7579517364502,7.37508225440979,5.90809893608093,4.50352990627289,3.28684616088867,2.33966588973999,1.68792033195496,1.30355834960938,1.11909580230713,1.0512318611145,1.02749633789062,1.00910234451294,1.00383949279785,1.06526660919189,1.27786016464233,1.73152685165405,2.49206113815308,3.57549428939819,4.93396806716919,6.457867577672,7.99486970901489,9.38169360160828,10.4805679321289,11.2103404998779,11.5631213188171,11.6010527610779,11.4334139823914,11.1805086135864,10.9351239204407,10.733913898468,10.5481300354004,10.2972965240479,9.88148498535156,9.22141790390015,8.29232907295227,7.13944263756275,5.86906343698502,4.61806130409241,3.51227378845215,2.62879014015198,1.97544193267822,1.49493980407715,1.09190273284912,0.672630786895752,0.182994365692139,-0.369451522827148,-0.916982650756836,-1.35599088668823,-1.58479762077332,-1.54109239578247,-1.22523355484009,-0.701179027557373,-0.0748844146728516,0.541890144348145,1.06913584470749,1.48410055041313,1.82547557353973,2.1749761402607,2.62290348112583,3.23016947507858,4.00053858757019,4.87324607372284,5.73871028423309,6.47185444831848,6.97093558311462,7.18780970573425,7.13883590698242,6.89271545410156,6.54062283039093,6.16036212444305,5.78889203071594,5.41385596990585,4.98750194907188,4.45714993774891,3.79974803328514,3.04624366760254,2.28522616624832,1.64329254627228,1.24869698286057,1.19137312099338,1.49372524023056,2.10293158888817,2.90720488876104,3.77004840970039,4.56993788480759,5.23176443576813,5.73923921585083,6.12540459632874,6.44577860832214,6.74506020545959,7.03018712997437,7.25984597206116,7.3545229434967,7.22346615791321,6.79906320571899,6.06620955467224,5.07591795921326,3.93778848648071,2.79344987869263,1.77945178747177,0.992204010486603,0.466845370829105,0.176567554473877,0.0523416996002197,0.015101432800293,0.00838708877563477,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,6.69227612018585,7.3342719078064,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,9.79198551177979,9.66799402236938,9.48975706100464,9.32440543174744,9.22751832008362,9.23406612873077,9.3554859161377,9.58320021629333,9.89629283547401,10.2705873847008,10.6859548985958,11.1300142407417,11.597519159317,12.0866051912308,12.5933849811554,13.106743812561,13.6046814918518,14.0527760982513,14.4048960208893,14.6064534187317,14.6000480651855,14.3335466384888,13.7698273658752,12.8967223167419,11.7346255779266,10.3394005298615,8.79788327217102,7.21649074554443,5.70404708385468,4.35333590907976,3.2256110906601,2.34318029880524,1.69184756278992,1.23242425918579,0.917912006378174,0.710413932800293,0.592781066894531,0.571091413497925,0.667520046234131,0.906527042388916,1.29950928688049,1.83348393440247,2.46843409538269,3.14415311813354,3.79486352205276,4.36655968427658,4.83092355728149,5.19130802154541,5.47857117652893,5.73849868774414,6.0154185295105,6.33824646472931,6.71350002288818,7.12790042161942,7.55839629471302,7.98506930470467,8.40094003081322,8.81419244408607,9.24170486629009,9.69676971435547,10.1765322089195,10.6555619239807,11.0889368057251,11.424576997757,11.6201333999634,11.6567573547363,11.5437278747559,11.310714006424,10.9903972148895,10.5987774133682,10.1222252845764,9.51882746815681,8.73537957668304,7.73559188842773,6.52823662757874,5.18381094932556,3.83078527450562,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,1.42239284515381,1.16382455825806,0.967554569244385,0.795857906341553,0.622050762176514,0.437687873840332],[2.23483037948608,2.20947504043579,2.10578870773315,1.90118932723999,1.57657909393311,1.12539100646973,0.562190055847168,-0.0737514495849609,-0.722991943359375,-1.31866073608398,-1.80402946472168,-2.14904975891113,-2.35956478118896,-2.47474193572998,-2.55219554901123,-2.64468288421631,-2.77573299407959,-2.92281341552734,-3.01486778259277,-2.94671249389648,-2.60733795166016,-1.91417026519775,-0.842756271362305,0.557731628417969,2.16893196105957,3.82715344429016,5.3602352142334,6.62667541205883,7.54569041728973,8.10954189300537,8.37507462501526,8.43776249885559,8.39670538902283,8.3215537071228,8.23132348060608,8.09116816520691,7.82760858535767,7.3571320772171,6.61931204795837,5.60427296161652,4.36613607406616,3.01817151904106,1.71041822433472,0.595771789550781,-0.206265926361084,-0.638075351715088,-0.716518402099609,-0.52580451965332,-0.192278861999512,0.152009963989258,0.406801223754883,0.531444549560547,0.555062294006348,0.565952777862549,0.683296680450439,1.01945447921753,1.64389944076538,2.55957078933716,3.69865131378174,4.93903338909149,6.1364588290453,7.16264998912811,7.93777227401733,8.44741702079773,8.73901629447937,8.8991117477417,9.01900196075439,9.16007995605469,9.33035039901733,9.47992706298828,9.51711678504944,9.33963918685913,8.87032413482666,8.08509647846222,7.02356330305338,5.77869534492493,4.46943736076355,3.20605301856995,2.06075286865234,1.05377912521362,0.159603118896484,-0.669658660888672,-1.47304153442383,-2.25377893447876,-2.96731996536255,-3.5291485786438,-3.84005331993103,-3.8198037147522,-3.43718302249908,-2.72531819343567,-1.77670419216156,-0.719346165657043,0.317825019359589,1.23836159706116,1.99940726161003,2.61348859965801,3.13139528036118,3.61286360025406,4.09621983766556,4.57827836275101,5.01189115643501,5.3219440728426,5.43376487493515,5.30316495895386,4.93662464618683,4.39373004436493,3.77033579349518,3.16848075389862,2.66371840238571,2.28211277723312,1.99533146619797,1.7360568344593,1.42805309593678,1.01993107795715,0.510196030139923,-0.0458226203918457,-0.549964006990194,-0.891423761844635,-0.982559353113174,-0.788084506988525,-0.33755087852478,0.282704830169678,0.955113887786865,1.56493759155273,2.03157591819763,2.32697105407715,2.47626447677612,2.54156970977783,2.59557676315308,2.69457387924194,2.86004400253296,3.07452058792114,3.29207420349121,3.45864152908325,3.53420877456665,3.50830221176147,3.40324854850769,3.26411318778992,3.13947916030884,3.06054592132568,3.02703508734703,3.00544238090515,2.9409784078598,2.77901190519333,2.48816387355328,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,3.14424496889114,3.80787587165833,4.47318649291992,5.14508032798767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,10.4289116859436,10.5852155685425,10.5943360328674,10.4982290267944,10.3409075737,10.1609444618225,9.98721623420715,9.83885657787323,9.7282623052597,9.66539412736893,9.66107338666916,9.72747260332108,9.87544476985931,10.1095266342163,10.4223740100861,10.7906999588013,11.1744997501373,11.520007610321,11.7660098075867,11.8522081375122,11.7279868125916,11.3599882125854,10.7372031211853,9.87302613258362,8.80388402938843,7.58496689796448,6.28313827514648,4.96876454353333,3.70725178718567,2.55211496353149,1.54056477546692,0.69282990694046,0.0148185789585114,-0.496855229139328,-0.849052459001541,-1.04785615205765,-1.09679400920868,-0.998468041419983,-0.758692026138306,-0.391256093978882,0.0789405107498169,0.616094350814819,1.17803514003754,1.72398465871811,2.22337487339973,2.66299891471863,3.04951184988022,3.40637505054474,3.76593780517578,4.15907752513885,4.60617369413376,5.11264038085938,5.67037066817284,6.26470493525267,6.88337284326553,7.52360805124044,8.19351220875978,8.90643610432744,9.67003785073757,10.4743714034557,11.2843255996704,12.040934920311,12.6723585128784,13.1116902828217,13.3156542778015,13.2763690948486,13.0215301513672,12.6016707420349,12.0689263343811,11.4552733898163,10.7595291137695,9.94942462444305,8.97931376099586,7.81837922334671,6.47809827327728,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,3.6440749168396,3.23926591873169,2.80174493789673,32767,32767,1.9669075012207,1.92136573791504,1.95892715454102,2.04060125350952,2.13088607788086,2.20246458053589],[1.93326377868652,2.02207946777344,1.94519472122192,1.65362071990967,1.10522270202637,0.281278610229492,-0.7984619140625,-2.06838989257812,-3.42161083221436,-4.72704029083252,-5.85519504547119,-6.7055549621582,-7.22706890106201,-7.42513370513916,-7.35237789154053,-7.08578205108643,-6.69735908508301,-6.22802257537842,-5.67355728149414,-4.98793601989746,-4.10352420806885,-2.96201276779175,-1.54607343673706,0.0989909172058105,1.86156511306763,3.58040332794189,5.07776285707951,6.1997447013855,6.85218596458435,7.02153182029724,6.77455925941467,6.23708403110504,5.5579120516777,4.86865642666817,4.25094410777092,3.7203306555748,3.23104977607727,2.69959980249405,2.03967994451523,1.19765284657478,0.17772198561579,-0.950872033834457,-2.06710660457611,-3.02808606624603,-3.70694255828857,-4.02755665779114,-3.98571014404297,-3.65033149719238,-3.14416742324829,-2.6095495223999,-2.16915941238403,-1.89330816268921,-1.78313398361206,-1.77432870864868,-1.75976514816284,-1.62369251251221,-1.2770094871521,-0.682936191558838,0.134193420410156,1.0988597869873,2.10896015167236,3.06660437583923,3.90493011474609,4.60249048471451,5.18103544414043,5.68824625015259,6.17185008525848,6.6544862985611,7.1181663274765,7.50385129451752,7.72639036178589,7.69977933168411,7.36402317881584,6.70449060201645,5.75721979141235,4.59864401817322,3.32371735572815,2.02039623260498,0.749724388122559,-0.461666584014893,-1.61448097229004,-2.71834707260132,-3.76994943618774,-4.73651313781738,-5.55199885368347,-6.12822604179382,-6.37786674499512,-6.24145042896271,-5.70909172296524,-4.82891899347305,-3.69913351535797,-2.44585102796555,-1.19406867027283,-0.0412392616271973,0.958332777023315,1.79355931282043,2.48253774642944,3.05039477348328,3.50788903236389,3.83918762207031,4.00358843803406,3.95070099830627,3.64338064193726,3.07956147193909,2.30423760414124,1.40614295005798,0.498948335647583,-0.307273149490356,-0.935264468193054,-1.36046242713928,-1.61486557126045,-1.77312774211168,-1.9255690574646,-2.14696100354195,-2.47137716412544,-2.88130602240562,-3.31429256498814,-3.68451528251171,-3.91164922714233,-3.94749760627747,-3.79154276847839,-3.49079155921936,-3.12446784973145,-2.77890300750732,-2.52097368240356,-2.37854671478271,-2.33353614807129,-2.32915830612183,-2.28838396072388,-2.1371693611145,-1.82526969909668,-1.33853244781494,-0.699892044067383,0.0398664474487305,0.817464351654053,1.57258653640747,2.25849771499634,2.8447847366333,3.31296491622925,3.64806699752808,3.83126902580261,3.83767181634903,3.64109882712364,3.22473751753569,2.59346368908882,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-0.708019495010376,0.101823329925537,1.02464985847473,2.04120802879333,3.12614941596985,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,7.57515001296997,8.0101900100708,8.27990460395813,8.38935136795044,8.35285592079163,8.19110631942749,7.92888402938843,7.59408330917358,7.21750247478485,6.83250963687897,6.47356760501862,6.17274034023285,5.95474708080292,5.83159780502319,5.79855442047119,5.83311891555786,5.89805865287781,5.9480619430542,5.93866157531738,5.83488677069545,5.61761921644211,5.28569161891937,4.85341262817383,4.34451055526733,3.78432655334473,3.19285750389099,2.58043265342712,1.94747614860535,1.28814387321472,0.596409559249878,-0.127195835113525,-0.870497345924377,-1.60798496007919,-2.30317528545856,-2.91463312506676,-3.40446776151657,-3.74658048152924,-3.93278968334198,-3.97492837905884,-3.90202033519745,-3.75303959846497,-3.56699842214584,-3.37274044752121,-3.18132326006889,-2.98329024016857,-2.75155805423856,-2.44969642162323,-2.04320381581783,-1.51046603918076,-0.850254833698273,-0.0828018188476562,0.755845606327057,1.62483525276184,2.49131774902344,3.34034264087677,4.17830693721771,5.02758944034576,5.91377317905426,6.84944206476212,7.82030874490738,8.77918542921543,9.65127003192902,10.350045979023,10.7993166446686,10.9545030593872,10.8152589797974,10.4248988628387,9.85608720779419,9.18740749359131,8.47866606712341,7.75428152084351,7.00077003240585,6.1796669960022,5.25173181295395,4.20298600196838,3.06304669380188,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-0.993612408638,-0.982354879379272,-0.913615465164185,-0.75702953338623,-0.502613067626953,-0.162539005279541,0.234437465667725,0.65249490737915,1.05763483047485,1.42202091217041,1.72222089767456],[-0.156557083129883,-0.0474371910095215,-0.101747989654541,-0.376880645751953,-0.931453704833984,-1.80333423614502,-2.98822927474976,-4.42630529403687,-6.00243806838989,-7.56177759170532,-8.93748807907104,-9.98356199264526,-10.6035108566284,-10.7667374610901,-10.5078678131104,-9.90950441360474,-9.07393312454224,-8.09280633926392,-7.0242657661438,-5.88461399078369,-4.65675926208496,-3.3121337890625,-1.83831453323364,-0.262556076049805,1.33736956119537,2.83958027884364,4.10080683231354,4.98912942409515,5.41710603237152,5.36519306898117,4.88816148042679,4.10217440128326,3.15594136714935,2.19410729408264,1.32322764396667,0.590003967285156,-0.0223791599273682,-0.579229593276978,-1.16557347774506,-1.85260277986526,-2.66952729225159,-3.58927142620087,-4.53225111961365,-5.38686031103134,-6.04035416245461,-6.4106570482254,-6.46946358680725,-6.24975895881653,-5.83563017845154,-5.33772659301758,-4.86195087432861,-4.48084211349487,-4.21603155136108,-4.03650760650635,-3.87239742279053,-3.6392183303833,-3.26470708847046,-2.70981597900391,-1.97794532775879,-1.1105055809021,-0.171474456787109,0.773060321807861,1.67307424545288,2.50450348854065,3.26801633834839,3.97799897193909,4.64631748199463,5.26741695404053,5.81042975187302,6.2215239405632,6.4359073638916,6.39543163776398,6.06568682193756,5.44669723510742,4.57355046272278,3.50694417953491,2.31714773178101,1.06724071502686,-0.198326587677002,-1.45601320266724,-2.69587373733521,-3.90782785415649,-5.06748628616333,-6.12739324569702,-7.01814389228821,-7.65981411933899,-7.98055338859558,-7.9362421631813,-7.52464041113853,-6.78889739513397,-5.80916726589203,-4.68474507331848,-3.51260396838188,-2.36922478675842,-1.30114245414734,-0.326928615570068,0.551336288452148,1.33207130432129,2.00021600723267,2.5211968421936,2.84558725357056,2.9233341217041,2.72268438339233,2.24689865112305,1.54227924346924,0.693721294403076,-0.191996097564697,-1.01047372817993,-1.68448925018311,-2.18149852752686,-2.51860928535461,-2.75318574905396,-2.96229469776154,-3.21729731559753,-3.56146132946014,-3.99725496768951,-4.48681366443634,-4.96486794948578,-5.35939741134644,-5.61341309547424,-5.7008957862854,-5.63228559494019,-5.44840621948242,-5.20519208908081,-4.954505443573,-4.72724628448486,-4.52383708953857,-4.31477832794189,-4.05084419250488,-3.67925262451172,-3.16098880767822,-2.48398494720459,-1.66866397857666,-0.764904022216797,0.158178329467773,1.02572631835938,1.77003717422485,2.33926296234131,2.70062065124512,2.83857583999634,2.75050520896912,2.4426600933075,1.92855823040009,1.23050892353058,0.382963895797729,32767,32767,32767,32767,32767,32767,32767,32767,32767,-3.31720411777496,-2.48964428901672,-1.49285674095154,-0.357010841369629,0.884794235229492,2.1911940574646,3.50850105285645,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,2.04694283008575,2.7868073284626,3.48257219791412,4.0982494354248,4.60047221183777,4.96220207214355,5.16567528247833,5.20458579063416,5.0852507352829,4.82664430141449,4.45894885063171,4.02034711837769,3.55214059352875,3.09252224862576,2.67035156488419,2.30040991306305,1.981614112854,1.69925093650818,1.43109822273254,1.15603876113892,0.862897872924805,0.556392192840576,0.258389472961426,0.00304269790649414,-0.173028469085693,-0.243107795715332,-0.201722621917725,-0.0712752342224121,0.0984435081481934,0.238421440124512,0.274752616882324,0.145094394683838,-0.186421394348145,-0.72053074836731,-1.4225937128067,-2.23092651367188,-3.07156679034233,-3.8757096529007,-4.59465169906616,-5.20852065086365,-5.72645258903503,-6.1782443523407,-6.60010707378387,-7.0187087059021,-7.43815946578979,-7.83389890193939,-8.15564465522766,-8.33853363990784,-8.31969726085663,-8.05558609962463,-7.53477358818054,-6.78282046318054,-5.85682845115662,-4.8315737247467,-3.78065347671509,-2.75841976236552,-1.78836679458618,-0.861387729644775,0.0546553134918213,0.997157096862793,1.98820352554321,3.01810145378113,4.03865706920624,4.96939873695374,5.71556115150452,6.19254446029663,6.34973609447479,6.18554690480232,5.74886322021484,5.12608814239502,4.41764295101166,3.71112751960754,3.06011605262756,2.47491490840912,1.92801624536514,1.37200057506561,0.763093113899231,0.0821852684020996,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-6.62789326906204,-6.11606325954199,-5.47336012125015,-4.72921085357666,-3.92968511581421,-3.12940049171448,-2.38006210327148,-1.71984124183655,-1.16776013374329,-0.725854635238647,-0.388686895370483],[-1.8110203742981,-1.81732153892517,-1.89351058006287,-2.08639657497406,32767,-3.07079708576202,-3.94507133960724,-5.05720597505569,-6.32461160421371,-7.61677664518356,-8.77861520648003,-9.66186806559563,-10.1560291647911,-10.2101972699165,-9.83990275859833,-9.11730921268463,-8.1481466293335,-7.04255080223083,-5.88856744766235,-4.73604547977448,-3.59506785869598,-2.44843423366547,-1.27325022220612,-0.063886284828186,1.15175168216228,2.30832356214523,3.3132216334343,4.06784120202065,4.49345046281815,4.5535329580307,4.26557230949402,3.69837665557861,2.95550131797791,2.14950656890869,1.37451314926147,0.68505334854126,0.0871524810791016,-0.456058025360107,-1.00626587867737,-1.62524259090424,-2.35103183984756,-3.18219494819641,-4.07468140125275,-4.95185887813568,-5.72431528568268,-6.3131294362247,-6.66948014497757,-6.78490257263184,-6.68949007987976,-6.43933415412903,-6.09755706787109,-5.71525430679321,-5.31811666488647,-4.9025239944458,-4.44151926040649,-3.89794206619263,-3.23995399475098,-2.45362186431885,-1.54880619049072,-0.557015419006348,0.477230072021484,1.50788450241089,2.49742364883423,3.42199325561523,4.27019786834717,5.03671836853027,5.71360969543457,6.2832396030426,6.715855717659,6.97315001487732,7.01678919792175,6.81899952888489,6.37139248847961,5.68883657455444,4.80686140060425,3.7734808921814,2.63827705383301,1.44263410568237,0.214654445648193,-1.02959012985229,-2.27908086776733,-3.51793527603149,-4.71675157546997,-5.82874774932861,-6.79305005073547,-7.54451060295105,-8.02730643749237,-8.20790132880211,-8.08315473794937,-7.68065774440765,-7.05126214027405,-6.25606632232666,-5.35228425264359,-4.38264214992523,-3.37155818939209,-2.32935523986816,-1.26243686676025,-0.185436725616455,0.86933708190918,1.84928560256958,2.68733024597168,3.31491470336914,3.67846632003784,3.75408363342285,3.55562496185303,3.13330745697021,2.56266164779663,1.92701292037964,1.29828214645386,0.721839904785156,0.209458351135254,-0.257567882537842,-0.716630458831787,-1.20702648162842,-1.75349593162537,-2.35488414764404,-2.98118853569031,-3.57956981658936,-4.0870509147644,-4.44612073898315,-4.6183648109436,-4.59237289428711,-4.3840479850769,-4.02965259552002,-3.57422637939453,-3.05924224853516,-2.51321315765381,-1.94799900054932,-1.36167430877686,-0.746381759643555,-0.0986003875732422,0.571952819824219,1.23763084411621,1.85397815704346,2.3664379119873,2.72054100036621,2.87261009216309,2.79808330535889,2.49535131454468,1.98467421531677,1.30322742462158,0.498256683349609,-0.37938404083252,-1.27976050972939,-2.15599018335342,32767,32767,32767,32767,32767,32767,32767,32767,32767,-2.48523116111755,-1.50486087799072,-0.40627384185791,0.783344745635986,2.03282308578491,3.30320692062378,4.54525232315063,5.69940757751465,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-0.0105634331703186,0.654687583446503,1.35591971874237,2.05673468112946,2.71395307779312,3.28340995311737,3.72630625963211,4.01505713164806,4.13748574256897,4.0984593629837,3.91849112510681,3.62937635183334,3.26763209700584,2.86705935001373,2.45222592353821,2.0347113609314,1.61333227157593,1.17873382568359,0.721386432647705,0.240814208984375,-0.24671459197998,-0.705166816711426,-1.08181619644165,-1.31708192825317,-1.35884523391724,-1.17799520492554,-0.78081226348877,-0.214279174804688,0.438026428222656,1.06914234161377,1.56863236427307,1.84381103515625,1.83785700798035,1.53922116756439,0.980422914028168,0.226539611816406,-0.643415868282318,-1.55708473920822,-2.46542054414749,-3.35092931985855,-4.22539836168289,-5.11793518066406,-6.0572247505188,-7.05328142642975,-8.08444777876139,-9.09383046627045,-9.99668306112289,-10.6971520185471,-11.1097831726074,-11.1800897121429,-10.8981144428253,-10.30135679245,-9.46554136276245,-8.48609042167664,-7.45497751235962,-6.43979787826538,-5.47099626064301,-4.54069381952286,-3.61390700936317,-2.64844673871994,-1.61753821372986,-0.527859449386597,0.572616815567017,1.60014343261719,2.45306098461151,3.03669905662537,3.28860032558441,3.19597339630127,2.80034792423248,2.18787312507629,1.46801292896271,0.746725469827652,0.102260590298101,-0.429793745279312,-0.858316212892532,-1.2255939245224,-1.58755737543106,-1.99203836917877,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-8.9351794719696,-8.0950545668602,-7.10341797024012,-6.03413105010986,-4.97569614648819,-4.0146290063858,-3.21798431873322,-2.62025034427643,-2.21899998188019,-1.98132014274597,-1.85946810245514],[-1.15160170197487,32767,32767,32767,32767,32767,-2.62790411710739,-3.21368432044983,-3.9332777261734,-4.70960962772369,-5.43383753299713,-5.99007844924927,-6.28280341625214,-6.25916647911072,-5.92004430294037,-5.31690466403961,-4.53574132919312,-3.67308792471886,-2.811199888587,-1.99959293752909,-1.24790856149048,-0.531577687710524,0.19213523901999,0.963156145997345,1.79942504316568,2.68541812896729,3.57174128293991,4.38562685251236,5.04892253875732,5.49786579608917,5.69871664047241,5.65465378761292,5.40224885940552,4.99891757965088,4.50553798675537,3.96963596343994,3.41416072845459,2.83496069908142,2.20732378959656,1.49910020828247,0.686066627502441,-0.235246896743774,-1.24116387963295,-2.28246676921844,-3.29321974515915,-4.20374268293381,-4.95373868942261,-5.50182271003723,-5.82910180091858,-5.93665409088135,-5.83854532241821,-5.55340051651001,-5.09757518768311,-4.48207378387451,-3.71373081207275,-2.79957675933838,-1.75225353240967,-0.593971252441406,0.642568588256836,1.91678142547607,3.1852855682373,4.40762615203857,5.55055284500122,6.58945465087891,7.50665426254272,8.28765988349915,8.91705393791199,9.37613832950592,9.64344322681427,9.69828188419342,9.52619659900665,9.12428200244904,8.5043660402298,7.69257521629333,6.72521328926086,5.64214134216309,4.47981691360474,3.26636695861816,2.02048826217651,0.75442361831665,-0.520020008087158,-1.78466606140137,-3.01018095016479,-4.15517568588257,-5.17016172409058,-6.00531554222107,-6.61976504325867,-6.98938930034637,-7.11061658710241,-6.99879276752472,-6.68170714378357,-6.19030594825745,-5.54979056119919,-4.77418375015259,-3.86620545387268,-2.82289791107178,-1.64511919021606,-0.347748756408691,1.03273773193359,2.43636989593506,3.78460884094238,4.99120473861694,5.97649717330933,6.68131685256958,7.07687187194824,7.16811800003052,6.9897632598877,6.5964150428772,6.04956579208374,5.40523862838745,4.70523357391357,3.97427892684937,3.22302961349487,2.45554065704346,1.67834138870239,0.90818977355957,0.175870895385742,-0.475125789642334,-0.994583129882812,-1.33469915390015,-1.45953989028931,-1.35236978530884,-1.01895523071289,-0.486169815063477,0.203429222106934,0.999072074890137,1.84932422637939,2.70746421813965,3.53357315063477,4.29357433319092,4.95613670349121,5.48949146270752,5.85989856719971,6.03302621841431,5.97837352752686,5.6756911277771,5.12140941619873,4.33326768875122,3.35120677947998,2.23421835899353,1.05366778373718,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-0.0343327522277832,0.95855975151062,2.00167036056519,3.0776309967041,4.16665649414062,5.24369144439697,6.27664995193481,7.22627592086792,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-3.02260887622833,-2.44352227449417,-1.89184933900833,-1.39002513885498,-0.957307994365692,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.449077844619751,0.958687543869019,1.53786754608154,2.18524503707886,2.88613867759705,3.61199164390564,4.32311296463013,4.97437834739685,5.52260458469391,5.93395233154297,6.18967109918594,6.28878319263458,6.24698281288147,6.09194755554199,5.85613000392914,5.5688787996769,5.24989938735962,4.90604424476624,4.53252625465393,4.11851453781128,3.65578699111938,3.14799928665161,2.61762428283691,2.10782957077026,1.67801237106323,1.39290809631348,1.30783224105835,1.45342254638672,1.82410097122192,2.37390446662903,3.02145981788635,3.66353297233582,4.19443672895432,4.52601635456085,4.60398733615875,4.41560065746307,3.98715677857399,3.37210261821747,2.63317704200745,1.82376265525818,0.973886013031006,0.084965705871582,-0.865243911743164,-1.90885305404663,-3.06961965560913,-4.3454475402832,-5.6974036693573,-7.04885268211365,-8.29558122158051,-9.32493054866791,-10.0387257225811,-10.3742009997368,-10.3170655965805,-9.90332210063934,-9.20896124839783,-8.33053183555603,-7.36171317100525,-6.37244296073914,-5.39637923240662,-4.42979919910431,-3.44249582290649,-2.39694361388683,-1.27025610208511,-0.071746826171875,1.1488356590271,2.30565941333771,3.29299908876419,4.00858944654465,4.37830221652985,4.37456995248795,4.02377924323082,3.40036615729332,2.60935348272324,1.76202011108398,0.951727718114853,0.236175924539566,-0.369379535317421,-0.886884972453117,-1.36037881672382,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-6.1483987569809,-5.25031960010529,-4.2269743680954,-3.16957759857178,-2.18448758125305,-1.37172913551331,-0.803432464599609,-0.50811755657196,-0.46568751335144,-0.614840030670166,-0.871250689029694],[32767,32767,32767,32767,32767,32767,32767,32767,-0.426415085792542,-0.802721261978149,-1.18416655063629,-1.49685251712799,-1.67154103517532,-1.66280537843704,-1.46105509996414,-1.09404647350311,-0.6176598072052,-0.098846435546875,0.404110670089722,0.858193814754486,1.26431238651276,1.65563207864761,2.08619713783264,2.61323446035385,3.27827101945877,4.09233701229095,5.02926903963089,6.02868282794952,7.00753819942474,7.87682318687439,8.5588002204895,9.00034165382385,9.17934727668762,9.10325741767883,8.8010733127594,8.31181454658508,7.67310309410095,6.9130585193634,6.04743838310242,5.08212947845459,4.01951730251312,2.86633116006851,1.64025339484215,0.373425900936127,-0.888048887252808,-2.08811235427856,-3.16692543029785,-4.06748247146606,-4.74108934402466,-5.15094804763794,-5.27363300323486,-5.09910583496094,-4.63001155853271,-3.88084411621094,-2.87729454040527,-1.65545654296875,-0.260551452636719,1.25539970397949,2.83687686920166,4.42885589599609,5.98061943054199,7.44854879379272,8.79720878601074,9.99863624572754,11.0302546024323,11.8724843263626,12.5070399045944,12.916888255626,13.0879530310631,13.0121348500252,12.6905053257942,12.1354204416275,11.3705585449934,10.4284766614437,9.34626007080078,8.16047668457031,6.90295386314392,5.59870004653931,4.26674175262451,2.9233603477478,1.5866527557373,0.280694484710693,-0.962509155273438,-2.10405206680298,-3.10238122940063,-3.91953229904175,-4.52753114700317,-4.9129364490509,-5.07798838615417,-5.03781919553876,-4.81450045108795,-4.42966341972351,-3.89803749322891,-3.22405868768692,-2.40271282196045,-1.42482900619507,-0.285354137420654,1.00774717330933,2.42636299133301,3.91934442520142,5.41492986679077,6.82820463180542,8.07229232788086,9.07065439224243,9.76786851882935,10.1366496086121,10.1796555519104,9.92624616622925,9.42517399787903,8.73538899421692,7.91694402694702,7.02425932884216,6.10263562202454,5.18828845024109,4.31098484992981,3.49792551994324,2.77710032463074,2.1788158416748,1.7348427772522,1.47505760192871,1.42275857925415,1.58980274200439,1.97297716140747,2.55255842208862,3.29350137710571,4.14864253997803,5.06336545944214,5.9802942276001,6.84318494796753,7.59965181350708,8.20260810852051,8.61126279830933,8.79220151901245,8.72133684158325,8.38671088218689,7.79176545143127,6.95787870883942,5.92537724971771,4.75173905491829,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,2.06413576006889,2.9118367433548,3.78985524177551,4.68787908554077,5.59450006484985,6.49563407897949,7.3735454082489,8.20646977424622,8.96930241584778,9.63556265830994,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-1.69016501307487,-0.886480867862701,-0.143929839134216,0.503537058830261,1.0345915555954,1.44193780422211,1.73136413097382,1.91867578029633,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,3.58309268951416,4.27077484130859,4.96418523788452,5.66684150695801,6.3786358833313,7.09069681167603,7.78305554389954,8.4257915019989,8.98357748985291,9.42245292663574,9.71707507967949,9.85654765367508,9.84723651409149,9.71166777610779,9.4836573600769,9.20079755783081,8.89620232582092,8.59166014194489,8.29403233528137,7.9961710870266,7.68203675746918,7.33493804931641,6.94648933410645,6.52365398406982,6.09145903587341,5.69020485877991,5.36718654632568,5.16507411003113,5.10970139503479,5.20081341266632,5.40862922370434,5.67753612995148,5.93645787239075,6.11349034309387,6.15067005157471,6.01545417308807,5.7052506506443,5.24403691291809,4.67196226119995,4.03106832504272,3.35132551193237,2.64136028289795,1.88680124282837,1.05706405639648,0.118931770324707,-0.94719409942627,-2.13270616531372,-3.3928427696228,-4.64795923233032,-5.79443883895874,-6.72309041023254,-7.34022092819214,-7.58627510070801,-7.44702535867691,32767,-6.1779513573274,-5.20514258742332,-4.12284398078918,-2.99781507253647,-1.86596989631653,-0.731224104762077,0.425259441137314,1.6287185959518,2.89190074801445,4.1998855471611,5.50260782241821,6.71808624267578,7.74593949317932,8.48735094070435,8.86692643165588,8.84980356693268,8.45003485679626,7.72767269611359,6.77560609579086,5.6994292140007,4.59611728787422,3.53682623803616,2.55819334834814,1.66386008262634,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.356405258178711,1.22067832946777,2.08736062049866,2.85295510292053,3.41804301738739,3.71020060777664,3.70150566101074,3.41548173129559,2.92174108698964,2.3193117082119],[32767,32767,32767,32767,32767,32767,2.41049885749817,2.19878041744232,1.94650709629059,1.65298342704773,1.34493350982666,1.06761050224304,0.87078595161438,0.793990135192871,0.855417251586914,1.04772090911865,1.34176087379456,1.69701838493347,2.07541036605835,32767,2.83457720279694,3.24174797534943,3.71876192092896,4.3131742477417,5.06164181232452,5.97601497173309,7.0347855091095,8.18209624290466,9.33467364311218,10.3948738574982,11.2667241096497,11.8711683750153,12.1572315692902,12.1069376468658,11.7336056232452,11.0746867656708,10.1814539432526,9.10838007926941,7.90470635890961,6.6097503900528,5.2524246275425,3.85435324907303,2.43498182296753,1.01709294319153,-0.368959903717041,-1.68327856063843,-2.87713670730591,-3.89612245559692,-4.6849946975708,-5.19341278076172,-5.38150024414062,-5.22451686859131,-4.71601963043213,-3.86908054351807,-2.71548652648926,-1.30291557312012,0.309341430664062,2.05570888519287,3.86970520019531,5.68866729736328,7.45696449279785,9.12745428085327,10.6611833572388,12.0258457660675,13.1937996149063,14.1406188681722,14.8446949720383,15.2883267402649,15.4598672389984,15.3562500476837,14.9849133491516,14.3643271923065,13.522709608078,12.4950255155563,11.3190787434578,10.0317280590534,8.66628801822662,7.25180053710938,5.81441402435303,4.38005065917969,2.97742938995361,1.64012479782104,0.406544208526611,-0.682416439056396,-1.58791446685791,-2.27865266799927,-2.73589706420898,-2.95652842521667,-2.95310425758362,-2.75070071220398,-2.38123363256454,-1.87663599848747,-1.2626911252737,-0.555180549621582,0.240695476531982,1.12721061706543,2.10822820663452,3.18208503723145,4.33490657806396,5.53638315200806,6.7391414642334,7.88207387924194,8.89723443984985,9.71888256072998,10.292857170105,10.5844843387604,10.5833220481873,10.3041269779205,9.78379988670349,9.07538104057312,8.24013543128967,7.33975577354431,6.42984223365784,5.55590415000916,4.75207448005676,4.04237127304077,3.4434220790863,2.96758794784546,2.62551331520081,2.42704272270203,2.38062882423401,2.49135780334473,2.75833559036255,3.17234373092651,3.71453094482422,4.35637760162354,5.06124019622803,5.78686094284058,6.48840284347534,7.12160038948059,7.64550638198853,8.02491474151611,8.23235893249512,8.24994587898254,8.0709673166275,7.70114660263062,7.15903033316135,6.47535401582718,5.69076383113861,4.85215783119202,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,2.66694164276123,3.34458158165216,4.09420043230057,4.90160012245178,5.75103628635406,6.62571120262146,7.50817728042603,8.38027429580688,9.22284150123596,10.0156865119934,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-1.06861609220505,-0.152276754379272,0.654903590679169,1.32087635993958,1.83204036951065,2.19328033924103,2.42473022639751,2.55598057061434,2.61888651549816,2.64020662009716,2.63608491420746,2.60954812169075,2.55157372355461,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,6.10002136230469,7.14119625091553,8.12870025634766,9.04701375961304,9.88883352279663,10.6492772102356,11.3206081390381,11.889155626297,12.3353323936462,12.6369204521179,12.7746521830559,12.7385366559029,12.5329678058624,12.1791985034943,11.7140734195709,11.1851015090942,10.6429028511047,10.1325783729553,9.6863169670105,9.31869220733643,9.02621340751648,8.79078263044357,8.58649307489395,8.38774228096008,8.17649449408054,7.94671067595482,7.70470239780843,7.46530184149742,7.24515837430954,7.05502486228943,6.89359021186829,6.7448627948761,6.57999134063721,6.36344957351685,6.06179350614548,5.65233500301838,5.12934291362762,4.50562620162964,3.80885553359985,3.073561668396,2.33114767074585,1.60082244873047,0.884556770324707,0.167749404907227,-0.574091911315918,-1.36415004730225,-2.21199893951416,-3.10322618484497,-3.99476861953735,-4.81746244430542,-5.48597478866577,32767,32767,32767,32767,32767,32767,-1.80567765235901,-0.381355285644531,1.07000887393951,2.507917791605,3.91728830337524,5.30143594741821,6.66973280906677,8.02319645881653,9.34294295310974,10.5843682289124,11.6795015335083,12.5472888946533,13.1089262962341,13.3049190044403,13.1086733341217,12.533627986908,11.6316657066345,10.4834713935852,9.18297362327576,7.82044570147991,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,6.82355177402496,7.2900302708149,7.50111338496208,7.41992062330246,7.05616247653961,6.46451437473297,5.73234367370605],[32767,32767,32767,32767,32767,3.57983422279358,3.09971502423286,2.63004142045975,2.15369701385498,1.67223370075226,1.20763492584229,0.797782182693481,0.487233400344849,0.316157102584839,0.310667514801025,0.4772629737854,0.802828311920166,1.25994658470154,1.81578755378723,32767,3.12131214141846,3.85254716873169,4.64642572402954,5.51931858062744,6.48299312591553,7.53442287445068,8.64841222763062,9.77514028549194,10.8436603546143,11.7706255912781,12.4725193977356,12.8785562515259,12.9415817260742,12.6446099281311,12.001932144165,11.0548710823059,9.86349987983704,8.49635910987854,7.02057147026062,5.49425733089447,3.96254615485668,2.45756530761719,1.00163561105728,-0.387430191040039,-1.69067478179932,-2.88343381881714,-3.93305349349976,-4.79942607879639,-5.43815517425537,-5.80578804016113,-5.86585521697998,-5.59463214874268,-4.9854154586792,-4.0505428314209,-2.82086849212646,-1.34273815155029,0.326635360717773,2.12472343444824,3.98890113830566,5.86055374145508,7.68741321563721,9.42410707473755,11.0313251018524,12.474227309227,13.7210272103548,14.7424380779266,15.5123176574707,16.0095279216766,16.2204241752625,16.141215801239,15.7793784141541,15.1536042690277,14.2921597957611,13.2299344539642,12.0050181150436,10.6556896790862,9.21852588653564,7.72809386253357,6.21816730499268,4.72369432449341,3.28269720077515,1.93709468841553,0.731664180755615,-0.288869857788086,-1.08446502685547,-1.62496709823608,-1.89478731155396,-1.89580965042114,-1.64769172668457,-1.18531537055969,-0.553791284561157,0.197994828224182,1.02394342422485,1.88601452112198,2.75730373710394,3.62212088704109,4.47342348098755,5.30834257602692,6.12281560897827,6.90688872337341,7.64177131652832,8.2994476556778,8.84511077404022,9.24193680286407,9.45720231533051,9.46853142976761,9.2687201499939,8.86831694841385,8.29510748386383,7.59084010124207,6.80550622940063,5.99077379703522,5.19354104995728,4.451087474823,3.78849697113037,3.21875286102295,2.74501395225525,2.36423015594482,2.07122564315796,1.86186075210571,1.73486280441284,1.69195556640625,1.73641920089722,1.87085151672363,2.0947642326355,2.40265703201294,2.78319406509399,3.21943092346191,3.69000434875488,4.17095708847046,4.63774442672729,5.06714916229248,5.43879365921021,5.73626804351807,5.94783496856689,6.06670963764191,6.09088617563248,6.02267836034298,5.86779010295868,5.63417935371399,5.33099031448364,4.96770334243774,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,2.20090037584305,2.8595290184021,3.65707245469093,4.56309086084366,5.5441267490387,6.56665766239166,7.59933829307556,8.61382210254669,9.58435115218163,10.486698821187,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.444728672504425,0.897470384836197,1.19161510467529,1.35634511709213,1.42812204360962,1.4431324005127,1.43011331558228,1.40556287765503,1.37227392196655,1.32146596908569,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,4.15071296691895,5.43049049377441,6.75525665283203,8.06145858764648,9.2960033416748,10.4199514389038,11.4084177017212,12.2474308013916,12.929018497467,13.4463877677917,13.7907919883728,13.9510061740875,13.9157204627991,13.6779918670654,13.240651845932,12.62064909935,11.8512997627258,10.981171131134,10.0695753097534,9.1795539855957,8.36936044692993,7.68479061126709,7.153360247612,6.78209865093231,6.55875790119171,6.4563547372818,6.43962228298187,6.4717663526535,6.51988565921783,6.55802035331726,6.56732940673828,6.53403186798096,6.44606161117554,6.29006969928741,6.04997849464417,5.70772418379784,5.2463653087616,4.6545135974884,3.93051195144653,3.08513021469116,2.14153623580933,1.13217735290527,0.0933561325073242,-0.941125392913818,-1.94551134109497,-2.90481233596802,-3.8140082359314,-4.67355966567993,-5.48239135742188,-6.23068809509277,-6.89421224594116,-7.43266153335571,-7.79267477989197,32767,32767,32767,32767,32767,32767,32767,-0.432092189788818,1.3832368850708,3.18409729003906,4.92332002520561,6.57309138774872,8.12027382850647,9.55830144882202,10.8776421546936,12.05837059021,13.066463470459,13.8556976318359,14.3747611045837,14.5776474475861,14.4350044727325,13.9429004192352,13.1269778013229,12.0404407382011,10.7565118626226,9.35663276910782,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,7.51219475269318,8.12852874398232,8.53056368231773,8.66676485538483,8.52325308322906,8.12574422359467,7.53248488903046],[32767,32767,32767,32767,32767,3.33281135559082,2.55482858419418,1.77756381034851,1.00746196508408,0.263285517692566,-0.422076463699341,-1.00439298152924,-1.43471777439117,-1.6680862903595,-1.67200255393982,-1.43254613876343,-0.956610441207886,-0.269892454147339,0.588690280914307,1.5744776725769,32767,3.76245784759521,4.90142154693604,6.04163599014282,7.16650199890137,8.25689029693604,9.2860860824585,10.2170572280884,11.0030860900879,11.5919332504272,11.9327182769775,11.9840202331543,11.7213506698608,11.1422190666199,10.2677083015442,9.14015913009644,7.81756258010864,6.36584949493408,4.85081267356873,3.33122944831848,1.85443416237831,0.455042541027069,-0.843488216400146,-2.02507066726685,-3.07632684707642,-3.98228740692139,-4.72361850738525,-5.27609157562256,-5.61229228973389,-5.70524787902832,-5.53295135498047,-5.08281707763672,-4.3549633026123,-3.36367797851562,-2.13677978515625,-0.713014602661133,0.861653327941895,2.53823375701904,4.26834106445312,6.00664949417114,7.71181058883667,9.34608864784241,10.8741384744644,12.2617099173367,13.4749218225479,14.4807150363922,15.248467206955,15.7526206970215,15.9756145477295,15.9103722572327,15.5616545677185,14.9458796977997,14.0894412994385,13.0258495807648,11.792533993721,10.428047478199,8.97029376029968,7.45612215995789,5.92223644256592,4.40675449371338,2.9506950378418,1.59858655929565,0.397529602050781,-0.605395317077637,-1.36728143692017,-1.85426092147827,-2.04623365402222,-1.94037055969238,-1.55260467529297,-0.91663932800293,-0.0805916786193848,0.898298501968384,1.95989882946014,3.04726303741336,4.11172127723694,5.11586594581604,6.03434371948242,6.85250818729401,7.56334292888641,8.16367673873901,8.65058028697968,9.01884114742279,9.26014065742493,9.36409091949463,9.32079744338989,9.1243679523468,8.77619445323944,8.28741252422333,7.67948508262634,6.9829403758049,6.23402807116508,5.47044774889946,4.72663182020187,4.0298730134964,3.39795756340027,2.83884310722351,2.35224843025208,1.93257141113281,1.57260179519653,1.26672554016113,1.01318693161011,0.814934730529785,0.678836822509766,0.613936901092529,0.62908411026001,0.730642795562744,0.920884609222412,1.19720268249512,1.55222272872925,1.97458362579346,2.45001792907715,2.96243238449097,3.49466276168823,4.0288462638855,4.54650020599365,5.02836441993713,5.45426416397095,5.80332815647125,6.05456590652466,6.1880062893033,6.1864618062973,6.03779768943787,5.73741042613983,5.29077649116516,32767,32767,32767,32767,32767,32767,0.995498657226562,0.849366545677185,0.957398653030396,1.33022093772888,1.95825681090355,2.81338691711426,3.85278463363647,5.02399921417236,6.27071964740753,7.53769159317017,8.774538397789,9.93755972385406,10.9896748065948,11.8991675376892,12.6373393535614,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-2.82853126525879,-1.81781190633774,-0.982497856020927,-0.338376581668854,0.116221070289612,0.399073839187622,0.539937973022461,0.5748291015625,0.539718627929688,0.464731216430664,0.37047004699707,0.267114639282227,0.15631103515625,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,3.59664154052734,4.8890438079834,6.24531555175781,7.59899520874023,8.88830947875977,10.0624198913574,11.0844955444336,11.9315052032471,12.5914106369019,13.0588512420654,13.3308005332947,13.4036438465118,13.2724350690842,12.9327080249786,12.3840751647949,11.6349482536316,10.7063660621643,9.63437128067017,8.46953129768372,7.27351939678192,6.11337864398956,5.05399072915316,4.15087825059891,3.44397754222155,2.95405347645283,2.68180632591248,2.60991287231445,2.70713657140732,2.93349462747574,3.24524533748627,3.59884941577911,3.95333731174469,4.27117037773132,4.51793527603149,4.66187620162964,4.67376279830933,4.52772951126099,4.20315265655518,3.68726778030396,2.97745990753174,2.08287191390991,1.0244779586792,-0.166631698608398,-1.45231342315674,-2.79108762741089,-4.1418251991272,-5.46602964401245,-6.72855281829834,-7.89659452438354,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-3.37340354919434,-1.40043067932129,0.594340801239014,2.54622268676758,4.4029541015625,6.12583076953888,7.68707060813904,9.0654661655426,10.2413830757141,11.1932778358459,11.8963685035706,12.3246183395386,12.4554812908173,12.2761410474777,11.7896708846092,11.019038811326,10.0077294111252,8.81630527973175,7.51562190055847,6.17744255065918,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,5.56545996665955,6.46821045875549,7.19332081079483,7.67901180684566,7.89193046092987,7.83101785182953,7.52442646026611],[32767,32767,32767,32767,3.76573276519775,2.86839413642883,1.93714994192123,0.990579627454281,0.0524692535400391,-0.844401523470879,-1.6572380065918,-2.33556175231934,-2.8265632390976,-3.08235704898834,-3.06754451990128,-2.76535733789206,-2.18101501464844,-1.3416006565094,-0.292524814605713,0.908538818359375,32767,3.51754140853882,4.810631275177,6.03387355804443,7.15282917022705,8.14096069335938,8.97672176361084,9.64074325561523,10.1141786575317,10.3787307739258,10.4184169769287,10.2225542068481,9.78908348083496,9.12726497650146,8.25889301300049,7.21759414672852,6.04623937606812,4.79295778274536,3.50662684440613,2.2327094078064,1.01026457548141,-0.129340887069702,-1.16210389137268,-2.06965637207031,-2.83693885803223,-3.44995307922363,-3.89433479309082,-4.15518856048584,-4.21815586090088,-4.07151889801025,-3.70862865447998,-3.13011932373047,-2.34516620635986,-1.37153339385986,-0.234321594238281,1.03629779815674,2.40767574310303,3.8471212387085,5.32351732254028,6.80779314041138,8.27230477333069,9.68942737579346,11.0300285816193,12.2624226808548,13.3523445129395,14.2642970085144,14.9640557765961,15.4220480918884,15.6167550086975,15.537483215332,15.1858155727386,14.5754375457764,13.7304339408875,12.6823822259903,11.4670642912388,10.1215025186539,8.68192505836487,7.18306493759155,5.65878534317017,4.14357614517212,2.67425727844238,1.29120254516602,0.0383586883544922,-1.03816890716553,-1.89316082000732,-2.48639154434204,-2.78725099563599,-2.77893829345703,-2.46150255203247,-1.8529896736145,-0.98854923248291,0.0826020240783691,1.3017840385437,2.60628128051758,3.93498882651329,5.23301899433136,6.45498108863831,7.56648564338684,8.5437912940979,9.37209033966064,10.0429849624634,10.5518608093262,10.8958802223206,11.0730013847351,11.0821623802185,10.924533367157,10.6051263809204,10.1345000267029,9.52963876724243,8.81392645835876,8.01570749282837,7.1661388874054,6.29638493061066,5.43502931296825,4.60612279176712,3.8283269405365,3.11521482467651,2.47636604309082,1.91914129257202,1.45017147064209,1.07638216018677,0.805278778076172,0.644153594970703,0.598901748657227,0.672487258911133,0.863633155822754,1.1661434173584,1.56890964508057,2.05660057067871,2.61088275909424,3.21165752410889,3.83821105957031,4.46979761123657,5.08575439453125,5.66521787643433,6.1866135597229,6.62729716300964,6.96376848220825,7.17255032062531,7.23194009065628,7.124577075243,6.84055805206299,6.38057792186737,5.75874829292297,5.00427484512329,4.16174066066742,3.28931352496147,2.45515942573547,1.73187851905823,1.189896941185,0.890376210212708,0.878637790679932,1.1792231798172,1.79315102100372,2.69787831604481,3.84994411468506,32767,32767,8.15191078186035,9.63070392608643,11.0207533836365,12.2673554420471,13.3251504898071,14.157112121582,14.7323331832886,15.0240783691406,15.0083122253418,14.6637272834778,13.9731388092041,12.9262568950653,11.5232014656067,9.7781298160553,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-4.70887267589569,-3.20188820362091,-1.82143181562424,-0.612030267715454,0.393078684806824,1.17484164237976,1.72939896583557,2.06762886047363,2.21247053146362,2.19511985778809,2.05063056945801,1.81366539001465,1.51556396484375,1.18310546875,0.838905334472656,0.50360107421875,0.198520660400391,-0.051849365234375,32767,32767,32767,0.112663269042969,0.59637451171875,1.29063034057617,2.18607330322266,3.25502014160156,4.45314025878906,5.72414398193359,7.00584411621094,8.23735427856445,9.36513328552246,10.3473892211914,11.1559181213379,11.7752208709717,12.1996908187866,12.4295673370361,12.4670639038086,12.3137063980103,11.9694279432297,11.4339473247528,10.7095680236816,9.80522108078003,8.73981785774231,7.54478132724762,6.26433384418488,4.9534432888031,3.67381358146667,2.48804020881653,1.45370399951935,0.617684245109558,0.0121330283582211,-0.34772789478302,-0.463641405105591,-0.352515459060669,-0.0434331893920898,0.425715923309326,1.01147699356079,1.6673412322998,2.34555196762085,2.99808883666992,3.57761383056641,4.03833913803101,4.33756446838379,4.43768501281738,4.30886554718018,3.93141746520996,3.29813814163208,2.41559934616089,1.30426263809204,-0.00250864028930664,-1.46042060852051,-3.01705145835876,-4.61462593078613,-6.19266819953918,-7.69032180309296,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-5.20676040649414,-3.39062118530273,-1.53944826126099,0.288238048553467,2.04013919830322,3.67092776298523,5.14110493659973,6.41561603546143,7.46253705024719,8.25307083129883,8.76260137557983,8.9734593629837,32767,8.485122859478,7.81724643707275,6.91650867462158,5.83980011940002,4.65445899963379,3.43153810501099,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,1.16699028015137,2.44228458404541,3.7627592086792,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,5.64700126647949,6.35292442142963,32767,32767,32767],[32767,32767,32767,32767,3.51943647861481,2.64364737272263,1.73373460769653,0.811011871322989,-0.0985500402748585,-0.961657755076885,-1.73708622902632,-2.37764905393124,-2.83457724750042,-3.06358504295349,-3.03145384788513,-2.72176885604858,-2.13863217830658,-1.30754935741425,-0.27324366569519,0.905168056488037,32767,3.42602252960205,4.63923406600952,5.74940824508667,6.71885108947754,7.52343845367432,8.15099620819092,8.59843444824219,8.86857986450195,8.96734714508057,8.90189933776855,8.6798734664917,8.30969047546387,7.80143451690674,7.16792869567871,6.42556953430176,5.59460592269897,4.69878005981445,3.764488697052,2.81965351104736,1.89257788658142,1.01104843616486,0.201676845550537,-0.510465621948242,-1.10218524932861,-1.55257225036621,-1.84366512298584,-1.96145153045654,-1.89695930480957,-1.64734840393066,-1.21655654907227,-0.615323066711426,0.139610290527344,1.02706336975098,2.02347564697266,3.10513687133789,4.24991035461426,5.43824577331543,6.65308475494385,7.87868356704712,9.09867930412292,10.2938785552979,11.4404489994049,12.5090836286545,13.4655094146729,14.2725222110748,14.8931879997253,15.2947773933411,15.4525904655457,15.3529691696167,14.9949052333832,14.3898775577545,13.5601284503937,12.5356014668941,11.350417971611,10.0395493507385,8.63633894920349,7.17137145996094,5.67281532287598,4.16793060302734,2.68519496917725,1.25644302368164,-0.0818004608154297,-1.28816223144531,-2.31790828704834,-3.12584686279297,-3.67037534713745,-3.91793489456177,-3.84728288650513,-3.45262718200684,-2.7453441619873,-1.75371265411377,-0.520846843719482,0.898829460144043,2.4442675113678,4.05249154567719,5.66300344467163,7.22120833396912,8.68044400215149,10.0026898384094,11.158148765564,12.1240420341492,12.8832716941833,13.4233045578003,13.7356204986572,13.8159470558167,13.6648859977722,13.2890110015869,12.7017254829407,11.9238538742065,10.9833312034607,9.91442680358887,8.75619220733643,7.55064976215363,6.34085237979889,5.1691335439682,4.07567834854126,3.09726667404175,2.26641464233398,1.61033582687378,1.14994812011719,0.898859024047852,0.862144470214844,1.03558921813965,1.40530681610107,1.94804573059082,2.6324634552002,3.42111015319824,4.27298545837402,5.14645767211914,6.00182723999023,6.80353546142578,7.52139854431152,8.13101816177368,8.61343479156494,8.95424270629883,9.14254903793335,9.17031812667847,9.03220808506012,8.72621086239815,8.25510627031326,7.62839162349701,6.86436557769775,5.99190425872803,5.05124568939209,4.0936176776886,3.17904950678349,2.37280094623566,1.74021553993225,1.34096455574036,1.22310638427734,1.41785180568695,1.9359393119812,2.76600217819214,3.87525723874569,5.21243607997894,6.7125403881073,8.30234599113464,9.90644645690918,11.4522070884705,12.8737716674805,14.1141133308411,15.1254911422729,15.8688201904297,16.3120784759521,16.4289608001709,16.1979622840881,15.6026744842529,14.6332011222839,13.2885928153992,11.5797562599182,9.53229188919067,7.1883385181427,4.60704066837206,1.86317706108093,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-2.20583736896515,-0.33309995289892,1.39138151705265,2.91348128765821,4.18863791227341,5.1850973367691,5.88581275939941,6.28943967819214,6.40947341918945,6.27239418029785,5.91495704650879,5.38096237182617,4.71842002868652,3.97727012634277,3.20757675170898,2.45871734619141,1.77865600585938,1.21315002441406,0.804595947265625,0.589927673339844,0.598087310791016,0.846931457519531,1.34045028686523,2.06681060791016,2.99789810180664,4.0908317565918,5.29104614257812,6.53742599487305,7.76765060424805,8.92408752441406,9.95815658569336,10.8332786560059,11.5257511138916,12.0234746932983,12.3233757019043,12.4279565811157,12.3420487642288,12.0705591440201,11.6175332069397,10.9869964122772,10.1848481893539,9.22189879417419,8.11630868911743,6.89577674865723,5.5980498790741,4.26980662345886,2.96411657333374,1.73633432388306,0.639840602874756,-0.278383634984493,-0.981281876564026,-1.44415044784546,-1.65571260452271,-1.6178617477417,-1.34450149536133,-0.859926223754883,-0.197010040283203,0.604337692260742,1.49857425689697,2.4354829788208,3.36140823364258,4.22049617767334,4.95673179626465,5.51642227172852,5.85144662857056,5.92239952087402,5.70213937759399,5.17842674255371,4.35571002960205,3.25568532943726,1.91658329963684,0.390902757644653,-1.25771355628967,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-5.11651611328125,-3.59260559082031,-2.02089691162109,-0.449012756347656,1.07486629486084,2.5018138885498,3.78281044960022,4.87012749910355,5.72006511688232,6.29620337486267,6.57340965420008,32767,32767,5.60158491134644,4.76524877548218,3.75928497314453,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-2.39483451843262,-1.71982383728027,-0.869535446166992,0.145395278930664,1.29853820800781,2.54755210876465,3.83739852905273,5.10565376281738,6.2899169921875,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,2.79099798202515,2.00021541118622,1.2143520116806,0.446630835533142,-0.286370813846588,-0.96225968003273,-1.55201497673988,-2.02125484496355,-2.33348920941353,-2.45486545562744,-2.35953384637833,-2.03458553552628,-1.48357325792313,-0.727850437164307,0.194609081372619,1.2327743768692,2.32796001434326,3.42012476921082,4.45406532287598,5.38452005386353,6.17945384979248,6.82116079330444,7.30525398254395,7.63792896270752,7.83223342895508,7.90405368804932,7.86861324310303,7.73795509338379,7.51979923248291,7.21770668029785,6.83234882354736,6.36357021331787,5.81268215179443,5.18463468551636,4.48970627784729,3.74442732334137,2.97165727615356,2.19985127449036,1.46150541305542,0.791065692901611,0.222382545471191,-0.213911056518555,-0.492875099182129,-0.597354888916016,-0.519282341003418,-0.26011848449707,0.169778823852539,0.752755165100098,1.46625232696533,2.2856273651123,3.18692016601562,4.14914512634277,5.15551090240479,6.19353055953979,7.25382852554321,8.3279333114624,9.4055495262146,10.4718827605247,11.5057178735733,12.4787604808807,13.3564937114716,14.1006202697754,14.6726508140564,15.0381398200989,15.1707320213318,15.0553169250488,14.6897478103638,14.0847382545471,13.2621386051178,12.2517920732498,11.0877823531628,9.80473577976227,8.43485188484192,7.00622892379761,5.54276418685913,4.0654411315918,2.59463596343994,1.15287208557129,-0.232760429382324,-1.52901935577393,-2.69641304016113,-3.69065427780151,-4.46563196182251,-4.97742605209351,-5.18893814086914,-5.07417154312134,-4.62181615829468,-3.83729290962219,-2.74317336082458,-1.37792944908142,0.206981897354126,1.95081734657288,3.78781062364578,5.65133714675903,7.47737431526184,9.20709228515625,10.7884693145752,12.1769304275513,13.3354783058167,14.2344913482666,14.8515410423279,15.1715607643127,15.1871743202209,14.8994798660278,14.3187913894653,13.4653925895691,12.3697056770325,11.0721440315247,9.62215375900269,8.07673406600952,6.49830597639084,4.95215904712677,3.50359129905701,2.21472406387329,1.14145374298096,0.330247402191162,-0.18466854095459,-0.383588790893555,-0.263119697570801,0.163254737854004,0.865646362304688,1.79942321777344,2.90823650360107,4.1278772354126,5.39072036743164,6.63044261932373,7.78614330291748,8.80587100982666,9.64882946014404,10.2863674163818,10.7018728256226,10.8896086215973,10.8530158996582,10.6029485464096,10.1560398638248,9.5336000919342,8.76121652126312,7.86877369880676,6.89086151123047,5.86718034744263,4.84245622158051,3.86582255363464,2.98903954029083,2.26398468017578,1.73915040493011,1.45588767528534,1.44461810588837,1.72160661220551,2.28691363334656,3.12373408675194,4.19927275180817,5.46712803840637,6.87085390090942,8.3478581905365,9.83371996879578,11.2655744552612,12.5849673748016,13.7393183708191,14.6823887825012,15.3741893768311,15.7802801132202,15.871461391449,15.6237735748291,15.0194516181946,14.0485825538635,12.7113823890686,11.0205945968628,9.00362253189087,6.703638125211,4.17949223518372,1.50405836105347,-1.23899698257446,-3.95964765548706,-6.56676387786865,-8.97352361679077,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-1.68085515499115,0.639972662553191,2.86353802680969,4.91624426841736,6.72970151901245,8.24476075172424,9.41544583067298,10.2118114233017,10.6221542358398,10.6535067558289,10.3310585021973,9.69638252258301,8.80462265014648,7.72123336791992,6.51852607727051,5.27187538146973,4.05644989013672,2.94389724731445,1.99917984008789,1.2777099609375,0.822479248046875,0.661762237548828,0.8072509765625,1.25308990478516,1.97595596313477,2.93667602539062,4.08297348022461,5.35336303710938,6.68205642700195,8.00361442565918,9.25773429870605,10.3925876617432,11.3670806884766,12.15159034729,12.7271981239319,13.0840849876404,13.2193161696196,13.1347386837006,12.8354849815369,12.3291804790497,11.6262941360474,10.740914106369,9.69235897064209,8.50608944892883,7.21467041969299,5.85756397247314,4.47992777824402,3.13069725036621,1.85952842235565,0.713955730199814,-0.263694047927856,-1.03870153427124,-1.58571290969849,-1.88971042633057,-1.94607734680176,-1.76022052764893,-1.34689617156982,-0.729392051696777,0.0610628128051758,0.986021041870117,2.00020599365234,3.05243396759033,4.08658695220947,5.04363822937012,5.86409091949463,6.49140787124634,6.87547540664673,6.9767324924469,6.7695415019989,6.24490487575531,5.41196304559708,4.29810482263565,2.94730842113495,1.41721045970917,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-7.65120124816895,-6.53843021392822,-5.24808502197266,-3.8153657913208,-2.28295230865479,-0.701137542724609,0.872536182403564,2.37518310546875,3.74162042140961,4.90897536277771,5.82154387235641,6.43603754043579,6.72610282897949,6.68546772003174,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-2.83840560913086,-2.28936004638672,-1.54838943481445,-0.622642517089844,0.470550537109375,1.70197296142578,3.03027725219727,4.40422058105469,5.76597595214844,7.05647850036621,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,0.815122604370117,0.0958352088928223,-0.561542510986328,-1.15155172348022,-1.66751551628113,-2.09909358620644,-2.43114942312241,-2.64426124095917,-2.71685659885406,-2.6285896897316,-2.36435770988464,-1.91815721988678,-1.29598081111908,-0.517182230949402,0.386115193367004,1.37149053812027,2.39027720689774,3.39251251518726,4.33202528953552,5.17080521583557,5.88203549385071,6.4513201713562,6.87605047225952,7.16315031051636,7.32569742202759,7.3790922164917,7.33749580383301,7.21111679077148,7.00483226776123,6.71825408935547,6.34716892242432,5.88602733612061,5.33100843429565,4.68306255340576,3.9504382610321,3.1502434015274,2.3087061047554,1.4601788520813,0.644822597503662,-0.0945892333984375,-0.716470718383789,-1.18421745300293,-1.4695463180542,-1.55499744415283,-1.43512535095215,-1.11636352539062,-0.615478515625,0.0430641174316406,0.830472946166992,1.71714687347412,2.675856590271,3.68403339385986,4.72470092773438,5.78614950180054,6.86021900177002,7.93967890739441,9.01524329185486,10.0728025436401,11.0915744304657,12.0435972213745,12.8947510719299,13.6072993278503,14.1435351371765,14.4699792861938,14.5613918304443,14.40389585495,13.9967255592346,13.3522100448608,12.4941458702087,11.4547071456909,10.2706369161606,8.97929824888706,7.61527740955353,6.20811867713928,4.78158569335938,3.3543758392334,1.94209289550781,0.560018539428711,-0.774017333984375,-2.03718042373657,-3.20030736923218,-4.22797632217407,-5.08011150360107,-5.71490430831909,-6.09280490875244,-6.18073582649231,-5.95625233650208,-5.41071200370789,-4.55124378204346,-3.40121376514435,-1.99898946285248,-0.395597219467163,1.34866869449615,3.16813009977341,4.99548578262329,6.76520919799805,8.41628551483154,9.89406538009644,11.1515274047852,12.1499247550964,12.8590965270996,13.2578039169312,13.3339242935181,13.0849757194519,12.5186266899109,11.6533260345459,10.5185508728027,9.15491628646851,7.61358726024628,5.95512491464615,4.24754631519318,2.56369066238403,0.977967739105225,-0.437491893768311,-1.61676263809204,-2.50428199768066,-3.0585241317749,-3.25498676300049,-3.0883846282959,-2.57334041595459,-1.74373722076416,-0.650690078735352,0.641057014465332,2.05760860443115,3.52105903625488,4.95490169525146,6.28883743286133,7.46299839019775,8.43074035644531,9.16016340255737,9.63436555862427,9.85040593147278,9.81745982170105,9.55456328392029,9.08817858994007,8.44999366998672,7.67527079582214,6.8015468120575,5.86785578727722,4.91426587104797,3.98135304450989,3.1097032725811,2.33887708187103,1.70614087581635,1.24468570947647,0.981747984886169,0.936706095933914,1.11940360069275,1.52912338078022,2.15425226092339,2.97270807623863,3.95319348573685,5.05706316232681,6.24029782414436,7.45583724975586,8.6553547848016,9.79094356298447,10.8161117434502,11.6864017248154,12.3599865436554,12.79802942276,12.9655623435974,12.8325064182281,12.3754072189331,11.5794286727905,10.4405655860901,8.96766471862793,7.18396964669228,5.12770783901215,2.85162353515625,0.42127513885498,-2.08782052993774,-4.59397125244141,-7.01359748840332,-9.26564264297485,-11.2754898071289,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-0.750116154551506,1.74953189119697,4.13997220993042,6.33826184272766,8.26730179786682,9.86016201972961,11.0643305778503,11.844900906086,12.1871867179871,12.0976455211639,11.6036682128906,10.7520399093628,9.60608005523682,8.24198913574219,6.74470138549805,5.20301055908203,3.70519638061523,2.33452224731445,1.16511154174805,0.258617401123047,-0.338718414306641,-0.597976684570312,-0.508636474609375,-0.0786247253417969,0.666645050048828,1.68633651733398,2.92711639404297,4.32657432556152,5.8173828125,7.33094787597656,8.8013219833374,10.1679582595825,11.3780393600464,12.3878269195557,13.1631930172443,13.6797108650208,13.9222702980042,13.8846206665039,13.5690357685089,12.9859861135483,12.1541296690702,11.1000391244888,9.85817718505859,8.46989679336548,6.98253655433655,5.44762849807739,3.91863703727722,2.44861406087875,1.08726885914803,-0.12119448184967,-1.14018297195435,-1.94198608398438,-2.5084547996521,-2.83107423782349,-2.91037368774414,-2.75516414642334,-2.38171672821045,-1.81298637390137,-1.07819747924805,-0.212374687194824,0.743721961975098,1.7441349029541,2.73823738098145,3.67225456237793,4.4911847114563,5.14168739318848,5.57511758804321,5.75131487846375,5.64185205101967,5.23282468318939,4.52662682533264,3.54252004623413,2.3155517578125,0.894261181354523,-0.662751749157906,-2.29105094820261,-3.92457734793425,32767,32767,32767,32767,32767,-10.7967848777771,-11.119734287262,32767,32767,32767,-9.55279541015625,-8.4603443145752,-7.11653470993042,-5.55213022232056,-3.80993413925171,-1.94487333297729,-0.0232305526733398,1.87995076179504,3.68467032909393,5.31144094467163,6.68687443435192,7.74953019618988,8.45502114295959,8.77962493896484,8.72228193283081,8.30416107177734,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-3.58634567260742,-3.34138679504395,-2.83169937133789,-2.06584167480469,-1.06195831298828,0.150588989257812,1.53094100952148,3.0274543762207,4.58004760742188,6.12319183349609,7.5905647277832,8.91937637329102,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,-2.65040063858032,-3.25524258613586,-3.7480947971344,-4.12251389026642,-4.37114578485489,-4.48477322980762,-4.45254623889923,-4.2633661031723,-3.9081963300705,-3.38282787799835,-2.69055944681168,-1.8442123234272,-0.867047190666199,0.207745432853699,1.33895874023438,2.48047029972076,3.58512735366821,4.6087720990181,5.51385217905045,6.2720490694046,6.8655903339386,7.28708457946777,7.53805208206177,7.62648153305054,7.56391382217407,7.36264228820801,7.03347444534302,6.58457565307617,6.02143573760986,5.34798860549927,4.56865692138672,3.69081354141235,2.72723770141602,1.69803524017334,0.631582140922546,-0.435778841376305,-1.46128416061401,-2.39854121208191,-3.20109796524048,-3.82645416259766,-4.23987674713135,-4.41754627227783,-4.34861850738525,-4.03585243225098,-3.49477386474609,-2.75147438049316,-1.83936595916748,-0.795401573181152,0.343680381774902,1.54452800750732,2.77940082550049,4.02690505981445,5.27150058746338,6.5017352104187,7.70765852928162,8.87797719240189,9.99751448631287,11.0455403327942,11.9953937530518,12.815468788147,13.4715938568115,13.9303641319275,14.1629872322083,14.1489472389221,13.8788886070251,13.3562731742859,12.5974287986755,11.6301264762878,10.4907217025757,9.22050356864929,7.86176776885986,6.45418144762516,5.03204023838043,3.62285041809082,2.24724006652832,0.920194625854492,-0.346750736236572,-1.5428614616394,-2.65556287765503,-3.66848707199097,-4.56050872802734,-5.30606603622437,-5.87667012214661,-6.24357724189758,-6.38096082210541,-6.26942467689514,-5.89900779724121,-5.2714659422636,-4.40145915746689,-3.31631681323051,-2.05477055907249,-0.664610058069229,0.800377286970615,2.28361940383911,3.72891461849213,5.0831845998764,6.2985166311264,7.33363270759583,8.15469765663147,8.73562383651733,9.05821585655212,9.11202526092529,8.89444136619568,8.41079080104828,7.67467856407166,6.70816850662231,5.54207330942154,4.21582615375519,2.77699327468872,1.28015327453613,-0.214851856231689,-1.64532089233398,-2.94878482818604,-4.06631231307983,-4.94622945785522,-5.54754209518433,-5.84285497665405,-5.82072639465332,-5.48668670654297,-4.86315155029297,-3.98809623718262,-2.91236209869385,-1.69606590270996,-0.404438018798828,0.896771430969238,2.14546012878418,3.28698444366455,4.27687835693359,5.08254766464233,5.68394565582275,6.07307958602905,6.25277066230774,6.23490393161774,6.03839921951294,5.68717979639769,5.20851522684097,4.63161599636078,3.98663938045502,3.30411899089813,2.61446833610535,1.94772577285767,1.33308911323547,0.798394113779068,0.369316585361958,0.0684455633163452,-0.0857315063476562,-0.0799469947814941,0.0930027961730957,0.433581590652466,0.935129404067993,1.58389616012573,2.35938262939453,3.23481130599976,4.17800331115723,5.15212416648865,6.11675977706909,7.02884721755981,7.8437340259552,8.51657569408417,9.00368803739548,9.26447516679764,9.26323795318604,8.97148275375366,8.37005710601807,7.45116519927979,6.21997725963593,4.69558399915695,2.9111053943634,0.912915229797363,-1.24107837677002,-3.48394155502319,-5.74287271499634,-7.9426474571228,-10.0091540813446,-11.8725368976593,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.596305459737778,2.87819570302963,4.9612123966217,6.77151727676392,8.24648475646973,9.33849453926086,10.017612695694,10.2736914753914,10.1168907284737,9.57716679573059,8.70254802703857,7.55620574951172,6.21282577514648,4.75458335876465,3.26639938354492,1.8318920135498,0.529193878173828,-0.572656631469727,-1.41653442382812,-1.95945739746094,-2.17402648925781,-2.04897689819336,-1.58908271789551,-0.814384460449219,0.241287231445312,1.53230667114258,3.00333023071289,4.59217262268066,6.23213386535645,7.85501337051392,9.39346814155579,10.7835986292921,11.9672620296478,12.8940920829773,13.5235095024109,13.8263235092163,13.7861278057098,13.400297164917,12.6804410219193,11.652329236269,10.3549218177795,8.83898651599884,7.16437256336212,5.39720892906189,3.60631418228149,1.85942006111145,0.219802081584931,-1.2572822868824,-2.52676528692245,-3.55554091930389,-4.32301044464111,-4.82088470458984,-5.05223560333252,-5.02989387512207,-4.77475547790527,-4.31410360336304,-3.68014526367188,-2.90903472900391,-2.0400390625,-1.11529636383057,-0.17931079864502,0.721308708190918,1.53890419006348,2.22602462768555,2.73749232292175,3.03264474868774,3.07824422419071,2.85112303495407,2.34046936035156,1.54949047416449,0.496084570884705,-0.787789940834045,-2.25774684548378,-3.85960549116135,-5.53278803825378,-7.21372222900391,-8.83969449996948,32767,32767,-12.8268018960953,-13.7056722044945,-14.3016811087728,-14.5910568237305,-14.5567337274551,-14.1881020069122,32767,32767,-11.0812721252441,-9.42585134506226,-7.51211166381836,-5.39046859741211,-3.12419033050537,-0.788172721862793,1.53400504589081,3.75396728515625,5.78396081924438,7.54217365384102,8.95826876163483,9.97830986976624,10.568320274353,10.7166228294373,10.4340677261353,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-4.90796852111816,-4.80272674560547,-4.350830078125,-3.56573486328125,-2.47482299804688,-1.11956787109375,0.445423126220703,2.15424728393555,3.93289184570312,5.70259094238281,7.38482666015625,8.90567779541016,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-3.06264805793762,-4.22032833099365,-5.13613872230053,-5.77637439966202,-6.11720097064972,-6.14666223526001,-5.86658620834351,-5.29349660873413,-4.45888566970825,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,-5.95516115427017,-6.19018530845642,-6.24114093184471,-6.09510749578476,-5.74293375015259,-5.18093812465668,-4.41274964809418,-3.45091557502747,-2.31790316104889,-1.04623720049858,0.322450280189514,1.73939671367407,3.15157310664654,4.50509791076183,5.74880249798298,6.83745986223221,7.73436450958252,8.4128805398941,8.85691452026367,9.06033968925476,9.02561569213867,8.76187419891357,8.28299713134766,7.60586452484131,6.74928140640259,5.73355484008789,4.5807933807373,3.31578731536865,1.96708679199219,0.568010568618774,-0.842811703681946,-2.2216482758522,-3.5208330526948,-4.69078624248505,-5.68291521072388,-6.45290994644165,-6.96419095993042,-7.19091081619263,-7.12017726898193,-6.75318908691406,-6.10499286651611,-5.20297241210938,-4.08419036865234,-2.79193019866943,-1.37191200256348,0.13129997253418,1.67723941802979,3.23153209686279,4.76654386520386,6.26091575622559,7.69800758361816,9.06366895884275,10.3438093662262,11.5222396850586,12.5792798995972,13.4914321899414,14.2321863174438,14.773983001709,15.0909655094147,15.162148475647,14.9744877815247,14.5252892971039,13.8236308097839,12.8904542922974,11.7573974132538,10.4643425941467,9.05620431900024,7.57934379577637,6.07804906368256,4.59164106845856,3.15258622169495,1.78570795059204,0.508566856384277,-0.667198657989502,-1.73390197753906,-2.68555641174316,-3.51591825485229,-4.21704316139221,-4.77874350547791,-5.18890690803528,-5.43477690219879,-5.50475096702576,-5.39064231514931,-5.08974978327751,-4.60658848285675,-3.95393085479736,-3.15285158157349,-2.23202306032181,-1.22616925835609,-0.17387843132019,0.884741902351379,1.91044163703918,2.86691835522652,3.72233219444752,4.45029026269913,5.03021758794785,5.44720143079758,5.6916218996048,5.75844925642014,5.64678645133972,5.35946229100227,4.90304374694824,4.28788733482361,3.52862572669983,2.64456605911255,1.66006994247437,0.604607105255127,-0.487560272216797,-1.57821226119995,-2.62665987014771,-3.5915207862854,-4.43311977386475,-5.11592388153076,-5.61086368560791,-5.89760208129883,-5.96594715118408,-5.81673049926758,-5.46183490753174,-4.92326354980469,-4.23154449462891,-3.42352962493896,-2.53976249694824,-1.62185573577881,-0.709904670715332,0.159605026245117,0.955398082733154,1.65245771408081,2.23240518569946,2.68338108062744,2.99962615966797,3.18077111244202,3.23104518651962,3.15863481163979,2.97513747215271,2.69510090351105,2.33586704730988,1.91729652881622,1.46162641048431,0.993113547563553,0.537543594837189,0.121473491191864,-0.2287437915802,-0.488089323043823,-0.634293079376221,-0.649097681045532,-0.519590377807617,-0.239354610443115,0.190686702728271,0.76172924041748,1.45681047439575,2.25110483169556,3.11241388320923,4.00226545333862,4.87721586227417,5.69048285484314,6.39409375190735,6.9409431219101,7.28737239539623,7.39534372091293,7.23487555980682,6.78600764274597,6.04036498069763,5.00225430727005,3.68898415565491,2.13053107261658,0.368480205535889,-1.54569435119629,-3.55285549163818,-5.5887987613678,-7.5870304107666,-9.48154878616333,-11.2093378305435,-12.7128160595894,32767,32767,32767,-15.6178598403931,-15.4396250247955,-14.8887624740601,-13.9809408187866,-12.7440793514252,-11.2176253795624,32767,32767,32767,-3.35215646028519,-1.28987292945385,0.664065957069397,2.44088762998581,3.97991669178009,5.23168432712555,6.16069114208221,6.74704110622406,6.98755323886871,6.89552834630013,6.49970942735672,5.84241020679474,4.97676682472229,3.9636492729187,2.86846780776978,1.75754594802856,0.695318222045898,-0.258508682250977,-1.05122756958008,-1.63878154754639,-1.98696708679199,-2.07232284545898,-1.88242816925049,-1.41603755950928,-0.683074951171875,0.295737266540527,1.4893856048584,2.85701608657837,4.34919857978821,5.90881252288818,7.47306558489799,8.97533786296844,10.3478667736053,11.5247359275818,12.4450621604919,13.0565118789673,13.3185279369354,13.2053124904633,12.708042383194,11.8362416028976,10.6179949641228,9.09881688654423,7.33961695432663,5.41295170783997,3.39900660514832,1.38071393966675,-0.561228156089783,-2.35272900760174,-3.9306732416153,-5.24550461769104,-6.26322478055954,-6.96578428149223,-7.35063219070435,-7.42921423912048,-7.2247748374939,-6.76993441581726,-6.10424423217773,-5.27197551727295,-4.32037305831909,-3.29820919036865,-2.25499868392944,-1.24016427993774,-0.302658081054688,0.51002025604248,1.15274214744568,1.58431696891785,1.7691436111927,1.67942202091217,1.29727172851562,0.616513013839722,-0.355810642242432,-1.59881567955017,-3.07806825637817,-4.74679565429688,-6.54793864488602,-8.41702127456665,-10.2850925922394,-12.0824775695801,-13.7415375709534,-15.1995811462402,-16.4007902145386,-17.2978391647339,-17.8528218269348,-18.0377688407898,-17.8350064754486,-17.2373015880585,-16.2483882009983,-14.8833182752132,-13.1689789295197,-11.1445429325104,-8.86141419410706,-6.38309955596924,-3.78348827362061,-1.1450080871582,1.44452583789825,3.89551079273224,6.12130844593048,8.04259288311005,9.59173545241356,10.7168140411377,11.3843387365341,11.5812993049622,11.3155040740967,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-5.31312084197998,-6.09145450592041,-6.48388671875,-6.4703540802002,-6.04745864868164,-5.22935676574707,-4.04769515991211,-2.55110931396484,-0.803497314453125,1.11859512329102,3.12989044189453,5.14012908935547,7.05956649780273,8.80360794067383,10.2974319458008,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-2.70734620094299,-4.23522090911865,-5.55997788906097,-6.64181137084961,-7.44771385192871,-7.95341396331787,-8.14519095420837,-8.02172422409058,-7.59528970718384,-6.89237642288208,-5.95323276519775,-4.83055686950684,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-6.03132879734039,-5.98678600788116,-5.67144095897675,-5.08066928386688,-4.22136402130127,-3.11269235610962,-1.78613671660423,-0.284738183021545,1.33858495950699,3.02350328303874,4.70539689064026,6.31885689496994,7.80125430226326,9.09601641446352,10.155365049839,10.9422717690468,11.4315081834793,11.6098477840424,11.4755005836487,11.0370178222656,10.3119194507599,9.32523250579834,8.10825538635254,6.69756507873535,5.13430428504944,3.46377348899841,1.73501324653625,0.000288486480712891,-1.68569076061249,-3.26706858002581,-4.68866050243378,-5.89818358421326,-6.84891247749329,-7.50234842300415,-7.83073616027832,-7.81900978088379,-7.46591758728027,-6.78422546386719,-5.79972839355469,-4.54930591583252,-3.07816600799561,-1.43647766113281,0.324040412902832,2.15332794189453,4.00552845001221,5.84076881408691,7.62572908401489,9.333411693573,10.9419652223587,12.4330205917358,13.7898232936859,14.9955830574036,16.0323696136475,16.8808169364929,17.5206518173218,17.9320831298828,18.097797870636,18.0052757263184,17.6490607261658,17.0325412750244,16.1690273284912,15.0818333625793,13.8034062385559,12.3734159469604,10.8362441062927,9.23806667327881,7.62388920783997,6.03494188189507,4.50677645206451,3.06813406944275,1.740718126297,0.539745330810547,-0.524897575378418,-1.44710254669189,-2.22306108474731,-2.84996628761292,-3.32522559165955,-3.64622950553894,-3.81075167655945,-3.81774020195007,-3.66850310564041,-3.36782759428024,-2.92495599389076,-2.35417145490646,-1.67470145225525,-0.910173029871657,-0.0874943733215332,0.764752268791199,1.61796787381172,2.44521396420896,3.22265958786011,3.93052458763123,4.55354809761047,5.08092594146729,5.5057487487793,5.82421660423279,6.03453707695007,6.13605666160583,6.12848424911499,6.0116274356842,5.78529724478722,5.44987741112709,5.00707066059113,4.46089601516724,3.81867909431458,3.09193325042725,2.29691314697266,1.45462560653687,0.590540885925293,-0.266450881958008,-1.08542919158936,-1.83504772186279,-2.48563098907471,-3.01088333129883,-3.38967895507812,-3.60739707946777,-3.65679836273193,-3.53839111328125,-3.26031494140625,-2.83771800994873,-2.29177093505859,-1.64839887619019,-0.936888694763184,-0.188436985015869,0.565292835235596,1.29348802566528,1.96732449531555,2.56110560894012,3.05314655601978,3.42655444145203,3.66991031169891,3.77786159515381,3.75138819217682,3.59810853004456,3.3321161866188,2.97369021177292,2.54858595132828,2.08704614639282,1.62243282794952,1.18961754441261,0.823186874389648,0.555373907089233,0.414213180541992,0.421628952026367,0.591853141784668,0.930212020874023,1.43236398696899,2.0839672088623,2.86108136177063,3.7309033870697,4.65327429771423,5.58244836330414,6.46921706199646,7.2635118663311,7.91678142547607,8.38472557067871,8.62940812110901,8.62146019935608,8.34161877632141,7.78177857398987,6.9455828666687,5.84826365672052,4.5160436630249,2.98497939109802,1.29939031600952,-0.489990711212158,-2.32807540893555,-4.15754103660583,-5.92097687721252,-7.56278657913208,-9.03120100498199,-10.2798391580582,-11.2693412303925,-11.9686398748308,-12.3560215830803,-12.4201602935791,-12.1606507897377,-11.588299870491,-10.7252063751221,-9.60401232540607,32767,-6.76489186286926,-5.15396893024445,-3.49454867839813,-1.84752249717712,-0.271827459335327,1.17868661880493,2.45780968666077,3.52911794185638,4.3676962852478,4.96081238985062,5.3081935942173,5.42121165990829,5.3215856552124,5.03961282968521,4.61191534996033,4.07920253276825,3.48419547080994,2.86941170692444,2.27581191062927,1.74144816398621,1.30058670043945,0.98317289352417,0.814520835876465,0.814811706542969,0.998847961425781,1.37552309036255,1.94698619842529,2.70790433883667,3.64459490776062,4.73403990268707,5.94370394945145,7.23120379447937,8.54532325267792,9.82728981971741,11.0132184028625,12.0373001098633,12.8355088233948,13.3498902320862,13.5327191352844,13.3504686355591,12.7868831157684,11.8451895713806,10.5488134622574,8.94064080715179,7.08108630776405,5.04429566860199,2.9139004945755,0.777800798416138,-1.27722418308258,-3.17034469544888,-4.83153307437897,-6.20458602905273,-7.24961233139038,-7.94379734992981,-8.2813401222229,-8.27219116687775,-7.94007560610771,-7.32009133696556,-6.45617985725403,-5.39874768257141,-4.20250678062439,-2.92466259002686,-1.62360715866089,-0.35761547088623,0.815942287445068,1.84195852279663,2.66870558261871,3.24953150749207,3.54449164867401,3.52251446247101,3.16349947452545,2.46000833809376,1.41891777515411,0.0621705055236816,-1.57326650619507,-3.43628418445587,-5.46346288919449,-7.5817457139492,-9.71143972873688,-11.7702741622925,-13.6768097877502,-15.3541898727417,-16.7332286834717,-17.7552366256714,-18.3741464614868,-18.5579857826233,-18.2898654937744,-17.5682644844055,32767,-14.8356590270996,-12.8968380242586,-10.6469573974609,-8.15358376502991,-5.49397420883179,-2.75207090377808,-0.0159502029418945,2.62553405761719,5.08598661422729,7.28538370132446,9.15323090553284,10.6315016746521,11.6773838996887,12.2647869586945,12.3855917453766,12.0496829748154,11.2843230962753,10.1327769756317,8.65252113342285,32767,32767,32767,32767,32767,32767,-4.35665607452393,-5.6022891998291,-6.48248863220215,-6.95392417907715,-6.98970031738281,-6.58107757568359,-5.73859214782715,-4.4921817779541,-2.89064025878906,-0.999752044677734,1.1004638671875,3.3198127746582,5.5618896484375,7.72968292236328,9.73041915893555,11.4803199768066,12.9089851379395,13.9622421264648,14.6044979095459,14.8192386627197,14.6084842681885,32767,32767,32767,32767,32767,32767,32767,32767,0.13472843170166,-1.82796859741211,-3.64884948730469,-5.27833127975464,-6.67208909988403,-7.79208374023438,-8.60816049575806,-9.09961128234863,-9.25683498382568,-9.08268880844116,-8.59336185455322,-7.81846284866333,-6.80041551589966,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-4.03191894292831,-3.95286178588867,-3.53533861041069,-2.78568259812891,-1.72584995627403,-0.392717003822327,1.16344146616757,2.88129425048828,4.69144833087921,6.51992166042328,8.29186451435089,9.93524849414825,11.3842667341232,12.5822395086288,13.4838293790817,14.0564988255501,14.2811748981476,14.152230411768,13.6768570691347,12.874031484127,11.7731986641884,10.4128540158272,8.83911919593811,7.10431045293808,5.26558896899223,3.38353818655014,1.52065771818161,-0.260274291038513,-1.89807391166687,-3.33524012565613,-4.52010202407837,-5.40907096862793,-5.96864080429077,-6.17711544036865,-6.02571201324463,-5.51895427703857,-4.67433738708496,-3.52107429504395,-2.09817123413086,-0.451931953430176,1.36690998077393,3.30606174468994,5.31432247161865,7.34372997283936,9.35115146636963,11.2989315986633,13.1550171375275,14.8923208042979,16.4877753257751,17.9211430549622,19.1739449501038,20.2287111282349,21.0687398910522,21.6783428192139,22.0436716079712,22.1539096832275,22.0027055740356,21.5895748138428,20.9210081100464,20.0111265182495,18.8816957473755,17.561559677124,16.0853199958801,14.491641998291,12.8212580680847,11.1148698329926,9.41124629974365,7.74574428796768,6.14930462837219,4.64800715446472,3.26312971115112,2.01162958145142,0.906926155090332,-0.0403404235839844,-0.821614742279053,-1.43002080917358,-1.86028552055359,-2.10903072357178,-2.17529201507568,-2.06129515171051,-1.77312648296356,-1.32130944728851,-0.72109180688858,0.00779968500137329,0.841711208224297,1.75403529405594,2.71661853790283,3.70115602016449,4.68063926696777,5.63065075874329,6.53022503852844,7.36232805252075,8.11387968063354,8.77532386779785,9.33993911743164,9.80282878875732,10.1600437164307,10.407742023468,10.5417928695679,10.5575149059296,10.4501028060913,10.21528840065,9.85037219524384,9.35540199279785,8.73440444469452,7.99645805358887,7.15633726119995,6.23495149612427,5.25897979736328,4.26010417938232,3.27382516860962,2.33751583099365,1.48859024047852,0.762203216552734,0.189165115356445,-0.206025123596191,-0.406745910644531,-0.405414581298828,-0.204093933105469,0.185482025146484,0.742424964904785,1.4377179145813,2.23572039604187,3.09601676464081,3.97553408145905,4.83071374893188,5.61986994743347,6.30531477928162,6.85533666610718,7.24585890769958,7.46183085441589,7.49793314933777,7.35906267166138,7.06003701686859,6.62493824958801,6.08581948280334,5.48106622695923,4.85325658321381,4.2468558549881,3.70576357841492,3.27069008350372,2.97694009542465,2.85220937430859,2.91494785249233,3.17316368222237,3.62384501099586,4.25288997590542,5.03583709895611,5.93893349170685,6.92097795009613,7.93534874916077,8.93227934837341,9.86152362823486,10.6746258735657,11.3274564743042,11.7819876670837,12.0081305503845,11.9848785400391,11.7009952068329,11.1553950309753,10.3568506240845,9.32352370023727,8.0820620059967,6.66646611690521,5.11683011054993,3.47791385650635,1.7976975440979,0.125804424285889,-1.48792457580566,-2.99511528015137,-4.35029888153076,-5.51256918907166,-6.44705104827881,-7.12621569633484,-7.53130793571472,-7.65316009521484,-7.49287033081055,-7.062087059021,-6.38251137733459,32767,-4.40915703773499,-3.19930028915405,-1.9044303894043,-0.574430465698242,0.742022037506104,2.00009298324585,3.16086101531982,4.19293928146362,5.07368183135986,5.78947710990906,6.33576488494873,6.71615386009216,6.94129502773285,7.0275102853775,6.99514615535736,6.86714649200439,6.66789388656616,6.42201280593872,6.15398240089417,5.88769698143005,5.64636945724487,5.45253992080688,5.3281192779541,5.2939395904541,5.36936545372009,5.57133221626282,5.9129421710968,6.40196585655212,7.03915083408356,7.81640470027924,8.71575227379799,9.70828503370285,10.7545207738876,11.805196762085,12.8033399581909,13.6872749328613,14.3942770957947,14.8649020195007,15.0473828315735,14.9018692970276,14.403902053833,13.5471329689026,12.3445830345154,10.828560590744,9.04936277866364,7.07219855487347,4.97354799509048,2.83654248714447,0.745985507965088,-1.21621644496918,-2.9758759662509,-4.4697128534317,-5.64833378791809,-6.47756338119507,-6.93924117088318,-7.03081846237183,-6.76432353258133,-6.16479277610779,-5.26846122741699,-4.12093544006348,-2.77530717849731,-1.29043579101562,0.270538330078125,1.84180784225464,3.35616874694824,4.74697136878967,5.94978904724121,6.90477427840233,7.55877411365509,7.86809396743774,7.80108022689819,7.34023451805115,6.484370470047,5.24971187114716,3.67028224468231,1.79729628562927,-0.302514553070068,-2.54956698417664,-4.85464334487915,-7.12345719337463,-9.26078045368195,-11.1751956939697,-12.7832517623901,-14.0134954452515,-14.809693813324,-15.1331944465637,-14.9644870758057,-14.3036448955536,32767,32767,32767,32767,-4.89569616317749,-2.25305509567261,0.445996761322021,3.11010122299194,5.65078115463257,7.98545384407043,10.0406703948975,11.7543810456991,13.077677488327,13.9764888286591,14.4320147037506,14.4411993026733,14.0163600444794,13.1844263076782,11.9858415126801,10.4733064174652,8.7098748087883,32767,32767,32767,32767,32767,-2.80809211730957,-4.13118934631348,-5.09313011169434,-5.64477920532227,-5.75259780883789,-5.4008674621582,-4.59320831298828,-3.35316848754883,-1.72401428222656,0.232749938964844,2.43984222412109,4.80796432495117,7.23953247070312,9.63416290283203,11.8933715820312,13.9255714416504,15.6505432128906,17.0028190612793,17.9346008300781,18.4169540405273,18.4400482177734,18.0123271942139,32767,32767,32767,32767,32767,32767,32767,32767,1.37083053588867,-0.752187728881836,-2.69614505767822,-4.40747356414795,-5.83906745910645,-6.95180320739746,-7.71601438522339,-8.11302900314331,-8.13655757904053,-7.79371309280396,-7.10539865493774,-6.10629463195801,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-2.05817055702209,-1.55078530311584,-0.691050291061401,0.483863592147827,1.92252564430237,3.56190472841263,5.33055555820465,7.15215611457825,8.94920587539673,10.6466002464294,12.1749322414398,13.4733340740204,14.4917171001434,15.1923565864563,15.5507836341858,15.5560824871063,15.2105813026428,14.5291516780853,13.5380821228027,12.273794054985,10.7813577651978,9.11290168762207,7.32599258422852,5.4818811416626,3.64370536804199,1.87461566925049,0.235803604125977,-1.21552801132202,-2.42811346054077,32767,-3.97290134429932,-4.24806022644043,-4.17255973815918,-3.74682712554932,-2.98294353485107,-1.90366744995117,-0.541044235229492,1.06548404693604,2.87119197845459,4.82827472686768,6.8879508972168,9.00227069854736,11.1256527900696,13.2157864570618,15.2342399358749,17.1465784907341,18.9222147464752,20.53404712677,21.9580764770508,23.1731367111206,24.1608180999756,24.9055767059326,25.3951387405396,25.6210126876831,25.5791597366333,25.2706098556519,24.7019023895264,23.8852958679199,22.838659286499,21.5850524902344,20.1519203186035,18.5701069831848,16.8727521896362,15.0941023826599,13.2684400081635,11.4292736053467,9.60871808230877,7.83716809749603,6.14317655563354,4.55348134040833,3.09318923950195,1.78578424453735,0.653069019317627,-0.285134792327881,-1.01151657104492,-1.51204204559326,-1.77679514884949,-1.80096530914307,-1.58563113212585,-1.13838839530945,-0.473670125007629,0.387492895126343,1.41801053285599,2.58570545911789,3.85479331016541,5.18738698959351,6.54518175125122,7.89111399650574,9.19069337844849,10.4130835533142,11.5317940711975,12.524956703186,13.375283241272,14.0696458816528,14.59858751297,14.9557209014893,15.1373391151428,15.1419577598572,14.9703578948975,14.6257462501526,14.1141886711121,13.4451739788055,12.6322975158691,11.6938492059708,10.6531075537205,9.53857666254044,8.38351356983185,7.22519731521606,6.10381674766541,5.06062793731689,4.13621377944946,3.36820554733276,2.78917074203491,2.42453050613403,2.29082298278809,2.39434337615967,2.7303638458252,3.28296971321106,4.02554965019226,4.92192208766937,5.92806023359299,6.99431538581848,8.06801986694336,9.09619426727295,10.02849817276,10.8198761940002,11.4330196380615,11.8403172492981,12.0254468917847,11.9840638637543,11.7241187095642,11.2652561664581,10.6377458572388,9.88068652153015,9.03991079330444,8.1653528213501,7.30838465690613,6.51908016204834,5.84343314170837,5.32112789154053,4.98338937759399,4.85156273841858,4.93610453605652,5.23628854751587,5.74035310745239,6.42640614509583,7.26358008384705,8.21385550498962,9.23395013809204,10.2773423194885,11.2965927124023,12.2452096939087,13.0797657966614,13.761251449585,14.2566151618958,14.5396814346313,14.5917949676514,14.4023396968842,13.9687392711639,13.2964961528778,12.3988959789276,11.2965767383575,10.0170510411263,8.59396839141846,7.06633758544922,5.47744488716125,3.87375593185425,2.30339288711548,0.814635276794434,-0.545949459075928,-1.73534774780273,-2.71589326858521,-3.45724296569824,-3.93770837783813,-4.14556837081909,-4.0797758102417,-3.74998474121094,32767,32767,32767,-0.319799900054932,0.87157678604126,2.10621500015259,3.33933115005493,4.52991652488708,5.64243721961975,6.64820051193237,7.52588987350464,8.26192617416382,8.84997200965881,9.29029810428619,9.5888729095459,9.75625371932983,9.80659770965576,9.75689172744751,9.62607645988464,9.43483304977417,9.20519208908081,8.96039247512817,8.72472882270813,8.52333927154541,8.38149333000183,8.32390379905701,8.37347054481506,8.5496768951416,8.86688303947449,9.33250522613525,9.94514161348343,10.6934114694595,11.5548632144928,12.4961862564087,13.4738292694092,14.4357810020447,15.3242797851562,16.0790324211121,16.641152381897,16.9572043418884,16.983124256134,16.6875925064087,16.0548458099365,15.0862078666687,13.8006279468536,12.2340862751007,10.4375445246696,8.47432348877192,6.41654920578003,4.34115624427795,2.32608330249786,0.445948839187622,-1.23093646764755,-2.6457771062851,-3.75110256671906,-4.5124437212944,-4.90896435081959,-4.93365931510925,-4.59299123287201,-3.90625357627869,-2.90475034713745,-1.63069820404053,-0.136031150817871,1.51887083053589,3.26681971549988,5.03534436225891,6.74912464618683,8.3322325386107,9.71116816997528,10.8176612854004,11.592188835144,11.9872527122498,11.9700975418091,11.5255780220032,10.6577022075653,9.39062237739563,7.76835960149765,5.85341835021973,3.72426295280457,1.47203087806702,-0.804242134094238,-3.00219583511353,-5.02150103449821,-6.76875376701355,-8.16229581832886,-9.13624715805054,-9.64356780052185,-9.65814864635468,-9.1755668669939,32767,32767,32767,32767,-0.560319900512695,1.93226718902588,4.48001623153687,6.99157238006592,9.37980127334595,11.564751625061,13.4765315055847,15.0571684837341,16.2617295980453,17.0595235824585,17.4339661002159,17.3827182650566,16.9171050190926,16.0613411068916,14.8516439199448,13.33531498909,11.5693192481995,32767,32767,32767,32767,32767,-0.233423233032227,-1.67232131958008,-2.76601600646973,-3.46008682250977,-3.71429061889648,-3.50518989562988,-2.82796478271484,-1.69756317138672,-0.148910522460938,1.76405715942383,3.97030258178711,6.38496780395508,8.91267776489258,11.4526519775391,13.9032325744629,16.1668586730957,18.1546783447266,19.7903213500977,21.013500213623,21.7818794250488,22.0722160339355,21.880485534668,21.2209434509277,20.1244049072266,18.6360778808594,16.8127956390381,14.7203044891357,12.4307136535645,10.0196971893311,7.56424140930176,5.14053726196289,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-2.12598037719727,-1.53067445755005,-0.60678768157959,0.600565910339355,2.03501486778259,3.63180446624756,5.32091047242284,7.03026747703552,8.68887877464294,10.2296772003174,11.5920577049255,12.7239110469818,13.5831952095032,14.1389601230621,14.3719310760498,14.274605512619,13.8510384559631,13.116224527359,12.0953435897827,10.8227298259735,9.34070324897766,7.69829750061035,5.94979047775269,4.15314718335867,2.36834979057312,0.655598640441895,-0.926572799682617,32767,32767,-4.36788558959961,-4.93943786621094,-5.17476558685303,-5.05998992919922,-4.5920877456665,-3.77870464324951,-2.63762855529785,-1.1958179473877,0.511914253234863,2.44439792633057,4.55575561523438,6.79701995849609,9.11780595779419,11.4676189422607,13.7971740961075,16.0593749284744,18.210177898407,20.2091779708862,22.0201187133789,23.6112947463989,24.9558811187744,26.0321893692017,26.8239088058472,27.320255279541,27.5160903930664,27.4119281768799,27.0138177871704,26.3330669403076,25.3858518600464,24.1927461624146,22.7780694961548,21.1692609786987,19.396279335022,17.4910035133362,15.4867172241211,13.4177992343903,11.3194360733032,9.22745299339294,7.17814922332764,5.20806193351746,3.35375237464905,1.65127801895142,0.135532379150391,-1.16067504882812,-2.20773506164551,-2.98053646087646,-3.45975112915039,-3.63318133354187,-3.49682724475861,-3.05571126937866,-2.32433593273163,-1.32651340961456,-0.0948340892791748,1.33037286996841,2.90269857645035,4.57142496109009,6.28362655639648,7.98637747764587,9.62874674797058,11.163667678833,12.5494747161865,13.7510447502136,14.7405662536621,15.4978232383728,16.0102143287659,16.2724480628967,16.2861642837524,16.0592312812805,15.6052575111389,14.94300365448,14.0958981513977,13.0915558338165,11.9614179134369,10.7403314113617,9.46594244241714,8.1782488077879,6.91860222816467,5.72873532772064,4.6496148109436,3.71978163719177,2.97398138046265,2.44138836860657,2.1440896987915,2.09565377235413,2.30004453659058,2.75086712837219,3.43117296695709,4.31374895572662,5.36204580962658,6.53157740831375,7.77185142040253,9.02872157096863,10.2469899654388,11.3730573654175,12.357714176178,13.1585483551025,13.7421307563782,14.0856027603149,14.1779108047485,14.0200924873352,13.6252388954163,13.0175595283508,12.2310571670532,11.3075571060181,10.2945528030396,9.24260854721069,8.2028660774231,7.22456789016724,6.3526132106781,5.62572455406189,5.07468640804291,4.72133028507233,4.57779836654663,4.64648354053497,4.92024374008179,5.38321805000305,6.01176977157593,6.77591729164124,7.64073157310486,8.56777477264404,9.51679706573486,10.4469861984253,11.3185529708862,12.0936374664307,12.7375998497009,13.219841003418,13.5145659446716,13.6016232967377,13.466986656189,13.1034317016602,12.5109589099884,11.6971136331558,10.6772763431072,9.47456163167953,8.11962866783142,6.64998459815979,5.10911107063293,3.54502487182617,2.00863885879517,0.551649570465088,-0.775688171386719,-1.92686128616333,-2.86157464981079,32767,32767,32767,32767,32767,32767,32767,-0.956732749938965,0.210848569869995,1.4537718296051,2.72271800041199,3.9705935716629,5.15466153621674,6.23838293552399,7.19250023365021,7.99596625566483,8.6359778046608,9.10781461000443,9.41429507732391,9.56487774848938,9.57472956180573,9.46383571624756,9.25581860542297,8.97729539871216,8.65692639350891,8.32467365264893,8.01107335090637,7.74646759033203,7.55991721153259,7.4783034324646,7.52499771118164,7.71848392486572,8.07097816467285,8.58709388971329,9.26253414154053,10.083487033844,11.0260028839111,12.0565452575684,13.132707118988,14.2049083709717,15.2187347412109,16.1176252365112,16.8460955619812,17.3530604839325,17.5949864387512,17.53870844841,17.1638457775116,16.4642163515091,15.4486068487167,14.1406669020653,12.5777046903968,10.8090147078037,8.89347892999649,6.89666128158569,4.88803339004517,2.93746960163116,1.11276936531067,-0.52333065867424,-1.9151046872139,-3.01597088575363,-3.78987917304039,-4.21243113279343,-4.27156138420105,-3.96797335147858,-3.31530857086182,-2.33995652198792,-1.0805516242981,0.412832736968994,2.08000731468201,3.85213100910187,5.65419432520866,7.40748620033264,9.03292536735535,10.4541893005371,11.6016817092896,12.4161748886108,12.8519759178162,12.8802487850189,12.4909551143646,11.6943876743317,10.5213105678558,9.02203890681267,7.26434707641602,5.33052957057953,3.31295788288116,1.30965888500214,32767,-2.26511538028717,-3.6585265994072,-4.69083128869534,-5.30894255638123,-5.4795298576355,-5.19014310836792,-4.44954395294189,-3.28648471832275,32767,32767,2.19650173187256,4.44658374786377,6.76895523071289,9.07761430740356,11.2898163795471,13.3289403915405,15.12721824646,16.6275351047516,17.7844395637512,18.5653690099716,18.9505172967911,18.9331057071686,18.5189586877823,17.7259690761566,32767,32767,32767,32767,32767,32767,32767,32767,1.45167541503906,-0.121566772460938,-1.37781143188477,-2.2581729888916,-2.71646690368652,-2.72200202941895,-2.26169586181641,-1.34150314331055,0.0129280090332031,1.75676727294922,3.82735061645508,6.14698028564453,8.62564086914062,11.1657524108887,13.6662979125977,16.0276069641113,18.1560707092285,19.9680633544922,21.3939514160156,22.380729675293,22.8936939239502,22.9175491333008,22.4562301635742,21.5318984985352,20.1833992004395,18.4638385772705,16.4379901885986,14.179651260376,11.7684421539307,9.28707695007324,6.81858062744141,4.44382858276367,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-4.6191782951355,-4.34171772003174,-3.75169706344604,-2.87914562225342,-1.76464891433716,-0.457337856292725,0.987331628799438,2.50991895794868,4.04931437969208,5.54495429992676,6.93887364864349,8.17751491069794,9.21329420804977,10.0058621764183,10.5231595039368,10.7421708703041,10.6494992375374,10.241649389267,9.52521371841431,8.51674723625183,7.24249184131622,5.73787438869476,4.04670917987823,2.22016459703445,0.315470695495605,32767,32767,32767,32767,32767,32767,32767,-10.2999238967896,-10.2514276504517,-9.79174327850342,32767,-7.64817333221436,-6.00000858306885,-4.01075649261475,-1.72557926177979,0.801973342895508,3.51191282272339,6.3397171497345,32767,12.0809602737427,14.8615584373474,17.4981117248535,19.9335107803345,22.1170520782471,24.0055370330811,25.5640268325806,26.7663507461548,27.5952367782593,28.0422563552856,28.1074800491333,27.7988920211792,27.1316566467285,26.1272687911987,24.8126697540283,23.219313621521,21.3823041915894,19.3396549224854,17.1316213607788,14.8001255989075,12.388400554657,9.94062447547913,7.50162100791931,5.11652666330338,2.83032834529877,0.687400579452515,-1.26927852630615,-2.99905633926392,-4.46470856666565,-5.63373100757599,-6.47972166538239,-6.98369604349136,-7.13537821173668,-6.93420912325382,-6.3900278583169,-5.52340045571327,-4.36527802050114,-2.95631149411201,-1.34562695026398,0.411038815975189,2.253338098526,4.11870455741882,5.94489371776581,7.67237210273743,9.24662756919861,10.6201756000519,11.754154920578,12.6195113658905,13.1976070404053,13.4804453849792,13.4703648090363,13.179504275322,12.6287078857422,11.84645652771,10.8675154745579,9.73157039284706,8.48178923130035,7.1634932756424,5.82284688949585,4.50548338890076,3.25551676750183,2.11419439315796,1.11889982223511,0.302190780639648,-0.309338569641113,-0.6957688331604,-0.844694137573242,-0.751790046691895,-0.421160697937012,0.134588479995728,0.894513607025146,1.82996153831482,2.9054194688797,4.07984435558319,5.30816850066185,6.54312032461166,7.73723113536835,8.84488427639008,9.82426190376282,10.6393129825592,11.2612602710724,11.6699101924896,11.8543946743011,11.8136560916901,11.5561406612396,11.099338054657,10.4686319828033,9.69596326351166,8.81807816028595,7.874760389328,6.90681384503841,5.95427751541138,5.05471956729889,4.24164152145386,3.54341614246368,2.98227596282959,2.57389712333679,2.32708072662354,2.24397253990173,2.32029819488525,2.54600441455841,2.90584945678711,3.3802855014801,3.94619606435299,4.57760390639305,5.24658036231995,5.92377984523773,6.57934594154358,7.18331003189087,7.70649170875549,8.12111067771912,8.40155744552612,8.52533388137817,8.47385907173157,8.23353362083435,7.79664170742035,7.16218733787537,6.33669322729111,5.33457699418068,4.17837452888489,2.89837884902954,1.53198528289795,0.122453451156616,-1.28272223472595,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-3.20066249370575,-2.032281935215,-0.841674596071243,0.322936482727528,1.41746699810028,2.40410482883453,3.25273501873016,3.94219934940338,4.4606066942215,4.80540543794632,4.98291125893593,5.00736663816497,4.89981201291084,4.68684232234955,4.3989394903183,4.0692743062973,3.73213243484497,3.42158102989197,3.1702663898468,3.0082311630249,2.9617555141449,3.05245745182037,3.29633629322052,3.70289921760559,4.27454507350922,5.00605547428131,5.88417553901672,6.88786745071411,7.98835599422455,9.15018737316132,10.3321226239204,11.4887417554855,12.5723599493504,13.535025537014,14.3308328390121,14.9182342290878,15.2621026039124,15.3356326818466,15.1219238042831,14.614883184433,13.8197885751724,12.7532645463943,11.4425491094589,9.92452144622803,8.24420547485352,6.45293498039246,4.60657703876495,2.76310861110687,0.980890274047852,-0.683595240116119,-2.17736548185349,-3.45286953449249,-4.46951651573181,-5.19506466388702,-5.60679620504379,-5.69250810146332,-5.45129686594009,-4.89405143260956,-4.04356330633163,-2.93427038192749,-1.61150288581848,-0.130421459674835,1.44596636295319,3.04895162582397,4.60709059238434,32767,32767,8.3213803768158,9.04148292541504,9.43115258216858,9.46966290473938,9.1537938117981,8.49838280677795,7.53599286079407,6.31554424762726,4.90014624595642,3.36360192298889,1.78680047392845,0.253282923717052,-1.15499496459961,-2.36213564872742,-3.30215501785278,-3.92228841781616,-4.18548679351807,-4.07182264328003,-3.57925701141357,-2.72303771972656,-1.53456497192383,-0.0592107772827148,1.64626979827881,3.51654148101807,5.48120212554932,7.467689037323,9.40433359146118,11.2228574752808,12.860889673233,14.2636806964874,15.3852806091309,16.1899161338806,16.6522463560104,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,2.69863128662109,0.880346298217773,-0.739126205444336,-2.09136390686035,-3.11561965942383,-3.76189422607422,-3.99375343322754,-3.79053688049316,-3.1490592956543,-2.08452796936035,-0.630542755126953,1.16181564331055,3.22608184814453,5.48263740539551,7.84271240234375,10.2120742797852,12.4953651428223,14.6005153656006,16.4425983428955,17.947998046875,19.0572834014893,19.7274684906006,19.9335994720459,19.6693992614746,18.9468784332275,17.7954139709473,16.2599048614502,14.3985042572021,12.2801837921143,9.98151969909668,7.5838680267334,5.17024230957031,2.82254600524902,0.618846893310547,-1.36932945251465,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-6.40436470508575,-5.54025381803513,-4.47339650988579,-3.24531257152557,-1.90372647345066,-0.501060128211975,0.907180786132812,2.26409363746643,3.5131299495697,4.59984397888184,5.47370886802673,6.08984971046448,6.41075229644775,6.4078254699707,6.06284189224243,5.36910319328308,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-14.3417625427246,-12.1992201805115,-9.61345314979553,-6.6457188129425,-3.36976957321167,0.130693912506104,32767,32767,32767,14.5301632881165,17.7688126564026,20.6961073875427,23.2445631027222,25.3588995933533,26.9972681999207,28.1318211555481,28.7488574981689,28.8484606742859,28.4436554908752,27.5592555999756,26.2304282188416,24.5011348724365,22.4224257469177,20.0507574081421,17.4464325904846,14.6720833778381,11.7912731170654,8.86740684509277,5.96263027191162,3.13691490888596,0.447222471237183,-2.05336028337479,-4.31630995869637,-6.29853403568268,-7.96321493387222,-9.28064405918121,-10.2291098833084,-10.7957018613815,-10.9769880771637,-10.7795475721359,-10.2202224731445,-9.32604169845581,-8.13383430242538,-6.68925470113754,-5.04559400677681,-3.26213456690311,-1.40202778577805,0.469871744513512,2.28944200277328,3.99578249454498,5.53348207473755,6.85474848747253,7.92117464542389,8.70505595207214,9.19025407731533,9.37243002653122,9.25887203216553,8.86769938468933,8.22678899765015,7.37211227416992,6.34602880477905,5.19529294967651,3.96904850006104,2.71680402755737,1.48661947250366,0.323408126831055,-0.732615947723389,-1.64692211151123,-2.39176940917969,-2.94673204421997,-3.29899168014526,-3.44354295730591,-3.38291025161743,-3.12678289413452,-2.69146203994751,-2.0990138053894,-1.37633991241455,-0.554147243499756,0.334307193756104,1.25441765785217,2.1715943813324,3.05249667167664,3.86631143093109,4.58587276935577,5.1887019276619,5.6576817035675,5.98176184296608,6.15610319375992,6.18212950229645,6.06718116998672,5.82401478290558,5.46985554695129,5.02551174163818,4.51414036750793,3.96009802818298,3.38769578933716,2.82012128829956,2.27839469909668,1.78063774108887,1.3415150642395,0.971856594085693,0.678658485412598,0.465150356292725,0.331192016601562,0.273612022399902,0.2868971824646,0.363565444946289,0.494808673858643,0.670805931091309,0.881160259246826,1.11502456665039,1.36111307144165,1.60781311988831,1.84295845031738,2.05390167236328,2.22728681564331,2.34925532341003,2.40555346012115,2.38192945718765,2.26472750306129,2.04156345874071,1.70227414369583,1.23984864354134,0.651361733675003,-0.0610877983272076,-0.88975702226162,-1.8207736313343,-2.83416247367859,-3.90415847301483,-4.99997997283936,-6.08708214759827,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-6.69204485416412,-5.82460850477219,-4.99199020862579,-4.22801196575165,-3.56051278114319,-3.010089635849,-2.58904826641083,-2.30122542381287,-2.14203977584839,-2.09911692142487,-2.1533830165863,-2.28037248551846,-2.45169004797935,-2.63688480854034,-2.80484890937805,-2.92558097839355,-2.97158491611481,-2.91903960704803,-2.74887681007385,-2.44751214981079,-2.00735694169998,-1.42702727019787,-0.711498737335205,0.128207087516785,1.07537245750427,32767,32767,32767,32767,32767,7.52908372879028,8.43426990509033,32767,9.81087970733643,10.231397151947,10.4476141929626,10.447479724884,10.225414276123,9.78244400024414,9.12627696990967,8.27104759216309,7.23677492141724,6.04881453514099,4.73709225654602,3.3351743221283,32767,0.408178806304932,-1.03981256484985,-2.4257100475952,-3.71183216571808,-4.86270594596863,-5.8460807800293,-6.63394498825073,-7.2035436630249,-7.5383734703064,-7.62910771369934,-7.47442364692688,-7.08156538009644,-6.46661007404327,-5.65446978807449,-4.67848253250122,-3.57941913604736,-2.40418863296509,-1.20385885238647,32767,1.0592565536499,2.01944351196289,2.80454969406128,3.37862253189087,3.71579265594482,3.80218029022217,3.6367621421814,3.23166370391846,2.61171293258667,1.81333136558533,0.882499694824219,-0.127577982842922,-1.15937483310699,-2.15399289131165,-3.05442214012146,-3.80839061737061,-4.37103748321533,-4.70705795288086,-4.79211044311523,-4.61391162872314,-4.17230319976807,-3.47904396057129,-2.55669212341309,-1.43733310699463,-0.160909652709961,1.22689247131348,2.67651081085205,4.13654899597168,5.55552577972412,6.88383865356445,8.07513952255249,9.08750915527344,9.88491010665894,10.4377853870392,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.340555191040039,-1.25876426696777,-2.7347412109375,-4.02423858642578,-5.06879806518555,-5.81754302978516,-6.22987747192383,-6.2778205871582,-5.94783210754395,-5.24210166931152,-4.17905426025391,-2.79309463500977,-1.13327980041504,0.738080978393555,2.74859046936035,4.81848907470703,6.86438941955566,8.80290985107422,10.5542449951172,12.0459289550781,13.215895652771,14.0148296356201,14.4082746505737,14.3778247833252,13.9215259552002,13.053653717041,11.803747177124,10.2150325775146,8.34264945983887,6.25098991394043,4.01128387451172,1.6987190246582,-0.610197067260742,-2.84029960632324,-4.92056274414062,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-6.04215106368065,-4.59429669380188,-3.05992698669434,-1.50930547714233,-0.016505241394043,1.34343004226685,2.49747133255005,3.37772512435913,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-21.2988665103912,-19.017315030098,-16.1298214197159,-12.7049523591995,-8.83053410053253,-4.61054837703705,32767,32767,32767,32767,32767,32767,32767,32767,32767,30.5676417350769,31.2795987129211,31.3007688522339,30.64954662323,29.362859249115,27.494170665741,25.1111607551575,22.2929968833923,19.1274790763855,15.70814037323,12.1313474178314,8.49347472190857,4.8884539604187,1.40538287162781,-1.8735356926918,-4.87471652030945,-7.53475785255432,-9.80149674415588,-11.6349720954895,-13.0080428123474,-13.9066917896271,-14.3301186561584,-14.2905099391937,-13.8125178813934,-12.9324314594269,-11.6970958709717,-10.162442445755,-8.39186352491379,-6.45408017933369,-4.42106848955154,-2.36569726467133,-0.359182357788086,1.53126484155655,3.24479097127914,4.72907483577728,5.94208192825317,6.85349774360657,7.44567346572876,7.71402084827423,7.66689102351665,7.32481163740158,6.71934247016907,5.8913140296936,4.88886117935181,3.7649884223938,2.57516193389893,1.37476348876953,0.216691970825195,-0.850911140441895,-1.7864990234375,-2.55669498443604,-3.13746070861816,-3.51455020904541,-3.68383455276489,-3.65089702606201,-3.43029022216797,-3.04448747634888,-2.5224289894104,-1.89785528182983,-1.20762777328491,-0.489790916442871,0.21820068359375,0.881166458129883,1.4677906036377,1.95190215110779,2.31354403495789,2.53962469100952,2.62438988685608,2.56933987140656,2.38305008411407,2.08035087585449,1.68161821365356,1.21141338348389,0.697206497192383,0.167884111404419,-0.347759246826172,-0.822591304779053,-1.23242902755737,-1.5573034286499,-1.7823691368103,-1.89858245849609,-1.90300893783569,-1.79882764816284,-1.59491777420044,-1.30521774291992,-0.947754383087158,-0.543510437011719,-0.115128040313721,0.31442928314209,0.723044872283936,1.0908055305481,1.40070486068726,1.63953542709351,1.79813480377197,1.87162399291992,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-6.79039454460144,-7.47751212120056,-8.14318180084229,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-8.78283505886793,-8.64280433952808,-8.54887567460537,-8.49367465917021,-8.46508736908436,-8.44710856676102,-8.42099088430405,-8.36650496721268,-8.26323115825653,-8.09213054180145,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,4.30804967880249,3.73544931411743,3.08098840713501,2.35766267776489,1.57843637466431,0.756078720092773,-0.0968747138977051,-0.967981815338135,-1.84475409984589,-2.71447294950485,-3.56387591362,-4.3790340423584,-5.14533662796021,-5.84759330749512,-6.47030925750732,-6.99814414978027,-7.41654634475708,-7.71253323554993,-7.87559461593628,-7.89862155914307,-7.77861511707306,-7.5175719410181,-7.12283682823181,-6.60740184783936,32767,-5.29322338104248,-4.54548358917236,-3.77702856063843,-3.01990985870361,-2.30619335174561,-1.66606950759888,-1.12646627426147,-0.70934009552002,-0.430521011352539,-0.298853874206543,-0.315650224685669,-0.474617123603821,-0.762237973511219,-1.15861290693283,-1.6384654045105,-2.17256093025208,-2.729323387146,-3.27637147903442,-3.78220224380493,-4.21768856048584,-4.55722045898438,-4.77993202209473,-4.87033557891846,-4.81897926330566,-4.62243270874023,-4.28347492218018,-3.81072521209717,-3.21820545196533,-2.52481651306152,-1.75365543365479,-0.931358337402344,-0.0870580673217773,0.74828052520752,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-1.38542175292969,-2.54324150085449,-3.67758560180664,-4.73588562011719,-5.66596984863281,-6.41860389709473,-6.95012855529785,-7.22475242614746,-7.21673583984375,-6.91201591491699,-6.30943298339844,-5.4212703704834,-4.27303791046143,-2.90300941467285,-1.36030960083008,0.296646118164062,2.00292205810547,3.68963432312012,5.28693294525146,6.72715473175049,7.94775295257568,8.89366769790649,9.51979637145996,9.79276180267334,9.69221782684326,9.21144962310791,8.35767364501953,7.15140819549561,5.62592220306396,3.82552719116211,1.80415916442871,-0.376840591430664,-2.6507625579834,-4.94779396057129,-7.19766426086426,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-25.0938220024109,-22.8288207054138,-19.7978978157043,-16.0723087787628,-11.7493486404419,-6.94894170761108,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,35.7861022949219,34.8996257781982,33.210223197937,30.7871990203857,27.7206230163574,24.1176843643188,20.0986776351929,15.7926769256592,11.3331336975098,6.85338449478149,2.48261344432831,-1.65812472254038,-5.45939767360687,-8.8262927532196,-11.680947303772,-13.9641942977905,-15.636803150177,-16.679995059967,-17.095272064209,-16.9037590026855,-16.1448256969452,-14.8743093013763,-13.1621491909027,-11.0897628068924,-8.74697317183018,-6.22887897491455,-3.63231253623962,-1.05264210700989,1.41954207420349,3.70157730579376,5.72141829133034,7.41998046636581,8.7530300617218,9.69238090515137,10.2265276908875,10.3606090545654,10.1156964302063,9.52744817733765,8.64413452148438,7.52429540082812,6.23382234573364,4.84295964241028,3.42299699783325,2.04314756393433,0.767468452453613,-0.347841262817383,-1.25680351257324,-1.92537403106689,-2.33269596099854,-2.47169589996338,-2.34884643554688,-1.98358154296875,-1.40688896179199,-0.659506797790527,0.210341453552246,1.14945697784424,2.10249757766724,3.01459741592407,3.83417558670044,4.51535701751709,5.0200959444046,5.31994849443436,32767,5.24611896276474,4.87194538116455,4.29169905185699,3.53248870372772,2.63039648532867,1.62838733196259,0.574425667524338,-0.48112765699625,-1.48788243532181,-2.39784216880798,-3.16774272918701,-3.76113164424896,-4.14999574422836,-4.31608133763075,-4.25162869691849,-3.95963394641876,-3.45357084274292,-2.75660753250122,-1.90027642250061,-0.922919273376465,0.132387638092041,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.889594078063965,0.394213676452637,-0.0551571846008301,-0.454113483428955,-0.803325176239014,-1.10807132720947,-1.37748074531555,-1.62354254722595,-1.85971888899803,-2.09987908601761,-2.3566597700119,-2.64040870964527,-2.95807112753391,-3.31236460804939,-3.7013218998909,-4.11812767386436,-4.55135987699032,-4.98558565974236,-5.40225648880005,-5.78100097179413,-6.10070872306824,-6.34130382537842,-6.4848268032074,-6.5170202255249,32767,-6.21449208096601,-5.87757438421249,-5.42554152011871,-4.87234699726105,-4.23731112480164,-3.54405951499939,-2.81963109970093,-2.09291839599609,-1.39332580566406,-0.749384760856628,-0.187297344207764,0.270208567380905,0.605099320411682,0.804551601409912,0.861801147460938,0.776187419891357,0.553174018859863,0.204137802124023,-0.254257202148438,-0.800827026367188,-1.41059494018555,-2.05599975585938,-2.70793151855469,-3.33708000183105,-3.91486549377441,-4.41496562957764,-4.81414127349854,-5.09345149993896,-5.23909091949463,32767,-5.10404682159424,-4.82685947418213,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.191938400268555,-0.292739868164062,-0.896173477172852,-1.58566093444824,-2.32211875915527,-3.06193161010742,-3.75898551940918,-4.36727142333984,-4.84313011169434,-5.14785003662109,-5.24966430664062,-5.12582778930664,-4.76403141021729,-4.1633882522583,-3.33509254455566,-2.30178260803223,-1.09738159179688,0.234667778015137,1.64275550842285,3.06937694549561,4.45354461669922,5.7334897518158,6.84900045394897,7.74416065216064,8.36969065666199,8.68517899513245,8.66057872772217,8.2779016494751,7.53167915344238,6.4298791885376,4.99336624145508,3.25572395324707,1.26196670532227,-0.932744979858398,-3.26472854614258,-5.66419792175293,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-21.4028329849243,-17.6213026046753,-13.1060237884521,-7.98449230194092,-2.40771102905273,3.4552903175354,9.4239456653595,32767,32767,32767,32767,32767,32767,32767,32767,40.7356185913086,39.7948684692383,37.9032068252563,35.1368989944458,31.5992202758789,27.4162817001343,22.7322120666504,17.7038040161133,32767,32767,32767,32767,-6.94067966938019,-10.7392115592957,-13.8909177780151,-16.3245873451233,-17.9953470230103,-18.8853631019592,-19.0035195350647,-18.3843550682068,-17.0859415531158,-15.187196969986,-12.7843478322029,-9.98707908391953,-6.9141252040863,-3.68884444236755,-0.434410572052002,2.73045253753662,5.69574284553528,8.36402624845505,10.6535993814468,12.501049041748,13.8631052970886,14.717568397522,15.063449382782,14.92027759552,14.3265905380249,13.3376717567444,12.0226464271545,10.4611842632294,8.73966312408447,6.9473095536232,5.17217183113098,3.49736452102661,1.99752187728882,0.735800266265869,-0.238656997680664,-0.892394065856934,-1.20873546600342,-1.18807411193848,-0.847182273864746,-0.218091011047363,0.653965950012207,1.71300077438354,2.89529466629028,4.13256216049194,5.35550975799561,6.49702036380768,7.49551342427731,8.29776525497437,8.86132717132568,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-0.703963756561279,-1.56575000286102,-2.19289875030518,-2.55463215708733,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.173747539520264,-0.0804305076599121,-0.198487281799316,-0.193986892700195,-0.0878827571868896,0.0929088592529297,0.317144751548767,0.55156709253788,0.762608177959919,0.918942511081695,0.993195414543152,0.963773965835571,0.816321611404419,0.54461669921875,0.151137351989746,-0.352970123291016,-0.948417186737061,-1.60872507095337,-2.30184316635132,-2.99156141281128,-3.63997530937195,-4.20913767814636,-4.66362881660461,32767,-5.11042872071266,-5.06058759987354,-4.81433534622192,-4.37262296676636,-3.74598985910416,-2.95407253503799,-2.0250848531723,-0.994321674108505,0.0973172187805176,1.20512700080872,2.28275859355927,3.28414630889893,4.1659699678421,4.88917589187622,5.42125153541565,5.73738050460815,5.82173728942871,5.66832447052002,5.28119039535522,4.67428398132324,3.87111663818359,2.90363693237305,1.81098175048828,0.637648582458496,-0.568080902099609,-1.75666046142578,-2.87899971008301,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,3.34748268127441,3.45371246337891,3.36378479003906,3.09332847595215,2.66824531555176,2.12337493896484,1.50088310241699,0.847763061523438,0.213687896728516,-0.351924896240234,-0.802288055419922,-1.09593772888184,-1.19898414611816,-1.08714008331299,-0.747311592102051,-0.178139686584473,0.608963012695312,1.59065103530884,2.73188972473145,3.98759388923645,5.30430471897125,6.62265461683273,7.87956699728966,9.01118820905685,9.95567214488983,10.656122431159,11.0628717541695,11.1363270282745,10.8484110832214,10.1847543716431,9.14520740509033,7.7448091506958,6.01335430145264,3.99484062194824,1.74643898010254,-0.663690567016602,-3.15829658508301,-5.65381622314453,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-22.8411722183228,-19.198522567749,-14.7257776260376,-9.54890537261963,-3.82112216949463,2.28261756896973,8.57223796844482,14.8492615222931,20.9142956733704,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-7.3313380330801,-11.5824060440063,-15.1285839080811,-17.883501291275,-19.7904047966003,-20.8233060836792,-20.9869089126587,-20.3156380653381,-18.8713901042938,-16.7405489683151,-14.0300141274929,-10.8627775907516,-7.37285828590393,-3.70016193389893,0.0150680541992188,3.63721704483032,7.04023265838623,10.1120672821999,12.7583074569702,14.9051179885864,16.501341342926,17.5195569992065,17.9562244415283,17.8309121131897,17.1846122741699,16.0771985054016,14.5842461585999,12.7933821678162,10.8000829219818,8.70345658063889,6.60186743736267,4.58886194229126,2.74929761886597,1.15611886978149,-0.132429599761963,-1.07464742660522,-1.64660787582397,-1.84258604049683,-1.67437744140625,32767,32767,32767,32767,32767,4.54018008708954,5.85499918460846,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,6.93947458267212,5.93337321281433,4.92163920402527,3.96200132369995,3.1088490486145,2.41057324409485,1.90723967552185,1.62881934642792,1.59381768107414,1.80858480930328,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,1.73444747924805,1.78833103179932,1.98307251930237,2.28813600540161,2.66679513454437,3.07812267541885,3.47970288991928,3.82962870597839,4.08937573432922,4.22575502842665,4.21294009685516,4.03411197662354,3.68242955207825,3.16167449951172,2.48620939254761,1.68039274215698,0.77750825881958,-0.182056427001953,-1.15243482589722,-2.08509635925293,-2.93079519271851,-3.64261960983276,32767,-4.50205421447754,-4.58749294281006,-4.41819381713867,-3.98932313919067,-3.30801105499268,-2.39311695098877,-1.27489256858826,0.00650143623352051,1.40254521369934,2.85838866233826,4.31538248062134,5.71341061592102,6.99403166770935,8.10253155231476,8.99095571041107,9.61990189552307,9.9604811668396,9.99579477310181,9.72161340713501,9.14662599563599,8.29238033294678,7.19221496582031,5.89002132415771,4.43813323974609,2.89550018310547,1.32463455200195,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,4.94491577148438,5.897216796875,6.64313316345215,7.16046905517578,7.43928718566895,7.48244094848633,7.3051872253418,6.93435859680176,6.40707206726074,5.76849937438965,5.06978797912598,4.3651294708252,3.70919609069824,3.15415000915527,2.7469425201416,2.5266580581665,2.52239990234375,2.75191497802734,3.21984529495239,3.91788816452026,4.82426953315735,5.90486109256744,7.1143043152988,8.39817976951599,9.69498562812805,10.9390647411346,12.0635442733765,13.0035970211029,13.6991299390793,14.0982779562473,14.1594002246857,13.8540484905243,13.1681346893311,12.1036472320557,10.6787881851196,8.92793560028076,6.90104866027832,4.66174507141113,2.28552055358887,-0.143051147460938,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-17.4040393829346,-12.3613166809082,-6.72582530975342,-0.666357040405273,5.63147926330566,11.9716172218323,18.1547952890396,32767,32767,33.8699865341187,37.6128959655762,40.3931617736816,42.1278171539307,42.7689189910889,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-24.2906575202942,-23.9493231773376,-22.7821640968323,-20.8665854930878,-18.3026411533356,-15.2088307887316,-11.7171326875687,-7.9679172039032,-4.1043553352356,-0.267342090606689,3.40962266921997,6.80511808395386,9.81370835006237,12.3492438793182,14.3473243713379,15.766758441925,16.5901207923889,16.8234071731567,16.4947810173035,15.6524338722229,14.3618054389954,12.7022774219513,10.7632941901684,8.64039361476898,6.43101716041565,4.23054838180542,2.12846183776855,0.205041885375977,-1.47157001495361,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,7.11790835857391,6.77877843379974,6.38486012816429,5.97659439966083,5.59326481819153,5.2709151506424,5.04038119316101,4.92583560943604,4.94357979297638,5.10135981440544,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,3.07361793518066,3.14979314804077,32767,3.60523509979248,3.91546130180359,4.22834777832031,4.50346851348877,4.70190517604351,4.78887689113617,4.73555636405945,4.52083277702332,4.13277640938759,3.56939101219177,2.83910632133484,1.96058988571167,0.962074279785156,-0.11979341506958,-1.24178647994995,-2.35572528839111,-3.41124963760376,32767,32767,32767,-6.0905613899231,-6.18169188499451,-5.99404239654541,-5.5231602191925,32767,-3.77493834495544,-2.54897022247314,-1.14078116416931,0.39902663230896,2.0130934715271,3.63984656333923,5.21582555770874,6.67890548706055,7.97041261196136,9.03822684288025,9.8387439250946,10.3389008045197,10.5178589820862,10.3677611351013,9.8941764831543,9.11613368988037,8.06512546539307,6.78404140472412,32767,32767,32767,32767,32767,32767,32767,32767,32767,-5.6941089630127,-5.76619338989258,-5.52677345275879,-4.99106025695801,-4.18648147583008,-3.15134239196777,-1.93301963806152,-0.585573196411133,0.832551956176758,2.26181411743164,3.64362525939941,4.92378234863281,6.05430221557617,6.99604225158691,7.72029876708984,8.2099552154541,8.46024703979492,8.47881126403809,8.2850284576416,7.9091911315918,7.39051818847656,6.77541542053223,6.11474990844727,5.46147537231445,4.86779689788818,4.38244247436523,4.04799461364746,3.8986611366272,3.95865345001221,4.24020624160767,4.743408203125,5.4553040266037,6.35066542029381,7.3927081823349,8.5349452495575,9.72281384468079,10.8963470458984,11.9929234981537,12.9503543376923,13.7095237970352,14.2178816199303,14.4315065741539,14.3181865215302,13.858775138855,13.0491156578064,11.9004316329956,10.4395065307617,8.70837688446045,6.76262474060059,4.66987609863281,2.50714874267578,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-11.5249052047729,-14.1596918106079,-16.4135246276855,-18.2021760940552,-19.4587907791138,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-4.09895992279053,1.90767669677734,7.9709005355835,13.9070840477943,32767,32767,29.1880865097046,32.9169893264771,35.754376411438,37.6152486801147,38.4459934234619,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-24.8268604278564,-22.1675637960434,-19.0334523618221,-15.5502318143845,-11.8495299816132,-8.06428909301758,-4.32400703430176,-0.750277042388916,2.54706621170044,5.47335124015808,7.95179641246796,9.92536115646362,11.3578672409058,12.2343096733093,12.5603680610657,12.3610882759094,11.6789860725403,10.5715854167938,9.10839581489563,7.36771059036255,5.43311548233032,3.39008140563965,1.32252597808838,-0.690200805664062,-2.57621097564697,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,3.69142329692841,4.01719176769257,4.25996518135071,4.43789446353912,4.57008963823318,4.67536464333534,4.77083122730255,4.87094831466675,4.98661208152771,5.12457656860352,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,2.60610914230347,2.65939855575562,2.68778419494629,2.6607985496521,2.55007457733154,2.33134055137634,1.98586809635162,1.50171446800232,0.87479068338871,0.10929824411869,-0.782026290893555,-1.77823495864868,-2.85085988044739,-3.96503472328186,-5.08108901977539,-6.15600258111954,-7.14574268460274,32767,32767,32767,-9.44206714630127,-9.44368374347687,-9.18107271194458,-8.65369260311127,32767,-6.85588371753693,-5.6367963552475,-4.2540191411972,-2.75451195240021,-1.19091534614563,0.380687952041626,1.9027898311615,3.31924366950989,4.57713627815247,5.62940549850464,6.43663740158081,6.96872043609619,7.20639038085938,7.1418514251709,6.77919673919678,6.13445472717285,5.23470783233643,4.11726570129395,2.8277530670166,32767,32767,32767,32767,32767,32767,32767,-7.06355667114258,-7.50658798217773,-7.67304611206055,-7.56120300292969,-7.18084526062012,-6.55251502990723,-5.70644569396973,-4.68115615844727,-3.52140808105469,-2.27640342712402,-0.996952056884766,0.266223907470703,1.46544075012207,2.55758476257324,3.5064754486084,4.28424644470215,4.87246036529541,5.26288414001465,5.45765399932861,5.46886444091797,5.31803894042969,5.03456687927246,4.65437793731689,4.21773386001587,3.76732349395752,3.34591245651245,2.99407720565796,2.74794793128967,2.63726341724396,2.68397128582001,2.90043441951275,3.28924113512039,3.84223985671997,4.54112005233765,5.35786151885986,6.25620937347412,7.19288635253906,8.11977469921112,8.9861832857132,9.74135655164719,10.3366988897324,10.7287075519562,10.8806927204132,10.765456199646,10.3664155006409,9.67932844161987,8.71261310577393,7.48759841918945,6.03832244873047,4.41006374359131,2.658203125,0.845973968505859,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-10.5217313766479,-12.489372253418,-14.2424230575562,-15.7140760421753,-16.8481998443604,-17.6019058227539,-17.9476494789124,-17.8746953010559,-17.3899369239807,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,24.3383026123047,27.7021837234497,30.2746553421021,31.9797286987305,32.7674436569214,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.182928323745728,2.69580501317978,4.78016400337219,6.40083265304565,7.53983676433563,8.19598153233528,8.3839555978775,8.13288903236389,7.48442411422729,6.4905571937561,5.21111965179443,3.71125030517578,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.171538352966309,-0.109280109405518,-0.424566268920898,-0.791664123535156,-1.22590637207031,-1.73936200141907,-2.33984279632568,-3.03021049499512,-3.80773085355759,-4.66391457617283,-5.58447861671448,-6.54972100257874,-7.53512167930603,-8.51229286193848,32767,32767,32767,32767,32767,32767,-12.5140352249146,-12.3690629005432,-12.0042681694031,-11.4238481521606,-10.6402010917664,-9.67343139648438,-8.55116653442383,-7.30736494064331,-5.98125356435776,-4.6159795820713,-3.25685262680054,-1.94981408119202,-0.739337921142578,0.33299446105957,1.23041915893555,1.92237567901611,2.38564968109131,2.60558128356934,2.57645130157471,2.30180168151855,1.79442977905273,1.07571029663086,0.174947738647461,-0.872074127197266,-2.02420234680176,-3.23690986633301,-4.46372032165527,32767,32767,32767,-8.62533378601074,-9.29176902770996,-9.75527000427246,-10.0029773712158,-10.0305824279785,-9.8425235748291,-9.45149993896484,-8.87766265869141,-8.147705078125,-7.29337596893311,-6.35019588470459,-5.35537147521973,-4.34660720825195,-3.35989665985107,-2.42843818664551,-1.58082103729248,-0.840003967285156,-0.222433567047119,0.262591361999512,0.613103866577148,0.834230661392212,0.937954664230347,0.941982269287109,0.868898749351501,0.744617104530334,0.597086161375046,0.454605966806412,0.344233632087708,0.290216147899628,0.312521576881409,0.42590868473053,0.638567090034485,0.952055621892214,1.36047452688217,1.85094156861305,2.40385832265019,2.9939940571785,3.59126913547516,4.16234588623047,4.67225027084351,5.08613061904907,5.37085390090942,5.49712324142456,5.44062232971191,5.18403816223145,4.71773338317871,4.04104518890381,3.1624002456665,2.09951114654541,0.879222869873047,-0.463733673095703,-1.88744258880615,-3.34458446502686,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-3.49948978424072,-4.69503879547119,-5.92150020599365,-7.13158798217773,-8.27909660339355,-9.32093524932861,-10.2191066741943,-10.9424476623535,-11.468168258667,-11.7830286026001,-11.8841137886047,-11.7792129516602,-11.4867248535156,-11.0350775718689,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-27.5456334352493,-24.8474710732698,-21.8653259277344,-18.6915551424026,-15.4191906452179,-12.1392216682434,-8.93793487548828,-5.89454436302185,-3.07925820350647,-0.551638007164001,1.64060288667679,3.46235406398773,4.89137771725655,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-7.15790200233459,-7.99516296386719,-8.83510255813599,-9.66194343566895,-10.457592010498,32767,32767,32767,32767,-13.2654328346252,-13.4597058296204,-13.4971284866333,-13.3701419830322,-13.0760593414307,-12.6173334121704,-12.001781463623,-11.2426776885986,-10.3582334518433,-9.37146496772766,-8.30925393104553,-7.20157879590988,-6.08060669898987,-4.9794659614563,-3.93119859695435,-2.96740102767944,-2.11723327636719,-1.40622234344482,-0.855297088623047,-0.480134010314941,-0.290332794189453,-0.289239883422852,-0.473745346069336,-0.834320068359375,-1.35551452636719,-2.01639556884766,-2.79152870178223,-3.65174293518066,-4.56544876098633,-5.49962997436523,32767,32767,32767,-8.80370903015137,-9.38379859924316,-9.82443046569824,-10.1141929626465,-10.2472972869873,-10.2238235473633,-10.0494966506958,-9.73511791229248,-9.2960958480835,-8.75150966644287,-8.12333679199219,-7.43508195877075,-6.71112203598022,-5.97523164749146,-5.24992966651917,-4.5552806854248,-3.908247590065,-3.32205069065094,-2.80576518177986,-2.36412167549133,-1.9976401925087,-1.70261019095778,-1.47186136245728,-1.29514580965042,-1.16008567810059,-1.05286800861359,-0.959288775920868,-0.865678310394287,-0.759773805737496,-0.63170300424099,-0.474409282207489,-0.284551501274109,-0.0624074935913086,0.187500476837158,0.456816673278809,0.733479022979736,1.00244283676147,1.24611330032349,1.44534778594971,1.58046245574951,1.63227844238281,1.58308887481689,1.41795635223389,1.12530136108398,0.698241233825684,0.134803771972656,-0.561222076416016,-1.38039779663086,-2.3074951171875,-3.32165718078613,-4.39740943908691,-5.50497531890869,-6.61158084869385,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,2.42448329925537,1.84292984008789,1.19032764434814,0.489114761352539,-0.23857307434082,-0.971952438354492,-1.69260120391846,-2.38531684875488,-3.03888034820557,-3.64659309387207,-4.20662212371826,-4.72209930419922,-5.20099973678589,-5.65572786331177,-6.10253858566284,-6.5606689453125,-7.05133581161499,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.752241134643555,4.71940135955811,8.57869100570679,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-26.7191458046436,-24.767547249794,-22.5032314062119,-19.99325299263,-17.3075964450836,-14.5171749591827,-11.6919043064117,-8.89882493019104,-6.20055270195007,-3.65378713607788,-1.3081374168396,0.794797778129578,2.62205278873444,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-8.9079167842865,-9.59480547904968,-10.2156159877777,32767,32767,32767,-11.8072490692139,-11.9322166442871,-11.9337058067322,-11.8086450099945,-11.5567831993103,-11.1810326576233,-10.6874983310699,-10.085498213768,-9.3875450193882,-8.60891139507294,-7.76751637458801,-6.88327550888062,-5.97756338119507,-5.07270812988281,-4.19118213653564,-3.35498905181885,-2.58487796783447,-1.89970779418945,-1.31583309173584,-0.846479415893555,-0.501453399658203,-0.286626815795898,-0.203887939453125,-0.251068115234375,-0.421941757202148,-0.706563949584961,-1.09158325195312,-1.56076622009277,-2.09552574157715,-2.67564010620117,-3.27994537353516,-3.88704490661621,32767,32767,-5.52327156066895,-5.94832611083984,-6.2900390625,-6.53921890258789,-6.68993186950684,-6.73976135253906,-6.68974304199219,-6.5440149307251,-6.30966472625732,-5.9961986541748,-5.6151762008667,-5.17943000793457,-4.70275783538818,-4.19906806945801,-3.68205118179321,-3.16449093818665,-2.65788769721985,-2.17203974723816,-1.71483373641968,-1.29205751419067,-0.907457709312439,-0.562555432319641,-0.257145643234253,0.0106556415557861,0.243915557861328,0.44664192199707,0.623210191726685,0.777956008911133,0.914820194244385,1.0367546081543,1.14565896987915,1.24185371398926,1.3242769241333,1.39003849029541,1.43477153778076,1.45265007019043,1.43683052062988,1.37962436676025,1.27305221557617,1.10936164855957,0.881523132324219,0.58372688293457,0.212039947509766,-0.235427856445312,-0.757728576660156,-1.35117340087891,-2.00885581970215,-2.72091484069824,-3.47442054748535,-4.25355529785156,-5.04039192199707,-5.81494140625,-6.55604553222656,-7.24198150634766,-7.85140895843506,-8.36391830444336,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,9.62412166595459,9.22761678695679,8.72136735916138,8.11404800415039,7.41489553451538,6.63329362869263,5.77832555770874,4.85845375061035,3.88118839263916,2.85287857055664,1.77859878540039,0.662104606628418,-0.494091987609863,-1.6885232925415,-2.92052984237671,-4.18987894058228,-5.49635601043701,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-21.2565779685974,-19.5289454460144,32767,32767,32767,32767,32767,-3.48360061645508,-0.206415176391602,3.10795068740845,6.39916229248047,9.60518711805344,12.6636185646057,15.5133156776428,18.09592628479,20.3574056625366,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-21.5777153968811,-20.4688868522644,-19.0734767913818,-17.4344515800476,-15.5983099937439,-13.6137943267822,-11.5306420326233,-9.39829635620117,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-8.48900818824768,-8.55423092842102,-8.51539158821106,32767,32767,32767,32767,32767,32767,-5.66061210632324,-4.98433589935303,-4.27723979949951,-3.55375289916992,-2.8286247253418,-2.11640071868896,-1.43113422393799,-0.785957336425781,-0.192712783813477,0.33831787109375,0.798791885375977,1.18235206604004,1.48500442504883,1.70504188537598,1.84307670593262,1.90209007263184,1.88719367980957,1.80544471740723,1.66560554504395,1.47783851623535,1.25334930419922,1.00393676757812,0.741733551025391,32767,32767,-0.00470924377441406,-0.205072402954102,-0.366621017456055,-0.483030319213867,-0.549575805664062,-0.563417434692383,-0.523584365844727,-0.430801391601562,-0.287468910217285,-0.0974454879760742,0.134109497070312,0.401128768920898,0.696722984313965,1.01362133026123,1.34433460235596,1.68146705627441,2.01792669296265,2.34720182418823,2.66341876983643,2.96150684356689,3.23719358444214,3.48723125457764,3.70909118652344,3.90108013153076,4.06211948394775,4.19177341461182,4.28992748260498,4.35671615600586,4.39243793487549,4.39723873138428,4.37120151519775,4.31407737731934,4.22548770904541,4.1046199798584,3.95051002502441,3.76197242736816,3.53784942626953,3.27704238891602,2.9787540435791,2.6426887512207,2.26924133300781,1.85967826843262,1.41637992858887,0.942798614501953,0.443891525268555,-0.0741462707519531,-0.603622436523438,-1.13566589355469,-1.66012954711914,-2.16576957702637,-2.64079666137695,-3.07279968261719,-3.44931221008301,-3.75809669494629,-3.98770904541016,-4.12768745422363,-4.1690731048584,-4.10475158691406,-3.9298677444458,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,2.1342306137085,0.64726734161377,-0.880825519561768,-2.43995475769043,-4.01956152915955,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-14.1344590187073,-12.211790561676,32767,32767,32767,32767,32767,2.61440086364746,5.3391489982605,8.03522920608521,10.6611526012421,32767,15.5374617576599,17.7081589698792,19.6511125564575,21.3332424163818,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-14.5827889442444,-14.2905993461609,-13.7747168540955,-13.0582585334778,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,-3.05363082885742,-2.58099937438965,-2.07453918457031,-1.54341697692871,-0.996906280517578,-0.444129943847656,0.106103897094727,0.645502090454102,1.16650009155273,1.6623477935791,2.1273307800293,2.55675888061523,2.94718551635742,3.29634666442871,3.6031494140625,3.86777877807617,4.09149742126465,4.2766056060791,4.42633628845215,4.54471015930176,4.63636779785156,4.70631217956543,4.75988960266113,4.8025016784668,4.83942794799805,4.87564849853516,4.91573333740234,4.96374988555908,5.02297115325928,5.09604072570801,5.18475437164307,5.2900390625,5.41206932067871,5.5501880645752,5.7030143737793,5.86848068237305,6.04400062561035,6.22648334503174,6.41252613067627,6.59847545623779,6.78058242797852,6.95504665374756,7.11825466156006,7.26672458648682,7.39723682403564,7.50685882568359,7.59312343597412,7.65384864807129,7.68729305267334,7.69206142425537,7.66721725463867,7.61210823059082,7.52640914916992,7.41016387939453,7.26359939575195,7.08724403381348,6.88180732727051,6.64831352233887,6.38791465759277,6.10207176208496,5.79246520996094,5.46110343933105,5.11030197143555,4.74275398254395,4.36157608032227,3.97032356262207,3.57302474975586,3.17425537109375,2.77897644042969,2.39276885986328,2.02159118652344,1.67184066772461,1.35013771057129,1.0633602142334,0.818536758422852,0.622453689575195,0.481788635253906,0.402755737304688,0.391000747680664,0.451290130615234,0.587507247924805,0.802358627319336,1.09728622436523,1.47222518920898,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,0.462650299072266,0.863990783691406,1.27351379394531,1.68663597106934,2.09921550750732,2.50749492645264,2.90827751159668,3.29883670806885,3.67695331573486,4.0410041809082,4.38982105255127,4.72272205352783,5.03948593139648,5.34028053283691,5.62562847137451,5.89622592926025,6.15307331085205,6.39727687835693,6.62998294830322,6.8523006439209,7.06531047821045,7.26998615264893,7.46704196929932,32767,32767,32767,8.18666553497314,8.34898138046265,8.50317907333374,8.64827394485474,8.78311967849731,8.90636587142944,9.0165638923645,9.11217069625854,9.19161558151245,9.25330018997192,9.29575490951538,9.31755876541138,9.31742143630981,9.29421758651733,9.24707889556885,9.17531394958496,9.07848644256592,8.9564037322998,8.80921459197998,8.63727855682373,8.44124603271484,8.22209930419922,7.98105716705322,7.71962356567383,7.43956851959229,7.14296722412109,6.83210372924805,6.50955772399902,6.17812919616699,5.84086227416992,5.50102043151855,5.16208267211914,4.82771682739258,4.50177192687988,4.188232421875,3.8912181854248,3.61486434936523,3.36342620849609,3.14107894897461,2.95195770263672,2.79999542236328,2.68896102905273,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,3.02104902267456,3.35098886489868,3.67878532409668,4.00291538238525,4.32202196121216,4.63480997085571,4.94017744064331,5.23712062835693,5.5247004032135,5.80202627182007,6.06829762458801,6.32275247573853,6.56461560726166,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,7.39384460449219,7.20082521438599,6.99136304855347,6.76698398590088,6.52937889099121,6.28040313720703,6.02208232879639,5.75661182403564,5.48629760742188,5.21360683441162,4.94109058380127,4.67139530181885,4.40722560882568,4.15133571624756,3.90650272369385,3.67548179626465,3.46099090576172,3.26568603515625,3.09207820892334,2.94259738922119,2.81944942474365,2.72466564178467,2.6599760055542,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767],[32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767,32767]]]}) diff --git a/viz/templates/index1.html b/viz/templates/index1.html index e43f822..f3246b3 100644 --- a/viz/templates/index1.html +++ b/viz/templates/index1.html @@ -47,7 +47,7 @@ }) - +
diff --git a/viz/templates/index2.html b/viz/templates/index2.html new file mode 100644 index 0000000..35448ff --- /dev/null +++ b/viz/templates/index2.html @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + +
+
+
+
+......................................__................................................
+.............................,-~*`¯lllllll`*~,..........................................
+.......................,-~*`lllllllllllllllllllllllllll¯`*-,....................................
+..................,-~*llllllllllllllllllllllllllllllllllllllllllll*-,..................................
+...............,-*llllllllllllllllllllllllllllllllllllllllllllllllllllll.\.......................... .......
+.............;*`lllllllllllllllllllllllllll,-~*~-,llllllllllllllllllll\................................
+..............\lllllllllllllllllllllllllll/.........\;;;;llllllllllll,-`~-,......................... ..
+...............\lllllllllllllllllllll,-*...........`~-~-,...(.(¯`*,`,..........................
+................\llllllllllll,-~*.....................)_-\..*`*;..)..........................
+.................\,-*`¯,*`)............,-~*`~................/.....................
+..................|/.../.../~,......-~*,-~*`;................/.\..................
+................./.../.../.../..,-,..*~,.`*~*................*...\.................
+................|.../.../.../.*`...\...........................)....)¯`~,..................
+................|./.../..../.......)......,.)`*~-,............/....|..)...`~-,.............
+..............././.../...,*`-,.....`-,...*`....,---......\..../...../..|.........¯```*~-,,,,
+...............(..........)`*~-,....`*`.,-~*.,-*......|.../..../.../............\........
+................*-,.......`*-,...`~,..``.,,,-*..........|.,*...,*...|..............\........
+...................*,.........`-,...)-,..............,-*`...,-*....(`-,............\.......
+......................f`-,.........`-,/...*-,___,,-~*....,-*......|...`-,..........\........
+
+
+ In order to use the oculus rift demo, you need: + + + +
+ + diff --git a/viz/templates/index3.html b/viz/templates/index3.html new file mode 100644 index 0000000..b8bff41 --- /dev/null +++ b/viz/templates/index3.html @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + +
+
+
+
+......................................__................................................
+.............................,-~*`¯lllllll`*~,..........................................
+.......................,-~*`lllllllllllllllllllllllllll¯`*-,....................................
+..................,-~*llllllllllllllllllllllllllllllllllllllllllll*-,..................................
+...............,-*llllllllllllllllllllllllllllllllllllllllllllllllllllll.\.......................... .......
+.............;*`lllllllllllllllllllllllllll,-~*~-,llllllllllllllllllll\................................
+..............\lllllllllllllllllllllllllll/.........\;;;;llllllllllll,-`~-,......................... ..
+...............\lllllllllllllllllllll,-*...........`~-~-,...(.(¯`*,`,..........................
+................\llllllllllll,-~*.....................)_-\..*`*;..)..........................
+.................\,-*`¯,*`)............,-~*`~................/.....................
+..................|/.../.../~,......-~*,-~*`;................/.\..................
+................./.../.../.../..,-,..*~,.`*~*................*...\.................
+................|.../.../.../.*`...\...........................)....)¯`~,..................
+................|./.../..../.......)......,.)`*~-,............/....|..)...`~-,.............
+..............././.../...,*`-,.....`-,...*`....,---......\..../...../..|.........¯```*~-,,,,
+...............(..........)`*~-,....`*`.,-~*.,-*......|.../..../.../............\........
+................*-,.......`*-,...`~,..``.,,,-*..........|.,*...,*...|..............\........
+...................*,.........`-,...)-,..............,-*`...,-*....(`-,............\.......
+......................f`-,.........`-,/...*-,___,,-~*....,-*......|...`-,..........\........
+
+
+ In order to use the oculus rift demo, you need: + + + +
+ + diff --git a/viz/templates/index4.html b/viz/templates/index4.html new file mode 100644 index 0000000..9606949 --- /dev/null +++ b/viz/templates/index4.html @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + +
+
+
+
+......................................__................................................
+.............................,-~*`¯lllllll`*~,..........................................
+.......................,-~*`lllllllllllllllllllllllllll¯`*-,....................................
+..................,-~*llllllllllllllllllllllllllllllllllllllllllll*-,..................................
+...............,-*llllllllllllllllllllllllllllllllllllllllllllllllllllll.\.......................... .......
+.............;*`lllllllllllllllllllllllllll,-~*~-,llllllllllllllllllll\................................
+..............\lllllllllllllllllllllllllll/.........\;;;;llllllllllll,-`~-,......................... ..
+...............\lllllllllllllllllllll,-*...........`~-~-,...(.(¯`*,`,..........................
+................\llllllllllll,-~*.....................)_-\..*`*;..)..........................
+.................\,-*`¯,*`)............,-~*`~................/.....................
+..................|/.../.../~,......-~*,-~*`;................/.\..................
+................./.../.../.../..,-,..*~,.`*~*................*...\.................
+................|.../.../.../.*`...\...........................)....)¯`~,..................
+................|./.../..../.......)......,.)`*~-,............/....|..)...`~-,.............
+..............././.../...,*`-,.....`-,...*`....,---......\..../...../..|.........¯```*~-,,,,
+...............(..........)`*~-,....`*`.,-~*.,-*......|.../..../.../............\........
+................*-,.......`*-,...`~,..``.,,,-*..........|.,*...,*...|..............\........
+...................*,.........`-,...)-,..............,-*`...,-*....(`-,............\.......
+......................f`-,.........`-,/...*-,___,,-~*....,-*......|...`-,..........\........
+
+
+ In order to use the oculus rift demo, you need: + + + +
+ + diff --git a/viz/views.py b/viz/views.py index fea0e47..416103a 100644 --- a/viz/views.py +++ b/viz/views.py @@ -1,6 +1,32 @@ from django.shortcuts import render -def index(request): +def index1(request): context = {} - return render(request, 'index.html', context) + return render(request, 'index1.html', context) + +def index2(request): + context = {} + return render(request, 'index2.html', context) + +def index3(request): + context = {} + return render(request, 'index3.html', context) + +def index4(request): + context = {} + return render(request, 'index4.html', context) + +def data1(request): + context = {} + if "callback" in request.GET: + context["jquery"]=request.GET["callback"] + print context + return render(request, 'data1.json', context) + +def data2(request): + context = {} + if "callback" in request.GET: + context["jquery"]=request.GET["callback"] + print context + return render(request, 'data2.json', context)