From 55f441ef2322d9d811d62904cd9a884271fcce4b Mon Sep 17 00:00:00 2001 From: Aron Mirwald Date: Tue, 27 Aug 2024 19:09:51 +0200 Subject: [PATCH] modified tests --- seismostats/analysis/estimate_beta.py | 74 +- .../tests/data/simulated_magnitudes.csv | 10001 ++++++++++++++++ .../analysis/tests/test_estimate_beta.py | 145 +- .../analysis/tests/test_estimate_mc.py | 32 +- 4 files changed, 10109 insertions(+), 143 deletions(-) create mode 100644 seismostats/analysis/tests/data/simulated_magnitudes.csv diff --git a/seismostats/analysis/estimate_beta.py b/seismostats/analysis/estimate_beta.py index 462b799..bf38a4b 100644 --- a/seismostats/analysis/estimate_beta.py +++ b/seismostats/analysis/estimate_beta.py @@ -41,7 +41,7 @@ def estimate_b( weights: list | None = None, b_parameter: str = "b_value", return_std: bool = False, - method="classic", + method="tinti", return_n: bool = False, ) -> float | tuple[float, float] | tuple[float, float, float]: """Return the maximum likelihood estimator for the Gutenberg-Richter @@ -63,9 +63,9 @@ def estimate_b( method: method to use for estimation of beta/b-value. Options are: - - 'classic',default, this is the is the classic estimator, see - :func:`seismostats.analysis.estimate_b_classic` - - 'positive' (this is b-positive, which applies the 'classic' + - 'tinti',default, this is the is the classic estimator, see + :func:`seismostats.analysis.estimate_b_tinti` + - 'positive' (this is b-positive, which applies the 'tinti' method to the positive differences, see :func:`seismostats.analysis.estimate_b_positive`. To achieve the effect of reduced STAI, the magnitudes must @@ -98,8 +98,8 @@ def estimate_b( "check if mc is chosen correctly" ) - if method == "classic": - return estimate_b_classic( + if method == "tinti": + return estimate_b_tinti( magnitudes, mc=mc, delta_m=delta_m, @@ -118,10 +118,10 @@ def estimate_b( ) else: - raise ValueError("method must be either 'classic' or 'positive'") + raise ValueError("method must be either 'tinti' or 'positive'") -def estimate_b_classic( +def estimate_b_tinti( magnitudes: np.ndarray, mc: float, delta_m: float = 0, @@ -301,7 +301,7 @@ def estimate_b_positive( # previous one. delta_m is added to avoid numerical errors mag_diffs = abs(mag_diffs[mag_diffs > dmc - delta_m / 2]) - out = estimate_b_classic( + out = estimate_b_tinti( mag_diffs, mc=dmc, delta_m=delta_m, @@ -375,7 +375,7 @@ def estimate_b_more_positive( # only take the values where the next earthquake is larger mag_diffs = abs(mag_diffs[mag_diffs > - delta_m / 2]) - out = estimate_b_classic( + out = estimate_b_tinti( mag_diffs, mc=dmc, delta_m=delta_m, @@ -447,60 +447,6 @@ def make_more_incomplete( return magnitudes, times -def estimate_b_laplace( - magnitudes: np.ndarray, - delta_m: float = 0, - b_parameter: str = "b_value", - return_std: bool = False, - return_n: bool = False, -) -> float | tuple[float, float]: - """Return the b-value estimate calculated using - all the differences between magnitudes. - (This has a little less variance than the - :func:`seismostats.analysis.estimate_b_positive` - method.) - - Source: - Van der Elst 2021 (J Geophysical Research: Solid Earth, Vol 126, Issue - 2) - - Args: - magnitudes: vector of magnitudes differences, sorted in time (first - entry is the earliest earthquake) - delta_m: discretization of magnitudes. default is no discretization - b_parameter:either 'b-value', then the corresponding value of the - Gutenberg-Richter law is returned, otherwise 'beta' from the - exponential distribution [p(M) = exp(-beta*(M-mc))] - return_std: if True the standard deviation of beta/b-value (see above) - is returned - - Returns: - b: maximum likelihood beta or b-value, depending on value of - input variable 'b_parameter'. Note that the difference is just a - factor [b_value = beta * log10(e)] - std: Shi and Bolt estimate of the beta/b-value estimate - """ - mag_diffs = differences(magnitudes) - mag_diffs = abs(mag_diffs) - mag_diffs = mag_diffs[mag_diffs > 0] - - out = estimate_b_classic( - mag_diffs, - mc=delta_m, - delta_m=delta_m, - b_parameter=b_parameter, - return_std=return_std, - ) - - if return_n: - if type(out) is tuple: - return out + tuple([len(mag_diffs)]) - else: - return out, len(mag_diffs) - else: - return out - - def estimate_b_weichert( magnitudes: np.ndarray, dates: list[np.datetime64], diff --git a/seismostats/analysis/tests/data/simulated_magnitudes.csv b/seismostats/analysis/tests/data/simulated_magnitudes.csv new file mode 100644 index 0000000..aabe031 --- /dev/null +++ b/seismostats/analysis/tests/data/simulated_magnitudes.csv @@ -0,0 +1,10001 @@ +b_value = 1,b_value = 1.5,b_value = 0.5 +-0.004055829867952748,-0.249791989459323,0.6021864181197789 +-0.2254136609722491,-0.0752987963147432,0.30364072627192673 +0.024663348582245115,-0.13265730929849104,1.0151418690250629 +0.36936225208728624,-0.09113961897390727,-0.0969145144983106 +-0.15531837631312978,-0.2217995551730899,0.1660042836318732 +-0.16274390349481888,0.1285778117788824,1.5510189836213526 +-0.15921892068683874,-0.1053486074694572,-0.0018867308310234754 +-0.12483975814313611,-0.23441129285257373,-0.22418529784454194 +-0.1576745647366838,-0.032713549642547135,-0.24663984080085202 +0.11672390423393358,0.194420011525064,0.18796518257409744 +0.06353934893511404,0.2241556429806017,-0.038229139549027125 +-0.12556314640806837,-0.10403781758246186,0.9885745197682114 +0.5431074454368369,0.055678148150873574,0.019513390909306483 +-0.21635303140626808,0.18478518098052188,0.7836377778051471 +0.5607921442675717,-0.23204176898433543,0.5909558435825879 +-0.01780544580133714,-0.13939340173457032,0.1184904732378595 +0.8810007749748121,0.527243240083915,-0.06948736796281985 +0.14028026793009613,-0.19101585694870143,0.03255733980500142 +0.7812484046878623,-0.12103128970092575,-0.24302010374672725 +0.0406899385125884,-0.10285494277798873,0.5688275723783928 +-0.11340798898235951,-0.008642914307682326,1.1637401961827174 +-0.027858350486637956,0.08307551120072859,0.7539416244272814 +-0.16828500670169144,-0.14819080991534458,1.893320882245515 +-0.15976236972257482,-0.16480529270350436,0.1267279700375772 +0.8027353113781226,-0.23406885586733134,3.183848065634811 +0.09866610973248718,0.15343916549941794,0.6327426841099444 +0.5088348133700401,-0.18900366856899664,-0.1372069039474118 +0.19558767487529172,0.08028790921625784,1.9531618955083165 +-0.10581645606506726,-0.20144127457788946,-0.08585904795301397 +-0.014058053239028673,-0.2292493452673021,-0.10681534743342394 +-0.20308356850387435,0.37589052751562757,-0.14551146295272305 +-0.21591016374798444,-0.15071774748155584,-0.24538872248614474 +0.10674381941940231,-0.11385095402881276,0.6726631090012886 +-0.14087106365541321,0.7866638673594775,0.41954505289530397 +0.060249456287832015,-0.18623006289930985,0.9364227854449634 +-0.009695895342168248,0.1916795035515434,0.34048789758175235 +-0.15473781249887852,0.21423462457067471,0.11231303572009116 +-0.058942056989461644,-0.0623631422858158,0.5156095647232907 +-0.24218549447114543,-0.22409431397737017,1.4245826105182533 +0.2073176079649231,0.40142537123336786,-0.22499442732952293 +-0.16719080277610365,-0.08974880523716405,0.04569791713741572 +-0.10100818412524651,0.049086889093617136,0.2661068174437524 +0.5186262883861209,-0.17506943488794208,-0.09787131732522611 +0.07446894728775105,-0.15285453736789745,0.2062469179043223 +-0.002204172737201998,0.06643289372880573,-0.12013742786346454 +-0.19966757367746465,-0.23039109230053698,1.0259608403326832 +-0.02387363247963023,0.20652582349091075,-0.24556243336890393 +0.06153524777190761,0.23341010095682269,-0.02184949309600623 +-0.22806986104290206,0.09971602535090457,0.5738622953546215 +-0.0510218069456026,-0.19791852361397733,0.2668810599144993 +-0.23420035893736924,0.026957275058173413,0.007831013716851853 +-0.12347817513414219,-0.1011509678968496,0.13584320374454933 +-0.15336757442120177,0.9810312618732759,0.1450111550337395 +0.004495049911551141,-0.1872476554244744,0.8526753761533854 +-0.08410966992448979,0.3662306368663104,0.6511919821823299 +-0.22271869359418345,-0.16981695386454765,0.05890846052200843 +2.4065232581274407,1.3160915398668613,-0.053573805821047565 +0.3837815664528744,0.5944105077204037,0.0456547421920675 +0.29518509145839134,0.5450014789498032,0.07487698798878734 +-0.2436771101730134,-0.23677828301908865,-0.03619454163151037 +0.5674033963627843,-0.15540163135495105,-0.1147279646105128 +0.46403672141437236,-0.04502559926198477,0.0019505364076404241 +0.5096328102331716,0.6167562570871049,0.21569132599437574 +-0.08936021200386374,-0.07048848001976338,-0.05033486196146969 +0.22893436342416001,0.02842625561885409,0.725698449658066 +-0.0339333562930626,0.5214955791541168,1.5772694075601636 +0.24820635496933996,-0.09731724060361571,-0.14130170270563974 +-0.22724909341527114,-0.15728677446423212,-0.01272812593234901 +-0.16254147596505178,-0.09102650661692605,0.05211383204136083 +-0.00762243663324122,0.4550735341861242,0.1073938052056701 +0.9350636443833402,-0.24806586020954632,1.1041929587588328 +0.46800874422135963,-0.15265786556662767,0.7865539938139141 +0.627431941417221,0.0908014757826045,-0.18247236483602947 +0.3316587730839763,-0.23991266848059645,-0.061907495835481524 +-0.06085126834085314,-0.19587077744450287,-0.24355234474226894 +0.569550990508713,-0.24288227791078465,0.009553130008551014 +0.4388920664763757,-0.22463484628562633,4.251322544277344 +-0.16533914021176294,-0.24532209405677438,0.30198865498682903 +0.6536832320260693,-0.0024737613445598716,0.8147434962967122 +-0.2000705202004301,0.1019340013935156,0.047381046709298935 +0.1892688778432225,-0.20310681602307845,0.42296111402863623 +-0.21785453957079687,-0.01729823783577289,-0.01459365701617435 +0.516055838916183,0.6852486735875122,-0.13857492356453716 +0.31788691024921756,-0.15866541832734815,-0.12323497216034707 +-0.16048141237433544,0.06973726669620622,-0.2405486518970613 +0.028968022551882355,0.23531385058888377,-0.20083417738030246 +0.21558093631608827,0.28339792224882376,1.5029004316621526 +2.033460739626325,-0.21993288881829606,0.612689860403905 +-0.220660790832087,-0.20803192439447113,0.08225796557952236 +0.5210358655147198,0.22812239243610682,0.46433529738948975 +0.5247996557142484,0.09786496689462959,1.8212197504739036 +-0.08255359409756843,0.05803759469286501,1.7007449798926766 +0.13538310995216107,0.056716255892479306,1.8630486578982755 +0.5504919434890134,-0.006662547447859574,0.05079878731112519 +0.07786809362180086,0.10744925194184785,1.747004254422052 +-0.20788457608503783,0.438765026542577,0.9004116173176753 +0.20342737003402211,0.1310229383791135,0.1778473042785642 +-0.08857408515452411,0.034824264405187044,0.7149044739586974 +0.08136221902214835,0.02644021679928471,1.09860441004088 +0.5761316205151151,-0.18374975311335479,1.4859452665392177 +-0.03232067370796271,-0.1112747977898767,0.012272047724347868 +0.046617756901321084,-0.10691648166503614,0.43783698213601274 +0.04609621787827228,-0.22894291766696856,0.03939023075973069 +-0.1767701331128374,-0.2287937008397909,0.1990429572282984 +-0.1736954514048285,-0.10447601932367781,-0.02304731749448663 +0.155238770266572,0.0007978526295413513,0.20845736274807947 +0.4419484309192514,-0.08239071398390213,-0.18076386719659002 +-0.08745183810592269,0.0023678265207750515,-0.08027653261331377 +0.2777997546628632,-0.19214263356699635,0.26708405537676927 +-0.11116387439234698,-0.19320548051368214,0.18899422241571712 +1.9409233529381975,-0.09677998189678189,-0.07707588224813947 +0.052648912666394265,-0.12147154346153377,-0.04084870001888519 +0.24972961561168439,0.3230704792838557,1.1129239190607831 +-0.13733725736675878,0.11616439808125845,1.1104300359967298 +0.5694564269030477,-0.20921529721944238,1.6957689431780727 +-0.12978744662153457,-0.014988095715436328,-0.23722625150474985 +0.10571282473676757,-0.20257006139562522,-0.057830504300845464 +-0.06432056583042423,-0.1510507600370502,0.7653795507058683 +-0.051810164515157214,-0.11730541026903823,0.36560492153981383 +0.44613715633472206,-0.17672656194955827,0.7694192781872404 +-0.10922946922531152,-0.2066734653015917,1.3670289341741049 +0.10107623378802083,-0.23329791581236176,0.8071861181384987 +-0.09974022647499775,-0.11448959111279008,-0.10085332577465284 +0.5908297854419066,0.16285051570516296,0.7739140619582969 +0.6961693822394712,-0.16349486681110226,0.3052465688652115 +1.285805271463874,0.47352952014208727,-0.15747372715818014 +0.11033420493717733,-0.24215662106733812,0.6586530117018022 +-0.1387965156910972,-0.1764877686399386,-0.13055035406862664 +0.11560393649584527,-0.11948941896923415,0.15986877255050785 +-0.2323173378582808,0.15711389399126757,0.853509678085348 +1.0520542584884676,0.37482673979744363,0.12745212607726986 +-0.04019879173093893,0.37287588537796,0.2674890149588748 +0.3559077213245,0.8820423398088733,-0.10139857012005163 +-0.02977818567657156,0.6136973407636566,0.44204916190746246 +-0.2462971180648602,-0.24730368276542566,-0.0461068463113147 +0.4193272805731697,0.3108387529895369,0.010102066918630193 +0.4184701280713877,0.49811303314991917,0.7594144536944056 +0.05838741006878739,-0.15575968306979782,-0.1480731325122241 +-0.22133374899176547,0.3784600451686456,0.9274049071858577 +-0.17826609263565146,0.17821762003082559,-0.22302942324517017 +0.07454513713449124,0.28121850053494024,-0.2119870600438964 +-0.15873404827177284,0.7632392316355185,0.15241440958789249 +-0.22037681692779765,0.09960011661830376,0.20624860973599363 +0.18885471471406923,1.035877141217995,0.5106041585969281 +0.04600998937056866,-0.20868597599062244,-0.13564741593877935 +-0.12480867735236884,0.0735141488001208,-0.13346622206915082 +-0.20316497370609365,-0.11859041660206393,-0.11846733281614086 +0.039845658487461744,0.11580742514206044,1.136607233563558 +0.11345228369890425,-0.1341933226739645,1.5771263544328924 +1.002633094619006,-0.012253728620027882,-0.18738808931921414 +-0.05251745810191491,0.4463367370029816,0.9210034293745244 +0.13104048742727664,-0.21600324523291622,0.9182287239371694 +1.556429989245361,-0.13241979655881203,-0.11143597856442064 +0.34164969415274316,-0.24349338990408717,0.11299306569139805 +0.09819498103775798,-0.22752138705181768,0.3604643549780474 +-0.06382215951456122,0.1664792834723326,0.21518384210988428 +0.004070492555177885,-0.222183020579568,0.2877463159229381 +-0.07835038860763985,-0.1733347536159351,0.7450497480853843 +-0.02174210180695829,-0.05876646541678515,1.6097977838424067 +0.15744804394954176,-0.21059623217892745,1.255415122341087 +0.31187386118648486,-0.09086563771305314,-0.003407570905565316 +1.3900241341381605,0.42163021053201344,1.6503966955135447 +0.23707501949666077,-0.03245797620496854,0.09282630291789218 +-0.17104292415894257,0.09635264780900815,2.075058365909639 +-0.1425802174326618,0.23552169414236795,2.685157298969738 +-0.24690995130235494,-0.07078084585251934,0.16519324386741407 +-0.20362182427560108,-0.24027345080808993,-0.24974951722941832 +0.3959658350116997,0.047459526667273655,2.4505219713388704 +-0.09709254842975507,-0.09481020668357665,1.7331112088424687 +-0.2319502939378371,0.571571523110742,0.8573517160346831 +-0.10106250466475739,0.3862568742001834,2.7085348550360404 +-0.2344561582222849,-0.21163775840986837,-0.15305739306592075 +-0.07520981606389995,0.4485706698182945,-0.1916945926945623 +0.8520308134258407,0.4757585344471045,0.22276715567832495 +-0.16557182454350494,0.008189121157436419,1.0514652403271447 +0.3924275995416572,0.2554962161431502,-0.21094514619514276 +0.2290848147165006,-0.2265397219913146,0.16761969026429208 +-0.12016588699432582,0.14469723045903632,0.3944834913777756 +0.26114089759392234,0.1847170775366423,1.3854945589183882 +0.2526317834922923,-0.09847265310721764,0.8293746274929008 +0.11625435854265803,-0.07327708690889737,-0.1737228081905794 +0.14087793215832228,-0.18701608327281022,2.9902114440034424 +0.204180136949481,-0.14507603707404199,1.7934556025827422 +0.5521825126486846,-0.20609084990701476,0.2596102902076034 +-0.1640244134279648,-0.1298806733482975,0.9670669840574058 +1.5291578272066326,0.05343821972330903,0.197800857535391 +1.0907841952900112,-0.20756155750341382,0.7954353049641547 +-0.03616877416661943,-0.17314666394005307,0.8187000445892021 +-0.22357424853603086,1.0531740514259234,1.5048315659973936 +0.5527448931534351,0.1698062935801205,0.49695050295806775 +0.085117580294294,0.03371956351964933,1.5730373771541861 +-0.16274135437733678,-0.21077211662586232,3.0082184995537893 +0.5257018736841018,-0.06256488017985448,-0.06831062000890101 +0.21568386702486914,-0.16935080082882026,0.9613647842847124 +0.3457563617484881,0.3377591137725472,-0.2407054743518795 +0.0824319583953011,-0.23682333691712237,1.1388029733510707 +-0.10998542995373359,-0.03219432039503173,-0.22195434847342577 +-0.24829463434046284,-0.21703340479541056,-0.16263114323765043 +0.07668194972465453,0.1573508603359695,0.5034521702419313 +1.1283474856316318,-0.10357440978471236,1.1635611722823203 +0.18009258623184282,0.318280808192681,-0.0027061259858648934 +-0.21034130578512666,0.08103315751100565,0.14448491809019193 +0.05880019740839548,-0.1412867087740867,-0.1547688859718765 +0.07403359016250821,-0.22302459165533117,0.29446502087774684 +0.8681676076514131,-0.12215035008966993,0.606247210370728 +0.6325497247366041,0.4943503169643346,-0.2377105007360325 +-0.06522383870226472,-0.023487939880892483,-0.2396333417709424 +0.092336690264751,-0.1705676218987462,0.4213988905244508 +-0.14693676672251643,-0.2103036347114084,2.5673753044998633 +-0.08782784138085487,-0.08132197651321846,0.16502203441368768 +0.10081873123111051,0.001235288571047155,-0.0632589361486855 +0.13488870287589133,-0.08914048761904994,2.2543590698794036 +-0.19969532463299483,-0.13383691413606114,0.5394093837854818 +-0.15559927995734987,-0.09726569484528308,0.10748619668645276 +0.00010750912091989084,-0.1074190659958357,-0.1412858648193677 +0.47543165532857745,-0.2447535407710377,0.27828451685624866 +-0.22479293788138532,0.06884698280918888,0.17669494721147466 +0.049510039550259566,-0.12284818702476027,-0.004260675284331078 +0.6043045563382873,0.046903284051592664,0.7765979003655259 +-0.02022206820130512,-0.07948617219461046,0.2954966736757487 +0.40120169056225674,0.6495257643425211,-0.17642977401165888 +-0.23892055430417827,0.13743483189101546,-0.06090932273446534 +0.07856814076456986,-0.12849009599494526,0.5220913286176834 +0.12480321695114566,-0.0927507222810702,-0.14764818644256214 +0.3374842743191463,0.2567372079255613,0.29341988170557187 +0.41662782818547717,-0.08650820002839371,-0.042561699252234325 +0.27081691357612503,-0.053806983871202446,1.5419723609116445 +0.37313909820427293,-0.07920166961314865,-0.006479119849320258 +0.1417176364814034,0.5431595790521335,-0.09534639055996386 +-0.1872435441630135,-0.09950245952432796,0.8400549681459331 +1.091201634498213,0.29431355352075717,0.4739223633045603 +0.7383861330205022,0.16321786061371452,-0.22038297720930317 +0.5139462289293897,0.11098505250728052,-0.20295650559948225 +-0.030072178515070797,-0.20671700809208224,0.6594818405004472 +0.20304227041520911,0.008042218626022724,2.655109717009035 +0.5258034772098945,-0.23210277791063644,0.04749831927150777 +-0.09722252005504886,1.3788038320667417,1.01525998989188 +1.0944009618169175,-0.18200496622662632,0.46785465568541573 +-0.17745029481696026,-0.24793023651737595,-0.19701791202775387 +-0.20174167781298163,-0.22783029331638965,-0.007501234682417007 +-0.10992296254572415,0.2987929593254519,0.4187762386913467 +-0.14761429041037666,-0.2266520537677948,0.03193958143177644 +-0.23443580331563751,-0.22677155195135845,-0.19112946130381314 +0.17486036574065883,0.19832282147457742,0.23483460402943235 +0.6788156190193454,-0.18412669496602355,-0.07481595013440856 +0.19297841139625965,-0.17662844579105766,-0.13106316027726567 +-0.22440467708106746,-0.1806815249306251,1.896689552723048 +0.8431035534263285,-0.16835769681635965,0.37498699572170013 +0.7556774693421435,0.338071339710428,0.8184858809919533 +-0.009263042851864078,0.11177343403321027,-0.24577365410605115 +0.5930523006922103,-0.09655554221990353,-0.09994235017668024 +1.037441528722599,-0.005778351842721324,2.908609257472261 +-0.21488253139610158,0.31428521167911794,0.21223253872092068 +-0.029414194874953364,-0.06003377662298762,0.5807910786906233 +0.337426478146049,0.8164267215666994,0.023744045791968538 +-0.15277457741364958,0.32262730968221476,3.68889429452639 +-0.10879809949374109,0.5035869868606232,0.9618960773333443 +0.5171264547095352,0.15013202652274327,0.048364696092086046 +0.05214114294727812,-0.22128933744648502,0.06056165808205388 +1.132172168967614,-0.08217178936484118,0.017810211655682195 +0.0027070950056896637,0.021420052796823574,3.643506296476118 +0.24627468685860104,-0.2022320150799402,0.22838097833342008 +0.0049189675442982694,0.36327761559331595,-0.22009316361914644 +0.016710789793478897,0.07061858689446293,0.2931059118775986 +-0.20761755317423913,-0.2415416152153861,0.7440752622801909 +0.031731885134402504,-0.24356056290609424,0.891338187346159 +-0.17639884831095456,-0.2043019943400644,1.0294656798749566 +-0.1776746499391551,0.007711563919409414,0.6789384574565918 +1.0594237834738691,-0.242970935147167,1.8024689998325494 +-0.17886779761903848,1.0817744532446347,0.14646255203651037 +-0.10542969203823568,-0.23055896629251593,0.3837822184141222 +-0.1140819509122118,-0.11691002745235501,1.5263884782499744 +-0.20501281809923377,-0.007251988189450775,1.3185474171982519 +0.16474479652307983,-0.01789368400371605,0.23620656125194045 +-0.14222906981908434,-0.01457311262917757,1.7996537614770078 +0.5504454626351394,0.5571609795079866,0.266772305058105 +0.5993208094015298,-0.16171008807240042,0.17984990511326493 +0.18363394471057998,0.3058914843873298,0.33047398831980757 +0.47173379325762255,0.3311067062436076,0.1316624559126039 +0.012683817699642608,-0.09994170708830874,-0.17807268893642714 +-0.11375293192754596,-0.1924008792598323,-0.24707667605149147 +0.2949909649784558,-0.03609293916420883,0.5365879730662892 +0.6735961290700074,-0.24842092778019395,0.5658640086399929 +0.22045640469975109,0.14158816123963403,0.37431193013648834 +-0.20315908227689045,0.0908815513258382,2.4436680862639597 +-0.07354366066109763,-0.14506466313645952,0.43926826345662684 +0.17061320546690112,0.07576437479096976,1.3458484178346903 +0.005654583112112754,-0.15356875917539425,1.7807668223071635 +-0.18723886802651188,-0.17232763372046034,0.0806537264810186 +-0.17480952478299955,0.444740393474375,0.05151747785065164 +-0.06611819903827235,0.07860439754477744,1.329346085122718 +-0.1962936411170636,0.40929544409008334,1.4806002613941727 +0.06616462177625665,-0.2458667045447146,1.122162765437617 +0.09888619621386452,-0.11300967900794895,-0.005149640728910054 +-0.18767828588708346,-0.18460186345632168,0.7425986170104231 +-0.1987108257037036,0.06857146407802389,0.26289930194763345 +0.017747206303254603,-0.2494144016172787,1.429191302215731 +0.47075093725322303,0.2066539012979054,-0.20350861067439915 +-0.09137275555310378,-0.008751877904068062,0.6833821971808548 +0.3263951107810189,0.36996345147035115,0.3408056894015208 +-0.19594443581274557,0.025592124829124374,1.6302187927161949 +1.5747600625417326,0.061377414213440284,-0.24714851007076383 +1.25561979172297,-0.11936027517071021,0.19105814358532092 +0.13578648206709948,0.15029327856455021,0.8529327242102862 +0.11730390323764972,0.4675530636185322,0.12038110551706599 +0.2889685930730841,-0.1505459350547509,0.21763477433725198 +-0.1188464082823116,-0.1592853594977533,-0.0775191634154043 +-0.18624002677188117,-0.2481502980061312,0.1491425687234036 +0.3371252738866273,-0.13727911996232353,1.2688304947108622 +0.0794584898482113,-0.14965247376025492,0.42920077834447223 +0.9392113313830048,-0.07160439780851569,-0.1288225964237722 +-0.07775220724979448,-0.1352819750883324,0.9994486301389596 +0.11914567838687157,-0.18290936285135975,0.3304658530912852 +-0.10801874336161149,-0.04452569434628223,-0.1860833400813169 +0.38444918405683215,-0.034048877308666015,-0.18466495369493258 +-0.0523348182816247,-0.23125182617903522,-0.04007524992635231 +1.7154638348159057,0.020409155677415747,0.03138193624224361 +0.1748008408297519,-0.06681428620830263,0.4265463460374369 +0.014627459501427131,0.22859650717712166,0.7763470073567791 +-0.14294014282764983,0.3721438284933831,0.3733587261205139 +-0.09385198205687251,-0.18251741436456936,0.416685539318404 +0.2490446700403003,0.21779134079397755,-0.026679985233308168 +0.4294527037835383,0.11562595664847619,0.05436508910587562 +-0.16092606727268283,-0.009653842198132978,-0.18301880616053628 +0.4868222297646857,0.19417162294944895,0.7168072679754628 +0.12608622699319116,-0.04687658018966678,-0.22987783325475336 +-0.06921123063777943,-0.23733324455047805,-0.1149677727133798 +0.03153715698442383,-0.22214391945845607,4.877699268828119 +0.4871189346007696,-0.2281551645364464,-0.12089572156223938 +0.45981484022821373,-0.14560550669788522,1.0409992574136258 +0.19422219044216038,0.1865867190088885,-0.12579087306577583 +0.49011410100333364,0.006561273241584675,-0.20502164146196047 +-0.052956853532475645,-0.18899693626563058,0.43399580650296066 +-0.1532919588503364,-0.031361500823795296,0.8923812400530549 +0.12208696481469766,0.02493879539483934,-0.20820280357332618 +-0.1621660318815937,0.4304745530364307,-0.1192014681335487 +-0.0067677277247128464,-0.07745545580052038,2.945933852288964 +-0.21824508029349832,-0.20500356018224022,0.11770460525917947 +2.164688855723103,-0.18989127541938516,0.7127942462232284 +0.4453575590884833,0.12352734117543063,0.39072503607425746 +-0.028443812847451955,-0.03150625988280914,0.6077791966729862 +0.3096659756826817,-0.19558556102408037,1.1229233999589483 +0.21016849550656352,-0.22844952077275144,-0.08836350676318466 +-0.13690914624285877,0.09049390552930142,0.31745333164660183 +-0.14606419226091907,0.9698208909739916,-0.06077458230603336 +0.5802272788519608,-0.052501660021965824,-0.006775758650402003 +0.4590782734382597,0.09406917551941585,0.20456421462512342 +0.41230634942217015,-0.10181331312872482,-0.03154354283704877 +0.06369137462554014,0.09327582473668389,0.153774204392423 +-0.20725913395479667,0.03681858545621147,-0.09620059089493399 +-0.19449948176415816,0.17564682617843058,0.8898007177347047 +0.18879330067462047,-0.20772543325431655,1.049250868004448 +0.05546473408856689,0.1310753110627309,-0.006352466139766422 +0.021631890460871828,-0.023550073033611063,-0.0912769581320168 +-0.21430894627043764,0.532646741934337,-0.2074925646024889 +-0.06899615536342027,-0.12113438073712704,0.6995012118032997 +-0.1878037302418116,0.17087355148118244,1.2802900497267267 +0.0827927024582173,-0.1660215534404288,0.22502237018697147 +0.06925802149465338,0.0541696717748289,1.4922513490382328 +0.16647922748203592,-0.12360396825320627,0.24963759594243978 +-0.23729195230787317,0.3784188479797558,1.4452989299409125 +0.3724477691737794,0.4874968098125102,0.12462679187626224 +-0.038828266606921485,0.09906328016940807,2.0315547109131855 +-0.2155695671814576,-0.21923636319533407,-0.04243048525575491 +0.06804718897839518,0.07897463721976877,1.2178638441117733 +0.8987788794933655,-0.16528098364400318,-0.0025867776894462624 +0.42256421588122905,0.39516915879547887,0.9348509993053131 +0.005830939387961642,0.5629383796127408,0.7199473328233175 +2.0701910014067866,0.6242578596634265,0.6240421360901749 +-0.15803880647926907,0.21314266327570625,1.8178012573013294 +0.590573277365245,-0.21654130558766102,0.6597785509857913 +0.26409053309858577,-0.12984262187388354,0.5026545928484477 +-0.2327411692572296,-0.1331617412381005,1.2109238777385678 +-0.08024737014753158,-0.07494099923240652,1.4445592771756808 +-0.2345845392510557,0.5578599275349752,1.156399125799962 +-0.08583065502663206,-0.1764058833846045,-0.2052340403230147 +0.5941523233141142,-0.16307314156684993,-0.031259874818401784 +0.11691241349134507,0.13776025484659593,0.35027305146088095 +0.4408017729711933,-0.22004950528745515,1.732879772154054 +-0.02247718675815269,0.2850075852256968,0.2037287371418131 +-0.048500202537868464,-0.24379563564013462,2.6381726504003433 +0.10304162385430293,-0.22122528294444394,1.9011453784092431 +-0.07976850035847746,0.3031034276316301,1.8606675204363983 +-0.16756665784846633,-0.07558041304806212,0.5484118653308732 +-0.24876230730001,0.1648844213770344,0.9241599356603021 +-0.17585777379077494,0.08296570439096129,-0.06821985203968295 +-0.16790900381861223,-0.24046968175647254,0.003765181334205614 +-0.09833904828514464,0.04590962354317235,-0.17075264031505927 +-0.21604608785976914,-0.1744228429033138,-0.23936386993116462 +0.467163758753529,0.48295738125382004,-0.12028539054509199 +-0.08491867662388719,-0.20688966483418295,1.2478956032496453 +-0.19844228402190903,0.19778065922789428,0.19617736018297854 +0.44968210145464305,0.05823920272312527,2.4219434890088616 +0.08051050123392023,-0.23961466314865043,1.309348492733259 +-0.026440346426167716,0.02624528459285097,0.6331589715077222 +-0.08860633989164812,0.023364208436116862,0.9520423473883024 +0.08419987461816908,-0.2040079190480076,0.1689837068856026 +-0.13080452471240595,0.19029416407767297,1.075298066730465 +1.51565836646837,-0.09608249223073151,0.11245871661491635 +-0.16185305293498653,-0.23858721491251042,0.3193766932882647 +-0.11494130049130818,-0.19728043649164453,1.3455982469840915 +-0.15260758309340716,-0.04024469821327262,0.502030734786645 +0.5064298118780808,-0.1466607816189147,1.0898704819076126 +-0.17310100117063457,-0.1142401869138715,1.029854769360426 +0.2176957839909498,0.014687683019904307,0.26152853350330163 +0.11673438468903763,-0.04021195076828807,0.1455560461019169 +-0.13518053883419587,0.12987716159137114,-0.08306312493322882 +-0.08473787114717568,-0.0936073332805395,0.8267931149825203 +0.7383228648313396,-0.09611975560165179,-0.005040042840371628 +0.3551712224801402,-0.11277766629110464,2.4216311971553086 +-0.113190584473952,0.29902522373016305,-0.00482410646797049 +0.4601924885652793,0.0074774147089753384,0.5755667381523134 +-0.1668644367964462,-0.021296478749412595,-0.02284311210002324 +-0.03498583076320136,0.09500207905254054,0.2608180667427805 +0.06497550924109025,-0.09607686558523404,-0.16920319208719753 +0.05205088003268282,-0.0463908143816206,-0.1135847386859585 +-0.026892484873488137,0.20704747978889432,0.0435637525510989 +0.21431338763526891,-0.22886614879621955,1.2946649059378614 +0.4880815437470579,1.1103188012350633,2.0796395727044046 +-0.14992213844882923,0.25697502233442604,0.1039833872479416 +-0.029414097276107692,0.03535674704119224,0.07169602896984018 +0.0684139894028638,-0.14956634105381267,0.006637768745785866 +0.9062439190127642,-0.1822630680948001,1.2221986343695428 +-0.14987933890620111,-0.19901147172214784,0.19916490568423223 +-0.14312861491615647,-0.15250913813493283,0.5946182227488777 +-0.2360508035956259,0.016030922065546793,2.369892346118263 +-0.12938211188569548,-0.01531691077926986,0.5844786918481912 +-0.1687147751509196,-0.15899426973752867,-0.23808957754392385 +0.18414622289642402,-0.07734303514200841,0.21356533476925477 +-0.20234535158604322,-0.07219781417440438,-0.2011685511919482 +0.022760194682032497,-0.2121861136301833,0.011549655916522572 +-0.24670203018774617,0.12064608498516666,0.3122471699124496 +0.06728576880046871,1.6098453223521174,0.1422140628518891 +-0.1361476871835443,0.3141731906480122,0.6171689804940443 +0.43451036246621855,0.1405558234149259,-0.04118446387700031 +-0.2060443476071084,0.36183328244744484,0.08342413001156351 +0.02756987958432755,-0.1931813588078227,0.1462707469707074 +-0.20406122106056243,0.2351923839084717,4.328801649910671 +0.8052806589274493,-0.17060059136020406,-0.04606152079574613 +0.31124498249838706,0.6815155509128423,0.9196039468287522 +-0.1545676973023955,1.21476290055051,0.19262366152047133 +-0.030687788240765262,-0.15878386343407855,0.41468167105296805 +-0.1607624771864934,0.3459037935283025,1.3292415818456715 +-0.06018450358585947,0.19497593698609234,0.7072744472815893 +0.3516848653807576,-0.20324792815483392,1.241838766081723 +1.2331625107468565,-0.12824279381369208,0.47914425846690545 +0.5092472577555793,-0.059096455724924,0.24661390193483662 +0.2176664370948696,0.6533870458631624,0.2999004067790735 +1.432914665482853,-0.0653950676731895,2.02648012900517 +-0.03721914102351928,-0.12639434734016913,0.35729703592608864 +0.46109278979635515,-0.047938779529761805,0.39080444391599545 +-0.19152959744679543,0.3923521419266838,-0.23127808732817434 +0.18692088285532316,0.25674037193080035,-0.04658322655231095 +-0.004815540145259034,0.09936061004466445,-0.20060930651728398 +-0.1581084278613199,0.23999670944894008,0.23041848155858236 +0.03720357186976153,0.8406760654939951,-0.21715080289426691 +0.48734544797814605,0.2218697575416449,-0.019234684434687566 +0.8210591040426694,0.06076209327993831,0.48692496537676877 +0.22818422113826226,0.21605434689461928,0.7778546837684084 +2.3082787109695655,-0.14754498717823414,0.14464399018725593 +0.37283197686734504,0.3421248608134009,0.26751294488161936 +0.7476575015307224,-0.21631908831640215,-0.1367021159281038 +0.006673654312923938,-0.15209129585899778,0.36367565876801644 +-0.07194389018765088,1.0078557772087884,3.491052623351421 +0.01117162215843881,0.12506427928156322,0.2930863243644153 +-0.2293762735427343,0.14480162202904562,-0.20923482393697335 +0.18706863504789706,-0.24493779635668428,1.5289406129042924 +0.5099033219476451,-0.2245959976780794,1.5401462506377184 +0.5309782821555206,0.2066658235028601,1.1191403907150854 +-0.05856702195594596,0.5355303508585593,0.5242547592516654 +0.5810906989285085,-0.2012126334695344,-0.20803076728317907 +0.0817123489709537,-0.2151906590133951,1.700505599785136 +-0.07877285014283322,-0.2400443257329791,-0.058125912617714076 +-0.1883401669205678,-0.10071401573875319,-0.21153313391379608 +0.3436104636912626,-0.01083754061890485,1.779476753455175 +-0.08387615014529409,-0.2029954170879919,0.8242736029827082 +-0.1832819311540671,-0.23008775273732965,0.4725899043886591 +-0.19727876370523742,-0.2060773165546809,0.15586679137527554 +0.05867109716368729,0.6879922054788858,0.4041606405219993 +-0.09979619742670756,0.22779024730342012,-0.09366663412902776 +-0.22102957385706334,-0.20076375655653525,0.1749851822467049 +0.28676530535003175,-0.2380710571113998,-0.16502151126269884 +0.24641848490412782,0.0282061500241923,1.939588878963972 +0.6035299787373827,0.2890036771294021,-0.15923315378017847 +0.9667443269684199,0.19057134885930765,0.7692543114228783 +-0.09963840916852096,0.019015193353978777,-0.11243986457168292 +-0.24194594594816507,0.3231715169871626,0.32680320202196456 +-0.026938033335066974,-0.1119288770838863,2.1783756765450293 +-0.007679311870473965,0.015267142493699593,-0.11379758041916957 +-0.009342505299731046,0.27429687071176356,1.490925776460181 +0.3984758677835759,0.013017962491117196,0.5459420281050446 +-0.2138727777641564,-0.18130734669482912,0.3330963047518891 +-0.14079131004341622,0.17573610825572844,0.44134175962159206 +-0.14280368310957553,0.06646658495564611,-0.2254702504927368 +-0.11310013316151776,-0.007552220136691518,0.13661274271059326 +0.20010356934805773,-0.080360796922475,1.2735363226418968 +0.6917422244647063,-0.09167792367875352,0.9887203097412447 +-0.12327403361747433,-0.07776879221749022,0.04762317818153222 +0.060445902279013586,0.05938027412263369,1.355711921711461 +0.032828146060544405,0.7736839894955121,-0.13054725271124276 +0.48438833203049647,-0.026172603770536346,0.9673589451497742 +0.633499842211535,-0.23853155529553705,-0.15008227417066636 +0.10145478569521305,0.10679749677102768,0.46218085112434626 +-0.13480510986108277,-0.21299030485286669,1.0097835029659503 +-0.21178459328070431,-0.05755253445340955,0.5248119791236613 +0.841588933770739,0.11410497388051838,0.8026289933794735 +-0.24403736134621265,-0.017329828588989488,1.7922291648793816 +-0.22668952284048158,0.4553652043219133,1.5968530440147348 +0.14818850568140357,-0.06815185857549508,0.42450615316008566 +0.23832524570009345,-0.10028971861042629,1.2694695209541083 +-0.1045687768526456,0.5637758201598089,0.8210468541297842 +1.6744340290420356,1.2873667668274251,0.5425422265400834 +0.11085080663027397,-0.10355189755012262,0.47246182142209237 +1.1684481658596015,-0.18100440333899925,-0.1686725393380242 +-0.13126473455941703,-0.017910135719146236,0.15483693571775076 +0.30215389607760557,0.042536553813963485,0.29245441773678116 +0.15895682338278838,-0.19825370029054917,1.4377575501254891 +0.04260773833518755,-0.0859767390865713,0.569646258856541 +-0.0382875526104631,0.2753487793243662,-0.15459267285322578 +-0.10349581452121498,0.31322531666543085,-0.16206889614593667 +0.22357202010043437,-0.23133744254488015,0.11500953519289753 +-0.0757530531691468,-0.23292508782653815,0.049004613647393724 +0.43071707320842045,0.10376467537196493,-0.11105703740953626 +-0.23678533365433313,-0.13390519403492343,0.2920906539398491 +0.8020193584096758,-0.19876872225822956,2.7504937267692435 +-0.1762618151194138,-0.1396947361378242,1.4936095482961422 +-0.23215128967941304,-0.0533063862102304,-0.10582711468552339 +-0.17765746698169022,-0.24857351820963441,0.25567213989943893 +-0.23368159777443576,0.017434242294156854,1.6634541150889168 +-0.07471877260496382,-0.24650834932326088,-0.17662041477418244 +0.013878320339318129,-0.07749927389962125,1.977502712329429 +0.20548996561484972,-0.04968208160265172,0.534682890679893 +-0.21823331736846624,0.05757481236298012,-0.2172599812319439 +0.19416406636275252,-0.05523151739618182,-0.1774847540325501 +1.029165181376247,-0.13057686455687045,-0.19063659790998122 +0.08478324632505385,-0.1330888116470015,2.4783884187697844 +0.10163667812289823,0.07681172101679229,-0.15157911894771203 +-0.22762759471773428,-0.18967474369784915,-0.2436987587542222 +0.32660279392081915,-0.19120011216429125,0.13053406368183845 +-0.13162518784259736,0.5346974178177728,1.3230850176949034 +0.11584452223668135,-0.16099563416968699,-0.01347202456250382 +-0.11687715720680078,-0.01944410172516392,0.28333187614984756 +-0.1328288294210666,0.5187940650908508,0.5394291319993528 +0.10755177612154865,0.05808797006689598,0.707454290380405 +1.9593192883859483,-0.24895346309852584,0.5287161069535865 +0.5127259175106996,0.7132718348801081,3.0928519676965656 +-0.09135243852854921,-0.1533863658724312,0.5760784092319784 +-0.19439491653771818,0.4932631027430412,0.8060429843341768 +-0.21754672000736297,-0.019324100576065623,-0.07671000328749669 +0.268521708591694,0.04864891351998846,-0.24838020082955406 +-0.12896781768245477,-0.203714345170707,-0.07367409152264062 +0.004812568877490875,-0.21081635582904046,0.41490694056317023 +-0.1165919374760842,-0.2062996220390248,-0.007200601356743386 +0.4206837303369615,-0.20235005802905223,-0.0013072242220359687 +0.41091643003989997,-0.0328950830924199,0.18603341363034603 +-0.10847689113939135,0.2387333824339728,0.17537004230827707 +1.0715304184811683,-0.22553595383947667,-0.1969964744518046 +0.6240183605386687,-0.08770988631998364,1.1864702958323257 +0.2786867019057281,0.05967492011911241,2.0839328217724518 +-0.176491848848353,-0.18785667741748807,2.1939942931517376 +-0.06122381166126531,0.18330329999071016,-0.07469565063799422 +0.08271138009148166,-0.2086063492076461,2.5090767232420035 +0.05649927099457769,0.4187634492087591,0.22369654780247467 +-0.0101127745411492,-0.09658906503443421,0.27540856781800915 +0.14733473990862944,0.059724110207908854,0.01819982256654812 +0.8747611611862838,0.28265406290750517,0.6423815508414831 +0.6720745296976014,-0.1764116098081976,0.861448592231675 +-0.003713087959344219,1.013044712937325,0.6492709992262391 +-0.21290105289862382,-0.042327526372373164,-0.19022782336451027 +0.8891332564592187,-0.1918701776396462,1.7815103164553276 +0.6469902827875061,-0.09404777114152466,0.548691891463373 +1.340079660829132,-0.15386243904827257,-0.0029993802694525673 +-0.08480379180335482,-0.1745734765147618,0.6154102515610606 +0.4904045508683742,-0.04745281667662771,1.8105083210503943 +0.03757407603708829,-0.142233173864936,3.3285402933180426 +-0.11056984430028502,-0.22849758106666204,2.210943038824329 +0.15033461088669253,0.743528522273799,0.20219123529765376 +-0.1454739033226527,-0.06793019649127063,0.13843236798406644 +-0.0649860450766648,-0.2344641981687814,2.3165469736820574 +0.14752927431662655,0.07691304783712055,0.2165379452268893 +-0.2422131961127912,-0.15470208453716744,1.1355866565310353 +1.2602257936325618,-0.0669085958806131,0.17510521371288618 +-0.18534943028729775,-0.04330815019834239,-0.06572719682024558 +-0.2167784483071935,-0.1798840115237233,-0.22903193013556694 +0.39836042683793915,-0.0562579579591887,0.49107571341299494 +0.7631006840523562,0.17992184464327138,-0.22518677669395315 +0.07395195899969847,0.2198715492725325,0.6719557897262467 +1.0249500478684954,0.04125046108812774,-0.0634502136556028 +0.26080500771770354,1.1489939567237082,0.9225752777210989 +0.6382454374327651,0.7561235043738561,0.23667531822264692 +-0.14655190001965168,-0.24543782904959965,0.39741545735894446 +0.0047343647572907765,-0.13212539909536591,0.8182888795638581 +0.31636659240675113,0.08904302851627649,-0.23735930083660914 +0.6531632471747697,-0.20976737590572006,-0.10682198977549703 +0.20504297237938945,-0.22824015700061143,0.9820855451278405 +0.2878435372980336,-0.03610006627768508,1.5846732297978876 +0.1839075327305692,0.07862992842351368,0.06036315445146073 +-0.1284619560441837,0.02832958063539004,-0.07879776290604412 +0.3747521450425825,0.9558047724871856,1.3689534996903956 +0.33662775477914186,-0.20471987062694844,-0.029737950719631145 +-0.08595597202139871,-0.08260148518601837,-0.22848052033009272 +-0.07840895726837013,-0.18738417474906127,0.11631630584863906 +0.2640962426549891,-0.18592242921751867,-0.0921549597364423 +-0.22978187535735184,-0.23997373673733868,0.3248583325861022 +0.3091889785593305,0.13799241858174965,0.4827788695442542 +1.3883406022046256,-0.19098098872905536,0.08003511757706788 +1.522749490694541,-0.23182013319891231,0.580242211149195 +0.6852624294939618,0.10406216117901046,0.21564955888564225 +0.5996844731844385,0.050901186250126906,-0.22406613884423035 +0.04923532252552176,0.1983425680210762,0.9657404581710831 +1.15776590294256,-0.13404947037844545,1.0346251091458938 +-0.23674792021444785,0.12327656589753139,0.5176568331130988 +-0.10448920016284352,0.10638437758364983,0.015423070422928786 +-0.015081739349177087,0.4075486681080178,-0.15210950248884927 +-0.20937816568432166,0.9348459133718072,0.019963128741184055 +0.9613752450113697,-0.1726240377576211,1.108745347501947 +-0.09532178414038198,-0.2407495876176953,0.0859239054191191 +-0.2088819618954102,0.41749329461941465,0.16294569360768468 +0.3656702126948381,-0.17413795968179577,-0.16752964005175552 +1.0752431503100401,-0.11443219450425529,-0.12903453701562373 +0.06137717041402252,0.39614939393301485,0.05572059504958993 +0.15944946474040772,0.3117944797418155,1.0160841420320514 +-0.13554999877677418,0.07655210114549998,0.4194103066940461 +-0.054303290331514376,0.268819431343855,1.5612275483075477 +0.4935989702244631,0.15368998708406983,-0.022219503018428316 +-0.0042288221789777425,0.46772883011331157,-0.08441186634549719 +0.2624228744375532,-0.02668107406414308,1.9174598158352008 +1.472500269218966,-0.23852299456275056,0.36508936928774793 +-0.11859820017491246,0.06325885482297566,1.484374091113358 +-0.02904883067065575,-0.09871942851828999,1.0194197378842793 +1.5346791876875256,0.0043261772544311294,0.18366773984177498 +0.034770105278439156,-0.09054870659515296,0.6777922093634787 +0.750859689476892,0.0038518786489782353,1.1660502406119164 +-0.12850361608906463,-0.1986818547315678,0.3080721661756505 +0.0336674337752641,0.4867505259238655,3.352534544262798 +0.15449092672955056,0.7372977315691209,-0.21434439204364236 +1.227686271299256,-0.2062213329940125,0.16133977818936895 +0.5969919270399378,0.10791311924172631,-0.0007463614789200435 +0.6575661220074545,-0.012620043577162038,1.3590246545410654 +0.4858405482829422,-0.05578900393401923,1.2823031058686967 +-0.14277985217590217,0.2099512755363273,0.6027537986142758 +0.5183264114973314,-0.14282157938770196,1.1668691027925642 +0.29627602838978684,-0.07087891209292776,-0.06141265416186989 +-0.0767341475303609,0.07852385374162113,2.134248063614377 +1.6061165963588298,-0.12584280059954783,0.9102205093363851 +0.7002379942763838,-0.20746119532355028,1.124278624409232 +0.2509879201766897,-0.009009858509412272,0.7584162613331966 +-0.10129717533110139,-0.17667052049687648,0.5945625558447795 +-0.12681496266401426,-0.19619754507994794,-0.2464700832449752 +0.0577629873355624,-0.13784272271079476,0.20958410363032032 +0.6358904895941423,0.15742791843256082,-0.17830591292102627 +-0.019907983344562924,-0.029597267658297288,-0.22870262779445005 +0.4520532880775864,-0.20037396507166283,-0.08181862934691242 +1.4580107168062393,-0.24871708392993244,0.9146117007266505 +0.17847222879898028,0.17381045096720704,-0.032631102936785505 +0.24154209946218075,-0.09821996373975017,0.5506216146460913 +1.8899613511396032,-0.15247263527606172,-0.014417792519979877 +-0.18514320363547376,-0.026565031182149618,1.1400095965279085 +0.10133850850087861,-0.23687681427455504,1.5728090892027344 +1.1554319750489808,0.023967184668158836,0.04235032429364072 +-0.16128843291144634,0.044838075399677435,0.052851954051069905 +-0.1307601909680221,0.10323008803284878,0.878434666416561 +0.6363367418456441,-0.10621033786595904,0.14480336155221862 +-0.16175801132359624,0.253146634209083,2.3467873390874754 +-0.16795851175180107,0.09740813336583765,0.368370542215981 +0.0937254919560131,-0.2300372655011615,-0.22031080691347396 +-0.1853677478203321,0.14818830722166632,1.2610998697344724 +-0.1185856044764721,-0.17173908900919693,1.4033502971247633 +-0.04517469235260005,0.020566009790531248,0.10234201675647986 +0.44219441724438946,-0.2140590142612997,-0.019094483556499786 +-0.22926662782902985,0.03387846543140588,1.1673218155219434 +0.05097644320556688,0.3903079169167891,0.3366930099826849 +0.8579214145156147,0.06680533487815504,1.981922506635363 +0.26481895064756644,-0.23690450155008977,-0.24431252263945424 +0.6894105076700642,-0.04037941703026629,1.0536778432147356 +-0.09837376812365553,-0.012140700234295088,0.2196224550435808 +0.6575895268057461,-0.01257937149873617,0.43397198982445295 +1.222617249164423,0.030451603845544795,0.7360635861955626 +0.015527219596874864,-0.1734050291884971,0.38837488833112854 +0.5435158845957476,-0.1785005337409855,2.1373176575918826 +-0.02762580299008241,-0.14817923755291845,0.5176784666713586 +0.3803951581420073,0.0470565806924767,1.1306864075735672 +0.07828907113128958,-0.016766308955499604,-0.09956260843978607 +0.31530510464450745,-0.19867551129418803,-0.04261448115812708 +0.2518845100268704,0.160102326950053,1.2822263521933015 +0.22702670622735904,-0.1696156524942104,-0.24652661653355595 +-0.21677671892952594,-0.22336111257047872,-0.09361178580026855 +-0.12591195628356847,-0.09201032328757741,2.413242541323719 +-0.016626707360585774,0.23903218853769154,0.7347016388458649 +-0.13657184264867842,0.27215740173352687,-0.07223189349014189 +0.4258808601654185,0.36465743575361287,1.6998986317039695 +0.26964604260248215,0.17619241006333897,0.4188546086710583 +-0.030086553967372365,-0.23689823891573314,-0.10670735297334133 +0.20921169176767784,0.16602566849761818,-0.1388759940484996 +-0.20908239210643395,0.2065322131734224,1.2846642603231555 +0.5246715309973462,0.07633286332377637,0.16128906553999328 +-0.06298584402604551,-0.031361860017706356,0.5205751009695252 +0.006446951326217032,-0.11783301407852195,1.4113090079187935 +-0.16193422449550093,-0.035310122603684546,0.3460692129230958 +0.05670754416413942,0.19865118639698243,0.12010834574692308 +-0.03606278354671877,-0.15363538616019035,0.8175912094609306 +0.4872111252604302,0.406629084985178,2.657152842548415 +0.19204279943459984,-0.17842206804446564,0.5793871119539454 +-0.04345858969469704,0.14991131349106124,0.20257286843778416 +0.8441983059100646,-0.16301052489118098,0.6300722172034566 +-0.23502209838600435,-0.22255357109963217,1.1166890726655676 +-0.0004232447278870177,-0.015549444831105236,0.08941236342677317 +-0.0035020983990265153,0.108991582156647,0.46845799148703426 +0.08292786934767382,-0.1506811938261157,0.8827348709179059 +-0.2316182176561275,-0.09814093721347159,-0.07725045135100031 +0.8959666785496785,0.4753337565365602,0.8571653626649458 +-0.18082781918683782,0.3234006993730254,0.5811906669078245 +0.27668822604687604,0.27993768939408403,1.5468766644693646 +0.04071023103021232,0.023578749509350516,0.10019835294204477 +0.23215198511945928,-0.20124044706929806,-0.08532314483929088 +-0.13981648207614683,0.5419700688193583,-0.06455584512167264 +1.3634814772674446,-0.06321913394135056,0.5812094478560791 +0.15413333151860031,0.022801458767837457,0.13898214608068377 +0.9021738742709593,0.09926064510114435,0.662225443902555 +-0.009870235455935183,-0.247514556061653,0.10814066015993878 +0.23948361699345183,0.5593959053541206,0.519735647416161 +0.3253049806275332,-0.10844796605543411,-0.24265385868375164 +0.28526053564235976,-0.06121495065810936,-0.14776163146313248 +-0.21258780378662376,0.6060112111143483,0.5177772998007046 +0.6713297761222653,0.1974705405597233,0.2116185802593854 +-0.1227702294154194,0.21699965154098388,0.6724858261274465 +-0.05637748749868171,-0.03184315776650398,-0.02065682579983455 +1.2784385376762681,0.00821159358258794,0.3737952242369973 +1.7060100289435105,-0.12679072619645265,0.2044184945741016 +-0.21721683354582416,0.1648748910657774,-0.0409666919001202 +-0.207013362211181,-0.21636389729147823,3.30099345295523 +-0.19206306018115663,0.033600696437383615,0.9958303909067865 +-0.003873380101620111,0.04486074983678334,-0.07739373959407381 +-0.09139971041993514,-0.1536223485160732,2.855703245013221 +0.11139934849816441,0.026735646896863863,0.8663233974738249 +-0.18119140032905406,0.1427768006865332,4.17996318334771 +1.1509050629097815,0.17698630046289238,-0.025605058350376242 +0.8878285598394506,-0.10790843978514503,1.1979539770089072 +0.11141530052966175,-0.24780945188783213,1.1252291463889394 +-0.23525531925306312,-0.12602162386731894,-0.16908890923694664 +-0.2190311910784584,0.36281852037853024,0.6064652675454892 +-0.14600588517126928,-0.027782314812895142,-0.22080826072029341 +0.8202439901887106,0.23029675327591054,0.13021305878369455 +0.3147588425491067,-0.17690846132885663,0.45820950819836725 +-0.165859771563932,-0.22988960509026815,0.6384042114442808 +-0.24886717575224188,-0.2297729568202493,0.8069176506661144 +-0.06073156778561217,-0.08884552592836123,0.014844924879247767 +0.00960726644656279,0.3583454883170185,3.6098601556845473 +0.2696494976845166,-0.20870553645968326,0.7082575082467976 +0.6745571804483083,0.6021730212822265,0.8648527722357107 +-0.23977699016662338,-0.16401310227170002,0.37476637673596747 +0.6751765671716959,-0.1748315998010248,0.3865418037366982 +0.5146208141458057,-0.16223418179771174,4.174471834077765 +-0.20561818169679674,0.9474136047340522,0.35632767400807197 +-0.08514761850959282,0.16442525328751884,0.19671062119540184 +0.6001422794249903,-0.2335477527430665,1.0193611500750994 +0.017908615971983843,-0.07046373027361655,2.281683186597318 +0.5976053932885875,-0.04057318063925269,0.4930665986622902 +0.1510291723837182,-0.014594421653663286,0.5228804658672892 +0.5537259406764242,-0.16387339124594602,1.464256530061246 +0.6450563321627354,-0.10352925669623386,-0.008113571924382806 +0.15907278233565486,-0.2470289573059344,0.02077098141888095 +1.1611373972682255,-0.03592089084143418,0.4818957308714672 +-0.2360049804184177,-0.08892921408360874,-0.03721641002919193 +0.10474844189481614,-0.07888394630451045,2.3719844038947993 +0.7509508845992139,0.18954615621357607,0.47755247262807254 +-0.06022075926333506,-0.0629960294886795,3.439577776093296 +3.7521819890449466,0.8204473595713164,0.0061017168235038 +-0.049231988626093987,0.03087826919131953,1.2032516491962206 +-0.08266381851246937,0.38667859719675535,0.8753245354718542 +0.7402965192377533,-0.0465969077929245,0.14462777166662633 +0.13895824798515177,-0.23557349685912238,0.3871867658483712 +-0.2479064640095905,-0.025589982302006764,0.20111273381180172 +0.05967001176118808,-0.16207601420645573,0.8764103568898896 +-0.2423537897109917,0.7745996610485575,0.19247901402059858 +-0.2468146487425223,-0.20425699887960116,1.2138243107140179 +-0.22043124937058925,-0.11148625752473776,-0.08815043489655919 +-0.11163654650931307,-0.1345125104866281,-0.12683882088712786 +-0.22627711795706423,-0.07206438634725301,0.07669940709161 +-0.2298660690498166,-0.19667647673394184,0.5190043613910456 +-0.02815214273641775,0.07986913510762761,0.6748405729493016 +-0.17001429423361775,0.09452404394650271,0.8935206788818333 +-0.03390149801858014,0.48326623381698675,0.5800919020507357 +0.2418357429837218,0.1864263544814006,2.316816036417479 +-0.11648135272184545,-0.0973553280111279,-0.23197266802036431 +0.46749189518704015,-0.1152580257876919,1.7838525062175625 +-0.000521805712053347,-0.23128926285304918,0.9314449996334464 +-0.2226227411509072,0.429561089694811,0.6264494517260856 +0.67149602081183,0.022085657050612273,-0.17464799666514957 +-0.23064307312502547,-0.12473844711110665,0.03833239236671471 +-0.037697986619154494,-0.22841708054669582,0.28762216664439233 +0.016164266503909064,0.009884198738110028,0.6282548610694211 +-0.1741230711555472,-0.11045269815356265,0.7225115634117725 +0.3526617747689039,0.2834513165393534,1.0734603835836545 +0.04939133887595676,0.33875213094059353,0.19918448357502277 +0.032146765842820835,0.2698715889018324,-0.16585497331615193 +-0.21368605952067213,-0.22574418149642195,-0.08449519346283327 +0.21851681803831913,-0.2077619909105869,1.124716482797173 +0.44020260975167813,0.37085363486497425,-0.20356595766744226 +-0.14574508126936142,-0.147905925998631,-0.0795109059529504 +-0.23870969623555952,0.2503285028792499,0.2487821905004165 +0.29341665988657584,0.750127424065004,2.085216877526653 +-0.008554864555515823,0.2753172620906945,-0.11975394146294974 +-0.12481930114323797,0.13049935529385703,-0.21458657261129624 +0.7252207062687492,-0.16384591137231494,1.2365384132181902 +-0.1494573730790661,-0.2377814540444887,1.0275662345689944 +-0.23951066544833674,-0.01658612752504851,1.043711870787494 +0.9593689688297202,0.0877530835126974,0.5882474027796711 +0.416202445584414,0.6719878416882682,1.5558044525261419 +-0.05289416221832244,0.26542897351787176,0.861646790398384 +-0.18417755842243438,-0.23737369604338965,0.3195537816579721 +0.7708023575326093,-0.2368580560760137,0.07044980393421685 +0.3476311234428108,-0.23821899627782409,1.9332420645337565 +0.5746934732265738,0.5022613152752501,1.5966705747934122 +-0.04822133770798587,0.16860368258377834,0.02539438330088628 +-0.02678457720352803,0.24516267247109702,0.8591338454575033 +-0.17718313205438418,-0.24363618499201534,-0.13994593354514934 +0.45512288595988337,-0.09555987503398092,0.009810264948320657 +0.02429376844461778,0.10290561689034067,-0.17332307115558593 +-0.13143467261179007,-0.007674103590218279,1.1224006679064875 +-0.06196645131668338,-0.025086830126255677,4.794653718138886 +-0.24455835287176275,0.037152576700606454,-0.13500552439705438 +0.8895602022400058,-0.17049804980989403,0.15397097268636356 +0.21619213148229455,-0.18930806284611915,0.8166639804123197 +0.49454771307200673,0.4352578552544425,-0.04315028436071616 +1.090463462524007,-0.20764115873047082,1.2589919869443345 +-0.13970693221461883,-0.18519371785388655,0.009295128395735097 +-0.21704802934983042,-0.05306355813960045,1.5789141556663384 +-0.04974079998147868,-0.1289328586266965,1.9857284296184075 +0.43492664460020247,0.0625410350260946,1.5131567501287146 +0.05167268089808397,-0.148015622872461,0.2028618293448381 +0.1792908209012678,0.7150840283121211,1.2407040443351005 +-0.2473526816121858,-0.15461282627146494,0.903331938647348 +-0.17671822956696767,0.005360873556810142,2.0829586496174963 +0.23587871367363644,0.24610387721298266,0.8144613268365157 +0.09424557568345976,0.059611639924418536,0.4431401893719512 +0.39757402159199773,0.31506536844184896,-0.20051953838932063 +-0.09951126016994757,-0.15030991444894148,1.5747494102487776 +-0.09817933285182237,0.10985440482194986,1.599138772536898 +0.3348183022737301,0.11188526262601567,-0.009000130871689521 +-0.1921589397268225,-0.19807201768065147,0.3127675145383837 +0.29167223023989763,-0.07217220953690662,1.7035994517101691 +0.6992890108543309,-0.05886647998428837,0.46760039508923656 +0.00790368119054119,-0.09553187269408842,3.04725786118083 +-0.2300867604373653,-0.20803537041442519,1.2490430672132093 +-0.1652193121815102,-0.14076795104146972,-0.026781798722867456 +0.17344747612163325,0.31924056157162994,0.2886250465489265 +0.6322367012957814,0.29443619932746945,0.8116336807617854 +0.2014257216742858,0.23122727036121749,-0.2346902694884746 +0.7379923286702093,0.5864310967727996,2.089743233122488 +0.25149431200061945,-0.17071682530444632,0.30285721551314027 +-0.10972904088528285,-0.19633756125704754,0.38162491193698855 +0.43457629130003783,-0.04413890338996773,0.4268910822428047 +0.16256841943018657,-0.2152557294055388,0.5205952604399712 +-0.10403528816439758,-0.10329483927188546,-0.03457754801178434 +1.6324552643041574,-0.1502174218723128,-0.08687847572068014 +-0.20911509498786038,0.05405123961279751,1.0407392942934057 +-0.1495223004009817,0.24649397384369315,2.9193959277203563 +0.3036877752919551,-0.025935740418144698,0.32803095197572363 +0.1666279447253537,0.3333210739247099,1.2086494666515 +-0.04745018045461441,-0.1612713246589459,-0.2297640000376178 +0.4632439337857889,-0.17092736053479024,3.5665465538715133 +0.5502829738056801,0.19122843150535385,0.6334463792907159 +0.5122272366957649,0.9423530609074617,0.32964410959669577 +0.17379878796403486,-0.0026568014962966846,0.5824561756300667 +-0.1128250970773984,-0.02000692891203748,-0.013556790363168258 +0.1932549498242196,0.23012622770354252,-0.027896289964546073 +0.03632689760486857,-0.23061498466116032,0.8807794993993188 +-0.11440400523778946,-0.16857570702849595,-0.22358076997220158 +0.05946544092695144,-0.23580819598102143,-0.18071489516022876 +-0.23474324784239475,-0.24144042042159333,0.1737905181947873 +2.552956586862955,-0.21658693522862077,0.8282283216512165 +0.06513607243147945,1.0481996911958549,1.1180573838082615 +0.50316259171163,0.37792748997891124,0.28336128844902375 +0.11877773885818371,-0.1883145905370437,0.6645122016955489 +-0.20711484115562984,0.30520348120833585,1.138943919949663 +0.014969990739008066,0.4802864936089254,0.1401979064973906 +-0.1177611186875262,0.6614698571770715,1.4495320746677371 +0.13672766707684975,-0.23903323026195863,0.4197554863890459 +-0.24574401160200812,-0.14253607022913678,-0.07024840551044595 +0.2634120560821681,-0.11166314968505447,0.9264139857718463 +0.5402072006654713,0.058124107581420836,0.06399713816786051 +0.9966162247972756,-0.19989379971112653,-0.1742848258547685 +0.301512763095625,-0.1879444134670053,0.2741600415361277 +-0.20713242981801452,-0.13750138239809823,0.3092771386168326 +0.16918995500099876,0.12299246056314184,0.991495961588778 +0.3266743996116632,-0.22835292684050104,0.8899501463051096 +-0.19007244061220396,-0.010638269106370807,0.5572725683955706 +-0.02317369832223301,-0.02648770230260708,0.48892040747938026 +-0.04674425705686061,-0.08994844407837224,0.38545109297042945 +0.1359133173894837,-0.1497575424257551,-0.20429687534801175 +-0.07641174828349007,0.2494373804371695,0.11875975743725553 +-0.10377500995849451,-0.22666798746770658,0.10564781786325628 +1.350426294267404,-0.1291616388458009,-0.06790975061671864 +0.882538286670022,-0.21768614615225942,-0.03362769668033952 +0.27045598624140155,-0.10924777469866687,-0.09528616918808044 +0.05202223008462831,-0.05672780045284859,-0.20216871548973409 +-0.19711677152252888,0.4824146789419691,-0.219528400193669 +0.500579165282561,-0.23037569964603266,3.0495837999781985 +0.23346462837245546,0.002202994371605649,-0.1839136479050804 +-0.15748656531166405,-0.16595052934261362,-0.08750847074695017 +0.648561786996575,0.7002940149450703,2.7727165713723148 +0.3543059846685258,0.353601664987785,1.9505419626834035 +0.3080799896815597,0.48792204237746795,1.7705582908576218 +-0.0491718430298663,-0.12948712620308916,-0.07661390464965334 +0.08311672016972799,-0.20503791543221814,1.3423540473900986 +-0.18191293963466387,-0.15768291307355098,0.050441637268425044 +0.1353796863616492,-0.2334613266269155,-0.19593279433709046 +0.7846570805121937,-0.025091185594892262,0.3429232584527273 +-0.1920895193865111,0.04539484578752212,0.07687908860157583 +-0.16551787916987132,0.16082708964485415,0.856010056411159 +0.010365959241342537,-0.23589887512773916,0.32018881521267484 +0.32002033223378223,0.1595909880478279,0.5160834711125732 +-0.07866146005840186,-0.13744543743039608,0.3386684442447494 +-0.12351716080428818,-0.07957066547131458,1.0481505221513896 +-0.22023206616490498,0.2957504534114306,-0.08944054591882306 +0.6429162056468013,-0.20124256856500727,1.0570572608022428 +0.06401414989249665,0.000968751522912481,0.24684778277309527 +0.21219083742445033,0.028082584247431874,0.10035265590690634 +-0.23430529253821777,-0.1408894152742927,-0.11327601470498852 +0.45976318265797855,0.08301509348065461,0.2843755211453173 +0.31846568969370503,-0.1354056313393684,-0.018464642535998388 +-0.07401658538806166,0.06130127872003843,0.8858250557728704 +-0.004327181839725386,-0.01180302104217354,1.609119158570519 +0.642135678508197,0.7147104154444672,-0.05742483853695182 +1.7230231503130395,0.18836500876997225,1.761684941144161 +0.3256908025284436,-0.1164335605018521,-0.23566838141111476 +2.3755100523291324,-0.2129103241806029,0.4023344978360035 +0.041275232752018165,-0.18164377366047293,0.3128385591296523 +0.26819964120053674,0.1395155395190087,0.4834647420265308 +-0.15652523290658998,0.4870141617794016,-0.03442854683048402 +2.9242777413820975,0.015260346048353801,1.0609356513615096 +-0.22048107852904883,0.07173241712871253,0.1926065255104309 +-0.1961829530455063,0.5166610418364975,0.9014846416703481 +0.23796937395288176,0.07771243737215877,0.7885180175600974 +0.11441799194665803,-0.14492164067446192,2.8543958322213574 +-0.15314028447636152,-0.19643399582255006,0.08073379418674603 +-0.15524511383689366,-0.021758359283463202,1.5458602635693883 +0.967815689082312,-0.20061708210608878,0.3250758568673284 +0.2508595110276862,-0.1546194475736286,2.0091444130509912 +0.6469069311612773,0.23679340787304065,3.0950264941753125 +0.46470626957842764,-0.1474327090136579,1.7357061270412646 +0.05948041903857265,-0.10727603799492672,1.2148369309321043 +-0.001513321807387502,-0.12673494778766567,0.35781998358105715 +-0.17713988269390898,0.14067606821084222,0.22058627250573126 +0.9434917934970066,0.20670989129999812,0.07094462326664708 +-0.021440486015917193,-0.10387276434295392,0.8804624827582339 +0.007383893040509237,0.1940447926460186,0.23680756638465933 +0.10103026200066845,-0.014363927718618996,4.1819446563665235 +0.906501798644683,-0.06218179683807609,1.2133294918577016 +-0.20361469349511505,-0.20974952727668342,2.709974618973916 +0.09759307498941405,-0.15642693332298008,-0.21376047832624806 +2.2658309284341946,-0.0656015642655424,0.5158509366457651 +0.05343474049926167,-0.10147496899746117,-0.21281576128776608 +-0.23761555606518503,-0.18538713040327612,0.06910113042455063 +-0.062392040038152186,-0.14840387273184819,1.6367083611868194 +-0.14123468573872053,0.07770226994011481,2.1012691100525602 +-0.09995949199509074,0.2761229514646534,1.3841463370465572 +0.016705455554887783,0.05909336062967774,0.4843293710200036 +0.4889194308986323,-0.07012862643126899,-0.032449071519572104 +-0.1250268888807136,0.9667132108965661,0.5424383049871281 +1.4273786808568791,-0.04418344487749551,-0.05561830710873117 +-0.2208122472287521,0.24433455800431975,1.9196094670711958 +-0.24005176657422198,-0.09773788656564425,0.5813525481269457 +1.722425723569334,-0.1105514220375029,-0.16641062439236787 +0.7021518929611039,-0.04940548642626663,0.4559289544097518 +1.3770306551057616,0.8171344126871707,0.6292547297008759 +0.09654176303913531,-0.21450861879036223,2.34068727489627 +0.7758772638712406,-0.15123590701491324,0.36284941497614775 +0.044266372382044616,0.3271334750847683,0.2000909584915176 +0.37021472646789855,-0.2361913650456126,0.5044053103910527 +0.07015208706161546,0.7027535093850207,-0.24375257216390675 +-0.21282117969180742,0.17369583632712937,-0.012372791226506669 +-0.23374497819251866,1.8076006336810293,2.176399170199195 +0.22676678701527697,-0.050406214829754686,0.21846162059621832 +-0.1937243559523894,0.5036669105880651,0.6312028288558558 +0.9597307428410526,0.6314330441938777,0.8099010770860404 +-0.18671042720795877,-0.1149504455236246,0.023981223263921436 +-0.1367457165445528,-0.09270958414952032,1.0292157434789224 +0.0388538909393189,-0.19926174011536063,0.8859674385503589 +-0.22410927551119253,-0.211091732431411,-0.034813889981312435 +1.141415952333984,0.39621298711562625,-0.1879299808607593 +0.0018252611479118164,-0.1668541270955472,0.21521820551328724 +-0.05914579496395225,-0.14896503173035108,1.2768067198118254 +1.7013833100173539,0.2420054656742059,0.030018820178021544 +0.6930939225583619,-0.08580125090366941,1.4529806216055898 +-0.04301740457391304,-0.05115553210104584,0.14002504029672813 +-0.2001225173453745,1.5742665628161605,2.426686734091261 +0.10137018487293475,-0.043044449583614086,-0.21509447473963586 +-0.13449021164952701,0.008273403402216495,-0.16436204852509728 +-0.2377766473865436,1.1216924916419213,0.12869919572576477 +0.20716094288922843,0.04247085337614542,0.6229985543129158 +-0.07431843492193185,0.11928478722714625,1.3670658144680548 +0.35363699302324925,-0.20799942009601838,1.1080366785076943 +-0.16005299462513,-0.1256106599417457,0.01291833199243786 +0.10093102954096617,-0.08284008825528422,1.167916239506763 +-0.20758641437373868,0.41932193624366565,1.5102688379970908 +0.9031386484528754,0.3216666040670736,2.4776408647033956 +-0.14587607787937512,-0.1528053711344194,2.1709805514807323 +0.8188360006680606,0.16774492459525853,0.880809328418068 +0.06850028468360392,0.26905019050333356,-0.007550733702004653 +0.47809222555966635,-0.00211574149775437,0.6543641677474099 +-0.0313436337687501,-0.1007305659757754,-0.16698350848540444 +-0.18223184626189465,-0.20665453228528594,0.7661702655680944 +-0.12341627362955465,0.6443671620947181,0.41589948822229683 +-0.10395923841652313,-0.22471029868254586,2.746702120597229 +0.9781262359184191,1.0338738493896458,0.5057215866874144 +0.2566021547870264,0.4016566242225603,1.0851078548783815 +0.25145146144406794,-0.16341324755900838,-0.19857923371989997 +0.38324424431887905,0.025519605263923828,0.19121831730701982 +0.4752243111440818,-0.0068180130535730465,-0.015486399645107285 +-0.03197697243350103,-0.023737158548701343,0.717880820508764 +0.4700709397980878,-0.20412310943839157,-0.136902774620541 +-0.13071243889710424,0.052633520020384184,0.11430208463143882 +-0.14632541319446835,-0.006932201327050469,-0.16426822640105074 +-0.12695576013420706,0.10763562462753151,-0.001047234758938309 +0.17758177687533672,0.3667934832026123,0.7012062918219776 +-0.16276197842813894,-0.022098626807638605,-0.15912076786396756 +0.12051682009836256,-0.005930927283994691,2.538290165484613 +0.319762341049991,0.045036303682944145,0.37938702337400476 +0.05673063425744407,-0.02161035445793913,0.5891932427478342 +-0.11143931763070133,-0.0011732524102744113,0.8955904204856737 +-0.1374479052028814,-0.002521224303998232,0.5720648020379095 +0.397047213400746,-0.19511146602616714,0.2700046648310712 +-0.23624813822059834,-0.24339639205798946,2.745407918289855 +-0.22393764152360277,-0.2137677724212903,0.38511217342761916 +-0.03599159162186594,0.24174091510466794,0.49511805924004315 +0.9585900052477128,0.9269310703416391,0.21248159983581855 +0.6515414348346124,0.0070220044338545895,1.5525833656205899 +-0.17743013579504863,0.20814210262681493,0.7930811538094027 +-0.10561640282889659,-0.011577071051227544,0.14145948031871314 +0.059089514663218934,-0.03274937187321883,0.4973808143288515 +-0.13576874262383815,-0.04423911055558777,0.9422183197260545 +0.14393273545216062,-0.20199418889011586,1.5239938823949168 +0.23737195881690387,-0.15025238378597738,-0.08795998455582135 +0.9977095548060297,-0.18353128379031153,0.047747096038187775 +-0.21573008665795637,-0.01680686179482599,0.0756260225640899 +-0.2280992491699913,-0.15285946421307828,0.9808128440761874 +1.6828546701963405,0.4630903064556837,0.2029465031593713 +-0.08087170024930693,-0.18965690996693538,0.9309773758199891 +-0.20592208357110614,-0.05025845909957208,0.2787607867430266 +-0.1628796349383407,0.44868248930970156,0.6812629921450645 +0.6678797140051207,0.07886708011589416,0.6835938102184318 +-0.07126117462800197,0.6584212456534524,1.8029399078658201 +-0.03361884363991818,-0.22855731141485924,0.6033291180556046 +-0.060338037621642554,0.31180277587454397,-0.19107924676013027 +0.460167525983331,0.10831660315180974,1.9958480603864217 +0.6025775423166906,0.08854069962845923,-0.02976660691633015 +0.17649198647719666,0.3029586549301725,0.4394862573382631 +-0.1757497077306976,0.18447824424020365,2.20923315987624 +-0.19790930806360635,-0.08114038486637681,-0.21674748583319425 +0.14867993906299465,0.1600906282939994,0.10901061459507821 +-0.24931795954230157,-0.1588283255658723,1.0843839678582703 +-0.12379436076931355,-0.15874709912073462,1.799921779947426 +0.001585322282699697,-0.18268693520006768,1.3945172938991426 +0.23440713462132273,0.21988409212849352,0.016009474722968486 +-0.17154205050467541,-0.14993366966731836,-0.06889736652618297 +-0.13121926383895227,0.19123561684632634,0.26969688972941896 +-0.24561462961871883,0.0022387899690759494,0.752682521159536 +0.15233265155480058,-0.01745108804186729,0.1256696674055831 +-0.024460754429630416,-0.05388643888689626,-0.18192313444540933 +0.09758200015054214,0.1767860965826039,3.101950942829053 +-0.24895074332089046,-0.20637808191748078,0.3743432610969766 +0.2197425583712007,-0.2328452187600732,-0.13547442303578297 +0.557649552957229,0.5180573306105486,-0.18841202674514704 +-0.24778566080941392,-0.0736001781303737,1.1422904330373287 +-0.1934370445214256,-0.08793934352955321,1.1261334061019694 +0.19945599479732373,-0.13506601022103829,1.8896762100556521 +-0.20430155370380976,-0.08975603600097296,0.40356431241806423 +0.29543895379973506,0.6847112668636848,0.7577500757347493 +-0.15620819464371707,-0.12985761856567896,0.10063085153277501 +0.013868400079522947,-0.2128991517254955,0.01730064212390392 +-0.09952797693215745,0.3315185181894126,0.22467084152816535 +0.8486652741019365,-0.2010010344136023,-0.17517238620534314 +-0.21022392384381616,-0.16581148484355512,-0.02281063857498075 +0.8480937446449415,0.14193640087043335,-0.047370051640113875 +-0.00040425790752071644,-0.1823464926564504,0.35358697310005405 +-0.013009945391268679,-0.029457092721544426,0.08443437448751795 +-0.1693543267374955,-0.1902865408609208,0.47981790141973435 +-0.1673854589563849,0.3686931518249167,0.04660224894826692 +0.7048893412014346,-0.16376554279571587,-0.18183002934422904 +-0.17010275002595676,-0.11872942919861135,-0.2045865363668068 +-0.026787365384641992,0.13457427201435335,0.07477828211306298 +0.30592481156923945,0.7250548459106771,1.5116983782951772 +0.6810190534842882,0.31091096053739387,0.15754484826178106 +-0.23781996188819474,0.21291275536939724,0.7654749939431962 +0.39460985243012336,0.0034579442648157155,0.11441515919242584 +0.019615575724147516,-0.021134152922304417,0.9625444428017984 +-0.21373523147561627,-0.14506964888645388,0.18794418392783757 +-0.12123225117011519,0.1030647462994283,0.21203013055072828 +-0.1099240161160859,0.35065352422356677,-0.22940297816113156 +-0.10415489044526893,0.18008769343011816,0.45721956797935304 +1.6670919068768657,-0.16030728039178724,0.15691482114741562 +0.23149610629755746,-0.010438452461695835,1.6037223186777596 +0.1164746198841497,0.15755092043639213,4.223964573265009 +0.3521870958660681,-0.22197233970277788,0.18713410739575148 +-0.1521175298528511,0.2231533722778818,0.16994050212996797 +-0.09141823836878171,0.059742649602588294,-0.22848885216635012 +0.17840312724093021,0.22105984810776597,0.23058177307614014 +-0.19405816402581977,-0.10485095323720431,-0.07617905695181584 +0.011871390125643422,0.2771513559179818,0.4547735874258697 +-0.1588720693131478,0.06204304743346334,-0.2066404945665053 +-0.2059443521491425,-0.08266642186706291,2.0844357051239837 +-0.12439780199185069,0.03150404400375395,-0.11030451241089609 +-0.014325616539458241,0.07423101195445297,0.04630767804826391 +-0.17907749615784738,0.20285141627730835,0.4803995452840868 +0.19895699045655657,-0.020105782835299624,0.2412361701400158 +0.31646796126707577,-0.18959167842252717,1.0993354386222576 +-0.13384765149677277,0.18057015213556837,-0.11142332944407787 +-0.0335649907436546,-0.15418801668985477,0.5234342095623952 +0.05174883056423146,0.492549673208452,-0.22268732092401156 +-0.12763849507929273,-0.2080633549216504,0.03583637026499992 +-0.1921760825263589,-0.0995999552961978,-0.1688206563370604 +-0.20668573332146606,0.051445363371268316,1.0017744949167688 +-0.19239514898460602,0.1349728171221986,1.405826984505225 +0.06012228737025388,-0.10228839911280355,-0.08430985621559203 +0.007905830083507093,-0.11493767704513491,0.7943114162074665 +0.08003242658589527,-0.09075729893463683,0.024162069854126667 +1.3672723350574596,0.02628464824299842,0.7247900731505013 +0.6233206853490049,-0.07574316779802412,0.4583005599774146 +-0.09794581826214765,-0.21796342980326228,0.5928824086872506 +-0.06878749416423238,0.9116724318711338,0.0709924997721692 +-0.05547428520754008,0.12095647072096616,2.698222733405926 +-0.20902911153366657,0.1784331523327768,0.1624108738405292 +-0.11324560802758385,-0.06950818561189834,1.758292443044477 +0.26915677701364626,0.14307786108777965,0.13361034139588046 +0.05235481513324641,-0.20166181131382308,-0.19496565439425234 +0.7025988573952119,-0.132981411195719,-0.23898498744153548 +1.0132298696648097,-0.2175037051253243,0.007044570262006333 +-0.1450144228318393,-0.15840650408499418,-0.20934326095575487 +-0.15093538937921425,-0.16220885636283816,0.29160109500692255 +-0.19730175996073468,-0.016333374046328897,-0.15797571977983788 +0.3737307594736806,0.31094941181041225,0.5240677974545452 +0.21071519167838382,-0.12540582612244885,2.056081353560235 +0.19402808757077583,-0.20520276482656075,0.14074690467739137 +0.2592803430961077,-0.03011626737973999,0.14172976391163195 +-0.10152202173117725,-0.24280326252208959,0.6298725085230049 +0.40269046778298656,-0.14802396924082378,-0.03804168506831063 +-0.2041314326745357,-0.1644279972395205,2.2891760051870107 +0.7249494527197591,-0.24259594047855057,2.157592218621595 +-0.1045672021328917,-0.08027435823294923,0.5094610081968179 +0.20760667144534733,0.7201434318991689,-0.07159059930342504 +0.18163331856913573,0.04902539279914553,0.012439706742909895 +-0.22703286615518498,0.11757590684187597,0.27535316313745584 +1.2233953507038124,-0.11201121697756752,0.7363593966719999 +0.022476398312946844,0.8803615529346165,0.45808611980646563 +-0.23274311320132046,-0.24364784824159358,0.6790988847077347 +-0.11524965370619494,-0.06353266850446315,0.7219900070633476 +-0.248547260349365,-0.21461272432037629,0.15045676313333867 +-0.18634390007795443,-0.22689882649567214,1.3471455845939329 +0.44669653654533037,-0.10173202542382684,0.362211152009016 +-0.07105023455015089,0.8843118215072112,-0.20473022784018416 +0.780637325230519,-0.24800913011684902,1.2568126089339173 +0.40995948485197775,-0.12689641159562032,-0.21809173571073054 +0.13881215326144175,-0.15405211085551124,0.4127037768771822 +-0.1735164878698386,0.416902676658809,-0.24255091660063796 +0.612176506354185,-0.22924077381734473,0.8693113359075748 +0.3475146921901291,0.07371663976289938,0.4358818634337518 +-0.05740702806008491,0.3517552218878097,-0.07059839544159491 +-0.08485234277144987,0.21038663775559163,0.9476611766919765 +-0.02738744804414925,-0.10302659163668776,2.8204455561058457 +0.06275267818425273,-0.08198545674235305,-0.06702734545181313 +0.06043341388146567,0.6621594112494444,0.7318481297392879 +0.4566967057321145,-0.06505898361404647,2.269761145520012 +-0.09896906218493898,-0.23706113952379732,0.34965792857300193 +0.4558902598958069,-0.204579920072259,0.06063393972989023 +0.18476938934810233,-0.020273467026465347,0.7908899068617854 +0.015246511819739517,-0.07250910248529166,0.18832205865286217 +-0.14020140990267066,-0.1718496891387199,0.6883384402677283 +-0.13429146865623676,1.4210132922725902,0.21094049981225915 +0.23225433621804403,0.1767923161285257,0.7547612269389756 +-0.11589718271580907,-0.24782824710925377,0.7473526304433422 +0.01949432394505196,0.02679209588469783,0.0011279315418177838 +-0.24676278064774976,-0.22809153346013566,0.7418020557409143 +-0.07564746765179398,-0.1682420176079223,1.0688362413438866 +-0.14935048670294443,0.3819791871852213,1.3568946889669407 +0.5397497819515704,-0.19919295566042056,0.0037260947141488643 +0.7030404958355277,-0.04478414135781783,-0.1978665651801488 +-0.23266115666261464,-0.23190749740150915,-0.03155462211966048 +0.1977126833386496,-0.12481913981449608,0.42489907252747083 +-0.09640832386944989,0.0042711632758737905,0.4439175619630321 +0.8031834054119777,-0.20856436693515343,1.72777072696055 +0.15822939693827165,0.5243600730809485,0.00968604762278541 +0.21497460593425666,-0.056377685250694365,0.1957789913887662 +0.5321326807887231,0.6736406112659185,1.1997079311118235 +-0.15384003128449536,-0.18084083164636477,1.4434841792531912 +0.6177452763687341,0.06872781935317929,-0.1120423278981394 +0.795960370975554,0.3009353852194252,-0.23582490932072572 +0.30093323349402223,-0.10007211632063315,0.06614164707318904 +0.2926744461176338,-0.12289722128417782,0.21295466016939263 +0.007864486195745146,-0.19839785994772685,0.2254911877564887 +-0.04993051596844378,-0.20633353742351104,-0.19556713429560482 +0.4907862304599263,-0.18762497493625563,1.502265778173291 +-0.09525937781362406,-0.1610398305045668,1.611041714561376 +0.4292025571600252,0.47933757803363053,1.2839420414436868 +-0.028190981877847965,-0.05515768039836472,0.2474817883252261 +0.7608424019040485,0.21830214376184975,-0.0672279675183311 +0.17175215109484576,0.7631232943108595,0.3249325995370751 +0.5224871331391351,-0.1631592004579117,0.17894724761297454 +-0.09944454415991677,-0.1753354381325957,0.2791830132184274 +0.21030743582796535,-0.24367570394573593,-0.03044892932862761 +-0.15184903640243752,0.2053637961111266,0.5820762121313695 +0.3878234572675291,0.019907806977870535,0.5889759675730808 +-0.2321439597682147,0.3746261855724148,0.449224657834983 +-0.2103984767758197,-0.15784948679454724,0.11609584680569707 +-0.11266020453003864,-0.046771352467522176,-0.11605540368979123 +0.1134896003341983,-0.07231290589486394,0.26632513170731353 +-0.16244432710318724,-0.13712834030103088,1.6259576085627638 +0.09782811220398396,-0.022802151058575054,0.35234006387261985 +0.28922946196554045,-0.01627102063157637,-0.15137138370853037 +0.4126632108035493,0.16077177548629196,0.2515205771290909 +0.16634235875502196,-0.22827405371002435,5.931822836165581 +0.2575486399080049,-0.14283400925761564,0.6839538225478401 +0.43327150343897125,-0.0998293655546462,0.1314084906093676 +-0.13070969025240156,-0.18004923781057527,0.16157022080422379 +0.6536983477006826,-0.04174843466218142,0.42966361748539184 +0.7155598283098568,-0.24013858114877604,0.4131132605097404 +0.5187840187194886,-0.1092408116291099,1.86556498270846 +-0.07391589075655963,-0.11020049615537048,0.4861705910085875 +-0.23464409001053715,-0.08296011257093783,0.5608601938856173 +-0.21534254084690505,-0.00046522700213641466,-0.1714371462368879 +-0.20435714268936267,0.21621701742722887,0.9165930340441382 +-0.2403357714893695,-0.03377593446384458,1.0259131860615616 +0.8345528352589575,0.2320204990943281,0.008916682447046242 +-0.18768892780730667,-0.24141740960507327,0.1507932956498121 +1.499369259610574,-0.1230861805124937,-0.2075200495007979 +-0.22998708078960156,-0.16038183019925445,-0.18001951277749073 +-0.1328890507617741,-0.0337984050337318,0.5683988095017237 +-0.24543564429526676,-0.2463219402434212,0.5476034795160242 +0.20814365160261455,0.17641558336895224,0.46267642272697673 +1.123837579082102,-0.15304684551538067,0.5845480131427695 +0.13910955301659805,-0.22427648711593529,0.9092624522691617 +0.5242692910630832,-0.18388077599851194,0.7234360003588615 +-0.1848438613522248,-0.024669650232168244,-0.045216670480993704 +0.30132492169249736,-0.13083802065230377,0.12074337967976795 +0.26298126633157715,0.12250311316579199,0.8389272428939301 +0.45840278435073545,-0.08919811230202931,0.3355692566872095 +-0.02934691702597672,-0.08601905690939884,-0.22087359898645043 +0.3317015855076708,-0.11352564242362631,2.2020680188539714 +-0.16667057676176739,0.1911209680340113,0.21223949611232412 +0.2811046291473718,0.2763165041166843,0.03055140650854754 +0.05076290312961029,0.6239998653104858,0.6917517008578266 +-0.1966693856260315,-0.23442617949653458,-0.009685737851267723 +0.20083878260436844,-0.11017886425501716,1.3279833542314678 +0.24679241051312162,-0.05740787915834225,0.31399293372540804 +0.31040323278909643,-0.18040518446252204,0.8725577526310986 +-0.023125735533111896,-0.15934142621779185,-0.23703722171041888 +0.6379142150584479,0.07446329283397524,0.9165709850610768 +-0.15380384762175495,0.2018856549069587,-0.06282550699723452 +0.1113236558901552,-0.08360384974586227,0.0184098787208275 +-0.07006788465767613,0.053522659153467156,-0.19426971752164693 +0.43743649634557613,-0.20568885914845014,0.06202156832756961 +-0.14653220693465507,-0.10083214871725185,1.9788407856320012 +0.40762009185167736,-0.16609453992995918,-0.19969953576787058 +1.7605047863851433,-0.06513491697527296,-0.18377334889072294 +0.2854178968977801,-0.18582806437566454,0.028725107024031082 +-0.07918781034326722,0.2168755111282561,0.07804703217313819 +-0.059622188051458885,0.22186277864575,-0.16672157560994555 +0.7090948929043428,-0.21872734553099948,-0.21177060061911374 +0.164940366958794,-0.21870268323799338,0.267673847822664 +-0.20842085863523835,-0.0209282935077979,1.5356003987132365 +0.13726243217063694,0.6333777082200763,0.002737089123625469 +-0.07722941616560802,-0.21450364800323438,0.7723275058476484 +-0.23370146165738093,0.4168906440415071,0.1889998443031975 +0.1208876627553811,-0.20422713373543244,-0.0981108612814032 +0.01225042805077231,0.7883677269701104,0.5740901544965832 +0.030028078650960965,-0.09109677265574653,-0.15469894467956455 +0.409045256604322,0.17995245609047755,1.0669816865733106 +-0.08758521897458116,0.25801566836692136,0.4529728783909096 +0.09320760556031327,-0.12448380571000009,-0.20145884227720537 +-0.22904181375825694,-0.2030445916103527,1.4092820773332313 +-0.17689866421282027,-0.15080858437246747,0.4859467341454179 +1.4266392862312054,0.234401090237782,-0.2492478488962641 +-0.18801284823600575,-0.18428471140978314,-0.2414714020341411 +-0.13208094544060886,-0.11221197593179313,0.10265898528301476 +0.7830941096576522,-0.14114640726693087,-0.2400974573087686 +0.42109525675871706,0.5523140051011459,0.15157153375106686 +-0.08199323178570178,-0.2308574266879954,-0.049678981131432015 +0.07100015100145712,-0.24547433297089974,3.7986823630232776 +0.5307570027922308,-0.09649185075870897,-0.18146271314914753 +1.04231326989099,-0.08903896118259144,0.08765058029417694 +0.9889148920656454,-0.1789243517604867,-0.03683777509759828 +-0.23109267981183138,-0.10901913057617954,0.7980907205769721 +0.3167702018955425,-0.12417786190555882,-0.07032803278142172 +-0.1833878739980197,0.6885478517371665,0.4933029738242506 +-0.09186279244154313,0.07574059112652964,-0.24337185075689252 +0.6073858943736635,-0.14827504291441224,0.09182483791313706 +-0.057727493198987456,-0.0398294140228771,1.9966130276030856 +0.2938359435916136,-0.040596710917483486,-0.23019509302892419 +0.04750494183417153,-0.17680658196494514,0.0627551897096238 +0.5749670696535795,-0.08439586939515831,1.4064959709924771 +0.10702465488850427,-0.13188338940612312,0.506105758193093 +0.18766049968687598,-0.002348177614818786,1.2710752572989414 +0.4423502963385534,0.0010133213324650114,-0.15431408574760425 +0.4290981431770834,-0.17949252053817627,0.9917934088297875 +0.6143242253595522,0.09550383043898608,-0.18836637178248217 +0.9276961343544483,0.00314280119734317,-0.23465202167439453 +-0.24649252987297274,-0.22464455884764284,1.214044568900286 +-0.01811460257459141,-0.11404645122782059,0.7012787608004989 +-0.05941188031537384,-0.20436253792311057,1.9767521184470427 +1.606453712452263,0.5334231970411741,1.3122427941698513 +-0.017793620162778273,0.3278612979862303,0.27240398239670216 +-0.0006373231594410389,-0.11576318394713639,0.17031672018904592 +0.2690050401087911,0.06471025936542002,-0.19528479922016595 +0.14134489086443225,0.0454805451306487,3.007619719793557 +-0.10537390795159743,-0.11385026049270192,0.8827443711947298 +0.9917004192180745,-0.18125788333551185,0.5995339686872977 +0.03097229940510937,0.02737771091463098,1.3270097546732569 +1.7131757648616595,0.11802567741628378,-0.12384904124221971 +0.06985054836924237,0.5543772360188406,-0.18623205036106846 +0.35506571372833706,0.37437235425395143,0.14155628126779368 +0.19215183756281917,-0.2438361706322515,1.5828920324723967 +-0.0393123378533459,0.13871734820935183,-0.013771046805903103 +0.07140207176037028,-0.04553159313156205,0.16675931571367147 +-0.09025309905412715,-0.2420892433368199,-0.03276633884347088 +0.08106261300813644,-0.17880727431778465,0.3035258410486802 +0.6162824325519347,0.4411902047217857,-0.2181314930921338 +0.12666479219537574,-0.0484188232063445,0.0036479240451444683 +0.04305234133833041,0.04195792848264557,0.3811392194243459 +0.8044085437506627,0.31506151143427685,1.2398190146469694 +0.21325829520261314,0.08361764564643343,-0.2005349948968011 +-0.16180244483274026,-0.23933664996291676,1.2538648122641807 +-0.2168873913762181,0.5634179821973797,1.6436738385064527 +0.691211311544747,0.3854067217152568,-0.1878025182978739 +-0.24232229386182957,0.524383199244248,0.06821945897317033 +-0.18306219764360185,-0.23042239136805892,0.3639153095073594 +-0.19490460314523783,0.09255991337443148,-0.043057401980445775 +1.2402561610261538,0.34732665568157395,0.957987042417143 +0.5717390948685374,-0.23258153539501136,0.7425481279070157 +-0.22688743521591268,-0.13020566105935374,4.004239241085268 +-0.1393981407521126,-0.035581687335782236,0.966147155043575 +0.10893245222556863,0.4239746511022493,1.5931796271288186 +0.8917724156025502,-0.02406764993036717,-0.13614601036428448 +0.02748807123605318,-0.10119311281401061,0.40244078636546965 +-0.003901766700897813,0.6950180424122743,1.6354861049809777 +0.21248640250421175,-0.032615092731807516,-0.008630472804741746 +0.9946289186235409,-0.1455334386898932,0.059351814467346165 +0.0884431412987065,-0.20050438562115153,1.6631244746663327 +0.04644820128043908,-0.19402344163031282,-0.17255228636455083 +0.04000877882818782,1.1902716403982727,0.8705322841152439 +0.603879522177358,0.3399839109931647,0.18957788558109717 +-0.240129067165022,1.286879028586728,0.2848624576376553 +-0.029447603749583967,-0.15208377714982707,0.2924425025525773 +0.15948336350214243,0.20574711544168495,-0.09177680949144654 +-0.13412608544670745,0.32909371557246836,0.8900796857539359 +-0.16830217035629713,0.10323873662874489,0.20734273653453783 +0.253071738329098,0.1322382930627075,1.0691130487336686 +0.005505204129125751,0.11772678585341567,-0.13819750661743924 +0.1283154590228593,0.7719209466843617,0.20857420598840254 +0.30241883774630907,0.2783382612200507,0.4881945081415582 +-0.21013546135714933,-0.2076039065351289,0.2753220689896647 +0.20450474333340074,0.1649565136206506,2.488831456981707 +0.0613573482839494,-0.23756007165925458,0.24818875169510174 +0.9654263659031295,0.03988367793674652,-0.1131327599651272 +-0.11477211698851844,0.7133639578561304,0.4491340076797039 +-0.14251589285631733,-0.16152557110395094,-0.12566412361174806 +0.8044474108260871,-0.18898462598336938,0.26108437148132324 +-0.24840330565928118,0.03361603453108608,0.3205419660706409 +0.575294625263521,-0.17787148504255162,0.1277627675058572 +-0.18209718167416186,0.030922022136730454,0.10181570111598265 +0.21456824046870004,-0.06704459780917146,1.2261414055398687 +0.09362594696096421,-0.08579652603371421,0.2668656695518301 +-0.060952050522033174,-0.15761412338065264,-0.24074434150959617 +-0.17256731627075628,-0.24319441131234185,0.1703113099456277 +1.4817246228619465,0.6137641038947416,0.5405555724116516 +0.04036232861005745,0.01389913954852151,0.656584024842708 +0.39727988299225603,-0.0675915277921913,1.2553619063868633 +0.8113722867878836,-0.17089429032807596,0.7331962446968298 +0.21395606930965066,-0.060136693500228516,0.1286258400532182 +0.40483396649541836,-0.1389754000257574,0.6253933656675521 +0.5707210029893249,0.10863574684321803,0.6555694486135225 +-0.09695174540542609,0.13027990160532815,2.0318899640827146 +0.7509602689802866,0.6203414904518587,0.1634701207691357 +-0.19474488459992645,-0.10092932967160506,0.7429855362319183 +-0.12979816933587496,0.0008938374622364242,0.7069329790960298 +1.196198906537817,0.6897361646958823,0.2998125651207054 +0.024493336965101642,-0.0898322004133851,0.8666534441164961 +-0.21905254353424353,0.02628145099961604,0.24564615746437646 +0.20089188709879607,-0.19398840015276292,1.0767765870861035 +0.4439209114629894,0.7304263467220488,-0.20574463906864157 +0.19305902054671037,0.0642879776637994,0.6427471808355444 +-0.03581747463170257,-0.04962898681480529,1.4077685215111995 +-0.12015881708626591,0.11235888952531525,-0.23714351991698873 +-0.1621876605458553,-0.20785374456855368,0.47500786438975173 +-0.13605124328352952,0.041861985001152346,0.4736963117542017 +-0.12613096545643468,1.165210560677115,0.28034883533773736 +-0.19842833312695726,-0.09235000605557347,0.6007443395853697 +-0.14433577751240725,-0.1450985839442227,0.9455422976180361 +-0.12118073291049825,-0.2094646110220499,2.0364434847191415 +0.31655738222133667,0.23664096975875026,-0.1550820237351545 +-0.24558673870096473,-0.166197474265264,1.7380956975088628 +0.8182536883117975,-0.07643960590407495,0.7285759009682432 +0.5707095785584848,-0.22017389629367165,-0.165949190280465 +0.16540013344946725,-0.20092858058046834,1.978907776745705 +-0.04622390078355679,-0.2148373053327054,1.3534447523410862 +0.02168800191464637,-0.21179869657975042,0.04539437154272652 +-0.017424918087199093,0.06871977449179478,0.31547663231728207 +0.5332942437680628,-0.11831157555862487,0.1523821135218602 +0.32059319128811503,-0.19876765992269135,0.576657519589378 +0.25253790134968856,0.007595128923572003,0.1891768707747159 +0.5262077050681403,-0.19063624797469825,-0.08783875766640722 +-0.24422533437677588,0.13816392712983222,-0.2374836242181212 +-0.1056887722680297,-0.17023341203732853,0.1403483900836257 +0.6960123624922021,0.053755710730093,0.0588179912955723 +-0.22476096086730477,0.17020662449105528,0.3868347698083481 +0.43804095069254856,-0.16267417524528524,0.2546921495339186 +-0.12442826085787867,-0.12613534192688164,1.746735024182445 +0.37263602983312616,-0.010908910847894693,0.05092136270743869 +-0.0453795643434986,1.0565916313700208,0.9835016159521852 +-0.0446130749708569,-0.2276114192092797,0.05476234890089443 +-0.2494927007937341,0.051785977369923686,0.6010727660536922 +0.026689926116302665,-0.04256073278996664,1.103784642677437 +-0.05650403526501008,0.24580772215768792,-0.1782503496213332 +-0.1890061049825909,-0.03410508731064088,0.050386675385715674 +-0.08494322689173678,-0.22013643407219766,0.5613774484294095 +0.11651846161575774,-0.1762439974301912,0.10463000026690844 +0.27656421624939564,-0.24814722895563904,0.7107294846743252 +0.10072098843854155,-0.1453502226324195,1.6840365437878404 +-0.22696615521730099,0.025545376597162106,0.022057419532117373 +0.12277097744750104,0.25648659883130986,0.14028397913819002 +0.631759196860652,-0.09699083927170485,0.34234637116185385 +-0.03419680476893633,-0.09476324280765364,0.08283266772317455 +0.27141296254740244,-0.24504158436528145,0.5401431306825567 +1.1031516793751377,-0.19784492954682525,-0.2185748004102736 +0.11615364994364524,0.20246545688274786,-0.12483241927087146 +0.07623600045316342,-0.05535466781652881,0.29449035974728444 +-0.13128300139024363,-0.18145284091557604,0.4730537330960912 +-0.18747810383447225,0.2750824008484811,1.4604804365221011 +0.4022404940088853,0.06679320456308496,0.12388377943068607 +-0.1976010045304838,-0.005041452412578057,0.15945581152364963 +0.32383907679135404,-0.1518154632097536,0.1696512899571072 +0.5794666487502016,-0.12781619343730716,-0.03429764486570963 +-0.03403868491616188,-0.19690983510948631,0.2106076741218622 +0.2346699182662304,0.3260929077040461,0.49704226564660847 +0.966592577589773,0.5162933148463033,0.9621202759621803 +-0.1582647438085944,-0.0723737968598493,1.7035226390105769 +0.14853407990756584,0.7087461377771088,0.7972783697487478 +0.48426030124222597,0.21324508214630333,3.389513459330704 +0.9991697580914611,-0.005614499207610507,0.0011390966585044793 +0.06227522200936797,0.4948934527743929,0.25489507876907436 +0.15558665235845937,-0.09413620189562175,0.1637240016210314 +0.8949822096900333,0.05954061885339895,-0.1377195088828676 +-0.1882133077944329,-0.11778710618944682,2.7976870992667373 +-0.18166007190852634,0.00808437164816761,-0.17076551969425574 +-0.23600925948553958,0.053579293412726325,0.709705628446265 +0.9545772338269334,-0.20465892182180528,-0.19325578279177258 +0.5273638101518914,0.022521774085926538,1.4399660563679575 +-0.052367808107727426,0.03438465373084881,1.1961140399316648 +-0.11849616417123837,-0.1801856574735048,1.3826900225655783 +-0.24980525711209886,-0.1261913839269449,1.1438090352596724 +0.7406587655849186,-0.17029222441531103,-0.21638640934291828 +-0.24123835531255755,-0.1497418932938414,1.6295371011057298 +0.20128581450687505,-0.24462387853062711,1.1594362655921933 +-0.19529430225468186,-0.2190263192058808,1.1660451690106162 +-0.055954106415848026,-0.17134474759622403,0.021736951250230896 +-0.03892231927540177,-0.14975300833488048,-0.040402893367045056 +-0.09074375825262909,-0.05130505540039115,0.03217758910795765 +0.6066815054839328,-0.10161538394991032,0.4337194011080857 +-0.13810027360969546,-0.21547578758850963,0.5020984114014408 +0.2479127581686989,-0.05360090737054726,0.7184690715346925 +0.34926655040429033,-0.11818919579681683,0.28007510369814514 +-0.13294075722897042,-0.06782152281057699,-0.18946005350905862 +0.9342499363201642,-0.23391182378123726,0.15719748466022765 +1.669108428917494,-0.09373105447819757,-0.18056391406022393 +2.0877595713579193,0.00761801747159635,0.8158900117222361 +0.9237285745424664,-0.02057709705598884,0.6070335364842022 +-0.19725976333785955,-0.09207602293503556,1.3833754322250025 +0.5030911417640496,-0.04402248401134226,-0.18801388428986213 +0.37921293683786816,-0.14715860176611642,-0.059067840373149605 +0.11837542180623012,-0.12795723835634515,2.352770914952443 +-0.007203947864389437,0.1119754543646797,0.5432985358559158 +0.22257554805287583,-0.20178937178692885,0.5328483100228951 +-0.017569529939012035,0.18309518771369243,-0.028451866755965866 +-0.13186481848204562,-0.17786229322158184,-0.17300796997196 +0.006764652180299258,0.08359191668946842,0.23199408566638552 +0.6253950397608811,0.08039077109614873,0.7251643150753762 +-0.24836441126116637,-0.15934398037226344,0.16596183594045988 +0.0522692915855153,0.03190829274768675,-0.03760827919647164 +-0.042723845162006696,-0.23694505356696222,-0.08225611609566821 +-0.0906724496131642,-0.15107137680574986,-0.00297739914502701 +-0.11736322705289362,0.4669759233143925,0.51308434141947 +0.20520791222390922,-0.05040958905197848,0.14226091139100183 +0.11956337891058022,-0.016199915668267617,-0.24268871548629115 +-0.17615952902263504,-0.05826771910848336,0.633376822650796 +-0.05860080602992626,0.3464940143118006,0.35590951198602316 +-0.046141479371395844,-0.1480626731192869,-0.0007258171859687579 +0.9593431278832654,0.5852165921269876,0.7061312524447125 +0.5374985347889341,-0.24799149611710067,0.2530329413415531 +-0.11869036130255367,0.20042646981155104,0.28353468459491715 +-0.057925219654806376,0.4494582931864486,0.04011327163319656 +0.6996575633074474,-0.14427306693821262,2.144079715362464 +0.7821695130766118,-0.11790050720620165,0.3041484760639951 +-0.1237989313975637,-0.24030318829399125,-0.13155483665519158 +-0.15386008068737742,0.587670035641266,-0.08255350019439586 +-0.1403452709960732,0.24857735792798863,1.2151145602542806 +0.18887274564262435,0.02142107876445054,-0.11854254997268987 +-0.23988125148400505,0.025731410351525486,0.708448575971722 +0.4597391265193882,-0.20179176875482885,0.44248088604687463 +0.04593389866913422,-0.21511729121890963,0.09190093479535327 +-0.22093868218255983,-0.0036011813974899942,0.3315229696509936 +-0.02053621300557315,0.26096946451562775,-0.09487137852670088 +0.567066308427716,-0.15565108097796324,-0.20400434968379608 +-0.22838054385880904,-0.04080866350119619,0.06652961889057596 +0.7940354288118576,-0.17946544599148434,-0.13938213994261114 +-0.1576656264028019,-0.2417362476264521,0.24250495281288992 +-0.19777495264147144,0.049598103732527654,1.5032861985121235 +-0.07368874889257895,0.1249148475915654,4.505282445160511 +1.4708673349900852,0.1926884336155768,0.6342329056334003 +0.314004241223966,-0.24599824845495083,0.1503729155203904 +1.2603146207527045,-0.16265648192757143,2.1256413303790804 +0.8119411256862081,0.002667873271243071,0.0051406001506644206 +0.9192125533382713,-0.09199319427163144,0.3917100335196495 +0.6056361872552843,-0.14589619409887114,-0.18629536240292155 +0.08263684193046389,-0.13331083742884853,-0.07867872277976579 +0.4257495419953976,0.018353400122517904,0.054606238906731386 +0.0015787123746645593,0.04646894454116718,-0.2258848267328196 +0.590397661556848,0.3679794620047945,-0.2306630032778152 +0.000215441024821017,-0.20333826314736206,0.5875551161760364 +-0.03392230710882321,0.01655403204352457,1.0620651560288494 +0.029849402463848485,0.12867579489780118,-0.007371663910412524 +1.7426442565487383,0.10589262972919472,-0.1825415550794931 +0.37012920489670464,-0.24831064742438708,2.5242626807897692 +0.016099193116667743,-0.21525177640984972,0.12467971073480166 +-0.07040293214882049,0.031128183012430144,0.5027640145973031 +-0.2021474708317673,0.2509802289859313,-0.14354534174518885 +0.293327306991371,-0.2213601158913889,0.3881566758152324 +-0.005774574271410066,0.3207546285709334,0.49396694607749636 +0.34121492145760024,0.7267524724718506,-0.00861390111425206 +-0.21288790809447528,-0.0968581859375128,-0.2108673985571461 +-0.09172764401459729,0.35067039478210627,1.3454382176390816 +-0.1694606361357719,-0.23637871768491128,0.09460893649899482 +0.028551856345970017,0.03256739680873244,0.08220609724771688 +1.2411842332411545,0.37525387913423447,1.024700603412716 +-0.2407121736369122,-0.1112864997347941,-0.24168703865590013 +-0.06909816740172459,-0.20976369281866128,0.5890843517421028 +-0.20482146916339405,-0.15619108635093723,-0.14159840342129387 +-0.047956025787976364,-0.20746282506049363,0.034763332546736525 +1.3834972440397146,0.3675727849690773,2.033199326911959 +0.8679687626318355,-0.24291878945880707,-0.16367230307687683 +-0.1137477479659659,-0.1988033942349242,0.3658300728907623 +-0.060454137094333726,-0.2394166864136173,0.18267217269006475 +0.4197469437170067,-0.17762081230185567,0.7224135716956935 +-0.177029497899655,0.16827294619392708,3.809854995104219 +-0.17366601216551425,0.06082463872949362,0.35777202475794 +0.01850056464737565,-0.05084384679996498,0.2843953075212422 +-0.006419328505422289,-0.08750348991780613,0.9984225038286791 +0.007195356825393184,0.07438184983204021,1.411721577281298 +-0.2374394153969791,-0.21269862400122846,-0.2261618015231501 +0.19691732574752885,-0.24415483407498498,0.3610231244108112 +-0.1400239127632496,-0.06062458807737267,0.37682860864950496 +1.4035006003053676,-0.11304622973373069,1.0585044883541896 +-0.2370537924553953,0.0976605748825416,0.47701511786312123 +-0.13899395597475467,0.27546956195541106,0.5052214364694484 +0.14944165903326972,-0.18390480692409908,-0.07586866302960074 +-0.21991019937863238,0.2771174212807168,1.3777320375290343 +-0.1661878313540202,-0.05734396079843926,1.3170874592550994 +-0.1585931939607224,-0.0965128122380261,1.376099878659327 +0.09789299417519998,-0.11698647735697112,0.6244899316688886 +0.11054002825097342,-0.2375044787634946,0.7216034441211049 +-0.24760870316525901,-0.12452058088630885,0.09631388597155843 +-0.19219640259264648,-0.11360305511879937,0.47356197152875457 +-0.06751560577000446,-0.1961473148687968,0.042889099618438564 +0.1905239560154564,-0.015190350776074946,0.39001937112596485 +-0.16176943736337795,0.008285216025146924,0.24024849947930177 +0.001134112052306513,-0.24255134988868737,-0.1647616672906137 +-0.038057018881298865,-0.18945789388352685,0.9575004278407435 +0.0406730593205179,-0.2448554990201806,-0.1673874639173059 +0.0011196374051259395,0.31482686702727947,0.2532717719963147 +0.20392938327698557,-0.16036822240903492,-0.09366458514207002 +-0.2318611259004467,-0.16510002488872455,-0.2063967442357726 +-0.0682824380313228,0.024685309450849235,0.5339996491302802 +-0.20454198962094366,-0.0913794402811477,-0.10412186621522454 +-0.2366154507895167,-0.24573089816765156,1.0902384009715904 +0.7738930313688077,-0.2383312068726997,1.5978554030937784 +-0.03594030363757256,0.15891129381286517,-0.24969103612441768 +0.6172624711963907,-0.20569522021310757,-0.11760275971622419 +-0.11128365745533317,0.45879687733106167,0.1990839134576728 +0.23603376462783704,0.31548931793938884,-4.6464121591593965e-05 +-0.19889323772740516,0.1305483364403474,-0.22527813573219688 +0.005124177054916024,0.017075246562084034,-0.07524169234756634 +-0.14673571993466006,0.7786447959273564,0.28253272867113066 +0.8505309357839044,0.4070645172537638,4.868808764982291 +0.6354470272205975,0.27126185527387436,0.9308002558209838 +-0.21170568637834278,0.07586029811894318,-0.12283243319385759 +0.17537504419103567,0.14150971428159742,-0.0070139251997464735 +-0.03827804035306234,0.7248793696807609,0.05940035656383508 +-0.09775017187390889,-0.1403085950930678,-0.0002885935407916651 +0.15478753894153569,-0.11808238294874637,0.13638017944289849 +0.0021182541724081294,0.35713416951469246,0.7452678594589949 +-0.0741272508062025,-0.14248556501425916,1.1529144620053882 +1.0864274877073308,0.06550988010155501,-0.1980593154313601 +-5.768305151940267e-05,-0.09024259155199224,-0.16573501994425022 +0.1023069169637732,-0.11738227945521815,1.6817195432990946 +-0.044964885723541015,-0.15705759569292793,-0.15038847659222465 +-0.23954586011557363,0.08105482821860993,1.101543738345511 +0.5057594788033856,-0.24843415638427005,1.5080191232194338 +-0.21399946160104338,0.05103013186158223,0.20654562806844595 +-0.2036472795861316,-0.048931664108772976,-0.07243869089358301 +-0.217657931215475,-0.13585417413620604,0.6076079076060875 +0.427638962124788,0.16974743035397521,1.3134417693405351 +0.16381532616064837,-0.20194301214006824,-0.082510174207121 +-0.12330776641664276,-0.17853749741663807,0.19410351090713301 +0.15473915131205385,0.3586971794728583,3.2456191835643824 +0.026615599393214895,0.03745879162420507,-0.1382235850120635 +-0.12737989791674414,-0.19406166310887268,1.5377903002553306 +-0.22220105749150518,-0.22108908180870201,-0.0371861984514435 +-0.17660162974304472,0.5353582675497115,0.28383738305527917 +-0.18661505590133198,0.3201461298923778,-0.06587434138460543 +0.7390768201259429,0.49017432556122775,2.015781547726815 +0.8797338671699733,-0.1438891946760011,0.5395285335815602 +0.6617849043655091,-0.17359407560801038,0.8842086450518836 +0.277474959586961,0.06851173911255742,-0.13026605508851408 +0.6167603793753584,-0.14702164560089775,0.5484880532834392 +-0.2479156454476381,-0.13591051283340755,1.0911257223009923 +0.08694070064034976,0.24643808260494932,2.009527618693963 +-0.01478128191299033,-0.21331609816310101,0.999915208205503 +0.6415794881310319,0.057271803071906435,-0.21434136443439322 +0.11265020478021837,0.10921636569203519,0.43814693018509676 +0.050990875322470264,0.06296065331600825,0.606404236930175 +0.10418037547620457,-0.026784934139838956,0.1939434121178052 +-0.17840492644849776,-0.049259671167941166,0.13906270023443168 +-0.23397160262683445,0.05611144896017217,0.1775349451636768 +-0.10625857042254153,-0.10847071663339661,0.17901269513651225 +0.11909538682068094,-0.18400574030646494,-0.13018207757538003 +1.4104025278689045,-0.08757213546346998,4.638546191479977 +0.02308137678977623,-0.1716292832536609,1.2220325762709408 +0.593831790757327,-0.005599994814397324,0.41886101329219283 +-0.23165228521207248,-0.24929233018442548,-0.1113279771941556 +-0.017138769654170327,0.06677286546671923,-0.09360405798794955 +0.0310565381752978,0.2880705040237461,0.31232876774561946 +-0.18203920652864564,-0.15937206478363808,0.3834127424866739 +-0.23907742058349724,-0.2254776277296692,0.3082109947872894 +0.29437734495296475,0.3227205425202079,-0.18147743861770865 +-0.21511472552240068,-0.18206389167313258,0.2780835137472204 +0.5402893371439893,-0.14229038968493685,0.2343917199893399 +0.25797066572565974,0.24677834268182874,0.977284783509802 +-0.18925168308034243,0.40502775531587965,0.4368490241648175 +0.7383872692174409,0.15996381448334301,-0.027829825972172234 +0.9478514272530112,-0.24541186809280258,0.015524731246447598 +0.3831987192682561,0.22730171642102487,0.6117809454553331 +-0.1685032472666081,0.4915463504010874,-0.22546339384674519 +-0.0370193479858289,-0.1605735190775233,-0.1765157501956111 +1.056135243375969,-0.23501347317403376,0.5454568086588978 +-0.22885804420846373,0.20853073391413263,-0.03388636269356035 +-0.04416175033263586,-0.1573408390493636,0.5433847154212748 +-0.08543524137794958,-0.19310035572379508,-0.041586538397324846 +-0.10934350492766304,0.12229671788009011,1.5988855966114124 +0.17811553925033008,-0.2147443999020049,1.251516398993353 +-0.04249864143694074,-0.20639023283826666,2.9824370161199223 +0.8357489493728116,-0.14099966116099505,0.28253836708526536 +0.8741745273569439,-0.13024603067139914,1.2122631930363326 +-0.1935981840202155,-0.20817509630439512,0.21294902981346903 +1.0136992750878606,-0.09466391802964916,0.05023724465896012 +1.3442651344661847,-0.23757874481400312,-0.22804015328584065 +1.290625330000287,-0.13985513285510526,0.3339520962504041 +0.1679992964825845,0.05909247906446158,0.780908019809714 +1.1291619351635152,-0.03183353093040109,-0.0876912170968305 +-0.06114354908214184,-0.24731358309300547,0.7166159593936104 +0.5919810710985147,-0.2182451887801528,0.8749894983004218 +-0.007357036545900059,0.0051902631702026025,0.484768364418812 +-0.16876076932111916,0.7764857819110806,-0.04258540404263428 +-0.2411880719879136,0.18030789461550112,0.023048966367914425 +-0.05086831750879828,-0.020698259794430268,-0.1142977678459588 +0.4094833293925163,0.20836151140083548,2.054362446910575 +0.10339653068666932,-0.05986013242644289,0.09083388687704141 +1.9389247003256007,0.6992357271776402,0.04244687492635829 +0.3875159149931511,-0.06246427409041749,2.1558613435767615 +-0.2447973858102633,0.2226298749970963,-0.06023137282017757 +0.21882172313959947,0.10644608687298224,2.964655068481163 +0.6259113475155246,-0.003258805985151214,1.1536665656318015 +1.552887509960608,-0.21927688750123617,0.061807038023039274 +-0.08578112982472041,0.10762633407999272,0.1539069771518492 +0.6051947108997824,-0.18253767598236587,1.4927688607708574 +-0.13386285759773273,-0.23579604049541514,-0.06361618036886368 +0.3230320902463063,0.05107143775104245,-0.198396732652722 +0.26346645022496706,0.5853391049822602,-0.2338282953789443 +0.299186185619044,-0.21668367322307464,0.23376297895507425 +-0.21094587625539007,-0.24578574032317332,2.3332063956972955 +0.03997209331246887,-0.1338469752010666,0.39176680639613537 +0.4499072731016409,0.05584188900273407,0.6098676229879229 +0.8431164946723686,-0.19008009123753628,-0.1530591730792145 +0.014612368536030762,-0.2497622683303513,-0.09125870432010355 +0.16465394685704698,-0.17517091902641044,0.1354538226946017 +-0.05355485177324931,-0.1762637988286008,0.12864670369095443 +-0.036354804334353785,0.22118586459056616,0.3347060441016084 +0.15293900272432515,-0.14541031818417213,0.1579376939001796 +0.362408300094502,-0.21775535994093237,1.9346512918972958 +0.7418966365783156,-0.19971973334752993,1.913006222152128 +0.5228718089076799,-0.23772425952217632,0.21794320691012453 +-0.24014577890821412,0.6087609638101229,-0.21223774534423173 +0.2369010723161915,-0.19156762165535046,-0.007777314782680761 +-0.22700699622535314,-0.16661614629715688,0.9195920496897112 +-0.0067319405980747204,-0.21158505049407986,0.3488935200856548 +-0.22247023995915988,-0.1374213503109778,1.2250688723367238 +-0.004100574127113177,0.6007282476857299,-0.084699775445363 +0.004958532230235846,0.13716615148943684,1.0187644735747199 +-0.15166361304051248,-0.031219901088387098,0.2218114997524302 +1.1013885892730124,-0.19273694884292963,0.005155089974196558 +0.21475820410249263,0.06137891355212721,0.37736998379555187 +-0.22487239376348736,-0.2097805443212698,-0.20863625711869327 +1.6882356840859156,-0.08102764864177692,1.4131535853646622 +0.19952798094600188,-0.09985191416992548,0.2311620506053993 +0.23850308523091496,-0.20041585320394456,-0.19987117231161625 +-0.16789944626718495,-0.24616369197448515,0.5541778700737677 +0.2782067585428861,0.2686440763088508,0.950530078544928 +-0.0988315371252417,-0.15303343482777704,0.5457372340428995 +0.2953743688734074,-0.22082829986465868,0.12556524577646822 +-0.1459730875948382,-0.18989724150295575,0.7727465423309616 +-0.0434388121854731,1.005931632404673,0.0780112166158346 +0.6280911551389597,0.3030561831906894,-0.18793466870954648 +0.03959502976940965,0.5083813756799953,0.8624346697961387 +-0.046004139898071034,0.01720572227530842,1.5256969370221318 +0.28390051084004186,0.26797366114038135,3.373514086484746 +-0.17930949270327054,-0.21415876140753765,0.1895957919947795 +0.13588775484393834,0.018851578111556466,0.7705018251844418 +0.07004600050492599,0.23007953242585677,-0.23910052216529143 +0.2629625650644245,0.05409955437549635,-0.19739249524713892 +-0.2419849944790818,-0.1053711581813736,1.4581258825415455 +0.7019981729748507,-0.0518270547515049,1.4980572788443463 +-0.24963206320267667,0.2712572783316338,0.28740497507756857 +0.6770647090103933,0.1103519794811017,-0.22006631271582838 +-0.1618576988195798,-0.1712463051299819,0.9071315101197199 +0.0858055529536671,0.13225935430720936,1.6313328893442876 +0.05601517250879029,-0.14067223700616854,-0.1661326773335114 +-0.1301836800959402,0.18937669093283793,1.5076696490758041 +0.47975619225313426,-0.16114281035215727,0.03246036028269833 +0.003907081279522329,-0.17170945529298434,-0.20205939613915447 +0.07049741719129249,0.3143223853271143,0.7560849290649752 +0.46299816981757147,0.5759787098986404,-0.242331123994719 +1.2245971726763816,-0.15101950450981372,0.7810683188153729 +-0.19288156467368317,0.4012542449767159,0.815151623750251 +0.6161396500988299,-0.11986754879573266,0.2383633514841696 +0.17882054176196882,-0.24667061684670294,-0.0657906876696693 +1.2668271143615941,0.13897542245391392,0.969235307806831 +0.688589207634751,-0.14321538259966549,-0.11382140419797263 +0.06343496545816318,0.13284201920953315,0.4943480660422387 +-0.16300130354298276,0.0558128941226228,-0.10897139981768972 +-0.1424074784928449,-0.10936191786251537,2.5687481598146436 +0.6936022757364029,0.1243944650372612,0.09612075308791157 +-0.08851887554063709,-0.19318587672422585,0.5414722088743583 +1.1889313706791624,0.152847192648901,0.0792005308371358 +-0.14820697960751675,0.23809556367241286,0.30599323390682953 +0.19065372774385791,0.7222030986322937,0.6003823126069965 +-0.022087792621277913,0.22320200237791937,1.720063545422336 +-0.06996929468620638,-0.18981267166692786,0.13360155367252008 +-0.19609594252407142,-0.10555627679883306,1.2202388209411472 +0.03749456228210146,0.42622955406900487,0.2435874528230505 +-0.21929281816951732,0.24943448212253072,0.011257535011242437 +-0.2141848853772647,-0.07158669242088989,0.9023616206106988 +0.05332974435003768,0.08652892956758246,3.058849057008551 +0.40279975354536746,0.14326519100215157,0.01597882072801249 +-0.24341826677828307,0.05313339225582275,-0.16972232052328595 +0.28276984106876457,-0.030044736098321034,1.5726073587297547 +-0.14158900491152163,-0.06818071216355745,3.1981906268583336 +0.6066807120422802,-0.20485381519102233,0.19152429016160571 +0.1649463888037479,-0.09690604178073564,0.3255886280625493 +0.1295415768442701,0.1643571470259087,-0.1850929088548995 +-0.17933937072095246,-0.20178125910136216,0.2615929804050855 +0.40593086347720064,0.11621772375351336,1.40239946934852 +-0.23487141768676648,-0.09805581118533693,-0.2253027534902442 +0.4461744610772196,-0.16703829967485725,0.017818865294388142 +-0.19560040281999472,0.15522262471735554,2.983174690324145 +0.4980359053836523,-0.1705859486982687,0.703579807237058 +-0.08946957338424413,-0.10372282935835886,1.780933645603127 +0.5536105746904273,-0.008174392010760062,1.199146695787304 +2.4813402474530717,-0.05343170286793433,0.5884462453527595 +0.3704671245577291,0.046565698557516466,0.09710415244751736 +0.10744441920229619,0.014051091192990195,0.1366615762823435 +0.2411578455378714,0.11602087225239632,-0.05083894228821215 +0.9957802681980121,0.04137256918246168,-0.04764358720694828 +-0.13314895265421822,0.08864183975649548,2.2777102317652895 +0.08909097316357822,-0.16717729812270482,-0.060184918797356296 +0.6523083398966667,0.415535046924834,0.6122812551756949 +0.5287261478473233,-0.18495335932732482,0.22931924436682927 +-0.08133573222466364,-0.1720408761058917,0.8373860938261097 +0.3611982561442909,-0.1258525594509826,-0.12741459732939403 +0.10106751232721717,0.45799086726913407,2.6562481724851414 +-0.203599783071299,0.5402651668693503,-0.22691952941703034 +0.06785914194832576,-0.15995639619540397,-0.2404632785585219 +1.680695678728074,-0.23004175903204088,0.5628785545995036 +-0.15800263839354745,-0.15353275182175985,3.3117090772878797 +0.540418939183379,-0.0030137267508119903,1.924513597567565 +0.29990819919869494,0.2061257725634021,1.1424835902810673 +0.5005809433687458,0.29679116667927374,-0.06420035463345647 +0.28788442837452743,-0.16171048166576252,5.395026102119477 +-0.08402351122111881,-0.01247578202004268,0.4766875981879609 +0.2669353894744465,0.023483946632704478,-0.14929138177067008 +-0.13456183669181174,-0.11555879673707273,0.05631184162785835 +0.3708284761991454,0.0218391246870267,0.8763639547801625 +-0.23994472802568031,0.16080461021310194,-0.0796737475260402 +0.8347113345989261,0.24159655543686614,-0.2132937608461375 +1.2340726315777666,0.42190449357555915,-0.23608949973611804 +-0.17224543199144052,-0.05949770025359813,0.059350937999225306 +-0.1510933020826754,0.11927876679107619,1.997079443208071 +0.17139307287684025,0.3521304768739877,-0.08641269186581507 +0.04054810831068506,0.2684672740714572,1.0149597780552382 +-0.13628477390910512,-0.17858202524361316,-0.07744345858074181 +-0.2370803147126356,-0.19038561564107775,0.10321912890929774 +-0.1283769284269734,0.4447721107845446,1.0207423297703206 +0.3214128155580501,0.10359098666739813,1.001031765598306 +-0.13067918812427165,0.04876575623199536,2.4055532101474557 +0.3882736990824278,-0.0211800227760173,0.6207414527752121 +-0.13832315752753238,0.15872843340703308,0.15308228102021165 +0.054715437398135225,-0.07975332443918959,-0.05937102012472009 +-0.18777908505609406,-0.18585863752592663,4.170322661688261 +-0.044994192596729626,-0.24605559474483757,0.26432269500692984 +-0.08249249924512242,-0.245891196452411,-0.07297202734980762 +0.5137497057651249,0.04805918049343999,0.9887227794734277 +0.22384745495283442,0.6924301155086605,0.16083899333733825 +-0.16422640280670414,-0.07392964774654573,1.0686518696311165 +0.14412139464570822,0.19227278029377853,-0.09123527578030499 +0.7921957226265184,-0.17126327788162635,1.1359923458511716 +-0.0902683931077522,-0.22913568489940156,0.45755485051047673 +-0.08811617302068278,-0.22423564699598417,-0.18640012967243902 +0.025751611439403188,1.8983170050029772,0.18370651369332747 +-0.14584072327732261,-0.20750598216474347,0.38759266520504054 +-0.05687048567747538,0.34785437189304014,0.28890724663604406 +0.01585179695831057,-0.1470455707409628,1.5279797496544536 +-0.17974598955081947,-0.04191397379623543,1.5720252129335883 +0.4861986903464255,0.3590604378275386,-0.09986257802673862 +0.13019929320116336,-0.07509737646440384,-0.1357371399138348 +-0.2239018069412292,-0.02502235371597794,0.08721518878637058 +0.2652627087986471,-0.22306785144577326,0.9764716321132898 +0.4689625066810357,-0.023502065220067564,0.5007266187930298 +0.902961447340811,-0.13102814283590508,0.3443801884702744 +-0.17856452209762866,-0.19812435464893247,1.7602882715811332 +0.6377028241258729,-0.20569602443617888,0.7883785915891861 +2.3627076932660573,-0.20068817840589143,0.05784813373999309 +-0.15311721610256437,-0.247797876088314,-0.004300995750253167 +0.46898292195485236,0.10996413174774489,0.22416759471595465 +0.2822745639986729,-0.07437664053415335,1.515321956672325 +1.42362329393838,-0.08334595779941226,0.5057837392636563 +-0.17239748027337443,2.2970504222634087,0.5586015042683599 +0.22978589488403883,-0.22620424695329128,2.1995992703405927 +0.1679122795481745,-0.2333863740801993,1.369136572113012 +0.3082942280324159,0.1985630240633927,-0.18299042345377886 +-0.16162268991462486,-0.07289263072420801,0.32277133336429864 +0.14489436146543216,-0.1454452169637549,0.5995790885619086 +0.01822358430309723,-0.24242178700913214,0.6490980193441563 +0.14923419618232986,0.5123495544423243,0.5346478628942123 +1.258502294389889,0.3108150926650046,-0.15271223915907514 +0.3577677939124908,-0.0827162814000974,0.9898376260678203 +-0.23467095237821575,-0.2225911487911816,0.5534344283102991 +-0.2493753330825277,-0.058838311363829277,-0.1987132301334658 +-0.1153247284882783,0.5484018285026496,0.008350626593165378 +0.47749343305952985,0.2244832969482608,0.19347886241002527 +0.5772293124421236,-0.0655726604993665,1.1883804906838473 +0.607065627780866,-0.13835156690118788,-0.0010052054356692874 +0.019598411751600875,-0.22229001024029016,1.7665922670440635 +0.47780132530564146,-0.03954994300480458,1.3124811243832273 +-0.04765392326977688,-0.021271313086934918,1.2291499456864958 +0.6254337302072548,0.02451752906864363,0.07237017471884954 +-0.20887681264766236,-0.23301791569475783,3.2401647008636103 +0.027221379487106123,1.002054086574496,-0.07147168025827463 +-0.06796674483828807,-0.01697101779701196,0.13441775220203833 +0.19520181608841164,-0.21900923858229157,0.6146943531227842 +0.8688913480588507,0.06404740834494987,0.23690808498525684 +0.5404174995419423,-0.1522680483808644,0.8257334845751472 +-0.133299233552091,-0.1494055103169325,0.27156416683639584 +-0.24117870099180147,0.11415240257485859,0.060832949221548194 +0.5233122860770203,0.0585672933424185,0.6647807665168629 +-0.07964247600296742,-0.15209719085845644,1.1427475775108102 +0.19075082988068987,-0.022034664030408463,-0.03165704595187949 +0.09822746991253956,-0.23723832943015175,0.8764951275166009 +0.3208974450388399,0.15159040255354495,0.8587807305444497 +0.7729339899430154,0.1352191949784191,-0.19604108985449914 +0.5011478871996415,-0.17902443285499348,-0.24964608841565497 +-0.20208551925026616,0.03614055312876002,-0.02515104025265799 +0.1431260178667062,-0.2431963711341721,-0.1465051403210613 +0.11748031196858505,0.10256969976719849,-0.08565802032801073 +-0.2417358305297305,-0.23047090423459138,0.6227950030288674 +0.7241628278360481,0.21112484917863716,0.8222293417385262 +-0.14453988790251338,0.21965349626800879,1.0150485707349375 +0.041519409034600885,-0.09635709290219718,0.4967381693207975 +-0.19558084030987397,0.0600185063117345,0.010150857730357399 +0.30693718969406125,0.2611644453200188,0.3843552642390088 +-0.23032803124628698,0.4943801449745484,0.278874898642929 +-0.20429268639807646,-0.056089587126414736,0.49738690270142283 +-0.22266086943067037,-0.22666605983964977,0.7155358585119915 +-0.06033048367639923,0.16344798112053355,0.0311090325486022 +0.4899463920021334,0.5985878714088881,0.7009111723704249 +-0.12408518319240419,0.13537360143571575,-0.059160092476413684 +2.1057762422270034,0.017522475119458203,1.8435049384939357 +-0.20704104950004953,-0.1455976652198645,0.15766869458734883 +0.5192716555043213,0.29633949621681943,0.3485649728289173 +0.40098735675188213,-0.21084962813454722,0.04493174005515477 +-0.17378821032257477,1.1856182696008568,1.1516268361135176 +1.1726506400099646,-0.04800970429878226,0.26383838739430043 +0.31270580864655106,0.13586641650276932,1.7927456889017073 +0.3563871479145312,-0.21773282290983992,0.26269063369397183 +-0.0025228433066616096,0.3754278642406802,-0.009311171490901465 +-0.1424386268903693,-0.2143922080391799,0.3542977869221152 +0.28195774346866753,0.23026030007045928,0.5454918197474173 +0.05275037912094693,-0.09432778866812572,1.172554232676878 +2.1684734794681155,-0.1279313829004854,4.1091457811761805 +0.058430323150040264,-0.18991176711550867,0.09214725583317351 +0.0960767033237484,0.6031398347995419,0.447963155057292 +0.22027738367451177,-0.16690660293520218,-0.08941512681304348 +0.26490846953104463,1.0573232586264678,-0.24869625925149308 +0.5759958161059545,-0.2129818217311256,-0.037513748884065445 +-0.18752694681441,0.09764609763704246,0.34488495587596635 +-0.02005987962872785,-0.1724942129528121,0.27211804982013155 +0.01187569586159265,-0.016118891680948155,2.0102906969051877 +0.09795522963800896,1.2977608431181533,0.034169872446313865 +-0.0468623683297221,-0.0518646944226126,1.177953850702928 +-0.22716305093420164,-0.24424992122751207,0.43934383054263904 +-0.03860420351811508,-0.03483257147588564,0.09755448269898714 +-0.11369673404088171,0.8975612395044128,0.8289211313994129 +-0.12711268962732875,0.0025860007599215473,0.5812055304751015 +-0.20352948218731412,-0.21738449206249982,-0.13005214269338825 +-0.10896718461030189,-0.035479945866357054,-0.17907912996626207 +0.028550716411018418,0.3543377027763299,5.053264946662847 +-0.13540260689028072,0.6093628748999446,0.30327545980637216 +0.16246613381726638,-0.17913504165876964,-0.08713838954791098 +-0.24955977394642573,0.12549355768456721,1.335387444591891 +0.7712618987432576,-0.18832889145092724,1.1916041966375355 +0.15071723171289653,0.024814883034703694,-0.12086880876503267 +-0.05000994738992062,0.004364506796778411,1.722819129441224 +-0.23210558616990096,0.13298261448218368,0.4616485064022714 +0.2494206248329635,-0.025966354277083215,1.1431991206673717 +0.5402525020204032,-0.24776791988437888,0.22809612160770376 +-0.10770126207768582,0.012588408450487476,0.8439284417724278 +0.10221150678473828,0.10702098788617403,1.7370949673261997 +-0.08652591502236187,-0.14113582739091318,2.8977545597773147 +0.4556604486867032,0.13570115722121828,-0.2180028319488332 +-0.13253199934548188,-0.2431437177370696,0.5689506929037218 +-0.20934712573274258,-0.1870771674779398,1.6000855543080534 +0.02630710890902327,-0.0189136124162054,0.35578468008701014 +0.4694980127401437,-0.09843033452487956,-0.13899230689704808 +0.2044649087316221,-0.1466238230528597,1.6727356405035068 +-0.14416765377366902,0.3327521379045535,0.15848574799468773 +0.9223689660871939,0.0555922432264957,0.41369540927416415 +-0.04159555348349897,-0.24807902535261658,4.794812758484507 +0.12309781583348423,-0.20609640438528265,0.16254217335957494 +-0.22860940882245545,-0.11067761448837402,1.7352544134136807 +-0.13912570684541117,0.06657115512196482,-0.24277919814630253 +1.6938756394391739,-0.06612900413313896,0.04230837121183817 +0.5807284584512183,0.8613355747289773,-0.23510346805409285 +0.3038742338653041,0.8223764562596836,0.7929513848614422 +-0.16158098304797658,-0.23566021040536317,1.1374782190277073 +0.23921545740154304,0.1840247448310976,1.1593842458169175 +-0.11384973071337814,-0.036620333371707336,1.721156192584254 +0.6784015505189895,0.303871931748083,-0.10186208897300811 +-0.1957507848002343,-0.07074592868143315,0.9373305856080016 +0.1787023371796307,0.5550872177060571,0.6266104688848583 +0.14322881799550663,0.08683336161234645,0.6982489567569894 +-0.22560874245724252,-0.07727603333331182,0.19001672168068512 +-0.06902550116140635,0.4850006004191507,0.5557784969341789 +0.30310697691939603,-0.15589567122112297,0.27115570684811086 +-0.020821879718952663,-0.1667350116406307,-0.13487439387921546 +-0.11757078103815846,-0.08212322721789997,1.0255318731576077 +-0.18161217631872728,-0.13472547549812713,-0.22975206380067176 +-0.13738624536675004,-0.07200943884656943,1.3782125235013634 +-0.16306586126028028,-0.021406923228879493,-0.07194051095885579 +0.2444349839145079,-0.005008350623189273,0.3255841536618941 +0.5958665545710391,-0.02035757784274106,1.0850389886568352 +0.6563098682928671,-0.22870381562906364,1.2724751347067438 +-0.08982485583207797,-0.2451579785012873,-0.04394794120669865 +0.04387003100128595,-0.2301164243958369,0.434014550919389 +-0.22281440929507954,0.07167112874912634,0.4692578304817898 +1.7390797405903928,0.012663673142335796,0.2691318137982305 +-0.09275793385810358,0.10438225966078213,0.12936557758985945 +-0.21502296607806737,0.4567327356641955,-0.23243126383369053 +0.03754257198266281,0.611903516521584,1.483252414252066 +0.2908655048931089,-0.10276457929377938,0.09898252405917096 +0.058907170524311714,-0.13588852945889796,0.6304560376194243 +0.48878480503072774,-0.0280356995425248,-0.022991597603864322 +0.14193655143476863,-0.13199650138838986,1.1327538484100568 +0.05460392784737178,-0.2078734253309843,1.9254570054579694 +0.3145741252932236,0.1636978850125348,0.48301199782255233 +-8.832514294876415e-05,-0.2324150927869819,-0.11771386831525726 +-0.07256912387389722,-0.03614924826819943,-0.05901325880538655 +-0.11578585036537659,-0.21732629565599385,0.48001794990973756 +0.18226489847295813,-0.006963662241113916,1.2564597208516988 +0.47832941600643086,-0.05825449917851619,0.8063623252619843 +0.2541711851331443,-0.08898512208468129,0.2623425313454121 +0.0124171030173435,-0.2344704150314716,0.4049896179915836 +-0.03965631650687698,-0.1945544482325486,0.001712012239538041 +0.20285945035336678,-0.14423036763685687,0.7633377292009571 +1.2716870153522228,-0.03368013627294883,0.41223746044220044 +-0.060859160925425676,0.20373235485476887,0.06416027859403645 +0.2526705595025819,0.21839750115584305,-0.1465326108769332 +0.1899463978939514,0.15083735020353445,0.22847059384521945 +-0.17589546673244746,-0.05976877022627322,0.5881219054699965 +-0.20828306362268403,-0.2050378261177608,-0.013231919480291926 +1.0223352205500293,-0.18852878141486404,0.20572971953939917 +-0.22836428534230435,0.01835351037982097,5.92368290422287 +0.2817035177493743,-0.24900072092210632,0.5445828768824863 +0.15117310737001366,-0.21256005429840286,0.34598919205952305 +1.3031097001642002,0.2919100968571007,0.48412175580176287 +-0.1474822406543263,-0.06985122896986473,0.01446605327279682 +0.21935941267802828,0.3463032030194655,-0.10004269670337707 +-0.13261280642390777,-0.05408036603920574,1.8107913826585542 +0.07594887552791507,0.30388106591988817,-0.22590511905089905 +1.8466032287393106,-0.10308732724542186,1.2445800459803784 +1.089584119635801,-0.1769293774151695,0.364100807290597 +1.2326241803584286,-0.09424655086059952,-0.00363963169759568 +0.15378187061172188,-0.2264039053418785,0.8423872618196688 +1.2998601972553447,0.4288099107081781,-0.12101432704579096 +-0.02661109518236021,-0.19565637271852138,0.6670960391737308 +-0.10131070368471395,0.33400304717604357,0.6481742619573763 +1.4620698429343886,-0.07959519544592883,0.9719827163780119 +-0.14220250196361373,0.044024784180347054,1.5528213006333775 +0.1830552348009588,1.3858015567519464,0.3539170633746316 +0.9097795041281609,0.08776521576637542,2.3111732957076243 +-0.12812154717342156,-0.11262947962623757,0.011851920213770739 +-0.22115609757317997,0.5905844116044737,-0.06418688071938625 +-0.152877376211267,-0.06189501047297022,0.46434786718083976 +0.4844814466084345,-0.016956051376360137,3.676074316337759 +0.4647637273151314,0.10171278946800139,0.21480731635389472 +-0.022476755750946903,0.049376537960236944,0.20287247285271837 +0.05165849561321373,0.02110501095080425,-0.2046610942965543 +0.00019281800029535834,-0.13509541455687005,0.8958382880224498 +0.08475751407409726,0.3352862020826418,0.8298660270019493 +0.16035084237141783,-0.23143824114215353,0.9550119941548074 +-0.24295236094914863,-0.010148740192088834,1.7925731747210252 +0.36022746811939055,-0.18514907049889906,-0.18131697389556217 +0.2379573940914272,-0.04404530927336134,0.8619061310032661 +-0.07302518706795333,-0.17743241200625473,0.1435772698055417 +0.49053746092700556,-0.13565067591449154,-0.11094499313980036 +-0.013257587903158785,0.3964603237436348,-0.16566659607917883 +0.022988320117146688,0.1071822399499901,-0.06226359103820095 +0.0292340380935161,-0.20922847955444307,0.08788356973146827 +0.16016667654818706,-0.012395930823629858,1.4859809229353773 +0.29877749905211326,0.24162627850913887,-0.14722148060157475 +0.0878579372440953,-0.1488910162093054,-0.2356315572717724 +0.5606762384656127,0.09913668791816171,0.7654821688434008 +-0.10272449816108672,0.24079074497166508,0.10286664766266007 +-0.016673279774462757,-0.06152469094639823,1.9121553855333073 +0.06647274088155908,0.15990101554715852,0.19245743287347056 +-0.0272977400752413,-0.0063914507093990325,1.6837019737735501 +-0.12923817530976753,-0.22107129758141075,0.11665151737618712 +0.05615033996341012,-0.07963126869108081,0.8808680903171335 +-0.010359343904759982,0.3823364279595278,0.32198210951669737 +0.07396893698654605,0.02969419538999174,0.30692444416633524 +-0.16237671040094015,-0.10271810808890108,-0.2215285431211287 +0.8298286033577273,0.13429395348363882,0.017250174744038338 +0.08402580709735435,0.4643779937205287,0.744384051545577 +0.04116567506058999,-0.0973530277062781,-0.24138231822996828 +1.0993264218357954,0.4516437746713745,0.2844216372469699 +-0.2225397247250608,-0.22927374517841811,1.20738358833245 +-0.18214716552702642,0.7415260202174451,-0.03902738109606696 +0.182686783601074,0.5595946500073132,0.2338177542474153 +0.32335470207711736,-0.02065429192593285,0.40098529572217967 +-0.08472190473899979,-0.2220072924391396,-0.045769832727228954 +-0.20426628064890762,-0.019820929203128668,0.3084631980430078 +-0.11887555435613709,-0.04853479201765018,0.0020253313505618764 +0.1306941962309361,0.3220344848400336,1.9525719122691942 +-0.01878632564441693,0.4377778827654685,1.0423479629152388 +0.22870136109973865,-0.07955379064923565,-0.22276315689592568 +0.03988167355609479,-0.19417646486282192,2.2228167675780757 +0.41767059702148013,-0.22023171973891376,1.4814311314454924 +-0.1998409977266707,0.3331882315717023,-0.023633180486695077 +-0.01777433441888615,0.21803462927325068,-0.24247967164908915 +1.065532546023405,0.20527201752937557,0.11779303976689715 +0.0016998937224282362,0.2665346510379911,2.9787332272258653 +-0.19840233968406928,-0.14866990319486356,1.1418814580641312 +-0.08600922712107623,0.2680207777278465,-0.2189240325941522 +0.504978767742261,-0.029872631103131236,-0.15128302951251363 +-0.14558767943064688,-0.18838227339143035,1.719835296351065 +-0.12408507633711158,0.26618323987616177,0.5213538118898854 +0.04651582467934351,-0.14111581530111442,-0.17626247031157102 +-0.06353495201796205,-0.22546880051822607,0.5889239321630367 +-0.07888175980524087,0.25228831050442113,0.07361748840245519 +0.3615555929860933,0.14640100238528297,0.14077299605332488 +0.005362749192661942,0.18298451722228093,0.7560691228154128 +0.7054902310942612,0.1731691649688153,1.6564362457238921 +-0.06052222222168921,0.12495573911681146,0.31042958374174 +-0.14544510991822082,-0.22195810301636032,0.1607161663024348 +-0.05481143277179079,0.2209238856499992,1.1398435944817749 +-0.20872603749213015,-0.24111311158078455,0.8147234434148971 +0.3310154673411796,0.11091703367423522,0.23649307490575755 +-0.20705593476192732,-0.20800139623882544,-0.07055363806073889 +0.1146057791651483,0.14874569276708288,0.053175454286875756 +-0.157857546054386,0.7003143671327735,-0.08060371244890935 +0.6035436246260132,0.07844686056014516,0.5972720941631111 +0.0002345187948299965,0.26644901787199515,0.3608199471844793 +0.33840070104859443,0.26959723611798514,-0.2224850762320383 +1.5531786467153041,-0.1194905963591581,1.1127858310518348 +0.30046572036785923,-0.24045744750539988,0.7471084746902029 +0.25411824027904173,-0.1287147020075627,0.40186087772768075 +1.0065143403549013,0.12660933792447032,-0.22645611586556627 +0.0499683972616774,-0.1968995014874981,0.4341402945699552 +0.7150828692238009,1.0896437099555114,0.8397819961585229 +0.5743389854633055,0.18908977815145311,0.14522243750963892 +-0.24689746605997237,-0.07171335529697648,-0.14106960555619685 +0.3173249160595394,0.2017789949669201,0.22976066008075158 +-0.22198187917931758,0.10919649502466344,0.43537065667664465 +-0.056650485124140254,0.04632794884407643,0.1329659106183282 +-0.1953079738230128,0.5534507965670217,-0.09666572699915413 +0.6318939152005116,-0.24345571741418423,0.6048742953248522 +-0.2387441623002895,0.023148810388741003,0.7065673142547263 +0.06089370277997347,0.3188073107898346,0.05591748663808821 +-0.04402659935347886,0.10011806063362211,2.0278276746433797 +-0.1300018835744131,-0.13691536377039223,0.5165218028044914 +0.5828443708422908,-0.09366334636438176,-0.1500689009346865 +-0.09728152751890756,-0.11467533190578144,1.73584355429427 +0.40370807269290443,0.25452378914158713,0.15245781900891936 +0.8311228649057296,0.017032767407662963,2.3262109588748237 +0.9566145607353373,-0.12262606513109095,-0.20350032520393946 +-0.19768094599644664,0.1430564234973012,-0.06672524617717843 +-0.22201049755524357,0.24427240290893848,0.4398589631937959 +-0.158470227646089,0.45790307272204445,2.5336572975158647 +0.975503907504583,-0.21842597299185235,0.423878403253085 +0.13846913534700878,-0.2159497162715507,0.04288407580628273 +1.6136931816347775,0.13087263002861665,0.6587895391332997 +-0.0304357158844768,-0.09142125828765144,0.09461575418562163 +-0.20683296150898395,0.3224765234126038,-0.1043106560738443 +0.5778866524623598,-0.16974865071926265,-0.14078688409169837 +0.7126480915072004,-0.23878642913095652,0.6995683995934383 +0.4399698634371303,1.120706451496921,1.6653228317515913 +0.06547659724359017,-0.1018094396709742,-0.14218066997809742 +-0.23218613581073191,-0.23439114865080765,0.5827217999733638 +-0.07795127134817234,-0.08287303957807049,0.028669876352812373 +-0.19194814420053458,-0.1779043373503852,-0.24784327253314561 +0.15031955253260748,-0.010299145341698401,0.7594888762706715 +0.02429638972023307,-0.21246425129644583,1.8866116388726906 +-0.21867088766953457,-0.11189095108253991,0.1380621547275146 +0.027487656455682075,-0.05268227657479174,0.7333033280799466 +1.3531390734359368,-0.08039294541541192,0.9753803933365002 +1.2655556607187841,-0.0711083813813792,0.531871918690442 +-0.1382747537818736,-0.11317880275612707,0.8748105410665248 +-0.1653954452187759,-0.14808301041643743,0.5546015872988816 +-0.23806239872454993,0.39265096344582306,2.0432267540461795 +-0.1208630762186883,-0.13418895071809855,0.21350532345590317 +0.5278152860535505,-0.13224322481332546,0.23226445030684367 +-0.21071761744563006,-0.20239498228139274,-0.09894114489464631 +0.5358287299592269,0.20734755815999623,-0.09122357568130474 +0.4526821771929741,-0.1489354665839998,1.1662774739823867 +-0.024221185630310504,0.2522216834994716,1.0855909706213214 +1.6500576863672305,-0.1548467269074003,0.5338316827614921 +0.4296688039419282,-0.24011341659689944,-0.20868127393182298 +0.8688351318294802,-0.23938687045962595,-0.09125637073203982 +-0.004905403540539088,-0.05319302507276871,1.3155640123680041 +-0.021494474541453173,-0.17660248497307274,-0.15631528515673704 +1.1641735837907459,-0.07100863413049718,0.16614926129229374 +-0.23167255693024913,0.3611153348324502,-0.11658984497831887 +-0.05126115190844835,1.0256276096881056,0.7874183413043336 +-0.18591188218820245,0.012991350255435297,0.5658123901208424 +-0.1524356993249621,0.2086080235567716,0.5850583853008997 +0.06342509566590243,-0.011621272098253366,1.0116514611646281 +0.24652747436995165,-0.11403706253067353,-0.1818203736557133 +0.8568558940829551,-0.20691567436132244,0.007956286340685792 +-0.05399661258364927,-0.13479922457135793,1.6747871273860817 +-0.225457764660573,-0.1366528653864048,0.1804478343801052 +0.2374824177306541,0.02220114347487928,0.8003368562132747 +0.7153548060990821,-0.19213505796796138,2.296844109534019 +0.005367741863733899,0.5758160353475439,0.600694998652789 +-0.10530411742120713,-0.08538642195026458,0.045377196709076806 +-0.10660179270943257,0.05232028641123093,-0.18892469688013708 +-0.19580940154932397,1.0465178103102484,1.9246458573068574 +-0.01689252405598357,-0.24534586556658833,-0.012474038228297374 +-0.18597994030773568,-0.23546522851452997,2.094155508089218 +-0.18701020304394733,0.21342149652704212,1.3140154908147281 +0.11254950544539327,-0.09488482309339699,0.07695749752120368 +0.4018717729674641,0.19991770106368156,0.6321636713888716 +0.12512860803673292,-0.15021974457123755,0.28222890818074065 +0.19020907564745249,0.024659628122369104,0.5143036631626552 +-0.24446720076147951,-0.20578794410659706,1.3378551082295895 +0.37886185742757283,-0.018342538163355182,0.1129026523518587 +0.39233666438196557,-0.21739213026956622,0.332108054773264 +-0.0021043182030984486,0.13094974653982183,0.0020057422699225613 +0.0005418811209831897,0.6468438313103607,1.5043121794569159 +-0.22651813846016067,-0.11776008990814454,1.1940072136245803 +-0.0771997246324303,-0.24630101611241467,0.591414642537579 +-0.1759090784171225,-0.21764311731044458,-0.20492923693992468 +-0.13843985909027634,-0.2038261025746488,-0.2269685209118919 +-0.21548741798005797,-0.20824790675455465,0.5321956675255372 +0.37984804612353185,0.4720268570067382,0.1326307642468128 +0.04439606757235037,-0.1789540273725214,2.817577301354039 +1.191752920861889,-0.21492208930495518,0.25403824281303944 +-0.1862961301705866,-0.15903955882265036,0.9359690525537532 +0.2835673976519957,-0.01976729762690041,2.194600630947207 +-0.13722332033730822,-0.22087195112520425,0.1716272821343025 +-0.07959631335125103,-0.10092066637758698,1.5648751823965164 +-0.08180609245016718,-0.021895155068426292,7.707352715744741 +-0.15261728424412863,0.25094791254875815,0.8932679499662308 +0.2395898204967627,-0.07440943141840109,1.1576068780258402 +-0.1587807836103368,-0.1786409228019132,0.6405920919029753 +0.08460462703522553,0.06854972242346019,0.3932407187053506 +0.014080014594192503,0.22233852717066577,-0.18079120949545363 +0.20457081838286906,0.23881062611707182,1.855558838008152 +0.39806898576256033,0.19138977884477792,-0.1617161595801268 +0.14190220200977816,0.060858563799361165,-0.1097902082876985 +0.5391782290065201,-0.2130257558168097,0.7565381229958383 +0.15310410832018578,0.009007650175593906,-0.1488259979089394 +0.005678789143678753,-0.12415220701811153,0.12260064448229357 +1.240095959260723,-0.20910280140730045,1.5703270908734082 +1.6914931947443475,-0.23523681019391174,1.7679421023405109 +0.34532676747925695,0.3126147536276205,0.066816324632063 +0.5069866597175168,-0.19639187097258134,1.1310553141993307 +-0.2495743404211844,-0.17163261070151453,1.8613926474910438 +-0.12270539416472173,-0.006642289439679094,0.7183949061459454 +-0.2044427231272012,0.0905024110206295,0.5347480536397675 +0.3701600982891783,0.02428222235758315,2.58946893462559 +-0.15208991278549927,-0.20226167241111612,0.3177983071873607 +-0.1993405097287064,0.27519516069700267,1.030235371376693 +-0.24647124569788875,0.6724820186768607,2.4663756243615964 +-0.16208886564837244,-0.0371327180497715,0.6813114582882147 +-0.23204809350223607,0.30538667945688414,-0.03100985663265371 +1.7450750377600603,-0.1383862959943995,0.6178511400154694 +1.3597131958670772,-0.16310655422560486,2.603277987057731 +-0.13054129441580642,-0.1845835249882013,0.16585696569001446 +-0.03696710798425293,-0.07655908874522077,0.4693365784196586 +0.1826429057975391,-0.0062413587227542755,0.2402210007784577 +0.5999883590449222,-0.11341072765774543,-0.028943958469878794 +-0.1940825015306964,-0.24072964765913837,1.4914296142853252 +-0.14140432790003926,0.10388748098818246,0.48863314765255994 +0.2849810756925719,-0.1566153479300591,0.14270832936220396 +-0.07658871086631544,1.1398738834262374,0.4262248756655048 +0.09243531617549383,-0.08227248347640123,0.017092763914106635 +0.5957854388898103,-0.2304073874630693,0.44145290809840476 +0.10620580641903082,0.2243776386018293,0.08009681970863974 +-0.13445017450010377,0.023069765806874476,-0.1610708905942705 +-0.21140957395599258,-0.08952636772821296,-0.14385350807222125 +0.0639680410492714,-0.08360140548398853,1.859298409411252 +-0.23552717579906593,0.8888894560902256,0.8196409135341753 +-0.13886053687457642,0.3361630789397869,0.930773601188043 +0.1754165656014508,-0.08777237811477495,0.31683291065383545 +0.056027283744645384,-0.15026624203449745,0.14194234642113168 +0.16417365155963892,0.0765084175425309,0.6471156094405729 +0.48752571284878043,0.49155782179873475,-0.08627663279436398 +-0.22027242116187962,0.12111174966987803,0.5859239448433342 +-0.12113689121429391,0.3556665049718535,-0.10950830957801697 +0.020874772854355572,-0.19536435342138028,0.024722746542382046 +0.053832044964102155,-0.17084227577506372,1.1852371965273483 +0.6390520128585846,-0.2250223346183603,1.0603309350675068 +-0.06880835261390653,0.5310413160518062,0.5281983159411497 +1.6648425499841497,0.06272615151540656,1.350241412597234 +0.24108163920384024,-0.1017822398734003,-0.04308195407530915 +-0.1861783335276028,-0.12523677344217055,2.406991460708809 +0.8125446137918007,0.937552030224539,0.3557504000023737 +-0.09106738428592767,-0.2393075130510542,1.1362606209582837 +-0.023303267449373832,0.15891830337814233,-0.1204632998483765 +-0.04460559349190338,-0.041934566494899406,0.4469151093642425 +-0.22997450621937154,-0.20097784162264645,1.6929187246718183 +-0.18199131608637936,-0.168615967467424,1.2957086452976683 +-0.1477752293866022,-0.21368024232956342,0.7255784106652945 +-0.0015279342625527381,0.2915053678762033,0.4301774120324997 +0.2302758640811698,0.07295755703888918,0.49726224830791277 +0.16685046008512966,-0.027800452319554886,0.022326494718825418 +-0.059456205662196115,0.20651855827370108,-0.03863687304375113 +0.2289901901947181,0.8491117551582184,0.1866236680131435 +-0.230987984362045,0.3051761484144184,-0.18393363803079865 +-0.015297493523533129,-0.09851745060848857,1.2795371462776222 +1.054723674053127,0.25986155342397643,2.4776980209417965 +-0.08454517231318312,-0.0627619184018442,1.7756097442502763 +-0.023144088241873834,-0.11144795648090894,1.2452042883252508 +0.0006889783624185464,-0.06316768482654742,0.27212612216709897 +-0.12646772308676746,-0.09017191256703505,-0.009738277720312882 +0.18134951682678924,-0.04727679139380303,3.5994811031558847 +-0.18121791298251871,-0.17407629207791633,-0.2428169924473025 +0.04426245101952686,-0.14829761936774166,-0.007010697368241281 +-0.03094900549783297,0.19740229163951112,-0.21265389653528355 +0.09909395749519506,-0.20021267607653792,-0.1375470679475123 +-0.10214844045068319,-0.20866588261423402,0.5176358239555777 +0.4048626927725897,0.3757056937579587,-0.19320355618081606 +0.199593929039242,-0.18541393781695695,0.637873706150946 +-0.11814471396368229,-0.04301204170762013,0.7324820283831449 +-0.16857080162998023,-0.22812130330842076,1.7858519077142327 +-0.06378370576116993,-0.09167894529293855,-0.20987539721065163 +0.023240568902701264,-0.014306015334393213,1.0425801906758831 +-0.08910812833789583,0.03736058385862523,0.12871698665752618 +0.8558007598983615,0.2579829965429875,-0.18652977053281677 +1.2559659354881445,0.003089386641089875,0.4332110672866126 +-0.19805710369052393,-0.1332545071026194,1.1919343340454451 +-0.06421705117000817,-0.024952855644020888,-0.07892111811521904 +0.11685619419269966,-0.0020880078876786834,0.4152807599799374 +0.0541754024996402,-0.17664172385576238,0.4504151123911412 +-0.15574619538248358,-0.12947588794987583,0.35777540345343406 +-0.06952835092424217,-0.10255051099169762,-0.21288215184077497 +1.428927278540945,-0.07543941125151526,-0.10801669993692614 +0.12113788920028806,-0.1722526545835258,-0.2339905027481172 +0.3060268327170127,-0.23633273176550276,0.30987308122111923 +0.6128457748334081,-0.1464962951681224,0.27539637840181697 +0.8083487908049174,-0.10574516911668497,-0.16960735306326352 +0.21810452004042657,-0.009530118093074441,-0.20391647845544178 +-0.23700067569293057,0.6207444824723604,0.22454612775706223 +0.32322433286541485,-0.13756591572877772,0.6876866895273385 +0.8301729550155275,-0.20709760754154838,1.6361516357180903 +0.07542057252926232,-0.1330260928767827,0.7814832777135565 +1.3306578732580945,-0.12864156822981349,0.6700554402089055 +1.2753958806052164,-0.033602634053017,0.4120712245665058 +-0.24479598757146367,0.4263823498066266,0.43242503279522493 +-0.15947899331841903,0.16447242643333715,0.25966971913776393 +-0.018772670340610725,0.08009092772917464,-0.10742552575430137 +-0.05078501652267317,0.036230222273585244,-0.0069070572128544505 +0.1285865374033513,-0.16784755554490327,-0.030337713134340832 +0.4796753761404057,0.07947246333235453,-0.17112688786557467 +-0.15270565586142418,-0.1961916338513676,-0.24390144185372842 +0.41723324724570654,-0.23918590630387018,-0.14908033523295672 +-0.17234444858159426,0.09181880771696793,0.044562344038610036 +0.15281135817905617,0.06883545541280023,0.583663502642986 +1.9561998946949073,0.06497821136084403,-0.10189367047721146 +-0.11766761021198097,-0.20557418596768795,0.14589591669892832 +-0.12877452854392601,-0.04171773429049205,-0.18174553481853267 +-0.20929162581390007,-0.0525578555874287,-0.24116274848881958 +0.004612938034895209,-0.09308768073086324,-0.11999272084466955 +0.08317537968117894,0.7180719473885777,1.674299975350097 +-0.032223643359694965,-0.10270313577168885,0.08689649114544551 +0.25956866737969453,-0.01701449806376304,-0.133863677579863 +-0.16272505945712348,0.21615949560543274,-0.11416792916726218 +-0.21331156420038525,-0.05086166154480795,0.19914129168266115 +-0.22147367463367346,-0.15046296219779126,0.3399397282931369 +-0.14344471362201922,0.015843781464090323,1.121222566308393 +1.224283554433336,0.17744983190541058,-0.15212287786446083 +0.08940286082067112,-0.14485664026241546,0.6976534022854539 +-0.12151861843309117,-0.16391366459188167,1.0029192782566385 +-0.06338494904991299,0.17468782383434212,-0.24199125340802186 +-0.168748377830307,-0.2173621525059598,-0.03696130658988503 +0.17635492687152482,-0.03196355161796549,1.7506125628471394 +0.46945655092940797,-0.12185144505512605,1.0204791738620256 +-0.03424937633239389,-0.23283002410640996,2.0163728541018493 +0.8509667589025203,0.05968496744453572,1.0179768589931102 +0.06928841573243827,0.07881623057119558,0.8810036118388334 +-0.05945604626207027,0.4250166277863492,0.3049369814350794 +0.34298112208230136,-0.15729025546158104,0.01816221725472411 +-0.1994819992257052,-0.038864605474555475,-0.11340798336886432 +0.3698118818244197,0.04262963741963588,0.25489342610407195 +-0.08478944415810025,0.0599593236369359,0.25427155581923766 +0.1406803728067318,-0.08289325759818963,0.9293353421869519 +-0.045974535861127486,-0.07112240283109911,2.5118052179834973 +-0.1639332237909485,-0.21316829810116716,2.0129203902968813 +0.6166824542699428,-0.07817937282189691,0.40816763298344283 +0.43547526392331803,0.008269585942646873,0.6655620718373417 +-0.03203369890541807,-0.12479535592064303,0.9775001858486443 +0.9028533699444741,0.21700112980687186,0.514154915797313 +0.8049175856165025,-0.23634982778257044,0.6605676570588611 +0.5299380809496834,0.11747603713867416,-0.1434897926702518 +0.6269303361388138,-0.06544025444458201,2.178464108629487 +0.17766475524020342,-0.2330541225770441,0.2753158629797522 +-0.13578313708182438,-0.10155980252898036,-0.08493884578455327 +0.14684477108199145,-0.2400270859845306,-0.05228128458750517 +-0.2411199804855604,0.03807534516811745,0.22815172170864623 +-0.05098223867778867,-0.24302988745081291,1.1071964692376646 +-0.218122119935975,0.8486215525093654,0.5441665231311865 +0.924048097643571,0.23849933747578184,2.743425826496152 +0.03222558974241985,0.1470784937066792,0.5808174656488192 +0.9475088673850502,-0.18227807040262317,0.6315982584801565 +-0.00844946367852037,0.08858909187598735,-0.09808152034087608 +0.46924505209918455,-0.16726787878076502,0.2220264241599364 +0.4929492970516154,0.318951416713232,0.08800518333362378 +2.0834106106667614,0.5720254640046339,0.7344941409235808 +1.5646435294453942,-0.19009876256917022,-0.2386874361630316 +0.19408245829059417,-0.24409059782024883,1.405481247298807 +-0.13683501348093602,-0.09286995569354833,-0.0032635407945685035 +1.1028531295119626,-0.22215405885114636,3.379929393971819 +0.06916086672429256,0.6771562323290253,1.2852607312868771 +0.2884496349604495,0.016617709418612348,0.2018404847901758 +0.06914374194800693,-0.20233038393210412,0.4309222936365581 +0.3974108481150008,0.08828924182564857,0.07376812424752766 +0.29402717170141046,-0.19587867872605688,0.8330880666808258 +-0.08333287144442048,-0.18599793184889796,0.9745795166604139 +0.0018284750038906061,-0.21218297059620383,1.2353198697050431 +-0.16084992341101506,0.7639687014118448,1.336668878250147 +0.14496968618008893,0.24993191671975806,-0.040176400999475614 +-0.09931521569257798,-0.11339950942642707,3.9010401330324402 +-0.1722052161722883,0.028052854156320972,-0.20838720661326535 +0.036672839426425075,-0.16947579436001453,0.26721455277606443 +-0.19563049992276238,0.1779153625913359,0.1386265088866357 +-0.009926537329080276,0.09515950089689568,0.05483724430007747 +-0.24387389206428375,-0.16951676875025712,2.226862052038585 +-0.045724128330973474,-0.10613856976021763,0.8099516585393862 +0.07041653068262627,-0.23324443301929806,0.7739613331050008 +-0.16758498007005695,-0.14089903603219622,0.0666919709925462 +-0.07474996342825962,-0.20141431134391197,0.38108694770497775 +0.503613263677097,0.03600542417855945,-0.13225039473633632 +0.5108687496195021,-0.22005527840983755,0.4755447175929983 +0.4868421997022224,0.05607308400045807,1.3139117620064258 +0.08774612457246972,0.7341754965348144,0.3889184080628182 +0.6535461514764219,0.6752616823129074,0.08944728946638919 +0.5391858811252475,0.09386988133585894,2.5449760940042285 +-0.1453308092610539,-0.162489719006157,1.561199810848931 +0.2338042436722833,-0.1938998525266818,0.6059778766055054 +0.4795890572882042,-0.12929687635092757,0.3382948706278064 +0.06313174449986497,-0.11946250015973703,0.19717748315916633 +0.45368623079600845,-0.024190387188476437,0.37849461061022793 +0.17808349067399437,-0.22605021453020785,0.7210832686912644 +1.017643623404576,-0.15225272549058141,-0.17411029520720506 +0.48598415867522016,-0.214040279144312,0.16816984655405665 +-0.14541958723859155,0.15344273716230739,1.054932789655758 +0.18634366352012954,-0.15751408884882417,-0.1556406034045507 +-0.221865499535845,0.43399810027346186,-0.1967812511029824 +0.326004633380948,-0.0887247055551399,1.5813649894029727 +-0.024803532252982374,0.21548266686981876,0.06631137629398415 +0.052961264820024556,0.5638677478871067,0.49464397017639283 +0.19122646802644105,-0.24098058839011408,0.030272362576582112 +0.07475275601112463,-0.2174047877028628,-0.1867906429801193 +0.07176585792279594,-0.11658096553649269,-0.19323869627147236 +-0.19268435069252157,0.013144090600795744,1.1366216631038855 +0.08065725515769567,-0.1318767181695365,0.6983387513890765 +0.6627298156053806,-0.07975824462808292,0.024329441747218128 +-0.09163209457497956,-0.1707447830664846,0.04647921552929257 +0.8344186448499351,-0.19582361382898605,0.16937859905822022 +-0.14576513733028457,0.41880039995282503,0.7532237815602569 +-0.008999285117994138,0.2565824536406276,0.46962954002803203 +1.6491517098123503,0.014622449029203066,0.34609260405827036 +0.4857874146979917,-0.15618658420833748,-0.2008349638341414 +-0.10105675701225797,-0.13505907487677574,-0.06366531589524238 +0.014832972298487679,-0.24928322603877587,1.362458414453075 +0.7638124012535994,-0.17306068222997995,0.8454734028891706 +0.12475816018476538,-0.16324755373663213,0.6776371637574523 +0.6123821425811341,-0.2196545069130709,-0.018109236989512473 +0.07667209302251987,0.15092700006457782,0.7259175866663646 +-0.023793390818638793,-0.20964933806968356,-0.22566061578810653 +-0.012044147659708765,-0.19649372843264518,0.46120925017893566 +0.3630882130922485,0.206229588640774,1.033515623160855 +0.14987742242303198,-0.2384156285902116,0.4125508043438991 +-0.03872828112708834,-0.17639130996628036,0.9860666159802358 +0.40871891738913335,-0.24916169426925,0.3136041954542984 +-0.12830031066460099,-0.20731360469937601,1.1787132133671123 +0.22357099987404483,0.25605830854805645,1.2682705210677232 +-0.06754919027451381,0.4696617995832345,1.0219929201746887 +0.30552399047090606,-0.2435270829696911,-0.1606190504153709 +0.23266225570141397,0.4294358381444471,1.1701034741644198 +0.433053468564787,-0.020480834637993772,0.24347355378840907 +-0.04761719779709872,0.16526117930562084,0.2586543333011586 +-0.13838567737463336,0.1653417672464758,1.974328228931693 +-0.20134338355838785,0.0049535887975239445,0.05385505082438885 +0.05907956596525099,-0.1280647941758266,0.8914557637873382 +1.0006606946754204,0.1960713517867379,0.04773673210016083 +0.2698605488418947,-0.02355753941736491,-0.05257518382608434 +-0.061447857701659336,-0.17260997375734966,1.1506981216282401 +-0.03995116178928451,-0.19792046071300642,0.107143411097946 +0.7836545683475498,-0.0933268030344418,0.39276159231259844 +-0.0777772957349582,0.031175375109401438,0.03367379765978373 +-0.2307727076282149,-0.1358243316809222,0.013024750665202367 +0.0951348468100775,-0.13954589580582016,0.1184368230532366 +0.8692211633135243,-0.1433154137441171,0.752537210352419 +0.4321265457601564,-0.2032470624660858,-0.1908524466929897 +0.1311281255291154,0.17687224788125616,0.7409998020828149 +1.1231873115158333,0.4150018739252296,2.326041693718352 +-0.1096246851923916,0.08648831310636573,-0.07265263959348131 +-0.06637296448155366,0.17274472717382688,0.28533691073664535 +0.36527927491655976,-0.10418002681645538,-0.24540845300117708 +0.5428894980282302,-0.1874706391441826,-0.0698220370308188 +-0.06684273312306879,0.6764863580514506,0.20992907704685115 +1.5159121170067047,0.05446032175071852,1.273727323001895 +1.1163566803751666,0.23825394770694985,1.2099491338732082 +-0.17570490347255435,0.35733251900519225,3.0446200881876 +0.8482604210876417,-0.14908352802346164,0.10937983951091856 +0.9843073040710477,-0.12712602946204005,0.487308400808115 +0.018886931107379434,0.04797027961853778,1.7719287106212978 +1.026673630265265,-0.18291433044920422,3.6430134721238967 +-0.1716332039765705,-0.14643204860219705,2.6314501963504133 +-0.09675181056227178,-0.18876629466954797,-0.2495238887238211 +-0.009374971859168996,-0.1314023533993536,0.07471938672440026 +0.33901845611038184,-0.026705033796635802,2.0590979333143427 +-0.221809698654338,-0.09642171579183884,0.906452971033985 +0.5907994339247408,0.05623647271472548,0.02801152512834071 +0.4004721848847118,-0.2077760924068594,0.32554202842613156 +0.05129803773994934,-0.15313007509343343,0.34296185879465757 +-0.22527911169156606,0.09409341678586197,2.4726042287197956 +1.5483263296685814,-0.18005076116235452,0.382737202458876 +-0.2018598494201754,-0.1383364373063763,0.3863658238118193 +0.5247822408275138,-0.19052386840020602,-0.21918180238605187 +0.8038125107750458,-0.06793041651613294,1.5112516048795899 +0.8470066789273019,-0.13756440911743684,0.07076952474168619 +0.24536880972679614,0.019452312272899175,-0.09133157356879715 +0.11869566461210079,0.6624117643862426,0.16686877701185787 +1.0887092732828147,-0.2452806780389915,0.054161151393376517 +-0.06589450361082305,-0.2030016555323127,0.9214935441996128 +0.0316447625028457,0.019167591846910526,-0.21238100748772337 +0.05006489250645402,-0.07952249417593282,-0.13288745052850925 +-0.020295405070987538,0.016635869386411706,0.003855632990414526 +-0.1741038138947191,0.9488737597064798,0.21957739235431778 +1.411545228722982,-0.20684374028440336,-0.0629139905552503 +-0.2470169816298004,-0.13208440121726356,3.70840951995787 +0.01818830305925323,1.2339683990028634,0.4965353979670618 +0.57041559242315,0.19454870280043768,0.5969230717534869 +0.24109241971611733,-0.008490938576479062,-0.1622967101633513 +0.007489879260014931,-0.18731894287955292,1.6532975313286329 +0.00026833041153428994,0.051567690170180425,0.9454178601324104 +-0.1841996642420117,-0.22415357204144457,0.017173387112866423 +-0.219047894298098,-0.1888947883454299,0.14977852226464672 +0.21010721813669192,0.6658445166904515,0.18439101703260163 +0.7092775732433388,-0.029915565157867946,0.9356762438972381 +0.5027728562494882,0.6032781521368712,0.03793487542822377 +0.31620446994830775,-0.17645989064993114,0.4627439499402336 +-0.03885165694114001,-0.17913074331336218,0.9740640089704702 +0.15823316464234038,0.39718202750371145,0.7516550424119206 +-0.17812336348273838,-0.16271660344852548,-0.14686128683276667 +-0.16999618498014016,-0.11410022281001367,0.06384578548433306 +0.19080859374599535,0.1754733574038489,-0.08125074497042781 +0.5464438391984984,0.5265061825055621,-0.05315988879844463 +-0.075736208827652,-0.08751095171526249,-0.21680701772441946 +0.658061747380504,1.6212671822926663,1.7517991129718027 +0.17287405887689294,0.05759914362022084,0.28867358053126535 +-0.05585962364172051,-0.07057121329527863,-0.24755116777322506 +0.3471805781224746,0.04962589235591336,-0.020946341312684996 +-0.06140933595596812,0.3271086942793613,0.044122611427180825 +0.4691900779198398,-0.1114375041701057,0.9671522180730556 +0.012154021338316223,0.31378754032172884,-0.11741575790222669 +0.3255596680959061,0.2140305995031403,6.030721021044901 +-0.1697784122194226,-0.15588549825551387,1.5659678419066239 +-0.10055169140473788,-0.03874629037887792,2.34076649828084 +-0.07506369731070511,-0.022604506770360994,0.420936669529985 +-0.20888017411178622,0.08508721786479745,1.3462474211801363 +0.5418748534567011,0.03523861197555411,-0.20409178490053592 +0.3463801513436301,-0.14963929192697317,0.5987975162460184 +0.0898921653215089,0.11638693987646032,1.3632396612802378 +2.183240729793554,-0.05113507628019695,0.1626185400747429 +0.4913085774110424,-0.0001412162635474612,1.135967185006622 +-0.11681950212247963,-0.19325596103733556,-0.034410854530095514 +1.5269597564361876,-0.10880553362879497,0.8933467921731357 +-0.023114809451502044,0.4823312310083583,0.2775800380104626 +-0.012411718843733599,0.3386271918514938,0.38921978535189894 +0.17438073520819486,-0.2461747246856187,0.8018899178264571 +0.12114739878640152,0.10529266860451147,0.5378062212997314 +-0.16629364231704769,-0.0704206469735773,3.051738452988761 +-0.011589778404707568,-0.07553633661799358,0.1585221798532277 +0.0497669502036136,-0.07307786371987068,-0.18908802314897444 +-0.11651547045012176,-0.2031809830375791,0.9932039992977784 +0.32783413607314515,-0.24497571420679576,2.113744479261545 +-0.14822608707809112,-0.17232618412156522,2.350479414149516 +0.3243643393064083,0.0474840799925238,-0.22094875594548477 +0.12097360324806633,0.16056739617238436,1.001296117396077 +0.17591105668045592,-0.047680214753161976,0.4706394676027327 +0.009312860945506762,0.6090183336849219,-0.18530629287204992 +-0.03197837880539284,0.027166558252568807,0.0831339098717978 +-0.020877368283930775,1.2244811465801184,1.7259015730707914 +0.07111610705472732,0.5955172426178074,0.6015426134447259 +-0.12096572131711639,-0.16274012092963835,5.631393427697718 +0.13115497725250402,0.4082834013748611,0.3458384679148804 +0.6438291122818187,-0.13169980687195454,0.2965293123304391 +-0.24614504099251,0.14211964386774462,0.8495468383402112 +0.026014000655002922,-0.09019193062761421,0.16855491391397437 +0.1921537433350981,-0.2166682895911124,0.12341638703384095 +0.2059704434854438,0.2627349902183076,0.9782069205925381 +0.014249115446827332,1.1896448385592653,1.1729701621917556 +0.39330909660871516,0.23407054014504836,1.0462340756505812 +-0.17025242332481139,0.19265447803348462,0.8266431734388346 +0.09402903359514109,-0.24900439471569516,0.10818570039561448 +0.08121088753130401,0.5624675580710058,0.2050194250956464 +0.5621038846755099,0.14632314040993788,-0.18189905327859424 +0.15703373878998872,-0.06456535559385593,1.1195742867298193 +0.34969194122416947,0.04138553892216834,0.3364874689507362 +0.24792291826349178,-0.09436321821341118,2.475204012950727 +-0.04793239298346563,0.13198413143945498,0.8732168445552946 +1.2623813209168468,-0.1801168301646334,1.518574958859291 +-0.17895004749778898,-0.21418309244403638,-0.1932014335255601 +-0.2347373119404,-0.19320535642206907,-0.0017821191394959413 +-0.22032977134787624,-0.16041085247101916,0.21771269500417162 +-0.05821422120284353,-0.21838045665034733,0.2981469958469567 +-0.18317580956822194,0.4953152918673336,-0.09815666972384404 +-0.05857606825243619,-0.24950830682756797,2.3490972449269143 +0.386737586491688,0.01846385930538985,1.837544521731227 +-0.11803498421558481,0.22438533033584063,-0.18410457018008913 +-0.23018613261691906,-0.199575787081568,1.7390559692498357 +1.2475995353105125,0.3337215553528222,4.74133959904594 +1.507229223720325,0.2150526981916605,-0.1646727290427728 +-0.1700350613326175,-0.23538294909724,0.1748551292931263 +-0.10383142440663101,-0.06647815272626156,0.5664546711443995 +-0.18201716740288643,-0.20996675713648172,-0.04693172230246223 +-0.18616993157974018,-0.2139436107976069,2.4194389333232564 +-0.22049470555358291,0.03721412511154004,-0.13908397139601936 +-0.21121310917653222,0.16001575459703393,1.3750511397790854 +0.0499489136903607,-0.17506984638924444,0.23368430642236354 +0.7757630926804604,-0.24647702643137617,1.6664199387817162 +0.357002571250577,-0.13246808815147867,0.00042693255298703603 +0.1974542852375083,0.15075391708596164,0.7828711404135296 +0.7754419509349417,-0.13708357346530947,-0.1021837539352109 +-0.23389181739359338,-0.1950603874636506,0.09087997636061179 +1.155643747197189,-0.20357188305206575,0.0764417885385143 +0.6959350096220493,-0.15523839982767912,0.5361510487783606 +1.1712979905005194,-0.05334749107954384,0.2798370477169463 +-0.07874941366534652,-0.11683958616332679,-0.021208923783130162 +0.08843522608744459,-0.24943300704622845,0.5615663210466325 +-0.10560405529144667,0.05306084928355548,0.23962422594534594 +-0.10406788989211574,0.6910730389934673,0.4182680963005597 +1.902956514545227,0.05177476071483966,-0.17392877245083121 +-0.15277256179306484,-0.17304974432851292,0.09353306996424449 +-0.0038226813198205256,0.2731585339681263,0.7026004605281678 +0.0215316635848804,0.13902463179586966,0.026304693946989866 +0.21726148899098396,0.03846248766218324,1.3445326943624756 +0.3698289416941922,0.2215289421062389,0.02100389953388615 +-0.12075231197803032,0.22738117608745984,0.7274052721769155 +0.4548685152821199,0.5390211644696811,0.7072516869838218 +1.3467508996372088,-0.11083201728693928,0.5153162564957042 +0.27178684069299264,-0.061279768167953885,-0.012802056551438734 +0.06980758540777277,-0.0921214606691991,0.5031405720518184 +-0.24590040098719335,-0.13195470614556631,-0.24954938470815585 +0.11183717541935334,-0.2118760394053284,1.4915547031628988 +0.030249914169576342,-0.028630033140735395,-0.20901898070086436 +-0.2059242542334998,-0.12656560931252497,-0.17685335556270443 +0.7131931767597675,-0.04968545971136826,0.3516183930413609 +-0.17317208534072037,0.37566236014028365,-0.14138752344667121 +0.4170173705623005,-0.05846793965370231,0.23429403587249448 +-0.07454672025146714,-0.12870314706548264,-0.10589693896431418 +-0.10606749537924262,-0.13019875624328298,0.49581647923282657 +0.4738260510466207,-0.07012394576132788,0.4127014140397207 +-0.23103535478542425,-0.009855947773078216,0.45485408976539576 +0.14448569654755333,0.03356450071552097,-0.24969258946661965 +-0.16125474105510718,0.0843702033142435,-0.20296520807633053 +-0.2112966244499892,-0.06172115945643353,0.371289782272304 +-0.15751547533729116,-0.10743407606681496,1.8008997725286067 +-0.04664882160303113,-0.2490686402875509,-0.008865035227604984 +0.5639210265457466,-0.20863955449480467,2.7094743240736454 +0.40889861558516916,0.38234883861854674,0.2360360552583401 +0.5148696127600269,-0.1880788381203081,0.16781090645648167 +0.17379563902079448,-0.2108585040637967,0.2912171226233672 +0.05474976761881245,0.807384746155605,0.4101985906707758 +-0.20128633857523426,0.17920536224637224,1.5385543828381207 +-0.1076679637685205,0.4263700372914899,0.64718478293847 +1.165092147533518,-0.22602927374862614,0.3262320809390805 +1.7685947172335235,-0.1529766407208504,-0.1149805390565152 +-0.21719443647983858,0.026066678334605242,-0.14678994319258507 +-0.15205882254918923,-0.23461374943185814,1.6399374514310092 +0.15024632898314544,0.08197916505393371,0.04241086754589979 +-0.1560604611576307,-0.10251388627931424,0.5967246559516747 +0.05671378110738595,-0.020536457309773548,1.3442982552830798 +0.23617744327869084,0.46663194841180855,-0.08629617598903089 +-0.156630710335518,0.03322926994410558,1.0535962921756876 +0.19929407656020748,0.4914215903071305,2.6288754590010326 +-0.17436288700404962,-0.23874543069006443,0.5716628772351664 +0.39333623862675315,0.43980314353071015,-0.15414152254743546 +0.0637560078728237,-0.008600069125480891,-0.07574503036558014 +0.08153650773594595,-0.0436829429298741,0.08117786766318114 +0.4053784113186246,-0.14600359287008263,1.9453905329870018 +-0.18231944674907757,0.4855828623870826,2.0065424475604106 +0.09519616178018647,-0.2229823351540775,0.2407657336172191 +-0.1026296361401714,0.10316757905073515,-0.23175928800294035 +1.5016894258379645,-0.03912199389338611,0.46287313567185195 +-0.06412285551276875,0.3100242765422834,-0.18491347343371328 +0.037638454518461706,-0.0828878266706129,0.47690428336181423 +-0.21913050275048312,-0.22523365995818703,0.23232301955235996 +-0.036261471922070465,0.05580783394877448,1.4760710231228333 +-0.21416827233879243,0.15517181598237817,-0.08054243118866483 +-0.10797737606026014,0.4049865715383747,-0.15979045986646018 +0.04377887384908574,-0.24211948058644314,4.571748686007184 +-0.04694209836802274,-0.14466333679245377,0.0416077153179884 +0.42561762660818314,-0.16513380198978994,0.35812573064122644 +0.3803871007843166,-0.00816239274864694,0.0031483319205707905 +0.5909510939377014,-0.14021756899985627,2.059574649925729 +-0.2112934978048128,-0.08976118859417462,-0.09034226726797334 +-0.22294192038016328,-0.0813113538176482,1.7239367569166448 +1.2764405138129957,0.23408474269910462,2.379337408239739 +0.707936365537386,0.14810790082922165,0.17840146593914696 +-0.1760562819644041,0.15777141545665618,-0.16700118636549247 +0.055135008120577755,-0.18298926742640043,2.4643651724250004 +0.3635996148185411,0.6188408058792132,2.1295813741172696 +0.4820057703081506,-0.12148060410437048,-0.14862131797383854 +-0.16876389174760958,0.2327858063519685,-0.016837225239586973 +0.06776849999133772,0.35553404729115634,1.9483352065504378 +-0.13383989502056032,-0.22355309731479978,-0.1358607246292569 +-0.22740711884522685,0.10530648551441724,1.6313203552811215 +0.7161601824548254,0.2573283550526665,-0.21674542225052168 +-0.18942531714631,-0.16352224119504805,0.8810161298456938 +-0.05833584803902059,0.08986612246239367,0.42701690220141253 +0.6144234544604568,-0.1632834132778972,0.7102865705118122 +0.44103044380175704,0.03917195183500993,-0.02854524457852836 +0.045131458648052125,0.8498908063242392,-0.07029588578121074 +-0.16425338261299133,-0.2142457242181976,2.4872755456897306 +1.0381046138905197,-0.1916517516750898,0.8631123938793133 +-0.16412856993581382,0.17533613232643452,0.9365226928258878 +0.12107311005665977,0.05890027885087867,0.8593001394992479 +0.3046229506057382,0.4037446638812514,0.09886512563001015 +-0.026377063617750468,-0.21667188952811278,0.20439979249674955 +0.00847321621345104,0.39693078043150654,0.19655173376214408 +-0.037158677575608534,-0.22195699730401736,0.12917599622039455 +0.0749153028736032,0.021901021667066922,3.04817947058144 +0.49770612494764976,0.04033736474366695,0.45464593941594644 +-0.16395914230352435,-0.03744301921988549,-0.12740928457218548 +0.023603055466658418,-0.028769381693655283,0.764420769890948 +-0.10449668993846917,0.11712243849932147,0.01712005613146439 +0.38125180066518904,-0.0037010331799115503,-0.12511235359049333 +-0.17446003297449159,0.26551677820114217,-0.23186028300689918 +0.4958826982910761,0.3921243700970637,-0.14384422485131743 +0.43109679166834025,-0.17022781689563138,0.5730100771395066 +1.5505632642853195,-0.19438261073468432,-0.2141221033825738 +-0.2197924643359494,-0.24877215902625377,0.3229374166635922 +0.34928204700055077,-0.21530335103476242,0.6071597999806119 +0.0612881591513495,0.02368752422595566,-0.2391847634937606 +-0.09474984462164107,-0.17414467703922804,6.787233565955975 +-0.018476094832616308,0.0795062514525437,-0.15560645342843726 +-0.2406539397009828,0.16813966610862513,3.0853785929817836 +-0.13778358135407215,0.17833633827591044,0.18497157918414192 +0.04490519225274758,-0.24759374321682187,0.249215995233098 +0.10591508486741535,-0.20601433484890053,0.3738968167832244 +-0.12452123103118073,0.0763081124944221,0.03546228364971188 +-0.21035161117556758,0.06801165491760203,-0.21474892377327315 +0.1928013440670291,-0.23387064871390548,1.6150463966327757 +1.7457992803331221,0.3352366746513734,0.35461326669902826 +0.09475100102802358,-0.10270789270793687,-0.19930043336498598 +-0.22317111168687945,-0.22576096022647243,-0.15304754834531062 +-0.19866860006208248,0.28534049912373693,0.06678688289078649 +0.35052074629842733,-0.06966951497948645,1.4014166391224239 +0.17730152907475866,0.11461699799779923,0.15426579509340665 +-0.14005220219240516,-0.1550690179485872,0.19593289348836718 +-0.23565290303261927,0.19713920546704033,0.3785065944757804 +0.2240715250201189,0.06644780947307621,0.5420275496913901 +-0.013623363731089605,0.23472854041333618,-0.20018716171815126 +-0.15648028060716396,-0.20680972777460638,0.039503638872725844 +-0.0569131584967367,-0.053421454351015224,0.05346494225229026 +1.3553824935286132,-0.08888962118511096,1.9667751183475155 +-0.03180292099648224,-0.02775839031950411,-0.006455814862242948 +1.606009147470467,-0.22341167753243274,0.8110222525245137 +-0.07449527290032962,-0.1904390838245494,-0.07164414825863044 +-0.04897994599359781,0.5067957947975855,0.8669902123643134 +0.6480984691549341,0.2336119511017976,1.4031900321769704 +0.9087361267633738,0.31426637357128484,0.1364896776521871 +0.7866775628620415,0.018582325680215284,0.3188278417334507 +-0.019997832938121907,0.11689856215505784,-0.07710264540301917 +0.5254487308779171,-0.2478972527052997,0.7472647379000406 +0.07438533380535434,-0.11309004265194592,1.1766880263870783 +-0.05887923823762761,-0.21758936341191928,0.033600463203373565 +-0.17786997336793553,-0.22613793843179963,1.6802134877032586 +-0.17404916519051886,0.5835363941356949,1.7468149206912449 +0.06624854552381004,-0.15153867161624737,-0.2162039655167405 +-0.056247908739507385,-0.15334305128669862,0.7894366741583347 +-0.24816081541406532,-0.2159005726399727,1.9419877953274987 +0.3570328169241347,-0.15429259478895113,0.9200658190736608 +-0.03112484437355717,-0.07295207760235609,0.49132190106147644 +1.2786665700770836,-0.07646574790399593,-0.19054662292889 +-0.06853748792930345,0.895020215196658,1.695587572970546 +-0.16731854671311552,-0.20744939838872373,2.1968634335210844 +1.0294749317167298,-0.15335761036204354,1.1871098652653946 +-0.24906375614445694,-0.07411104651359898,0.017386028500817607 +-0.1299918791765441,-0.14621529088879529,1.2810359643973235 +1.1078310971418008,0.21259310777675605,0.14262487061175155 +-0.23119945193662372,0.5363731802849427,0.7360844718855079 +0.22558842977142513,0.4070837725094302,0.10782000054263796 +-0.23345930968687761,0.03888449101218666,2.7398140616096565 +0.3980708529531374,-0.24557021331471457,1.4034288602892242 +-0.025304899454082513,0.17785481781623302,0.5231202605629122 +-0.11941622345688563,0.4144791805237361,0.5351617071004586 +0.23763154543009912,-0.2269005674936746,0.30912518000790035 +-0.12567668067564208,0.9609953248500458,1.4102899896044088 +0.25220271626293067,-0.07356498987728599,1.1916302600205142 +0.8218034406735657,-0.2203000863859325,-0.15841252516398752 +0.925624763269076,0.5055846400123434,0.6694663780962713 +-0.11289246381428716,0.4810712449833753,0.5894468838112473 +-0.08500191071362898,-0.19047496532779265,-0.05014388063338343 +0.7021648727069146,0.37038679250121875,-0.08430690010712144 +0.6205068123889098,-0.22137627897682796,4.151591159971217 +-0.04822068595841614,0.4759214024745273,0.4605515005320434 +-0.06946691112446182,-0.11841550888435948,0.37055175851393407 +0.04252613749067291,-0.24152077673727076,0.20687439972483296 +-0.1540481023151974,-0.19818953102800907,0.0929284117498046 +-0.05163602192442668,0.09621359141810781,0.7318826023753284 +-0.18184083347743538,-0.19895932360022206,0.07015112414910823 +-0.012414992836752264,-0.21439076284458847,2.0101325366168172 +0.058779713770457986,0.8854076684381633,1.9591104753352062 +-0.0531325428051557,-0.20030543601388606,2.181058122347351 +0.0520959572325746,0.2917960119544756,-0.09335138192522882 +-0.15812540445828951,0.3901126375240359,0.7975449157383241 +1.5235583332850582,0.5468272704753101,2.198652140201376 +0.20429633286512805,-0.1761029515149168,0.38897574778388055 +-0.16640518939335766,-0.11874889084889662,1.1514134976092776 +0.6887103353773901,0.11350031089763063,0.12247019673116338 +-0.2197171847314378,0.9162286907876063,-0.07926496064821531 +0.02524783643425149,-0.14095832437389594,-0.24298677142648975 +0.20435821464689918,0.6184000631016782,-0.0904394272674866 +0.046676072061211105,0.13635815342054097,-0.05589210271200787 +-0.18237290551295254,-0.24038251394242965,0.38094883410913727 +0.6008382351425506,-0.21995406425907096,0.22331285092096237 +-0.22972811402442422,-0.24919460477200175,-0.07999729528553393 +0.24730532454811932,-0.053377283436794126,0.45176780056729293 +-0.07325655843364554,0.012894268097600692,0.7987058423567985 +-0.23381757186885252,-0.24415863510237057,1.1797372695759551 +0.38957381028967697,-0.05760291583511823,0.838656947248996 +-0.05462856056250881,-0.21139881953265277,0.25213446861049393 +-0.12028633944013015,-0.17415535728205234,-0.13789811902655588 +-0.08756378734191078,-0.021239528196809743,0.7016655219798964 +-0.1207843876578322,0.17682228386032306,1.1272758282662576 +0.015487908233815517,0.3866197547704021,0.7613016429939825 +-0.17103483645081108,1.5499274611433524,0.39778766356960804 +-0.24700791114460424,0.20142269757793618,0.6379180564234538 +-0.2346296361778897,0.06479757563094768,0.039107165357594176 +2.2951760023146455,-0.23519849451111427,0.20512772613162983 +0.6018862011133049,-0.21738760022232076,0.0057037769245461 +0.15481605340348792,0.15623562846684264,0.30134322979726147 +0.19019714120312176,0.0100409624826161,0.6250353393423269 +0.9331763649343405,0.00038262484535428465,-0.17199066517148343 +0.10831145071140957,-0.1919035562657747,0.9472717837546776 +0.1489457424197011,-0.19617296539598453,0.7062887147877916 +-0.1476134825313342,0.5753682254049189,0.49752499269967987 +0.2665744115427461,-0.2332707648194006,-0.24765276854949683 +0.3414957631552762,0.020584481514864528,0.1315730017515735 +-0.06119290061811905,-0.0835704154146904,-0.2087231177764023 +0.7236204275458129,-0.16605381821421783,0.5853988897135536 +-0.048509355580803326,-0.2424377544231393,1.0975636551848351 +-0.05316657664570301,0.123576432649941,0.886932024414784 +-0.2237027013651691,-0.029467522783320793,0.7198511984248949 +0.19286274452690844,-0.2066520200521194,2.219496884035231 +-0.11757112422371463,-0.24394102699473263,0.15172550067380863 +-0.16543872068315735,0.8179663752669184,0.23639234855889107 +-0.2467027690326686,-0.20867376299537058,1.3285466444211167 +0.7765442733789967,-0.06295956495468163,1.787711196267026 +0.5335699826646408,0.3802988439671777,1.2385217920490024 +-0.11545017213817588,-0.11198744010778872,0.1117291858233988 +1.551565308319565,-0.001983391855519989,0.9748447293641089 +-0.07901050524311415,-0.21353861446541533,-0.05672225301663722 +-0.1763199316619296,0.027080784647790568,4.3593980747469745 +-0.13835577972714921,0.009239303182866199,2.5895175042762557 +-0.23898503121914055,-0.14049521442758642,0.4066432719776014 +0.04159992251494571,0.3434966066373587,0.025223412861218653 +0.3930133054858732,-0.15287230908058,0.19384414644031056 +0.017000478337759584,-0.052782559484448405,-0.0358002643721233 +0.7635614256983865,-0.08513669392495113,0.46826768872412683 +0.4311638376742132,-0.18179333042479873,1.5547994793619664 +0.2538101301734217,-0.13628740112412047,-0.03583078640297341 +0.04869140918357551,-0.02914607136809605,-0.16698128922953065 +-0.11796789061364102,0.8619759621534004,1.0838348541290035 +0.040621925713679174,0.9022569450879525,-0.1397664453030945 +0.42697130918726134,0.149907311351049,-0.12665737940296307 +0.1857629797732619,-0.07146413950468225,2.1045973149721147 +0.9022638918440167,-0.20341114376137953,0.05482022837862832 +-0.11960714906200426,0.19013639506151092,-0.1675641008057634 +-0.095889322830854,-0.03207552054401555,0.4389434680011871 +-0.1784917928948676,-0.20468002151159254,-0.19625790401153037 +-0.11748497797371302,0.006812177049383028,0.6456991591670699 +-0.1702851865837186,-0.2009502602350321,-0.06999846343184557 +0.3260052002434578,-0.1332292280289256,0.9966029159062901 +1.265395722189228,0.004740567169060794,2.5809382436349835 +0.2830740609865223,-0.021112647859516914,1.2519043136739725 +0.020101233161091248,-0.19530428638182254,-0.1429043216756528 +-0.1456123009718316,1.1124062475380048,-0.20123256989816304 +-0.17673768602944273,-0.088124285078796,0.6413314792902235 +0.8218062908618584,-0.10391347632676295,0.4529964572038534 +0.008692884841372928,0.15876569243704236,0.8894237118235209 +-0.018265813737717074,-0.17189301828580428,0.8275663688443022 +-0.109867959078875,0.32191216315116533,2.9173517864416434 +-0.20624048622934846,-0.1353012641410914,-0.23020619225601108 +-0.08678698511393229,-0.10178158552623498,2.312006759861372 +-0.19274804026076642,0.12339537821599877,-0.1788908498285945 +0.1632858732492714,-0.187483396241629,0.449768680840714 +1.6096426624952593,0.009950977743578449,2.752908053949561 +-0.23575849723474712,0.3868042056701434,0.28153386666073965 +-0.18247166853556485,0.07097428491755925,1.5561188832450639 +-0.20462169155036006,0.4285583941460497,0.2563646945931396 +-0.21477982681111946,-0.10269970516167509,0.5990421726661501 +0.18145404031620344,-0.22595081111056692,-0.06616256378160296 +-0.09075322202614769,0.02485004092710974,0.790472359043624 +0.03911398156332868,-0.09283166227963568,0.3239353398320023 +0.4301525355396717,-0.24818388095073657,0.20588708312520515 +0.28439873825019546,-0.2331238468855194,0.7311570958906465 +-0.04590499263579903,-0.23033013112376932,0.290122187324087 +0.5946150095911186,-0.21971997535456822,-0.07722056155522941 +0.5099284866007566,0.3218651270169417,0.054386237827886375 +0.6577037641383775,0.2448292957781772,0.42898533968916275 +-0.20674992263329342,-0.03242636515359695,-0.11359737645366572 +-0.0549775619960321,0.041333379980486806,0.5058026507384966 +0.3693401787032111,-0.21448546264049437,0.1952636838555709 +-0.16669199139382423,0.2590444874171526,0.45747357779065745 +-0.15978359921481694,-0.10486350186743057,0.44457990462800523 +-0.19512752135144998,-0.013510657467873027,1.6910637959864547 +-0.08283930567829387,0.13661415681703992,-0.21226953661953973 +-0.00533493317876485,-0.1515313712505326,1.7434749999445258 +0.23759413548551772,-0.21269865589107412,0.31540543466149473 +0.05694084886562423,-0.07170594126852978,2.191839529627728 +-0.184056144389795,-0.18713044868538437,0.20092017197054518 +-0.2097643378598226,-0.24179364788125973,1.0278278127151892 +0.12464718032984234,-0.013481865173515128,-0.1976775375214492 +0.48359430215392774,-0.2022868610951571,3.416649123158963 +-0.21670987242837247,0.5507080770963078,0.06393437020298459 +0.5649668158844517,-0.2399187423102927,1.095083355281085 +0.32735728879515424,-0.07650331066496396,0.6615122189284884 +0.004893142658064953,-0.1714929982927675,3.2876385085921305 +0.030757562996142296,-0.07046138969946139,0.629180020497234 +0.1435507672468826,0.028581367391525003,-0.21832883061428615 +-0.24503605918903798,0.06844988067177082,0.26740058785617793 +-0.189905405344865,0.7873590154518288,0.53800192757616 +-0.1743373243397318,-0.20635276677261885,2.0509664311028994 +-0.14352265407655587,0.05817683288481862,2.372037683765219 +1.5175268128390276,-0.02897312770802557,1.6455806174818404 +-0.14157145111588648,-0.17125947719768808,0.03417379713914409 +0.4332391696869581,-0.1321152073822407,0.6511664120067856 +-0.0816959691164586,-0.08690250543165659,0.09905574302868125 +0.22912747995216742,-0.023927837313180655,4.675618639104113 +0.22293617518783754,-0.06883216024824701,0.2855654326368614 +0.2695028808819234,-0.18122615522874405,-0.11170408993753919 +0.3103089153233929,-0.12291417180353437,-0.10130509820637593 +-0.10678667615954415,-0.05170925161574896,0.914683953199853 +-0.09778278952623734,-0.1377671830850803,1.229056659260371 +0.13743995255847397,0.07138448763604249,0.48557841929102397 +0.006120055317247131,-0.07473054646771704,0.1961190958696023 +0.0922119874787442,0.4128498212106054,0.6633708523696146 +-0.02641758742084041,0.042909570592547464,1.0682748975389313 +0.4756784094772887,-0.164322094520516,0.10766461215530782 +-0.059957055658060865,-0.08805250723291347,-0.13558087711013211 +-0.23196605431187137,0.5786816312426643,-0.11500411817160414 +0.9109669016229773,-0.0003998027694261108,1.1997466258433842 +0.2229288318717177,-0.2282474154083995,0.5079501807159411 +0.3085431324383996,-0.18829669013246314,-0.20721161177836517 +0.5166917434812633,0.9710299541209513,0.2908267094174193 +-0.2270951025293613,-0.2065389105762961,0.5775783989250549 +0.7954717438718064,-0.2457545423811328,-0.20683676146755223 +-0.2431628979569795,0.11829625450491371,-0.16160824729893 +-0.09791277437562254,-0.0033891507015664513,0.3251409480063654 +0.23905522650081634,-0.24243568447270694,-0.12761122440841105 +0.2918964128939432,-0.18847963648917576,0.6088632928741232 +0.3689570431207061,-0.18684587909258946,0.6449459399727531 +1.5976921453939534,-0.13544927647852922,-0.1689624444187515 +0.0674370567937097,0.7540479801843369,0.1178974836999544 +-0.22329909112001609,-0.05017295113580714,-0.13086747670489762 +0.2603769325793843,-0.06707380289102896,0.4802956111218547 +-0.2233132996665149,-0.23293736401927298,-0.0048696884005985375 +0.6126763377454683,0.4235632728892066,0.10865589528044173 +0.19111629060086816,0.24367156498986664,1.7257178511765425 +-0.12619400128462782,-0.23746028945644992,-0.2080163539259492 +0.09887290126783943,1.6126429404497258,1.08001017980348 +-0.1983324245836852,-0.1557153895941759,1.5266601663581532 +-0.1815789428215273,-0.22214198769848909,0.4420307112757542 +0.3058728238599764,-0.1457526974228128,0.6936280579012652 +0.38734204794031035,-0.009747626987706925,0.11470287114308791 +0.5775239514198839,-0.08426610934794862,-0.12736602393479296 +-0.22590771746193705,-0.18356110858303698,0.10716366810016825 +0.8948089566056385,0.1387757687457506,-0.06479962113819376 +0.932097000856964,-0.05651838238616877,2.6298455510812557 +0.6823831876975336,-0.07565011523406506,1.447620996811319 +0.21007824855548296,0.849794549256939,-0.13218050503939982 +0.19169979891707017,-0.1375632853382307,-0.149103072288713 +0.33552290856518385,-0.0879439845586065,0.8614008730146341 +0.797088600861797,0.09740677126747688,-0.22900973628435045 +-0.17732573242274408,0.24181170275264374,2.739149027098105 +-0.15461371516046774,-0.09564736690789855,2.237634582091678 +-0.0816029683580676,-0.025876062640683734,1.2962482217674907 +-0.15204075835852202,-0.04329452814891874,-0.04154184287779422 +-0.20014567196215796,0.09195987317224963,-0.06097906899431879 +0.04297926383161638,0.0717585987127019,2.086723850935379 +-0.19579686952798006,1.0597707586333724,0.6368596640272549 +0.0760316356267885,-0.0999685419253995,1.1946833692542014 +0.7418268046367209,0.30345527409032413,0.12655016808756253 +-0.07183436595744055,-0.21446314400509783,-0.08470973769002826 +0.15580965375428368,-0.17209616875291836,0.16687856838213705 +0.038520220636902414,-0.05188032789379052,0.32734288424833824 +0.763768613524467,-0.24230184418610984,0.5017124846703116 +0.11182027171952535,-0.19069474954602406,2.1019797921297165 +0.2771604387356813,-0.007568113860225267,0.14243178824359537 +-0.21267788121124845,-0.1329614781918088,0.5822911279617773 +-0.06869900467648113,1.2251528574994786,0.4281630406955915 +0.6374623070904525,-0.21455386675868984,1.849840632181479 +-0.1300860573823857,0.09740967740172901,0.5465498887663505 +0.047460944528368965,0.032138180011788586,0.1832369805650088 +-0.04193233396322166,-0.11610824872221043,0.024551681820418725 +-0.22189666744414166,0.28334887026168665,-0.2404525724945597 +0.34405894800040326,-0.2029811268378145,0.16554712142163902 +0.14811825450118593,0.16727846282629716,0.45976668992851444 +-0.012499479402902025,-0.14251991083005106,1.181963602858726 +-0.0038043029358501845,0.103239870284766,0.5580875526103504 +-0.21969595890392038,-0.11012310373212189,1.9619017666976553 +1.06412713783059,-0.10038690521037211,2.468477722749897 +0.18459387775468383,-0.15361329738480262,-0.061232767260550186 +0.7941102678858354,0.358633380069611,-0.2460191580119041 +-0.16786408307860526,0.17028362709062572,0.14531822780705778 +0.23308962963356095,-0.009172407160974588,2.2216777991509162 +0.17656478399181863,-0.060743984949002794,0.8202894236209284 +0.007011208148784198,-0.22903749169905707,1.2922042352199044 +-0.21792956795436402,0.5039297093054652,-0.12064530167895662 +0.46613998970410686,-0.12661871111812942,-0.20737404108829433 +0.9015993690285804,-0.0027383813611412122,2.1501901418256453 +0.2923891166807714,-0.05420157393928596,-0.23651977525755635 +-0.1785207651227343,0.09384688120830331,1.1364974052455428 +-0.03147771618420353,-0.15311864765678665,1.759719801223378 +-0.17662802310902181,0.16283668759661624,0.08257187700591068 +0.03701098054540408,-0.19070433441506718,-0.022780848987537045 +-0.23200219487154894,-0.10759619424426056,-0.023602642146471647 +0.048838962852832346,-0.07230732625452566,0.3121524107930358 +-0.1929405844081173,-0.23881261834531356,0.055051990814967144 +0.04395589896959573,0.1547906335009862,0.22343221125641233 +-0.18212803322110005,-0.06515349903631523,0.6861853739661435 +0.5866722855858841,0.39879701923252997,-0.14079059935725202 +0.1891581422760184,-0.15617060537639832,0.003966295791606733 +-0.2093443813212429,0.15719060422247422,-0.24140019743070906 +0.22983473233470703,0.08928438055511817,2.4036670319120996 +-0.15886273532849535,1.6956888686283913,0.909404285248536 +-0.21975841848755956,-0.037870900801572294,0.4360739522132613 +0.17213950985960552,-0.1985197128320332,0.22067467826679665 +0.10572439867388683,-0.13072076967874297,1.4585928871347837 +-0.2133923001593018,-0.20620658347481383,1.409169331811941 +0.1264529016338482,-0.17212383662073147,0.37936909096776306 +0.2528615948227072,-0.17346980074448978,2.1278724435886636 +-0.09323333285215851,0.03131060012092535,-0.15924791770686073 +1.08142766791152,-0.1817185854668252,-0.14610815410189182 +-0.1789562112505645,-0.074954949547694,-0.18677457346008056 +0.11267324524921424,0.283087795277989,0.3076923927352285 +0.2818418824629483,-0.11429146020590869,0.4014072207873922 +-0.0030470237223486907,-0.18849049967411327,1.3621412522720573 +0.18195051683535735,-0.23672681659240397,-0.11743593582952302 +-0.10262716388214244,-0.2177578391285089,0.6645260946368523 +-0.14686295345543238,0.19137062623041418,0.003648625727856847 +0.2859326194970485,0.24469173615752943,0.5413008056064711 +0.3846704085904491,0.0764235706049256,0.7350813594373876 +0.6685835495431539,0.13281826993927115,0.7422617831785217 +-0.10641582069415506,-0.20762537259947358,0.1950040936532389 +0.820026823145499,0.37289552876852883,0.7700495301314383 +0.3321747093770554,0.49618814719882487,0.23182294126014397 +-0.07697129078117104,0.660634649275266,0.6843597820218652 +0.10287590211363878,-0.07428858992864532,0.11856586316922674 +0.0020232909687130096,0.09704490530177157,0.4783436417028497 +-0.06590970322442372,-0.24947603412212233,0.06112836005586819 +0.7120769266184002,-0.0224632282163838,0.7154835765748474 +0.35663602838249897,-0.23809749113412024,0.36732764819493446 +1.2434395075581741,0.024643395520223987,0.3925322180018862 +-0.03960315474653267,-0.17327045674992825,-0.11693291471973527 +1.090399227601417,-0.002646774156427778,0.48598022254059603 +-0.16989173424711712,0.10150986344339324,0.6974947646096419 +0.5629954382657584,-0.09536289228735187,-0.09608184886250709 +-0.23243525655009745,-0.20388960223608293,2.886105519225731 +0.039889710971255876,-0.03604500559199411,0.11416160213205157 +0.3878492903254621,-0.024736902990417337,-0.2474071536534659 +0.7238566983234695,-0.17408786618571556,0.42735628443337625 +-0.24509719517984213,1.06743916784651,-0.07112644069808852 +0.011786354607188465,0.05122436093633981,-0.16205256014808017 +-0.2112799799079998,-0.23559709272593404,1.2636955519570634 +-0.230096476055202,-0.01646337838827658,1.115223824289461 +-0.17625800775651473,0.27168175230969915,0.5022757815982783 +0.3806322347503033,0.7603961801872361,0.35292368893392 +0.30154684587391256,-0.12166393218452773,0.17985559225949582 +0.13546809965544443,0.040579344465747014,1.1203861945460993 +-0.03166274486548343,0.11839029822925307,0.9129955448924003 +0.0654263172081116,-0.20938495599504442,-0.15023687898464658 +0.4179030517193173,-0.24993146145659734,0.644860563501495 +-0.10474810275061947,0.9317471010371425,-0.2120509758273635 +0.14170832421844537,0.13937205444578987,0.6446825996178364 +-0.23968336347664088,0.08826949024634778,0.16107072477402617 +0.3123477004071995,-0.02676929692368546,4.522122558423935 +1.8151159465885418,-0.22762707880633784,2.3094015871759446 +0.0680092107442436,-0.14760349971939385,0.4524858286426311 +1.2924464713736479,0.11376113661953086,2.446780274375377 +-0.19888867112461223,-0.016207656144677313,3.3143047498127842 +-0.0653525227295513,-0.08562772826827153,-0.23282405035113374 +-0.06074467623280155,-0.0678301198939685,0.527973510893374 +-0.09746968806789319,-0.15343860161377001,0.2153696175343301 +-0.1261310386542306,-0.1002070215443518,2.7084608312930087 +0.10162647585513623,0.3497855837915763,1.5367441082684217 +-0.24502670628368206,0.21218447259630735,-0.1517826631781118 +0.15159708935497335,-0.07632144224291365,0.4464944156706716 +-0.18301384207668198,0.045637416910510265,0.06444226212100101 +-0.13453210565908882,-0.12128034315145514,1.0428195710245955 +0.8245764219374727,0.17548783119804373,-0.012876138967330225 +-0.21194793863250383,0.1779806711469583,3.863421428040361 +-0.19367483274866742,-0.000403483855357073,0.3772461155449701 +-0.017690621492452457,-0.043875985968436754,-0.20561855560943534 +0.8766257621149136,0.21467707816612636,-0.20966269121179562 +-0.24470112436169958,-0.05362250820217185,1.6995644429853787 +-0.07473046146156428,-0.035666071036670466,0.44312357470502484 +-0.1807244424495448,1.148478233675014,3.13712851585558 +-0.20961975251816892,-0.1813285230166763,2.237606933872855 +0.2691519631173718,-0.05872736537093176,0.36652214400910954 +-0.2357723993350555,-0.1524269140531494,1.0360622164151223 +-0.2340066929207922,0.07358426407035501,2.457304945930863 +-0.19504142427077,0.23143663644799534,1.8089638064970286 +0.8171328334652346,-0.2238620907922484,0.22014038439301992 +0.6210724358064297,-0.15229843894034312,1.2136812487494577 +-0.11993871444022278,0.06101770815033203,0.3989130318681202 +-0.22111045803707963,0.029435541861888237,0.6826039330456825 +0.46792011510489473,-0.14387235925181308,0.3179844551575648 +0.1638471480192174,-0.12223279562779238,0.2288472267209487 +-0.17339135462323285,0.09491764519887896,0.1611520408627884 +1.2890112305242563,0.09761228083896245,0.8529990387996715 +-0.17720503002491095,-0.08110505945552932,0.3438307961691557 +-0.15457822003844984,0.03004167923805323,-0.02447177362814651 +0.04110620369464291,0.24955314119886546,0.5844362611359758 +-0.15228808574923602,0.053231091917383844,-0.06879807578320007 +0.17558708753859376,0.05456589935276274,-0.18987576907386705 +1.6836455149117122,-0.14800975800340127,-0.18590981277239826 +0.32987352357981736,-0.11671753517614133,1.5944884752017698 +0.029175487890725826,0.1610210032674057,-0.10109222547576371 +0.8369665499450487,-0.22808719109136794,-0.24454947993162435 +0.4628201662403968,-0.2285532679268051,1.561613291234747 +0.2204514880908,0.06037943547978086,-0.009847641788747558 +-0.008866861711105345,-0.24071554305786516,0.6327432854250225 +0.40398586948751813,-0.15760083609998482,-0.052577531154784224 +0.26024081972162794,-0.05108544830254935,0.49012258529830377 +0.37271751162763234,-0.2063032076618256,-0.21939290498798697 +0.7562883274573,0.1965457437136966,-0.05335263384668931 +0.20273335227688916,-0.21801741667538793,0.09265367423719795 +0.24532711585563205,0.39076258182887713,0.36748561671661584 +0.36098328593337836,-0.13214544571546194,-0.17763026024740433 +-0.10355909163456589,-0.13382886541278088,0.676775523586432 +-0.2370807853615586,0.38388688829312934,-0.14409911795053967 +1.8310293566793048,0.20254604103337348,0.0352677286794586 +0.1090769432127377,-0.13068194962565247,-0.0019424720997757994 +0.25769683999430637,0.20368829527573334,0.61159780213024 +0.6207347512259456,-0.12170008518221151,0.9022679536654936 +-0.23763021499678288,0.03645558827887374,0.8986520022105859 +0.5719022562978011,1.3864078313011334,-0.12913152824888618 +-0.11569974930912813,0.5148514786900812,0.46965673674516895 +-0.12568049239310908,0.2933831611646568,1.3071990734630499 +0.2222611951096709,-0.13479153735387742,0.3281529375196178 +0.09970240576086647,0.22501599087128366,-0.007003217007517826 +-0.19420962907318806,-0.20767900645933132,-0.0308307983105732 +-0.22237587328758116,-0.03366652031364534,0.8111774010350872 +-0.13139844327933306,-0.05457472833080593,4.490817066256055 +0.09094687983461369,1.0158381176673943,-0.05629157024214643 +0.4315642685133888,-0.10486975735976581,0.4240207534594418 +0.08181403469162113,-0.20067300489485596,2.472978453657239 +0.6567408813740473,-0.10445220856489995,0.016057958746069523 +0.06945228458570174,-0.058111876278031216,0.6549010539925381 +0.19899010932084843,0.396337687226454,0.22989922690648895 +-0.1910690183638757,0.4926808592786712,0.30409072852402286 +-0.21599474438485056,-0.24036974484204587,0.24887583336348557 +0.1651381570352895,0.2743719648671217,1.3322475197632373 +-0.11501001907056002,0.09564900408178878,0.1699510459753868 +0.12503208014145467,0.5080846948666196,1.314905882903139 +0.26431982680614197,-0.011636140078728763,1.691713023792421 +-0.02225093016693866,0.14204692242767086,0.6282307631150514 +0.4400224547330188,-0.24281523958644388,-0.24776853641070845 +0.6135300250929862,0.03437696141649049,0.3380275686754618 +0.01007703319606934,-0.07351680557325677,-0.0539451537958989 +0.01770754785461498,0.012520256681054387,1.419632165058386 +-0.03695499577226624,0.7142774786806413,1.133525137357583 +0.13384155640304812,-0.21349298327417482,1.8522617600311388 +0.1611718250704876,-0.10443384540905762,-0.19459530322994317 +0.660937809042673,-0.07012870555692308,0.06101149553808627 +1.8823477410311233,0.04876394922175881,0.189982354156649 +-0.04224251920198632,-0.21552101010875918,0.17090283584468818 +-0.23285729710780728,-0.20231826390093435,2.6840247398948605 +0.012293171875136455,0.19999195245732954,1.3790358319025384 +-0.16809258767093482,-0.03124170733168974,0.11176360353088521 +0.03384117253037977,0.23019407251743518,0.13500152256931158 +-0.03628261660056342,0.6391476849640833,2.3801180225330154 +-0.18586162211599627,0.0023592808308680047,0.5735613164908786 +0.03353740189723109,-0.2383037420126115,-0.10442660702759765 +-0.11060205493150205,-0.17329047643640766,0.2896579720068193 +0.414959212657829,1.6675783451524229,-0.02328454869946822 +0.10108987683768828,0.48586778868835634,0.3628194918129851 +-0.04685768952673269,-0.017047654499560916,-0.18202629368253517 +-0.05433367824020005,0.1867198772674551,-0.06418451654895263 +-0.16499863386503255,-0.017769369708897143,2.2348300881359426 +0.23775281165418588,-0.20094434677344508,0.816883487905715 +-0.07417175539079643,0.2844685560686131,0.1282996699835739 +0.8008650739965448,-0.2215789717602818,0.7285654664291632 +-0.12638104151684385,-0.11532457674845553,-0.241224632705452 +0.08998667217718298,-0.035939271642878745,0.22324530818115523 +0.4123280587697331,-0.24634886049895374,-0.05674321878859245 +0.05682274569033918,-0.17184647497890523,0.6454137390006602 +-0.20899293919542244,0.2728453886958099,0.08333492922551061 +-0.21213764414033573,-0.24816664637876618,0.8956777455278482 +0.167339457058999,0.07167289461235843,0.554288791947313 +-0.12386253589092183,-0.09774741644233512,0.6490817598458406 +0.5341304510903759,0.23656774743535763,0.4028590352720336 +0.9665434406970568,-0.23539172004296238,-0.13344908455577184 +0.0599129716973269,-0.16921311390744545,3.0012363475064157 +0.35201161223411837,-0.22065002781508908,1.1595736367669682 +0.8512599717868776,0.21956378817849848,0.19059662810227573 +0.044776156284145,0.07334956533524561,0.2871636083903588 +0.17574889206422994,0.23130736547221942,1.0017729003512335 +-0.08052105658383854,0.025300962988336173,0.7864393076174654 +0.4908182461026688,-0.028990123740773532,0.11742734691167211 +-0.1843236947897327,-0.14884190265310687,0.23465546806303073 +-0.22538525493824754,-0.22989200024304365,-0.12380580449125853 +0.5711128549788033,0.5231672835708584,-0.19144877877794114 +0.013486069568827974,-0.16267449431718162,2.3150364055970947 +0.0398832461124492,-0.20636790357495916,-0.09698879093753307 +-0.05794759100484792,-0.0850249603674346,0.22083489076699636 +0.058201451240664226,-0.18885211318420708,-0.026653778966846037 +-0.2299359331301541,-0.22771975295205996,1.1308358142032193 +0.3298855498432465,-0.20008653908416163,0.21878976084862162 +0.07672012844055365,-0.00466660366045718,1.3207490184951565 +0.11078239609750623,-0.11160903824246166,0.054952579648130884 +-0.077930692556019,-0.20446427353855784,-0.11458535082807292 +0.11557436026499335,0.49952533069141525,-0.2103933825705284 +0.599132712283275,-0.1405340410037656,0.2467997846776081 +-0.10084867418401497,-0.15200326021132055,4.9344932897501055 +0.7643631873247569,0.4554466832121049,0.14762196456918547 +0.3504087618080318,-0.17105332341118662,0.664329330196729 +-0.1271921642597037,0.6772107426779732,0.4485090338759259 +0.04383378132284077,-0.1281201902764381,-0.15088805146550072 +-0.21805263195091085,0.01023929615898067,-0.0772108054690766 +0.26982420128419027,-0.21934437215820707,-0.14081190939043461 +-0.19085816947344475,-0.2335942209851643,2.350750102027786 +0.3031898919536621,0.2542282422584127,3.476605642687121 +-0.1827142476301145,0.6032252063449588,-0.05252680276684002 +0.29651062143925166,-0.001903641019506408,-0.21993171944641465 +0.2662286101614595,-0.07577871880106621,0.4410334233021026 +-0.17664630262968478,-0.13577485003217335,0.4492756602727682 +0.17642967495151024,-0.14561334832810666,0.11238928195767256 +0.0007508549615949933,1.4833504141288671,0.006279513209432597 +0.10015727544528735,0.22549304915943436,-0.12874926976522716 +0.30189356512357446,-0.17417467338889148,0.28407589872852124 +0.4129835437496381,-0.16870091882027421,-0.18982683466690572 +-0.22092723627717026,-0.23406607336749324,-0.08585765738740025 +0.07317203269228822,-0.16702522464722802,0.5000430001244758 +0.8463831712217633,0.07216274304977877,1.744676185008027 +0.3407641117058684,0.10115330236583975,1.1721977980410692 +-0.08165431994635472,0.11800423905627155,0.06561123245738776 +0.5014223987559333,-0.08470703097657858,0.2953277680169014 +0.08855702406099025,-0.2496033455250361,-0.033810477793072835 +-0.19001612517371153,0.032939359875255814,1.561590340351672 +0.04123585945026276,-0.16393655537998375,-0.08426267054479336 +0.16625811116547257,0.13753403658071178,0.0576750605303592 +-0.2338408851038069,0.40922524918810266,1.3011373013075564 +-0.07495359373558963,-0.14517128926620604,1.027060331410586 +-0.08854075073660916,-0.12912345451461324,0.15676512627002864 +0.22282330794543204,-0.18026381470942554,0.2722359841486841 +-0.18098664284277133,0.07426357172855613,2.4147082226500167 +0.1045190918052799,-0.14750631415357202,0.15557314827065355 +0.05066321392751427,-0.09988532406438572,0.5350863640444539 +-0.13932864021861274,-0.15559164166521816,-0.11052601242192736 +-0.17099436830389148,-0.19427279065918202,2.7586570540139213 +-0.16863196321551777,-0.24153965934550164,-0.038774682639397234 +-0.21810252135416922,0.09178743130863576,1.6296023442708887 +-0.22514207091507127,-0.08694819133750761,-0.22654588135469791 +-0.11867806716738516,-0.11532627580653151,0.9662268794615931 +-0.23340614345468488,-0.22985098228145603,-0.09088208688099284 +-0.11029896213922774,0.03892267310700842,2.472400521581689 +-0.21984742343944635,-0.14322892938557158,-0.16718501578846706 +0.2944896196019283,-0.2213218480537272,0.20165655981504876 +-0.16743898933059748,-0.00592643249317798,-0.2468665442595662 +1.5201609188371812,-0.21847593055324674,4.073878560870866 +-0.2281815158366644,-0.23186284058994788,-0.052461772705523047 +1.943484133808465,0.34041402664193743,1.1776593500074308 +-0.01695818685930725,-0.12558860879905806,-0.17864875561964555 +0.044251233728383355,-0.19626636523083157,0.389952755723184 +-0.07582995324800754,-0.23006548661095663,-0.2421309129093352 +-0.05476516854025995,0.21050539124847156,0.9539668094304019 +0.08726737426260028,0.26113050811491023,1.9294360900064849 +1.1133492742781679,-0.2434271243005142,0.01613470538606715 +-0.000353523969713776,-0.24830194386674415,1.5683583418285691 +-0.02526760348438198,-0.18608494318692587,-0.2043578820641424 +0.10265696647509714,-0.1427769404015382,0.1819565746554807 +0.20134608257044062,0.6598870047299851,-0.18419267636618358 +-0.2472078118170131,-0.22583554743606316,-0.24044218123643932 +-0.017940267656901404,0.2991270463107759,0.6684535806141609 +-0.1474798983325584,-0.16353185435843998,0.14706985704800957 +-0.13172996364311962,-0.1452422546843057,0.3157258019762079 +-0.00818663046462273,-0.08158678640989966,0.8546176235160063 +0.23826448729145716,-0.2062653269316293,0.13464706367455997 +0.027749940439664056,-0.249039159993963,0.05876603125607416 +-0.004672938509166336,0.3585679602643933,0.08806608613178446 +0.11253677720803718,0.3657794436686138,3.0007826689450905 +0.5553170377799941,-0.12047072071087245,0.06951924507612367 +0.3022365555709122,0.07668332778595427,0.14201220111142837 +0.14455517850478122,-0.1761672161684294,0.31324107767589193 +0.9053468750264282,0.20827601092684056,-0.24253975345390463 +0.026980121297001836,-0.08098223407909724,2.3780144649569133 +0.004138261863107284,-0.247936265624727,1.4664048955366351 +0.2898949438352214,-0.010886351720239162,1.9673622962650983 +-0.2356344231648994,-0.08837823365749498,0.5831291702757866 +0.5470264391372791,-0.1558740063166535,0.8396465288617476 +0.06398809976838565,0.12743323564069559,1.2633640288168275 +-0.1674549581126964,-0.18412134284832044,0.8375256228454742 +0.8357718558121223,-0.246012914565054,0.8835423305986219 +0.12877841377021387,0.04593834814086706,0.17794425248437218 +-0.0040456636502318455,-0.13920581961765324,0.3507592076165835 +-0.19045111292341915,0.09703920936251992,2.1922718270724935 +0.13727229547966752,-0.2258020134363077,-0.18705200641835493 +1.5713787549385627,0.4705318513118545,0.30875127244221445 +0.49291166752514226,-0.12665892344714624,-0.03733733529847158 +0.4694554189192329,0.30965089374552557,1.677925103579083 +-0.12070501671469439,0.004716175423619573,-0.0855690165026603 +-0.062215115521069675,0.33278623809853625,0.2505694291804217 +0.29453808875802945,0.07692066600443348,0.8359230462390497 +-0.22077042607843372,-0.24861772964787227,0.8064996378719231 +1.244355741456966,0.011402888766872343,1.034149462422634 +-0.15863392224205103,0.020333043252821537,0.60050528472065 +0.9857900524332754,0.6054976706049895,2.5450944062904095 +-0.026533251698994287,0.483706800933721,-0.06167024647629857 +0.3921671337585316,-0.23472960367105417,0.39981124100775933 +0.04713581435568387,0.2777454422998845,0.35073122107436117 +-0.22759627903428514,-0.21922238661801247,0.6478764271636154 +0.23825184646855946,-0.03951385151864931,-0.2066227968992408 +-0.19612405463297905,-0.23184426784388787,0.2349269287204131 +0.6257738783693211,0.9261709737636925,3.36226399564967 +0.14604772393408522,-0.232710452455059,-0.10471021921243834 +0.1695718136871434,0.10128661264753502,-0.223666504575247 +0.537970698084473,0.2199791181903059,0.7228494363945971 +-0.15876138565361775,0.1822714386091659,1.8499849645095492 +0.4389336275365816,-0.16514772998609736,0.26342234258653796 +0.04203111798045045,-0.1311451499521277,1.9980955455069975 +-0.13194079716623283,-0.13365438870503588,0.13473147298470195 +0.9906015340189347,0.21475532347512788,2.2072244009294915 +-0.07661242471843774,-0.10700895685302203,0.8785526844669351 +-0.14002032474315562,0.14045815530842448,0.27780260977157856 +-0.14216414243180814,2.1343767406140275,-0.13874949816926038 +-0.23259710967991407,0.03297617062049718,0.05738605930556279 +-0.07905467186734841,0.1777410550252817,0.5233865624155738 +-0.00027144362736153393,0.45726236912988194,0.9775540045159137 +-0.02770565462209293,-0.0003628612535925557,0.6967846987817028 +1.451343306848319,-0.13144471437207744,-0.24935000631844084 +1.0121565401624464,-0.0689212249349847,1.524833825896934 +-0.05299138433247422,0.09064659689073545,1.3235843311930746 +-0.06338457462914465,-0.19606613161763353,1.6031733945156372 +-0.21461219641252394,-0.06855517186252158,-0.12004225172282648 +1.310529596659046,-0.24663432825312764,0.2588418191312305 +0.10026060681696042,0.0848371364103897,1.0317480297598571 +0.06741219749863203,0.057893584589668756,0.4174108813549888 +0.5850776085513142,-0.2400111283586282,0.037194672558445774 +-0.21718167702648408,-0.18505058456494772,0.27745630545489086 +0.0881089915006345,-0.0009702355242457716,3.2405842326947183 +0.35706579030728536,0.4463792950876174,0.23318603953861106 +-0.17807879392775294,-0.18210487264036632,0.7929988789115745 +0.30036289771814617,0.18888440000238038,0.6646975773367463 +0.39147929472238396,-0.13447801518989838,-0.07005356810880992 +-0.013774438724720478,-0.05227805132706531,0.40168799251322096 +-0.2050313818617928,-0.14910452483334166,0.923722270080813 +0.12207810677965503,-0.19679881625128365,0.3219150424206222 +0.09035431445303915,-0.17414067030306174,-0.05134594270930504 +0.4629162848079281,-0.16532234366018356,-0.030947542072359363 +0.287356263563159,-0.014730420215623985,0.4089602594406683 +-0.21446972761090172,-0.24873833205920542,1.2219550431336235 +-0.2436408297773735,0.49873808813564513,0.027524216686812708 +-0.24690250145867096,0.43201856026723107,0.2617423018624244 +0.8192172548109355,-0.14822004956609214,0.49040609679124336 +0.18832477962497185,-0.21732918144473243,1.050766336848069 +0.2175368702552738,-0.04308196075228454,0.20279175978734149 +-0.10327181967884921,-0.1543324567850807,0.2885288740425278 +0.48501688050325975,-0.03735704744078122,0.5798777290678581 +0.35228349937753467,-0.20072376989379592,0.08864493577707888 +0.0020031324583209553,0.18085992333932388,0.8270599526128102 +0.01625494323347726,-0.016852560098585295,1.107618677336522 +-0.14491708212222992,-0.1965119239955799,0.022820274589912592 +0.9555581197245993,0.1787963598989939,-0.1495485932310195 +0.6159085879011781,-0.24969215962270497,0.21657664424852524 +0.001175376546558582,0.09441380527448462,0.9271687215211146 +0.3832584807588929,0.463483637408892,0.23508845176000065 +-0.22181309401402693,0.019064428344737594,-0.06114161502639459 +-0.13528002023883212,0.697450285885907,1.1771338737882617 +0.4411922575188588,-0.18751797682533344,0.4624996594785501 +0.12615915257525168,-0.1507692720529336,0.49653629867918225 +-0.0731955627837895,-0.09089152557467758,-0.10988124783830455 +-0.2350767522790681,0.6360425782006418,0.8061653899764183 +-0.058663613373835494,-0.2249862446367738,-0.22013423274934288 +0.24153021516927525,-0.22213067920765872,0.24506713487605236 +-0.15893674027461324,0.048360148112061074,0.25775141073573915 +0.15420171680114647,0.2659132231450695,1.5391343694525175 +-0.2199257636416333,-0.21102116122213682,-0.02450304679941287 +0.024101936384285816,-0.19311751959536988,-0.11363889786888007 +0.20594893585300428,0.0454303917792685,0.24426303415817158 +-0.17765559388413416,0.06958049935782912,0.4224320919051142 +-0.09721412329142243,-0.05999249938803236,0.7250879286666069 +0.015955987978844233,-0.2228256158861464,-0.19767058835173887 +-0.09846538396122834,-0.07781007331057763,0.05342281578307262 +-0.24701034208857875,0.07433789325357515,1.4634557723531367 +-0.2046923009111552,-0.1511909203175672,0.36985080942782333 +-0.1628533121101613,0.5540843450267384,0.01986359537350907 +0.28953807258091924,-0.17862639423328608,0.7718562335215331 +0.15255109077000223,-0.09771136999956104,0.06992180084375904 +0.3690741389875758,-0.17708047387665293,0.17208228998537856 +0.6366882815403647,0.4238121333428553,0.40450155998891135 +-0.1165207228738725,0.2976914381455721,1.9630859424329978 +0.2769496224634308,-0.09137554104377993,0.11333957381885496 +1.2813391640765073,0.09261968512113433,-0.14304069707111483 +-0.17844568533715263,0.02313692096610026,0.37981118511065015 +-0.14015718104537866,-0.05877635828492547,0.7884458962543859 +0.15749021480782094,0.116844621791664,0.7868249978467701 +0.6448671008109987,-0.2135260251294154,2.380665260263684 +0.07267127711476029,-0.1873466288440274,0.884192755057841 +0.5266823896756794,-0.24971492351725913,-0.20772242059472418 +-0.16985874063544815,-0.1982131838432144,-0.012048227205643858 +1.194221542007683,0.004136476423027002,0.8458981597003008 +0.07188863207788998,-0.18844516844270914,0.07902387731673072 +1.4626891525880081,-0.07560791887502635,0.13478895756752995 +-0.24101121136923795,0.2418352609734561,0.0004703914815255561 +-0.1941087352323727,0.5149271993918187,1.2042167119665959 +-0.1407616320968238,0.1902738108667571,0.05533849796720708 +0.16942874952697984,0.006789956163199828,-0.1134828342514562 +-0.23835212278842058,-0.10095462469125735,0.10404354285450351 +-0.22936191175146667,-0.14597342750893516,-0.1185857368025734 +0.09458485872565031,-0.14176389472370993,0.019188675260929433 +-0.19842258462140902,-0.03995756171789516,0.37908155444678016 +-0.19846084957837912,-0.21983970353411186,-0.1912288392254398 +0.5649851330934915,0.057679498329072876,-0.180353557583058 +0.4184901536919198,-0.11549768601075097,1.535146331131601 +-0.052454937105270244,-0.05098972487772707,1.4030967832365555 +0.09089099183054733,-0.05870308295599799,0.8007147282966807 +-0.07697184864395587,0.03012986404653406,2.1919389188976184 +-0.18199068363658238,0.1828270192996898,-0.15923565092018266 +-0.2465319690852895,0.03584896849093844,0.3959743864267592 +-0.16748761696628647,-0.21736457057420983,0.36462669471605347 +-0.2250431164835918,-0.24153425239277906,0.03390011677157212 +-0.08327065866370381,-0.19569592239894457,2.018574125275944 +-0.15491755130864926,0.11461595806090463,0.5459977232818632 +-0.09102779751666873,-0.18019376877285367,2.2566845385174004 +0.1878575235778257,0.3090316801052516,0.5037271819671725 +0.3195691471521902,-0.23862548482608847,-0.12258414594274522 +0.8339324140831197,0.09733948152794919,0.7026764164855677 +0.23810585358952763,-0.045407598246260394,0.07908058299708798 +0.15445998595595783,0.36946295629868975,-0.1689094279644356 +0.7357363526825279,-0.1587426509158698,-0.24257890622801864 +-0.1311868127707353,0.0276183270347643,0.3076606024444495 +-0.08870313177690659,0.0030729565849604845,-0.12059124445252006 +-0.10185623792240023,0.1412028197689006,0.2528670346181552 +0.6265377760559896,0.0760057822542638,0.3824347132113971 +-0.24185195550436348,-0.0028021087780616405,0.10166720217381942 +0.37275050777653684,-0.13434823117831607,0.18228149789078624 +0.6483718269550572,1.1683302073350685,-0.05094607977764179 +0.4724842854555714,-0.19119650325507345,-0.16144966985350467 +0.14938460046741797,0.1510857603773204,0.32682997189510865 +-0.2375340067240582,-0.12281183009422011,0.45565444494221863 +0.5411758869146157,0.3785435819015325,-0.05876581174112033 +0.7663405711811309,0.08045925997510728,0.6498136782345039 +0.9845715995130397,0.27678960803533015,1.2409751550329824 +0.23152646312122965,-0.09102768595159014,0.4865261858255667 +0.511447483606912,-0.16849477783862218,2.1555442455408924 +0.4069323984192815,-0.12627912179331502,-0.02972572278776106 +0.1394599165828762,-0.15580704328772413,-0.06598446864374802 +-0.21726992337564452,-0.22270198273771272,2.0576043279388987 +0.837022857603088,0.2886989265685257,3.5946854699181214 +0.05195390478666079,-0.16753553886819691,0.09905420305345713 +0.11751225069992716,0.1009811368132405,0.48712657449229835 +-0.11584839318921764,-0.15035798742082024,0.4671983114091235 +-0.18601102743638803,-0.18836067955246205,0.27212734456731624 +0.13710659264275726,0.30973684429472204,0.38107477472734674 +-0.22962546683570437,0.3360122001012885,1.3984331582121512 +1.7562374149946804,0.2578853788407739,0.6168421913242554 +0.9113532499847412,-0.17226091134897908,0.1588139385238337 +0.3741587546035554,0.03323621183691566,0.6019989178741277 +-0.19209574234334253,-0.12109936915612471,0.47194883883309136 +0.6547500968310541,0.08474424362006178,0.3046260743030821 +-0.02441443002541291,-0.0959688030898159,1.151631927627317 +-0.22580043328733326,0.005340037982302981,1.3394063122287345 +0.597435098938619,-0.06950928614565133,-0.1794176320844163 +0.09010522963331846,0.30221194629816817,0.15540218049646642 +-0.1499005745622345,0.08073980944199222,0.3065108926312461 +0.16673754465478607,-0.1243116195504462,1.111987902731605 +-0.1770654159332379,-0.21136795314787435,-0.2001413796256061 +-0.10854771598187177,-0.1834483803775029,0.0007187018468296502 +0.42101094189405164,-0.05219193144821049,3.642532837831963 +0.128401866949178,0.1672133765493023,-0.03933476919990758 +0.5908307039490556,0.23503841631225703,0.8022212534664324 +-0.19629147700428384,-0.17677366882541737,0.019957148660929847 +-0.2226323529094069,-0.2471454314852028,-0.010307448812231002 +0.33071559686808405,0.01175864689296785,2.323310792925189 +-0.005879045416358836,0.292961792698083,0.037530824974708554 +0.018556411968768283,0.034217237369403464,0.3398199920988404 +-0.012943904309161591,-0.16112249354321195,1.7571860488686721 +0.0540405391300135,-0.08960963028048294,0.03094174299120489 +0.2815817565351547,0.26803809100057585,0.6545641957167002 +0.6226655194072326,-0.10332375071208905,-0.10117820888647183 +0.22942106606970158,-0.21357027018499333,-0.13393130102830542 +-0.011144274905970614,0.09901164108953875,0.3698643029462758 +0.1632869296917676,-0.1951141035518969,0.0859711452273561 +-0.2377248949465571,-0.09230258818339981,0.15746077584005186 +0.49852100407414945,-0.08871993549975965,3.2280402243443618 +-0.1312600285962664,-0.22610084782443712,-0.060280797016203785 +-0.19718508936593332,-0.23557381146986983,1.4755925041901365 +0.3370250404693196,-0.049641190239215344,1.259637783929281 +0.3810903421610552,-0.22950733291917996,0.5626573311220088 +-0.2427521741502429,0.37804841371841913,0.6735302973790154 +0.017524159871919853,-0.08042734862856324,0.007257907821276055 +-0.04161105417997646,-0.14082193491320838,0.0772523526805996 +0.05556251148631963,-0.000519600348780791,0.5336963363736583 +-0.19271424900448522,-0.06516186903401938,0.8986022639033378 +0.3593405589461839,-0.08833107100566528,0.2831990287657806 +-0.08759337281081647,-0.13491380136338754,0.07586872914052656 +-0.24552854548804415,0.055933881301370336,0.1507621922360733 +-0.19823776085467665,-0.19708534540046235,0.3416332878042989 +0.44511477429990864,1.0346691477440004,0.5540770449822664 +-0.12197783174930144,-0.11885480672357354,2.223765403602537 +-0.19532877670596907,0.2511792926667126,-0.05435931789099213 +0.0640178625186843,-0.1776822435749592,0.9566242524665531 +-0.20969751058554442,-0.22854260709848076,-0.10487302127760117 +-0.1480494176211945,-0.18116980522231854,-0.1466813611859379 +0.9027559327695567,0.04182873147542565,-0.02767929587403098 +-0.20980682146830126,-0.11466591729041431,0.2797810935555526 +0.1888044019761594,0.06371626426381205,-0.020414909015515265 +-0.08448908196796831,0.7427769894061923,0.5068834861176682 +-0.17660541642041888,-0.015374251167839748,0.7400689363020835 +0.15507528864919423,0.012848219303581265,-0.03928213648245679 +0.11821785347699737,-0.1201781495476508,0.342494041703587 +-0.17067241271833292,0.19824291364586116,0.0013636315094179285 +-0.015578796082633156,0.3325078190613935,1.865234028062178 +0.09826703520054875,-0.11194072361476579,-0.08629786587033497 +0.22765311309460518,1.0349964500443285,-0.08461316547213618 +-0.18826181327350106,-0.22896023030987295,0.44199240736573886 +0.13135381044821937,0.5279771371198382,0.08813576160642417 +0.28485969602988115,0.1405921342885849,0.4229106831264998 +-0.13270043534527892,-0.2336707494257701,0.11554886439817952 +0.34334704095540103,-0.034449808907141805,0.6391558944736958 +0.33042686639289887,0.09663174756559517,-0.12335273416553272 +0.1679465374462984,0.1672070565938935,0.23849828680920904 +-0.09623706084540673,0.05007515086129033,0.31069310910575065 +-0.1595577358387411,-0.15629115375128055,0.8263332927312432 +0.7884502264917816,0.27003248221357645,0.35306067993274326 +0.8786773595819932,0.05150432681609868,0.38095889120713244 +-0.16371874864831867,-0.21172766455866493,1.1046779451280622 +0.835501105410833,0.1328314007695235,-0.18859943603051998 +0.3733982725272673,-0.038187700084469534,0.007637063199587846 +0.1368526605906601,0.20588049469465464,-0.00046814618025614596 +-0.1511172581205788,-0.17771050171778932,0.8085484711068542 +0.061566239212513085,-0.09320523662446709,0.5357492491671354 +0.2879408903439791,-0.1373044890238691,0.6958111503673442 +1.1483064925783668,0.005716250010733337,0.24138575099726756 +0.44254435239284406,-0.1885402645757727,0.2889389777509702 +1.5133908194873327,-0.11095934814638242,1.610919750387014 +-0.1260271558580242,-0.16439655265100767,-0.22812177165843658 +-0.031507591888743025,-0.14140937231261258,0.31604885664049387 +-0.16337024991336235,-0.06353902586501803,1.1288878956563948 +-0.09125983849574726,-0.1983056207586664,-0.11625397851937883 +0.35270954284630307,-0.09860012197429385,0.1386183143244022 +0.5647679517908609,-0.13924496451092094,0.6374056202690486 +0.15311300434930247,0.317996202520508,0.049282261461633226 +0.5323441058877989,0.11187722799257643,0.30766505479093986 +2.6172832276469085,-0.17401554096371336,1.9271232894532475 +0.28432580472893365,-0.2416509681262418,0.6947118934206984 +-0.02969755735186977,0.3605362854933164,1.2357257877156846 +-0.01780610009139541,0.1620583724641661,-0.08091758722851186 +0.389511715004221,-0.05561661750347041,0.9105742427916863 +-0.2036391192288451,-0.2299381731447622,-0.2481720390960453 +-0.12079061472800703,0.5814734887706796,0.04437241763365285 +0.7817183301610156,-0.12929702926374442,-0.16996726913009047 +-0.08128612259641996,0.5785898013462868,0.2645809935291108 +-0.09099643951718706,0.013938263804300022,0.09519736236124904 +-0.2488817466727075,0.613243064722493,0.25028341517691377 +-0.08094525198415692,0.7480007393144803,1.6144543419952537 +-0.2370281604535987,0.06387907684889887,0.5234411954292979 +-0.09161834366238489,-0.24863055242184254,1.1932980659107983 +-0.11079813121521764,0.033600192363313186,0.4669218481728169 +0.19668598869452464,-0.19703770617400962,0.372013256075862 +-0.059262411442111695,-0.012713671247006925,0.5325498749454408 +0.08752790922396458,-0.22040649751017755,0.7268223769277852 +0.07300376102260342,0.5746084101545641,-0.16452394748884114 +0.9874596507272639,-0.05948256985047301,0.5988828931698513 +0.06426697362734918,0.202370319306856,-0.09137861694728716 +-0.24162220122416722,-0.0653362101269411,0.33363549652283553 +-0.2307593447318017,0.1903149262886129,0.1648079252533729 +-0.1177996890783094,0.30167226446920836,-0.023651366911382282 +-0.24343032741242437,-0.1643309960692795,-0.1927749643306125 +1.061533451057696,-0.040305893660593006,1.6857068083557294 +-0.15782041187901993,-0.19433391413149304,1.4896060852107191 +2.059422218140006,-0.1026174669588042,0.2917639261450987 +1.0261376888295346,-0.03517654491175412,1.0576511128764778 +0.03460218294032896,-0.18980892397358606,0.7907086517091622 +0.4399611753393585,-0.054700525080743384,-0.17447809110240023 +0.24917190003844525,0.003885439655892664,0.6097812871346958 +-0.2303687450097919,-0.20538818341136533,-0.013104356203884587 +0.576304031749296,0.5888043916506502,2.8539494306670545 +-0.2259376032595383,-0.04828449624391323,0.5375349537180183 +-0.20744097801889733,-0.15100988633741708,0.08504766854388579 +-0.18710761864341335,1.3726125298414773,0.004767857911889661 +0.2968753288710544,-0.1010798829663396,0.014571655309776388 +-0.17179957973660287,-0.04824018718901413,-0.08869943491423318 +0.1625558331238222,0.1974209015952731,1.092929133778433 +-0.11302634715732263,0.8020619277068031,0.5903345342979114 +0.13090443976240895,-0.1778526728862862,0.6582800964593923 +-0.12998837338834654,0.08743382824480872,0.7548950908421499 +0.015864875921401844,-0.21788566446038118,2.367989463992395 +0.06242115062007758,-0.23569757989113016,0.754075533922711 +-0.06120501577817353,-0.06630481570825117,0.2424771611981862 +-0.0005090874554484481,0.025077282812391355,0.6528279760925935 +0.1519568806676304,0.02612831245285213,0.43968679629350815 +-0.07355315413163616,-0.10284701724336634,1.3404506216003655 +-0.21352025028717495,-0.18478332126503605,-0.17438377619461748 +0.047465852324936664,-0.13660616144144838,1.203282439875511 +0.21957933317803607,-0.20891785925349302,2.8433530082433265 +0.9089349476737321,-0.23256658049160517,0.1554251177904613 +0.5515679394096169,0.07607481664425586,0.9139543810507369 +0.8181552699781764,0.4469649777662823,0.2442415498148065 +-0.10422535158058127,0.45165790841139286,-0.23543915784909222 +-0.12033169722124329,-0.2398385706133766,0.09577380375674577 +-0.245728225620988,0.1859586578379478,-0.00010805609070338451 +0.29875253597211704,-0.15933665054602636,-0.19060036123963117 +0.41536148360108593,-0.11902615768760505,1.9994689225647488 +0.16910823831497446,0.45641964347878816,0.1823437710459464 +0.00793013768057127,0.07961710474316785,3.8621249560480653 +-0.12999859133497466,-0.1714811593619689,0.0882086433563295 +-0.24306282946214033,0.5079914774694803,2.3585672709625003 +0.23012805439899625,-0.23475535609122278,0.906798767336588 +-0.2469326537494665,-0.07695910268875975,0.6533645389141203 +0.13111756804503039,0.13848654033196212,0.3935413353598791 +-0.21253993809684682,0.0077635423346569254,0.13433609836713117 +-0.09398459970668896,-0.09279256121149104,0.06229712576128793 +0.12750332763547517,0.3995799510769711,1.3898354849469838 +0.08438367320582696,-0.16491523619266632,1.9731274548238806 +0.17343768472677662,-0.2182799491524656,0.3126794039911328 +-0.018400018128061496,-0.12700621154999117,3.427582563895418 +0.5274834723300713,-0.23229151859487887,0.6925321259242712 +0.28561700582879457,-0.05360874235938734,0.3589678122713834 +0.18907911268653493,-0.19385323724142162,0.50663971990831 +0.8860897524457467,0.34251788193558375,1.2604043162880971 +-0.028835133965161297,0.7432708838108844,0.2312912462112396 +-0.11106968545284418,-0.05957979526964163,0.26788802124343625 +-0.20450212273485127,-0.21659145609192276,0.07355072350524361 +-0.08803598072139823,0.33007728629006017,0.2638750311986853 +0.39334346282216526,-0.020236985140092673,1.3744181426399098 +0.629489261010241,-0.010856598654863436,0.07363745042804909 +-0.24319536514222415,0.07998145288496533,0.8059692432498835 +0.3275850905792197,0.658122665945348,-0.14167059456857595 +-0.23377034976467465,-0.1673350123345822,0.5757257120280688 +-0.21681926813035945,-0.13582653031461084,2.8891374326467534 +-0.21878803977438782,0.6321265572028104,0.2763185397262502 +-0.0369033637382436,0.1337061619551967,0.24750867689292322 +-0.09867665293619021,0.0922021844512258,2.5531604309748963 +0.43036071797588815,-0.13504978254509398,0.3127797365933379 +-0.1227606545509678,0.21250870649197862,0.3559252930782282 +-0.21517950092795884,-0.20652269514688215,-0.2426423890181622 +1.0860512935647677,-0.07798896735751623,0.12388827439884909 +-0.22125799744057623,-0.07486220103453906,0.7371407971781199 +-0.08757778639752983,-0.15229137411302263,0.15039716819204285 +0.06781292305024633,0.11307389585808147,3.614642650537414 +1.4791051972431886,-0.19065767713847473,0.8307884815116127 +0.6428545766531011,-0.12966289867380765,1.2349074419308959 +-0.007472605922079434,-0.22820838365191282,0.765368222686124 +0.2859773972835924,-0.08753869183724686,0.2110397573772042 +-0.140787793982037,0.3086820939811543,0.5236352260508956 +-0.10316172113842123,-0.14344938785538078,1.7422899182462301 +-0.1464250219615381,0.10353362057308274,0.7347812922200753 +1.0815323892457287,-0.034777965150871865,-0.22609661104809795 +0.5155660241763181,0.15467070062366972,0.7355597532514888 +0.3321061180830184,0.11862692989237922,1.2380529928949109 +1.0301252530959664,-0.207478920101253,-0.2013484853808011 +1.4582744015649352,0.6242037572423041,0.14152798889351248 +-0.2377658176113987,-0.008135249379345733,0.29116984718243766 +-0.08094691027001971,-0.09503695931741354,-0.21527746491081376 +-0.22142362363091694,-0.1811462660215645,0.019801066424384617 +-0.20138824927773144,0.631836255282715,-0.2196420993957432 +1.7093622278755911,-0.044128254580328125,0.08219492776331105 +-0.13050101955673732,0.12155839726336054,-0.1656697249002874 +-0.1467075009385052,0.25858987601117567,0.13747595483134423 +0.21408892069670793,-0.1815718856765095,-0.07096627028693364 +0.11861047744166459,0.04004560152102238,-0.22520891034201926 +0.05087743053091587,-0.17083370422382763,3.7785168790005343 +0.5945097963572991,-0.13700308526871188,0.3347661183668801 +-0.019140066650455978,0.026133070979225848,-0.1212110651264349 +0.6141015798647376,-0.11444505395180993,0.9674594700753627 +-0.07720962521845881,0.019963881566916475,0.08504118658532689 +0.582080119355312,0.5851596012173835,3.644614697521478 +-0.19559213333448539,0.3316169958397164,0.13755717614364632 +-0.21201712548872223,-0.19092508442189127,0.3518057942687123 +0.037530051462968006,-0.14108889493028576,0.26253410982584335 +-0.23446885415337693,0.014377676221064006,1.360641669304794 +-0.03924969507212897,-0.21591227902738047,-0.20859103608432733 +-0.19844690611949825,-0.07762291512497249,0.3317812199698035 +-0.06386061606067553,-0.09972496398105554,-0.1706561080885195 +-0.22991277047858574,-0.22332677925713082,-0.17297991147977607 +1.6166691070559431,0.011130351176741216,-0.0027396599806225608 +-0.15702531500565392,-0.2242646187559619,1.939769260894641 +-0.02850172951715821,-0.20033466389080254,0.1214242216159297 +-0.21933729490671552,0.15196268697704174,0.769588880477132 +-0.06370483031228427,0.05080425110804915,0.17584005642313122 +0.18758994240979782,0.35986649883396726,-0.08707271166165917 +-0.08388910924153553,-0.10189221533597931,0.2604061524623207 +-0.13193163903976438,0.5668974548511362,0.6323703456003879 +-0.1341745084634372,0.3746673664707566,0.6682267422936543 +1.6269788048141833,0.04678266722426666,0.3503158788141234 +0.3605721485069143,0.07810225657466374,0.9578278393316735 +0.03475939966436925,0.07992684236952885,0.3043580012815238 +-0.1629524784527036,-0.1731391447181443,0.789515342762001 +0.09156775928772742,0.08654942180610392,0.0005322204032099376 +-0.14276629150880515,-0.24099734097059994,0.7630750782445921 +0.009484425856961187,0.08893695323478634,5.031174487203802 +0.8227756781087028,0.235478777205319,0.33032858733974446 +0.3356658741510439,-0.12310939477121752,0.5306498185134084 +0.29733883900944025,-0.2190579342960541,0.9269347158692753 +-0.16573897682098188,0.0018750689244683705,0.3053200349518743 +0.40161550183851236,-0.2222802104723478,-0.1081049657710183 +-0.17908863115602974,0.16023638173607863,0.5519311516514344 +0.1898212474322466,0.3382869611273627,-0.24367568030396908 +0.23403218154914335,0.12373469102202889,0.8679872651245955 +0.17673824373858021,-0.04715127759724966,0.3133388701054297 +0.030304129511095013,0.12810654804758514,0.7265161700262422 +0.6027266482808827,-0.1865360239802067,-0.13327465877393574 +1.0074110006901968,0.02041268778763128,0.8469412277376152 +0.485156609156398,0.7733369108289168,0.15988089292222807 +1.1286764420899318,-0.10908899083164966,-0.03489308722411652 +0.37445577611575076,0.08235109203519964,-0.0015641259613603242 +-0.09012621718823899,-0.22384887642402765,0.3343999779621777 +-0.19244162048777466,-0.16060485337879649,1.0643038419298407 +0.0497185869157884,-0.047933382634388344,0.42281208947119286 +0.24277088250530898,-0.2010010430842445,0.7882883145636888 +-0.1640285743378399,0.0398121125949914,0.2202078645139991 +0.11602907592089629,-0.12747792266830743,-0.2190207976575795 +0.2731831067144902,-0.05695714309275035,0.24858943905057407 +0.263745419338262,0.7499932762813706,0.20518966181500797 +0.2874813176516975,-0.041395553605932556,0.7420949782734803 +0.12167360435589258,0.6432124192742038,-0.01599359075573517 +0.23599645097510064,0.16395456120120977,0.6398855734626674 +-0.05274843345403471,0.2586701539622184,0.3531381138838515 +0.3406873168097386,-0.13504057134927322,0.8525988155019182 +0.458081692933898,0.22119361971863183,0.5955735995017954 +0.18788282484182123,-0.1188205265893412,-0.06096034521063473 +0.19587669423776155,-0.23213757989246278,-0.08937592232817174 +-0.23952013601828992,0.10845990137215289,0.2122968522983179 +-0.20160775674299403,-0.016953801304363775,-0.24842658571566878 +0.6074215477992827,-0.07851560508957031,-0.1854268404678422 +-0.24472181665642245,-0.22679797471174973,-0.12328024127971332 +-0.22862863751747708,-0.1412286180085705,2.0958435919295555 +-0.11375943436077873,0.04606552053118568,-0.16925819387552415 +-0.0842784215909271,0.21781380731287348,0.2717532040754276 +0.6440281675600913,-0.050617127305539356,-0.1753571118646361 +-0.18643367589438892,0.17700250072025064,0.10240555853869765 +-0.2412973977772951,0.33359725097153536,0.17101044198675353 +-0.11279717563650848,-0.13370678212168144,1.136936235585201 +0.1075410174208839,0.25216100467041336,-0.1604086123944339 +0.45749642149511804,-0.20159617062286797,0.5998363417060715 +0.10192127266906087,-0.1871053417076453,0.325093480054217 +-0.003623811860283793,-0.07147435688717174,-0.24689780930449826 +-0.22508230224357706,0.07960979060284556,-0.022654461063042697 +1.083963469696805,-0.24660082831627217,0.5368786853660289 +1.1065474274522868,-0.12998895311370284,2.559568194968249 +0.46307609381822623,-0.13034841901356847,1.462514480471081 +-0.11364319104735554,0.15735820958303548,0.1704194909195762 +0.40074662192480737,-0.10931715624387789,0.2115096643434769 +0.8931534793410383,-0.2027936499725857,0.8434723492930754 +-0.14745985103136747,0.07512404126372063,3.6536423879883655 +0.8428320851247899,-0.14996409842588793,0.5740479957033914 +0.4241375403133506,-0.028943403857877137,0.5738729784561947 +-0.10291122074100806,-0.20393775267661263,0.27896625224181737 +0.19908364221896263,0.09280822500967018,1.1038724142864824 +-0.1590105708086209,0.14563666503315648,0.12127371806670972 +-0.06824577258807157,0.013804096109064412,0.07310063064220079 +-0.10307713497282536,-0.1128334337710225,2.9122923543276737 +0.1515166001930035,0.2105597164260224,-0.008497089517286338 +0.1490603078544555,-0.23930145584184262,0.5736024910259971 +-0.013302616883216295,-0.09198591638808001,1.2532327370917071 +0.04117043039791457,0.06519713009613315,0.4254264256313496 +-0.08010486399300762,-0.21326900536558835,0.23391531922227332 +0.17753088838289177,-0.19948403604179427,0.022998370637613064 +-0.12808310117508553,-0.03788057210916354,0.302581305846937 +0.04907977507955352,-0.18406804049105385,0.41054640586362756 +1.4171977038376589,0.2819437465586744,1.109568778814384 +0.6890607704907411,-0.2293007813372734,0.33430857019807225 +0.15635421398998273,0.15649421679604036,0.2367083318076495 +-0.07741215030978452,-0.17078802791140577,2.0867492897944504 +-0.09079692946615206,0.5432132848673727,0.07752973696311899 +0.12269635967602632,-0.2380990281374047,2.396603621328753 +-0.14499445164345554,-0.16100805887487826,0.9523362438987886 +-0.20363916313070884,0.5794276649728779,-0.15949203551717722 +0.3961671511315994,-0.19694583393754694,-0.08887824420517057 +-0.13399866196991794,-0.1656200020662177,2.410091890042141 +-0.24842130716284389,-0.247069918539595,-0.1578088093404016 +-0.06723936537570033,0.47777422711093487,1.063537676406815 +-0.10989527930889753,-0.24725872131689441,0.5651717744596986 +-0.20578861005376725,-0.1512061401669847,3.128498861018739 +0.48781659836102764,-0.031083285432644187,0.7248080554053252 +0.12178679318326657,-0.13305171701644775,0.3661591577529658 +-0.22996047427368443,-0.1513149626421748,1.2190039020993653 +0.2786545035954957,-0.16872444788309915,0.7778217609337772 +-0.03241036279852058,0.03433416442509013,1.7842542117850342 +-0.2164533048339673,-0.059736823935454986,0.5738887601565387 +-0.031048097144323716,0.6446124445188027,0.844564458761007 +0.29046639759652026,-0.14166690958022415,-0.0009721577968017647 +-0.13892942571806216,0.42424927550111313,0.6858247806635215 +-0.12688349545916683,0.18593740441637502,2.560367823349797 +-0.08671266676466102,-0.06136947225286257,1.1272326491725129 +0.7718628022922331,0.5623085148007739,-0.10323707138734808 +0.07133400280421154,0.15454576158128192,0.6921252709287004 +0.0838055676658232,-0.10486884512132988,-0.13305378868203538 +-0.07159899547807591,-0.23678925236813786,1.3864974918220523 +0.11815790913089891,-0.13973713604427623,0.09519057668330061 +0.5953167120149941,-0.2393908937579761,-0.032872886619814023 +0.4626378304293648,-0.06993033902035678,0.3134240082060078 +-0.12864595552092511,-0.18332377193540322,1.4529918714752927 +0.38527532698783884,0.08985849470810142,0.8434235148867801 +-0.17533128815097804,-0.08165331911021353,-0.21107306391879938 +-0.08466335447694331,-0.04192518661010336,0.6340859983791038 +-0.1690585942157782,0.061030448528834935,0.9476115108527616 +0.17131804238069048,-0.18340909268426756,0.01498341991835922 +0.3662956436931001,0.14266105519998717,0.8305153428687304 +-0.0937887778197119,-0.05276274132510339,0.03668484081565754 +0.18908190167329153,0.09883698897143806,-0.21117686832529597 +-0.1108993530360653,0.02612892373168213,0.4215385251143481 +0.19700733873977705,-0.19505566579176892,1.8703336206139158 +-0.024276244186250823,-0.029022056483665765,-0.04765066987334693 +-0.09107678849917711,0.34107902237946175,1.405833690702305 +-0.006143759535531951,-0.06276669926967021,0.7919684798314177 +0.29943535210071304,0.08152670477657625,0.7548676956321942 +-0.14453480117691314,0.3911399184795388,0.2082785855533587 +0.011231854221994964,0.4318273907401109,-0.04856295809002442 +0.2197480325085675,0.3182091633857126,-0.007932614249544057 +-0.19340393193598893,0.44996792046418743,-0.235423020525498 +0.7377326107045393,-0.12230931583963844,0.05190367378846672 +-0.11627755673778725,-0.057234970362299326,2.2633618424561375 +1.5366610681758217,-0.15332783546588113,0.3446333562773104 +-0.1188305880651977,-0.21673586720482824,3.046360566610047 +-0.2497195410340867,-0.13809831953914303,-0.05660394082064715 +0.7260132591920109,-0.23411923427991616,1.1575933839963644 +0.11895491700526312,-0.2295678722519393,1.117245313142939 +-0.1931170685737806,-0.23981025715384552,1.048165322545108 +1.2363141996522726,-0.20053221600407517,-0.0599466493779818 +0.6292464269034388,-0.16388169143769665,0.24283227836307136 +-0.209469316445322,0.5612725855291438,0.9325164056807329 +0.2669495783962259,-0.013334979616450277,0.16088046867838107 +0.2604238272056568,-0.16146046668777997,0.18673043721895682 +-0.19267577080394802,-0.11388420888734224,0.5831665833217413 +-0.23313174934379838,-0.13344802564731617,0.45568501786423143 +-0.11594378831105068,0.06854995092549415,-0.11316961171729367 +-0.15077562198709932,-0.161163713320706,0.9555777020740603 +-0.22221952337736114,0.08459634602756455,0.9450016418216742 +-0.18481900899710188,0.07784556613619464,-0.1143136634231505 +0.4863489596877524,-0.15640076448358115,-0.05153128708954269 +0.07824658936663631,0.7400467284487976,0.9459880051584537 +-0.21970401050412217,0.01891982404657888,-0.23624453058282077 +-0.043343817602515655,-0.20185992827446256,1.5603144208098827 +0.9774140526809039,-0.24113877482761906,1.0973135230440731 +0.4773623129682183,-0.10488934585820517,0.8423882064903723 +1.2285094789082094,0.2326570228668392,0.17097296550260987 +1.1265116410380995,0.582996941343623,0.928738693247199 +0.4931830271051494,0.21060316822021963,0.6694494995315957 +0.13952530456091178,-0.0031695898110354337,1.3554112269881935 +-0.18118165191928648,-0.17975018785199876,0.3147233903480676 +-0.21353302238641345,-0.16627534860744655,1.042095012774353 +0.09781029532129731,-0.21311187412354776,0.5458951244008661 +0.13796011641778744,-0.21281681369739736,1.584569610380513 +-0.17391401671918824,0.9399189805070913,1.2841025347137454 +0.37664593097116417,-0.13884256112865806,0.49334157390155187 +0.15169930496790296,-0.12241045431165007,0.8884959815376277 +1.087408701483024,0.900252112284482,0.2975957171269188 +0.014990830812984413,0.9376175450182413,-0.09922936232463342 +0.06206659198692566,0.09891815533085052,0.21990320734615926 +0.15803101289098204,-0.015165706334335588,1.7948161735193295 +0.027990634395522185,0.2638577954863367,0.778403914436363 +-0.03162370014466992,-0.18173476402646493,0.0750300680767313 +0.7225194504306247,-0.1695282948568468,-0.018124960581876792 +0.41794678052704526,0.10144328290931531,-0.16165140629847363 +0.6124872589339273,0.07756488923401905,0.030015053226242983 +-0.16351777744910118,-0.004257608472243046,0.058653640147987185 +2.9136590935628752,0.21834776715097098,0.8795947104037585 +-0.048596253184980565,0.02849848111674136,0.2552052772983442 +0.2648781267884802,-0.030638175527077954,0.4950732865487082 +0.009046048565412024,-0.24355443303645685,-0.06724203079036961 +0.06343516153504991,-0.2310666630392256,0.6549167906426953 +0.4097313019500527,0.15069242110029296,1.328461380534296 +-0.23149131640897397,-0.2265157483494275,0.6700090238262432 +-0.10070168713051492,-0.22340196582993024,0.1474099999284491 +-0.10720111220681611,-0.09673436467034796,1.8047958259749528 +-0.24027424107179907,0.11805656983184143,0.5082161630773661 +0.9476515830810279,0.5359013454672377,1.1905021952675767 +-0.15056146792041625,-0.1936978804635732,0.4703497396795834 +0.22247843367799103,0.4447390550286545,0.11652108151932061 +-0.1334863173149623,-0.05235011974544029,0.5397446226453539 +-0.10940676192335022,0.0007818802797990299,0.5477871268561274 +-0.014098177857351651,-0.22811496031815412,2.8051907632515216 +0.03808464724364008,0.09827504975308654,0.29438372677548363 +0.014411056017471835,-0.07783567278527406,0.22849558566438916 +0.1848550028560425,0.11900349463468368,1.017872235318663 +0.4632427257216155,-0.08889588797054443,1.4091646916123064 +0.31403902865656863,-0.11689502540149424,0.0816043391322594 +-0.040061363853279935,0.18794630607554402,0.7237269798811764 +-0.023373483169590037,0.3754773865491644,0.8557268483862042 +-0.16467091503131703,0.34262069190188416,0.04161117330293007 +-0.1578501390983118,0.059479168003112315,0.32260370104101466 +0.22918762837237822,-0.2419814041550056,0.6230717140800475 +-0.03700063019840025,-0.05527877729572131,1.0408996921497662 +-0.11312438446922923,0.17601125322862426,1.5184438132084956 +0.9525432141028065,-0.23603494820402068,0.9374246204159231 +0.371317306385615,-0.16570448894415812,1.7655894655284645 +-0.06314234722644213,-0.008531655650220349,1.2394639066339144 +-0.057382490586096874,-0.24089441512863496,0.7712961311285065 +0.2832474931587584,0.20827100472804222,2.3183993397252998 +-0.19635645630550128,-0.18099106007107535,0.3083149183456845 +-0.024728738950924145,-0.13002196736193036,0.7822627457985687 +-0.19491580244622284,-0.016097955528178803,1.3458878424306095 +0.2772467779574801,0.15335484428483775,-0.175030581628682 +0.01090427993506321,0.6414862074961444,0.25634642353546666 +0.4427945879275085,-0.0715175501161332,-0.17339590174465747 +-0.21997735411403457,-0.051644929100579134,1.5594405418415633 +0.3381627373093188,-0.14492513449798244,0.3979333470380645 +-0.21591013825233274,-0.0769768147803398,1.1874500251731042 +-0.07306505653273582,-0.05299527955295319,-0.22849051725588684 +0.4173244935911864,0.0016812663998033717,-0.1573630269286625 +0.4498464151123127,-0.12873702039288654,0.8363414905120068 +-0.0941924604675089,-0.2456218392157357,-0.23628429326723777 +0.2838330585858724,-0.08180372728869897,0.0279993460127011 +0.4628744076107748,0.666257625038741,2.457148986583859 +0.021783700515735693,0.3683423035361705,-0.09607993515450847 +0.4514146016472538,-0.1596183990854633,-0.14584035244392624 +0.24932428561861825,-0.17421200970757716,0.8242633061392539 +-0.2168763309427161,-0.09235160457104144,1.3254136892572073 +-0.17230533862115005,-0.22160645469680587,2.980683648416571 +0.12280314352852689,0.5961218718391954,-0.08484678216019492 +0.3508680871274874,0.3147484046852974,0.5615786272206832 +0.1606756287374323,0.02890943993012257,0.846185400050659 +1.4741749620455684,0.8508642649068903,0.7997533368963969 +0.30699756087126584,0.018714627934133088,0.009419542210797327 +0.036153029246237756,0.2547104897914888,-0.19886323959021518 +1.0137402824565442,-0.2184971152149912,0.8724143022599529 +0.04813175037998746,0.23775955938208188,1.6062920507656577 +-0.016547540749782264,-0.23669651004529274,-0.2298736985025558 +-0.1796008505128335,-0.21060996792317488,1.5366143209951382 +-0.01757689667844331,-0.1320328632386571,0.21875903655449502 +-0.15336407798592833,-0.22282014105946532,1.5314131696488769 +0.02749873852539475,0.7218608848475225,0.23603377614871823 +-0.16361175674690626,-0.1931731892843249,1.0001553333003614 +0.2955619699295864,-0.08880015965901661,0.020595078352126983 +0.3454163612074793,0.5995922878089069,1.659431506194458 +0.05470823556265203,-0.19292291913495724,0.38380733198452743 +0.6559924739469077,0.08590859938869716,0.7584352603900713 +0.5619621621823279,-0.06061319841336049,-0.09397273638095985 +0.7720859945297633,0.15379768702160218,-0.12655002091020162 +-0.17300700381730075,-0.0931945187131546,-0.18744507582948577 +0.037299017576593485,-0.16573853120803306,1.057455464442426 +0.3298083501493302,0.3967008800944346,-0.025806890320495185 +1.131162924349681,0.3184343476807304,2.014225850895408 +0.8637630862228163,-0.06610848558363741,2.341925263186341 +-0.0771878107428211,-0.1314196385488787,-0.2248540470925628 +0.38601032495963317,0.03952865396886529,1.2691870015669373 +-0.2497404120413366,0.37265871768703995,0.10914159593207395 +-0.1831857108560274,0.4718962531341333,0.5811466770040166 +0.4282084319286257,1.1909445252340747,0.2814019384664028 +0.2857198200347203,-0.1947190217595662,0.23468412912189646 +-0.07558013935750593,0.1270505391908328,-0.13344583867938759 +0.03954651271230275,-0.20494783176767356,0.04312639810223273 +-0.03622678004013241,0.08366857614940415,0.4658999028044104 +0.009060623963624947,-0.2288352923473574,-0.109643754849538 +-0.014662430951421779,-0.14873332328605615,0.4502685535461267 +0.6190974966548352,-0.05785687347102253,0.11433432952154854 +-0.06045877086667523,0.22160227782521524,0.07599454424754093 +0.4471616078149946,-0.044954414417399585,0.061760640598933825 +0.4932910616225421,-0.11053613350744088,0.00725065315591672 +0.9671992265730571,0.29782613519636614,0.9563224674082758 +-0.07764519960005176,0.3601397151600759,0.46071371568576525 +1.238016838411169,0.3154713625804466,0.7138905257007662 +2.0365394961810543,-0.18975899402372962,0.7877709386225664 +-0.1527016839178504,-0.02630462652735152,-0.1422925738568765 +-0.08120087057638053,0.15304023776876574,1.1281515561686304 +0.19917687371677123,-0.23766085187603128,1.209414706251823 +0.6272270541898453,-0.06906492961193811,0.33428905992582114 +0.14544861714787338,0.17432389327891795,0.19060510410318326 +-0.09427838505588915,0.06693457872877695,0.17594434488003735 +0.17535030823668724,0.8237349579641677,2.54304086785835 +-0.16875481485867933,-0.014895805024198155,0.8138103578107863 +0.7834325655506127,0.0847703636621372,0.7055040160566914 +0.35457090617334497,0.12527459845927996,0.1711137784524817 +-0.15818548863870407,-0.20474473005162006,-0.007955043540629259 +-0.04106984545390885,0.023775171020807617,-0.17511179470679172 +-0.10125399025180465,-0.0526906700203989,-0.0816458438705106 +0.14917706796146607,0.00022079902207194912,1.4609615584121696 +-0.21844965905276412,-0.062244010856596005,3.5711395496055585 +0.5459799214907696,0.6288131033507554,0.24888406878971137 +-0.11696527628355677,0.24111003724689545,0.11987952715712746 +0.29299823941188785,-0.06869170444792236,-0.01555644667792122 +0.29057302538248686,-0.11918971633230332,-0.18393031157195136 +0.45730473924532367,-0.20186049018961136,-0.08471983675185563 +-0.04332053749113138,-0.21011533643943692,0.7564921321604854 +-0.09523049267051076,-0.16156203206894382,-0.14171445142786376 +-0.017071761314104067,0.9702322600740254,0.9392360883467914 +0.8112909015245235,0.44073258308078145,0.6848120482331322 +-0.1949673097347756,1.0175572866487324,1.74279640401867 +-0.14358403499571842,-0.1738389592537951,0.11454766016690549 +0.09593269234758561,-0.20191982832724298,0.24962874333856128 +-0.22911216259480377,0.6849531090461732,-0.20240731999230202 +0.18285731055826987,0.26574231882723676,0.8354290539764708 +-0.11080853318321224,0.22864711784970687,1.2780054740779005 +-0.11529081212475473,-0.09501981475265411,0.6112437441234561 +0.5362661031821214,-0.13321246554808075,0.22329223633429707 +0.6782548869110766,0.8641822517218118,1.0172401365862647 +0.4256316670242323,0.00913327734722752,0.764300101021606 +1.802468422815401,0.38828273473747277,-0.024035162652237013 +0.30070032973161154,-0.22303455517934478,0.19163682062632353 +-0.022042636498241952,-0.2140773949392464,0.7013611431402293 +-0.23635613230141905,0.3351000782642105,-0.0393448676609989 +-0.16850719311960027,0.11677615869182911,0.05814108290581632 +-0.20010563092986186,0.39508264959727113,0.7063986182959834 +-0.22681620063018218,0.5669302997620502,1.043794292491637 +-0.2436611000983493,0.06618721625905633,-0.04488453942872292 +-0.030332436847275684,-0.10352013411710287,-0.0010297833018142466 +-0.18165770957281352,-0.07943948662210304,0.06260336630168517 +1.1589924891530132,-0.21683375309828862,-0.20835220606934168 +-0.15498712786946361,-0.17719940343055973,1.1390398563572945 +-0.02749874056849072,-0.10488733717123933,1.6693887007674857 +0.0202854252424417,-0.2401909856508535,1.0414900907249807 +-0.15308979378453866,-0.17478241574765707,0.6468934332468113 +0.25887228669784523,-0.24104810561754653,0.42194713614368307 +-0.007816024150419626,-0.2218068448168301,0.3839240630580405 +-0.13467966581125027,-0.15879938066096277,1.4095603112993182 +0.9533324944302597,0.37378936965089726,0.08875349057062193 +-0.10067901355310224,-0.22422850411301776,1.5819165815542164 +-0.10493073439737927,0.7510043674673716,0.7139971796076788 +-0.23002765800401426,-0.12878809491705034,1.2043205969750863 +0.3740778121833144,-0.09381430292545095,0.8860360450249523 +0.48148831848803353,-0.19577876868419214,1.6464589313707347 +-0.14945637537240603,-0.15516166824589717,0.18781517968178923 +0.030580754062063398,-0.14380045979412498,0.634679501022604 +0.11443023635660166,-0.010053134158963667,0.5918909592952665 +0.32397444190546365,-0.2395874417362646,1.8902291702018656 +0.1571517156799596,-0.14560028611326106,0.017613462208217523 +0.15103283907421078,0.12709949005415278,0.6279855598906596 +-0.21659542839082924,0.769738333315108,1.091308538048356 +0.08004352208259452,-0.0895537620744482,-0.17335555321454948 +0.062948505360439,0.19660295119862925,-0.12618010525920245 +0.1232027855569352,0.14060612811179313,-0.2402272774467819 +-0.17038039147399112,-0.133624372229121,-0.20479451216677483 +0.36669082381833273,-0.1493309104909948,0.1655948089501318 +0.828886476890554,0.03452492257672096,0.91226947493475 +-0.14004639632341875,-0.22537873759018517,-0.17950226242780037 +0.27324426395600254,-0.1668351707487041,0.42959724735763016 +0.9342047916185421,-0.17221255808471447,0.13846205388253302 +0.3475400510145372,0.06657252853408302,0.9161383622187156 +0.18462322098004458,0.26812890857722294,2.105042820883181 +-0.21257757273575473,-0.09913727685680351,0.4506062488585344 +-0.031634694396717844,0.6236617136602873,0.9820945368993335 +-0.1821003717478754,-0.21277730201383363,0.46368768072037814 +0.8170766232713271,-0.15622608881042876,2.2382961919457722 +0.2527230429006946,-0.17468820161171233,-0.03361294894648284 +-0.2451205836913108,0.4942508819329926,0.5865165707712484 +-0.15108335853541052,0.27277197300229084,3.368285701487959 +1.4198843166059212,0.3020231779332493,-0.027373882756571793 +0.0877071653443372,0.13180106048575707,-0.010403155800663866 +-0.1997662847594602,0.16782231149168947,-0.2316779492365668 +-0.22520183435744145,-0.1414879439908835,0.21871815313716808 +-0.0546858708194006,-0.16657180193341858,0.07689941035825248 +0.5740502455820957,0.22662705915653092,0.14897701755323273 +0.21516819615277072,0.20939032259724077,0.6562395115854543 +1.5206140030551811,0.07514966549840224,0.09246798772632547 +0.696894126973937,-0.05462670668765407,1.1254449974257412 +0.24606895200517742,-0.14565538175237325,1.4443059599151988 +0.6350593025372122,0.23175843283197595,-0.16348648190661488 +-0.11886560271156593,-0.19166888713200442,1.1610991738664773 +0.031215040803711902,0.1326027363985412,0.31481193298810606 +0.31872662043061717,-0.1169516458843409,-0.21158915388699345 +-0.21163525202064265,0.23457897824204532,0.47243714052704977 +0.44950340783025755,0.023269426001890525,0.6390643530733615 +-0.07829605641641757,0.1847022063814277,-0.09013300182146247 +-0.17789118728393327,-0.1601008723062235,0.1453668619904932 +0.20650232364436338,-0.23464684574427241,1.8458808150896293 +1.1236525528681218,0.10792648180244502,0.16524163690184762 +0.21734681036277986,0.011631444283255743,0.2204396277499553 +-0.20883940434393894,0.4313877508535876,0.5108948775555063 +0.40327787054416797,1.1274824200999096,0.816729197840927 +0.31433358922881194,-0.2417873683814605,-0.07573716476220696 +1.8665894477510157,-0.06656016513839916,1.0108969939068488 +0.5811443896788231,0.8504556345169594,0.09738364148686424 +0.09050290156660934,0.33125223159785255,-0.04985259010253859 +-0.045744374787538206,0.006831382286557053,0.9730454891811102 +-0.19032114867603528,0.1275560933269429,-0.15292270451882017 +0.48929969940643114,-0.1756488289838042,2.997325489386807 +-0.12884472645387265,-0.24824711362770352,-0.21072495550919718 +0.9884634567193258,0.060296749404963323,-0.16732858265935474 +-0.10969087215396539,-0.14605578659494545,0.8796222540955709 +0.6794504162299508,-0.05909524170520755,0.009339653620176747 +0.030338264160491568,-0.03138239298321954,-0.14202781976409892 +0.09794124920066632,-0.12422263566072042,-0.18443022832846756 +0.5953273629099084,-0.24710220163614416,-0.20034036364882618 +-0.1952222594599608,-0.24043373410626723,0.300164823548546 +-0.17323253154324092,-0.111498295689129,1.0081688659289307 +0.777111153431767,-0.18119058289990575,0.22057918307557278 +0.10196957185369582,0.2962226076739627,0.20444741437241848 +-0.18245049728180757,0.545596049498212,-0.16432358041667353 +0.3948333979407872,-0.003298724344647952,1.6269711039337778 +0.02523661654342002,-0.22484670716908295,1.850870170200869 +-0.23834291903239685,-0.21334147043583568,0.7214102240960548 +-0.030383620345759726,-0.04918116583953758,1.3574369675041424 +-0.16554226486371706,0.45103304131829314,1.383286121516543 +0.04931840787602454,-0.19222819336894384,1.056369920801387 +-0.17323739195837318,0.31511318650377107,1.6165509745397728 +-0.08933817570354277,0.6187182867149158,-0.22897629962306332 +-0.1412852781236309,0.007161841584137685,0.04050840956740115 +0.7628840244548385,-0.1626109364062572,-0.1029196037167753 +-0.21006921226700573,0.15569049281450487,-0.2486745025999421 +-0.20394428533140962,0.522446070558772,0.025237139614743387 +0.7092916878339713,0.465557240268601,1.2838615445647432 +0.4114527697539212,0.08576982166527053,0.002297434789390429 +0.9027556378543631,0.1350854355840695,-0.24785288264767838 +0.682158696717994,0.6270058181015433,1.938607150061887 +-0.03221793250113705,0.2038153028916866,-0.12335811719095943 +-0.032927757388580614,-0.056207341682873724,1.0201937438814164 +-0.13560497249702297,0.4080431251119654,1.118084852445763 +-0.0019310270385425876,-0.21009491612567902,0.8983921680100861 +0.6898483678883103,-0.23579565265425137,0.2585810099118373 +0.04286801734575896,-0.12275202220128098,0.13398680123881523 +0.9218609420379869,-0.053909187194334685,1.624991168961215 +-0.2224706313295103,0.13231517628207573,-0.09968222404112453 +-0.19697888491559287,-0.15696224459678026,1.4413378431373238 +0.8285525724617355,0.1980327616111588,0.158583347624015 +0.6673953279016315,0.011697740426419967,0.2701838722813603 +1.0659231725199554,-0.14479105642931478,1.6009720212202303 +0.13884646784836713,-0.14324091710008702,1.0914482145477977 +0.8070578252908822,-0.14150525038236514,1.3865246277705396 +-0.0008282896418326247,-0.13751070331669416,1.2303767598451107 +-0.05188299175785599,0.16475895342248792,0.7460221055558078 +-0.20988204101462654,0.08004310575013951,2.257365245308811 +-0.16779161309782403,-0.20849952779493972,1.0356226794140064 +0.375161505297285,-0.12264246118623401,0.6746157723549487 +-0.08151735108119709,-0.0641061743818637,0.13596219141021343 +0.05835400450056871,-0.07920350924626621,0.6866273561816346 +0.1801863774043455,0.13538283671621965,0.08923166360580592 +0.7481502030885644,-0.2149438941587863,-0.05135385663167458 +0.3372760658589592,-0.03438193005220544,1.3213748985905411 +0.013310149948404792,-0.21262660677266,0.718655313098916 +-0.17561278897397514,-0.11699643149598077,0.33751022212363313 +0.2659531242935723,-0.07121550652022071,2.384886183104607 +-0.16248010575857336,-0.17397145514838636,4.0695262373400825 +-0.0924614865286216,-0.013761393088590868,0.16133808373986896 +-0.24854724962510763,0.4307371333787189,-0.1962778248083096 +0.04301410538896139,0.04147692802938119,1.759486770426168 +0.6642820248212093,-0.20717506202024324,0.1954150570933248 +-0.17777008227901914,-0.11873703301983604,1.964285180977558 +0.5808311640564003,-0.24094368996274987,0.2162404316397636 +-0.03286313863697107,0.21988495198591262,0.24956170780784126 +0.21966572689153713,-0.018977333644212974,-0.14034871033417112 +0.34378254957815346,0.205617465326637,2.8613070242351166 +0.2895092064314235,0.03071623936419049,1.5505571250297725 +0.229092221535509,0.9016426392763552,1.198199630909196 +0.7154135933175917,0.5433599806632258,1.3121857828874437 +0.5442756775590382,0.6444341158905278,0.34562080909832305 +0.07600913404733395,-0.1223089711653701,0.13331586210347307 +0.443853483899465,-0.18355745374004506,0.9629268523615282 +0.07384821376384265,0.4695284924482799,0.008915038379835816 +-0.22608290432179617,-0.12196888359954705,0.24448462851934538 +0.027811229557244965,0.24768430321528173,2.4453109326505027 +0.0523748729020993,-0.13911259003524637,1.2278845487937782 +-0.22407586177508582,-0.23790507533826943,0.22714410183981748 +-0.19857082048230512,0.18335779450408712,-0.05202217912518364 +0.028733710961129533,0.14582384841998353,-0.2385323980299358 +-0.13969246999886753,-0.2159044573730834,1.1945760039304105 +0.6082193489134424,-0.1631827440611515,3.4256791162624642 +0.0036133064434947793,0.18173944704247358,1.6488283697557655 +1.108733519433663,-0.04507425620162081,-0.17224617851303187 +-0.1549317496302815,0.15545010405098203,0.05283408281301166 +0.09944553677944529,0.10320160552177254,0.9120779329672284 +0.04117176611013451,0.07936498335518366,1.1848183598075508 +0.005623107590862431,0.019687680803757213,0.48180979101395605 +0.12010284275822714,-0.1690540452225706,-0.23417898660718078 +0.02853384347650839,-0.12171035899304708,0.189093587495047 +-0.07748913057142573,-0.08959686589843505,0.9933815862226856 +0.1928474334288099,0.28280579381448945,1.6361703173489888 +0.5168498894618712,0.03476103283974974,1.4730877755915295 +0.8933655700530492,-0.1490700668530537,0.13805126885018348 +0.23239625659957025,-0.11545749912195546,0.8003379476905339 +0.5015941548218614,-0.2073649765060858,-0.23189412882949104 +-0.10868383861180167,-0.009698321936277371,0.6841450459478473 +-0.218958676339777,-0.042507913609907744,0.7677272269643924 +-0.1667474126214789,-0.22165828391815431,1.0927932602682333 +-0.21878346461884368,-0.22865139309620672,-0.08665091799309724 +1.3041484550271374,0.024411164138397334,0.11415407604156297 +0.4053187715903356,0.11505191512794649,2.6311760104922812 +0.25155962495023565,-0.19254365988391786,0.987932903571541 +0.07909683913395904,-0.05019063475735419,0.05465459521888488 +0.5069189699419863,-0.2313066311202143,0.39812286791453566 +0.051616052177965055,0.05154995709750693,-0.2259374670888911 +1.1382904207389295,-0.09558809490396139,-0.06351505032677207 +1.0504988342725277,-0.08344646698681976,0.5765449422736293 +0.779723404162245,0.06757861861864717,0.40819135741500523 +0.8553849991203579,0.8536446357967247,-0.18006581611836825 +0.6708254070507569,0.03410615502804448,-0.05472840773891957 +0.0988278872409627,0.11004392507488142,0.34505563677605844 +-0.06628341686499478,0.049081821602976805,-0.22996429500606647 +0.4047551011033822,-0.24918373843286215,-0.24719559892217796 +0.27327490639088203,0.11133472079626822,0.4829408271439416 +0.03980875348732593,0.18212833327119599,-0.016185112815237684 +0.037793110423777865,0.06620784302409172,0.13061091253039797 +-0.17954849290621355,0.316057498465377,0.7138245223329939 +-0.1041164268891683,-0.19553194161290735,0.2882049262098232 +-0.21014642233458514,0.15194422500566512,1.1768766397768335 +-0.1577035165627594,0.036243201550105686,0.06017123578132627 +-0.05026652717763544,-0.1494909184934746,-0.21647064638495006 +-0.05797145168278589,-0.13780136472044008,0.6358134004110926 +-0.07509035539040423,-0.20139560366198245,-0.08148472287462719 +-0.08304410414468053,-0.22943252309244763,3.9968774146343726 +-0.16334914391530875,-0.1957927228996278,0.22037891255448255 +-0.10506779136225458,0.009174896145075717,0.8849074520173366 +-0.139958836281832,0.12848750742757148,-0.2022244030966577 +-0.0488059398954202,0.15820665866136946,-0.17852400572723878 +-0.004261766563551039,-0.10278352918107692,0.4240044168651371 +0.6694793936364458,-0.15112051834160695,0.20651402261398522 +-0.20587975951163132,0.07301960025797216,1.364425239362128 +0.15570166810962183,-0.18895997434483425,0.07360178925653349 +0.06235480544212735,-0.2421890521575611,1.5026017783524728 +0.027805279871715494,-0.18171952319032222,1.4102081718507895 +-0.007051618317723191,0.08361991513239853,-0.12363138646958072 +0.34052329737202647,-0.09633697358363943,0.1367930614683201 +-0.12253714766002743,-0.11815867333166499,0.5387161715633126 +0.06284913558197425,-0.14717231073631815,2.2479594493480146 +0.09827500242985476,-0.13686784188279388,2.509283212780659 +0.15327761522783206,0.583183289441135,0.37280083031840805 +-0.12851483588469115,0.4976277814491572,0.9885888382111936 +-0.03753079955328939,-0.11055421142703253,1.3015117125373885 +0.04137608113666069,-0.028013596685773745,0.46668673229161095 +-0.21149324639587455,-0.12195232874913753,1.8839587473052224 +0.0042663308587282955,0.2529443179329848,-0.2454365076781844 +0.403765606815653,-0.2440437470831855,0.6268404691924265 +-0.14726127248764698,-0.17352972573170564,-0.018751871912086104 +0.44595551727506333,0.41027872366061646,2.220074820043318 +1.0720336643809134,-0.12168111758242342,3.0520409390741516 +0.1636365079627975,0.6206132582066922,-0.011916941746460796 +0.05837799153927081,-0.1882856568212772,2.3853829775792343 +0.615085419198235,-0.1249712567759286,3.4724643700058118 +0.2946354770431686,-0.1326773923206616,0.50502056288825 +-0.23104444085762538,-0.1278074201419635,0.8030747352982619 +-0.03614310283714864,-0.22415602913822152,0.3114602372864447 +0.09117314961034856,0.21591948065497468,0.4592737806920246 +0.2917141678995169,-0.15087603912029138,2.6403784310120764 +-0.12500616289872407,0.09849046390092242,1.3828288202618622 +0.21576410517863337,-0.01214639151576144,0.04901183164856965 +0.056664907169233114,-0.14155503217999485,-0.07307835686772121 +-0.15767416011222218,-0.08801280483807453,1.0456917159267878 +-0.1449736876214544,0.4867569064847397,-0.17111119790077334 +-0.18165005776813925,0.3592632788907334,0.285723498624294 +0.6581274935558916,0.22284992054968056,1.8178789671134332 +-0.21238265304106219,0.07734544014071293,1.6237511103891185 +0.06685241493456595,-0.16108129189326137,-0.039742136201318945 +-0.17218532374339396,0.24770612488855653,1.3029429332048148 +0.4794413298278941,-0.017988797491657493,-0.06434791705894663 +-0.12021021413226432,-0.08175730658186198,0.9548207773747011 +0.05054308510305239,-0.12166204429634847,0.12234659474139753 +-0.1698522626270113,0.06348470801684813,-0.16261236551436278 +1.5003951269294795,-0.2078952450821046,0.3031579793934793 +-0.23078454227237785,0.15482297776459358,0.9843900309795286 +-0.04583244886615864,-0.004758362501974839,1.8381869020484256 +0.6642926968106748,0.08071423381378373,1.4555784711400395 +0.29176203617368357,-0.12066767585540239,1.6640961269097552 +0.3570422883793307,0.24071396094725944,0.1439738543047207 +0.036574708208025164,0.42001856556421713,2.472191389096057 +0.03880705669288903,-0.23375505251387546,2.180194713370737 +0.877074629970555,0.26177827629008144,2.0660178547042385 +-0.12150757253066469,-0.1366341668142066,2.3140162551305425 +-0.2022816211197784,-0.1814886287836548,2.275656387415768 +-0.020969702799606887,-0.009264224946534866,1.863693336262545 +0.047827292569445956,-0.028896310501483335,-0.2273463481677486 +0.1154282796246287,-0.13819891887766944,0.24375614709207305 +-0.10905860808326495,0.22357292702244014,0.7795703457143484 +0.5220274001658805,-0.026950652479452747,0.3056530959182956 +-0.20050601464325002,0.5899360708649609,0.7671443534014375 +-0.004622148072159354,0.21388987273276616,-0.22186073278549404 +-0.1240977832878759,0.12756369356183223,0.3273912382356886 +-0.1437543400028639,-0.22952983237957306,-0.2036605406298404 +-0.0702450172088451,-0.12608473197847228,0.2177365109102829 +0.4377446964635425,-0.12399350652664326,1.4905618146304693 +0.14436764446493605,-0.15962151106645778,1.1781898921577598 +-0.1849220514801635,-0.21749037718184594,2.398775376685056 +-0.11745120035652662,-0.0062005489053023055,-0.0013353807193128286 +-0.2018123550727646,0.014834257174879684,0.23088791368143263 +0.4619360684106726,-0.21847904976986948,1.9357965351255828 +0.4231558121391128,-0.09894490769546582,1.0205968244906516 +0.03566530338507978,-0.22846841187802913,-0.19144593738644916 +-0.03464267544873312,0.5150770114357496,0.1684961797533987 +0.33715092626445076,-0.09095503829707033,0.03562369884612204 +1.423230038569479,0.06133933965417748,1.4047458851621357 +0.42718746302224175,0.10278469398692908,-0.056948568325522114 +-0.08499484124311221,-0.12242988090778939,0.44541659114152554 +-0.24795644652679338,0.2737489615255274,0.05676894902170393 +0.17089256358231597,0.04317956253418598,0.5224138054074703 +0.09554254962913805,-0.06880028199706309,-0.012496831027014488 +0.255116973724436,-0.12243345233531305,1.212956550068218 +-0.02067012472968946,-0.08420219408461263,0.35363573446370433 +0.05680389136602365,-0.1892404762778029,1.327327864522064 +0.8285298604164621,-0.24170254425742263,-0.050960280844259714 +-0.05096599460762369,0.00892925223173835,0.2284980557949538 +-0.0025969277238571675,0.1244856281723653,-0.07130947042405444 +0.21021526477870833,-0.1613023195785928,1.487865958063589 +-0.016672258095320885,0.2047596614756157,0.46213732372488525 +0.11279275419155427,0.3006708762967848,0.2873047045927818 +-0.23433879685525244,-0.18322093376383117,1.3368799824674005 +0.02510981718824179,0.10356630933551181,0.4133946681888434 +-0.18334226553046018,-0.20741559137693052,0.7366278152614099 +-0.012487074125303255,-0.1885166153976941,0.5302377521779496 +0.09942227548100635,-0.19850852409646208,-0.1034637150246179 +-0.2040978017044291,-0.0022210058033136915,0.5458046870477359 +0.11007554840352946,-0.21841022143812083,-0.15123947428936468 +-0.14924191803390802,1.7409594422810535,1.0808440823186025 +-0.16539601140948135,-0.15489716362272504,1.1757059679572601 +-0.05069340829767999,-0.161782273282854,1.5793594932026316 +0.0170084514507004,0.4194673792145853,0.44336689880882707 +-0.10952681685017299,-0.14021445120800713,-0.2464540091703925 +-0.07511233663976827,-0.23230317940468945,0.34424608242162824 +-0.24735276486826324,-0.18426315561527656,0.3463746393495172 +0.4701954119718369,0.34528350462038715,0.47834384222892656 +0.22031003429820328,-0.22365933617380004,0.11892040447136826 +0.14976738030688408,-0.046673595031631626,1.1727736103127044 +-0.11394461499199626,-0.2294228194557551,0.24873392957032125 +-0.23513313968356508,-0.13687465074842625,5.008122839034255 +0.011454777472786115,0.5160031887125038,2.1227262559579736 +0.006508527347588944,-0.23088968746726027,-0.10944304763307089 +0.29762607422722676,-0.07194869712932703,0.5305622049607525 +-0.13756156648317142,-0.20597140926096216,-0.03964524481738954 +1.2522631800304906,-0.2241532787547582,-0.1752300415453008 +0.2869397399375665,0.41730630035786054,-0.0649513435089393 +-0.20381711458602547,-0.20504648468260359,-0.16588127404337366 +-0.23076275496787682,-0.08705174873832727,3.316972169790216 +-0.18567787626437873,-0.0743710526942084,1.9500880004170185 +-0.24820867822910794,0.0282229063990595,2.975181678201763 +0.008835101596941841,0.11225646161711278,-0.10802671768084224 +0.10312641532322453,-0.23854247974754572,0.09871765057724169 +0.7490540043961947,0.1695396373498263,0.24039126096419366 +-0.16540704755214947,0.10490998038997684,2.7116142661441613 +-0.16300848947400223,0.11453685344035047,0.1455608504765285 +0.7253262496853495,-0.21949591738888646,1.0982106080074263 +1.1537728090934727,-0.06803929215201127,0.04730795654452141 +-0.20679448433324238,-0.2000332046537062,-0.24002402346045126 +0.8632264274658255,0.03294178155458366,-0.23789396899166693 +-0.07917508981478436,0.12733308824982575,0.6331457439615007 +-0.04370073813618011,0.6185308149623288,0.03508650811862474 +0.4377298069875405,0.21921834027652726,0.4770943777853236 +0.15404993112424914,0.2887680163934606,0.7268444510609666 +0.12504250712453302,0.30935819308433865,1.9685066117847225 +-0.0704027259918186,0.059814233466004285,-0.05840077851515324 +0.3173367275863548,-0.04839015615365738,0.4773869789868743 +0.28017356892056766,0.956322392898892,0.04124962290044515 +0.18596570027546494,0.06289815610934157,0.1774514398422396 +1.5065232890025249,0.22662968532539757,0.3192572323670243 +0.14990815243632982,0.04551130946664583,0.4634088669055222 +0.12530782209007246,-0.11303352933021343,0.11484550428318269 +-0.10496209536399032,-0.23461007207386655,0.03409729963213837 +0.7694807920566886,-0.033480896249868,1.4203773095876338 +0.5868601329430623,-0.21844644849779257,-0.040672921701722625 +-0.09290025156738738,-0.20767803626828565,0.2927592620296984 +0.7719592871829126,-0.1693774379343799,0.18252608636229134 +0.31865575645599997,0.1853228355610066,-0.2272122715661262 +0.6874280764639447,0.12374587365383133,0.27142094064302125 +-0.1493433272803998,-0.03271917142540834,0.28555939130352714 +0.38870573369860784,0.3728892380884723,-0.01779515600351214 +-0.21962239905360179,0.07937625692868655,-0.17570790212780446 +0.738258634160026,0.03741972308326996,0.07603242332734894 +-0.18107913823618782,-0.2311214151414574,0.022878737422125817 +0.012775368741171522,-0.14534127743859449,0.1760996879303599 +0.22925672288787063,0.11210601262180137,2.2473995446135464 +0.7535143230544583,-0.1998164232377449,0.47115715343930653 +0.3245064774578784,-0.13767296981189328,0.010981040295951094 +0.0550651129527755,-0.0780137661657061,-0.19320581785103066 +0.3947671251002143,-0.1468701371996681,-0.15014709430231815 +0.2498082752212537,-0.15319287534919654,0.2423151994819387 +0.38957086208976277,0.10221747697904232,-0.21367747201071055 +-0.13103036942855656,0.2252071092546919,1.188781999103195 +0.5071100602049451,-0.2174587925241314,0.3998885621782804 +-0.11096859349509211,0.1924875122456008,0.3392369538032731 +-0.1730927947687321,0.07080262484909156,0.28862660467574586 +0.12347620557570399,0.2015198864876162,2.1822829867961593 +0.293331793600933,-0.049223066995888576,0.504851961473436 +-0.051684863912632356,-0.23098471890563463,-0.028313321773902084 +-0.07298931271921436,-0.13132309216762247,0.23079801050142434 +-0.0996954478758861,-0.2236426039702826,0.7419461758630768 +-0.058237251091467074,0.28851812278976696,-0.022503047584623292 +-0.1614587866342147,0.19155380184327103,-0.24868389173163408 +-0.06686210533089731,-0.1658415271175845,3.586710718193523 +-0.0745985248493013,-0.2164748475996639,1.0811583712006474 +-0.21405391201279947,-0.02959278829478873,0.15951314893557111 +-0.24839735732708068,-0.09385854764022006,-0.04769645869646125 +-0.20244088411797062,0.24983252323732807,1.5189355165888185 +-0.046712672737760974,0.1819519137620118,0.17216106880692483 +0.8460323172604447,-0.2269917442260051,0.18293873328639249 +-0.2353616045745929,-0.0514002193668496,0.32311719929544536 +-0.07344453291945321,0.022526828986067227,0.666781625575397 +0.29467946903744213,0.13935742726436695,0.2341714063488438 +1.0515038142852315,-0.20048477524164926,0.4233382364804673 +-0.23961871800407894,-0.20760160326663205,0.09139486124039597 +-0.17679074744022727,-0.057719545179608894,0.08481488592745567 +1.566212017232611,0.19158261455286058,0.6046785840363816 +-0.20045276481044794,-0.242655160208831,1.3706462485237028 +-0.17249798054468732,0.18280878331932526,0.0058711251839702605 +0.08026330722090108,-0.05490309665153961,0.2975013342915175 +-0.16126999799086206,-0.08382457917403324,-0.23188361328032497 +0.8547548013980608,-0.08035332000329715,-0.21033738972927377 +-0.21638063095275814,0.15045618334460353,0.5390712012152589 +-0.13580681971525604,0.8414211970065324,0.020689803477460744 +-0.05563314283005935,-0.22040790666654342,-0.22346483233043718 +-0.2134786831285388,0.0023362910148135296,-0.09700627977313386 +0.5708769225786978,-0.1353385855752329,-0.1984987522161681 +0.3854229309633094,-0.1848695824210727,1.0367376220233706 +-0.19409152329955767,-0.17703393373527426,-0.13023618452044108 +-0.0716621754818842,-0.24785209902858474,1.6580037612889005 +-0.20616574446279068,-0.16129520150420018,2.155861528782436 +-0.04286960932976133,0.03369735729564882,0.036984546010817465 +0.0944923153639664,0.1266185418161342,0.36729296687956303 +-0.1895120949080839,0.049826344486547325,0.08385572400760122 +0.7303645710941943,-0.02895123216791956,-0.12652243895641846 +0.568581431592678,-0.006052008960097138,2.215668387390486 +0.07076855545055866,1.1515630045227363,1.1940438416606856 +-0.13213375440320574,0.27548566516871875,3.069407901692971 +0.20546323371409175,0.010111462875165733,-0.2394692603170747 +0.12313119775373232,-0.19428404609943195,0.018359301698023855 +0.5568721539292676,-0.08861241476221998,0.07237927622845042 +-0.20088530393545784,-0.1987289643458065,1.0875059771375515 +-0.05724856435558481,-0.1622196754370119,0.039216904994828494 +0.8651895314477671,-0.14040956700113705,-0.24048748752967813 +0.9861273687029213,0.32386258406359947,-0.23323019338445364 +0.7972269388926492,-0.1551329328791351,0.7019024078217476 +-0.22556634859586802,-0.08443674950173619,-0.06916299149199709 +0.013324097626395748,-0.20711322480792527,2.926169320023759 +0.09994640994876769,-0.1727781580337584,0.07710500746886861 +0.5646139463866526,-0.21891264166100596,0.4979513089714174 +-0.01784721819606397,-0.04899487968321706,4.896549737832198 +0.48554011661941643,-0.2269667275670673,1.3822717144369912 +-0.19112519364273467,-0.08003444238119148,-0.18668744188069614 +-0.04800674987707704,-0.1630881419888877,1.5588600934257113 +0.3618337024870871,-0.1208464193653579,0.8677619279687119 +0.49071353962004427,-0.002133324096272704,-0.21035630458993548 +-0.23381451867971725,-0.03227589369493264,0.465261859144371 +0.3718178631679434,-0.19868753337240214,0.6803870094571937 +-0.23903204458737998,0.2781061299750701,0.777524733445722 +0.4941886876705981,-0.07237776134697785,-0.14152228747003748 +-0.029551910841765727,0.01341670842973225,-0.005843722315224786 +0.14731932363866412,0.9124710673774663,0.3394442102844979 +0.1410168460168027,-0.1903530869705119,-0.23889198651670715 +0.02914253929197813,0.591755721557851,-0.03665037605349847 +-0.021746791886328942,0.18690482344962756,1.3681707335245599 +-0.15067402671101887,0.2649285589239222,0.05224390910743659 +-0.06468278742139985,-0.10292281273282039,0.3424771292515374 +-0.08228389509896031,0.13679314445862367,0.29804661938853594 +0.49583926608363094,0.4972385820612889,1.086748136537352 +-0.24147329405930337,0.08035378548408445,4.265666624313088 +-0.16397108068030744,-0.12610024780756815,0.19074361376139481 +-0.07793086077765443,0.2775819165808402,-0.029389524332255945 +1.1944361723807688,0.0455316494384429,0.21243113965994265 +0.40404163049214836,-0.062014067182102006,-0.03534810966892585 +1.2970538469513988,0.6294043101578846,-0.10258250719467288 +-0.20372591115025024,-0.032882633781601334,0.33326656894853013 +-0.10776870298552899,-0.12373271704927324,0.5371467103667716 +0.10961562068166242,-0.0038865696362261615,0.27828231480379084 +0.46635500355421555,-0.08639211974323074,0.9055244700744611 +0.9693687874523182,-0.24591432424246457,-0.19130821883213528 +-0.1592492650921542,-0.06149068603873545,0.2483344667501653 +0.6448447422904391,-0.12198510575852886,1.043785736046521 +0.13146714361490403,1.4176865834124064,0.14376521404845255 +-0.2249513195115158,0.055100710951088316,0.7039847734044806 +0.7883889795030774,-0.11069442293873374,0.8551047715499092 +0.07105780271411705,0.1359943079049446,0.701191830755705 +0.19336252905890422,-0.24869864414847168,-0.15531580907250941 +0.3594435991265831,-0.17224007928364715,-0.1972520753119961 +0.7383784507877407,0.16927353875320178,3.5953190678674827 +0.07853882815531704,0.17083081521763693,-0.13328467227362173 +0.22966456325370005,0.3257069394952409,0.34671138560994497 +-0.1859270648200196,-0.2175296460263283,0.08251936620066286 +-0.06611154683097473,0.29903220256343044,0.5623782083132864 +0.283564237787161,-0.10117180466766715,0.2923724418025331 +-0.19375144198226724,0.8482998670432658,-0.164409555499195 +0.0036683709134552323,-0.22473112855439756,1.1430595753998136 +-0.06232203568849429,-0.16154886488990566,1.0236394337050194 +-0.155678824238476,-0.23538860899714317,0.027937487252470805 +1.2908011812135556,0.03027710248715315,-0.05458757971839884 +-0.11602475885578506,0.059473301683946156,1.0847620765059136 +0.28639349302936445,-0.21957578351686083,-0.09469379659224425 +0.19928120089292994,-0.01089822267122506,-0.1777631036201817 +-0.1406581372569528,0.3884809509687326,-0.11278381111658425 +-0.2141125158303142,-0.1018189831865213,2.2456805606580335 +-0.18829113544663156,-0.012376327514432406,1.3431213003437474 +0.22116230768852096,0.32065646498489264,0.32785278157983444 +1.5982575318713665,-0.2341787329389234,0.5960451948334038 +-0.14242330024037386,-0.10724490187836822,0.048365180659691975 +0.1698325000842138,-0.15815835558607205,1.5825090974403444 +-0.16513110816942494,-0.23101004639200082,-0.24518253896448505 +-0.17418803344788047,-0.22866013894617637,1.3172163135793467 +0.09852984328349157,-0.06308351383562577,-0.12537975812765373 +0.033304650912716394,0.0726696679675719,2.139731877980544 +0.2741464319438375,0.11460694262165105,-0.17301148714189257 +-0.13491776877038592,-0.015970091663936897,0.9553570852439222 +-0.24331957961103431,-0.07352704580331798,-0.0717967941217203 +0.01383288345656103,-0.17539377976966455,1.4048965789492147 +0.28210841073179216,0.6594374696546055,-0.1806485378481451 +1.1826616850197302,-0.06773091027422104,1.1900122986141184 +0.028015779021331844,-0.16075796950589832,1.1816764573716996 +0.12079278063634646,0.3285485784433796,1.3647623435789316 +-0.19065907335110235,-0.16932584521169441,0.7303351179253761 +0.6116400791195629,-0.09124046760797302,1.5646070908867615 +-0.20401548732144636,0.3851082922563456,0.4764705429909317 +-0.006606568877170621,-0.1539636272594196,-0.10533468617959402 +0.20675523165357212,-0.24509951041282357,2.306667757373791 +-0.11433715729264324,-0.09500737152473199,1.2376407829809468 +-0.17872758056461135,-0.08332320544815358,-0.22345900839213934 +-0.0258306995979031,-0.09127483282622986,0.262872138310981 +-0.13048662090299937,-0.01895224384158503,0.3324803028480886 +0.03834840989382737,-0.18220369895249056,2.2730063125317126 +-0.2090738821476615,-0.1811465439518673,-0.02840936282626219 +0.36515441843030405,0.1405659139272844,0.3154196290514516 +-0.09270419550329881,0.8944176329804399,1.5731956493875334 +-0.0033318455337730257,-0.24159389287760838,0.10495056441967399 +0.9433699163614149,0.09357933115510764,1.8340582530430343 +-0.23614405517686815,-0.20864090523452886,0.633525083051552 +-0.04868271536614391,-0.050978971619191404,-0.2054914230972153 +-0.1513456801899915,0.1717658602198534,0.08043823562317415 +-0.05755575599279558,-0.20366103684419115,0.5913608258175768 +0.8111926462503967,0.5202548210271638,1.15039329017531 +-0.08565395363459888,0.1529327804320722,0.22716035387043498 +0.07732417982100437,-0.15412661815402462,0.3496806692510196 +-0.10045180342085616,-0.13653672646858234,0.3943661842430207 +-0.2470892428503142,-0.17911317396263166,0.08245212970392896 +1.2040549986299887,-0.057215593122909636,0.920299883203149 +-0.2254210065759777,-0.019043216326949497,0.8875105149672169 +1.2054057701359306,0.4889564024731987,0.9705644291026556 +0.10251973963618422,-0.15017512018165563,0.6558649996770226 +0.4818355982355914,-0.16293213036296267,1.1193399959817245 +-0.13344532527520944,-0.2343438749252746,0.5226073725904974 +-0.13393851673212093,0.11810799250241749,1.4321505637083607 +0.08255289358784212,0.06276841999152727,0.1451866571332205 +0.5733941711735898,-0.19252622986621679,0.6414714149011124 +-0.13174010801146963,0.02486731992085811,3.379002432474527 +0.16549074728595203,0.11860867585885482,2.6204143968963893 +0.7106934950129429,0.39689520535339884,1.153539929831865 +0.9546236335026812,-0.11498074091530361,-0.1715053913809535 +-0.01070625759215188,-0.23832084152438807,-0.16852454236712747 +-0.13292380603932294,0.48554912909644865,-0.12536348382241524 +0.3966692863706225,0.20417233401852614,1.5023296948545273 +0.03570565675362475,-0.17016547477786628,0.018179790198571855 +-0.2487167300673132,-0.1393293030050379,-0.05569897339859323 +0.36520566203549765,-0.067844252968631,4.354545859525243 +-0.21710747357518653,0.08402106537733428,1.1705758810567028 +0.10654597349685418,0.7026451125909485,1.1133209998592317 +0.3041269761038713,-0.1598346739264886,0.029161809281698814 +0.09057377212080381,-0.05068542962397157,0.36750854877370087 +0.19271411427290214,0.06353062573032336,0.7045059664190265 +-0.20969772847547197,-0.2355696824332461,-0.04841307306681347 +0.16053760457556804,0.05360585053984912,2.9349007664362308 +0.4620783515261243,0.9376062614888319,-0.16543688922733119 +0.34127735199586484,0.13421547125261968,0.4171879767085217 +-0.23954045701774868,-0.14693644402109846,0.9586716673928228 +0.02772787413145933,-0.23871849230555364,0.4112480401951545 +1.189516981335396,-0.22899794510769775,-0.032334228659086334 +-0.08384729044997424,-0.18265617296419373,1.359614867757106 +0.17705944074286684,-0.10016746868668025,0.6279720160154041 +-0.24932967641313045,-0.15739684627993775,0.9842306670024683 +0.6661596448401762,-0.24228313389483452,0.47244835726487566 +0.45372829101394674,-0.11461112089021436,1.0479007457245466 +0.04625691863003961,0.1412778088756632,0.8459401487908265 +-0.2315778943088388,-0.02136758000932132,1.030484092782296 +0.049068845057878174,0.3624416718489242,-0.08917541404331084 +0.10979796688122023,0.005027465584716118,-0.2072731211942967 +0.15515072051452633,-0.03256056884050193,0.8153244008360896 +1.1070903911318641,-0.24624590393708443,2.0897764983679235 +-0.12053572469705445,0.129683185276814,2.1833082822526912 +-0.17204470663336485,-0.10474297089418999,-0.23654321748068943 +0.9246894289471648,-0.14718229461615012,-0.055057581064873684 +0.15837176419955146,-0.0511155314261687,0.15713878963347783 +0.07614516881101885,-0.19031737892962886,0.7051701982734855 +-0.19925636052959825,-0.0002704924222008409,2.122503928046631 +0.9580138749763285,-0.09436804993948006,0.8365865462437969 +0.5585940156135318,-0.1001808460088433,-0.05275142637275271 +0.32975395814356045,-0.1989209965002454,0.03984181313819424 +0.14260012966819308,-0.19337289003346894,0.19133384127060743 +-0.1033382482957173,-0.13444826523156128,2.703696410055034 +0.14982821737337776,-0.047791978131337565,-0.10435109465063064 +0.30812694933653983,-0.17788020594664522,0.9820586047512798 +-0.03077658153340765,-0.21512278092552,0.012102582117657745 +-0.07632334851617986,1.354342218824439,2.842168108792088 +-0.06435082760185051,-0.19649131973473768,-0.08436914793318856 +0.2349340197810586,-0.0008728132624730156,0.04838629308306275 +0.028946172957665883,-0.06536463521056596,0.4048899688985602 +-0.24238090082516062,-0.04394809674560474,0.03470147239601623 +-0.0424411600323053,0.018411616436287248,0.1340210578844559 +0.21715187292858296,-0.21769100069467182,-0.15836589252409566 +0.6866866129103171,0.00336656625172993,1.651990300227401 +0.45097397404090134,-0.2307007117492526,0.7455779324886332 +-0.14318812236178685,-0.2070647472620894,1.3643474120039614 +0.06170417882207868,-0.13522363915457636,0.1311990677036175 +-0.20846846132098276,-0.24080502079488253,-0.001493013843378438 +-0.0680538406074419,-0.11149335866665652,0.07516863597630474 +0.8534220066640867,-0.2260553278609663,0.3540507613497046 +0.08981552103502172,-0.2257275783265462,0.03219487174415936 +0.5055178080457292,-0.14909442850018925,0.010648357194424862 +0.23853754191068177,-0.060015852025147226,1.4101069398650559 +0.006928266853787335,-0.23404430371211793,1.154631447421691 +0.8330975220598245,-0.02184819572035096,-0.18756736778756108 +0.0027299775017288197,-0.23747166915125584,0.03919707793004673 +-0.019098137703916884,0.017662492965198673,0.554913051680337 +0.015580096307193092,0.32347456010012243,0.33390300431900355 +0.47767519926613566,0.28630891994689167,-0.12390717205728574 +-0.20976244988720136,-0.1034219811388157,1.6256274224313196 +0.18181266264267226,0.6115191085065204,0.3467482936906725 +-0.12737937082014233,-0.16173804768901312,-0.030481405002205947 +0.0815562260088818,-0.06324030625953428,0.9232394999766329 +-0.009778960580806295,0.22063677856159986,-0.20186068141160374 +-0.21671947390154228,-0.15219419674500378,2.3925505975691927 +1.0762396763209388,0.30322601154839657,0.01946524041820724 +1.4134190532688828,-0.18465801913591473,1.5793195908387632 +0.5117958614508484,-0.15112633557075283,0.2919059062803674 +-0.09709237828217512,-0.07820891670170763,0.14526179949578844 +0.3294425097206348,-0.24948807422265415,0.9583342358890818 +0.33666294940521757,0.12544166379282534,2.205848776518227 +-0.22733623100316933,0.007906273698487842,0.8419383078135001 +0.06494017477785852,0.02833694382399543,0.9098632834439107 +0.49490275262078753,-0.22221285794864562,0.11984894165907589 +0.898478796515467,-0.11841014249931145,2.0258380612057874 +1.8397121698555026,0.14273591117290624,1.0391282462856313 +0.11235335156065845,0.12689433376401743,-0.18461276328073795 +-0.15357296614137125,0.45925359872985727,0.8205923517689617 +0.09179744143646018,0.15605481784660136,-0.10470594374002715 +0.05385899464830651,0.009121366331528324,-0.031376462676995565 +0.33830433068996446,-0.22934962414815968,-0.18961765575393497 +0.5408179957156997,-0.22732645931301249,-0.18709632549870864 +0.30057284118301786,0.2878022270548829,0.11934962380760678 +-0.22119606010408452,-0.1035916588090876,3.744044214319666 +0.2624254748663656,-0.21160683779984718,1.375208574577515 +-0.05490687151859794,-0.17100038959865999,0.09323383091104415 +0.3186355851055822,-0.22594300900857497,1.658212555646925 +1.135844514682156,-0.02437435155718745,0.1738828563451162 +0.24434383643603586,-0.20814591786401024,1.7526697265894207 +-0.021828172128894957,-0.21932130773107472,-0.22322591442967518 +0.23539638803864577,0.6515643048764259,-0.03818496128014262 +-0.069157298231633,-0.011567656925740966,2.858754940271123 +0.7061441774899572,0.2637653768941015,1.1184499124354077 +0.3068326295725038,-0.08995400283149896,0.49169789353916526 +-0.09481535709635994,-0.08792067241870388,0.018566189327453297 +0.24405220768462077,-0.08664787569896429,1.0618462871282837 +-0.13926337968194696,-0.22940421227881566,0.01249313238017391 +-0.2042969720460198,-0.054529698232875845,0.5561788997262057 +-0.10927956764413499,0.04596257485562155,0.11392869278461115 +0.8293175963403872,0.1993826457967332,-0.20165374115831602 +0.11126339350690523,-0.21983116476145956,0.33303522136822494 +0.35163836851680164,-0.16228471717961945,-0.2009191193353339 +0.748840142951818,-0.11060830942623576,0.11233459434466009 +0.5907530316163175,1.0726403884926683,0.46027711101415714 +-0.07231693022584712,0.2654488269699623,0.4998313946174011 +0.6905614694495681,-0.17980973051044716,-0.07216766276701544 +-0.17269466234295922,0.4749142632054031,4.2756540286047535 +0.15686071526470863,-0.07507688687072897,-0.029078848327754397 +0.020950296407115876,-0.23548629670043655,0.006801355760043093 +-0.23731700019240512,0.8648844708333006,-0.04675206584254521 +0.13822107374806808,-0.05255354506218801,0.557668192869654 +-0.00037029662067050717,0.0956852961964883,0.8356264837008054 +-0.19539863593810838,-0.21184831162262321,0.8174387718764999 +0.29503259352703104,-0.24417387861411932,0.4697831749311481 +0.592081221733509,0.5986315234165626,0.5871222124985845 +-0.16818738939770495,0.4761441299308098,2.294536011463982 +0.867092345062856,0.6491422184080455,-0.1610311941672133 +0.014022413051639038,0.6122314614876395,3.1872633052247084 +0.8050981676335258,-0.10634194122926616,-0.051269801260971776 +-0.15745881095436542,-0.1844239937185132,0.9777394363576628 +0.026522870776508334,0.15752248486729592,-0.15746863010947476 +0.2388606627118015,-0.16300027753717494,1.7511020154018615 +-0.06812625731250357,-0.1997971142590691,0.07686850457975963 +-0.06274548861679463,-0.17194245271589292,0.22698534153012678 +-0.09950569827981079,-0.10584875465685464,0.5618376748608765 +-0.02192287157477188,-0.18289657083578648,-0.21490072960644657 +0.2060349503898785,-0.0734392614289332,5.069442089335836 +0.4384226252553233,0.6409009304488543,-0.010890165186861062 +-0.2479887115806649,-0.24263920107347592,0.8034611933890032 +-0.04534044855134248,-0.08817146258627559,0.5567572400458384 +0.005901805738955157,-0.010229672880435997,0.3979528613410682 +0.6536114971271266,0.9369253356818299,0.534583320413532 +-0.19418162212427525,0.16071633748625513,0.672886241297609 +0.1223260102736442,-0.16431822831585294,3.84209375326553 +-0.21008268308484462,-0.14303828418038594,0.1183688385275945 +1.2787379565705503,0.4082332812197481,0.8591209842409264 +0.1923251819879993,-0.1245719261327822,0.9810344104894986 +1.933309790832073,0.16128825463395702,1.251801254578547 +-0.23349500493696443,-0.15124175309982713,-0.19952431298954842 +-0.09884345145961707,-0.03134612309504903,-0.018795002377779313 +-0.15738845909758414,0.01080234552364745,-0.013330671425496932 +0.26124456798745765,0.10220643385523703,0.18576005895500675 +0.7280636593098759,0.10611298950213649,0.36300743995753126 +0.1811459227130311,-0.15609881495259326,0.29492632390222284 +0.2849028089532333,-0.14176589471964063,0.5855955643693901 +-0.04027809442037311,-0.06360029214461155,-0.011251635232034263 +-0.15514991535820716,0.32924385332520056,0.0631141910318499 +-0.07382002727773085,0.4780814781820073,-0.2306737775135179 +0.2579184413365686,0.26765509691485156,0.36007371179013503 +0.20918485583982305,-0.05064661146768362,0.12524611571637417 +0.36747429161826384,-0.1433310228875177,-0.03949660438671601 +0.1054350372365383,0.019193138482099137,0.7004357718484884 +-0.14922356073209886,-0.04937243987308565,0.22670908810278118 +0.03502522721259044,0.01353004209443398,-0.16779410415182344 +0.3141756236198938,-0.2355408662411747,-0.14654214733041165 +0.24576562719214412,-0.005543947013184558,0.47507415004431064 +0.011878679200708064,-0.22604497613713975,0.7588313507538387 +-0.14724374704556986,0.08957455899888567,0.24119330056853405 +-0.016274597834567056,-0.1672284013390701,1.952686379702448 +0.41788006981300385,-0.22462584035583558,1.5594249007976337 +-0.13110547009085471,-0.023487777072505656,1.0326897074571493 +-0.015435489397922886,-0.12996655284716538,0.2401192815063134 +0.37440280291609007,-0.14062281263476423,0.5440350338924871 +0.6136862094974723,0.0669223602297942,-0.24545716250037392 +1.2034694652893774,-0.14260631478670438,0.6808451005989037 +0.0028988090954575885,0.13021074584847742,2.1867558767260236 +0.45556257676384193,0.005736030899724076,-0.08379271714876846 +0.34038584353785306,0.4696645511289914,0.1962004978230657 +0.6355258887094828,-0.05081227503954666,0.2192852238268828 +0.07525290397496326,0.005673180017052637,-0.07898038098896618 +-0.2007998274346072,-0.18323789642065746,-0.23732209073606098 +0.7498250635103719,0.18330290581600617,3.344694436933816 +1.4665876798216746,1.2573978645712092,-0.2351778493843565 +-0.23837441592721162,0.6307366858639551,-0.07610767109234462 +0.03090862715546644,-0.12279283604296665,-0.07236752547153125 +-0.010449046636109016,0.39215779426313846,1.9180578664761687 +-0.19419043932285515,-0.22416611086805988,-0.21555937318320573 +-0.02209580899665567,0.8046862411881672,-0.22734296474880977 +0.0648961697734457,-0.22416188671708562,-0.09349034631893285 +-0.12472526042446874,0.09898936050589324,0.8478184600743788 +-0.15748599120354773,0.04093446630838188,0.01083705704250748 +-0.09594891268825673,-0.21357045907101563,0.606076611815711 +-0.19025518750507006,0.9284690371775963,0.06838765104458211 +0.368145635704923,1.4687473914945468,0.06672770982472492 +0.5652010619013242,-0.24850293645339128,0.8310067415834119 +0.9738581045572583,0.08291989480627798,-0.14003747461046545 +1.1530064047428261,-0.24079017463621064,0.7178655259975578 +-0.01592772846819726,0.324522126398996,0.12360185755496905 +-0.23306316973870428,-0.1254486259804347,0.539138048257091 +-0.02650395814954351,-0.22892004110012432,0.6851938621123326 +1.302664962370469,-0.14943218583664147,0.1392721269534442 +0.1261412814921702,0.6155384319878711,0.5326322752190717 +-0.006759880571282739,-0.149339216660609,0.052658352118480356 +-0.0019603485722407554,-0.07117425314252207,-0.05029111474606193 +0.22911255820730742,0.30715375449616755,0.5904426628526069 +0.006020112699551883,-0.23697402061087794,-0.20967449701357932 +-0.22744523419132207,0.16748626557543134,-0.14788271156470037 +0.34799775100685537,0.3210015397679683,-0.21782782160630157 +-0.18163073291107906,0.20661947431613353,-0.05933115726595439 +-0.19420612808307836,0.1336509703902904,1.1750654192423098 +0.06971297946497834,0.32939661123994735,2.4087458787128804 +-0.06593571406431947,0.2938786511255935,0.20292942321090968 +0.3458266939978185,-0.03033461400921747,0.35267636272131975 +0.15095605573356147,0.3818058265952625,-0.2045607102627654 +0.23450903906450804,0.0346792707820095,-0.03902311203268455 +-0.16807989007534835,-0.19133053575840253,1.176035769030212 +0.11606446219832028,-0.16296197695482462,0.07609025060252439 +-0.24757225831894533,0.33341974324802814,0.6187014209629309 +-0.19858158021211147,0.5374937502979336,-0.24770150839989838 +0.03254277087659291,-0.17460572305473765,1.0425292551411345 +-0.2340034865067186,-0.16966433917859303,-0.12625424266983026 +0.2805966141676448,-0.19492720692809296,0.6406461140538862 +-0.1532853009599101,-0.16657806621286506,0.5396756376126424 +-0.03476959798619514,-0.21786278001478465,0.8664696287719085 +-0.016253295915492655,0.2692420993999477,0.7092747811726412 +0.16133105776767176,-0.19711241285835718,-0.24015404793299244 +-0.140956756750985,-0.05351342485552105,-0.12147781365822288 +0.6043167674062739,-0.1281755381452691,0.7008994887693931 +0.04169050888326048,-0.12285457701653749,0.14520247195921188 +0.41534678160806004,0.44595244611822293,-0.15518349685597294 +0.09136782040468677,0.09458594762603101,2.0163541712217374 +-0.24465289965653395,-0.20715323274442685,-0.20232667776942403 +-0.048359238196586385,0.27801641205448646,2.500729969821374 +0.37592172171309424,-0.17110904763972618,0.4432858868833087 +0.016267688670168756,0.02921816589962145,2.6592360516969293 +0.9897345814334195,-0.17312901729481034,-0.21006284252739127 +-0.12137492904162164,0.46687259648638213,0.37515491629723186 +-0.17466262776854097,-0.08535810213756775,0.7650003035091755 +-0.1376900256160154,-0.22359918131951778,0.8819398085643246 +0.1521986762665093,-0.21406734895272173,0.66184025407773 +-0.1361591487440041,0.10043365553316058,1.7164271870640415 +0.20887623630699786,-0.22064262743786842,0.6833886561171664 +0.32024293729395426,-0.21749552512392642,0.20586303230266018 +-0.16252646761470046,-0.19587983700907963,0.6209637092811316 +0.3111890397415872,-0.2202118290597562,-0.18208438825441464 +0.3710981294251946,-0.029475046962765705,0.7917849997604716 +-0.21372445550735616,-0.06676475060895765,1.3858876814646133 +0.3757412298466839,-0.2380502738042336,1.4784071717088505 +0.10784019073097684,-0.046405811218473425,0.10150487003700476 +0.01581955852220651,0.08167961950506503,0.2884433558801929 +-0.16814424507603506,-0.11165369165643713,-0.20141509811893543 +0.38498506228239837,-0.14527828937463844,0.14151169396593383 +-0.15650708090531884,0.14789568302564576,3.766842520560708 +-0.19324290602180721,-0.13270099257228088,0.3628848307886582 +-0.015814588885616376,-0.24155015492884585,0.90202472452798 +-0.2131956710363216,0.564615351037565,-0.22606872306961753 +-0.16216917278463805,-0.09483377954184752,0.8903758643354782 +0.21300903037006746,-0.1699157117796531,-0.23866366259896266 +0.008561815685443008,-0.04101544413326308,0.19437065228640688 +-0.1312940853299595,0.03458815088385292,1.8048837352558738 +0.3169852332359232,-0.03677657778855514,0.5141899909930359 +1.0534531724524905,0.12908855567023425,0.006950861985527301 +0.1792190827134782,-0.04708919923490054,-0.01402253001735379 +-0.08891565626866516,-0.1705537160402779,0.553526643931828 +0.13507661891005607,0.41380289568162987,0.11639043231751423 +-0.16342742946105127,0.09377664547724712,-0.15117772863395412 +0.23230489923717795,0.006073247391932546,1.743378411391121 +0.5349278575442161,-0.1252862881696511,1.0526972416029607 +0.1421348994634793,0.42419361533154487,1.9683396807597093 +-0.09370555397058858,0.017953689010443086,0.17628959218329132 +-0.17771735283646672,-0.043249136225782664,0.896086046655604 +0.8808298490508064,-0.23537043032429306,0.6712625156456236 +0.03627534132751614,-0.16870584308139763,-0.08786385940395558 +-0.03788046236831044,-0.08324412594215277,1.029508559355204 +-0.20609309970539505,-0.22937513973333792,0.4011130682398413 +0.19700074409324358,0.042041914786657086,-0.05031491108104577 +0.46313259462519507,-0.23952733619849362,0.6333776960865012 +0.055135648707367646,0.39499299115851205,0.6728668472973112 +0.11581994122008737,-0.19314616893002157,0.006676045755311777 +0.102761900893452,-0.045796176231307995,0.7614306582456019 +0.23534112878979824,-0.07302529536022798,1.5369110781810953 +0.46646896724499665,-0.20201185523534954,0.6443721564564043 +0.6783177263034229,-0.022953042866846934,-0.19979441396659267 +0.395691979945333,-0.1629797764587867,-0.18033200588526832 +-0.20206762029735412,-0.10119837151211511,0.22077121616885187 +0.15998019523316476,-0.07501854999728921,0.024071831549351164 +-0.1107864676761125,-0.0864993533350778,1.2274707265533837 +0.1346232884718745,-0.03962327390861542,0.7246299680510134 +0.19720118209975396,0.4132864111522373,0.5876312397691338 +0.02001943223988878,0.1576298675125421,0.35180840510420597 +-0.10470974653334805,1.299970188951314,-0.16564687325615474 +0.34936169692959573,-0.2184287322014432,1.172038144929525 +0.8812291605940163,-0.07816756740350439,-0.202604292099294 +0.0998828622579292,-0.1515781963380638,-0.05769202515482841 +0.48460225240886445,-0.24007667410678823,1.2608945098015252 +-0.17732902332853523,-0.1727658714242514,0.5087960072455419 +-0.22536987157102278,-0.21829468484375764,2.210418847840379 +-0.21821085066942733,0.060626893321513275,0.8847047432552411 +-0.029504842882176197,0.029427930553653336,1.4298520452023986 +-0.17433494120340526,0.14714100079018133,-0.06358770407420827 +-0.1761807681035905,0.04640780779748532,-0.24163180588624197 +0.6271136936464959,0.23620753310502457,1.3648960647334714 +-0.00678909628032312,0.23226384940529665,0.7707401700855758 +0.7152134629243281,0.08904817311287572,0.5320148614606133 +0.34876232134681384,-0.17323974354180816,1.0009880486051994 +-0.1407162049752549,-0.2214987831833343,0.7968506047262678 +-0.0008712946143626943,-0.11597811761990565,-0.028590359180385577 +-0.20158053805110307,0.42259747929703284,0.6882937575047897 +0.4936422993792,-0.04443141062795014,0.2575835941830176 +-0.05096904344961756,-0.22363124634565695,1.8214039540573 +0.16319555567154137,-0.1894837971442825,2.4475813829689756 +0.37236468164358283,-0.2088958500630115,-0.14868629117092352 +-0.2485881302788078,-0.2231682856427074,0.8659182433761599 +0.1542788568786882,0.16677916819016753,0.3205945394836469 +0.21159618876089348,-0.15149460756537286,0.643502899128528 +0.05987661639051528,-0.09069999888819441,2.974435490621046 +0.740529618866101,-0.21697065485600514,0.9050916254956729 +0.27786128403597055,-0.2129382673384099,1.2573638389039234 +-0.20475643766163584,-0.20774083406164334,1.0132950667584104 +0.7152579627752289,0.8967511301115467,-0.08234198604529744 +-0.1199106353835549,-0.17163020372364535,0.24949131705988742 +0.3092236501561326,0.5857837778395867,0.57962526831784 +0.042709654198806124,-0.05420975807468387,0.6726521419155511 +-0.03535141782393622,0.03174137710232505,0.7375852896934018 +-0.20415283620940788,-0.054437331157072444,0.7346116609963387 +-0.24197200611820815,0.04666365227295366,0.3604695425932133 +-0.19877908656539836,-0.2009336951158457,0.5507104324871954 +0.23367724849155874,-0.12533217286367812,0.9359793793749338 +0.11725672548712157,-0.17389951084201266,-0.049972526398819134 +0.8117256155815675,0.04004431192578212,1.9461016007825114 +0.07979831837817741,-0.1366202595733288,-0.23572625526594174 +0.04286153656978409,-0.22835890127355654,-0.21480587640133317 +0.669990543598252,0.23202248507523904,-0.05056308929777428 +0.3880964518214576,0.09425241848912358,0.26205125281188446 +0.029152271441460154,0.10374515009931351,0.2633088440347404 +0.4358387324945988,-0.10614692276236104,-0.03283209458594699 +0.4264343142734066,0.601052508335176,3.031430192617981 +-0.1316764131000846,-0.16998960479800335,0.860537056179943 +0.28910247792510113,0.1641529526344344,1.849046463495804 +0.060041190318813775,0.5729350660184324,-0.10699361651904754 +-0.04319431901378376,-0.10703153623800565,1.4668674398997419 +1.7013111782194439,-0.049719439970257406,0.2893187720857431 +-0.03643396798561366,-0.1922248497571728,0.02492288806897308 +0.2714734987587497,0.5859767011520685,0.7841531220786244 +0.0037024873076920706,-0.1846098521693755,-0.004413857737471882 +-0.14991903175905133,-0.010943551719288458,-0.13712971537493107 +-0.1354580329991909,-0.1733902468951089,1.3408956016565732 +-0.164997760067427,0.13419198885559602,-0.1657959267687952 +-0.17970978436673485,-0.1626931908172056,1.8822783887250485 +-0.24863613911736082,-0.16804642932227803,1.5341812101414376 +0.033703160181112524,-0.22748279139315175,1.336607908967718 +0.09330749004788486,-0.14495120420182506,0.22025607515910983 +0.2327319096595678,-0.24990362432546268,0.5630693495370294 +-0.24395782450016054,-0.10088183156915548,2.661805895507899 +0.4453954076275787,0.24867821747302166,3.650311333383648 +-0.21724029354386298,-0.10563016801232317,1.889965547196569 +-0.15098697583509807,0.028643174268105143,0.1363250974242577 +0.5528001436527171,0.05495164622844467,1.9659657365071417 +0.18402632662055252,-0.23679045987755634,0.36309036752778334 +0.6190260654364724,0.017937214114736144,0.24755449009387948 +-0.09052578466710562,-0.1382739052352585,1.2318509494982792 +0.007331671108293414,-0.1597915800012506,1.035918878251895 +-0.03052982004655186,-0.07445869325520343,0.24977722148504555 +0.6067024919540002,-0.20999205820953026,0.03719225073975441 +0.1413431901094392,0.4116861930668887,-0.07258188544156996 +0.4336441414345511,-0.05712814859950821,0.07540030046851642 +-0.04878502389825165,-0.24091089616133526,1.378630910659926 +0.7156775971848902,-0.08417170231305954,1.0341331199544395 +-0.24803672617118436,0.7826517844865277,0.18819751301988097 +-0.004200540484523424,-0.07416438310110224,0.22231993577164838 +1.0099482407465243,-0.1315061261880408,0.0725319644529464 +0.33416866287159663,-0.23488802259064365,0.20489882057316317 +-0.13986224028243127,-0.2445200144588898,0.8183786265488131 +0.22255582166508442,-0.02374298441508435,0.9961690532733392 +-0.21706729849172887,-0.0004774258200571091,1.1079921306157947 +0.07555309103122931,-0.07136984582411238,0.2643578308281138 +0.27062997052953186,-0.16209643571793625,0.02213545998452293 +-0.18977684898743613,0.5332775222164224,4.979954259380257 +-0.09299417054607856,0.29084872361265535,0.3423527746318409 +0.055218829018590154,-0.22281617913424367,0.1098724713761316 +0.3410528070499259,0.5738121549115555,-0.1877161069826145 +0.04733649758671843,-0.23067722735783527,-0.017403949380555506 +0.0721394723652074,0.6162989411413704,-0.15591794312471732 +0.11761394154942095,0.5503111833883648,-0.18162436544697796 +-0.09588590321420307,-0.12848580763391398,0.4311516982098724 +-0.18316265395367284,-0.03629158047142669,0.1788343797930103 +-0.05932157758751058,0.2299471182864497,2.5791008640221675 +0.13777374311985524,-0.14634507169799454,0.15767093307940416 +-0.10414276320134463,0.10954478825109759,0.2092690236705661 +0.8010465227490207,-0.20017525861584878,1.3693012705873477 +-0.06862437770946458,0.4401457177880992,1.355801115536191 +0.7504994881062246,0.14644917902065646,-0.04938360914031667 +-0.1094472831383837,0.02136758184790316,1.1956586591982759 +0.04654210317643992,0.1769944580696266,-0.12020428120787957 +0.1465174067088929,0.2131545998737432,1.2758863276212957 +0.6484162397500639,0.3762711942241631,0.017287886582142198 +-0.005964717987853141,-0.1731889131377647,1.830283848181296 +-0.15288435735221476,-0.19816140711484542,-0.03864876133698544 +0.28965598380151525,-0.06643205289617374,-0.12091757481826618 +0.10946430645705468,0.45235186560953355,1.0303362041802437 +0.44556901250655356,-0.14854336719914904,1.554358442382603 +-0.06017508090131063,-0.06098383250413303,0.957876501788486 +0.189513634528801,-0.24946134680051713,0.4247931080709483 +0.40943205280741335,0.03581514160107552,0.5841128863695274 +-0.2288971678212723,-0.013436529212339371,0.022695479960296694 +-0.22204513142352045,-0.10769005481978253,0.06436303179581354 +0.16928684614026301,0.5060847213643965,0.09219718155467627 +0.3017256496183216,-0.09618767651821097,0.055194981484197436 +0.29751696136826533,-0.22533941849979522,-0.11422889482763945 +-0.18772387768722368,0.46436017493035375,0.325325955447213 +-0.12485621381168496,-0.2478314572948239,0.5538306470721057 +-0.21920698991321344,-0.18221663956034292,0.8429221325830503 +0.1877131164376824,0.16385212463484566,2.6710635706408716 +0.46288649856826414,0.17719776658865777,-0.21159420538526155 +-0.012554727838727603,-0.1974793329773567,-0.0862893973319662 +0.3777124190652862,-0.17938458849483518,1.1852674197102568 +0.1300320269559601,-0.026320415748711357,0.1304864961132774 +-0.1677039408617149,-0.19327549381867515,0.15047055794016573 +0.1963625106069523,0.32641489350363184,0.8192984768921854 +-0.16448558521761775,0.02500758516849577,-0.06583076979553118 +0.813904364792803,-0.24058558860626036,-0.021966051511532025 +-0.21447836491198086,-0.2480332660518031,0.3034090350168448 +0.004480761665482669,-0.12247929140873845,-0.1253936911101583 +0.6845764273772311,-0.0471983215709991,-0.13800819460954955 +-0.24480064032421883,-0.1313380891198706,-0.12314440501243956 +-0.06928325550187558,0.24106054590602755,-0.017309558457706598 +0.2845463905932767,-0.06024855446272215,0.5779219065130957 +0.09904783854206178,-0.22868293838825107,0.537444752269353 +-0.121737267703587,0.3039049683140488,0.8212061290514681 +0.612549644673829,0.06691789546839949,-0.22717551771007252 +1.0820775498111115,-0.23738937651315886,2.1712192969881756 +-0.03224988761080275,-0.14612011838660577,2.1757901589600404 +0.1339646038399429,0.017997606986557835,0.8675128667919965 +1.4379045632621716,-0.17622802710573138,0.4310185519010039 +0.16037158819210057,-0.22002906180009735,-0.2055676417139591 +-0.2117537639992283,-0.22098857071524403,-0.22376780056521972 +0.5843324026083233,-0.21179585824139754,-0.1995864452295681 +-0.0213150122202386,0.002820784154820788,-0.15638333456407844 +0.16748966954453892,1.1512111628868371,0.1409385820285427 +-0.051426646790151825,-0.17352603766373442,1.7476803489678998 +-0.08389271703200138,-0.21143285437975443,1.0746164446642743 +0.28732692788496883,-0.23795252570261244,0.342302495391543 +0.03238194883622675,0.4683047471738555,0.4141775739604686 +0.020008841635899832,0.5538404416381834,-0.14164935232667286 +0.31548335487605716,0.27293252070542495,0.23902419129163288 +-0.22733173678821922,0.25236866207973374,0.7281909590601551 +0.7979960951671059,-0.09801982087817815,-0.048316624196692304 +-0.018221167711338332,0.77749450294062,2.0141502456093945 +-0.21666506371823424,0.14589975993081256,-0.020698353803915465 +0.21571280058464143,-0.0670423880312565,0.8345742022699281 +0.29416256094141513,0.051096258443697806,1.1015803281995111 +0.023618507188571225,-0.19440871982874466,1.2261869605805693 +0.27155479110867575,-0.2241013828623417,2.108563214708438 +-0.0914588520022605,-0.16000524947571826,-0.08173211060028943 +-0.1450415017663202,-0.18640411031834303,-0.18935531191798127 +-0.22884473298273553,-0.05329540343745556,0.3849581620957978 +1.3477864290946513,-0.10216903326530372,0.043886061303309076 +-0.1897657739141751,0.13463683688645078,0.6082661481317634 +1.616722372310861,-0.23709131420068877,1.391456294686601 +-0.051639265253269284,0.016547769328687123,1.3019642810212193 +0.5932307161358275,0.08317000089243731,0.5745772846769335 +-0.22323566928680502,0.0650880444583895,0.26834939348718323 +0.21340475310765228,-0.17324510495597245,-0.12022635827693892 +-0.15187187898091642,0.0038936799152050616,-0.06807580381789782 +0.145536656702494,-0.08764536773972328,-0.23553894866723044 +0.032509096314597585,-0.24342114003233248,0.3402092594921302 +0.19872500317662745,-0.2430406472204787,0.6626707591713977 +0.08424377526580623,0.45116569977285004,-0.011325154901497048 +0.7060531708117834,-0.05537355733087304,-0.12547937489088998 +-0.1728922126498218,0.49637277600453433,0.5703542291066379 +-0.16023460625533653,-0.01308024778110331,2.2586044606994067 +0.057288735067508034,-0.12124943893697351,3.264907285581066 +-0.12207877881429677,0.10510140560727288,0.22623576739490264 +-0.02710169624233194,-0.05978194270409545,0.18065494927378 +1.5284256687443278,0.04575772883350293,-0.17593845119035809 +-0.0815594599058587,-0.19694004749982985,1.9125717869954952 +-0.1270190751500399,-0.13076583866754538,0.4441711866713667 +0.45322909955460855,-0.06197829241093217,0.4001047264212546 +0.7671728170795067,-0.24776153479510082,-0.1640687845347213 +-0.060825842941878344,0.048855065284548305,0.3438746873229238 +0.16599262612963217,0.0014223466945796903,0.6670105979887374 +0.45974239197100575,-0.20016496646413123,0.06220638299647996 +-0.11151562260589462,-0.12231168020522529,-0.19652957005170443 +0.2830234930081429,-0.10478477641132714,-0.24846589753160592 +-0.2205993485291758,0.02907829932028566,0.2989434365949125 +0.09853119624455092,-0.15576586970272083,0.604492507268116 +0.01708830943153261,0.23995717731543958,0.4228418323208346 +-0.19371733403484986,-0.1413212914934985,0.44547957801361737 +0.13993554204413605,-0.15493854657274958,1.0385664960293783 +-0.21156849707284006,-0.06237299689301956,1.4454488035271496 +-0.012771180411822958,0.3375623378666679,0.20343217107042239 +-0.09579758257002341,-0.0032369102556447926,1.310371108222864 +-0.13193602457689102,-0.06588424222656614,-0.10547254672332632 +0.26811677287336766,-0.18168873640763028,1.0035119906839352 +-0.24684310915901717,-0.0033280799046051524,-0.24884460797120145 +0.11058304053425044,-0.2179820484617984,-0.01639840095898354 +-0.2485052053122837,-0.14806614178166544,0.6925472810100427 +0.1552764625007927,-0.22703898845014892,0.12447925975364849 +-0.12339464635007566,-0.19796046243288265,0.014827898386341687 +0.19715795822564286,0.33923475396854186,0.191494443865252 +-0.18529404219529327,-0.09669037846808781,-0.24036087013830934 +-0.1955337302886894,-0.03149500830194496,0.23816937697543628 +-0.22888776912147857,-0.1356761882662737,1.901051756227297 +-0.1244253972040949,0.1305213436932332,-0.02223117527076751 +-0.02026925147587838,-0.17517893364443932,0.19454208785940608 +0.27407593861204216,-0.0868021955794624,0.9804673775472428 +0.5046435171283414,0.012792040546155292,0.43233677455132047 +0.1394663857416092,0.3687750733120524,-0.015185952971269262 +-0.22696082530835976,-0.2141496392817631,-0.0834201043921628 +-0.08664773413808532,0.06562606930270631,2.6341272981605184 +-0.22729966024805773,0.5982918291358753,-0.07120062527718696 +0.23700611775509994,-0.009890923259728374,1.9528226811449172 +0.445232798273856,-0.19087618191270195,1.1379263648788664 +-0.12819429322994486,-0.11873499076505997,-0.20542497597623985 +-0.030549850859310668,0.15615685868755802,0.47889616136916613 +0.18700990345146695,0.1496005540261227,-0.24047655680505994 +-0.12322348653913923,-0.24997802753713522,-0.03821601530545746 +-0.1089957618814422,0.0986922422318342,0.16432637335180222 +-0.006759865004582144,0.18839955545748743,1.0335214605898222 +0.12797915434025048,0.059053231364817216,0.8281588357404199 +-0.0973101875717797,-0.04386169211977642,-0.09681715860542531 +-0.18624393808953094,-0.18089487848568303,-0.14555195527904086 +0.7923179943352912,-0.14887223732185784,1.494932059873612 +-0.05991956120047906,0.3255884078634521,0.2636509522205659 +0.022181831214537817,-0.20705348910090468,0.1743413480280272 +0.5866224425079681,0.107306200132263,-0.17211590545713013 +0.22312567010662293,-0.05286288577074211,-0.21365501469025558 +0.13846600243959545,-0.21092082703537843,0.32375544620484265 +0.37851719766924063,0.1192391504147578,-0.11792298380278787 +-0.14033299346142933,-0.23698769385497723,0.45546110992589617 +0.4808510099573312,0.6981962190577545,0.07495949883979736 +-0.20232525347935967,0.3433928112819339,-0.20311603546826912 +0.6976035913398582,0.009995385941706847,8.564200848443708 +-0.22961423814467571,0.34748439457770197,1.642892364344608 +0.03561744959324631,0.4639291879270331,-0.19430080560276253 +0.2835403364576028,-0.10174483382017435,-0.02441118719913707 +-0.15393928116861963,-0.11741579474025388,1.9394660983423058 +-0.17292228699899204,-0.026875411441055708,0.06639376411009656 +0.7143542058191876,-0.08107826015374567,-0.001516927031198989 +-0.16679476535201368,-0.11600667286868871,2.0907827933083345 +-0.19014520789147835,0.36846538690470165,0.16794111218405594 +-0.03169280394989307,-0.20136871724441088,1.0495623135330674 +-0.2497876742783702,-0.1675955138770828,1.5102478677841433 +0.10243140708994608,0.016996628754974874,0.7597717375313531 +-0.12927586210905645,-0.07663551014468295,0.41477756600892735 +0.4421836801797966,0.5456484748411008,-0.013285441030645107 +-0.16222568542777352,0.2589829459866414,1.6446403274219394 +-0.0025664588272209243,0.317708850910717,1.2183858009394768 +0.03211421644124973,-0.18523771800782812,1.307665366587768 +-0.1482029451847176,-0.10165005725466564,0.636996742034861 +-0.1541311641020442,0.029360876555170667,0.23736371768685327 +0.36736279532838534,-0.07427769880358837,0.23365316318448953 +0.0118348398630444,0.17266786831535658,0.44561711659738557 +0.04796753286838101,-0.11100744162222412,1.4744289991348838 +-0.19985748873574377,-0.2318203718333629,1.155837774219282 +0.06549375462878898,0.01054943223053173,0.07574457555778141 +1.225305745234413,-0.033971046898159246,0.5743864856339476 +0.28043570859324474,-0.10059264151422664,1.497976638656328 +-0.21454599588166276,0.0988127847718151,0.07678065724678529 +0.15069106719719827,0.25559397436449116,0.4197282383222303 +0.24404275145594995,0.27446470387806887,0.7138597006234855 +0.022505588334394422,-0.21193961079106471,0.9450060129200724 +0.14319698641922585,0.02431067631148881,0.08694283275754155 +0.10633228032189762,-0.19194494878098278,-0.24199608480022133 +0.3026259582563211,0.703541948608554,0.027559185704177147 +-0.20699377415852088,-0.1391498836963495,0.26098430519840476 +0.47480269201713377,-0.1573833273323677,1.0606262569352929 +-0.24078697969793156,0.512766751510613,0.4886335092983807 +-0.24611773605491563,0.09467321849201621,0.24527147258945192 +0.23695884247530968,1.1114007629794433,1.1890750086566777 +0.25016428268360336,0.05159783387363448,0.28015900635460844 +0.5002412732515407,0.13246766201955418,0.23303635330975392 +-0.04542226974000024,-0.1387077884671523,0.822794548341077 +0.14284472234855028,-0.0031361753027250305,1.079572038365658 +0.8374049778208874,0.3960969784890789,0.8621759439376939 +0.7466994858556021,-0.07399603283181336,0.13049433633160334 +0.4237465017276304,0.049534233546253525,0.5210505217404569 +0.2614631431084621,-0.24040847565834028,1.6025962615889344 +-0.1485602740417501,0.2619413452283047,0.9896458187250752 +-0.08968730345874423,0.4820443865617411,-0.23724044982263354 +0.5476835863442133,0.11659650026017832,0.6315744493876836 +0.04833390727140818,0.17420221645722345,-0.012222796028899224 +-0.22151127912182422,0.36180428528985287,1.03237390256087 +-0.19107400625981566,-0.03847525072328492,0.02691564143631786 +0.1306604748642149,0.032407735852164166,2.4227366425866688 +0.005134676763843493,0.10279910369045164,1.1908582471100357 +-0.05800772398400372,0.30966837934186753,0.31504244636262557 +0.725589738662084,-0.14814911405840675,0.7978865917328148 +0.08363599158316154,-0.08973176677463965,0.9820143611524084 +0.8611888290161775,-0.2441553534710928,0.7420560870095959 +0.06740669432421098,-0.09246287369453593,0.19765872401202683 +-0.11367242264047162,-0.08492937491389854,-0.05499091615800353 +-0.22489544121114874,0.8403519977616254,-0.1025289461061682 +1.6410656078702406,-0.22918186143660615,0.08446356287609164 +-0.22244862436583102,0.017882528804297693,0.686835999421531 +0.3881409473722158,-0.010758370053428945,0.010373364537439478 +0.16676191298045756,-0.10523988336677423,0.18513554330623916 +-0.18049918471393786,-0.020479343777942166,0.19232738029016883 +0.7980996663049233,-0.22793065233211565,0.06399411791649601 +0.3625047714876243,-0.2250964774314435,1.389961515842477 +1.3829698606961882,-0.14800911683626786,2.190377620121949 +0.7709355438380234,-0.24542374285532054,3.1638340521683888 +0.19144105482190416,0.23581246717081394,0.03475988523296186 +1.1144249640453707,-0.24076983363944712,0.5255336241045984 +-0.08445464446682158,0.09934493372396075,0.03235192658889274 +0.26514513490290303,-0.1012265936241431,0.8071319883032975 +0.04377780606324472,0.27903076477068767,0.7179985218735568 +0.017668603022677587,0.02205096937131734,0.5486916468865894 +-0.044834074644625715,0.19881600226251284,1.6364761432803192 +-0.23259348814835965,-0.06859444062666223,0.07111138501077585 +0.3101446694795531,-0.16270821809903024,0.37958931582740796 +-0.2185106953359472,-0.04801350232152046,0.5402233681390043 +-0.07180413701873078,0.04040895916471965,-0.1716854872359527 +0.17745620340527657,-0.037530654806669755,1.439820721587036 +0.6554552302372294,-0.12430108702785592,2.2903285934986157 +0.8378153592201443,-0.19565706864596738,1.126460401281339 +0.11399160272576536,-0.24439693716055205,0.24016930132200937 +0.03192247672688553,-0.15055535712888227,-0.01966121433538151 +-0.10387265161393597,-0.16707019618412375,1.4624253527995972 +-0.13427316159479707,-0.24961248788032167,-0.18498772014531545 +0.3141324216119411,-0.08045096510156721,0.5738205653065478 +-0.163716135893907,0.02575267204340903,-0.014835457345697495 +0.008827309339442202,0.24141503651053614,0.30040653814462415 +-0.03398652270869529,-0.15327122084420025,0.5627215112075192 +1.179146339562611,-0.06461633777054826,-0.0514984993216176 +0.9426202468826674,-0.24058714457097785,0.582345285028151 +0.48043507335518065,-0.064784521950153,0.6728269296154852 +-0.10764870268692833,-0.09112746156735999,0.1791323114070134 +0.20151485418181897,-0.20038661273462438,-0.08844869120278431 +-0.15102534256626723,0.27333176910135015,-0.08397311498249521 +0.27677533338625293,-0.22679993959655698,-0.10192787312011761 +0.5219771567771495,-0.09215977668608807,0.4116666073416363 +0.7093265632639912,-0.11304502190323709,0.26671001172689435 +0.4882404371023238,-0.17411726934243632,0.8815425476453549 +-0.13374529108759275,-0.23918514668451896,0.4134615790566658 +0.0904379066744222,0.023392781898986248,4.421750203490012 +-0.1621774818654405,-0.1524719584833822,0.5713427891322165 +0.15454524001608688,0.3950833609287353,0.6370385294674201 +0.2906892486237992,0.759377239169192,0.5410242619428423 +-0.02382446335869734,-0.036229218445306965,0.8127285764126668 +-0.1329675191365733,-0.1530665798966238,0.12145280148846727 +0.22942818997876546,-0.04360060045847386,-0.24342033198439622 +0.06827678319291902,-0.03471320835573241,0.5223518633497618 +0.019889370382022542,0.0032027622482461715,-0.02209670215556908 +0.2906041769046992,0.29619362433095,1.6337250174472657 +-0.06776951903598971,-0.12270936091889295,0.5550304256933974 +-0.22973318993256778,0.01780287668857289,0.3031269126998307 +-0.23872359774006735,-0.0783302166998926,0.5150241527080591 +-0.21949296601297197,-0.021643352914894998,0.36964437352116786 +0.5919780129250937,-0.16203436957177278,-0.1094189905815813 +-0.10931753437163158,-0.2248370644044877,0.0604874813010024 +-0.24665709445664602,0.5864183019977824,0.1531605222621225 +0.4198351045061588,0.013187060150544383,1.0147684836737756 +0.41716360521712803,-0.0491974964289186,-0.19120281980235454 +0.2937843296862265,0.7321774774330044,-0.12243187317889381 +0.09400655829564464,0.3243091953565892,0.05621763346730113 +-0.13393930220052286,0.05918882741850778,0.04380662436014093 +0.26847759633245083,-0.13194468473835902,1.1015970320100028 +-0.07483369891398664,0.5524901814215764,1.0337449307644948 +0.18877473390823568,0.23225400964707343,1.2441848190111098 +0.1795230066032915,-0.17586760986840994,-0.23680346426415252 +-0.2350093476617875,-0.19163178220182764,0.5200275608000616 +1.8389549550813253,0.15259885005561424,1.1189981762655998 +-0.17788951201254358,-0.1641758189529413,-0.15081134230563462 +0.3171103133500768,-0.027300849600617377,-0.21469354036542218 +0.3677248863370326,-0.07336663191274131,-0.19944623320296181 +0.13112778912828416,-0.13344767399211088,0.741196858991307 +0.7590530133607101,0.040603258691136235,2.521900717074341 +-0.15588211566968158,0.07848914536936519,0.36562028378146805 +-0.11937428018976246,-0.08269398657408397,0.11374181769862701 +1.0421417747714004,0.021245519965506776,-0.22360428772419355 +-0.131277042011917,0.32739384848813313,0.22294985342574908 +0.03706356217667328,0.2092450982993354,2.3094582483507256 +0.33506478312774446,0.24764849582697113,0.09933007104689923 +-0.09516692050872402,-0.23707669779447926,1.5345570926648928 +-0.07918732032207346,-0.14184089212872908,-0.23901939439761183 +0.015808072183028044,0.14281919086782568,-0.001583973793068627 +-0.14905007085003735,-0.053328535913020586,-0.1899431942426877 +0.034016031022899906,-0.22539840452097729,1.9120245432568042 +0.24534939948041923,-0.06176644061123268,-0.20285391057663638 +-0.1200568803596776,-0.17418087663648635,-0.24758150977192744 +-0.165747053563446,0.11253180404716129,-0.24910560551614075 +-0.10769557063033144,-0.12221130384392648,0.4105726713217488 +-0.01962161797816181,-0.06472118630312282,0.10385292734299806 +0.13253869912143024,0.8426747299043298,0.5722588615823431 +0.884041287308649,-0.19356727887200875,-0.2405517938952546 +-0.15280901396895058,-0.21751578228589102,-0.11415509579148461 +-0.07789686409949972,0.054643581016555254,1.0823272661212093 +0.11450414230166517,0.3678262938489554,0.038959936377186755 +1.064305099753769,0.5020505765496875,-0.131360557387204 +-0.24919396431618718,-0.24463364672532925,0.8190289855997737 +0.13123568405563507,-0.2428600992313029,0.03732305205793013 +0.023875868126166877,-0.19975893680300078,-0.129159275858358 +0.20511673377975215,-0.11953516396651198,1.2318916295134144 +-0.2469690286404942,-0.09729712568311874,2.921233120757454 +-0.2303638279089622,-0.14863573839749822,1.1031177665287475 +-0.1935326523783035,0.6743642556470753,0.3516450963972375 +-0.2066814747473806,0.22320549862532352,2.5176585749675757 +-0.22248675377498353,0.24514425920874988,0.5656563018285892 +-0.07496989631744214,0.6609876467911373,-0.24360844807801946 +-0.17814297935482248,-0.15012797523685062,0.12332903546272184 +0.16088322178926096,0.518177211313077,1.869888026580043 +0.036115276418647924,0.23063678141042376,0.5853035778242519 +0.6390929863157698,0.08191702726172895,0.16664479726039522 +-0.16444903299971242,0.5731860633012228,0.40688967309036517 +0.26276193867995745,-0.13194862259822504,0.953148908402528 +-0.10648693817250726,-0.039122431406904246,0.568055420627757 +0.4236496292896196,0.5424598893221596,0.2902858762045203 +-0.24478061010076343,-0.22249000005888858,0.3378095427475398 +-0.20976545592337092,-0.16402927682575336,1.2816048769871753 +0.10024039380555527,-0.22103472852244163,-0.13108871584373016 +0.3350883414808715,1.0604641010378573,0.993826048532346 +0.1971688103972023,-0.24547206618732584,0.037468991313163336 +0.819854747920433,0.25808574234049475,0.8128691686345888 +0.5629006443921224,-0.1154118175927247,2.2262948036718893 +0.07114078729276058,0.018031668336837725,0.12799314551162422 +-0.04519227688564861,0.4273443372184125,0.2924092080819598 +-0.11999038830023409,-0.12820599351403023,0.7907603275635133 +0.09665547993180718,-0.22031550669239272,-0.2026707567645898 +-0.08926841655629969,-0.11420756870940765,0.4926569056417064 +0.037235686337067586,0.009542650760802629,0.014424849718237598 +-0.10703220235775576,0.016430592728197357,2.1179594701016264 +-0.20174758133531295,0.8043591954211657,1.0888743671604848 +-0.22934270367513773,0.013283664920063998,2.1304871815431805 +-0.16510724969724086,-0.18408257803523576,1.5803964884158015 +0.2090305288211115,-0.09703041720092972,0.3913358340904821 +0.10541253753578778,-0.22915296699359622,1.3284033600192637 +-0.12208572569336981,0.1458067166654481,0.5657640621358987 +1.6412165553607707,-0.20530983172446413,-0.1418971819336404 +0.3036934929228423,1.185520891691016,0.4830281068090919 +-0.20976898830622137,0.5381490519987355,-0.0897312372614571 +1.4206317553749475,0.4968171322852417,0.4431870304787976 +0.5122129078851874,-0.08249739895983174,0.7290092559035264 +0.7206489830913773,-0.02280948178134959,1.3577524392649247 +0.06794346600699963,0.20704176539920505,-0.09872035961107253 +-0.01553847087473309,0.40106584137243895,0.4050443214732261 +0.14487223632040436,-0.12279888087003504,1.257216393063521 +1.1469714316735913,-0.13557466021395903,-0.04966194641903496 +0.03500079642927317,-0.24945580580920118,-0.05989461688975328 +1.0550722093473088,0.1985024016285914,2.225420869989886 +0.07987549398229038,-0.2201838582225522,0.24196383846411418 +0.12022799713952559,0.40837056645144376,-0.11970681298505723 +1.48016976117627,0.2921597790085979,1.0505506765293515 +1.0169183693770147,-0.24763698263695164,-0.08163020426442791 +0.5550495028712864,-0.19556876729922143,0.17606618451456774 +-0.022484500907599347,-0.03653339857970975,1.56802964321425 +-0.08933568638061432,-0.00288732791410673,0.9751058494944167 +0.1384379595138403,-0.11263231234318763,-0.22242521591355727 +-0.19903627709266813,0.0002269478883075715,0.30312731045736774 +-0.18997035694766903,-0.10315570315273112,1.0098941096955478 +-0.2256953551061431,0.6102537760604457,0.5572889125616023 +0.2364426073377658,-0.03070882833863625,-0.19388738718657028 +0.30058349102173254,1.1493525917585647,-0.07276757923674312 +0.22802634759262352,-0.015355740011602448,1.7677838015546286 +-0.08092722890185508,-0.059202706033631286,0.34001364008615886 +0.4017792244095023,-0.058438865502885406,0.7027992255895515 +0.060332862159769685,-0.15189504977481022,-0.18988891739649905 +0.08673060582657621,0.2132642017348953,0.3328367214914152 +-0.10846204761378417,0.15020150308979863,0.19935556311270158 +-0.06195931566797619,0.3696425134165252,0.9739790820677727 +-0.17194299116316547,-0.09543241524875185,0.226257328698527 +-0.07257502166769561,0.2923687427418574,-0.16124617777718436 +0.0930274396950782,0.05892180469477337,0.4342413362614004 +0.031140267583381898,-0.09028699248822872,0.5829750415124243 +-0.01071947216229463,0.1661479151504754,0.770686838351057 +0.25054222177453755,-0.18014911356660399,0.1535818403748318 +-0.17002721432184725,-0.2341753494636632,0.002640877173464118 +0.24673489142700789,0.15884429519676357,0.8387758247297736 +0.1343863646441394,-0.03718033288892317,0.8059331085612407 +0.1688293226292324,0.018652599256462676,0.7093947789355765 +0.6361043065898718,-0.18115399318503944,-0.20494261991831403 +0.20501475673145014,1.0384170959423125,-0.13673510696867225 +0.3608205908493016,-0.15452945504379545,1.0075604803180946 +-0.09507155975524759,0.265526377864575,0.31702437347759727 +-0.1717801499410304,0.2238430215220092,0.38051244319802835 +-0.17846697099696096,-0.17925527005798644,0.8601817903800646 +0.11209934378975728,0.5619561804028554,0.721082876710013 +0.7768617833132523,-0.15645048930662656,0.2944475519824652 +-0.243931965458345,-0.032029696412479575,0.3930474023442825 +0.18087226386042643,-0.04531547747897441,-0.07612057373965747 +0.08536617593955442,1.3505186627563663,-0.054683379233969015 +-0.17399010070343368,-0.05970839437136688,-0.17251771796694004 +0.6119785652463113,-0.0719060606906482,-0.20527874752574599 +0.30017371352043454,-0.23475983908486514,0.09556857248858014 +0.711480628156037,-0.2086406496422795,0.2344775794894518 +-0.04506591898475193,0.04970340123512218,0.2546770792097047 +0.11090094538538575,-0.23017607375105142,-0.007624923435270131 +0.05615429344415851,0.5747461070801468,0.5362775550547454 +0.18483253984452247,-0.04740815044898278,-9.92403503788375e-06 +-0.22840241046640558,0.34392267604021665,-0.16415076672878406 +0.4094740857350504,-0.11804177919858036,-0.010935499080304972 +0.72734941009527,-0.13053204203760843,0.023283143107147186 +2.2288415712427807,0.10855512428268832,-0.025410249530810836 +0.16917866908673646,0.9832542746265149,0.4839897012904797 +0.3484299729645244,-0.13948769171605424,0.6844269489845795 +-0.05891698956352437,-0.12377959001760958,0.7210252140200212 +0.2817565941226905,0.3665215453369931,-0.06144790186486293 +-0.2241153011316967,0.35557463906984976,0.3609430438172486 +0.4030203338299321,-0.18330509130300598,1.670677943435648 +0.09604750773715198,0.39929180748329773,-0.04659941360433628 +0.16514846778766046,-0.11489240611313628,0.7760607199140253 +-0.0928251083472621,0.12461664327555527,0.20426211563423774 +0.4382695196905354,0.1892023267157869,1.18076516623198 +-0.1259993330449607,-0.240203422323782,-0.20125678620935156 +-0.018881882901669894,0.15714836939375038,0.6375865084524678 +-0.21136952085257021,-0.20125099201122865,0.4174169222008277 +0.09537463268969443,-0.23736045343776124,0.08357854587787444 +0.21484651926841764,0.14634091255271914,0.8834646394120602 +-0.07354152267153738,-0.1873575084849915,2.189182989061817 +-0.20332297689164136,-0.04752656870481045,0.3057818889927345 +0.22104114229939276,0.41946500139752885,-0.12750229254367734 +0.6649077311261083,0.3117976484023677,1.6774325904787868 +0.528312143124856,0.13831346275883744,0.7011601406300275 +-0.11109360452870928,0.023771063156217964,0.29777582962753246 +0.4157702657065253,-0.11082743187762478,0.19541486400892633 +0.30433456376173174,-0.058953135987486915,0.04328599715418835 +2.2454664925283754,-0.10138073323337016,0.3115354842820047 +-0.1986302300306762,-0.0008405243207106339,0.45550210547506187 +-0.14226322532296742,0.09395271597358568,0.7576250199078267 +0.20534084230884775,-0.22560796329331995,0.05088669675115842 +-0.013308221509775092,-0.07910672502119676,-0.21521966585352145 +-0.19524798031167853,-0.11522255154061539,1.0441102360721068 +-0.18482134881518708,-0.13179187013233848,-0.13278655132464173 +-0.19676408362893835,0.18039239461492013,-0.22585586592714302 +-0.12457608087909983,0.08613314910070052,-0.08688902924875622 +-0.012327583693068994,-0.137705916786847,-0.1793839050133782 +1.292873421303578,-0.20395972722645583,-0.09546886137619792 +-0.08726572180274333,1.1054428732932124,0.41753342903456414 +0.3167659205465079,-0.04835471713322537,0.1169061936930969 +0.3017415857864858,0.21031629001279672,1.2458415469780924 +0.8156173187781097,-0.2254482962956271,0.03897193276433808 +0.1338539227762892,0.09140758214768824,-0.10022828616833587 +0.08693228728774083,0.29810638199488027,-0.22777159241005948 +-0.18558964527325378,-0.24046953600541643,-0.098115790874438 +1.3128463961071315,-0.14983953420130047,0.6907543632434947 +-0.09849464269764016,-0.22813991225005467,0.2350280799748098 +-0.18670888990802098,0.11467969582097426,1.4352608153008322 +-0.09404865919348285,0.326418259457521,0.0010909911131717354 +-0.014523108169170323,-0.24913277302799167,0.5400715771458916 +-0.08629458938982515,-0.06605735075938177,1.2545909037668876 +1.0723301550514592,0.3072222780213294,0.37729533253454217 +-0.07975845980068524,0.023582933339204304,0.3609598764898829 +1.363703716582535,0.07203947327296262,0.6222612892579045 +0.9141955952776841,0.06429869584200826,0.062338112716142535 +0.05025964727737936,-0.11713676503287757,1.220310359123883 +0.7559899061710074,0.4331290031582118,0.045649582717906145 +-0.18949490585935597,-0.22956298939024747,1.1074767387686546 +0.2516148803296361,-0.15319832746095902,1.7231455845726351 +-0.18720858799380274,-0.08785611582616673,-0.1809565347859734 +0.27583224077049606,-0.12161298188843897,0.2228233763646555 +0.31812364656437864,-0.2123727948412588,3.655277316184163 +0.02037247634331857,0.6537248822813209,0.2142681025223106 +0.22933909854011963,0.5489746901366316,-0.16119651574249155 +0.045864289810180814,-0.05064623212525127,0.39371167632756077 +-0.23254956685647354,-0.23411612482789768,0.11465880063855388 +-0.20324126995614286,-0.07414138244959345,-0.015576347480160652 +0.8724108358196334,-0.029364220889084663,-0.1729969570460882 +-0.2404410968934402,0.38003995603326246,1.0946467766479033 +0.025819490780751186,-0.1327474811868265,0.7475761907007125 +0.8926969209968696,0.035299376581989284,0.37647646626105735 +-0.1382555301162735,-0.09581322666790809,1.5162132072473922 +0.6609009720283722,0.37520105818236504,1.2376247955293933 +-0.1911950043858195,-0.22064211832345476,0.7262996574655343 +0.23203263999677315,-0.1889049863683061,1.2460821560814166 +0.0425252277880413,-0.1369290519018404,1.1801459926103857 +0.25340562189951954,0.24196645394854865,0.4343503811806977 +-0.03558178448958091,-0.09918143149679831,0.16162781698256612 +0.24602154495987494,0.2189851776043908,0.5938058979983692 +0.24110343538514023,-0.2284116889533636,0.1055427180866455 +0.3471412772473277,-0.027875377642634397,1.0180848748927147 +0.06826800921462539,-0.2379677206085811,-0.14185982007941056 +-0.2083894400793468,-0.1255265055337319,0.9886961286059095 +-0.20539484537750177,0.4234760886409785,-0.025888685013114393 +0.2755666842790879,-0.05453217527166368,1.7992748635707416 +-0.18531323825387377,0.1969860164340756,1.6973923194470606 +-0.013286386132745853,-0.09069386259113033,0.18102722798996335 +-0.027271674724560324,0.175249179638165,-0.16864859740107294 +-0.23249468687936647,-0.14927902859042577,0.06691278808830076 +-0.09454610297525387,-0.17230253027737402,0.848102679990695 +1.018910525055058,0.07066393612867805,0.9014230759501238 +0.8178167247793551,0.059632787638593865,0.19741395753006702 +-0.0877765656028048,0.12519110413889933,2.158179443764535 +0.45044365735104763,0.8732464646603919,1.325652619939285 +0.06005684453813159,-0.19275475186092159,0.1300319778241229 +0.6842208948813874,0.004331851485975757,0.2103401546483653 +-0.13375427823985378,0.16912996313696904,0.20231351639126954 +-0.05271586807580747,0.13652119465252088,0.07573235251921556 +-0.1570898602792069,0.334514814348561,0.11302708656917004 +-0.2358346239579845,-0.23247163335026322,-0.02862397584108259 +0.7056718659374245,-0.22303112223765376,0.06767416312635255 +-0.19549931143854324,0.4166630364502881,-0.07566926583346725 +0.060402048492703586,-0.20271798698292867,0.565888247356831 +0.20772213509449755,0.6425682226871843,2.081582383943214 +0.27651607625418895,0.5172923731079059,1.3399920858180394 +0.01989587274987642,-0.17090043502393526,1.200866926474523 +0.050294428073886566,-0.04892507988176084,-0.06852921851867119 +-0.060708356175358885,-0.06832907321653675,-0.1877252069728657 +0.32884844450669504,-0.23499235443194294,1.1133993919568248 +0.2163949495512854,0.1424334566921917,1.1270591305196662 +-0.006616722613551951,0.24709908163117522,0.1206742791013718 +0.130627172512778,-0.09387733589639519,1.987575937106382 +0.5533005217994951,0.147282559156943,0.6204623291204446 +0.1997741517956681,-0.16386968851892547,-0.20847711126320764 +-0.14749989587234338,-0.2215372318376472,0.21439860136491012 +-0.11767867324204348,-0.14182585599626946,0.2466233771300959 +1.211346422015096,-0.2464939211844723,0.9018787960441461 +-0.18983870514412984,-0.04117922400600221,-0.20375539011449012 +-0.2449328371659896,-0.09875868700227008,0.7992051248150402 +0.28153261081424097,0.2930972414772085,0.7688600797575331 +-0.15980049332437946,-0.0352305244596616,-0.11878224628854295 +-0.14522631331816033,-0.058452894713329595,2.6179242164202274 +-0.08547371366333179,-0.24663119082597693,1.5016170796801127 +0.0659733395620592,-0.1343612844506796,-0.18323309121180104 +0.2466381227659063,-0.19099152165655392,1.1501890131047767 +-0.16723558996000348,-0.019480886097830274,0.04100779741726013 +-0.07414512484289718,-0.13060406398048335,1.2677542928087604 +-0.2059760539559018,-0.11202222718074889,0.47970194513930176 +0.16757080675598912,-0.056565694825088275,0.9897582537695655 +0.17669149920890187,0.04523367736102135,-0.05268990253775463 +0.138562044076466,-0.13365281488284148,-0.14230037462544703 +-0.12725992865932126,0.14987273126491746,1.0257325096338212 +-0.23104442550816573,-0.05092044228346451,0.1433889682479535 +-0.14314153353053377,-0.15116434377854493,1.5048896425837375 +0.2610085818734681,0.6832818804353095,-0.025224628451535447 +0.33971493000033626,0.5034228154574029,-0.017041786235609674 +-0.2103179957077461,-0.20842180437729874,-0.06323724916072457 +-0.11309507237295557,0.04086215854984021,0.17348758624844174 +0.26668329724131123,0.46529448272322627,0.6137595527560618 +0.0556661804039722,0.07961298936058803,0.3873289409898194 +0.528741136671805,1.0465962960844184,2.0736158069696273 +-0.17251989553397784,-0.010312749115035824,0.9085762504812405 +0.4021544261796123,0.386453652502179,0.601848288929671 +-0.11666878117705276,-0.16762896103608899,0.15801008828901486 +-0.035622342148823816,-0.23961217205342836,3.007192604643765 +0.5148596091649977,-0.060713294659268724,1.8645100005902724 +0.6819757883041917,-0.11149668159615594,0.20847579995366544 +0.5111787081300889,0.882235582923901,-0.24388668068925035 +-0.06673000902473275,0.7153496635014274,0.1806374758505655 +-0.019447901008060514,-0.004263342129881664,0.29000390935954146 +-0.1157845510576187,0.9739850292506897,0.3169414253591828 +-0.239971754028936,-0.0433740181743871,3.034212642365371 +-0.0201200284800154,0.013086490579981125,0.7206306195902313 +0.11675328697984827,0.2923121141259669,3.827701128278524 +-0.053108948803433115,-0.05161456851529689,0.2841303294129176 +0.37240616980390473,-0.24115433011161047,0.6475476458837748 +0.30975021341528364,0.09822635539667735,-0.14924771453455343 +-0.06272942056202185,0.14685216647484134,0.8512768508057529 +0.1387688051773442,0.4301341517122248,0.6906336528336303 +-0.13772702720104857,-0.21332046534553453,0.41159309310422365 +0.04021272889760419,-0.061577544791643235,1.4175849745922906 +0.7518556058643755,-0.13001071241871964,0.045265069882317766 +-0.18801670280731567,-0.12627546197226408,-0.08554010251562177 +0.48918901182645946,-0.2006308526955445,0.4953111548311544 +2.200370942251627,-0.14218777202124006,-0.09802561823821715 +0.05869237692775492,-0.10244063006404733,0.7300894488587127 +1.3480551787181472,-0.1535561702637293,0.5866181449631422 +0.3976348444708352,-0.24243792301913855,1.3882423916312672 +0.1776391260207923,-0.1634014952154091,0.7630491116227025 +0.13064166606485078,0.000731137694650108,0.5840462239643007 +0.4714401974237651,-0.14727671992394603,-0.2184575074567357 +-0.17868486971004582,0.24758747294682848,0.28816068346794066 +-0.21290056882792321,0.4053345171080974,-0.19946075151134723 +0.20629780560814687,-0.20146522211023526,-0.1820379125134872 +-0.23222168279045516,0.07773093150855509,0.08275861755509462 +0.9795618705803948,0.06026211046719426,-0.15699450260909298 +-0.19501577338624623,-0.08716204880447503,0.8585159873891799 +1.3498524819559412,-0.17593786247758,0.7200525320574184 +0.371838193609648,-0.2340684281648671,0.852113797717553 +0.8561050037771534,0.15766987513749725,-0.1126985576170669 +0.21293683790762008,0.07646746881255923,0.5240681990706424 +1.4123022635825995,-0.083927756948936,0.06491647064675332 +1.1168217562965488,-0.18422720675537396,0.7611755256106214 +1.3573966797833739,0.2563704666361676,1.119309190448556 +-0.06625184433343018,0.025911440090336024,0.03401019172654729 +-0.07459316038790254,0.809134479737913,2.1554474548729576 +0.33399877526427757,-0.216657556380411,0.32518210909355394 +-0.07339806008290814,0.3921231030446467,0.5404325946688926 +-0.21979595264360888,-0.16842904564065775,1.7122137332396108 +0.7131923096037208,-0.20462487246104732,0.11591833058166945 +0.043430512446170744,0.12063976807058752,1.3398768127857983 +-0.09617904698225804,-0.07850986321514367,0.6176898495961167 +0.37074889985889903,0.045494141562504864,0.002423701942176004 +-0.22402973616325333,0.45001007155168027,4.773583653360952 +-0.2412714847983025,0.022006291104957998,0.2594440054217825 +-0.13890217290147513,0.3448037501753385,4.309104978329759 +-0.15080860710311714,0.31149378093374513,-0.21079133957222734 +0.623187204729395,0.36665393230221144,1.0576609234298073 +-0.12067858313423593,-0.24135536505512056,0.13923031474913627 +-0.08270791543645345,-0.19359041419020073,-0.0035198705740717984 +0.10093375946122307,0.1800854552769955,1.5310167702756556 +0.776534700675743,-0.13964474209432703,-0.039986819359452586 +0.0658142395148606,-0.11374144048737148,2.4451876108300152 +1.4551726432014138,0.14640436744603796,0.16657566568828286 +0.4451083664452793,0.010497754432206963,-0.13921664261371558 +0.4407444028820272,-0.1879368564978577,2.96084146364427 +0.19828237428669,-0.1792396971223717,2.9022972623643177 +0.15646707880451954,-0.18003851898047363,-0.2424499664146392 +0.10589341973454142,-0.13499794850506136,0.081878677682031 +0.35698186505181695,-0.18742500529114003,1.0441531189030497 +0.34992883854714896,0.05234933727321578,0.9508560548966394 +-0.17599416487228825,0.29088796112176085,-0.14978258985197868 +-0.019759444832317397,0.34134544411000844,0.015947112186895318 +-0.21301576404190753,-0.16429712772154137,0.29419797795166036 +-0.03178680290348915,-0.05756403465904447,0.36628484022819263 +0.30885489157925183,-0.11118365386014836,-0.19072586622702856 +-0.18708074531318653,0.14658931130307112,1.2390442806432418 +-0.010874887571965808,-0.20842627139321157,1.6124201858634772 +-0.07555914351713397,-0.24657784997539442,0.041907436662087294 +1.0475123876357961,-0.2154089595026027,1.0854300414574456 +0.07026221613251676,-0.2389029456333976,3.1972440466320893 +-0.1595193147079078,-0.19143652928172106,2.8899792503504393 +-0.07523727941942127,1.2075510904419489,0.6725611792405999 +-0.059139442733214975,0.0826881510437068,-0.15440203180855927 +0.15249686220244557,-0.1157841005399558,-0.004638630837758645 +1.1248140784944616,-0.1350747131397353,0.17653395725671378 +0.30185511399273746,-0.22003889681307173,0.1279274897819278 +-0.23750251109676127,0.5601632776941894,0.9242496496948387 +0.11149102686939877,-0.2267200797006546,0.3113976827269418 +-0.0868798269814173,0.7631423171838567,1.0845782030487394 +0.09371316911547939,0.07099849895136706,0.12385680966441304 +0.17328210794860988,-0.22191789407177648,-0.07894349354896144 +1.1361121548502788,-0.10721322558932167,-0.16339643923256175 +-0.162007591895368,-0.19227029138403504,-0.20053324928607305 +0.2119998770414216,-0.17659335071212223,0.3075352248322981 +-0.11649746409038747,-0.19989555089698652,1.6025130330666764 +0.5777541818438334,0.4773115095874122,0.9936200032531171 +0.25290158767253046,0.14012263944573716,0.5613184719930484 +-0.24760615435313582,0.21350957575093044,0.2289073786909201 +-0.08465617908750439,0.1793299745737762,0.444593839746678 +-0.06939273737372106,-0.06784796372707386,-0.22879526413097281 +0.22952766001251113,0.27984240940123484,-0.009354248371265833 +0.03712856144923654,0.3699830293108156,-0.06541303855638197 +0.1626157436815988,0.30353807036113045,-0.23612698226773046 +0.30636412768383425,-0.15061923853641918,0.14856384075932416 +-0.03019773647462007,-0.07306871669023512,-0.1267891078978528 +0.11639001416705291,0.5264297840330284,0.20958139041181462 +-0.2399119835807669,-0.02585120653095066,-0.08731962690535158 +0.8465231249210246,0.7068477553103781,1.0132326667565719 +-0.047903971291089115,-0.14435471775775496,-0.165223983545034 +-0.15300246847996118,0.3204413340735197,0.9517658933982502 +1.4685200544526458,0.01567666109095689,-0.24632109101518251 +0.08513149813468085,-0.10552829172107445,-0.2133227386503795 +0.16266774428054748,-0.07431509183015306,1.5434946536704957 +0.8642721402633393,0.485439814956668,-0.09029967722913787 +0.33627280067410925,-0.21895737263640583,-0.22601281293018738 +0.23467833274018385,0.4331964165307781,-0.23454014694050612 +-0.22485537949250878,-0.08205294498438062,4.955891264647567 +-0.11135286291538768,-0.2462583073721197,-0.22040172710231934 +0.11064559326938017,-0.12514508774806254,1.1560136918948685 +-0.2144451343334054,-0.00914450794589955,-0.08306114633791079 +-0.040533127442292705,0.17969715604979308,1.7009658914291843 +0.03252381325491338,-0.13179208657844246,-0.08149641006328706 +0.12976769675054806,-0.12008431745387879,0.11366008416354312 +-0.015696953414052,0.2059316810401563,-0.028877978097257007 +0.7805909744634931,-0.04916565413931684,0.8268638334726326 +0.9660448416684533,-0.22670449809673213,-0.09677807604603264 +0.7586101407793875,1.8882006843539538,-0.13701660746078176 +-0.011725246589632948,-0.11404906017548141,0.22368196654648692 +0.04058591640018344,0.2263303581893764,0.3147467197604784 +-0.06868236372632552,0.1013529481373816,0.2504731663402733 +0.10769256571638475,0.06714169195408382,0.46381788749580366 +1.481374786645025,-0.09205273838403749,1.2015233993688204 +-0.0719007048631101,-0.1241860249616975,0.2799034233945793 +-0.057203901426370135,-0.21358480441272817,1.8955247282268637 +0.31807871162690127,-0.07944510954624232,-0.17990862302937533 +0.029012314857300325,-0.216712970879589,0.06875212665901026 +-0.20668297127787374,-0.06451492482695326,1.6902196944921901 +-0.20680388812120737,-0.10437397314872415,0.749727571411863 +-0.17522577108982917,-0.20857740455579296,0.752643876434856 +-0.239158217654186,-0.21323413861715976,-0.04569955224216654 +0.23161454275056542,-0.0902412323889174,0.24477057717417428 +0.3647327928316164,0.08065489588761998,-0.24551244329056113 +-0.03732345527072575,-0.10418748656580792,0.8288603898581322 +0.23423632046662618,-0.14318039339662392,1.8280143099486943 +-0.23266959353495403,-0.08552544183826652,2.133873481518602 +0.18594420132019118,-0.18621742829054336,0.24846605927089005 +-0.22501831581479836,0.3452874161241446,0.7080913920637631 +-0.07243366304505855,1.2702132491826563,0.5934620028526693 +-0.19803269010799845,0.009145974664564571,-0.17283807024255782 +0.027147077248197538,-0.06888413987951586,0.012703760712955314 +-0.22688647997690797,-0.17568531615711092,1.0071486738769995 +0.0522607796788897,0.9215514446394713,-0.16859985713596312 +-0.10150580961328182,-0.20622994238346037,1.7867600809056121 +-0.0006731633615002786,0.4392609931090897,0.5177453868578086 +-0.14427367512464423,-0.06347314134133367,3.282405854075824 +1.035908282445054,0.03603001782284576,0.29142210385915 +0.00900971052303734,0.15726249813051613,5.2338228258773745 +-0.011386854550605091,-0.20116669937721482,1.909707622676422 +0.1986822556173457,0.021457493618370127,0.18747600607141002 +0.7219110125790003,-0.20599877774151193,0.017738578737906074 +-0.2110243474782284,0.29072160634761646,0.3412117059385624 +0.15350950265873403,0.5312978275675084,1.1015219072091398 +2.018093624568251,-0.22015909368253775,2.253641528314534 +-0.1299495451331401,0.19264456527473595,0.3685474191603235 +-0.2436844689159357,0.5409404038756158,1.9485373644952775 +1.1590561454396278,-0.1406964385204803,-0.1509084268971611 +-0.199020390218612,-0.13287304449848408,0.42189474867340515 +-0.13458850981295717,0.08923220302621337,-0.11668483759028575 +-0.05141783473026429,-0.1929343256550252,0.47792952023619817 +0.14192817899345622,-0.10240350808041548,0.019931238315241018 +0.03344371103617022,0.014532850859221569,-0.012153201885730047 +-0.08356093091413522,-0.13209390175476854,0.4336436273020021 +-0.17096348067921968,-0.24157387188861165,1.4698859487084897 +0.018982790828514395,-0.16814784160186064,0.02309228137006597 +0.40364003944355165,0.197444309546625,1.0334388479668586 +0.3009012154252275,-0.018176799335857308,-0.20812462705935794 +-0.2409059178552705,-0.1603886270917249,0.9119670346088249 +-0.053756760069075066,-0.21565485589101477,0.25499277515357377 +0.020159755918125577,-0.2311185507512052,1.0728157464166397 +-0.12618841753064952,0.046881653171540194,-0.08895203590633491 +1.5692723389716758,0.027717658192967065,0.12009050516039327 +1.131847322226466,-0.19392202764361763,2.8904377873153546 +-0.17937548109750134,0.4995139128419558,0.11688283682619066 +-0.1540712960679423,1.2225741369765049,0.4005500788242967 +-0.12249601668658355,0.022673539992991376,0.513458415959916 +-0.21193076896291987,-0.08053721292008131,0.3955345735877398 +0.1306785139104062,0.7109713238531812,0.1428639532895628 +1.2486094063494335,-0.24584543341220372,0.3542487564366835 +-0.234892468376732,0.915868358913752,1.4803674398033642 +1.3886875577162234,-0.23864103728888564,1.7411728471951844 +-0.2331333881586954,-0.1299971871060115,3.012507280300652 +0.07587340907521756,-0.16762469438947003,1.1640226336098927 +0.13252300226987007,-0.12699156032784262,0.019809659427743542 +-0.23625470522668826,-0.1940117337791895,0.2873239816785571 +0.5175024467824213,0.4906664423297321,0.46146547160360407 +-0.1839537659404129,0.10843205707194797,0.28989861526554683 +-0.23816228207104645,-0.19053155952067688,1.1016751680355292 +0.6627820786653862,0.06760934179089434,0.754617639286963 +-0.08189698671742762,0.17607440523319112,2.9212575658478785 +-0.161893189205287,-0.22246622782651235,2.8287220371737787 +-0.0574648405632355,-0.11252813042610735,0.7200282522832293 +0.10435261582198607,0.01759386465792212,0.7524098229150971 +0.1824110487469724,0.13852513333893895,0.5489928632538539 +-0.2466937950619054,-0.22265936682717902,0.6300124728338092 +0.4947740343757999,-0.16579372722915264,0.8289259292845503 +0.2518584805938716,-0.23150554795101197,0.5058005670072054 +-0.093295962000956,-0.22414684491480383,0.32413684389890085 +-0.19405354673851907,-0.19822110980269175,2.3100798218827596 +-0.19659315221726184,-0.03718368496140739,0.41211378211172733 +-0.12552186815529037,-0.08619093754438859,-0.21321192067653857 +0.11764954434633901,0.8441565561839734,3.6391412304497863 +0.10555724746483502,0.14047639629702935,1.6791606270925128 +1.429229705822662,0.1829732119182254,0.08470475815995804 +-0.01780272439031566,0.16077335117224717,-0.11488486077331692 +0.20405207530424113,-0.19610714530025275,0.057284716039721906 +-0.04284754564186663,0.03442653453140537,0.9983197402009483 +0.07480211351617272,0.07232858865100611,0.5889613645934013 +-0.17966361424937372,0.4620052288766414,-0.07446049308829514 +0.0070756930452699485,0.07901149509073346,3.4717663998206585 +0.11362977731117241,0.1320278598480092,0.07255768208093366 +0.011664776754937878,-0.10153395469221696,0.22104600173650185 +-0.2203909585972515,-0.09262085926527652,-0.20369354270915613 +0.4034447199420146,-0.16376205454688134,1.6023568069122447 +0.4892674471510545,0.688654035741286,0.1068769489603118 +0.011700482957795744,-0.20276570475650912,2.5472268075297393 +-0.14818413985459383,-0.08940244935939179,0.4659451525726429 +0.5445554263615128,-0.19387083037145758,0.02737465437160197 +0.4282633077364758,0.40872076818855874,0.18281103550582767 +0.1516414798812898,0.33659038506097727,0.4584327871506856 +0.10433853484294237,-0.1639119139159549,1.155805268966487 +0.5351665296186262,-0.15483352630765884,-0.24770566923847276 +-0.16824407129053087,-0.24876564492841394,0.5118208228521206 +-0.0478973540797317,0.08700310939152839,0.5035964439509586 +0.231675741762514,-0.08141111552307134,0.4324295192244164 +-0.18457577940448427,0.4147055914881712,0.06346127842393157 +1.188197932666052,0.5105521306300193,0.8948565873810979 +-0.1895625156883392,-0.1519759669613184,-0.0655544603645164 +0.2193432536262922,0.16356008046599296,-0.23033993543839013 +-0.04337395557662177,1.0771609802307294,-0.16621612870077307 +1.1187156514816567,-0.06714683104320893,0.20989296669932878 +-0.16569307202100358,-0.1732389104528782,0.6852191057309736 +0.11535782300639763,1.0203112198183921,0.6654219941384195 +0.040164111497833166,-0.15807837777350867,0.025929585820605783 +-0.18035740103510445,0.11234006074917169,-0.04145612738655871 +-0.1204397519265773,-0.23774998138804523,4.145696804357929 +0.08322800153471432,-0.049640037492087064,0.14728833546837627 +0.34582843106920236,0.0377039593782027,0.11096791847082971 +-0.148101742314026,-0.009465245067490635,-0.14936161617045024 +0.21797036190661656,-0.17561473716992076,0.9195263029731944 +-0.21443146010400016,-0.19989879413817357,0.5367947692464103 +0.07530266667690294,-0.19673701770458935,0.1554370991753541 +0.20274540581467665,0.6580353027568223,1.3957628142557914 +0.1236355563406687,0.24433765365991583,0.5899988508368557 +-0.04719712656417957,0.2588120416789289,-0.24142552885425664 +0.93609862803011,-0.03389487345926445,-0.2059777067379594 +0.05741528176267763,-0.11587979641170318,0.4443783071813605 +-0.11199607541299036,-0.08097609802454081,1.4192433924954946 +0.49075618296951895,0.27598370966547425,0.13554195585491374 +0.04075271671292041,0.013540530581639398,0.6829344188357037 +-0.01629713996444218,0.033867321682917506,2.4032795978723502 +-0.161070328222423,0.05508568337291081,0.4654283295788657 +0.15553120963818584,-0.22399008705199874,-0.10800583187747792 +0.23875253615089997,-0.1383045540503246,0.6769329821291288 +-0.10059863825416443,0.35576318070955204,0.5593412655959186 +-0.11222026189764253,-0.18338336797613713,0.01647155675553097 +0.44538761997253873,-0.06371815218773202,0.14361726167996114 +-0.2302288067671248,-0.03824166551514377,0.42029671967959703 +0.2937347589734929,0.13609895342843503,0.22322001192102164 +0.5238400299720658,0.2825240420757691,-0.007736251206269945 +-0.07520359081628408,-0.14465044555096856,-0.021591252979066167 +-0.19552826588418543,-0.187505284293192,0.007021536034735265 +-0.01874968793863732,-0.08142902991786297,1.4689111657832794 +-0.0899366033647942,0.04973157382337495,-0.13143648083217943 +0.2580996652666452,-0.24490909905666494,-0.2166402599070163 +0.21221540274694423,0.20242218407723045,1.0657106145540012 +0.3492195117153042,0.42743930555568543,1.5588682731666748 +0.5506770285360482,-0.23596017189260649,2.7555163390044584 +-0.013887723406195152,-0.1560781075637619,-0.09592741117468997 +-0.12471197157445271,-0.13565109164615646,-0.1565618586580761 +-0.024570739740787217,0.1814797331753475,0.8294332350893958 +1.297769085500197,0.428096436856779,0.4959603240427032 +-0.20364925437699244,-0.15615919132359146,-0.18179254459181515 +0.08283527800649881,0.24759300700851966,-0.18104077095896148 +0.4422268416766789,-0.015855248651415077,0.6692694725650753 +0.645778225438114,0.11361979367375169,-0.10648589417423793 +-0.08579333477009513,0.8095116958077695,0.33278402419965325 +0.9424492759322034,0.08664848602050462,0.2600649830266618 +0.40464364864988756,0.05715653311966418,0.993043123259991 +0.03917999938147382,-0.16081167438077587,0.7880323191858685 +-0.04337445236445872,-0.24283157418565604,-0.07830582569457803 +-0.09609002249030374,1.085652097252122,-0.17699531106969923 +-0.1693355210894082,-0.09622821848835897,1.8939087716834875 +0.2053727122889472,-0.13623980578023773,1.0856317491536176 +-0.2145393056928786,-0.024456771271592653,0.36951621229756926 +-0.09512781444081847,-0.12588567484413096,0.0013821541775146384 +0.8050333879863942,-0.13264287908242794,-0.05693793616554921 +0.2552802981073088,-0.12283836454131022,-0.13724813634076186 +-0.058926363835375695,-0.24815826877027614,-0.03955801295143249 +0.3470316424829505,0.003665234965504527,-0.13326483257267624 +-0.033638422841579335,-0.018823714333235986,-0.03578943931917122 +1.3891213200276562,-0.17944403475557938,0.18200252936663558 +-0.06738279001908867,0.017375162043570425,-0.08080134290560542 +0.8753461522414692,-0.05243869724116865,0.5418248345676642 +0.7653766354070328,-0.1950507238666896,-0.17146288629125356 +0.33596601675745374,0.7765316579039556,0.15905199641548068 +0.0008773858476952556,0.39952643793738774,0.8992178791941781 +0.6416940346553573,-0.16471132479458284,0.7642926717728904 +-0.20753074420185225,-0.0390050768342963,-0.15721484019155044 +1.3721973806755807,-0.13929026071831635,0.13835965429994435 +0.2578409355204275,0.05717557685157032,0.3373617485767394 +1.2068587686706458,-0.15727031728378096,0.44731004541051034 +0.5410510317637148,1.3502183774374883,-0.23004831607099901 +-0.17091470579323723,-0.20955803272338885,0.059327121818486706 +0.1600296120692576,-0.24732614818266946,0.14436988892378266 +-0.1575886970603304,-0.20773399896705141,0.4320598904835776 +-0.03876752048679999,0.2531536805670732,0.5972041375210788 +0.40983066743043584,0.24836389637290957,-0.22524538183351211 +0.7626955200863632,-0.0765874430498305,0.07215582203988752 +0.02500395721790405,-0.10727767278239339,0.3019860598395424 +-0.1959405962340232,0.05233947001759737,1.5282607208021062 +0.014852638775451621,0.3338405262838616,0.12090375274640275 +1.18152945376452,-0.15995621517800723,0.4763609976816887 +-0.11279278951988886,-0.12462282346957887,0.47501439752840235 +0.7123900823954586,-0.1348056853873903,0.5202811177706353 +-0.04664795048294676,-0.027840562371290206,0.7001802906797093 +0.14104704407390567,0.2475223587084373,2.701166254256915 +0.002731365024766619,-0.13042109788690903,0.4934497690813404 +-0.24586007349865477,0.2779380643088083,0.08684650514909908 +-0.06422534767990781,-0.13755607847149737,0.4190987027341557 +0.2628799832899922,0.19267244565196234,-0.21868651213895401 +0.4681560228997118,0.03229438258663747,0.767039918912948 +-0.011259848730295896,0.04506315736225652,2.378704394298414 +1.7242012184176283,-0.12925085291633115,-0.1955199427917283 +0.48245542321248247,0.422092810578683,-0.08824838461306539 +0.47979887800524357,-0.18833115950759477,3.744565337385881 +0.3815959341294375,0.03646458925467,0.3366643314675436 +0.20488743340281618,-0.04050300632782,0.04159764671041638 +0.1328056552692779,0.437701223939442,0.36692386279460676 +0.16013358883789847,0.06183510285615729,0.10114167735617902 +-0.07740910760870956,-0.035231732667015625,0.15056306340484876 +-0.15446572779728512,0.321305049812621,0.4134549074271697 +0.5635054680404378,-0.1399285156447369,0.26161987065902836 +-0.022085966495095033,-0.08663198762301166,-0.12626173301082708 +-0.0019673370790029843,-0.18990635126659963,0.17414896955468312 +-0.1652291122304858,-0.2143645405067972,-0.03663308654027628 +0.4157514584843296,-0.02408473466137037,0.5440305775573085 +0.13910826244127872,-0.02989916057445413,-0.1701551826650316 +1.3533712825062925,-0.06915453136173977,-0.16831192070144455 +1.0159998799623202,-0.061514888620617963,0.2645928006907805 +0.10693094895448657,0.41116546674361654,1.844903650516252 +-0.004247670343841686,0.12687781595049324,-0.2484804963252056 +0.31571201467324495,-0.014957269545945506,0.48697332942711635 +0.33647018367986603,0.2031466957578456,1.1286513151668405 +0.4004530523276686,1.4551732295592574,0.5862015099748753 +0.577903097100524,-0.042619928722177874,0.2870868752334751 +0.6729425046053222,-0.08895633962383034,0.23412993257351733 +0.030239178872433325,-0.19508294621385674,2.997173041039103 +0.46106073659197644,0.1392744659567779,-0.09903528358027744 +-0.1753280369587628,-0.06645459581182661,0.09862189595698267 +1.1267855761751873,-0.09085955557843634,0.5834690810011349 +0.06048482523178372,-0.1740255855455189,2.3600787355258945 +0.7176482835300282,0.5899086731787769,0.0725446982668771 +0.46667941386291023,-0.2361446321440384,-0.00608274070063447 +0.13247135696731754,0.12173533021540167,-0.17212380830020496 +-0.13166293279246194,0.07488743215260446,0.6948054159979435 +-0.006319498059079637,0.39759580642457903,-0.18009400902687273 +-0.19058693183192157,0.5515009811766772,-0.10872840440660042 +0.384254703742125,-0.24379126796918815,-0.18914765384354537 +-0.14965484351929947,0.4924449927249006,0.36640892464938446 +0.011762832760014386,-0.2274104279082774,1.620955637794095 +-0.08657579495398784,0.26305493721746165,0.3660494817303769 +-0.17716295658539405,0.37569977699407764,-0.009759069538335413 +0.2715327582392777,-0.1723757860305212,0.08826239617503151 +0.15849202745734964,0.9301195110006626,0.2960519304344884 +-0.13966279213851165,0.567798034873177,-0.24628168182665963 +0.2345849409165629,-0.14607549997431096,0.3183981817384378 +-0.013953505976539465,-0.0856485394562983,0.1355304301158483 +0.3560478943255675,-0.036733855123290665,0.4131340564806574 +1.0761762252263127,0.8958384716964238,1.5665306846045068 +0.332729863227161,0.4720180086934277,0.4170045128385832 +0.9728474244601035,0.14814031699553193,-0.2200133629072944 +0.16002211089734597,0.44646902550966094,-0.06365572130796818 +0.02321989437881805,0.034573636706232036,-0.1339493182422326 +0.37289750226510454,-0.2080777337064735,1.6541315089491493 +0.3676866028970125,-0.1707527373898009,3.815086996793114 +0.22643729742314667,-0.1369343365372772,1.565119089170222 +-0.16813415761885053,-0.07476095271612632,0.65818480995153 +-0.19586310527633102,-0.0845918488592938,-0.1910476925972842 +0.0020034635828637404,0.07309655438610779,0.26424423102134087 +-0.16974814998437465,-0.2159628633167605,0.08888642596489305 +1.3758734807217858,0.3122453978623686,0.615043927319735 +0.5282772838860228,0.1882506906159102,0.3513528713507632 +0.5614100000481868,-0.039745649629527646,0.08487973796391396 +0.20678391645282868,0.4896929008079617,1.391135806722606 +2.0475044077145155,-0.10851793862920975,0.3769176154845365 +-0.004858535057239516,-0.015014612935553145,-0.21905528709346836 +0.8629158165901585,0.037829177912356515,-0.031668552091617314 +-0.027274154709994586,0.01867641962876565,0.8374507552529831 +-0.19027949683229325,0.0857561076235735,1.3059871843820525 +0.21492312531828484,-0.14956732679407436,2.191443104706043 +0.4104993860267725,-0.19114271774400624,1.4593165584553613 +0.23253895911336359,0.3608304261014845,0.92867842310398 +0.10240441318654142,-0.15639863221721845,-0.1786091434829285 +-0.1187058189065347,-0.08866401346831615,0.7640031524887037 +0.7772981175431086,-0.19337053579933636,0.14678899057775152 +0.5225986470018646,0.02936009919192928,-0.05981801700572267 +0.8705360229352073,-0.07306813462206352,0.12306856622409507 +-0.13165458456997206,-0.1655899228221665,3.341778651052816 +0.1827799213862326,-0.11851113096978103,1.1987348846486707 +0.17874718614030027,-0.1580151792701584,0.44837307954853745 +-0.1440037064795276,-0.19189313166679833,0.01318357364344791 +0.37243458595041357,0.031139410160494596,1.4887589010603937 +-0.06379601934813223,-0.0953071654581433,0.11175126944311775 +-0.1925143513288109,0.10686417865782732,0.29617636938570835 +-0.08101348032692654,0.5218209471751064,2.3426619928748007 +0.6557339281909457,-0.10038891660752924,1.4000023792312986 +0.13057270078379474,-0.15341658403492697,-0.13446869495139338 +0.14944878994289967,0.245776019018083,-0.02709918282036189 +0.15482774630815604,-0.13563363062292003,0.9490025716281596 +-0.21489215983631452,0.18069799214781046,0.8497333109590344 +-0.229571407386545,-0.15146801162122814,-0.1775691161637476 +-0.07827310404182228,0.4439055670598744,1.3615352611222176 +-0.05742017997746646,-0.03808968623700179,1.6205997324015076 +0.08306826455129074,0.3186755400285518,-0.14587813286160037 +0.06941125885585486,0.011128800589090604,3.0812763374906087 +-0.10890194479822735,-0.1565248117751904,0.0019985054584051865 +0.6675875967872786,-0.013504549867311588,-0.08483865302308205 +-0.13223331496485596,-0.1551306031610084,0.15710654759860015 +0.47755539949352455,0.010629626313447327,-0.13881651675647544 +-0.24616376230964246,0.22352813111728204,-0.16613816021738054 +0.055400012357383566,0.16880493948851133,-0.035486269028440404 +0.9705942728386381,0.16560010320496316,0.795494625666612 +1.2505672873018485,0.17458566680913162,0.8410710474200231 +-0.1309567324830106,-0.18891939231045118,1.1085966431202592 +0.6925734918202645,-0.11649094476729,-0.11778021977942038 +0.4385372602247988,1.1163229816046205,0.5840419615828877 +0.47248840843789697,1.2347279806166211,1.8440361048410612 +-0.10504671502617766,-0.08422886736412627,0.5644681880683254 +0.20868466751327508,0.020847497865556786,0.6355611167659004 +-0.11395411616157927,0.6746723658724911,0.26401483871446574 +0.2736826760197324,0.13884219458244113,-0.1309456261975802 +0.2234640488210417,0.8411831668775782,0.06001044867810179 +-0.1992722453232585,0.17720273625990512,1.5946210253851458 +-0.10092250582631715,0.02569503783653526,0.07119992104574108 +-0.00047018082425639984,0.13464560577422502,-0.21854065296795974 +0.48069910910463964,1.9997976090651397,-0.22996884664864337 +0.3011559413257874,-0.05447226145249409,0.8573848383670828 +0.32658759103958523,-0.2303367478139316,0.9979568144029538 +-0.09878503817670689,-0.04648654467687954,0.1882236307573104 +-0.2316056046857227,-0.1967381429393289,0.41889838074978814 +-0.11540709324777257,-0.09255400283409629,0.8972841669188676 +0.3171325588198084,0.5273046242667949,0.45005321551858346 +-0.23363149138393485,0.039232825809926486,0.9011366561972363 +-0.16182652927626,-0.10829928514528378,0.6226648653226551 +0.3645484286321067,0.006884881795640119,-0.10914808607607904 +-0.031240601223305575,0.1553566118070704,-0.21565217649590124 +0.1340030168900705,-0.046701302685813934,1.761930368541944 +0.1720815472787363,0.17118106985767162,-0.023397021927392042 +-0.20786331165082506,-0.11865017537966255,0.008041566397988142 +-0.10337759567403562,0.47463696329304683,1.7314764971848497 +0.14322359067362367,0.11950213279813332,-0.07396082533251072 +-0.2135151516142187,-0.02284841505262883,-0.12262228869626088 +0.0509200659257919,-0.10164900545042221,0.02917158633008987 +-0.20806641367841616,0.06954245696904543,-0.22244108919783281 +1.2090408141409137,-0.23914178661846483,2.0333459675011887 +0.057614549660665926,-0.17705957219906654,1.1156168032345979 +0.023696104934188,0.469371630616934,0.2633156897950595 +0.09230595580711803,0.08660900714695341,0.03448530185602361 +-0.15976435548265105,-0.1700611310734878,0.2994636333789784 +0.4293282014323029,-0.044880198985749825,0.6433106037563833 +-0.2375746363883828,0.07546807300383851,4.871829086513752 +0.033968999219123,0.3099925701141789,0.1732785881530427 +-0.018633590121862553,-0.08037705559892683,-0.23460717803193243 +0.305289506587873,0.22066851052922448,0.491359674039788 +-0.24301760190346633,-0.22485430074369808,1.2916090794137216 +0.3208270885250848,0.34848712979869145,1.7918225104502983 +0.1879446836467184,0.08232991435683967,0.05497023018698627 +0.0773881327797365,-0.03289161021203671,0.11182559340219916 +-0.23146620471340912,-0.027139322209923933,3.8568645753353623 +-0.20037027240213806,-0.23059550388014863,0.6512623722134367 +-0.06334374098807558,0.095960316099996,0.4908611168213628 +-0.13995049504618357,-0.12837387771498607,-0.2064509103731998 +-0.18767757506646368,0.3421294286308417,0.24845646931680937 +0.18728585866715464,0.26036961250905244,0.06990468922282356 +-0.11466891322597453,-0.16791393356998796,1.6194276517173565 +-0.013291102959013146,-0.06470245737960248,1.9897774634615013 +-0.0031124517139325403,0.002167349989771694,0.5556693862945676 +0.6947471808766398,-0.09105437348656323,1.545734935214467 +0.05540795728998604,-0.14558527520330122,0.6920643230666546 +0.7296157732985714,-0.05716620468830094,0.11089310865395102 +0.2315362829647214,-0.17172643709883278,3.69833801635796 +-0.19964702021935318,-0.13872679029595433,-0.03266340294261433 +0.5661031939142607,-0.11795842566353035,-0.07339795320986994 +0.2513736063287909,-0.16862386492056292,0.8803610180923132 +-0.1201273102418823,-0.19235141526384525,0.8578166657715562 +-0.0233817643209073,0.42479461892045434,0.9118952055423386 +-0.0383336230248372,0.0456550395485853,1.0248818566818436 +-0.23491929835950287,0.14880074496010198,1.4958665840560152 +1.123205164024274,-0.1792250435700532,-0.0522127933163081 +-0.10689685806235283,-0.1876616423335336,0.13468499601509132 +-0.06348930794735902,-0.03619011138497427,-0.049365499940999036 +-0.24935991239733257,-0.05680655440516871,-0.13392938190011844 +0.10850715222238694,-0.06202900514985052,0.34271606691635337 +1.0989523056305814,-0.05059698123433967,0.11887742608751656 +0.43208261064033326,-0.24654716935298243,-0.17491458720113284 +0.17779983630536467,0.9072234544514242,0.24333476165496304 +-0.043024521967713725,-0.2483154131221226,0.7462854504870311 +0.29145139542491927,0.062240838438803014,0.13697245702779703 +-0.037832571377427515,-0.14829402044629358,0.5281688093787339 +-0.21164438782564596,-0.17993307544632148,0.05380094019902304 +-0.22766135600307102,0.10563107120173437,1.294771818254367 +0.5209216141414857,-0.034505630973201,0.2805046905465044 +0.0705660359751723,-0.1402952838326327,2.745384590598845 +0.15136907317503556,-0.08907991213571692,-0.037280846323168304 +-0.024945742708348678,-0.04673119004774465,-0.009223750664179325 +-0.1361486662772987,-0.158523584328612,-0.1943708513735093 +-0.1932614335710553,-0.15188929827809122,0.1384100855302141 +-0.11453001774810939,0.2596207166410903,1.0393497967990497 +0.0038107919699175707,-0.0276203844661376,0.08138329693814628 +-0.03106288001735899,-0.10759898799868403,0.07971946495802329 +0.6563560403970757,-0.07022875668409775,0.3684141467000679 +0.4336275523988439,-0.023102944598677955,-0.15317419019903017 +-0.18026430264830673,0.02350850920342662,1.0810759421910385 +0.08245770268278191,-0.24253148546421835,-0.22958489381776145 +0.03995628172594945,0.0472836708528771,0.6971840078318559 +-0.1805179867586345,-0.07882268335714065,-0.0432487944117064 +-0.02221013246046663,-0.03400358318066474,-0.02924928522856096 +0.5544940759696284,-0.21836119182184888,0.06563642034045791 +-0.02785378857329504,-0.234035901014404,-0.20697818869343632 +-0.05979776499546122,0.39590256274011737,-0.22936114257290216 +0.5303213517963675,0.20812591644236217,0.25053896939568043 +0.06476639207180362,-0.1778266985614439,-0.19150869640866108 +-0.2346661463368565,0.5693475227089709,-0.20807204803469204 +-0.14172538268983276,0.7388403906041898,0.7872153511021287 +-0.10207152604000455,0.19422532320417474,-0.08133154865279735 +0.34076179526392447,-0.15495380520549878,-0.035958698491987434 +0.07288529569466928,1.5183580249476532,-0.025279692421360467 +0.8912139068828724,0.16975089160506524,0.0971619719690981 +0.06584390210173385,-0.09172000802718924,-0.0599007737492783 +-0.18354832018137107,0.0824085856666929,1.7496645463495637 +0.45227754507466034,0.14207388465220405,1.194033885196861 +0.08035405445910271,-0.21676795889325443,0.06392506551104016 +0.2930495029399932,-0.17951608078137932,0.5986906901412827 +1.3131339988852568,0.04653109475517353,0.3608278297324441 +-0.22352989884029936,0.4030509449395784,0.02268227973372422 +0.30120226579918397,-0.10506407995240413,0.49754588922091636 +0.15685845561755313,-0.06747189017603986,0.3106282492837811 +-0.06888599668446449,0.6778456452214348,0.07873236790052629 +-0.1860444973038573,-0.15155727905217664,0.353196850502946 +-0.1737740915812403,-0.13223027312705654,0.9633721121976719 +-0.18698028754499738,0.023662993271548804,-0.24264324833607778 +0.040239242071446135,-0.1202990904050629,0.3817733611049584 +0.053665859892971124,-0.23892658255608934,1.7802089695687164 +-0.16923259429314724,-0.1738691505118276,1.2760107329038224 +0.02919705976777376,0.009939851532185129,-0.14181592866555187 +0.274441578658708,0.2558254952171838,0.16810441966788797 +-0.19742731721743317,0.16131663308366195,0.8238382614569815 +0.9371053476437028,-0.09924262761105243,0.7527307578246385 +0.4771400500171974,-0.14224471335173566,0.03564529969883823 +-0.11464969265097069,0.021594185195107973,2.2637889567866614 +0.14939501695283014,0.18495663222926084,0.3694642567595877 +-0.20827788393775143,-0.0990935364873132,-0.17154974048609017 +0.35840686588851767,-0.1052341171683524,1.664703754156847 +0.16352077030942597,-0.06309664683453126,0.20180857380447054 +0.1774796383472731,-0.10376153932648341,1.2364198099472132 +-0.1620708980288438,0.16774915625613163,-0.07771376479456299 +-0.021565491260299274,0.45173069286249334,0.08278860476970057 +1.106132533379603,-0.1517392122733025,-0.23127344788733095 +-0.2058452098342425,0.1294273658029858,0.9806685933288564 +-0.18876707616302424,-0.08404343218816882,1.274558353054027 +-0.246676404258277,-0.18564938642191725,1.216508015777295 +1.3552766932663993,0.7120174140954728,0.2570893534736305 +0.38096634542152963,0.3860382419020647,-0.03191932482300691 +-0.136234691531623,0.3590991631654278,-0.07490578407627485 +0.3468546600956741,-0.10431065237766984,-0.16586998280760118 +-0.05791971457857878,-0.027798579364115367,1.2549907542866847 +-0.17350821501037628,0.5036601911217847,-0.07734052531061525 +0.48393341982379945,0.0869505982301863,2.7396855860659453 +0.3942705355650433,0.1338177963389347,0.15375697617463235 +-0.0301437619710703,-0.24259759382127433,0.012212953223256329 +0.08348523150717241,-0.21144272680338144,0.5140038187508594 +0.07876224043974239,-0.22624249625801207,1.1391492333843822 +0.0687085157338268,0.05593971882960869,0.9362449157316475 +0.5496165159841128,0.5376905765886311,1.5051352794404642 +0.1998114174323658,-0.11662359472792266,-0.08926112515444701 +0.3515362793611474,-0.23857939277607876,0.7874042064278732 +0.15228275395122048,-0.24458276341374333,0.003167062793830999 +-0.20986731254615815,0.3903074887618537,-0.09120485081633986 +0.03733456589362466,-0.13307879748811088,0.03176190260978523 +-0.08657429542117784,0.20698228932624002,0.11807783991041482 +0.8216358251629612,0.47053222823818275,1.7532000963019674 +0.33676038376033857,0.013515934380521621,0.02710046886053924 +0.3987982792921393,0.33114448654218775,-0.24864860455143722 +0.011597324632427186,-0.1279382290101317,-0.03490400952178965 +-0.10331819980591248,0.3716871892415634,1.075842032354591 +-0.21807705635677102,-0.22896261546021052,0.05491716525026369 +-0.23572834452468444,0.032114857634338245,0.3199727447429266 +1.1870029977976857,-0.24505108470313686,0.15781195009488164 +0.7185695433275242,-0.21130036076648925,0.7958924494270156 +1.0024454913920011,0.06525457688242753,1.288684969657248 +0.1216205829495684,0.28387974308793196,0.452202694311598 +-0.1925338589895057,-0.08343550665948374,1.6355790489687412 +0.9320327807265367,0.30196626086956113,0.2778874478823812 +0.1985295761478093,0.28823637362781585,0.41079652126369093 +-0.2052826101817452,0.43084933314342955,0.001154796094162136 +0.6672788821226694,-0.2161595444886367,0.04374144635700378 +0.2473620537478743,0.14483817065065302,0.6172720743006129 +-0.019604347831433416,-0.17931183703188305,1.5233386829202749 +-0.2093847050907308,0.3242274127331508,0.48315746545695015 +-0.24802570456454073,0.27593997303790496,1.8015596860950396 +-0.2115254400710221,0.0582697875102553,1.6765393708082048 +-0.053222396176542286,1.2362076341442203,0.4510484400609769 +0.7390297824417502,-0.20194624664993724,3.432442018762782 +0.2766046757054631,-0.1372856303270685,0.4307296501168941 +0.2666121725246756,-0.04519083428508644,2.623884238951587 +0.7418693042335891,0.2332108517170891,0.8576599810756578 +0.4813083148550552,0.42703034755543057,0.7215022414798591 +0.32842658767081745,-0.1347922508562801,0.40567116046640395 +0.14659326997564087,0.037646449761663814,1.3203969585002582 +0.43559568923857894,-0.16088086487805314,-0.048538291175285964 +0.13819116957692734,-0.006580863013632532,0.09987925702503231 +0.14529645739427482,-0.09281690194570363,-0.01567912639167887 +0.4672307831368876,0.21486577350910824,-0.09168338186210573 +1.2318409980786276,0.07995566279278787,0.7899627195930692 +0.42914679136614997,-0.08476669093338604,0.22719692490684834 +0.09374938135372185,-0.18180716462692045,-0.17029064489751933 +-0.181077253242531,-0.2100866761943017,-0.24344446214760973 +-0.06343862824153218,0.31715217139371876,-0.028912822156985124 +0.31423744630313954,0.11627823741771837,0.2336254144384074 +-0.23930173887071426,-0.0329535322655615,1.2622697242109813 +0.2960171677198631,-0.0885847202570518,1.189475415435979 +-0.20331284722168344,-0.1545087168796565,-0.2154983795240262 +-0.045518602268421915,-0.16640683209251805,1.780346512658367 +0.09746868383151164,0.10225472848196038,0.5802766059913516 +-0.15910379032327301,-0.23350737960987145,0.9141813316359431 +-0.20992011810196837,0.48799402235787304,-0.15644341219296842 +0.2730638688677992,0.07625784086655235,1.5019530838266348 +0.7575190832574921,-0.09224430727378632,-0.16054573760759072 +0.15717858612837438,-0.18104337379493146,0.2516736480969394 +-0.1258570366572559,-0.24673173922257624,0.8125120337175662 +0.8897605502263382,-0.19731089707427263,0.9071279839657822 +-0.1827816796630448,0.7709710959603637,0.7521371427759291 +0.0951524516704762,-0.012857578194813035,0.022280416328704256 +0.4629002712507311,-0.22501745356122568,0.3255407979696795 +1.131868624616701,0.06228363035364448,0.106732278310885 +0.34913061598999817,0.09347327922799609,-0.20312472578250843 +-0.0923788405976479,0.13275655702644562,0.6406184284812128 +0.2916499890579375,0.05016590304742752,0.05464004515315968 +-0.18086292075124707,0.4030361553817656,0.16828761347943128 +0.27413266992635477,0.06136210872666509,0.3459387232510307 +-0.22912903390904849,0.18313664749946584,0.7508456871775429 +0.07100395824153904,-0.22088530729342912,1.2920997598376767 +0.15381378513035676,-0.08939559671372596,1.1160950843565527 +-0.15627036941222258,-0.19742733490794434,0.08037807138366959 +-0.2297510141799037,-0.2114851314511154,0.5413205767685736 +0.5558412202895644,0.23125462173961053,0.9112094775221231 +0.9525105896893802,-0.16223584579126832,0.20601442749644555 +-0.17053988847534776,-0.24842151758348288,1.20578732494808 +1.2846381071427926,-0.1307510731743723,1.0956881723807823 +-0.24874109463056682,-0.22325677889352577,0.49105047877398034 +-0.08144863895912766,-0.21043794730767085,0.4693669269099784 +-0.208053494807945,-0.19094880799498312,1.8498461674199458 +0.4471443383730157,-0.07762715366562634,1.469667745576384 +0.01504102274607172,-0.19973467142994827,-0.16650517804955978 +-0.17556404278114146,-0.24692646115892605,3.250554370704789 +0.3976720687010681,0.23981730739543222,-0.18803950491883326 +0.6539764198209537,-0.20218047952153656,-0.18130279198661814 +0.6224681567515385,-0.07339771201022954,0.5401400388820751 +-0.14240802098297012,0.06192992459101593,1.0282245822380642 +-0.23985803502818978,-0.18546437265594512,-0.04986171471456424 +2.827531377886933,-0.18304786981248566,0.20563888769484923 +-0.1801245543675578,0.4161645574542048,1.185876214210534 +0.2799982012484925,-0.23512629912826816,0.3066444520478677 +0.8265944296524208,-0.11100754960346243,0.8955280839853748 +0.542457240378744,0.7110577845767267,0.09257767407523743 +-0.2373254332305,0.47188155599182224,0.2739536827945317 +-0.23269810246692932,-0.1659596425383838,0.22624054302836138 +0.2827982172891562,-0.07110224119486247,0.41798151218222623 +-0.11090146955627064,0.12156659844129353,0.10356738232992801 +0.19049924042358257,-0.1694092016922723,0.40642943542709553 +0.2538750178409095,0.12208345448773761,-0.0014234233095646587 +0.8530438383707575,-0.20326175880599734,2.059900020218303 +-0.10015315689858062,-0.09295682120421195,0.17576946867801135 +-0.1962445421223258,-0.17729441865746454,1.4658798185413633 +-0.06014752433065271,0.47174112406502655,0.9011176278628905 +-0.20873778269714666,-0.17230306202332366,0.9654983840520612 +-0.018251055162196494,-0.07506860081006819,1.634208056762497 +0.08850243841589234,-0.059703717311952176,1.1515157817842823 +0.463879121029782,0.829562392779281,0.6120872442595613 +1.3104477684767168,-0.09545247354016775,-0.23339002889501517 +0.3785832871432807,-0.13751057641202272,-0.17568491201816513 +-0.18598061095045518,0.4953539578915165,0.6073895049561532 +-0.16494239146941764,-0.07570919502457213,0.25033703982370625 +0.31252043994580136,1.1400338250978348,0.1461817116992647 +-0.12427948207541978,0.5083880147670441,-0.02506462514086108 +0.4129669190418821,-0.22002830699847564,0.42134088621366284 +0.7824354809001028,0.46692702985741197,1.0168547623515594 +-0.08687034252952958,0.2802689838215784,-0.21185072790600107 +-0.12450868048830535,0.26818271889168777,1.84318048845974 +0.3109725432021877,-0.0012558738142108006,0.6743388138785454 +0.18825710455365968,0.03780139876252303,1.391009969415059 +0.08112050836007079,0.052432729508634424,0.19848387591889882 +0.35892747381426526,0.23449702410463097,1.3978408367188395 +-0.21457488093532925,-0.23297944490914163,4.5240614200989855 +0.3294230075180511,-0.03994530152395215,0.9418939648695352 +-0.1855973760291773,-0.02979025252214515,0.8489934632889389 +0.06127928348449918,-0.024128298642141333,-0.06779037238035446 +0.9299129688755745,-0.0249113896013555,-0.09067460409230493 +-0.18333840089738496,1.172806540619848,1.7428769668768722 +0.11077215943811058,0.4615670234123388,0.41972360693204447 +-0.03254349064952852,-0.21367413899129759,1.1652298198848554 +-0.11760820015445014,-0.24463303960956517,0.49541482798254677 +-0.016156046846328292,0.37448119117188405,0.18308945985114622 +-0.07164632372207769,-0.1279687339074061,-0.04983457341718009 +-0.08514749444418881,-0.08695083585141772,0.26996475751612614 +-0.12148383167548402,0.8022303404705169,1.9059840806853776 +0.38235970666099794,-0.021961816089793335,0.09787883130530728 +0.6936359029506227,-0.10536905469639601,0.09126461769767413 +-0.01517700949326889,0.18088680895057652,0.019268414945244228 +-0.24955080037770339,-0.039130014838169525,-0.039801277062883195 +-0.13344145169532384,0.10740682949561964,-0.01409693674197049 +-0.09735953352146054,0.15007470407351214,0.25823312605633375 +0.03514219822088738,0.07246430996939235,0.030350991905468194 +1.923694343794578,-0.2279622029840625,0.4265956669871912 +0.8467859420615818,-0.2123488412325208,0.4358192742479794 +-0.16888437050581545,-0.19439247429236922,0.4675967890891949 +0.05665307637753414,-0.0271801053313101,0.9977930184984303 +1.210616525531468,-0.18593546590063187,-0.16462521684874212 +-0.12733703840308602,0.010173391917781105,0.5102995754155626 +-0.09495729272503417,-0.14310001433342112,1.2686843800259076 +0.595995035541656,0.1089130542536243,1.7799882253130739 +1.0031430426424282,-0.09603547152418745,0.7540411938613365 +0.11041900392989934,0.07326424009213095,0.9600011197287093 +-0.00046938407937041626,-0.17631638428442514,0.16711658521373818 +0.2514804762975619,-0.2481074035715093,0.42937309512689725 +-0.01834834239765748,0.3328403364047897,1.7785484603918569 +0.40673712097436987,-0.198884198413257,0.3368286379263108 +-0.11109368945721076,0.3482881125806436,0.3652504843440355 +0.4865433691039355,-0.07763304264115559,0.6630167613932784 +-0.055974621502135335,-0.1776237780176873,0.02645057636415843 +0.14858229383804772,-0.11481918926832199,1.3166523997697148 +-0.06121433711847685,-0.17072976538550802,-0.06953639337025444 +0.28375038934066843,0.5210731976923835,0.9598534809650197 +-0.03455500585003815,-0.03045445696462243,-0.14425045116234053 +0.0724624777461787,-0.23927674622652545,-0.22805718443105089 +0.5666606061768649,-0.2162214186439483,3.4616932366015742 +-0.1571012320062249,0.08052626040926136,1.1439290719310258 +0.3593204060461489,0.02684136245699653,2.087862310609389 +0.25978918953628605,0.08829421434503332,0.6560099506795399 +-0.10009864708316979,-0.001876772328904569,0.10951221346712081 +-0.10243088411062606,-0.18364630505862867,0.2876200584682693 +-0.15068500081843858,-0.14649762483600823,0.5944959417057734 +0.031189797538449637,0.3392176110866243,0.5170956482338722 +-0.05796211640163135,0.21416472273737214,0.3666119746333347 +-0.18904465010259347,0.1532015049412534,1.7885790407822206 +-0.15632478445845266,-0.20573025307547066,-0.043385916067607166 +0.4961401797984121,-0.2484604920769298,0.6990510900906914 +0.2722713020598184,-0.1488347117165223,2.571089979117572 +-0.015314003517383018,-0.22822243647530935,-0.21908566222414372 +0.0999933949412532,0.2587642099641797,1.1996953792141822 +0.339271208717847,-0.017473982552540207,-0.24994923999298266 +-0.18835524609618112,-0.11739010154027579,1.1150235186142132 +-0.13296182428843614,-0.15167791489970683,0.170917189719003 +0.6271906940361905,1.2323364187527934,0.3961141098539669 +0.6917248364883694,-0.055356687986348324,-0.09480056156856734 +-0.11283100797643128,0.13579598341671217,0.19737315393305643 +-0.20618603217598028,-0.0331758035984733,2.038865127622214 +-0.006618797561418616,0.37323062928829864,-0.15123945204833839 +-0.15618197704122855,-0.2134492061571337,-0.20835587651140952 +-0.09685308975362489,-0.1719241051171691,1.90629462853235 +-0.19449748216169568,0.36757468811411154,0.21633423710795563 +0.22525442911349874,0.295568590868205,1.3881762105993438 +-0.16484034677190176,0.5796162993136706,2.2492635529683143 +-0.20128275067717916,-0.061525562191242944,2.430580252509699 +-0.016054239325651365,0.0919244924562761,-0.1325111553504836 +-0.11819602894985146,0.9172348644717965,1.3273548773171862 +0.6272095468701193,0.13030105032617356,0.1574407437870879 +0.26623401582597617,-0.23626082337085746,-0.1616221843497362 +-0.2429250283910914,-0.1636308267696979,0.10854576386224618 +-0.19606604354446186,-0.10515731388281813,-0.1605960565165293 +-0.21767633853077367,-0.18231052914532092,2.0247194892777505 +-0.12278208927636067,-0.07637390742319716,1.439452678552111 +0.34107159291669775,0.09769601111956239,-0.1703899385037316 +-0.18815787209289953,0.3481342472697836,0.24026705908441104 +-0.0940177057949706,-0.21469376670244888,0.20451040136321857 +-0.13973889034658435,-0.07431321345492437,1.6132594601279642 +0.14499604382178832,0.28022268830003205,0.20441986523607253 +-0.04128711827193077,-0.04878786827921705,0.2817087621584742 +-0.024662383209682087,-0.23987145718849234,-0.10613695213648769 +0.49594421201234895,-0.19469090135708464,-0.14999898555232768 +-0.2183569839270062,0.14499927717037497,0.5607283138987342 +-0.22442469965166711,0.4658564542079414,-0.0823289159808045 +0.342123823909544,0.014773154581145087,0.5430628634489413 +-0.09720214052741302,-0.12310565138977184,-0.2405543292565514 +-0.23214615419064474,-0.22246285386500164,-0.17339018198542588 +-0.19464242736337004,-0.053599784181522586,-0.22488086097837964 +0.263155468993599,-0.10066051583211072,0.2638752634260987 +-0.14223474395957444,0.46830554125849144,2.568868576340754 +0.06446018516346019,-0.13814949171817503,3.419051199551945 +0.9476766590063506,-0.14235779465424525,0.47056942640099175 +0.057189156498056115,-0.1351906850639638,1.5892021805873695 +-0.10837403714095856,-0.19244888713436883,1.2030592433379088 +0.4084258287295538,-0.24754195996973574,0.8586585395594584 +1.168952690244682,-0.2339834215483676,-0.14535123033104083 +0.7179570455437786,-0.15992509705452818,0.6802906379275876 +-0.19441741900509785,-0.01827466723709878,3.1708194431276917 +-0.12941318706658633,-0.09429779498588114,0.05969119233381692 +0.04175263859281686,-0.06740422708014543,2.9048829197125166 +0.5112088525449734,0.15400129038784066,-0.008338210218678671 +1.3163974132337297,-0.16893733480287776,-0.2032915124433029 +0.1820452360133396,0.11657156801622581,-0.20132228446605213 +0.9579705309880575,0.17283427746592667,0.19639957443017758 +0.14802058757343833,-0.20913018121209087,0.39835256023371945 +0.47443242875419056,-0.21518412509267362,0.1957963023867928 +0.1805101780969482,1.0477666264446368,1.3631377717896844 +0.3364614240087034,0.05842440370230251,-0.04780834740589479 +0.11748211333807496,0.4716976498414611,-0.11128422811171185 +-0.18841792037096688,-0.04047033789891771,-0.23073033901285755 +-0.1372597848409507,0.06757669539414402,0.3725810916773229 +0.3361443531573953,-0.09175848785930019,-0.02601015603806303 +0.04046375011323189,-0.1908831595080374,0.3703493178064362 +0.20431991446691022,-0.1864667710375667,1.9558831772994036 +-0.23037454801907398,-0.24978682876606265,-0.2044862813220948 +-0.21376550712142478,0.4095336336324522,1.9745566341071532 +-0.0937313734430193,-0.018911109202861487,0.5037875131937446 +0.7651230608185176,-0.022600184773423626,0.15580297262779802 +0.7723977568112428,0.16477103077073568,-0.10199002581304956 +-0.13978248818813627,-0.06209443192450878,0.36024887568129116 +-0.0026270773229981614,-0.11931586590072221,-0.0013328817658505021 +-0.0631351774375877,-0.1366807348171321,0.6102729665738705 +-0.21082981066797796,-0.2057050100613705,1.5043352657646167 +-0.020197970133365578,-0.19188676660292456,-0.1834103934018662 +-0.10672458542575697,-0.06551264899599257,1.502411503368344 +-0.2438467983215464,-0.19917797748935262,0.49659105216628585 +-0.20526415914221602,-0.01651042744527395,1.0196100379930262 +0.9758784631130109,-0.006172224665387582,-0.18525970214907916 +0.37635884218910787,-0.09605731439606066,-0.09777820001850368 +-0.17425680789485087,-0.18776633454548497,1.7886168651335348 +0.368019307917968,-0.17188920931487978,-0.08809948830169415 +-0.16449149663693408,-0.06435610536997502,0.1670929996957844 +0.15332219251121992,0.04227400700841577,0.12265478078360903 +-0.20115875033589836,-0.05758201443262162,0.21149979559308585 +0.5369087575248126,0.042144304973223745,0.05770325694135836 +-0.24713635566160616,0.10429463296008451,0.9329084206798643 +-0.18228088592673863,-0.11768267154864231,0.8964023545639299 +0.030335936096697214,0.15692614594029397,1.1040194607456002 +0.5612985546934347,0.018146671573606887,0.6538477069116595 +2.4685925461733222,-0.019566204962983835,0.0021051167750831268 +0.49165493216291245,0.20757074184507085,0.2219145403219573 +-0.2059938256394315,0.20202462824706213,-0.24107936941775876 +0.5092483428739923,0.051827977806326087,0.06714081412424872 +-0.24235799112139922,-0.09630367308074939,-0.024183211547086136 +-0.11675738689299214,-0.1400892985743746,0.5133478602262161 +-0.16601601368425314,-0.23442433922883463,0.012469061283302885 +0.2560995490583875,0.2862736094563113,-0.23641192580125042 +1.1673574541973168,0.11355067412237763,1.0642818571363841 +1.942643988352716,0.08937193587951148,0.4130216429580188 +-0.24452563425441,-0.1655321014742105,-0.16078029789761955 +-0.15015681050861526,-0.11570298780267196,0.3149130341571361 +0.006195408865954322,-0.06978052868399215,0.21587300702870127 +-0.24666159780545674,-0.014906023145071362,-0.18753317096689842 +-0.15838720238712772,0.5896848724620167,0.40035635444867923 +0.008437493590606748,0.11417377978949134,0.011488763592976181 +1.64181636159071,-0.020653197846876692,0.07181942541385472 +0.24383001834368528,0.2692891712241835,-0.2493739420554984 +0.8347804644600869,-0.07704569428599117,0.07839643990291967 +-0.20184774921096063,0.15829249416277352,1.3162184177924785 +0.22607833455024473,-0.04752206364402792,0.4051514440578172 +-0.13027504297352735,0.5904284729402415,1.4434236825812055 +-0.14392774104227596,-0.07492607864652717,0.5935824537409498 +0.8247944239068827,0.24386115781033307,0.6467219899315294 +-0.22716141117750482,-0.12142975389217223,1.680030970343381 +1.4352830056141943,-0.08374680884184463,1.4617103235869018 +-0.20293302665004206,-0.24243655443290044,-0.10435159128146759 +0.09658402716708842,0.37990765745085964,0.25226394303713706 +-0.16922561892435883,0.09992334141025938,-0.1587569603902676 +-0.01574851913070205,-0.18681325642365998,0.19235239432382922 +0.9304690569382117,0.10230039978289779,1.2605256783327905 +-0.2283251766192392,0.4969196809877894,0.3807536574157613 +0.4533551763737579,0.11112073291548002,-0.1046134288743911 +-0.1020518770105045,0.4758678037342947,0.32459652023507524 +-0.04272816297123075,0.22431157646792804,1.472007457980943 +-0.16614567480679093,-0.18213437038546765,0.3720420675793935 +-0.1733743020305099,-0.24624835794809277,-0.18736259096200264 +0.5098123393239663,-0.044374077141044105,-0.2427556963580067 +0.06277904159295228,-0.20345724490097505,1.0016493396527297 +0.16819784331208026,0.679149024427507,-0.18520195712831766 +0.4223200937700109,0.14681299326502406,0.3102977756101658 +0.1873879101655831,-0.08514031794593402,0.054251288295761146 +-0.05272558037435815,-0.052668362691438236,0.07017580045753141 +1.4653546718444037,0.0983973779132411,0.7100728747486772 +-0.1831623869965859,-0.10782082984401825,0.15776765903212597 +-0.16764792655202426,0.013304298821983584,-0.21449548818679878 +-0.14267874525286775,0.10317749832389012,0.5269106821166404 +0.2147669052561756,0.3634750560516401,1.011648968571261 +0.7859515848557768,-0.09350064521962859,1.032443747239215 +-0.23394264958359684,-0.05670996252020227,0.2552303814313589 +0.9461456766708365,0.3970440392200355,-0.2203982790285633 +-0.20899166800904243,-0.1911145938025494,0.03325186338803032 +-0.07764254514212485,-0.21852361201764495,-0.12899286905491872 +0.014177606167945,0.5756849070834327,0.7756685642216488 +0.24319497558363917,-0.13135393352215152,2.04719483669872 +-0.0712452009662369,0.2795759969451873,0.4131110333511069 +-0.233493506969579,-0.007933915362038357,-0.013436324687410517 +0.14083007488698646,0.2629355371858392,2.3679215119484267 +-0.15024011544158244,-0.22601452267290628,-0.10296053117641094 +0.697956685946849,-0.07050646678783834,1.1560915494016084 +0.7109739130699583,0.13116554845101036,0.12377489582742196 +0.07900761053348881,0.09262646102792316,1.764259624967527 +-0.10988074566227243,-0.233118584890111,0.9667913184263979 +0.26660814730835714,-0.11239962888259164,0.4646592380521265 +0.9897071905831827,0.10365765752843265,2.023360938197843 +0.29127145750560546,0.6845421958181304,1.2513799278930355 +-0.18433070163897708,-0.24842859928230984,1.928326029356925 +-0.21452032528574413,0.13930543752601326,3.120136255900134 +0.14957510739236118,0.058551871386065046,1.138941674471752 +-0.22310096076285413,0.24440155613028114,0.3150840023066326 +-0.17141880964852257,0.09193909603240064,0.6675686258919779 +0.7396884449866323,-0.0879296746512547,0.14390992139769998 +-0.08619929357265879,0.0568699400249118,-0.03834637468038518 +0.7389906099060267,0.47816804464772533,0.9644362787390037 +0.1258597607883325,-0.2482511429059071,0.36859190721947976 +-0.10783137536890114,-0.2315861582550057,0.49349779997394594 +0.26613955944524714,-0.08274427074314741,0.08730431534150329 +-0.16865735885592123,0.006493593175780132,0.599291274006179 +-0.06418763421867779,0.2955802792319171,0.5207608523264787 +-0.025697320746264324,-0.20948480743459147,-0.13899453924659394 +0.21058259124936407,-0.016622892642625287,-0.0031790752757492324 +0.1796834159285075,0.04380914845756867,1.7544526957959996 +1.0016149499623954,0.2070269293267087,-0.14015880249032442 +0.15598453447342386,0.14298078193647001,0.07569443334498044 +-0.23330088215250092,0.1534660891137477,0.40490470675562695 +2.112718235424524,-0.21342714771146107,-0.03621490165342972 +0.22297998767583777,0.08466973780886389,-0.17530264593991174 +1.001489121231986,0.12452915444105545,0.34149848481489586 +-0.23086370798144107,0.11361362442882217,0.20133085722595 +0.04365435995888217,-0.1056464718059171,0.43368112700542394 +0.33019471777267384,0.3519543011084688,0.0895548069820265 +0.2008650501756944,-0.23290401259053184,-0.229150001894399 +0.979511316606213,0.05726035931169121,0.356427111499096 +0.6741198520438602,0.6403780387502547,2.2425236070163166 +-0.14704487582124162,0.04376186655736858,0.24753166692937983 +0.0947639967893224,-0.025984861885421706,0.12346023637213255 +0.6076777800383912,0.17283222256535608,-0.1450526691268827 +-0.07663985365730713,-0.2182785280976132,-0.0314186552341002 +0.3087127004410217,-0.031016914986234545,2.145193230780525 +-0.152996607731735,0.46154520705117363,0.04979104362678466 +1.1196461399944901,-0.11774331260137921,0.3797641342117779 +0.029498796456300547,-0.18682229415231608,3.5180551982711417 +0.5905390414415558,-0.20658073257854698,-0.0464787778927985 +-0.1525138419878862,0.360547772160443,-0.11847237457547505 +-0.2152374911625168,-0.20395374542732278,-0.19317725183889234 +1.130399189152299,0.13540884163646838,0.2947672580260644 +-0.059056322637863534,-0.24633540350498348,0.9474473627621187 +0.35346135025948644,0.15156078077514962,0.14782600181687128 +0.23353404322861154,0.44396553782664383,1.3856118713252878 +0.05491533264842807,-0.1382013864743477,-0.041483484164018536 +1.792438063972904,-0.14819280410055824,-0.12336282908997617 +0.1552258839511656,-0.18355234239013246,0.13784956331444836 +0.7791988321117875,0.06210076586642055,-0.0037434721921272562 +2.1232949321318157,-0.22174184073650438,0.6682298116613813 +0.5682953924212528,-0.20892545908626894,0.8847860316544862 +0.805482663902616,0.031793398856375665,-0.007745179046516587 +0.2774666638491958,0.17359046594921418,-0.1962822621753105 +0.4199598191540951,1.1865071256872566,2.3358031487510034 +-0.009021474570503174,0.0825054058669683,0.2027338638946235 +-0.023697233489830855,-0.021318995482426606,-0.060745707937633314 +-0.09043729263911668,-0.18292247395402778,0.05276896003933823 +0.18239452504455955,0.10846669337817738,0.9667401872382932 +0.9153584347436163,-0.08040823661806767,0.11537235538359891 +0.04220697626254044,0.10533030203701638,1.0233301845469014 +0.08685046987060024,-0.15364249066918068,1.4252654724515479 +0.11104208641836472,-0.20857969649798258,1.310187897671692 +0.3818403776121507,0.04333412562187755,0.7384008467145066 +-0.12432803109021007,-0.19319647586587485,4.320944668135019 +1.1981992496540177,-0.1337967081544933,0.556514370830482 +0.28177926652763086,-0.15977605085884594,-0.2164327702028911 +0.3642348914163681,-0.16015509428601674,-0.08713339401816614 +0.10463390105875947,-0.14598346789388197,-0.23325239245044158 +-0.22986821081720663,0.017747471483872845,0.83178279420023 +-0.05836911499727668,-0.11925281722662684,0.9461836680959235 +-0.20267191880441615,0.10864252880205827,-0.0945683677273387 +-0.03282162093901089,-0.059840010895668205,0.503468786109906 +-0.05191750164433345,-0.022417871750114726,-0.20211402049090332 +2.148292889951827,-0.2015367102843834,1.046051465498793 +-0.05139951533320142,0.1331172569799018,-0.0305274158396166 +-0.2405912566477591,-0.04435428537745931,0.40813574268039743 +-0.22235304888346685,0.05209877584714545,1.130852152525175 +0.04867129082203858,-0.015043177176378875,0.17140294424256197 +0.07302931916897598,-0.16890382349164923,0.7634376020541072 +0.2939402872768826,-0.2090162419240369,0.20376792278000966 +-0.14654515116386002,-0.03239814834333235,-0.19183297714366132 +0.4338009809052379,-0.030166172092276122,1.5971177604283957 +2.196642510562313,-0.07794862065170247,1.61918424449772 +0.12166283916616255,-0.10987435524849257,1.0956098490796233 +-0.08060449781105647,-0.20302504170252322,0.04811560388957836 +-0.039280198156098345,-0.12617440117667703,1.4489077983501357 +-0.03604369666254406,0.15084757115293745,1.68925743549574 +0.24297391998672407,0.02530636738608366,-0.24867023294167123 +-0.14268339959235676,-0.22418297689476782,0.21103083064787698 +-0.231297409239272,-0.10213319866927048,-0.1874685604484182 +0.35157183054471886,-0.15447413106262564,0.5336536427218702 +0.16372167359423268,0.04119514328896884,0.8219199903983809 +-0.09529331307343869,-0.17442106266509094,0.140667859936975 +-0.12875340598017418,-0.024996092765672884,-0.06176927426245629 +-0.06407563481578996,1.8335450987622273,0.27193587698195876 +-0.20897756902349346,-0.02007560478571202,1.886316073297365 +-0.09998553136998839,0.4928161264502453,0.00018476213189877466 +0.88545507640077,-0.1654300000809132,1.3697304807772606 +-0.11345115080068557,0.11238493043307435,-0.1711495906211993 +-0.04755136299816334,0.07063547276385806,0.10210681150655337 +-0.21951318967690242,0.3861680704261632,1.8031299029686463 +0.19938556437012106,0.17608819562285405,0.9768410969773069 +0.0026281628812885316,-0.09099246489624513,0.16312680668445906 +0.09891837408652054,0.43703739025219324,1.9582833104129977 +-0.09681859969734086,-0.18854749920322972,0.4109185615582419 +0.25125591445823836,0.08580495772981928,-0.036937548145566323 +0.22984438859464673,-0.19725356461155846,-0.034755883283105526 +-0.10639538403828536,-0.06960207355219464,3.3014501314949407 +-0.0014011370546825885,-0.050198793337628084,1.6495839851634704 +-0.07375121799275905,-0.0031197682951931427,-0.23115934106312894 +-0.1995632703277961,0.13273077328373828,-0.24621783403919395 +-0.13408957105203131,-0.22207325752417534,0.5034194487323661 +0.6023852150628277,0.176107308642445,1.2122161840789243 +0.07836796702190013,0.06558379004228027,0.056192698234193705 +0.06570767873983113,-0.07227459662360303,0.5965704494045001 +0.6845965140180352,-0.1888739415287634,1.483923958703062 +0.09482702216746025,0.31503588802349547,-0.21890095459136533 +-0.12082665572446771,0.17228786179753913,0.8027779073834289 +0.4539605563741773,-0.2367755196917742,0.4365971569083281 +0.3948947267728091,-0.23261666636511433,-0.057515763437493816 +-0.23336933608554802,-0.02718675199028653,0.3348250203193287 +0.02207140051224077,0.14317489728767213,0.05797709728932943 +0.5996578510720552,-0.014165744959162535,1.4693235893291419 +0.29373734253734474,0.20896692076828371,0.13052604356782077 +-0.20954283899656878,0.019832200810937894,0.26950807682264266 +0.1104503320319265,-0.0950176441296314,1.408529510021866 +-0.23485198067993124,-0.2456587916382669,2.5209047949524654 +-0.13559962435108652,-0.1528958962261217,-0.11680912356635037 +-0.16837968200354242,-0.17537107761274634,-0.0858231731821959 +-0.09500463543960319,0.06802252977302081,0.4625686765569704 +-0.09539128102503755,-0.05664722289792917,0.6501766921257592 +0.3900856278460373,0.11490669301797696,2.114158012422226 +0.10801581058543697,-0.045604701494640465,-0.20895234449862077 +0.6191672478569621,-0.23895080431624324,1.2305781020170012 +-0.18796738277586222,-0.21274995603099586,1.2750552484983237 +-0.1811839663710132,-0.19789614971152245,0.928296578626161 +1.1043358583868033,-0.12010973701467259,0.11590369287841468 +0.8448568567672219,0.008624070600462663,2.1533487990316904 +1.2115726678375565,-0.09299994768554404,0.523837506055643 +-0.009134196971331554,0.27707654420110917,0.05107421633437431 +-0.21208726007398837,0.013714159164074646,-0.23663958756265574 +0.11594511543884078,-0.11452812353822031,0.3108357335203128 +-0.08031625649773388,0.42513230723763085,0.30929951377956 +-0.19588460125032686,0.6830432647361362,-0.1418217722580617 +-0.10400181177002651,0.041740287189624525,0.16350012283960613 +-0.05234362540712753,-0.078925250491895,3.206983413971749 +-0.05161699459297142,-0.12079524738915104,0.1611477108882 +0.11861703349997355,0.013216798247716266,0.6415272298276032 +-0.1554938224253936,0.4554634634556862,-0.13724277135935065 +0.7549216576714508,-0.1376765219047568,0.44817221367661497 +0.2593008627421426,-0.21574370876467386,0.628172473756128 +-0.14455245476909406,-0.20002727672427761,1.2496987650313924 +-0.02961100160817895,0.0208628633878275,0.46671506203425583 +0.4479780219131506,0.00039998814912267644,0.14384286362582122 +0.4043130555820741,-0.03364869120488179,0.037334987862444824 +0.011317065291725714,0.0684567788299632,0.904738646523009 +-0.18179843284802538,-0.24580209236555167,-0.15634701652006705 +-0.10183459549417964,-0.04438928630415831,-0.03260597457308659 +0.5875820734992119,-0.13618419925310155,0.5643929887338587 +-0.21615067227145768,0.23972373264601304,2.3964590649618756 +-0.04814160760305558,-0.23927377715687667,-0.08146899644697997 +0.641709847771919,-0.06290031049387329,1.564951258757748 +0.5316444210787934,0.18399917439662344,0.646180914003412 +-0.014693298175390557,-0.134232888925641,0.26921599692030473 +0.5081411623465482,0.1559860879247944,2.115709632121625 +0.04745839053847001,0.00806816375011088,2.770701719647549 +-0.028439646800771046,-0.19314407907700337,-0.2322440806012805 +0.5265613300602021,-0.10812792700811424,0.024198713690079587 +-0.22384000219586267,0.02581040064499457,0.9593443703415101 +-0.130927518649603,-0.0883277339202152,1.3452564565804974 +-0.004323363309171935,-0.13723443417472536,0.6673002501126121 +-0.13281888142900583,0.3671944111950387,0.34744450037981545 +-0.045995501682412926,0.45514053408517796,0.1840427767316633 +-0.038090401227809045,-0.09676126019253062,0.4014604327565493 +-0.11097663845612493,-0.07334720024055907,1.382701120518369 +-0.16548246963989557,0.4555773881336852,-0.026655486435397696 +0.4656460092683534,-0.028591130021783956,0.5127198264354406 +0.20054239531937768,-0.16595382392346336,0.14994677065805262 +-0.03146050148571705,-0.22609313939617495,1.774283333710852 +-0.1324675307067447,0.18423507151997187,0.6200366317120054 +0.16915955020660672,-0.05098499669302775,1.1148332663503264 +0.04163380205285139,-0.1647563235493813,0.49377727265796945 +0.1773687273330618,-0.144910868182532,1.746893159305303 +-0.1765818826663526,0.589571977603754,-0.11817239752037609 +-0.14429099451351762,-0.18567571091718443,1.0754365159343182 +0.3168928956518532,-0.04215623062617033,2.4084414685222364 +0.7765208553306211,-0.21157738448967522,2.0452411935722803 +-0.16907067918708163,0.4216059317764581,-0.15068580119483105 +-0.12922951409959044,0.06557737467722569,-0.1405197616245908 +-0.03880053343588069,-0.11878316389680668,1.0089341290181972 +0.04964661698478129,0.10126123296665923,0.16476188777907952 +0.06312595607169291,-0.10114686282442226,1.6582740508453948 +-0.18389750208579242,-0.11064180294242831,0.5363809798503806 +-0.23195470659470838,-0.000759329971998457,0.4186358094971111 +0.367557240536983,0.1590223860239482,1.9653860920051276 +0.5547045799214835,-0.14168385429992814,0.6539266625619173 +0.6698259007840862,-0.06702370187621298,0.8415664723994984 +-0.16910131400141362,1.2600557817225844,1.6287901097007473 +-0.18844006078583667,0.1942416700773355,1.493320471162095 +0.23822766786706012,-0.18625649323327903,-0.0734553716371732 +-0.20805039219268184,-0.22821940563826834,-0.07937823154166201 +-0.052566967593300123,0.21729662336862732,0.9137953587059093 +-0.0892072106906881,0.2915281011370935,0.8243695796519819 +-0.2337545508911714,0.4080444247564333,0.628196846816345 +-0.021733639021957546,0.13392405022539045,-0.18615754432899503 +0.06168541410763778,0.1269426706216451,1.0019198773175504 +-0.04691074602093981,-0.053105845981880256,-0.14492703370137594 +-0.05586072339207848,-0.19718319416854047,-0.006552538832355237 +0.029680007866499936,0.3571845657408863,2.7739870400814928 +1.2482239949525582,-0.221001818752926,0.6938309907502663 +-0.1962335770350271,-0.026186129515705175,0.31617178378860833 +0.2645997502702253,0.08736781284547224,0.19509544317978061 +-0.15888773928010813,0.17494361563799016,0.0507175047405492 +0.06973306892965586,-0.23422440964717547,1.3619194509055703 +0.16222050056636012,-0.2438995796962197,-0.13713549739646708 +-0.16096784994443497,0.20751775877708328,0.801055917926337 +0.253588029357515,-0.11351413536557242,0.07626156748217694 +-0.034780481972031096,-0.07852509453761583,-0.08924026389033507 +0.2925614888445609,-0.06663364458380439,-0.05456107194075738 +0.1544179987543532,-0.17278590606817876,2.7590459333118056 +0.0708639515540106,-0.23679849531771968,0.659308701516079 +0.15043983755733648,-0.1270733939363238,0.9130414647187493 +-0.09830503202873897,-0.23281097371490037,0.06198810178776332 +0.02514898070711108,0.5048358867367125,-0.06483984166220166 +0.11135593004847866,-0.19857592863111492,1.37326413249843 +0.44126446036437916,-0.20402812333567522,0.7805177253996154 +-0.08763767263165445,0.09220883586716061,0.5474124754339141 +-0.11452935725872795,-0.23730912540228577,0.9556063110811814 +0.314334696477241,-0.04420512856697234,0.5087995207028119 +0.15805818251945708,0.4668984385952053,0.7804568976788198 +-0.2336847678730916,-0.1089501260739563,1.480499472755458 +-0.14991902700708132,0.1593981108281336,2.641635827979368 +-0.014134503779819174,-0.06377507200952617,2.621213582553195 +-0.18120206751869614,0.5320650935055269,2.895308701755291 +-0.16514310420326334,-0.15552098070181847,0.8295148823275604 +0.34187047081725197,-0.20638289288992107,0.19002706814727632 +-0.1508419805228752,0.4699075041677483,1.5408525598863354 +0.5255049965072197,-0.24529699051846723,1.3374550512494827 +-0.21644297925390815,1.6715933103809708,0.9400511784701246 +-0.20109087522195274,0.10715973284075653,-0.057918283244597274 +-0.019583539728756233,0.04239228818042884,0.11770144703039137 +-0.17296780396782782,-0.21659955942763542,2.0265278000014244 +-0.1494520915656691,0.5720350767054087,-0.05127534265272224 +0.19718411376037714,-0.23097294677848484,2.06112118670028 +1.002579283304948,0.28600507505736417,1.0253214773617916 +0.09246536419652474,-0.19955478682323702,-0.12661984339577953 +0.80815322013542,-0.22177122180037215,-0.2242268365712124 +-0.1841053543147294,0.3233085448370846,1.1951059203626613 +0.5503655111390371,-0.06053882550020409,-0.03362456769532196 +0.28066929396245255,0.2724210465598075,0.20494931761083607 +-0.2203313403276296,0.7200927703680186,-0.2421720413738443 +-0.13517385676541988,0.040939300047811045,0.3797657521294783 +0.5606274693258722,-0.11334361649800007,1.10154732736157 +0.36348214705546067,1.0336485064780123,0.2849766402853381 +0.19759239386183475,-0.13771589137758644,0.42833974305514944 +0.025288741532224157,0.049465138931381436,0.7047440199104084 +0.08479640663343313,-0.1876599702507189,0.7746765633855888 +0.4761746124389543,0.3340545542651606,0.21823395657332356 +-0.001191631946002858,-0.16112372930780794,0.8204493903313916 +0.2268224525288457,0.10938291412223444,1.0374910373715458 +0.7555816904490888,-0.11581326974515066,0.5191462127281505 +-0.14439597571118162,-0.10289857380241252,0.0019617233737331263 +-0.09957505132355884,-0.19370001152328242,0.5794678649274851 +0.10081699542681183,-0.242065171095542,0.11644616211440262 +-0.16784530663538522,-0.035936641977553724,4.11565842862976 +0.34849217318921966,0.2679539971636833,0.9116787254692889 +-0.08718997135038944,0.028938661865114568,-0.0938180212284987 +0.6394070967301488,-0.03588515444929652,0.32855462847816075 +0.24598964455483763,0.5495789154016791,0.9494100532131495 +-0.09811613025010835,-0.16921100411065754,2.323399214204007 +-0.07457984925012465,-0.204429912169627,2.938948156706046 +0.028392942121543474,0.7750646688941079,-0.031277915731248385 +-0.2157693238820967,-0.19439294532779292,-0.11286458828005022 +0.19557406809327688,-0.09115691455951622,0.8952726211551103 +0.5243395075054356,0.5578097590996772,0.20298271030906218 +0.7254081950283656,-0.17807022760056213,-0.045916233163842024 +0.0697273858248692,-0.16621645379816785,-0.05736121265263289 +0.3763197131251279,-0.1275472378300704,1.1919629501977593 +0.43103094987976276,-0.18648514167486563,3.3488206599684927 +0.005432947234255747,-0.15260656891138147,-0.19852636169974874 +-0.16490932260600347,-0.1513615831824091,1.6040033757684589 +0.9575690592908683,0.04737289612573198,0.7077428733776182 +0.48463165589186097,-0.1560800922235152,-0.1593250442992281 +0.7708940385633707,-0.13938862664461896,0.4862503337109273 +-0.1858654022396078,0.0693240245488051,0.19140411119451928 +-0.2394699611817652,-0.04942449724782247,2.705476442943079 +0.2525818621582415,-0.10190775289709375,-0.06903381360341757 +-0.23266640949386969,0.11397553365922092,0.4756902708109595 +0.8715956569083825,0.026770532683570436,0.078867184725323 +0.44875896019519934,-0.23960214413150574,1.6010163909158444 +0.6050714725980781,-0.13471258762001698,0.5733270386441078 +-0.09962560576883822,0.9985436314681795,0.5040761314946874 +-0.07567780226967982,-0.005691816625910534,-0.15479788448380397 +-0.15992476708251163,-0.1891797989889631,0.7289195973931358 +-0.15657356487302448,0.25989395819367356,0.06143502306740262 +0.500392631331542,0.06043797138946244,1.8260306524240684 +-0.15647514727333572,0.3805031418265945,3.0797326295659553 +0.343585372387502,-0.18868686889333372,1.1535023597287675 +0.24793508471453518,-0.09982848104471514,0.05018139545823691 +0.22250590536700798,0.07935879107307708,0.04480827693098577 +-0.24626698289645424,0.43338852643383396,0.5487977233440996 +1.8458602242184905,-0.20606615297213554,2.1258618305992254 +0.13675253634092133,0.33601711583527705,0.7199872319834624 +-0.11259798584904293,-0.1790939981671022,-0.1987055788762573 +0.5181287536676126,-0.2095562358255281,-0.205703987195106 +0.15065954447178614,-0.1853337177554526,-0.18447178102808115 +-0.049469200319773476,-0.11765795243489996,0.355303203592076 +0.41777888555997655,-0.11754902422763336,-0.24975513371274352 +-0.11473967911581093,-0.2440006364964334,0.7658654574039188 +1.1691737918347707,0.009356211279537063,-0.1577942839384034 +-0.14098511225832025,-0.16283272521554165,0.3422341733548454 +-0.00452574711364101,-0.04759320919816776,-0.24444622776740924 +-0.21593827978548907,0.6313628281108484,0.6225148339393257 +0.19415873395001376,0.01415829643245825,0.6990761192862541 +0.03894128738041547,0.08786603591414321,0.4844919359811467 +0.5984522072452909,-0.1417116608848467,1.7355254723568574 +0.7949432189037304,-0.14897993384715125,-0.09552195326266633 +0.12355377727968286,-0.08354980840159931,-0.1749159772658077 +0.44835699787301797,0.028996109089439392,0.6429705541959142 +-0.1323024826259684,-0.05345376696096013,-0.22796845487669032 +0.6536162234715415,0.558597090916296,1.290119454938334 +0.19729857258182826,-0.18409549573031547,-0.08660517270695586 +0.6162553489919598,-0.10487804983424948,1.1166174150884796 +-0.1673258495026273,-0.16299239373432062,0.15315890040522073 +0.6730131153377162,0.02906280780832915,4.9884355872672765 +-0.08948112902414035,-0.23069983610992484,0.4042306404133956 +-0.056657453703813365,-0.22952898267260202,0.20560316955214036 +-0.028100492047922476,-0.23023752340034784,2.029004111921006 +0.11244516852024472,0.3013225740977086,0.17805142383300776 +0.21573722787709526,-0.14074961507184508,-0.0690466986233585 +-0.23140113980961668,-0.2284179904820573,0.25300716439676696 +0.13347853700408624,0.09627668505148579,2.3510707593252937 +0.4803547228456685,-0.044344788127070434,0.871597750400577 +0.3547730882884308,-0.14582398301942176,-0.16693213778708832 +0.20182034428327944,0.003130122375914479,0.013956862806649817 +0.3535331375191907,-0.020379011007366526,0.5377899133589529 +-0.23102284577844873,0.5563570452971103,-0.17283028801458233 +0.45340499819012836,0.04928212041285418,-0.05823625481655478 +0.6085816101021175,0.4961757941578664,2.5195030105367415 +-0.1835379935366018,-0.16891859659227387,2.0377218239750636 +-0.02657698513147924,-0.19761606105943913,-0.17887040655898842 +-0.2430600927819551,-0.10698685438976693,-0.12625644832870142 +0.04975482213979282,0.6423106331583996,-0.019740616844209385 +0.1734091351245639,-0.20957963496855245,0.1111027868588107 +0.013849919554861256,-0.04476877452982719,1.0342441109470477 +-0.1496100186001644,-0.02247163159848728,3.3031203371486937 +0.10998552061306727,0.19229828193947807,0.3404444232222137 +0.02002568781990277,0.2454532230916489,-0.014061935505394974 +-0.13754828666198946,-0.019900932963529044,-0.11108740729523064 +-0.11469828793422568,0.09598153782462526,1.3738354237278625 +0.6141565804823259,0.05893648861370171,2.070175923178822 +-0.23349788390292547,-0.19851042289998638,-0.14127510575465385 +-0.20499441317296457,-0.19377379287027618,3.981591747987176 +0.8727843623882239,-0.22032828609335528,0.8083372949085197 +0.4331288497542727,-0.006262423090509672,-0.12604674820979947 +1.0059483689991595,-0.17222752470370362,-0.20009051925687873 +3.209442483220618,-0.07234391235526777,0.1549687392195922 +-0.11062200287321738,0.027680849128756457,-0.06947833276177906 +-0.07834299802478117,0.029248553866704996,0.19147531640848015 +0.7304123746196944,-0.23139797482282598,-0.06909441988354853 +-0.02459939061830807,-0.21644116565536897,-0.1662274967952338 +-0.24992559388256047,-0.23905745754546567,0.816142473829764 +-0.015126671779523843,0.17920537092603595,1.1204415693092495 +-0.03576550173547499,-0.13768220565109915,0.12395753950067528 +1.0818187195352889,-0.037452014136143574,0.25242112399135996 +0.23864989135363457,-0.1838832212264067,-0.1936560502549616 +-0.20879315557876058,0.1864992869538381,0.1631473306434194 +0.1490852683517236,-0.11480369218602693,1.3084594028496683 +0.449892334065914,-0.07171705396480438,0.29634757285700486 +0.5074054946029799,0.8023682567995603,1.0702621081734596 +-0.1377842730332282,-0.10624366546341132,0.6755848151584048 +0.10890215797429331,-0.1866608433495412,0.4415768142992532 +0.30046885716071203,-0.0787885438453163,-0.0403006467092151 +0.25513971497783994,-0.2394987564848551,0.9619388344530602 +-0.22419349465833988,-0.10342881601639878,0.6249505588447926 +1.3040287469035614,-0.2336930491877279,0.5239447750782553 +-0.07850851621959909,0.033753137003463884,-0.10626953979110476 +0.5223231847760814,0.15130613240767354,0.7091656148610063 +-0.05317232978544051,0.7036268173590585,1.334417222150982 +-0.020790596626949265,0.5674950672276963,2.6230590437520274 +-0.026646753287870723,-0.17940286330696564,0.23178252983627862 +-0.07022085051722948,-0.239082309011559,2.145955853276014 +0.5343231773427671,0.03306233205354331,1.171858157153322 +-0.22142920153087137,-0.17895721141975296,0.3295445011439708 +-0.1591290176272574,0.17442016621348044,1.144592536073169 +0.20949869877714355,0.35817377979975673,-0.22577049216796283 +-0.0848344649099988,-0.11268799922871348,-0.014693613827031715 +0.5083565100186693,0.5768645022368876,1.2316495132086094 +0.021451937480877092,-0.09525398694585521,0.15796750120368203 +-0.06975084403308268,0.09192888159237922,0.490828183176925 +0.3444648067838093,-0.2138320847993742,0.454638638429953 +-0.23562067331707612,-0.2484482096761742,0.8280914655818259 +0.03907975578658662,-0.18479645229202415,0.029162373928875163 +0.05644938626302726,0.1746074054653467,0.6598370416328142 +-0.19828620322589519,-0.20432992730230176,0.09287657838646657 +-0.19278934168540024,0.41970967158914685,1.2011474421271824 +0.33663523380551996,0.026466027531019398,1.2014606334715134 +0.29591037950624643,0.01669081804630923,1.4515483748940423 +-0.18442532984329918,-0.13508311235572912,0.7143417014477289 +0.027462205640290782,-0.245024094394318,1.9048435845171654 +0.005498169349834547,-0.21687683642956224,0.5435051693833324 +1.7648278170722174,-0.004828710208925363,0.1256843365734857 +0.14927926928385288,-0.025862381819404312,-0.22821479893551758 +-0.0604074518235134,-0.1443043765460301,0.8255455723094816 +0.28509642385563916,-0.06527489755145177,0.22305306562030897 +-0.14710164485827343,0.089036084038632,-0.05336366713337096 +-0.23829770705181616,-0.09772341592985728,0.4840656192740681 +0.3144041102057996,-0.15462352913608002,-0.16554989462235953 +0.9384440440615236,0.4359990352738079,1.5988006884339059 +0.2834661992290358,-0.09450682131324553,0.7477398798211217 +-0.16577895481396282,0.07134268417163492,0.21818019758722507 +0.14662412633793914,-0.15938720952073077,0.3336814871473456 +-0.19824071380777442,0.07930771587438556,0.29995891692682386 +0.38292995805969743,0.05572775245234757,1.0509367267067418 +-0.15219101404937144,0.3995995224119889,0.3883961272418015 +-0.05354878505264232,0.10572910808264552,0.9848598774072865 +0.09599175595879095,-0.1399564633548422,0.4823036333736451 +0.032012475351801406,-0.2485491364304615,0.6716575144326508 +0.10210611610703935,-0.08649885009601016,0.22395669973769938 +0.5989335168915382,1.3441140920107912,0.0946773310015726 +0.793492212158482,0.004449782580041972,0.6106510657139437 +0.1557038455579119,0.06763180147586673,0.6027190454805564 +-0.07885405837842369,0.6377848312388266,0.11105227187914618 +-0.06346388115003818,0.026077544027878763,-0.09298938190036368 +1.7127606307834,0.08755277388173516,0.04616574845739413 +0.1322883717594981,0.09769955208326858,0.1670367752900614 +0.707720952858072,0.08730943183247525,0.18275591825723025 +-0.15707292955990573,-0.24085676713505344,1.2513975580534478 +-0.006818465033309323,-0.17536806496228025,0.1963942554916141 +-0.17087703448125427,0.32594893589823604,1.6522753618544728 +-0.17837387130030047,-0.004663628095145755,-0.03615016875540403 +0.9121540293055634,0.08790882254615984,-0.19316069068201008 +-0.12910156587316665,0.28723714715806004,-0.15959589735461005 +-0.20971659868343254,0.22989312562972286,0.15899840450426456 +-0.24529942047284928,0.12721302864771666,-0.07915481372206393 +0.004218977987420713,0.7507107973278562,0.9081599912972151 +-0.16063413842298568,0.34982722716493175,0.056751742717497444 +-0.1922780070488199,-0.19691318050737874,0.4927562118563734 +-0.015261894057004788,-0.17752697436120504,0.8063085554081966 +-0.16974729045039494,-0.13676993317659897,0.5518184170473521 +0.332279923672402,-0.19097181229179971,2.0035152655752158 +0.11096361553141626,0.31597453079338866,0.8106501776080499 +0.6445337096183492,-0.16363184220812726,-0.17018373737975467 +-0.09117331259953818,0.22630875615474966,-0.0923083775021927 +-0.07083169516381549,-0.13946472890141567,0.10931762637709985 +-0.13577771741480532,0.26062472574124684,0.3494400085291276 +0.23425702298552042,-0.21977233675975139,0.4462269255721264 +0.2943671899836845,-0.10802200043965099,-0.16923722406619657 +0.8078559014680169,0.20397171712169365,1.5092647105013555 +-0.18208417418136796,-0.20319371710344497,-0.1080382028886828 +-0.11420457813897386,-0.17061216907560206,0.7351165469460075 +0.18725775928488003,-0.08925480490533602,0.39314962508942564 +-0.042568717197461664,0.0014060843714353566,1.0392877741089288 +0.4621331253420926,-0.16154783527927657,-0.011623840368654215 +-0.04038048974435282,0.44166334856799816,0.5743512970564294 +1.7935921609201886,-0.0046054386638264555,1.2954003129891216 +-0.08620594271490811,-0.012656815911222224,0.6142168493577005 +-0.22737128819539704,-0.04978422588559686,1.464210822107521 +0.04465790894101601,-0.21541540984134827,0.5357351040556202 +0.2632026057906336,-0.15783707311445244,3.5690244624116527 +0.42302653614285024,-0.14737730758175063,1.0362155872512935 +0.10993494119785907,-0.1591739383367755,0.10456050690952662 +0.16686667872663224,-0.24160352093859258,0.28302584107427264 +-0.11824164747751165,-0.14081118577795995,-0.2317084948393568 +-0.016163699584023028,0.21251759966092276,0.7971814188399635 +-0.1279348993693992,-0.16887154049348685,0.388599901149699 +0.5376893606609339,0.04944982127826786,0.8471625337047726 +0.03673217365675574,0.01385849253006144,0.504643882127762 +-0.03680197677007588,0.8858808659909589,-0.16130905826892106 +0.7089136927559495,-0.03881181677790274,0.09885972776986007 +0.9299038144591465,-0.08722908132442869,0.5826447576881153 +-0.22091505378083,-0.0027066272265991453,-0.17695143898835317 +0.29748956202162813,0.31702417291113216,0.4778884230097512 +0.9810113947142376,0.10697540752725387,0.337333938471006 +-0.18103187723584258,0.047792703025649086,0.07798287270727466 +-0.03744674287137423,0.06938901062605207,0.37297853979049855 +0.028945620182410203,-0.1279076812326146,0.11355094647767472 +0.7527562909269807,-0.1782553038046317,2.5529545388059582 +0.46908070073611974,-0.2380722284688157,0.4208807012491108 +0.4793922418087011,-0.24107732305520962,0.6260385737341144 +0.5687068960782717,-0.19180295821392582,1.13337817033492 +0.0165363396831803,-0.08044611123747503,1.4201630702069032 +1.011825013559305,0.463347217333254,0.20294355788186075 +0.27878458772107717,0.4369401440198063,-0.05347881958831022 +0.05161679686973403,-0.07477135150391068,1.1611850638626868 +-0.042968184033011364,0.1324385281244585,0.3128607028667353 +-0.07072057091162406,0.6380086519422936,-0.21250934925259518 +-0.16133767204329047,0.30079852664586215,-0.17865541870343085 +0.4401234451416447,0.5865880201331154,-0.022326494463177665 +0.03527179008110559,-0.16166911215072877,0.21614921168297202 +-0.12499289167286912,-0.14001999984186428,0.847620002046819 +-0.046677423612459135,-0.14897610323115426,2.438342606197563 +0.7763633166183219,0.10423080974183513,-0.1893720158506519 +1.9082276443076762,-0.001872616215538886,0.9326346249568738 +0.9952717874839085,-0.15597211097953984,0.40276089547978466 +0.8028208802196044,-0.2090026001005598,1.7299673628801873 +-0.10204336283136814,0.20925743880669723,-0.11502630085608273 +0.2186069805697869,0.08993519196382632,1.3612105624426112 +-0.04566272328966464,-0.11841512189265654,0.100474305889661 +1.1144066542822026,0.01173589385434154,-0.21846793498093675 +0.35188340564452747,-0.16668189242043804,0.6582913642823454 +-0.2476739769500434,-0.020398700982285883,1.7033294402002566 +0.16032361727187877,-0.11703323031141949,-0.05245367947839302 +0.34343536868238334,-0.19083703819706233,0.0025835613235134502 +-0.19597105363735712,-0.23219603434069197,4.528623899288624 +-0.021296919951794835,-0.19762693845913326,0.2748770606244034 +0.23144368226641276,0.6812897852272795,1.3231338475098153 +0.039396404307819655,-0.23360799125334444,-0.036340628145466736 +-0.018183431264424038,-0.201472484668982,2.236363582642855 +0.23893258563386677,0.04613233326269012,-0.14140861607969282 +0.4640652872303366,-0.08283650995496855,-0.21461808812656497 +0.39945984316098804,-0.15076644548440954,-0.005106846197221432 +0.687131047672906,-0.16136232114110516,-0.18563892860218778 +0.5134094040333681,0.29033091400913114,0.08316471460402858 +-0.15468548318093878,0.1190952261805095,0.15390977884812734 +0.2148972845630185,1.2137604159174857,0.3987083962443614 +-0.03198088372343111,-0.008794312883972644,1.021923384628928 +0.12975118188251694,-0.24762294139236687,-0.01099745170353117 +-0.20708376787143626,0.2444606682745365,0.8418097893996741 +-0.032134523893515565,0.0035380529285330975,-0.07118425051762625 +-0.011027260812047857,-0.0006251717739947094,2.0027323289060734 +0.023833847241375217,-0.04800393891328422,0.5268189438288929 +0.0427693063438882,0.5407397354246836,-0.23934963942235812 +0.9555921988220029,-0.24659443200616493,1.0188335129685033 +-0.20472859047045858,-0.1942626226466384,0.14572328107582316 +-0.09659060941665334,-0.13822866582826004,-0.1385204298689558 +0.03190583876780789,0.14173738701264305,0.9815192404158521 +0.48777432811289545,-0.12817426333947285,0.05140855769675329 +-0.17176105989880913,-0.20783255436763837,0.6753556819908197 +-0.06542281774231623,0.19081811965094359,0.06542753357347564 +-0.15541792759060408,0.6519031116695859,0.08016518573543607 +0.15378855553911103,0.03982924456810466,0.6269221862396004 +-0.2101366929540406,0.3535202849749465,1.264765128153977 +0.0015219587305387305,-0.2484224219927467,-0.17455592928053978 +0.24556423446934073,-0.11980883279277199,0.9193197390887364 +0.06137643708140483,-0.20833190444200947,1.5976630949871855 +0.21632426369216734,-0.19638377246271432,0.07063489496459552 +-0.21720233126958854,0.4503337390614157,-0.11013673844886843 +-0.16715904466665762,-0.06106713646936518,1.2669242448163551 +0.0708764507177248,0.07496392672709667,0.007644755952281701 +-0.034884234275749854,-0.14525757063427466,0.042619327141634966 +0.26532724026247956,-0.17601923299667932,0.8252668794548734 +-0.07404070332917867,0.23383102000622058,-0.11247104603966426 +-0.24563968332752217,0.3361099946934254,1.7084836906739458 +0.0018154660617648588,-0.13201571502305343,0.09282033292012931 +0.18993420632411928,0.36898462619182093,-0.06629263983766959 +0.3559824239290489,-0.22768471367812676,0.4195942049395426 +-0.12321626135697339,-0.24200435828287387,1.2807884657741126 +-0.18105227522460848,-0.11291407470269899,1.5545201322985756 +-0.1907188420112927,0.042002422122810024,0.26525424832210776 +-0.14420711895617988,-0.03792608083556834,0.12863980852296786 +0.2717468256108818,0.21239344080939693,0.3762505697967521 +-0.06655581866032498,0.001419460296976427,0.5506422498770027 +-0.12156389555020045,0.30705813216068356,0.11860059257225408 +0.546036842419128,0.023982527402243048,1.26907723632113 +0.16797835341598943,0.15045096966674548,0.925296115050803 +-0.21687099040199118,0.6604666725512918,0.8801296483672292 +-0.24057853247716268,-0.09141811934719643,0.08852462446024861 +0.22217220251603592,-0.13635090230660435,0.008939660582931608 +-0.16193037665172033,-0.21905156838698525,0.5050833086649621 +1.0282051404932173,0.5406990037797489,0.5362263222003733 +0.6848630732035172,-0.053719220503389425,0.3140508502928159 +-0.02172702949075231,-0.05639340803532181,0.08585538336111975 +-0.006643039973573572,-0.04376984807663464,-0.011791853617128367 +-0.12051219331489632,-0.2053696821077058,0.1143002683053746 +-0.014395970866188379,0.05207053441546383,2.3619900967398997 +0.9835191431734807,-0.21862448525820533,0.5392782766793492 +0.43657541681009404,0.059357173529519136,-0.10819978140857031 +0.049897237992529264,0.4007077410567116,1.0043056054893276 +0.5352992676991319,0.05981847793651324,0.08047660728236533 +0.1887091572981966,-0.2160998516283204,1.1448827077985306 +0.5608323006109645,-0.23776596268100056,0.5196869149282201 +-0.08451674893175182,0.05515665955113053,1.114979103014577 +0.5380306008797903,0.10990914941401014,1.1146029546695606 +-0.16976990444360882,0.23677648000445056,0.1131072028693969 +-0.19451770897011572,0.2616206107253336,0.8797823341035997 +0.48845023415330224,0.1800986004127189,0.1745146127295399 +0.6612792638579381,0.10047307702654695,0.0803996628104362 +0.030927806021153692,-0.22792983736577574,0.6347700928643539 +0.6223595350334361,0.3008650376242241,2.7635600527988538 +-0.11188221249471045,-0.20742102971145623,0.19727575151319876 +0.38564735322663624,-0.0216230663706935,-0.004706440904163917 +-0.20243965152926285,0.45309975799126,0.6320030944108218 +0.011585663102999522,0.5046988403707607,0.64990798587764 +0.04183496204037057,0.03593998099464313,0.13791914302873232 +0.06122971712262254,-0.1783062604576315,-0.044437909425466354 +0.19897402793668423,-0.05773177965310822,1.1393267994487706 +0.062164090040496556,-0.23644142695672324,0.7597406243966403 +0.36990651732397084,0.01007741820838609,0.7294951404648542 +1.023902192144741,0.35810639463714555,2.2558098943353215 +0.23370605935248995,0.4141884141084595,-0.21001334433528418 +-0.17358002637878814,0.08632528093906894,-0.07382440679460148 +0.06679936196620445,0.667397171280249,0.45544770593792994 +-0.21152431752753922,-0.13053487678839282,0.5210577100072814 +0.3012665330682375,-0.14810799236170855,1.8440558406314183 +-0.06495464720179517,0.3741388312370789,-0.14903026405941308 +0.33235372057016577,-0.042085332830773176,2.521284223963571 +-0.0034656304243749214,0.09959589404822933,1.4235848619201124 +0.26410238363368077,-0.16490209536303335,-0.24165305425159572 +-0.2334044277442357,1.19619327287998,0.37750020943555285 +-0.24187901257859656,0.12819983794565826,0.9604058454860007 +-0.1611073927626357,-0.046109957069206536,0.16809731623727459 +-0.15015012186025134,0.27187479214678323,3.3502491923931235 +1.618829910221739,-0.2150479986082217,0.7224911947696755 +0.03240336448472364,0.11380654788704314,-0.2346277668961618 +1.2354093774844634,-0.16864296174329135,0.2997432203534025 +0.9352224166908507,0.3513405891744992,1.105517129254063 +-0.10330981016293331,-0.1542974800689088,0.045005034058236915 +-0.14977229020817326,-0.12644522928338048,0.04975869605416894 +-0.009310203940364886,-0.16080853098069536,0.05339594440719431 +0.382118302419421,-0.19646094370760875,-0.18132479073220845 +0.5396876638369741,-0.0007484917086056919,2.2067160172846116 +0.7941787386751711,-0.1010682407784842,-0.12049635424151797 +0.22352995772291823,-0.09745321627933817,-0.20850599540089765 +-0.2179011301546161,-0.2205780529101327,0.7953420107498601 +-0.062131055832158055,0.9726315549025217,0.4642942504969685 +-0.058754891505757606,-0.13097485061289096,0.3312752717115496 +-0.11882913754873303,-0.24966066827923838,0.10001124880204876 +-0.1234942333719053,0.14961505523764806,-0.007529644431028576 +-0.09855409029444698,0.11332269363019304,-0.22090206603944437 +-0.20465438153297427,0.9378966534230606,0.7714623778017768 +1.3768381656862494,-0.20515958778851173,-0.23250591598563 +0.7051449948831036,0.04542160951704838,0.8745219571381473 +0.38766067218188904,0.05368920482194833,-0.21524373530708513 +0.3657845943471907,0.8445581294371842,-0.21878764057753655 +0.5207702144874657,0.06598497070041459,0.2441456687655436 +-0.1456460253788619,-0.009030424873056137,0.70401990518773 +-0.17264303418809188,0.14334126593302277,-0.11474577203904643 +0.10109352413974027,0.06552535834594436,0.01785310701329934 +-0.16891031921028055,-0.17575970792397916,-0.22400583300219823 +0.521585165702632,0.28814052492453246,1.3357298435567322 +-0.1311617808569013,0.04027872772982183,0.4282396629154346 +0.24393117458122088,1.1159862297010246,-0.1909369435435724 +0.786929021424797,0.33862442420055083,1.1488309717047436 +0.05419918887840547,0.3172384433404195,-0.11645522478689013 +0.09330131427192578,0.32787737965111585,0.21065783099833923 +0.017062265364950924,1.2204229652569347,-0.02103699438467313 +0.02069990225443774,0.08486674471089789,-0.03576098180323736 +1.174906133643931,-0.06624200212141157,-0.1794221054485326 +-0.23943937341492905,0.4206494387368582,0.03252869078377224 +0.9071951515552312,0.13647976386519167,2.0937419946838625 +0.56829307534397,-0.21486242965067182,-0.037830660394515325 +-0.11222998148239408,-0.08288322617796037,0.4209339452838228 +0.7112579760142225,-0.17779337388212282,0.3865965375327025 +-0.1468003896605315,0.16414071270212133,0.10103495321895029 +-0.20888735456341634,-0.16160273785777257,-0.2228818476589572 +-0.20640490317598817,0.047711423554768706,0.7374059826603996 +-0.06985635163322479,0.8188843729966995,-0.037606443808450934 +0.08127666018371354,-0.12765489878684982,0.47086985092715306 +-0.22574227484425954,-0.16414062138949553,-0.16976204629493685 +0.9729906411998801,-0.12841406526548596,0.32664600674106015 +-0.21514329262224213,-0.13146905449833085,1.1943142676155432 +-0.15189109117844138,0.27459680770201467,1.4287645382694585 +-0.20221154024140203,0.1829269253801008,0.09416860520634429 +-0.13110735397922735,-0.0015089621927671382,0.903056984587151 +-0.09479166816890577,-0.09447514224943254,0.9802656106373222 +-0.12080672072007256,0.10414947383510165,1.0477510176154767 +0.38643849955581944,-0.24264940052135203,4.666260619987039 +-0.1907861602419498,0.06186585191646743,0.3444901565328914 +0.1434385424720216,0.5564913118738014,2.020840003755831 +-0.1113496547680568,0.900497707628712,-0.1712000377524986 +-0.12237808084073157,0.6057344340203988,0.08902204149810428 +0.7340292392631625,0.09541267912495816,0.7548304959856864 +0.16952591583176452,0.02428659974719999,1.8870877901811305 +-0.22556383044273567,-0.05466777886425611,0.9479856733673524 +-0.13861081215980725,-0.06813980772682926,2.120250420653097 +-0.10519031087958286,-0.04977875667639747,0.3090891788553516 +0.33047142758820935,-0.14712255078198982,1.4419940797385709 +-0.24216317313595348,0.3903388115937759,0.21016615944423972 +-0.2459981433017964,-0.14460169707583947,0.9268208971472425 +0.2577717058740919,0.4331932055004083,-0.12628048767160963 +-0.13751485759604767,-0.2313560294054457,-0.15719075863435827 +0.14139142819582895,0.1296733498934493,0.43681287774780164 +0.33549607034980133,2.2561741565733437,0.04509787348951394 +-0.1758376100119099,-0.16143465634632137,-0.14096601238835532 +-0.1283964499595746,0.13393252206559209,1.0536203558485544 +-0.23452753228405004,-0.13564938785734942,-0.14137006288425708 +0.03031728614891782,-0.0903856889603459,-0.13792086707334827 +-0.24184367618529884,-0.24738378812499337,0.7473964181737538 +0.513295274328276,-0.08848671778405603,0.0008732846118020832 +-0.10351200223436852,0.4674365842839525,0.3940372595900262 +0.11329141598998838,-0.21510021367914772,0.33967460676074335 +1.3497784858342237,-0.24640455540779987,0.06900239439985767 +0.26627986864630737,-0.06782204719817347,0.8951219207562731 +0.29063256179981245,0.09137913568173678,0.013505088434863644 +-0.012763139208049556,0.017189641498672026,2.1599313404792304 +-0.20249318279619027,-0.23816809706949102,0.2562346984888346 +0.025472610799072315,-0.04761340057979241,0.011270860480322276 +-0.1587041014834571,-0.09719303596549436,2.0419013566158037 +-0.21439585120181814,0.7523200908458578,-0.198889825612529 +0.11481722604993688,-0.23346706854471536,2.666193117899645 +0.07654841943533525,-0.23118080212085856,0.49272662129728273 +0.06845673358339677,0.35758870571164847,0.013933062671002583 +0.10849424510402922,-0.22992387066736103,0.6881178730888199 +0.18656613937398853,-0.2285045613195005,2.5960446720998194 +0.6406955425754113,-0.018592925564853202,0.4318614009467151 +0.6999156599247048,-0.06227554020940834,1.1900781829970646 +-0.042089556068292316,0.4974188730647342,0.3313693152604841 +-0.11655969857145312,-0.1660747500262182,0.6088358672520434 +-0.09716408555558576,-0.02583971503187854,1.755153024743311 +-0.19780157131170759,-0.15609577883105424,0.03406728149411409 +1.0820305912885726,0.2708831173941719,0.8031132673685566 +1.2122107939412543,-0.07949433418874263,0.45396172995205464 +-0.21100761960797193,-0.06339247947052995,1.6966968218831462 +-0.1851023949708041,-0.055633756960874886,0.2515471348639987 +-0.20148084821771514,-0.12625758086039815,0.6690657137935326 +0.3457868650982081,-0.15719550342431235,-0.20661112277323762 +-0.21015232954660004,0.10911554639538057,-0.20674281192558944 +0.04935180087612012,-0.12345333683398751,1.8099671176729557 +0.5007841322306382,-0.01910192281315995,2.0786204776228057 +-0.1907007996416668,-0.14741279109620498,1.1933070674973967 +0.7576957450643107,-0.035417673257731014,1.0221329804320847 +-0.23843174826971228,-0.05671019076905595,-0.072316911889624 +0.6548105956316717,-0.22113601196808824,0.12537904377085368 +-0.23044758467217982,0.0873205807568534,0.13705760739175377 +0.1088187662201005,0.06934651901254169,-0.13318800095129593 +-0.21967720199906465,-0.11134428559046686,0.6246789024408986 +0.10256960111827917,-0.039368931708674476,0.7127713759477554 +0.0811998736354047,0.131862798288705,0.1355922275922128 +-0.23117568313611994,0.02892075436247732,1.2108482875169018 +0.029998113605214705,-0.2202150833126442,1.1629794879320003 +-0.0575620728600551,-0.16665406291565882,0.8178266997967027 +-0.11987608173204695,-0.15602692437688936,-0.11571019506819114 +0.005942089070787027,-0.18888087472338766,0.964411829253401 +0.5904370098690278,0.6270019148629727,0.1641683146695871 +-0.24294285760035222,0.6772293882501491,1.9248118347312753 +-0.24560551706947537,-0.15909645852498355,0.5816660738141217 +-0.019093380548796085,-0.17967151335369058,-0.19298048539831245 +-0.13022828500089406,-0.041452625594168846,0.9650180188250512 +-0.07612142493517246,-0.16842524504930534,-0.23928658405433592 +-0.023883791370935492,-0.20713620704863825,0.3153418134665732 +-0.04253769409565228,0.23370287558950992,0.596546913413155 +-0.01302095718392604,0.03528398514275061,0.7943939159591995 +0.3163579406020339,0.029820112323127257,-0.10887249687577982 +0.07294646657278636,-0.0715859566697051,0.27415057242431484 +0.6626109056200946,0.303928147910852,2.1679212109264836 +0.9079020023092239,-0.23065316716028986,-0.2016243172912367 +0.8118759838069389,-0.1665743210425642,0.6168197027385814 +0.35301621268834416,0.09740318034384288,0.04517096930871328 +0.11804053677760767,-0.030365683952389116,-0.1713970348918658 +-0.019616061745132002,-0.09912797094248282,0.5124616871790779 +-0.21559772000265257,-0.24395724024561047,0.572997515906183 +0.013015812347936417,-0.1906489644800398,-0.04886034285388563 +-0.18367176538765836,-0.023470381431352882,2.077081525750319 +-0.1515240726013651,-0.05496523485018473,-0.0008435221444628993 +0.1068953278578938,-0.16562101620745825,1.8962784234557786 +-0.17501221499638436,-0.1546255798966538,0.11381727510184675 +-0.05497209688307517,-0.17142926142127876,0.9866550768509195 +0.3211167535301872,-0.10908476001882805,0.5864862246701846 +-0.16159341002404365,0.08616012426495323,1.3282832920160716 +0.6332142956498755,-0.1670525633090263,-0.140334045442719 +0.48444987461054945,-0.15601493405603997,0.47602616385361185 +-0.24301933046472393,-0.24311401325142243,1.1484196742169828 +0.6076927680537196,-0.20767830500160056,-0.09290680258411782 +1.2245242341440592,0.08927148276026803,-0.1269884182442847 +0.0487967253703353,-0.08244785753340247,0.006707846978062093 +0.4456107842557453,-0.17432200822833493,0.7097856717984214 +-0.20857344849863896,-0.24609773433361834,0.18352098681066803 +-0.011519446668089572,0.9750576134236875,1.5219479182486173 +0.37328354390328844,-0.21632072797276555,0.9373243877769819 +0.000478734246501189,-0.1040029940630966,2.3698773596736866 +-0.0786700477383929,-0.10336528580900015,1.082403404201919 +-0.2463912863917961,0.08857624560958599,-0.18176125560423984 +-0.19538586754848292,-0.0045935250262755245,0.3621844480301015 +0.17340599482361924,0.7241679887718182,1.6172534547200725 +0.25817618541733556,-0.24574721902508445,1.4895048966746243 +-0.1378751747849729,-0.16458148176019965,0.22400490747167856 +-0.22791803944223635,1.0690249721615028,0.2890356083331126 +0.34552863655937816,-0.2469293077623248,-0.08306092075225008 +0.32621514852045685,0.23152872086496945,0.19376109836849215 +-0.10858062492534978,-0.2150870507675583,1.3296914893268088 +-0.2440757307364224,-0.1257884162729173,0.27477998262933556 +0.2667220585396296,-0.0008765879575054758,-0.06889656508863415 +0.07236593335546987,-0.13341195962475882,-0.2242738778268823 +0.4732948583086075,1.464354802508988,0.029840570174769765 +-0.029253074774955812,1.049124209634544,-0.24518247892529788 +0.58131828763344,-0.10151254871693663,1.217838366472084 +0.4604518783497562,0.1768513728236532,-0.040819623312138315 +-0.10167903176927034,-0.16109806918887787,-0.07684225424006788 +0.0678730528382886,1.1562309028868774,1.078736051927668 +-0.16249029881262106,-0.13518941856493616,1.9565714283654887 +-0.19524123391168,0.6534780199892045,-0.03621675760536494 +0.027776008701979382,0.1150234598667288,0.12316338627655948 +0.9424998777916316,-0.06032529524308741,0.7618340437973432 +0.03335652220986457,-0.09761537689566299,1.3014270341607366 +1.127523379333917,0.6944712936772889,0.9184064567846784 +-0.09065233530092598,-0.10881590410292816,0.05960848304241295 +-0.11349442306796917,0.059442755647680035,-0.0741748485646577 +-0.11452975541027291,0.2597976917362381,0.1095074241608911 +0.1494140224695042,0.04825360593522576,3.6497478767642915 +0.2826801757198263,0.03738785033756942,0.32484747288104676 +-0.2260609085647185,-0.18592140200824592,2.169982592036789 +-0.24773331614642033,0.03909573861748483,2.004868818381794 +0.06652783037149101,-0.10938610990922129,-0.156488273399633 +0.003879712764570775,0.06748487716666102,0.21874246023514754 +0.6419298021736077,-0.18387805856963552,0.6608708940097262 +0.0920229508173348,0.6951683271578952,2.262435500540464 +0.16245047863037304,-0.2385319177681153,0.043669527170573486 +0.18942848857982908,-0.021668067805420937,0.510986102323801 +-0.17111897837412926,0.23490485975385722,-0.08485555960920912 +0.6738035475297789,-0.06325016527528848,0.23441245730123994 +-0.14617391259659274,0.06214734877144101,-0.12912902945156193 +0.4028678335659007,-0.03766226725222219,0.7909201364959528 +0.05857557956473408,0.03373105065098814,-0.20273532995350885 +-0.2289973858578003,0.15969955125208268,1.1437063038636301 +0.43900777451783135,0.06909263490581052,1.872093219545616 +-0.1268451606954773,-0.17864731431331277,0.23474552418259748 +-0.22366374181950494,0.32342962378057694,0.1255166560572033 +0.3211603771777246,-0.21399707894608178,3.4305279949066754 +0.2476057389422101,-0.0692587418735679,1.2692285538388057 +0.3467756872163509,0.01766101673338938,-0.037026375306299236 +-0.10272803722667281,-0.15337714309705153,0.9626595908773121 +-0.203534453407642,0.10576273483814053,0.7402050851648744 +-0.03723717178711944,-0.0482149487762063,0.18512356697966365 +0.6158318164384461,-0.06927867506875646,0.06748116137439275 +0.5076517211612971,0.20727133765456707,0.28216150706385834 +0.05994434650857555,0.12778026217780325,1.2644606268832927 +-0.16633911668970966,-0.0666726308529969,1.0347656600894182 +-0.0003832140106621307,0.3402004939324995,0.0020295690067973493 +0.12636705463278786,0.029383224218468063,0.17653118674163432 +-0.13243559261322094,-0.23899543793311695,-0.22090116914104113 +0.02050213241619575,-0.19181042865943151,0.06018258648238717 +-0.09873085980963575,0.4804188444203651,1.0355868155324173 +-0.22509103578765743,-0.042420514586268804,2.357216141761671 +0.11184885382800264,0.013408557436443147,0.4473480698679121 +-0.18736843340787954,0.006966341148639366,3.8412313789623296 +0.8358994556639425,-0.035374305110378895,0.05815017659703142 +0.5406493308402797,-0.1243941169841172,-0.009664679947390842 +0.17455168442777452,-0.16869975275474447,3.2490047792119543 +-0.1991974997707074,-0.02073832601180514,3.2552098659115765 +0.20268888538108298,0.2605500868937287,-0.16797174657269254 +1.5010306756957386,-0.08097141707889924,-0.04306740485558616 +0.2785069785242199,0.05405473941775507,1.1149095341099955 +-0.2124766008957167,-0.23945307279943642,1.2433125720870104 +-0.1742746830129968,0.2805423484688362,-0.2458269995115163 +-0.032468553653246884,-0.2441987896863808,2.2248396383443847 +-0.07330015540151341,-0.025997019336079757,0.057703647516199774 +-0.14703502875945257,0.09610915785539653,-0.11649493391682308 +0.24758092321371766,-0.24527273374534284,2.1223872465412628 +0.2861597027003857,-0.18547587497651954,-0.20373905832411182 +0.0692179533936983,0.26380410873600635,0.5514807487507832 +0.22987470386809833,0.16738604748705987,0.40817850399031774 +-0.2250318361900781,0.24844084907306668,0.12280798498915513 +-0.21750620312394564,-0.08156101860550291,1.9413155503732726 +1.7413607260409498,1.118427237116645,-0.0015513656040206103 +0.012362869504313478,-0.2442378111135397,0.04017547049773462 +0.20553796381093853,0.8783682742836034,0.2821839416314307 +0.2889028716008084,0.3483851655587409,0.36163423102534653 +0.22279956600306317,-0.07854497629171023,-0.004279196603293206 +1.5359069358256445,-0.1673474612252771,0.6616361408180614 +0.4107113722757978,0.5446398838336444,2.6545988833841503 +-0.1841512230268258,-0.21898573316952832,0.842314863494209 +-0.046074316124418396,-0.1745765738319386,0.495335225093821 +-0.21229532312071409,-0.18461870575224482,-0.0422181774336195 +0.4167085858479004,0.4751683725381902,-0.1597309605518104 +-0.15951168270070193,0.20025707278708427,-0.03318281995324529 +-0.024361907354730566,-0.22108141066866016,-0.024545186056455337 +0.03933845512981338,-0.06158068376047768,-0.024414575191896493 +-0.011408542587980297,-0.18560221840828722,2.3951508898633773 +0.22496922804821906,0.3004089110483731,0.11585973856864479 +-0.08323015468008452,-0.0199742184688583,0.01038917502160197 +-0.24799206153914757,0.13166723128814217,-0.22079858587624557 +-0.04635186337143907,-0.2043067076322359,0.353689585893992 +0.11605996447020922,0.1373161470212379,-0.23182932168146878 +0.03972691198752176,-0.23196745829123402,0.694733603810166 +0.3196509608986078,-0.003967047423102055,-0.12072088840060297 +0.00024721477826933347,0.37172296691328366,0.2753625767661748 +0.16908534310236945,-0.08672116343266309,0.04527896335999104 +0.4506155352230856,0.6619501783390879,0.6017097886133056 +0.4924103657162965,-0.21606380593790897,0.574421269340699 +-0.0525944216937739,-0.08015701544271336,0.30426422748385984 +0.49121810769475927,-0.04482394403945053,-0.22029269145194005 +0.2078247905991773,-0.023566420742056005,0.8185242735828586 +-0.20406402053168182,0.06363840310924329,-0.13038440031197135 +-0.02787080879399967,-0.2164384200401392,0.12731363414083396 +-0.216255310119831,0.470953637665002,-0.1165017540852275 +0.27304732835754486,-0.23210960933497227,0.44864767080558354 +0.19730326726319314,-0.219515763806588,1.6892748824489092 +0.39406754026530944,-0.16469698024112822,-0.10037796346963795 +-0.19713610226531827,0.24123144116768047,1.621551944345008 +0.22324583689142358,-0.05117972282478728,0.5347117048619546 +1.0571552079809532,0.13226472912167364,4.824232591854774 +-0.16067650340506384,0.5346465889218726,1.349820276270759 +0.6984697533318027,0.40861089664743466,-0.06838310471979725 +-0.20446726824734046,0.4037326057547491,0.5275953076524083 +0.45813975262575857,0.2861757282527895,0.4944556697207946 +-0.09609774320280218,0.2894493007719663,-0.17155921544125943 +0.774097540746695,-0.2426010560777012,1.3359699147293207 +-0.2053330627039213,0.31974339268569185,1.112986860463449 +-0.1575809120224721,0.849350045956236,0.9341867812211837 +1.147972287903607,-0.18651914934835706,1.2443005848560031 +-0.07630614136095334,0.054886217588189956,-0.11823487641648142 +0.18958985960724123,0.16574709534101717,5.15329706790048 +0.15122290067210298,-0.2034398047644329,0.7699132241731659 +-0.1023890705742275,-0.23807856569512878,-0.15950886227805083 +0.8214910798052628,0.22186179171603132,0.14676644216338497 +-0.2198598705356156,-0.23738143111968074,0.38397846051214224 +0.03487009833556831,-0.15454194801885374,0.10004159571728599 +0.00989138675230583,-0.1556502502902899,-0.03389102476075884 +-0.11223306147221246,-0.010966833144203825,-0.15240871432148478 +0.22580484316019678,0.34839285885915217,0.15736814471704103 +-0.12925848540316942,-0.18265141136235552,1.0619986807803559 +-0.13014797766979153,-0.1635024107425234,-0.011575280300746393 +0.3716110762638084,0.6751701565913599,2.0938856591859123 +0.2170511382516782,0.21302035164975414,0.05902927449052486 +0.7605524474909753,-0.08890309557949666,-0.08502445768501357 +0.12536910343967467,0.7913069021015224,0.6466562753108646 +-0.24785078770782634,-0.2374925107299876,-0.15737670491127909 +-0.1936111211406692,-0.030613244613065832,-0.20895891374830558 +-0.04648777928493933,-0.07836494140077299,0.7056310677414285 +0.001888466263810451,-0.11542584185816732,0.16355236628471415 +-0.06742046750936967,-0.035030721962198974,1.1775598689821074 +0.010996750086308349,-0.0021355426873777006,0.021396831599660382 +-0.1631731040054379,0.6232981812129502,0.4606694553562738 +0.2483748153489616,0.0994337554429835,0.14453538109773506 +-0.13524239148483053,0.23058297604516886,1.4931775972920995 +0.041105310584981236,0.00476474362441931,0.6180354011870183 +-0.20741417583901348,0.003325457047055169,-0.14725280060619836 +0.9497928962911175,-0.22048115024794762,-0.10916653108708729 +-0.11075192660166219,-0.2492781262194246,0.5627155860568045 +0.21006515730468633,-0.1607044754362703,0.07557927931871439 +0.19451699241034576,0.2240823549917238,0.42216562652580614 +-0.21098317266569394,-0.22394159389859034,-0.17655915607970785 +0.31208625791215916,-0.07746011173587028,-0.09242424812211072 +0.6591949928261123,0.4805149020153795,-0.007064885256945069 +0.36402815323665383,-0.21950265499766938,0.0035834879783457896 +-0.18533235022079814,-0.1729824574021615,-0.13295782991642746 +0.7095399314452326,0.9293129458417022,0.1404854964609175 +0.05264247239391051,0.023983514086229396,0.5158600504577321 +-0.06990680966749432,-0.18153130481135898,0.12248342040902344 +0.6177144476418246,0.009871312343639027,0.7936442336784699 +0.9367832312273876,0.19011815533605497,0.1920896645155883 +-0.24442380638116548,-0.20631941216097863,0.5138738696791869 +-0.0905587755770858,-0.17979305867061562,0.3570635152434106 +1.6946645120236574,-0.2319152784280139,-0.19614875795152495 +-0.15204001918859994,-0.024591134758729122,0.5807555413562425 +0.030077517487793637,-0.17968009739429414,0.04813686297053682 +-0.22285192329609332,-0.20709083391632643,-0.23990424192349422 +-0.05887788879433814,-0.1869601115083421,1.1054644704334424 +0.3270042539011856,0.4071411145770806,1.4161400297910516 +-0.23054874876544743,-0.16327128648006178,-0.20878059864027423 +-0.0732720885881249,-0.06400124258008913,-0.21911574327256775 +0.0361842487558075,0.34745731828960147,0.8175233136466529 +-0.1270204931239229,-0.20892824409795327,0.3172476299833783 +0.08361950616966413,-0.13477964221212982,0.08166863745501735 +0.0011110783813754743,0.21991931793488534,-0.17985970594504497 +0.8444492918680551,-0.15035071768936858,0.6286113715000042 +-0.20165023854429956,-0.22540538260261425,0.28231409125101836 +-0.053611664928002234,0.04441690043529384,0.18371946650939114 +0.1361715106923635,-0.04103251033763511,-0.048624316406168905 +0.15744174467794053,0.34662215069872004,1.3172880024088784 +-0.08901287197818342,0.2578403191042943,0.6547890147846255 +-0.19869077270785895,0.5131411592471881,-0.04495580721324441 +0.1832282047172724,-0.22006348792028402,1.9179445968057944 +0.993357198067959,-0.12612715880853984,0.06931362346727593 +-0.06024198563944433,0.009089695879505255,1.242646228424493 +0.04651395650055434,-0.23068084385423565,1.4478095531473139 +0.291751449446212,-0.11785728571440254,0.6102459807295604 +0.21178091701535112,0.09317067951054736,1.1975260306684339 +0.3330803272829461,0.10575371356857788,-0.22506157254390155 +-0.11658848718950854,0.19544153581646656,2.492602368556604 +0.10415568683354925,-0.08585694009229561,0.7098554062171102 +0.67646773758962,0.4627066532552988,-0.010563712360824706 +0.04222171308131706,-0.2102633706778257,0.5275327165213896 +0.6767363952725625,0.436780760105428,-0.20272995732351223 +0.2490992659498686,-0.24946875202155833,-0.17874872104348605 +-0.12050811669128664,-0.22782632523674007,-0.0914718875149019 +0.01877869496165102,0.6476459330236246,2.305728994167973 +0.09124221606936322,0.03053231662056799,2.9584462809093437 +0.13705185936067493,0.37854374235089927,0.21745966557974056 +-0.2119862853603642,-0.10923736404700987,-0.12408562846154328 +-0.10655513820372037,0.5137816037244556,-0.23158551856663545 +0.16291674796461902,0.03987974400783084,-0.04612243718356218 +0.7825639386231842,-0.2180483957184856,0.5706447875755994 +-0.12415914792957403,-0.15033663866111543,0.1323110541558022 +0.8584670471632196,0.4369581574215149,0.1358206667925571 +1.3094995932058917,-0.11781630979422028,1.3824145297327988 +-0.24533151894073288,-0.23123558038215397,0.2772583337464394 +0.02537879398263798,-0.17235474113829463,-0.058510046175537095 +-0.22056652568624147,0.19016071127312162,-0.10519300012125893 +-0.1376561816110445,-0.09349276525398645,0.09840324211298784 +1.4569563474976714,0.13441986466414918,0.20725725164391162 +0.03441116856368581,-0.04424372167480556,0.2880741768020241 +-0.23103632558352877,0.08835534403077167,0.7292113201439621 +-0.17253251900348565,-0.029558063590544997,-0.1537479088146104 +0.30660412934530046,0.12184470122965829,0.9699252030719077 +-0.12586758963427577,0.07775779180007603,0.07767416681197159 +-0.20020585405686514,0.08968653574717439,3.349141721901077 +0.30467590746965123,0.48055526257666137,1.4419277050844792 +0.5590192672049675,-0.2097411213402664,0.353954726494218 +0.18542015432197068,-0.22307270291443626,0.7509768347002053 +-0.03384382738921224,0.4120481327185571,1.3632219394654217 +-0.24741132008913508,0.07951348677184061,0.22931401843648175 +0.5088398376846514,0.14747233235330814,-0.024218199632575654 +0.6962390890913429,-0.14561751068035927,1.9991463502568458 +-0.23364521753104162,-0.1861750969817928,1.7057102879069024 +-0.03118912549409672,-0.22091629350443667,-0.10320128536298132 +-0.2389514904297496,1.0185383492831266,0.09238708496070569 +0.26069097242395234,0.13774998354378015,1.9035912353885736 +-0.09031468167954215,-0.1474057826310502,0.14896643839255336 +1.1291447022976526,0.3259929322890701,0.31689277961662576 +-0.22267773106919522,0.25413938584270335,0.8562206477195342 +0.040342283878094465,0.2924501419796415,0.3076290898336068 +0.7528778994062129,0.3747784390853769,0.18622988766757032 +-0.19361959945499335,0.27617198789534725,1.8249438250209855 +0.13782683245101063,-0.19269863293576994,-0.09885616020971452 +-0.11306700488805463,0.1373494596546555,0.45033252381408895 +0.7382188536494273,-0.21682985224915677,0.3929560845897828 +-0.08401054707184347,-0.2492847714521171,0.7623648233243532 +0.21077684044842654,0.5842395815242037,-0.009725060395740115 +0.28498167141411124,-0.21744167210877896,0.544615006656137 +-0.12299807443531377,0.6891723557934389,0.02042203994316577 +0.6744563756177979,-0.011093418774896946,1.1785970277278297 +0.5553992062865017,0.7759048258351922,-0.14455567239854955 +-0.17068658186832064,-0.1178261657488735,-0.014743483629039295 +0.5014830360283976,-0.062134650762408566,2.2469507346841855 +-0.22894228589878335,-0.17246114019129655,3.5684125860006093 +-0.1614873230742453,-0.1998292251777491,-0.07371777193496687 +-0.18358419145940047,-0.11930870132822391,0.5843131957835439 +0.024462059097371813,0.6396909917310177,-0.10072433656217342 +0.22942695334265628,0.5681336041973465,0.9210353161063356 +0.009439487842467287,0.6752222401030754,0.34852421910634 +-0.2247315237221175,-0.15243655381877302,0.7887520782090149 +0.2974260564562361,-0.12471233839269591,1.203801320207589 +0.7709147478629512,0.46637554033667594,-0.09909761582627302 +-0.1309759909446748,-0.1612731298487343,1.2203100243581742 +0.10983884065331861,0.2246748890385048,0.20665043449463005 +-0.18532207352852492,-0.23062805136353773,1.0715440177607187 +0.09472187772593937,0.4790877404805196,0.3819375209577498 +0.4798673541530688,0.05371542975888027,-0.044074777294094036 +-0.02120846583755623,-0.15579325978635486,0.17113846789476317 +0.32740635262611284,-0.2241254538929887,2.4937120892010745 +0.23021643427707433,-0.1372579873320106,-0.026412535740705345 +-0.03530837434372916,-0.020476847764586498,0.5248077778658482 +0.8348099208078612,0.005599549981801455,-0.13433492025699678 +0.432984546295917,-0.09990693444350854,1.4711845553671914 +-0.16681515492698576,0.35251914935305795,3.073697905791462 +0.019415364320984785,0.16827513850567344,1.9532933812724829 +-0.22454072542511605,-0.029167659279061037,-0.24529152647910904 +-0.10790970817985676,-0.22771388517981295,0.8336799754612136 +-0.18741433262805723,-0.16067188022243128,1.7658700690528852 +0.5440516412481416,0.042586015511885844,0.5078203817154032 +-0.11808263070558991,-0.011223133967439847,1.320017998087746 +0.11699509213894255,-0.08914868174896595,-0.013746949919610646 +-0.04874622294014827,-0.2267731314844404,-0.1611903914572333 +-0.0941755707803126,-0.03865368162109792,2.046111036259235 +0.09041222871226684,-0.17640587226232385,3.009059908816472 +1.0953896863377064,0.08496225618197273,-0.198394467856967 +0.575221578975507,-0.08928462583938737,4.201587168177978 +-0.19396044495203577,-0.21686402340071784,0.6332131727417378 +-0.2394025970331325,-0.09923822609450875,-0.23931768094234457 +0.14848133245934836,0.1949746630599517,0.39300859398053545 +0.12973924046885948,-0.08561211827186863,0.237272143289474 +-0.23244967589757146,-0.0010624697567120922,0.5700294821225725 +0.46417348490919186,0.47793632973141886,0.12184612778176723 +0.9653727134129202,-0.004879711578117174,-0.05696775076423283 +-0.19598987062247325,0.028182090469665133,0.42024396658115337 +-0.23553438581675198,-0.15111142457540222,0.7177411038982138 +-0.008221177930483714,-0.14866210687194964,0.18231775113808724 +0.048061681947225154,0.510463759726982,2.5710871634294263 +-0.211711792323115,-0.21948913158255604,0.04997405525978116 +-0.044335933300265556,0.2493205292265364,0.4000684544145392 +0.46759048240753276,-0.046316726515360424,-0.205302721793316 +1.5170109364768805,0.10564091938753994,0.3353627950423804 +-0.029229488143521443,-0.1428224365551085,0.031709639761502206 +0.34501299334586155,0.08681482370788751,-0.168557516664749 +0.06879933706290625,-0.19493057679525364,0.3617815487194552 +-0.23820000155778653,0.23584747843458687,-0.20550908829141823 +1.4102200529795508,0.5879253005135913,0.2743642006534549 +-0.1494458335071654,-0.06900945991608748,0.16720125008501258 +0.34591724050466055,0.04785830576499861,0.8210562092185509 +-0.2432988217895929,-0.07983114871685634,-0.23640376800877472 +-0.022307610711436943,0.13228624317490695,0.07362801043489114 +-0.083006293228747,0.24092368069770403,-0.08389839196536197 +0.5587331734663716,-0.20217194131172544,-0.013096334371580809 +-0.03946306418548068,0.021074915127922644,0.5296465463011322 +-0.24516110467887944,-0.0867638236409474,-0.21523523658672686 +-0.20725063399640695,-0.15310189649772968,0.04363144212180797 +2.1164324909939447,-0.1550608338698716,0.12708506995898117 +0.6935013965762463,0.14171727102408882,-0.013634638628424733 +-0.22768080565674953,0.14736006559612352,0.6708532450353102 +0.0028931454130712853,0.06149174467956536,0.46980213336659826 +0.20876021573901088,-0.014296199617340438,0.10843474257011743 +-0.24519997358384676,0.1352618645963765,0.5409804076520959 +0.6301319761228273,-0.19561126581846966,0.16565174409047312 +-0.1556158350006523,0.6052418224300447,-0.14617433963331902 +-0.10582199305655449,0.012646020805946179,1.0726978519141626 +0.9782906495684462,-0.21097934925253153,-0.21300716801439776 +2.0218384484994543,-0.19906312288226813,1.2087559058817854 +0.6910562011490723,0.14839734371212904,0.009161585508196346 +0.13174600866406266,0.45711905556077315,1.3211534635384605 +-0.10271476729672085,1.5633802630632938,1.148985573398881 +-0.15529184804135715,-0.03478283404709129,0.18026325918280872 +-0.10716005099629944,0.23721414976761762,0.0022388659426156865 +0.008285739200245612,-0.05194986752272704,2.4239718650505035 +1.0860549692116634,-0.2371396810397366,0.24413990913690592 +-0.17853251854647686,0.2969874839432408,0.09999084131210234 +-0.042363109829716666,0.1248498520626447,0.01813951997694191 +0.09149075271722795,-0.17382912826671382,-0.24184416653766438 +0.7390301495209579,0.055333019857660315,0.180474959139787 +-0.08453628753776832,0.08336696807604338,1.0838492437156457 +0.48036114519821693,0.3825539868675156,1.287356797043416 +-0.07340565302490817,-0.20832270452506652,0.34843681374186897 +0.07490922056419974,0.09075092956397296,1.4653345594539087 +-0.17528248113777145,-0.1713538031771522,1.320069548552285 +0.017929002346833645,-0.23556892202910248,-0.16527165061582513 +1.2403770501207567,-0.18174052832805818,-0.08874999174281745 +0.15719134822963315,-0.2452411882834706,0.7791231667624923 +1.2404837734078498,0.20596572966910143,0.4003682345858234 +0.08632587874995207,0.04971686228929073,0.5172757487261166 +0.8208872761835688,0.8018194711673685,-0.217313936517682 +0.1331530529407975,-0.2324244112769559,-0.23134742504580047 +0.6158304913447371,-0.08479889756620118,-0.03411662770701526 +-0.11423034815005201,-0.1953511290257489,0.8776714825518841 +0.18116960298718598,0.165760791152479,0.10475877222857866 +-0.1656258019110473,0.1151873361210427,0.20488164727712488 +0.820441498636151,-0.06694173333981807,1.181467882536967 +-0.1426926995083584,-0.09696893727283576,-0.011487395467921324 +-0.0693568497830658,-0.2000224487169703,0.32967909203278556 +-0.01269871064242628,-0.1181175178897847,-0.20104135291396732 +-0.06438261983895527,-0.207303529282054,-0.04575310913143116 +0.3706869705048086,-0.04152854071852091,1.0834577810292563 +1.0285772644538194,-0.14256132458732967,0.5848748401895381 +0.692046365265798,0.09157071574752457,-0.2198468264288892 +0.005398008595927872,-0.24219247871963953,0.06034187973868971 +-0.17073155862522085,-0.2475101694831121,0.20634989496923029 +-0.21845629456552984,0.028223497248223317,0.5769543111926733 +-0.23290775793619808,-0.18211601565233396,0.5945863836224045 +0.017304076747801267,-0.1596698180100345,-0.21553063919857407 +-0.09153482066380428,0.18906625292290513,0.3283637051199111 +0.4877315276144145,-0.23950765809406485,0.6705237660928186 +-0.15027243512083482,0.15007966295494196,-0.10057571042369279 +0.3033056967120443,-0.22632566317069355,1.6142366061750135 +0.1505390381324535,0.31043007462187533,-0.23691540030917901 +0.814681168627226,-0.22396084810406014,1.5154742246779012 +0.658835595280727,0.0415387032330089,-0.22326213284336524 +0.09346787483704022,-0.22008794002197846,1.7386944607251984 +2.4047421196752037,-0.14173649776778152,-0.00047882258335787964 +-0.09682074994534162,1.0260319560015672,0.16542898113219484 +0.3594837649601669,-0.08115841564722884,2.16268384846497 +-0.18699249846695107,-0.18624028092030304,0.5882871686301798 +-0.11500025231702676,-0.09549433992883644,0.5612940400785675 +-0.037461226269487,0.20056159520786454,0.5920570743832219 +1.5939306580526174,-0.23495694745606538,1.0521543704594247 +0.45292797646305705,-0.22581779093183177,-0.1135077948436394 +-0.13865447745880408,-0.13000417603398315,0.7093439349465069 +0.30463544456062563,0.35900957553641233,0.2712295422159302 +0.17804605258863615,0.06497055782159106,0.1790455790407216 +-0.08468783781961933,0.16478104303914087,-0.10911959414285588 +0.7888677347213635,-0.024511828990756712,0.4720126969580759 +0.20240536313444418,0.41704427621049833,1.28782642871194 +-0.01787981510287065,0.2008165740190308,-0.13539480132145276 +0.4181831858057429,0.9597212401666588,0.1461505196084561 +0.40903386251087137,-0.15703777402002306,-0.24862718244455487 +-0.16198822327315604,-0.21650691495932028,-0.2419233420264376 +0.2069819545451001,0.2866032742305141,0.39087814824023215 +-0.07900015650082226,0.16839171276873077,1.1046517536419052 +-0.16166632703208117,0.39612654705325845,-0.24464581202145652 +0.12784937358300047,-0.2006911847193809,0.25744075195508853 +0.1930766934145413,0.1304318784436555,0.4788306568565708 +0.3309027520969823,0.125335419277891,0.4064780867615253 +-0.22954704792668645,0.25614711597838435,-0.03284802447915616 +0.0065339848362456765,0.04121358901918526,0.25267601506844084 +0.07063576873832755,0.4450047572790291,-0.03561599182098757 +0.5418886114904131,-0.03317416918649069,-0.211881493528633 +-0.14560279156510286,-0.11747471381271063,0.9916329988386565 +-0.0973368950211681,-0.19144881927865293,0.6670322139050249 +-0.004232730115685174,0.17738982762595323,-0.023156743716853112 +1.980520137663801,-0.2138643799403019,0.8031124638375873 +-0.021061578216085036,-0.13877050379312056,1.257591548030596 +0.2777991902390643,-0.0665068128497378,0.16482698107585053 +0.547219171440569,-0.24215889637485477,-0.1661370637920811 +0.12061655893673306,-0.12258797626313006,0.151931632216668 +-0.12038095122987716,-0.23838986985818164,0.5332665371062997 +-0.2284352252899683,-0.0616679591332259,-0.11877659417919603 +0.028462460829423553,0.15140569325012426,0.5241417650940305 +-0.05632017517216509,6.0442856563036607e-05,1.6216050966005864 +-0.12535851887901833,-0.12959958512531822,0.8147082727631361 +1.0262855139275233,-0.11110224446236922,0.13418715656463343 +-0.15300585907761466,-0.15887358167979532,0.4391282079111448 +0.2378907120013229,-0.13270858382373463,1.028156899882421 +0.07482219565712228,-0.1954444439541485,0.5400712489067941 +-0.23928170398370963,0.37967224904723684,-0.19833818400054712 +1.24339316412432,0.13837198737054668,2.0013931274422117 +0.04959507345453551,0.31388452289839686,0.7005950228039642 +-0.21869397834457086,0.7642562003699804,3.7047526834087297 +-0.19203864512107363,0.42867474240212944,0.8093629872986097 +0.4890617808772537,-0.11581795850194346,0.5853125197511034 +0.3854941791262819,1.1915890197611434,0.37415875508157304 +0.5465899925939256,-0.09493825593532731,-0.017309644981835792 +0.02297730199996334,-0.16135481710359656,1.2665423441811678 +-0.1504830234603401,0.9673516116712326,2.2254730055632064 +0.6190154653834814,-0.2222342978481026,-0.10775092081042772 +0.4539754071928861,0.3024490853842565,1.6810670973030817 +0.9331393031347974,-0.05621331732000981,0.5539393341467992 +0.21870638428652805,-0.1471799180849353,0.006092435057849177 +0.21982639208822613,-0.09155277153998978,0.6803465547529088 +-0.1900372308291881,0.6480268863607547,-0.06798500634901422 +-0.023970566377917696,-0.1256795775082178,0.42797093153531207 +0.5087134234817933,-0.11939563856716173,0.42942343135807315 +-0.14162305661053343,-0.17844646119192736,-0.0484092591169937 +-0.232649979937991,-0.09785401474047248,0.6522598710116612 +0.7327821014601298,-0.15079343936687367,0.8128637683058872 +-0.08948842113237693,-0.19534127170701013,0.47529792649228264 +-0.1975224590346866,0.3667762145358292,0.1699786602962179 +0.0644603003330631,-0.2373594477025738,1.8077758269210324 +0.17438931683023318,0.1958244590958052,-0.2454557294623041 +0.11615703440271896,0.4736957481798152,-0.23466343288491637 +0.019254991535421095,-0.1354443398388026,0.941764366798193 +0.09313301065582807,-0.18549533192215228,0.13548391715326963 +0.0885004500579411,-0.17338223052447882,1.6143660807156233 +-0.09978925952295278,0.058819721783023915,1.6070742465822625 +0.6102180448997819,0.19897269621767222,-0.11559881791619364 +-0.24883887713728192,-0.2404890025047378,1.9887506198818605 +0.4232057729391322,0.03292007435567029,1.3533806163803266 +0.2791126215882288,0.2451827486582096,0.46445503307471725 +-0.060821105981843315,-0.24989090949542178,0.5305830374946975 +0.2657014750314278,0.02451946899432178,-0.2111642436283939 +-0.12350152654525251,-0.17441405664362664,1.4727281274709778 +0.7637630714197234,-0.2301918984737321,0.37920746240581427 +0.5501229073865734,-0.18787703482997212,0.3416679586762783 +0.4077902720677492,0.2972328546065972,-0.20897065541683138 +-0.14018571518117817,0.18668849384453728,1.9954571581713374 +-0.15800368759480246,0.16044734866113092,0.9997263757423178 +2.082633268561538,-0.016617058640506555,1.7277655215341543 +-0.08806242550248361,0.5713644708258245,-0.2397026330650519 +0.9586583095150525,1.0192339293646977,0.07699234856918497 +1.571648593106729,-0.1794336892818429,0.25743772546704646 +-0.2373694877538366,-0.23213900505960366,1.2331171442524131 +-0.2025540219851251,-0.15311672363081946,-0.13133837130699044 +0.03976946409170984,-0.13206740463744898,0.24180315546823428 +0.2595539191267554,0.005731986963915137,-0.16659801400386592 +0.4961489887675692,0.16842241403673053,0.2261384854060084 +-0.1466377179872379,0.4578528304242385,2.1038430663096435 +-0.1884455627512907,0.15539367059245568,1.0560913357354067 +-0.0885391603958168,0.11847723584988878,0.31138901553368226 +-0.08240952453039077,-0.2477739855885032,-0.22042559563191125 +-0.05543884420958903,-0.234619811595216,1.481870039057274 +0.23907065384391407,-0.12364077610147123,0.463555735537985 +-0.03721097621060945,0.31163892832448736,0.3149962378835848 +1.2447266101633556,-0.04297257971682017,1.0080426601421524 +0.21413267706278577,-0.18038437877424185,-0.04705485559902131 +0.24895018220798648,0.20901341869338425,0.4418810788430503 +0.06937213179169871,-0.04007422513406128,-0.24422424026965575 +0.27726848003215876,-0.1062168565437426,1.5896911340214068 +0.10660867832452897,-0.22510731256889996,2.661978629421239 +0.7611746002403139,-0.10711872419418889,0.2803449678643323 +-0.00011342837146613438,-0.15923443952918365,0.31308989949479293 +0.15389565240561398,-0.14772620636066125,0.019850547632459914 +-0.18594020032871944,0.03205063705753597,0.054056928242659064 +-0.11130574162617349,-0.2327247714370172,-0.10894805777685115 +0.9188681872328863,-0.09423861712881193,0.16324662474359802 +0.07319191734310093,-0.12203760567784988,1.355041997343631 +0.003128728343503695,-0.15428236985197313,0.5326111492963707 +0.43605260177651073,-0.08697164673113217,0.5530352646880158 +0.856615669542204,-0.02751844829739583,3.154352104167839 +-0.23315375353799966,-0.11501722440633527,0.32841086611175696 +0.12284427944111964,-0.1517205120777837,-0.21421049114089266 +-0.08614647495714509,0.012481261197825944,0.0815064317679135 +0.18757926048119422,1.086360193492412,0.12320386087055124 +0.05208271825432187,-0.12552297053146066,0.3201291666169689 +0.4486927190119292,-0.16013713877179123,-0.1253338705382126 +0.5962959068537611,-0.07485388055050204,0.0667119610304534 +0.7683380333751433,-0.1646857256463014,-0.052054072010900315 +0.25337033723254965,0.25107867378426596,1.8771247831079183 +0.36616123881132967,-0.012496865721886657,0.4553680676266594 +0.5690207434650587,0.15550747807231596,0.2540282894384165 +0.6870494089921838,-0.22040112999030645,-0.06546471151220615 +0.46488861831125916,-0.15070074273116024,1.111039527390997 +0.9555468228451995,-0.1810348609156703,3.129515584715007 +0.09461811377353141,0.4747612948737595,0.18836827386049665 +-0.06397016551786522,-0.07245783247504953,0.06401654936236595 +-0.005961876413870332,1.0995190589989405,0.48450436946124065 +0.20433491296238243,0.018781480820839913,0.7642980728724826 +-0.004469837987225583,0.6865808040501444,0.5442456685723601 +0.2440213911810718,-0.0525831290033853,0.5694247012578249 +-0.1351653263329436,0.028904106378453198,0.2759976711013077 +1.8903554115220773,0.8296320301151026,0.6059176630028431 +0.25348537119020087,0.3224194595654708,0.8252286071859065 +0.6893650385205553,-0.06151626042633776,0.2707642030730296 +0.33169252779117353,0.07207157179612156,0.4429658976503429 +-0.1663329579443319,0.007360509749726574,0.07026029034555825 +-0.17421080434198555,0.002716403062739625,0.5421332628995263 +0.4879991140347655,0.46860129538428086,-0.19053330853429065 +0.3630106018580843,-0.04016474410289439,0.17886439953376726 +-0.2305214053896631,0.4993338350717347,0.10382007645648189 +-0.13401652450874318,-0.07703979471873076,0.02851575155326741 +-0.010439416938078261,-0.18374528098690865,0.10898852670506332 +0.4713586246736784,-0.23282275853209444,1.9278573770132779 +0.19710913272631575,-0.037696302150517724,0.029531170622661973 +0.14809524978394445,-0.20110755297520821,1.061758628430218 +1.9709233345865842,0.544526369729264,-0.15594812230096006 +0.049756367871988116,0.21493558933193257,1.1980558610877154 +0.26540475493049176,0.6666041214126657,-0.07738055005350106 +0.8810398731683124,-0.2476438568319342,-0.086687690728327 +-0.1918544715130779,0.16354580571781202,1.438621420225899 +0.1694992487250208,-0.1430441438382803,-0.01089415570672378 +0.6271822885559136,-0.17741402672982293,2.6398490974538436 +-0.21541619516236832,-0.07708068990700892,1.1708650005126116 +-0.031261653335391076,0.09954214925989496,0.0018668681697346923 +0.19153980760599676,0.19937429478313645,1.8873341708760378 +-0.21279626879059788,-0.24271604136527675,0.2534326648608962 +-0.18345482241853955,-0.012802249748109229,0.9889426609170828 +0.9769295314244917,0.6143791858393194,0.21069188537878786 +-0.24705481869851378,0.592369897395939,0.08248922763287103 +-0.18539944682176757,-0.22262588181875517,0.027260770721490357 +0.2508120625329521,0.20001888121044265,0.03813849287411164 +0.5965494401668515,0.06684777691917132,-0.1922026511505316 +-0.0017532747622263367,-0.04147265257643931,0.18261464042766734 +-0.015542561378523584,-0.19987613028078713,1.0443979923941202 +0.0037707401395787876,-0.2118697459770078,0.3322565063107338 +-0.24823731645416927,0.64476210481957,0.436540966558278 +-0.2132139775915794,0.4973894317921367,-0.07178134702728617 +-0.19123731046897988,0.20941702427247655,1.250477229344492 +-0.24661745100713212,-0.21998620451820675,0.39901644855980123 +1.6317966102002976,0.49521973893079474,-0.19811762088415785 +0.1834184859774487,0.08907270747255641,1.0679687701661145 +1.2165178227882683,-0.2370323281231701,2.1637786523409024 +-0.20604100077243187,-0.03312106829081127,1.1992104254385763 +0.01160178419555441,-0.22985326736083772,0.32850355735958536 +0.3746053127927427,0.4723448003290154,0.2409731785254906 +0.6528558591875224,-0.03977109765454223,0.04857678629368056 +-0.005326283138345211,-0.07490172798425479,0.5920651058716978 +0.5425894642283298,-0.13432641607149243,1.4435966523250063 +0.9890180811081382,-0.008990915824061335,2.8101476236956 +-0.16791119890537198,-0.20103203833344774,1.9164994012489411 +-0.10952457260021536,1.4715834407569233,0.6749711979897939 +0.8840797499502275,-0.1356074487196993,2.135049571161566 +0.06871086493306461,-0.18345967418185238,-0.17718246511639424 +0.9955555712015083,-0.1995641199872546,1.2415524757137528 +-0.12550339836816135,0.3363822040062353,0.3343300416328867 +0.16886217336500653,-0.13950978307364736,0.39808618130675366 +0.41630228936252833,-0.10958282316866594,-0.24039365574073907 +1.4068174433920713,0.14011330249908438,-0.2362470630589102 +0.5407014012758994,0.2964508723542747,1.0984602222989341 +0.024724628508243307,-0.23991958086256784,1.5542984037204135 +0.11228404531912328,-0.12413211578909131,-0.1524132599909221 +0.7803743199762065,-0.16596511634247768,0.09564408477057318 +-0.10482595924548185,-0.13844956319788088,0.4647728901025284 +-0.047418391796717335,0.2610162274170589,0.24110172357671822 +0.21839859251974014,0.2325670902037701,1.0482432949947647 +-0.18091070710631757,-0.21982607129131693,0.0530953674217024 +0.3146474449825677,-0.1948015646441742,1.0475720745960173 +0.2118139961476465,0.2979765132448191,0.2521683152567461 +-0.1941574495079018,-0.09195141029360099,0.07948244997124437 +-0.035034056756205995,-0.0823067026376963,-0.14851395854357757 +-0.1560377378570219,-0.24910309085785956,0.025030856310339245 +-0.20384356125377154,-0.1379618505928347,0.5873761665159617 +0.15855123471838628,0.3325372889322443,0.8205502768499968 +0.4115135124339012,0.3534861083064924,0.9548658394110445 +1.3329792211762315,0.02464845984516545,1.0452698979528343 +-0.04265759475378089,0.09571690930314569,0.32134839845550334 +-0.008861006326690735,0.3772439751264658,1.4562096861722345 +-0.12113642698734076,0.4710702409817721,0.07130951341681124 +1.4165125882768588,0.048047958791417655,-0.2229616256644755 +0.030427739797411535,-0.14345953842330672,-0.18040976252498825 +-0.03437922769396273,-0.014624657525172946,1.3911432286432612 +0.03757153490041648,-0.046864528912829245,4.099606452273068 +-0.2393177470126201,-0.08626105230313902,1.1795107797638351 +-0.12303585599641298,-0.1787257913839486,-0.17983984289664 +-0.16188782270346094,-0.23187454850630354,-0.13395436433097407 +-0.014668808263458039,-0.16546351274383486,-0.0014098776314958872 +0.6043707757453757,-0.21053950274044564,-0.2093664265762519 +0.3222195257069378,0.17696603460566218,0.6602804551535824 +0.10190411837225422,0.03244402990927164,0.40777548892387017 +0.16763615964448603,-0.12865837870428498,2.8738249360976833 +0.3023232801429402,0.177965681798338,-0.032415126177130354 +-0.09765843015262424,0.16256022869470788,0.3915723469522191 +0.10017072382476927,-0.13380415306323706,0.9503322307912907 +0.404569307872908,-0.13671789297317832,0.022549208865112358 +0.26285902523997584,-0.021290779294579176,-0.20144857029939453 +-0.01645446714836063,0.1953384538881372,-0.044857068634985814 +-0.09944090733352323,0.5240873203417297,3.068873376907763 +-0.22921647073786872,-0.10597902729541456,0.2847542651323334 +0.062459293641701,0.08739570752596276,-0.18333177510737858 +0.2357278562537437,-0.22238426803748482,0.2762747571995773 +-0.21256731262008174,0.020561467913190412,-0.24635248600840876 +-0.23623378034921175,1.0545904690390961,-0.15439805963216044 +-0.2414682909298395,-0.02081963532480019,0.8498790941105445 +0.7467194842010708,-0.2340077744582875,0.14852633339510113 +1.9995310771213197,-0.017388794345761238,-0.21483113966364537 +-0.07767206117946268,1.1622769394669648,0.30747860979000974 +0.4069737982407148,-0.19237024463079944,0.6544542237402187 +-0.009465986392285353,-0.2374216423083883,0.47522901148665053 +1.1604283491545577,-0.03245627906413953,2.288320883358083 +-0.07782761866360471,0.34779774534416064,0.2242086490193156 +-0.010852058760887545,0.17433036952969383,-0.18234944046623686 +0.4585646641090072,-0.23026297532192966,0.03265693762005861 +0.2548729346736741,-0.23037377996350755,-0.11689115569816369 +-0.1791693393938344,0.0034636375728760993,0.4829781025703306 +0.13671259343172576,-0.23269700183859165,1.136187348503499 +0.38787136058890415,0.11366341671670122,0.7297661302915001 +0.5615214412401518,0.031465576796203876,0.5619813501436932 +-0.10135900118066929,-0.1104751444790828,1.9959665715128132 +0.058180901908052585,-0.1753160611435174,1.982302705224373 +0.24128928752940054,-0.18198833296020234,0.5006571230099585 +0.2977279952585383,0.04748769950023979,1.9993185120014632 +0.24263597736949966,1.1367412993097707,-0.03787798883625615 +-0.16756088846870287,0.5897516673930441,1.2140083542450115 +1.1048503672756953,-0.040908878698018236,1.200687138957781 +0.16910680935252925,-0.23853945229865095,3.619276328481635 +0.1599187891953715,0.03844423792346291,0.024436855442619254 +0.8290758696779394,0.12259328465691571,2.019433678553992 +0.05692959597567898,0.12959397514514182,1.0848475574025835 +0.08354192071728966,1.2839004331114727,0.7292258661702322 +0.509238430324315,-0.24213317978908266,2.6899071345158494 +-0.1853036782754837,0.6445057553099252,0.5423040318713472 +0.06899290721345647,-0.21404532166501336,0.24252191704911186 +-0.011431038229102353,-0.10776389215814736,0.5471506268193844 +0.8360351522175671,0.0035113400948718065,-0.1730016016084423 +0.7837717794143422,0.5369342624047004,2.848099348814439 +-0.20333938044976446,0.1217846910863829,2.255276541861878 +1.0286925472278885,0.5001876940457688,-0.06582607635387586 +0.6972037508981589,-0.04441186036744488,0.3131823402792354 +-0.19512617967422524,-0.08961909969887139,0.417837535340551 +0.4603631707109017,-0.21928713708129471,2.0353276300663166 +1.5589068296091813,-0.11071688256422846,-0.033232165753272425 +-0.22769952219937256,0.1249321037052008,0.8431147300689039 +-0.040249881503643586,-0.00472875926820937,-0.12309596907541118 +0.40020684851878274,0.29498879457952587,0.27556690336772005 +0.30726984717604566,-0.16395865928070275,0.5120815249325329 +0.5816702590941616,0.27921078552945944,0.19045420589875167 +0.5267152201933859,-0.24114909538605206,1.7008677714095466 +-0.05119995513309683,0.5581952050206057,-0.16522840428150654 +-0.0792534547531458,0.3226010244607469,0.29937602537387287 +-0.12784288345068442,-0.10110037687412457,-0.1798096618862267 +0.35491430359424114,0.23446370002201888,0.44550765367865686 +0.2766500287183066,-0.10382896039337586,0.04849336529165249 +-0.10659045442832268,-0.21600133224131424,0.8907088093600111 +-0.05065846991054179,-0.1969491045130965,-0.06156911051034927 +-0.24418584412208907,-0.2341147954864667,-0.04689766378210944 +-0.14328751286378882,0.3467605505975755,0.036896901633789114 +0.4340921501165472,0.03554251107988743,0.7433066903535324 +0.13766079890352168,-0.11487866948924144,-0.01663976446039117 +-0.17876157563036377,-0.18513050212220414,0.8032312805075594 +-0.09740614461293176,-0.15486105390133817,-0.23420076748982932 +-0.2130830675953955,0.8485143483529911,-0.10687897055141743 +-0.1544929209822647,0.02323004309928145,0.16066517190974894 +-0.09532969603307911,-0.0818513009941233,-0.08429312529099384 +0.1266612199982326,-0.23798081021900347,0.4405740761739324 +0.628812922198228,-0.020263729248599482,1.182531336140869 +0.34529064429126366,-0.12303577107631533,0.32300551868173466 +-0.19094713513660236,-0.22261863040316549,0.8777482528030336 +-0.09129970603730844,-0.04766690847031016,0.11540459886856858 +1.7645295299278985,0.07510175129267316,-0.11982773899939655 +-0.055830958622435645,-0.08680673899569658,0.5388153486799663 +-0.1485767419921697,0.1549369366131716,-0.0668567855166981 +0.5073869212716627,-0.10696992045831125,-0.12744878859855513 +0.22924367550984354,0.7006524398902684,4.537888344081582 +-0.14421264936372513,0.27205896538964736,-0.01587832522548327 +0.3308192044465008,-0.07707956962735857,-0.23166724847400566 +-0.033885109479461856,-0.14767648303812972,0.19586864423169753 +0.0943657943186541,-0.04976111280598766,0.8190321611858022 +0.8548091901034545,-0.17703304955954974,0.21906774517998046 +-0.14886115536235284,-0.17546832378842764,-0.1388005599151119 +0.36420044725539236,0.43552297898955206,0.3329593442210823 +-0.08381924720914236,-0.16500922000102658,0.1356235641926372 +0.9934859771514584,0.0077252905618189205,0.10798373685039042 +0.2773264337115108,0.033471901406208204,-0.13096477000449525 +-0.21055464006248792,-0.18083422445694217,0.03371248247211711 +0.06583713298927701,-0.031129659750285893,-0.05463394893602319 +0.013037513531065636,-0.15069798040322785,-0.1750064693320273 +0.04101963803190367,-0.16462569863817286,0.3983137941794592 +0.3212482398994514,-0.04912273172866918,3.5004039353337335 +0.17542974864314576,0.0933305780241947,-0.08492273958282126 +-0.10799576703519381,-0.11838106107559104,0.4239268677106819 +-0.00030128012963026585,0.4321599275181157,-0.12513242815158582 +-0.11770362672152307,-0.1511840226396946,0.6608733244671965 +0.09238466868227546,0.13286315251896885,1.1709273594889467 +0.24180953154473384,-0.2077288947629564,0.6793122090654783 +-0.07740805294847783,-0.10792936455904897,1.8866611697200533 +0.4851953064651521,-0.05828017833881993,1.9687754734030753 +0.019333155613794062,-0.2438560688698911,0.28435155193837003 +-0.1789623230224039,0.2114128917623832,0.7664277235157371 +0.5618112902622628,0.010272765388277594,1.1070319674782245 +0.15014339034326185,0.5344190585860916,-0.0038708634237414885 +0.3085675689397831,0.11510556951163342,0.79908594272152 +-0.24647037249441883,0.6606709127251271,0.21456126266856718 +-0.24994511762876526,-0.23622251496170163,-0.19923204825762686 +-0.19874177432237133,0.26590573761070524,1.2244575487834257 +0.10608828407326792,-0.2056469135073234,-0.19938884317587052 +0.09976542020535989,0.6909791555093447,2.8609507153341247 +0.26191913667529165,1.1755054208744258,1.078123793956816 +-0.18531545916674275,-0.017291636563355,-0.14290159359997537 +-0.23184361121366315,-0.211394158192164,1.7549569135879053 +0.0031024713481626054,-0.13927499438468316,0.8567733211720563 +0.054546439844501526,0.02919506583213627,-0.1850588188710974 +0.4351324810467514,0.17091367706516442,-0.22057547769642527 +-0.08535599736067068,0.2746193819400382,0.4361749895541275 +1.0092453384046447,-0.19406453702294663,0.5952737413038265 +0.06787443406592181,-0.08541888353480362,0.5445704102023858 +-0.07063081797467224,-0.24777860036762778,-0.07572410263546739 +-0.18208527606608826,0.14592372823990968,-0.14138241232273746 +0.26329810827835354,-0.055379924178451195,0.8324904122744823 +-0.20380867882635612,-0.1505351998842147,0.6153963061026994 +0.07938820516461464,-0.08592525102349405,0.7734128050210913 +0.8373998966837308,0.11158674844451322,0.18110779949025768 +-0.11482410576288132,0.05103654854614742,0.9798529833950445 +-0.07524420466537085,-0.1628790083178217,0.4535224932041899 +-0.00020428248986867348,-0.18701695871345603,0.35938341781327965 +-0.11468369987132235,0.03818935878598578,0.15319381996500264 +-0.2215514255938128,-0.2429686878603728,0.15534734888402546 +-0.1179984620486387,0.05654698089268778,1.479662260798087 +0.031146991001096747,0.12167522261150937,0.4022487758375177 +-0.07111239911914682,0.07588630382907752,0.6740662889846438 +-0.15514376160831136,-0.12263643033731225,1.3181708686484983 +-0.23099412190913043,-0.021067216831836516,0.5627668140941786 +0.18144729831659184,0.12004171689558008,-0.024691560320244277 +-0.22545270994351813,0.16904857079253938,0.544637187366784 +0.3766689096092899,0.009508061511987631,0.5291653609061682 +0.9333215273560347,-0.06210331609744141,0.2502792835812655 +0.04892232979548744,0.43177114488234003,0.53540772494084 +0.6547113309587086,-0.011705222116410258,-0.011323517225045904 +0.09022290718325804,-0.003152897638139973,0.08100308940506218 +-0.24064007878826207,0.24184439499116112,0.3759408542933682 +0.07893859476284182,-0.1299067141559639,2.2462202336933617 +0.890930425729124,-0.16506074182657837,0.02121503740224706 +0.1727109695925258,-0.00038705647958806044,1.6183457711062907 +-0.23911406152808268,-0.17359662183235977,0.04948606919250981 +-0.07365215700916697,0.06736453467469866,0.8692588712026206 +-0.17199416789908611,-0.008753760078039713,2.0622805855400714 +-0.2275045349854165,-0.16083574149422925,0.5682440863152519 +-0.211547223091354,-0.115835652308488,0.7333460740478477 +0.23582016225730768,-0.14343423477482561,1.574978078259226 +-0.15323506144627203,0.060221764949042245,0.2767681960552215 +0.17193873361969053,-0.24945891596950417,0.8310621800576787 +0.6906224617763804,0.8590235615574102,-0.21628480434230438 +0.5242010907045692,0.2326193031367344,0.21245858354464991 +0.3656891724497824,0.11184678416333771,-0.21508817340119804 +0.06871965268926206,-0.19744575373175732,-0.050792565444835625 +0.06132838983326511,-0.123670497550227,0.9932015895633588 +0.749242019064412,-0.20247639341429605,0.11219401094391285 +1.6292901355981797,-0.2025850198844435,2.626062094362531 +-0.18245723470432285,0.40644738848144657,0.484115228856807 +-0.09670143159091252,-0.0006022150845399477,1.2894498247077388 +-0.19365412176626182,0.4533707799566712,0.25355829622690185 +0.283322386316203,0.15227553155557227,0.18500450131551732 +-0.19792196980049542,-0.12277388695561015,1.4826938769877154 +0.20815642732577355,-0.0900296279891597,0.7703444702290587 +0.07666061113370432,0.6602581545199752,0.34627325228614547 +-0.2064122173395716,-0.1479997907269771,0.6335031440055665 +0.26696674600303916,0.06413053090899817,0.06063315489874549 +0.11763414669689043,-0.05964724142213565,1.733891060794063 +0.19502042864040942,0.10757597038849298,0.5084409445232129 +-0.11546465039678883,0.0901200277565598,0.7402072854249914 +-0.1703076578141605,-0.14247536366710825,-0.24104229630585505 +1.054606123541716,-0.08396463700949894,1.694972536399832 +0.4701993061892511,-0.12882022652156586,1.55787056465391 +1.0134853744195924,1.151496157945499,0.46808468957745364 +-0.05133166651002366,0.9475041107159152,0.3556574270722862 +0.1759158935644865,-0.20330136585691488,0.3517665891985632 +0.17817091098437793,-0.13960178136482437,-0.17423737717339738 +-0.05838968288674645,-0.11576233214603643,2.305914695342384 +-0.14220074820624168,-0.1213487973079049,0.4592650694632988 +-0.06743489398304478,0.6272809622787012,0.7376059984909237 +0.21386434975689306,0.19434081630408667,0.6615079797087239 +0.23804028200095534,0.052829591189055,0.1720753868508254 +0.6378353458692395,0.11141245869396393,0.20419804409642933 +0.7861260469196976,0.20213222302387363,0.0926573921550855 +-0.1663327026766165,-0.24348513222365736,0.7416897692108391 +0.08405131470336114,-0.22172077839355073,0.8221772774085558 +-0.09437896396165402,-0.24187259425351135,2.4526581963050504 +-0.077450442479886,-0.17307106991732132,1.5508510920282863 +0.06695508132673866,0.21881114225243725,3.5020063830324766 +1.5881897716968567,-0.07642816480524803,0.13980229701452795 +-0.11774563333961108,0.08109501745163378,-0.21533831431542821 +0.0033414688920062607,0.18347344916895014,0.43822405869888137 +-0.1593836873906482,-0.16337275579370977,0.1323594347544676 +-0.1950832459264172,0.5223601002559903,-0.24595772674613076 +0.18162074644281356,-0.19351240311849066,0.21100391150655445 +0.9325623315718061,0.11777828165516041,-0.16641960703128023 +0.017395882157700104,0.15286297505997992,0.5792720751498619 +0.08828579606027265,-0.10695957960082997,-0.16246012536377724 +0.5389022469961569,0.2693401874234874,0.7219150677573439 +0.31970841820496765,-0.1873999351717347,0.31537413385196467 +-0.04100358716059485,-0.04499620860258399,0.7529827850302322 +0.6876234383996903,-0.24206683014029182,-0.20996616517040345 +0.7752419282146767,0.2910599100564032,0.575815544774807 +0.5706839434930842,0.48948899548863767,0.8104917013330015 +-0.22979844627279863,-0.0879691887656362,0.006219093353493188 +0.03626100863156301,-0.09780591145992698,0.04812556228485004 +0.5548174804191695,0.015079518167987083,0.5238303705235194 +-0.10014033505441897,0.6845206436904557,0.5833298413943728 +-0.02220866572737079,0.23869157957513631,-0.170412652981211 +0.11314078447840759,-0.12290379713538932,1.092972160416546 +0.5551732941525794,-0.09965341593128066,1.1526111451951964 +-0.033290647953453295,-0.22746389288897118,0.3026796253438895 +0.41098215711555575,0.004301913656864165,0.0023204055514894906 +-0.09477694181747148,-0.15351889159201054,0.729006678022823 +0.01720944432497762,-0.22986981203506465,0.13569051451689657 +0.6241872704764906,-0.16144493067228144,1.3722718952385609 +0.16725297556999658,0.12268857119733773,0.02062141210992935 +0.4592849518922557,0.820783849859966,1.9184208765856514 +0.193949711712662,0.7154963704804965,0.88436159027712 +1.11818275833523,-0.15350859895684804,1.3905974607306264 +0.2185630741748263,0.2846726295582268,0.5570322698451762 +0.01161281167467021,0.2574237716685731,1.3539314833132827 +-0.10883770346876553,0.19543815227773287,1.1305740511689295 +1.096666732115844,0.5645462833261014,1.5470643648468636 +0.33967563346875373,0.23572888485284277,0.5987783243981225 +-0.03436749635354258,0.23813663088469578,1.0118459999811777 +-0.19323013824982152,-0.23380107748985382,-0.11700469035536423 +-0.20025689830057433,0.2945294878784812,0.24638373503962774 +-0.07488585000695538,0.15183086868596563,1.0156045024328897 +-0.15297724570593985,-0.244714058204967,1.7499850372724146 +-0.24630775101500088,-0.22120649374261447,-0.07857886855782831 +0.07534467451467802,-0.1530534117610688,0.7495843895600306 +0.23189896269692034,0.564345288931607,-0.06250496951769532 +0.047466231468494935,-0.15527634867295123,0.14089096890421043 +0.0015596443307565044,-0.056837368796521126,-0.02697609875407317 +0.03479140278313486,0.23875837410233675,1.790872826133278 +-0.11912781164946112,-0.1613336589963359,1.778732030583011 +-0.06300180373035927,-0.007058557862095638,0.4544462295971389 +0.018928581104264375,0.29649821441875657,1.080241959264466 +-0.0490026089195604,0.11583915092168462,-0.17354095087245758 +0.21036703437579674,-0.11991951486019792,-0.238804052222755 +0.1350149948504491,-0.24571032696831643,0.71933969762215 +1.2703381738136539,-0.22852873364024337,-0.23129147992021704 +-0.033840651150713386,-0.18666041393218086,-0.19250973411826783 +-0.2464726955007481,0.017926057607835055,-0.20915089127305084 +0.9340741544601676,-0.18071671776954706,0.0734671550753056 +0.5031112495467196,0.3716949108495621,-0.22283341547924615 +-0.22241679700033185,-0.0035631703054263275,-0.2349922327250257 +-0.0626027717575032,-0.16708930190866,0.13069511233904257 +0.7974534071043067,-0.09119575180095235,0.3993736403467463 +-0.24591380329602952,0.6693531699574,0.7834233567035138 +0.7021914107853401,0.019699518782530845,0.3099003531941913 +-0.2426413423192674,0.18608926737797477,1.0199543907985233 +0.6419515184430087,-0.17381453293454166,-0.16525065247651496 +0.13542961696159483,0.12167327175535719,0.406385602740603 +0.33346745371547715,0.18104440081116902,0.16851551371612483 +0.8760833680628053,-0.2163457517142527,1.6948375531033892 +0.2852933619072504,-0.08056591629336848,-0.1491135054596791 +0.020184692892005696,1.1595755312888705,-0.014105626077786454 +0.007267758979485117,0.38970545274016355,-0.009983891655846094 +0.8137601693900609,0.3609917363106234,0.9750397537348079 +0.18624771738435314,-0.2047662803014112,1.2191915091138792 +0.10683785611286895,0.1368506319200849,0.45713234585997076 +0.11148109518602439,-0.2075092353400931,-0.07128136584455674 +0.028231113762315074,0.16563290841236666,1.6180889155153826 +0.6045891945831025,0.19990274742763486,1.0274396429052803 +-0.24177737188551407,0.19165194276017072,-0.054139610507871 +0.19883586813085258,-0.06914134538494232,-0.02622485433616989 +0.06016973200877834,-0.042456424231273965,-0.21115208875437208 +-0.13007845278261582,-0.17455459651691502,2.0398508671759936 +0.029862321373853418,-0.07730715065253405,1.210115435878962 +0.027778571551488662,-0.1077898073747143,0.37594259023903465 +0.22919533684147675,0.2761102968362007,0.08595993975392446 +-0.17846967785221374,0.34237171741857175,0.057372140249269454 +-0.07792442776941105,0.727400093890854,-0.03997703666627869 +-0.17987429387684548,0.01670963202274106,0.06863907117428358 +-0.0452645171018311,-0.14757563430630044,0.20933810411606307 +-0.008183925524069241,0.474738952014505,0.27822567544952226 +0.10044348478015047,0.3176819926344926,-0.19283518565945015 +0.03920175090286537,0.054189069540804324,1.7869605043210566 +0.32150829422738925,0.16232313248223268,0.4374341777029208 +-0.0951072314612387,-0.23952457545786654,0.6168078472874573 +0.18975460333971955,-0.19572084801504222,0.10179163008034209 +0.6120179535140198,0.03308480185310181,2.146574931532518 +-0.1051015130016967,-0.032277461462291934,2.711334103334077 +-0.19262755633134793,-0.23908141573529865,1.3199479615031524 +0.09489259246314352,0.08302741560453913,0.876670037002405 +-0.12789615593093356,0.09177826307172071,0.78559891625433 +0.0037618907738790064,0.3269808613721549,1.5135867316275045 +0.08307698129942381,-0.19521774718678758,0.44342211411608323 +0.1447790653625578,-0.23299392034825717,-0.24698944989490015 +0.39551468400171663,-0.10043275784139752,-0.22501665658315195 +0.05398446518842609,0.4342443672710927,5.471325375350434 +-0.1544604082159668,0.3596662184585251,0.910332351259894 +-0.12050020721817756,0.3493538269042651,0.3029775025786612 +-0.05288107442622528,0.32498357830068814,0.1964080936981456 +0.05252293057063684,0.1652197344667306,0.8641874343678402 +-0.09399829274650745,0.3220308348869898,0.3894976271781082 +-0.06780572028751047,-0.07346947277689614,1.9480979570414139 +-0.08119327662829959,-0.2210882125614866,0.02248111864203073 +0.10903501263342313,-0.03183170815710537,0.04696331970688067 +0.12860386610707042,-0.248068653203678,0.4429458249709928 +0.9293373650299432,0.4686030165367926,0.1636193839113586 +-0.18926743595755627,-0.06841423385568604,1.5973856938984528 +-0.053172531453810346,0.37505849047227935,0.5184458507133781 +0.12722860922362794,0.3083261487358522,1.2469263560158939 +-0.016705625589595513,0.3186710454140187,1.0014464970633061 +0.12860526683829232,0.24939370020421464,-0.23800862154379962 +0.6556139663586674,-0.05424526646671857,-0.20908373817377027 +0.1210997247688193,-0.16499425886431163,0.3934963708693693 +0.2578566225294401,-0.029445480475619484,1.2270017648365887 +-0.1671600863744046,-0.22418670764735132,-0.24936425938404513 +-0.1881703981408656,-0.22852974573290838,0.34469069512447936 +0.17324865528149175,0.05616245770487327,0.20986619658352074 +-0.17155265514507315,-0.04022510021214526,0.8449341817662148 +-0.17416154160061462,0.15026341474405436,-0.1093972060444223 +-0.2134867994936469,-0.22664033025312527,0.2599347977087084 +0.31345731721994974,0.17645118907983526,0.4064306958967687 +0.6593798095252069,-0.0126904070681019,-0.14069711216483222 +0.4574164638792215,0.0616207297987022,0.7019267612582433 +-0.1478680004564638,-0.1694224514665107,2.929361661693556 +-0.2154507476917822,0.40451964018229103,1.590986488689941 +-0.12971791780796438,-0.21882702967021905,0.8822248954654046 +0.6647653077215402,-0.055600068386658985,0.43252146068914266 +0.02902965014646619,-0.19394885308620338,-0.1096160702349662 +-0.09737133789178093,-0.1661325622097736,2.3336129146063196 +1.909332756490432,0.48912927918484117,-0.08943851310162532 +-0.03913348950246054,-0.07526099173203149,0.20399752800214327 +-0.17188004122418687,-0.009601624001781606,0.24274199266399338 +-0.211805949738529,0.15548276289744334,1.2568672849567222 +0.07442113089202762,-0.2444638445817014,-0.22853424062579036 +1.6414741087853342,-0.19086905235111423,0.6271022521900467 +-0.10251340498688047,0.12685797860271014,-0.1558853884943487 +-0.20273868525936956,1.4985284134849675e-05,0.9670541677778712 +-0.217681462696843,-0.13759415709444853,0.4416756251410634 +0.10284753084451043,-0.1620725549968667,1.3287978348901606 +-0.0763778342781794,-0.20236470749936383,1.515199182432788 +0.4187096017609371,0.34395983410885267,0.3621278957494889 +0.4297622898886255,-0.08002551791158236,-0.031151238164901146 +0.6608829963244192,0.047799883773621654,1.20032762375327 +-0.19431369211464664,0.09291435113238816,0.7536752404028761 +-0.06761384707899815,-0.20525293438168785,0.19121960315522796 +-0.24927997579152514,-0.0015764938621321,0.0997265607992891 +-0.07755698676714887,0.2646400662401065,0.04987941828915021 +-0.09993564097268007,-0.1455929916650994,3.889409212085562 +1.0370367446792217,-0.06343483009537318,-0.06742088536253044 +0.14628705509490386,0.19760698732911475,-0.2069511328160229 +-0.06902620800671025,-0.07357159647903339,0.3009660120330906 +1.5837406530468368,0.072981570354262,0.6631822254226516 +-0.2394897799078761,-0.1728800190004084,0.039446924934005034 +-0.2296190640556009,0.14827197017493615,0.037100611760191415 +0.01726539977244329,0.11708076741094031,0.42279302003434827 +0.00013194672511490646,0.6670106859927324,-0.10737963759280594 +-0.09717266809219724,-0.20312119691986538,0.8790148341533368 +-0.18117079921101975,-0.03654436527663932,1.4800352797009744 +0.058230284205239125,0.11296023629229884,2.792678833213949 +-0.21839881312686285,-0.16100879328315953,-0.1792866295296387 +0.02375750220969175,-0.1808979718337484,-0.22673437445988198 +-0.07033670889983348,1.2103013417048423,1.953064226999091 +0.7777591431886806,0.15285502580877863,0.7899445269469985 +0.6814065281710634,0.34000175558708623,-0.1974630861374962 +0.06022163607269937,-0.03672247105573817,-0.09689567959205911 +-0.09963263147691234,0.026867622335321473,-0.040536108669866316 +-0.05606165206399677,-0.20588361406871897,1.2306766992246114 +0.31845708673015105,0.09250865019714993,0.3855653148019226 +-0.2231022351459349,0.28321091136410104,0.8444700338248194 +-0.030447624553245012,-0.16335952685147476,-0.21598366267754213 +-0.2283069155320585,-0.14563500774107085,-0.11218608531663499 +0.04284875099332941,-0.06204114037260142,0.3181980313590872 +0.7783019429581539,0.1233667813392822,0.0009443806142479527 +-0.10743580810236217,-0.08196762721195111,0.05837176723779336 +-0.21799084333952534,-0.13214453964097989,-0.18682976503006665 +0.661136698850844,-0.22646188152586555,0.10017458645672511 +0.16367976071951573,-0.025962608010281635,0.8472170569462847 +-0.18278680945595627,0.14342211074385536,1.3048841804028617 +0.3054367473435543,0.10093321071871586,0.3265930493914875 +0.6240951073669642,-0.06559102954923338,-0.19326758172920322 +0.30044931528178787,0.06267906875400897,-0.05406792589010645 +0.6134240905846011,-0.14024178681250093,0.3036958066543417 +-0.06730744199294952,-0.1408179754472904,-0.16094719007636168 +0.642801234736348,-0.11559273100233339,1.98848077993234 +0.04864437605991545,0.2684963428705941,3.460270472736387 +-0.21738413915438026,-0.0975833276767635,0.14086389489022888 +0.6816880577032233,-0.0018964918400021513,0.4657823743578826 +0.5712864257880325,-0.11438110629568984,-0.15165421758514286 +-0.03343617480350841,-0.10777826031147575,1.4819742209733666 +-0.02520392889464873,-0.04558157367914492,1.0322200000125061 +0.07167494590461038,-0.22448935248232024,0.07370583418092136 +0.119590850959026,-0.09628994915314285,-0.1258322243558354 +0.016991699083294287,-0.22583360702312646,-0.03532872261134784 +-0.13852393878788247,-0.20683718540111978,0.45824004303371935 +-0.1860519483376335,-0.01821312464736391,0.5590945671682676 +0.5997577458750153,-0.19824295467176983,0.17113215304779333 +-0.1948327005978786,-0.008377476127999411,-0.10801878964941694 +0.02363792280031124,-0.12981617350162317,0.32555184355987243 +-0.009917146853944736,-0.03333233209866984,1.9064537637277632 +-0.11967616893206229,0.5087525354544523,0.7355868844398373 +0.5497731509838664,0.0418148955243311,0.1776758297917268 +0.5732582761076218,0.42578811499793234,0.2881575962578391 +-0.22213771013796366,0.0658173102300959,-0.024321179359498957 +-0.07342883513214024,-0.20044585148890023,0.3940002570740856 +-0.23879140348697805,0.10978034409885773,0.2597397248274588 +-0.07515414804704565,-0.24994832884139054,1.003232940376019 +0.8700747098261825,0.07242512881397906,0.07865464683365087 +-0.012201166462579488,0.1331430561185417,1.0128481765842525 +-0.015400823807766778,-0.0018304873610150985,-0.24809377328775897 +0.023782545256123944,0.08200745318660907,1.11765541831312 +0.06967565147544275,-0.11187980924684737,5.014052233833275 +0.009844991099330791,-0.23323777085161312,0.37021568170343466 +1.0083538377014953,-0.24611952800730222,3.3991730875117803 +0.06348756104916597,0.14230362634646698,0.2922770530081009 +-0.07142998407530374,-0.18048115743501086,-0.20747204237671477 +-0.19299253656500875,0.05303138795938489,-0.13146140769741763 +0.48266565943087214,-0.24587301472909562,1.147537745619824 +0.031105327063562727,-0.22941722247213767,0.9610160249550641 +-0.1508333069578741,0.3369148902136394,4.507827429933274 +1.0168302929970316,-0.04060959757374871,-0.15689090625534147 +-0.16791160045609949,1.0510567762543679,1.8576739935774085 +-0.14055002424008783,-0.08815640475444683,-0.003993110677714934 +0.9100180649891423,-0.15199899328933036,-0.2201856929021958 +-0.06937809500329059,-0.23979860716902893,0.36273954564063693 +0.10289600788738362,-0.20249636445266309,2.0277915414440515 +-0.225559050124093,-0.21334235208407276,0.32364436428038035 +-0.06256003842411537,-0.06718338894266643,0.5849143187126752 +-0.19726325263793193,-0.21100701353841747,0.3118981646996426 +0.7813400729464666,-0.21540659363958042,1.093148815709192 +0.03717304558139772,-0.1679701252575871,-0.11385882075249856 +0.015965105799205292,-0.1170957641332927,0.04152852371837695 +-0.14627339582425142,-0.14384192108026397,0.3126349023730245 +0.3372101939665122,-0.17209152179357773,-0.17459170001373972 +0.21917872651324088,-0.13849537102682205,0.023119165694457433 +-0.07944019979425285,0.03690800096788832,1.460586590108322 +1.6547560107959625,-0.0888831554153153,2.8080364398464326 +0.14828518933245022,0.2991628768376289,0.00012239088837689982 +-0.1958783790794285,-0.19491336633085982,0.16320717787334432 +-0.19735661749806738,0.3396540883331819,-0.13603080375534155 +0.7938473293065076,0.537841233277523,0.016667283801542865 +0.40717471448418063,0.422766241179665,-0.05453632382299756 +0.5724187504278827,0.01595121567996244,-0.20280272352007828 +0.18903911773137916,-0.22985977317316805,-0.2148860410039524 +0.4510144795549643,0.15286142119450807,0.5975812959170863 +0.0862957608073856,1.1086174586541389,-0.21066474374900204 +-0.24871451431992486,0.01702615380546968,-0.10990450000947799 +1.160210747473818,-0.08444408284892474,1.6883782446828037 +-0.10915004287291533,0.2227526686802202,1.0386165662328555 +0.41011582909471045,-0.18641528884060177,1.3046769387355668 +0.023040493770449755,-0.19516383375810673,1.2129383928344462 +0.3748818590073505,0.1914796858922302,0.12911866255470467 +-0.03334772508482195,0.49999339707776824,1.0795001139075127 +0.3687323591652142,-0.23774946009049513,1.8612109072023308 +-0.08354650904644606,-0.17379735374735,0.15146567630568214 +0.9034366588008156,-0.2148344019059468,2.572063557495016 +0.40925651302646804,-0.19598546517455714,-0.019387864849741004 +0.7961544468361728,0.45002629496534896,-0.16902679176704197 +0.2720855401952337,-0.04776002718386993,0.08620106973455127 +-0.04150875524781694,0.8130303220031447,1.1208418559692528 +-0.09940670829028775,-0.20372762968826225,1.9393027691555136 +0.05459429490403778,0.09397668761383238,1.1484689632611098 +0.113381092849128,0.5727157465414757,0.48794264322725345 +-0.09403313878250227,-0.027234637294598574,2.348219407973479 +0.0048846340200077165,-0.19812121493873322,0.3549809616637617 +-0.12214052881440088,-0.0924565200564941,0.3271907328837854 +-0.234323609673647,-0.13332359285161066,-0.15724259666342147 +0.6869286982353985,0.013921113942392205,0.24170027553194778 +-0.14646224118363405,-0.2426732104573134,0.7147829790164324 +0.35352550292790763,-0.1502565802495777,0.11662507429480612 +0.39238683400262153,-0.10478081847675969,0.9446576320139668 +-0.024821599079276835,0.11311505256431603,1.1853551585087183 +0.7481470288396509,-0.23914006919323216,0.4401416391759633 +-0.1998323160049681,-0.10190242269347685,0.21303985501645972 +-0.020490830419166522,0.02860823287666603,1.2241510104930198 +0.16896180459094645,0.228738233212388,0.8552102867813054 +0.15414187895553882,0.04453763571742719,0.9692205786708665 +-0.1565808404677394,0.0013202416905748748,0.051654504314630756 +0.7462933804647586,0.015006626074499652,0.11154155967344276 +-0.08779376041133166,0.06881305958518824,1.9293837855741152 +0.25897559690503136,-0.23212347730279914,2.260984546192063 +0.9108393057563329,0.13540712535790494,0.2581738395255906 +0.09576204443212816,0.3751773811792959,1.1253079469225042 +1.1804484387349825,-0.07119742646161525,0.01703832253676829 +-0.0012076468932967765,-0.10203792301388179,-0.18673993824562019 +-0.1686192942074413,0.8216757158980503,0.22043391610063134 +-0.047412234645692886,-0.15375225462541353,0.28461269388125254 +-0.19854291316174222,0.4011951413085487,-0.21911276015252829 +0.13999126539157275,-0.1979845920170868,1.0688174287097465 +0.05814435071544799,0.20626836539607452,0.0765687809546513 +-0.02216290223545994,0.887996153950315,0.29955419379373693 +-0.04000016090768779,-0.2066657137813128,1.1413950521272458 +0.2949423042804403,-0.008991090971565197,0.04933295132324339 +-0.07343196577305514,-0.23972449313622934,1.5266085153554554 +0.2201907561462128,-0.21303214887141428,1.588699790515327 +-0.0556664255031209,0.15871013749274204,0.9673977280076727 +0.35875502722466834,-0.024684221856924066,-0.12342747099317236 +0.11643565958420793,-0.20487036146325974,0.8233148369815004 +-0.1578041159987374,-0.1575419066866937,1.1726638659988946 +-0.10646070742465133,0.0967843643577797,-0.23642138299363857 +0.059399877642397125,0.21839660077008088,1.1079022449861884 +0.803922188118589,-0.07391522158112171,0.20360490318983238 +0.30148431868032155,0.16327703151795647,0.8064359607651705 +-0.14026437600563826,-0.18592351830318088,0.11828592076388894 +-0.09684623579173907,-0.06543379542295916,-0.10502904255314433 +0.15204395897729567,-0.0819675900914956,-0.22437769707504257 +0.5852869750510746,0.20803930088407407,0.08126973529657722 +0.8125936190896534,-0.15521139902108472,-0.09356287914045286 +-0.06312301907119786,-0.24261323965900558,1.1848930759191119 +0.4564986256436301,-0.23586741387809546,0.15390928060508868 +0.8104012588116081,0.13545709562901026,-0.09075463512924856 +0.039450152758420176,0.23997061177938445,1.866923600001578 +-0.004450035372090183,-0.20591552154646875,0.14154724926282514 +-0.061841262142572045,0.08563479107574357,1.9486717594048826 +1.7168134731066214,0.608944500856737,0.7613418892924231 +-0.09482781422045505,-0.05655713213343119,0.7664628570141667 +0.11312621976046167,0.44582674454241744,0.2544279838415243 +-0.034542410734164586,-0.22041885947416398,0.23940626973925633 +-0.1959561794476207,-0.17828596775112876,-0.07582891486035634 +-0.22861136345899782,-0.1971123266757222,1.6690102997130918 +-0.141822960789933,-0.06388727676656594,-0.23516465065228584 +0.515978988548302,-0.03222203453274175,0.0984436488293216 +0.08012450090485002,-0.07923036447301474,1.1368433608163295 +-0.15359560548925527,-0.11700596596279597,0.292034700324208 +-0.1538197080127905,-0.16497571058554023,0.7661003372214266 +-0.15702941460926045,-0.23375381859271266,0.30317129621048644 +0.14214415918352868,0.04774806240492119,0.05749127575839047 +0.04499240560697204,0.7155450457289971,-0.012933090710498779 +-0.22635383211680749,-0.21193634107585022,-0.12431744823625501 +-0.21321949334322726,-0.07019834725480628,0.09840250030866854 +-0.011794325962103058,-0.24827619344289764,0.7093792271688307 +-0.18597854216269516,-0.01461442084334763,-0.24942687981405995 +0.3418201883565273,-0.049416204627983656,0.3600257780668976 +0.6282275843288725,-0.19984294835701114,0.550632160710548 +0.6223435370087061,0.26774868365593407,0.2801246424385775 +-0.039464297592639475,-0.18668470804663945,0.7144589360155983 +-0.05724224427320537,-0.17895301134989638,0.47215434697914926 +0.19599161929291353,-0.22923766960913677,1.3861954805782266 +-0.13405555179823792,-0.17411420454101983,0.0022628926491417567 +0.7658866412075818,0.007413436303971455,0.22450822040086438 +0.05392761784999056,0.32466436075724026,0.45729443618263954 +0.5552816256737778,-0.19060748991131263,1.3368147772155998 +0.4326894321046566,-0.20442187383980778,0.1915765145985729 +0.05160024582323802,-0.17425409383575774,0.16558006240411094 +0.48540829920066575,0.14309796277801157,0.0041181891864009446 +0.15924740633567036,1.6377664811730128,0.3320859049112932 +-0.0345094140277622,0.23510428770396202,0.9003495557073053 +0.6303342088770929,-0.17684275389392534,-0.1681458890371053 +0.8776874428140915,0.6714556955402222,0.11595418383733525 +-0.1578193800897318,0.13606594228061702,-0.03312688281908771 +-0.005631334486947054,0.08758735914592902,1.0614133347027495 +0.08288325267183932,-0.07296806065084305,2.2253277942385337 +0.25171864320062876,0.3291205809276945,1.0387720299596535 +0.8398215226763397,0.5087879309438816,-0.016694872289952117 +0.3416889281153719,-0.21695796513604515,-0.20483649466709736 +0.16666504742082694,-0.24755500153273688,-0.13463731340506768 +-0.09534038170441245,0.5257075697696122,0.4996420613010195 +0.720379170547635,0.9160634347058887,0.15319822674649541 +0.47544611743955223,-0.1716901041747886,-0.18606444478178058 +-0.20343270002129898,0.4358032809718694,0.9543665613803165 +0.7924059004489616,-0.21430853364036487,-0.11835262859708137 +-0.06254818651431904,-0.07929961827453758,1.3372513587335983 +-0.11891396195539727,-0.23695368499210925,1.3439430871170528 +0.12385080787884484,-0.031045853187605638,0.6408680164149781 +-0.06015078332479021,-0.0922445867334939,0.39311034637030473 +-0.18881695461645645,-0.06171149453034272,-0.08602671368916393 +0.07971183227955847,0.22355888718690237,1.1571807193366401 +-0.1887385826202553,-0.19060196701447094,0.19729468647230664 +-0.16007263861057364,0.5250638286581354,-0.13687259429711193 +-0.23416856497355826,-0.043213676319435734,2.6618719363653565 +-0.23905335091489865,-0.131781836549977,0.029647105367321125 +-0.0340532401925277,-0.20017165413501004,0.03534326937956672 +0.19708474686405197,0.04121166683681998,0.4171907677875173 +0.015736771603975408,-0.09564576229692215,3.347225119908561 +0.3596361016440096,-0.03716913476017128,1.2982389800470955 +-0.1938220628050481,-0.24275196593652507,0.4198331007461127 +-0.045618990171019225,-0.17104304994949443,0.7050982359950353 +-0.22241929013138345,0.11737408118491094,-0.034122624381398875 +0.0598283505310101,-0.07076059595585993,0.21019250205950857 +0.11239687339782245,0.060318395880576414,0.9242475114254296 +0.8471318221199502,-0.10505708533493557,0.3795902356737765 +0.3111514659673361,0.5584273668792888,0.056780412830028104 +0.18203725407252314,-0.03987681649045871,0.3390638518262199 +-0.17706979788511262,-0.23816038507038206,0.40027710673614014 +-0.21164355428091464,-0.1409466278856789,0.2774841823559472 +-0.11454086630455992,0.16762159898320184,0.24149971052192126 +0.9748660513947425,-0.21920150901280833,0.49938807683595865 +-0.1327470382892048,-0.09249456715852988,-0.22586118174558276 +0.06376422735227305,-0.21677045697046698,0.6367552944679006 +0.2898467359882868,-0.12048207396685848,0.07609918517803343 +0.3073163942742668,0.6329514747858482,0.7046358584638462 +1.5506771728105269,0.09347236561126332,0.17349532732212797 +-0.11188344502281675,0.7677902408497355,0.4887224327180061 +-0.2129830949323479,-0.14238056518595762,0.36216249115757126 +0.38822402409002243,-0.041599447383380644,0.25255973653974406 +-0.16444427697777725,0.21156612690770116,0.6743158751097627 +1.137763794893077,-0.009359307625029595,4.785909047670563 +0.7893106047299516,0.13008746851453284,-0.023612460990783485 +0.6430900314497077,-0.2049503956379768,0.1966636586019455 +0.47337710744894446,-0.1257548289415842,-0.058743567734714924 +1.0357726030874737,-0.21114607247181574,0.5047172874349465 +-0.22858978508279199,-0.24070954830913965,0.12373994894437318 +-0.10516930964177021,-0.17001996577975204,1.4424691692531573 +0.14804317158696978,-0.04902931273520164,0.7588021697199745 +-0.19577105379261156,0.35044488204522317,1.3243578242993825 +0.1318282562945397,-0.20288613503453232,1.023522765171254 +-0.008541574146486625,-0.10492340918326909,1.2115628024881568 +0.7740647335833664,0.20242955638215526,0.1367687321904451 +-0.1061361558133769,-0.13360008269461332,-0.0017525695489477022 +-0.09721324639024481,-0.19180862990844766,-0.15563172010115273 +-0.21188342420274747,0.2461055320278034,0.27598902529819846 +0.0542185559352501,0.6416740671130127,-0.038477350618072725 +-0.062008596665472815,-0.1259531595508201,0.5652807001025543 +0.496349642714185,0.0920700623304666,-0.18875564021650892 +0.0658736212601943,-0.23419472912587014,0.7517167458870042 +-0.23352176959797083,-0.011943846526866392,0.15971605704613845 +0.314441207903983,-0.06572290179829932,0.8985443490240546 +-0.014208514360369962,-0.07597919959006871,-0.11363421175039737 +-0.06003073763145356,-0.16202971306978212,-0.12745298635218338 +-0.24210903034283965,-0.172025953077512,0.09087002521475945 +-0.20006280846825059,-0.23402401626820374,0.4475946593710868 +-0.10709122590502293,-0.13236006534221995,0.020010559665051386 +-0.2428081898630795,0.13455712615429138,0.3647240688884289 +0.24657614149757973,-0.114726787491026,1.044279005271517 +0.31577449046415074,0.8566050262045308,0.016548823289094683 +0.07994812342650398,1.0103387483806576,-0.15944018456934111 +0.7610151549085615,0.12480082785114799,0.41076663131636426 +0.31512372898687646,0.4571999083101974,-0.2317081858554906 +0.5735401810678716,0.009651187262006145,0.21255616042020964 +0.004012343712056721,-0.013254047270602781,0.41214808086509547 +0.0805201020482656,-0.1690170753968836,1.7689381519645053 +-0.07066227245833898,0.6270472747861537,1.4530407593939518 +-0.20643337892392982,0.47445860264661543,0.14476091818362624 +0.8184428873641416,-0.19720183481943648,-0.21663026991705978 +0.012515646855088491,0.25312798667731395,0.7078791712066221 +0.5761396494727196,-0.24639317587757362,0.3416349702809741 +-0.04988134813958042,-0.24733989907376458,0.2502286412994731 +0.12870817121197148,0.513549243927232,0.4846782938135912 +0.008225245891289812,-0.17295470801950924,0.327187546837616 +-0.06853665996533143,-0.189552630259742,1.538055499179931 +0.4497857116232873,-0.11695596213211179,2.5356725406526563 +0.34277248884006783,-0.13100412809244516,2.0927830255216753 +0.6265301591572172,-0.23464734928919537,1.0385477950356137 +-0.03516813785514197,-0.23316035356755593,2.0811331074869717 +0.2977678543771186,-0.030486061215017457,0.2437447653439307 +0.27685682638261644,-0.19285108719538788,0.29360876019089 +-0.20329237114913784,-0.19611590615651336,0.15321045532217759 +0.12526065973222794,-0.19940632657302793,-0.06466695673833181 +0.05818722912157853,0.04554150960503639,0.120374803595723 +0.5671119329958391,0.44777180200701516,0.1939023334574424 +0.1917977864151375,-0.1943861872351682,-0.0006658161223248027 +0.2713676107845425,-0.041549940373036026,-0.20998016286840476 +0.33404341544869964,-0.1554382674112043,0.7646431300996333 +-0.010750794828192328,-0.16618232693194318,1.6766245222005183 +0.9313052929934287,0.4505688110587549,-0.11443648471820972 +-0.04824189634923917,0.5275009276643475,2.467928100428795 +0.33732811172198685,-0.10988645023296753,0.3740332970356718 +-0.20707937633092305,0.04501290091917687,0.5624708496151385 +0.04668475913503778,-0.14714437651253676,2.2937653067051658 +0.03345325271865368,0.8415334235362606,-0.24950570374427508 +-0.2178545252359479,0.09290588241160735,0.3860204027603392 +-0.03711030500920803,0.6144736355665713,-0.21164150038921406 +-0.16470864788538844,0.36271871111084886,1.320649460453275 +0.1449402383042363,-0.19273383875831374,0.018891900614048274 +0.16453972102047865,0.39578582882435975,1.2330195509451216 +-0.2133589733677579,-0.20539509310559287,-0.23002085481420992 +-0.1988062456494764,-0.014698260601228946,0.3111038646067005 +-0.11618914362781871,-0.05930181410781571,-0.11806185807369543 +-0.0415586440660026,0.31148103711609243,-0.054146537453321986 +0.058509573499253065,-0.22007816979891975,0.11970354182948167 +0.23322719045579504,-0.18479619776827866,0.6920830317362455 +-0.17061136397993495,0.42205547483920003,0.7880396834448151 +-0.17620313735717014,0.3304584903618175,0.1756750620719868 +-0.22585555401230167,-0.2044259124248454,3.8241755358395118 +0.26343520609508997,0.17253093902333438,0.4183666663487289 +-0.1560952794377758,-0.05426550407760852,1.000053444167928 +1.8329354491202454,-0.23544106878826762,1.6078089634696833 +0.2474920753220864,-0.023408178152930337,0.9953294299233852 +0.21155049089018635,-0.19316320533799153,0.15499562009150064 +0.31967745469560904,-0.08233180029478498,1.70143865501464 +-0.1284669872664629,-0.13715562766173986,1.5785253932783554 +-0.06962581071106813,-0.10869150048501383,0.051886401055336595 +1.8083549826278849,0.051281326503384406,1.4683536093213077 +2.8545365176562054,0.2813186652163836,1.7926173359604922 +0.13877829135631137,0.09229977313266868,0.5422832891224246 +0.27207772729753,-0.13879923465822697,1.4249276349139532 +0.03963138805896549,0.10671634388011358,-0.051983220594782775 +-0.09702898124322124,-0.13244409806593951,0.3663732655419992 +2.7074887732113195,-0.15323320007674895,5.243941685184871 +-0.1435822543209483,0.12554825375900086,1.072737305570862 +0.5150298285808146,-0.10657252004062662,0.8733720757357255 +0.32059035531385194,-0.08060246455998807,0.060537030193071883 +0.04287845145189029,-0.027749632926570428,-0.09831281542271256 +-0.12521926461171187,-0.14103207223508943,0.861852600958315 +0.7410461877505577,0.7665824536611427,0.29475043737500484 +0.02006855655706269,0.2832563342877409,0.06490838136599092 +0.18651135702719362,0.019411096838732822,0.5183835029272779 +-0.21117461119879327,0.23374156920487638,0.10164443784146976 +-0.01859448166308461,-0.2043396043616077,0.47261064324950175 +0.42677901401296003,0.05026432912060469,-0.028226067617111883 +-0.05105680910824989,-0.12626670243347332,1.401097343020063 +-0.23312111754894285,0.39097315294741386,-0.21108679478469916 +0.06642503474305045,0.5023744395331059,1.645032751355922 +0.12087450910584063,-0.11236210093864182,2.7714313665801433 +-0.18144294267254252,-0.1968694361020749,2.9091231974393006 +-0.1297527466132872,-0.23161557051519505,0.4806227905806939 +-0.0803144570924878,-0.08468804600826044,-0.2350995138965137 +0.8397433529415632,-0.2157596486529665,0.6736533786304577 +0.0334909366992755,-0.11228085037277427,1.066907004391093 +-0.16693559095989663,-0.20086252584865488,1.6919053526091712 +-0.24162249657845516,-0.10732932812217866,-0.08105372072419603 +0.44856102295098155,-0.15133647035561199,0.07310826334615711 +-0.15206533348176265,-0.17540369007408882,1.0123147666446448 +0.2634430246576329,-0.23263369870465236,-0.10970945817806471 +0.2214740717114717,-0.22970156344198983,0.6702285782956839 +1.6619870474267284,-0.23348599929544392,1.694975492880086 +-0.1689991724975582,-0.21205063731026563,0.14588786685070565 +0.36028297874465265,0.014165281977717659,-0.1942140829428756 +0.14754206208363801,-0.1379515873354903,0.8052134597047049 +-0.1578850760596206,-0.2367116945058919,0.4583545361195356 +-0.04807431987182759,-0.05113426266663121,-0.21251739591200058 +-0.09196907586559072,-0.1458649010166166,0.24377361015036825 +0.28562413130351283,-0.2205943562075283,1.1989944898425338 +-0.050486819717268594,0.10623588332557393,-0.24867494744710325 +0.9043927428802709,0.3716539805091873,-0.12945837285630118 +-0.1958822394211472,0.16922808003639134,0.55284946643089 +-0.24366805119790458,0.2994757553960573,-0.06139930158497112 +-0.11889614984183292,0.604229032741033,0.5949582233274495 +-0.1875763599307569,-0.04946547476164928,0.0905399078492809 +0.007954449241961148,-0.08876717923941985,-0.21360292787484142 +-0.2455876479803475,0.1860988661494669,-0.22939993455403437 +0.3643014270518953,-0.19687818471676072,0.027430373653843654 +0.5551235049808368,-0.12819396076046544,-0.2032923518197549 +0.20413117794258578,-0.17107704613811614,0.4539170226598105 +0.05695113735583268,0.5327106995166294,1.3757054440544576 +0.21132161251178666,0.14968270118212207,1.0370530450239746 +0.002437650165280636,0.24178788086747138,0.018067491897279464 +-0.1020772242620214,-0.1420724611381921,-0.13999988921437556 +0.16765291158331708,-0.23442817796034254,1.5128835816044806 +0.1395899640790323,-0.1655697994214603,0.9241965175039404 +0.3065886406110977,-0.23725245109237972,1.4575700878143105 +0.056120618745616524,0.060349452994716,-0.11112909140139468 +0.9036101123141171,0.7209196848462435,0.3622058519683564 +-0.1694824998213065,-0.21807060170103804,0.7933960281756209 +-0.13628748811360347,-0.21484703486737655,0.5464317544757729 +0.33816440217579147,0.11135379002160706,0.9153471005925826 +0.35681272994881885,0.07030601329263281,1.5793127389614365 +-0.13325617518540445,-0.12177702444648844,0.6682183616090391 +-0.11645551171839197,0.029451136972253933,-0.15793991604806518 +0.21832261638039585,-0.13622560189113103,0.22245974265600715 +0.21441603049977714,0.6778434827268492,0.7668732353366141 +-0.061013082691224296,-0.22292682006990527,-0.2220075586191477 +-0.011111303825462215,0.060824926758399456,-0.225271244221059 +-0.11493976207260265,0.8442159702190666,1.194793473338306 +0.3241128516062971,-0.24044639364574164,-0.1348969833274752 +2.3681189194826953,0.5950786155205184,0.2747816211869881 +1.040677774488227,-0.0032861671801874826,-0.010358346942823893 +-0.14721434561347302,-0.2097077970992208,2.5105766543622825 +0.49298542298134806,0.2583085204275649,-0.2287698378162828 +-0.11218038301575309,-0.0904950407692727,0.11937190094964867 +0.17998106545030296,1.1024626163965319,0.8485292052546076 +-0.1243179274477424,0.27948899169346975,-0.14075309501188205 +-0.056685335575788864,-0.24574867927465807,-0.1364639150189034 +0.324061501736181,-0.14566221930621134,0.6103165992332488 +0.765723029632793,-0.014675414632507683,1.6875276789336737 +-0.03934943164755092,-0.09568074342195895,0.18588139639746976 +-0.20416786705615944,-0.08724364913803065,0.1622762138263879 +-0.018900338136603773,0.18114456313533583,0.8706564492556237 +0.7087282621801889,1.1356355585425408,0.40657702740279245 +-0.2406771277339398,0.13214943131721485,0.982779238321176 +0.09230322057627927,-0.1786846066607548,0.061467329933844905 +0.020787358999145966,-0.039108122038663706,1.19501798714114 +-0.232675872532272,-0.035684593193854,-0.026995110736578537 +-0.17721618204964665,-0.048783078442043215,0.4764713675601705 +0.060392488573378256,-0.02717375261181415,0.03362018791425486 +1.2497626050737096,0.27539143243399156,5.121916540306965 +1.1653750556459697,0.23628561372303136,0.36449799356535006 +0.07959916712052428,-0.19298780974166815,1.3165360421226429 +0.5897668495666978,-0.20240541386994834,0.6430498607135136 +-0.1890187397040941,-0.023431081393753828,0.5223210928270219 +-0.219116987055145,-0.17618981023448088,0.593467688585252 +-0.02184433693847207,-0.18322849049269818,1.4012576801548735 +0.5408949791669785,0.2717676569634717,-0.1043912953796568 +0.13026115942563377,0.040179465945784476,-0.23058047224308312 +-0.10800882390831384,-0.1700286363322076,0.94068212327552 +0.28656707516102986,-0.19851764745978495,-0.03184813690032687 +0.030523168976242687,-0.10029652746194204,1.6470455249246778 +0.003247185025150645,0.9957925729683677,-0.12971003671080739 +0.702786292269242,0.6283021879195948,0.36702709852005566 +0.7207980487672534,-0.19241548890877522,0.7983210956290474 +-0.2266872093680571,-0.16538120801702436,0.05335806818838873 +-0.19698860014307162,-0.18453664142185341,-0.23079250701825746 +-0.03029498646597928,-0.05653547383600918,0.2434341850465881 +0.28040568011223166,0.057060087186627084,-0.08676636016501738 +0.029752674917805477,0.45902417306472776,2.482838125765141 +0.047526024987538384,-0.24453581466806187,1.8388365807064142 +-0.13447986287326125,-0.04906618971495352,0.8763747881684951 +0.2920016838206675,-0.24929798360455693,0.2216881148157434 +-0.12972873975817556,0.45004223931197007,1.633911905941922 +0.4105558075255975,0.045797733141390684,-0.12544703163039075 +-0.14317173216210852,0.22539239882217188,-0.1839897941136654 +0.8286644939552419,-0.05405052364921864,0.7076308436350225 +-0.12870632781023517,0.1311601376260927,0.6386535906190661 +0.23909316952992415,-0.15345089678298512,0.1370932772118908 +0.049493221116164,-0.01154800988412738,-0.1638224422984806 +-0.23433822312839858,-0.00992199913808367,1.481989994202489 +-0.1038201613937354,-0.22788075986663733,0.06852062169241441 +0.7370956317308988,0.026927616996314796,-0.20076747071655948 +0.5793946613487374,0.2827145825562962,2.0200995156012547 +-0.14828224341120044,-0.14830492626551228,-0.06414606998560446 +0.5394274539271435,0.13457712728173132,-0.1995630392682623 +-0.032868996405636786,-0.18767864612007853,0.5918858224795528 +0.10519523164582206,0.031524120716589166,0.3141443542933662 +0.026771644080206103,-0.2488100975600887,0.8464744781373319 +-0.24441402564751158,0.14967712271653033,-0.026506426563183888 +-0.048777980115855185,0.45623140134952667,1.4452847972101686 +-0.16599765032141534,-0.13049981966191182,0.576034155880765 +0.7686635925798202,-0.24796805174967826,-0.22278446782258415 +-0.04184337138075192,-0.07428506010192576,0.06487134636365266 +0.7713884582626542,-0.08887078076083912,0.08799130308687314 +-0.184403797726156,-0.17410491593436392,0.5270546865208143 +2.2083142553169437,0.37692869306577326,-0.11873079115294335 +1.1639450853747217,0.17698632894167027,1.0143701225424222 +-0.1501407122695807,-0.20298557083299343,-0.08887188031805482 +0.35117223539735576,-0.22982564301466524,-0.20388271089199905 +0.37911421134837264,-0.14828311963269108,-0.16341190657246035 +-0.06934534063544184,-0.17856927860684985,0.036358949299490684 +0.12605634558103518,-0.15551086126349234,0.5697899017399608 +0.4279223379914612,0.10029833015611617,1.1367760838005259 +-0.24058611521284398,-0.09473187482815706,-0.19051576888454616 +-0.222453586853958,-0.08358424719376695,0.5647278423935935 +-0.04655716677709562,0.26126326197996397,-0.23390319288593456 +0.4570152321304676,-0.18738146769821246,-0.17691518235946677 +-0.20667110543654815,0.2624483327573256,0.0385994629775514 +0.9838467100300827,-0.23573328439752558,-0.17499584143370694 +0.1799707619735536,0.4832503713675491,0.4633337927558787 +-0.14025160186171504,0.24088589118314035,0.7572113762539194 +0.08086919893889016,-0.23432656904611116,0.3192110522151972 +0.011329257477845689,-0.023550048920606137,0.19807270768569485 +0.16413355640869076,0.4198449573618175,-0.006578056001145027 +-0.07289514554713167,-0.008802467605411923,-0.20510699990291112 +-0.2443290015875138,1.1170563721679128,0.06927887941439742 +0.13132770166167473,-0.1415350649563695,0.47509038810751114 +-0.0562875710474979,0.38740379829869964,0.4240901517990324 +-0.17179551638996354,0.037335999979447476,1.21116138613032 +0.15042038642295757,-0.13019089015003238,0.7989420886097278 +0.4544889648091218,-0.15626692513248935,0.003840289564641275 +0.34679125735590033,0.6166198473825767,-0.17422040411422332 +-0.16808673978514205,0.49419160898924375,0.7188410344457781 +-0.07454239525952822,-0.24617384780391943,0.7181076356513437 +-0.18580238528327336,0.4470309931818385,-0.11982155621432516 +0.3704778311439477,-0.06499666219814226,1.1939875147559196 +0.37538905944419765,0.06907080213951272,0.18740296513218313 +0.05207878282352113,-0.1780613963025744,0.5689038130775637 +-0.000973134537689907,0.9426237975612384,-0.06966662912313054 +-0.24050770873150742,-0.17832483715543557,0.8404726878417548 +-0.1262921146580786,-0.05885898821719576,1.177216899917185 +-0.20577950354729935,-0.23064313367706465,-0.23740246043452398 +0.16209293496906124,-0.1784379015431598,0.7273373441738351 +0.053279969962533424,-0.19182213875634602,0.14157191028957045 +-0.13799867119637513,-0.09802652814004667,0.13751645191891215 +0.03335505098626573,-0.21569887857695197,3.7693746214649515 +-0.2439244062405823,0.20457389102325424,-0.14010655107729386 +-0.24669357605157788,-0.06831143501289369,0.018893610290727836 +-0.2001568115635957,-0.20414878807201517,0.2717682594592933 +-0.02188076732585087,0.024082186491832802,2.2654698945678886 +-0.006603930137801861,-0.16810632099916295,-0.1929398657719241 +0.5998754013527028,0.4621433855900122,-0.12705597461386653 +0.04793379810105214,0.3601701430820722,0.728946602898401 +0.025558704933839493,0.04202048343700554,-0.11783728960377954 +-0.13887185355700965,-0.24992610770859006,0.19903217488615277 +0.020151947926189184,-0.2490252146798241,-0.08358442504711436 +-0.24514897695569954,0.07149163497885991,0.544159043686324 +-0.23161678844360353,-0.06648658480397177,0.5173270545166961 +0.11420169798883961,0.07018576201975313,1.7815449863990445 +0.06996974720210059,-0.15739254158343546,0.21495243166990202 +-0.035954175136716254,0.3409440440112993,0.07296609794020043 +0.1641229869061917,-0.22619612162629843,0.08664436707795575 +0.05066216452537642,-0.22347631365574078,2.9835254399887936 +-0.1562803758848028,-0.15616656375000798,0.01596920220790249 +-0.12032719763467906,0.1952425852156069,-0.04797699413813625 +0.886464254564743,-0.01888728946376081,-0.045849070722089075 +0.27603416004390613,-0.07323128747948215,0.43330504589506147 +-0.21137528204304182,-0.148614511528598,0.0282764534166125 +-0.14081275131463838,0.23444870472385587,0.32702692290817326 +-0.10297812461272182,0.3651206797429789,-0.01078290684832603 +1.1318763562464451,0.026698081154631348,-0.20185203941355387 +0.523354862309494,0.3036412250346938,1.3083314858839254 +-0.060561210298695184,0.042030122806116565,0.814359698401335 +0.1637378926207394,0.10677613064843972,0.2760016639068993 +0.0869697633198181,-0.08685048677778096,2.107252383535193 +-0.23824770659878822,-0.005236998247304642,0.15067276301842247 +-0.20968355455530252,-0.20655346478925907,1.0063695922775864 +0.008026871410056702,0.427855033848098,0.3516091722239648 +0.7777959854991141,-0.19127597280803738,-0.05054245246875477 +0.057822034883233675,-0.1314745391502704,0.007433404094048468 +0.04056445993463148,0.285731752236011,0.4442695338039916 +0.06243395244438682,0.001936621818357298,-0.22803156948852535 +-0.18588312493911086,-0.19633290351736915,1.4648320313743404 +-0.10008092821117817,-0.06855817472099371,1.3472798995805522 +0.3473602627998781,0.22790839702020393,0.5390967589159459 +0.3067620385067247,-0.10479008218301938,0.5363540399683349 +-0.06944301933737781,-0.1968604969021664,1.0570810663485277 +0.4008724129467711,-0.004777416563298387,0.9217119573178112 +-0.030457307708141257,0.21100305416071352,0.14607842580335922 +-0.07660669648088583,-0.20829848976099305,2.4891362963903765 +0.04576532742980077,-0.14029583919739982,0.7367760805325035 +0.240786235728427,-0.2005025332510694,3.1531782835401785 +1.773443618008518,0.26633055509424697,0.2515518523687186 +1.0413291288710322,-0.06374463024063629,-0.08318065938361144 +0.2674060595864809,0.09983740392388812,1.5203506668139213 +0.8348587877377167,0.02061085440120708,-0.11470808127687182 +0.49083106668577203,0.12685766188800796,0.7002325860866091 +0.45911897678054914,-0.006914079031724002,0.23208241620646258 +-0.05572650328754644,-0.16967313382525062,-0.0014721449258281172 +0.022546202431009355,-0.05664478906955231,1.3935734965417432 +-0.1848034399999388,-0.147438395825504,0.6781231976980376 +-0.20706363834611924,0.21758916234605613,2.3434730019655703 +0.18013167933496815,-0.2403430441605285,0.8027113043113563 +-0.2180222024588404,-0.24624078221454201,0.8207797965659327 +-0.22565596731952395,0.03723103269818745,-0.16963201995477756 +0.0647097370665643,0.0751683997786406,-0.04435679540725618 +-0.06364637727530167,-0.054643273585361085,0.5116476148684922 +1.6800825442648535,-0.22496476766675907,1.018531423992081 +0.26276044850014324,-0.13484307248195185,-0.17621390802062836 +0.6834781107033541,-0.186662018222875,0.7242447309578346 +-0.14407054461597094,-0.22552485674802752,0.1041776536242549 +-0.02636380835588259,-0.22414610755999695,-0.2292553409050962 +0.25692996809242497,0.014195665082293696,1.2090347626811027 +1.388139821252834,-0.07971635996144022,0.40396081205955714 +-0.15071215354784226,0.061091841828241455,0.8688825741102613 +0.0181448117997714,0.09643080774181445,-0.13921394348830546 +-0.17467985731450614,-0.24035592190214994,1.1435623694918589 +0.29550072494823265,-0.2355273900357852,0.07950029131423708 +0.992263030203614,-0.09124276360422337,1.874151819586166 +-0.2185753146332781,-0.23947341949248982,0.6617742370657532 +-0.08594207255928496,-0.1112949891218438,0.18121099712787503 +-0.2281659606264179,0.7308996752077873,0.7624010892298412 +-0.20453834961176479,-0.06091186216426012,0.46033594230935704 +0.4329477535739268,0.24121615670393615,1.2867566440789224 +-0.013193776250141176,0.014984391106818873,-0.14629252725008474 +-0.22385879976222012,0.5757513606774172,0.12306085338466805 +0.9382820300962726,0.3479208378228601,0.704978518305213 +2.5138303328507714,0.36858066601140493,1.5081532684831567 +-0.13131845237954226,-0.011445994778137153,0.6175378001196042 +0.5629406283855728,-0.15130948795519883,1.3046941548250204 +0.0687899377602908,-0.17758079751897543,2.08919112656405 +1.2070728913579618,0.40879695217412937,3.897984864743253 +0.29951187615650277,-0.23860464074826596,0.4030248255423964 +-0.0722194272483842,0.1764520424266126,2.655669009708419 +-0.11241430333433786,0.12160917936577792,1.5293053620772212 +0.012638224237804363,-0.16176149602908654,-0.1891366895227017 +1.5172032941860614,0.6418366821637825,-0.21382529630738795 +0.8376282174433796,-0.21615498800913763,0.42793324973200164 +-0.0500000237390652,-0.006414742708742371,0.5732081018013842 +0.8360445225237432,-0.0682710560301017,0.09906237951355007 +-0.07440851589625197,-0.046173919458338514,1.1473388974688448 +0.07900608889508537,-0.1737447935284872,-0.185154833775111 +-0.2324463637403114,0.6588841991923915,0.44462594032423086 +0.09731321829316286,-0.0045444381993089145,-0.14691291536109427 +0.20897622708963282,-0.049242834763270016,-0.16599861573936014 +0.0427880411743935,0.019467699009786954,1.6620929406561353 +0.7476184737988824,-0.1733296857849087,0.09352939898327683 +0.13235896533267905,0.009652432216091189,0.06046044438382542 +1.6055804614635725,-0.09396782061218936,0.032915810746300955 +-0.07761279881455177,0.8535403226046074,-0.170221720517666 +-0.21946574520223897,-0.06463939862312221,0.8132538027722229 +0.06944489695023448,0.35229727693708224,0.1527520312117992 +0.1913944333540396,0.1474780107259016,0.26267544407692134 +-0.007597488409628317,-0.09671294689266705,0.5589609386749362 +-0.14590794374217303,-0.043173639210536796,1.086728502085812 +-0.0493696148085791,0.039236194559243154,0.5906681428130652 +-0.18853868746010916,-0.016253117293982045,1.3143451480749466 +-0.026611195089288497,-0.20141282234159022,-0.173051667410644 +0.18061287338349236,-0.23985821764477885,1.735841495334144 +0.8883190464297466,0.12501043328129957,0.13284485903203536 +0.3313594472853172,-0.1612847794335936,1.4604237151760595 +0.7550654405834265,-0.16952781030404063,0.08888154572272866 +-0.1665193147386609,0.06532647694340854,0.6933109282431236 +0.061937763961081915,-0.21698482130557484,-0.12446285713209732 +0.00033849274372049765,0.07951113555311529,1.022741811279458 +-0.11865084108190124,0.09314484938106898,0.9815321519210762 +0.02334733328239763,-0.1909102071737018,2.7508232005982065 +0.4897258714207826,-0.011601273084194508,2.5066844840773537 +-0.23161291586496688,0.6066492899874303,0.8293260279989396 +0.26530581737104275,-0.056790975415030726,0.9845852190739632 +0.47831228286296457,0.0369713230055459,-0.18660763925692064 +-0.1402658672051853,0.6085666787081494,-0.07156835393804972 +-0.09423791268761395,0.0006950389210821917,0.7011530739184576 +-0.2340877890556989,-0.24256538994641846,0.43673378862869694 +0.1011814728695703,0.04276148989284734,1.2223096866889782 +-0.06607099844325018,0.12787859458242545,0.35884738892338297 +-0.09499677698819242,0.3381183828938745,-0.11507942995298265 +1.4461446249748338,0.011351043701220531,-0.11392728043024072 +0.049114830805051746,-0.07184305488112158,-0.1905750381405836 +0.1736885253444035,0.41155513583986647,0.08321008088026527 +-0.057800236841227065,-0.05675879463843431,1.215064208766786 +-0.15608413746333227,-0.009386387121699369,-0.05446589779798203 +-0.1899783218519953,-0.18655548535039781,1.2289733110649546 +-0.20957014277161976,-0.07178851184077903,0.26518483325332187 +0.1696481800956836,0.05661328016729977,0.7436170277843729 +0.3435349251793681,-0.07335917642007558,-0.055083461224533364 +0.07711874724527662,-0.022657769548700163,0.5074074483434031 +-0.08247918515476538,-0.06521576890268346,-0.16595741054330831 +0.5005032283713066,0.14901730587461254,2.1660952207378217 +-0.04061299184841266,-0.21871792321654157,-0.13382837163933986 +-0.05762591128456962,-0.23391032430390565,0.5751843819094572 +-0.22108451193316012,-0.1799203251206836,-0.19074197625030465 +0.42592814564728765,0.07363759351566168,-0.05002553192704237 +0.03898141287652529,0.7835618499306571,2.4867027439437988 +0.14537729224166257,-0.12354243433276815,0.10692407061998482 +-0.030223061209198432,-0.17284722807281816,0.4153915375178495 +-0.22170615861661178,0.3840813718770535,-0.17238985950183444 +1.0937046173034775,-0.2234417643189332,0.07916829056852381 +-0.24389740510123126,-0.16083746058942094,0.023846507752515955 +-0.11193658001572757,0.021898827459941317,0.8524725380011755 +1.2512606401257522,-0.11221079662913441,1.0740716904590153 +0.14949962997333044,-0.06621790176933001,0.3985245979694094 +0.5227396486142211,0.7609100347306219,1.4071777555958251 +1.27412327511813,-0.23464088881072231,1.5823058008326645 +0.2914377137361458,0.013956159987166872,0.3829543803426051 +-0.2129159136391579,-0.2341410701235081,-0.10334742150652437 +0.04985210584948846,-0.21873805486271586,0.10066638547056134 +-0.06512302620494867,-0.1400680805315847,0.8399874259541589 +0.2753964732123594,-0.05934140241430233,0.08864641454446692 +0.12262597494770172,-0.24383272253061578,1.634269107051469 +0.38193208845340665,-0.18012673505267587,-0.02213021010056343 +0.005564863968644751,0.13874853943739002,-0.08501021924400765 +0.19361509318595443,0.30003460925186864,1.2547844384472275 +1.9222560435737464,-0.07679490575423567,0.37424536781600737 +-0.2069918289940477,0.20422595849185637,0.18131231293744976 +1.2489685572781053,-0.2411866700653436,-0.2247696406323846 +0.0012556387978779893,-0.0059471510386227,-0.16748361473385015 +-0.1853363284049988,0.6109413496263942,-0.19936381208197607 +0.21085992359853378,-0.05774166410761877,1.9596738201252029 +-0.21131447079361917,-0.21596951560707026,0.24338669909542132 +-0.02946165026623518,0.9163556497889935,-0.15482070214467342 +0.6604922339132886,-0.15634012702787087,0.9743166673057773 +0.05511725801860451,-0.0658400142264608,-0.08849717274029525 +-0.03598222522744082,0.003077411550341136,-0.24744837901970193 +-0.2271407502825707,0.19905085096578962,-0.1447156212700062 +0.6010918583496903,-0.10190635654098995,0.22360815122122046 +0.006360111935957591,-0.13719022635872144,-0.2270241235069277 +0.4138574002821743,-0.19552013234216037,0.015547604174063756 +-0.021887099550649297,-0.15080057399127872,0.7863319695129438 +-0.0036289877549639804,-0.166959070288201,0.22239093713058306 +-0.04048225704509978,-0.1696573860808343,-0.12846667359024022 +0.8478752878962543,0.07237432039870384,0.08912922691364933 +-0.13799255690407936,-0.2186555925738459,-0.034947310714787405 +-0.20707168647828122,-0.10349220067491186,0.2305784474432616 +0.0190144390471792,-0.17384568517835935,-0.2305091840972529 +0.8380053653619277,0.39893651051031165,1.1416110086529339 +-0.12656127402414777,-0.17051711811904013,1.351416129081286 +0.04341200106675652,-0.013889314464932051,-0.18309694550093367 +-0.04459753541786704,-0.23112166765325098,-0.21172551938699713 +0.17128592234647844,0.6252333668611849,1.2366373774254331 +0.026624172901633936,-0.2383724946101571,0.023320076195754325 +-0.03291306495047788,0.5055191375057029,0.38986579668624666 +0.080421221225491,0.08170222382577896,0.0015292433000623218 +-0.1535256491571929,0.15927880338058908,1.5138814445945807 +0.15148128821249957,-0.23523497446022257,-0.19578229440246245 +0.08525354805359242,-0.21965748305041877,1.4851691093341628 +-0.11470428954707099,-0.03373462523672052,0.22691416292962946 +0.6524777580645006,-0.2197090755472697,0.8110456215329054 +-0.16891878353670775,-0.23603042523316112,0.7051588630655097 +0.4466337914455084,-0.11563462809856173,0.7361277215633376 +-0.13778801828782072,0.5282800609047664,0.5171355723576633 +-0.10109288573605163,-0.2170589896918406,-0.11661359743505131 +-0.16004542560063867,0.15302828153678183,1.5349260945157643 +-0.18501748127957687,-0.17271975468921208,-0.12984857046539572 +-0.11077866881951856,0.3572432379159154,-0.1656859392093582 +0.222595809363495,0.0791927586564008,1.1721614982598236 +0.10521392147130326,-0.002256959057963498,1.5167061630757355 +0.8264526746901522,-0.22130652737235884,3.774539269918348 +0.22233251638724782,-0.02548890564161907,0.23254071680351845 +0.1273729972315688,0.04554917808379294,0.217660625577497 +0.4022068372348673,0.0784781978102419,1.3052077181772954 +0.9526235640554581,-0.2298703462266594,1.4865154084585475 +0.2686142429925532,-0.19173036049058823,-0.10317419283161708 +0.30340117906972186,0.036499751133185154,0.5955430200520475 +0.18430108964843972,-0.10355959608512463,4.714477570227597 +0.9221162949705508,-0.09885544886354478,0.2766108435724812 +-0.1734061511489267,-0.04070424943961873,0.5058720701837391 +0.281933220462785,0.8838475638347985,1.6038347510548385 +0.45754082186961453,-0.24919337550148718,0.4937922283354518 +-0.18714941055067486,-0.22058627859964833,-0.11797732666521887 +0.06926371167158618,0.05406077282630406,0.020004666418828976 +0.07492994667955538,0.16299944752269369,0.3793311020114325 +-0.021714118624296647,1.027191366002419,2.94818558396345 +-0.14763212209312854,-0.18736917542584708,2.5211125397925396 +0.2698890214697862,0.2287387860264689,0.11372859867260654 +1.1774175511619935,-0.06723326501855359,0.7318636456912091 +0.15862868520407591,-0.10642917400364402,0.08659972033184588 +0.40549961290681713,0.33148779838170617,0.195541782222878 +0.17505678082228793,-0.033344599063388464,0.8242697252875804 +0.628758916047772,0.0644892726841716,-0.07378606163496032 +-0.20726767118430167,0.5051794271807722,0.08721951106617887 +1.9355505828998458,0.022890168737061123,0.4509736202907154 +0.37519067958228636,-0.13239924505990414,-0.07018073016372958 +0.8693202589146476,0.045157373520280486,0.37752629178770636 +-0.09429855080253188,-0.1558299589011235,1.5812478053783248 +0.8176519194010055,0.029523535824204306,-0.07936725577660314 +0.14061888287248614,0.24708615315972066,2.146499305432193 +0.15758741202134402,-0.13010289453529394,0.19608532131443768 +0.1256468580402217,-0.09385798175239085,0.33289924687726913 +-0.0594529080634609,0.15587718045784765,0.31857678448877846 +0.14631301383575734,-0.020024095960778227,-0.11537082283523006 +-0.07786636871084812,-0.24775209776450288,2.2844617288837674 +-0.0024601179945594187,-0.16022261168222046,3.6697769008140377 +-0.013581223683233001,0.923269050585779,0.33098943822363325 +0.06228691266495401,0.08178074607936409,0.5837617525949387 +-0.003498406960624978,1.1259797499513067,0.6384562901681724 +-0.18839119260765932,0.16077535535746534,-0.2346169699634264 +-0.044363352820724955,-0.2361736321328352,0.5243297030002264 +-0.13052684365737888,-0.10955829187434504,0.05761452747341067 +0.507201191085982,-0.12749526542497397,-0.22523191197998513 +-0.23737692916356107,0.047303438048439284,-0.010817181015532945 +0.05660587008657347,0.17285202595083954,0.9137501808393143 +-0.22041967533543036,0.029934162306283985,-0.2056726354956408 +0.32933001687234,-0.009203409966182019,1.3492890964139888 +0.0007573603499856363,-0.2422485962923669,-0.16618848199072767 +-0.239217951329521,0.19700174507687473,0.16642767367198968 +0.18840651509583423,-0.18634749530251982,0.8714476238767814 +-0.12481791348263255,-0.08393313422198753,0.4085489312255415 +0.3521424944710905,-0.2104365852977542,0.021565506141952684 +0.6610077785338451,-0.19508820418003142,0.5999709190292661 +-0.1586261316525093,0.009841038668072788,1.016264867952016 +0.17565986669858746,-0.11061028867067713,2.3825847687164043 +0.23571716904959777,-0.15388840307017632,-0.09712159722614785 +-0.1493050554551162,0.8155060605006792,-0.020478544237464424 +0.3746811147765162,-0.025735477132509593,0.1062176968260598 +0.18154306946256643,0.07934160877924185,0.1603697717443447 +0.09839469837241405,-0.22935819804338298,-0.18759476126682764 +0.31247582934429685,0.3808139193602256,0.7187610638457055 +0.5550117247666422,-0.20506683680296744,-0.19446623313030292 +0.0735516415558316,0.16057097975233925,-0.06118932686596079 +-0.09189992331082453,-0.22695000297562873,0.6290742084978049 +0.6744864095252706,-0.21670991885593488,0.08189404724377747 +0.44712850433782136,-0.09956780158994538,2.489185197150589 +0.3131256590779157,0.12814853509249746,0.3210971839234116 +-0.006041360278937202,-0.19269117954629805,0.6535458617150781 +-0.11819277004346843,-0.08895676761175819,0.8088802512017017 +0.030411909596966047,-0.17933641519009635,0.8572757427175306 +-0.21730913627954063,0.773374169432312,0.26089592379519344 +-0.01944171660704544,-0.16307786553234602,0.06828250122977703 +-0.21718417406969828,-0.12334034679277783,0.27507444944367776 +0.29685758541919793,-0.20178832251895645,-0.2427974374565772 +-0.10495649943724472,-0.05311763748528875,0.1937386831454076 +0.20050131071489358,-0.07952804432563784,0.5479584215431479 +0.1554048135454274,-0.0794338340073465,0.668790068807236 +-0.012596406378648756,0.5138240934183324,1.5609063797482938 +-0.14944572224045816,-0.24148595828433556,0.5286943557754546 +0.21852452460968463,-0.21384585267200532,1.1320842433151606 +0.8825197448783184,-0.2082407674407914,0.2830687242208917 +0.1192598121583272,0.7837330699399234,1.0575825637058989 +-0.10015379852261777,-0.025665260143189428,0.696165321878165 +0.2806064984797403,0.7805894594347693,0.20682866880134126 +-0.13781900601250577,0.24100389511542586,0.6228833587309316 +0.29464918512111093,-0.15700557329040685,0.7812764185757985 +0.012760676847085817,0.016050625027228427,0.08787595195796494 +0.11741465393703299,-0.028813875229833613,-0.06088298258608671 +1.2594946561757123,-0.07910754653580118,0.2638351246498738 +-0.12906328545352547,-0.14774113015090196,0.9693209623547192 +-0.07971880976598375,-0.174083483000869,0.7229683861994416 +-0.23177582245445133,0.2225106083273945,0.484524814840282 +0.40655956418204753,0.4914635233160103,0.4979609398816467 +1.082478849670796,-0.1079705710400827,0.7504596788216242 +-0.06457921653494461,0.17544171323411245,0.20855072085929938 +0.21436205259034435,-0.22777971326326715,-0.12124966024683553 +0.12344168381374804,-0.10245146406347516,0.5578475600813073 +0.3411772237773609,-0.20120516602684424,0.11505959182980696 +-0.1171224156019059,0.49268220181065014,-0.02958538208077119 +-0.14581394460090524,-0.1527843098842962,4.500567564542003 +-0.04222222339108264,-0.1833493863401202,3.485592761974733 +0.5515399394472916,-0.16651337060975474,2.5238009211884362 +0.05525222712481648,0.3094540568087303,0.029360701276867796 +-0.17420823706289706,0.2843173486200127,0.5674310443745708 +0.1342781941324997,-0.2219460981811551,0.525337585226588 +-0.20281534713297128,-0.0925863896671392,0.07116612088762186 +0.11757004702458845,0.2624056527574359,-0.08380225910156489 +0.2082190655092258,0.3204246230046801,0.27370890613240006 +0.0733996382992273,-0.1735916365279177,0.9181218888894409 +-0.15167132555321977,-0.15388845229541542,0.8534313088661347 +-0.19458284590631766,-0.121519446951494,0.7908639224898593 +1.1732158924143372,-0.1891490527365179,0.023573519713617597 +0.3715849509139185,-0.24161132148932088,-0.18334372375500727 +0.015729294788358383,0.5070572379297172,6.314965254924957 +0.042526781089380794,-0.21148577326587048,0.18760980769296481 +0.014521086546503525,-0.13339437819717082,0.6324549763301148 +0.026524553014031338,-0.09964281532561856,0.5654873979495504 +-0.17522597433194298,0.2660441496553805,0.20691534798825645 +-0.10161261491752605,-0.1854532378484715,-0.22792316306491645 +-0.15231279903631983,-0.2429240242221907,-0.155119351340676 +0.9429830479390451,0.1298132154495224,0.41465265114514716 +0.810121808743117,-0.08274563455318598,0.02758654038871433 +0.21498934585404617,-0.24438954246349592,0.05107159633911745 +-0.055646595277936334,0.1042993603165937,-0.17745143960170645 +-0.12045977152364651,-0.24699174430430937,-0.06991219258757764 +0.5288771320004978,-0.22800460899221875,0.04191665263962968 +-0.21863098011934123,0.10179087235768619,-0.10197289685535557 +0.4280458149081904,-0.08953579004253667,1.246534802771469 +0.020431641652969845,-0.01873858294731351,1.2677412698091255 +-0.16205308270264143,-0.19410172731190667,-0.18615358559148604 +0.0122075743076841,-0.0712834212532385,0.33139672267066833 +-0.14406982806183344,0.23427324513770675,1.3065077788284616 +0.031070357025382467,0.29828935474853624,4.5002577919987 +-0.1297380349079617,0.16598354988762504,0.41366439222746365 +0.19413483121351793,-0.09121477827778218,0.4761804127724151 +-0.011850616128287056,0.06346920697370895,0.3948386421435708 +-0.13211134430338883,-0.23385800428850456,1.260833410461122 +0.06043475199876258,0.05442950383808004,0.43262124717092776 +-0.020749842739274743,-0.023844376172551918,0.6068279682462564 +-0.08863100806237692,-0.04859604318115504,1.4222891728626497 +0.015877903993240627,0.21139305589701934,-0.23607838239987664 +0.2588425878145735,-0.050137038517221705,1.7330776856282486 +0.06289210058292377,0.17116667645179373,-0.052205760330726325 +-0.21325079591789156,-0.1369791574514918,0.7486187792919192 +1.7722983942219317,-0.06222535806547888,0.6074997169825468 +0.5884075066437665,-0.22365273155089294,2.1800653341905174 +0.1949880266441621,0.11735058243890334,0.18036109602588385 +0.47175607408252496,0.4107086740419341,0.8084218117016633 +0.8631503144208303,0.07444182635943902,0.5411685756962341 +-0.12515623101650952,-0.1791306308677091,1.1401678150945787 +-0.08188071069898828,-0.19300714944152478,0.5073105806532225 +-0.07633048850818114,-0.22636275099948266,-0.10235920942055277 +0.22672862449394798,-0.2420224805954498,0.21026720129267862 +-0.2136922402753333,-0.2036044800068186,0.3525709187680931 +0.435544568876289,0.038404171610052384,0.17705010836148743 +0.06755099312386731,0.050870702205092266,0.16417885517543906 +-0.15212518175729473,-0.2460099066782413,0.17946394636415441 +0.30569453842027716,-0.16796593732963935,-0.1673382542322259 +-0.08535178887105838,-0.07696545515518746,0.5832013658731189 +-0.24694098368049933,0.13494908736145284,-0.15955475034112665 +0.6110364842819501,-0.18204468015619107,0.3882069114259018 +0.24207097241043513,-0.20431995638455328,-0.14056118708343227 +0.8187787140532523,-0.1539840550041456,-0.15130896571954444 +2.4903674019530215,0.13004196297718196,1.3410608676444487 +-0.09859778910687836,-0.23524280092086614,1.3269339224644146 +0.6394390835135809,-0.13409102283953334,0.65256901361671 +-0.0484849858974363,-0.06050707660362392,0.1984018936527972 +-0.07833740987429971,-0.17292733684656658,0.7028306796097828 +-0.18566474514170128,-0.24992326224669506,0.7727891514179797 +0.24135663641700078,0.6400823797757419,1.9596443838232842 +0.019650792024196062,-0.032434283574343664,0.5127835363330084 +1.804386627227165,0.7553111336648761,-0.1647667971150651 +0.226197643648051,0.23985865797820521,-0.20871203151170895 +-0.03322191211655379,0.08921837910924302,2.0450669230970955 +-0.2447223482428089,0.07507365765521168,0.4201033365592147 +0.28729823722985093,-0.20444174944967117,0.5477227302664218 +0.7962076032530843,-0.11809126226757519,-0.06792152901085266 +-0.20328509607173015,0.44022263976838427,-0.08626286399843677 +-0.18540153259350944,0.027616070718097407,0.6456443160161753 +0.17253495565808297,-0.10094973987798442,0.5598904170402315 +0.32942266228101036,0.34117625372601923,-0.2149343086114271 +-0.08494917383854289,-0.2355096731986598,3.8364256827027496 +-0.1972330778747048,0.13878841222390126,-0.045006592216449676 +0.3696967813201998,-0.22721405379602683,1.2018636081585565 +-0.05042247835010494,-0.21914873006621516,-0.05314972375111404 +0.25278852003578756,-0.23152831320836925,0.02014784042317469 +0.3888440364700697,-0.2472646038396943,0.5330820499962063 +-0.19520332054944556,0.629908888396588,-0.054156343123013956 +0.01362247907404307,-0.20634158423493276,0.05753112486877615 +0.27445595044079474,-0.050799998664844664,-0.043072264901352186 +0.12706774149773165,-0.20870280847459816,-0.0374421286885567 +-0.2328404067387642,0.3640496062350864,0.5925875815018415 +0.23668499074890564,-0.2429848827584589,0.3444920232322881 +-0.0642371217285414,-0.12488228044068578,-0.04424203142680366 +0.6412132067630227,-0.04924834859268523,0.4348739414198526 +0.6475733293804751,0.4404589784612929,-0.21077149779756527 +-0.20542237725209136,-0.20107440228275383,0.9202361991575727 +-0.116085538952997,0.20580105349823635,1.0779958435117232 +-0.05803297441065816,0.6192086220303166,-0.03011078379161916 +-0.24292971771197427,-0.04734861891564948,0.49369744989334363 +0.9655599717964809,0.08448968105420746,0.023753650333219523 +-0.12280647445411061,0.14193368944271323,0.02854484341617064 +0.17747946140322496,-0.23279827026191158,0.19652697241448314 +-0.12487818153025176,0.8128190112557536,-0.2062439238654176 +1.3050811668974232,-0.19207563306751219,0.14493319666033577 +0.19229915228092592,-0.04073854182171133,0.46936090186291823 +-0.1825037338899354,0.07455836454520864,-0.13273295186410555 +1.13248795966496,-0.17222771857764294,0.7846834744249493 +-0.049940757934659685,0.241809046514197,-0.08539514994555178 +0.5730307696167173,-0.18658201827333482,-0.028056038799260885 +0.5004562665691965,0.7645709485705219,-0.17586738874287952 +0.34595710650749945,-0.11447285568265261,0.168325914035109 +-0.061662219614829455,0.03797987986682244,-0.05876088063353324 +1.449244270021567,-0.0388906343893794,1.004300808073221 +0.32450005497718426,-0.1241252965919813,0.8297785181634574 +0.6776268815539885,-0.17335636368390125,2.693350047182592 +1.0020709296743169,-0.001514094041116687,-0.17870586815153966 +0.004885955318998603,-0.0969461959624657,0.1599688651616894 +-0.19455902323115917,0.4809951612760798,0.7292255970761669 +-0.24407959576238242,-0.1332460556263259,2.3672896921491753 +-0.043781503668829824,-0.21175385763598553,0.7377962790878142 +0.9581618794343345,-0.20163125338321056,0.02929443299179696 +-0.21210812079934804,0.039218453669930264,0.7736081914598094 +-0.23479076193275888,-0.012767397801655728,-0.13901617189619975 +0.4225380823938616,0.2713809847109373,2.508304937053223 +-0.152360297606,-0.1938571361880668,2.349617241070158 +0.3786151293311959,-0.06148580186135805,1.071855820776282 +-0.10517442623519968,-0.034894606300747644,0.1483838275174984 +0.008086959063243582,-0.2327638954781315,0.36490035679792276 +0.0020993121176043905,-0.02359799841052787,-0.17402238419532967 +0.01213110948924323,-0.170570438103634,0.07388464472321526 +-0.0489844744698098,-0.19595864919719494,0.27603540099256874 +0.31773913723548397,0.31772456831609286,-0.06519216851437803 +0.34279207544945955,-0.1380075478211098,0.18810188434649167 +0.48814636593106875,-0.18754845886579177,0.5934071042117165 +-0.09928383616010097,0.5672134387194482,2.323678712007514 +0.07648706849078524,-0.18800254598650448,2.5438307120227295 +-0.18112658493523823,-0.22769971358217292,0.24755157276081063 +-0.11895606801443095,-0.16085802975993704,0.1695462102234644 +0.18169622247942147,-0.21629275018431074,-0.18164603587141664 +0.20546590807323345,-0.032571856472067534,2.304389594802284 +0.14093689422047012,0.3151158257655323,1.0522708732271682 +0.015275781232798213,-0.21784075993970164,0.40279955653116806 +-0.088178542247973,0.07911204842321662,2.006628556088381 +0.2183516331662344,-0.14930161993254315,0.45930832101904584 +0.8391134117495687,0.32867497462681106,-0.1838979629764268 +-0.10151118775055057,0.024102429073922627,-0.24745523898953226 +0.5339666476596036,-0.20317297374970483,-0.1331928661925742 +0.3023375433369162,-0.021177944149239125,1.768234203013185 +0.32835479455189165,0.6143241282281402,0.413149982218213 +-0.14666635591154215,-0.18237234928837867,0.1204854647014138 +0.11593958370853896,0.006422205974680462,-0.0942524364356746 +-0.1835040960196705,0.06394529413855149,0.013384069614014615 +-0.17609355838271398,-0.17631973292149525,0.12799119004818604 +-0.24399366535517739,-0.08893632460861925,0.6480660721832802 +0.9198685843841441,-0.19793223998623574,0.8814259210548046 +0.785763812219322,0.10719260078452991,-0.07466370740501838 +0.24918830365996947,0.42100922413846387,-0.0802508718887496 +-0.2182934800296069,-0.2480249164898014,0.32697893074961104 +0.21016676919256,-0.15788203191638767,2.8939363443977264 +-0.08162535040665156,0.23095142836198762,2.5955411353727946 +-0.19687041861745716,0.7140372391469076,0.08627501917381558 +0.16596897024205232,0.1853072778640648,0.22292310026162565 +0.16542593545335732,-0.2076001809100178,-0.1606427693763167 +1.3482176689193863,0.42702930830873276,2.9614160409786967 +-0.16087981447125438,0.24922489819773652,1.4838353468113665 +-0.20301917826827742,0.8006316438481702,0.04289366450505411 +-0.006124458463216853,-0.19268479497516536,-0.007153444766578088 +0.06149419406066153,0.2635641651756593,0.42573812862419214 +-0.2322901000355422,-0.24729390086002406,-0.20675207454406197 +-0.2391514478652477,0.42570386610674615,0.1427444834756747 +0.16344618244539683,-0.132152612418932,-0.03954241783523904 +-0.054663338744980694,0.7316093332594416,3.4733065862573556 +0.06117285211589896,0.12398076769614386,1.7367996865197948 +-0.20648614695686865,-0.17278948927103516,-0.09584569152767608 +-0.20471532632546038,-0.14604013813078748,0.23759515570090528 +-0.12918696409175626,0.4917024202083845,-0.24328069699999993 +-0.0007059803023143352,-0.11346921456545728,-0.2229632121874843 +-0.03324778272444756,-0.120695870559793,1.3353048534085643 +0.3923905514263535,-0.16560285149416828,-0.16735447010251797 +0.921858285880262,0.039466758041391825,-0.045571758757673275 +-0.16216449174942926,-0.03626880399091639,3.2794247179630593 +0.22284028683463902,0.01138043781633713,-0.0009658978745346603 +-0.14061986847451663,0.004031315966340376,-0.16043793063752348 +-0.20513677238927505,0.7157103507323626,3.7425018125228675 +-0.23431365810692587,-0.10045622504348906,0.016436535520843287 +-0.22732865475154218,0.011880160436512577,-0.2458901114173739 +-0.06945442277020292,0.018920796992916045,-0.23321452422605576 +0.10068219944673135,0.2536932472210188,1.1067723492970187 +0.02053523790926065,-0.17237407229514554,-0.12343073776325902 +0.10433965656514671,0.08842841097382365,-0.12101308179706668 +0.396883100204659,-0.10740393858759001,-0.11348875369014885 +-0.03257010769335575,-0.22190777712020365,0.4240126633804068 +0.44474233425083964,-0.06569622510632867,-0.14357508691279153 +0.03261265072659819,-0.11849563683883776,0.20160702928325092 +-0.18598783854438655,0.07198097104985113,-0.01702387114166415 +-0.24217251262895162,-0.08574416503807358,0.06880011598666574 +-0.13466285074452428,0.08420178748750973,1.1253125420297152 +0.269083510185005,0.009584688729236901,0.407110980064609 +0.06522285466142252,-0.13582338724322376,0.4397873345359161 +-0.15447909354830042,0.3671424999110732,0.43832485368723983 +-0.038020157283290834,-0.15373444570967054,-0.1385480715871103 +0.1595022436338484,-0.13433169072677642,0.3773113948201384 +0.22790988789282618,-0.17725912283526082,2.6551911763979645 +0.5807799482541741,1.3205876575509972,-0.01880277493539176 +-0.05415536462944748,-0.16580416230762696,0.32378319438917247 +0.9631084235052676,-0.05708644909449492,0.3298090156345458 +-0.13023603073089746,-0.050342074248522606,-0.03996435697912262 +0.58473821068376,0.017141062749252034,0.17000131307805888 +0.13090739785068078,0.1268370954849254,2.954615617175527 +-0.005705915576558723,0.08280660870708434,1.0622055626232716 +-0.05780228793280007,-0.1807900026891625,0.18809332504069914 +0.1354250968261354,-0.20063746582295566,0.24510232358035583 +0.5896587016175264,-0.09693814843075538,1.7083768874763499 +0.3975261589974647,-0.2136530339350271,1.2461261120448326 +-0.08330897345231811,0.21300440812629468,0.14532666787432785 +0.08853382325267162,0.01140156528253905,0.09881655037404757 +0.3431532924460017,0.6356978225722031,3.2881760684321075 +0.20049251222056053,-0.12782786230113435,1.039591138904235 +0.06494371854004055,-0.22292470794173672,-0.13006230315647016 +-0.16848965069766658,-0.15580717220511095,0.1861498571866962 +0.7344602483189673,0.563537558384357,0.18778492139187175 +-0.2445786325019539,1.1884981793527303,-0.05037590376365397 +0.5762109006278844,-0.16528298156389706,-0.16611385284245284 +1.063696368445562,-0.056288166481361895,-0.08499072783893366 +-0.02743646643259065,-0.0433959328911821,-0.06221236114750367 +-0.2283602210933277,-0.2149836331183111,-0.22941001477869527 +0.7030950126095501,-0.16311322624689065,0.029012403332850822 +0.0970856977541848,-0.10013189271278064,0.174960700967087 +0.3293517098859955,-0.0456292280423376,2.0727779987086485 +-0.1784435253604109,0.34972819059942883,1.185415422913274 +0.0867041483445623,0.33932732563401313,2.7500338216754123 +-0.1393424414487517,0.057292657785301515,-0.15327067274110087 +-0.04806158414789344,0.7787302897198063,-0.23059790137567665 +-0.023241963800977566,-0.03923207048178845,-0.16596812261263671 +1.6818723928393111,0.03634937101188879,1.2975599428995892 +-0.20143528678126288,0.054092216337452814,0.1077114839459603 +-0.09047814551722333,-0.23638746638402242,-0.02442083594486033 +0.5966983495571856,-0.13261768847626648,0.3352367918719107 +0.03914655961710006,0.45946383377421696,0.32231583353478754 +0.03829715956492058,-0.1652161125700447,1.5769820492281812 +0.021245879569394055,0.17072855269023485,0.19828992041547872 +0.4364783218905802,-0.10461471160453942,3.9569768403680428 +0.32123401636613247,-0.21410441866653837,0.8652247477486537 +-0.09760232805433369,0.18490046314454595,0.21373887413567666 +-0.10235200364711161,-0.1911339922050678,0.6093824593814497 +0.5377201671758806,0.2576965761355553,1.091940017996015 +-0.0033692243205723227,-0.20119900554145226,0.15140633874689718 +0.11927695073567979,0.20724637255434852,0.1187189258878028 +0.04218837349235238,-0.199052226739912,2.8981656029792604 +-0.23437572419709804,0.20022799812297387,0.8286053043814023 +-0.24768423177216944,-0.24520805467419154,0.02535097544939402 +0.3431694520650447,-0.031766022997535365,1.2914658608517033 +-0.23011309829619064,-0.09953066935668356,1.557710226663259 +-0.10101198912175297,-0.13851496656384132,0.0359038665562586 +0.0803995815960944,0.3578927119933143,1.2699788937111105 +-0.18966154677859445,-0.09071401006914584,0.4384103039553592 +0.057717637487761986,-0.03209334159458885,0.19680357521520642 +0.09792157882604063,0.10933666402107789,0.5706308931088864 +-0.10061126985662722,0.06278336440353033,0.12809613256216484 +0.9968394286529518,0.1574777526789461,-0.17567051807247375 +-0.2190751363839228,-0.19194743023881747,-0.0037541417547761746 +-0.1928767450288476,-0.18446417923907693,1.4213312831240545 +-0.0735727128029004,-0.14600292071267634,-0.13689694817801457 +0.47046798744156015,-0.15115799130103907,0.10360194566014791 +0.7669725087037624,0.09108617422844217,0.879121111952959 +-0.06599608022180486,0.17965443770885337,3.6223518480741297 +0.152725165850088,0.2100032791719481,0.1423896054485721 +0.1568610367069327,0.23390814592825426,-0.031912760399922746 +0.5394751483480782,-0.02948428652663701,-0.08327610020177859 +-0.1913640510498908,-0.04439906317506323,0.1813155155850495 +0.06955175708659078,-0.1739794183814566,0.14735678088611548 +-0.14367173371281014,-0.13796919206862837,0.007953698928766906 +0.044929917536997654,0.3640542684834053,0.41481017103411233 +-0.18285915180992213,0.06058209698107231,0.16125202814115003 +-0.03769042420019167,-0.18219425800470018,-0.075751024323533 +0.8625391144058363,-0.12108637731048472,0.7851560364167312 +0.17718932028812756,0.02136304827677793,3.7792679455479368 +0.02658187852945798,-0.08002528947380025,0.8829084734844828 +0.1145350579724565,-0.03568111758453568,-0.18807920506835876 +0.6440511199627847,0.4077492599798286,0.3472551963480571 +0.382934621256265,-0.1433290439916745,-0.11126961738555302 +0.8932159074677903,0.07205786339336478,0.4422579540041103 +0.9374644409612063,0.28125893719815376,0.7835131677609817 +-0.16480849866321173,-0.054252519944702315,0.14567994585245342 +1.630158692426847,-0.21304927440984997,-0.13432352358345734 +-0.18055191945361632,0.5036911456819031,0.15872760748687348 +0.6456333396460221,0.03933479213364022,0.2567409867485989 +-0.2236053662052395,0.014764951274413574,0.21687959845228305 +-0.24727129097557876,-0.17405690880503627,1.3540042520882167 +0.028461708288193444,0.13807626126816736,1.3783261102853974 +0.021969383418326938,-0.21390830033730635,-0.24158751390354866 +0.24211985939124475,-0.18590855916724647,-0.18752085845999564 +0.596671033570121,-0.08360655941112996,0.09094093649846396 +0.12344090383896189,0.13448365814446173,-0.17535710927265769 +0.16262599091829388,-0.22146300461282079,0.7615869194316318 +-0.20440741380367103,-0.007997695130892546,1.4103725558466529 +0.6026069703259096,-0.23922811434063065,0.7005216897113505 +-0.23041744722914137,0.45705008211859155,3.9371639387207393 +0.7564709262992901,-0.21432428703552386,-0.15477248362536883 +0.7152742951699569,0.6128520429924138,0.39567569455702456 +0.14004523196273283,0.31724226546932155,1.58205265431074 +-0.15032573330156612,-0.0583908947854242,0.17791841043693585 +1.0944293687782782,0.09990016953784236,-0.017599829296371078 +-0.1889368457721697,-0.18596167613502343,0.1015880801907279 +0.02202548929994147,0.2287489824467227,1.2319358429484677 +-0.12899710522506633,-0.18850601512576926,-0.06895064166622797 +0.5341046695575723,-0.14190041478668214,0.9379579401037752 +0.48562923163555793,0.14872465890475167,-0.13092136554824807 +0.07043765992185802,0.014877328882676844,0.8967189753117228 +-0.20057126671575418,0.02384125283273164,0.31989412289469343 +0.934484893659131,-0.1459077659158407,0.021460360246824794 +-0.2205289592590195,0.02946632449985881,1.060521358858509 +0.8285212505595199,-0.15314886282012813,0.8806811878131093 +-0.017565825047849842,0.15899712008464584,0.6010529823798368 +0.2684310301077595,-0.044211850410423165,-0.020668117989569412 +1.593492659872862,0.09446345473150919,-0.21495542743171803 +-0.0412930815392929,0.06332444849013791,-0.029660950622956594 +0.0475267449234561,0.0017852765434815954,0.0751362547990741 +-0.16449897446488568,0.4174981324077519,0.6604215480535368 +-0.18175723520816967,0.34727137889100934,0.8777357389689371 +0.1459788414627997,0.9412782216989524,1.3252106377300383 +0.11003288323278926,-0.10437944782541408,-0.20368023401050778 +0.22162615306106798,-0.17036022678289942,0.23621848913514742 +0.09565665866833872,-0.032548566122144434,0.938981735494254 +0.38411925612469744,0.29264235992567234,1.6348935252192003 +0.02921501001571547,-0.176508310755372,0.2765817646338121 +0.2827713807434724,0.03267936351586381,0.35277503218120043 +0.73915357616602,-0.1862212469979835,0.4850586787652159 +-0.010234467793960589,-0.18763603091098666,0.8745954814639836 +-0.09721089339680067,-0.0004424504515233296,0.4245948373267632 +1.7040862525124258,-0.2360784350815026,1.5352341107717953 +-0.1666938245348553,-0.15400187501600476,0.5750710553937661 +-0.09156830037789604,0.23973587935227808,0.41848736346141546 +-0.15035475944672205,-0.22131970177237215,0.17546230783710515 +0.40245083060235654,0.4561430840206251,0.5572217587374527 +0.9907532152745682,0.41588313547465605,1.920513301734732 +-0.04738854304667886,0.04067577655762761,0.08078011283648062 +0.08024837997205181,-0.0756275263197595,0.2668630099839051 +-0.12517928851223858,-0.15885143329764634,0.1120454401322612 +0.06567661724913271,0.050480601958885485,-0.14129237783605303 +0.051270884419700624,0.11306799610979468,0.3242969550931757 +0.17067275182695474,0.5974685379397386,0.8249391583671446 +0.37969743596577954,0.2752713284163165,1.3532423521031134 +-0.17492724527422854,-0.13867987121650593,2.568979046938252 +0.21651472910510644,-0.09106792310671669,0.7304377460565249 +-0.1784257767703803,0.2623120963668708,2.007439009980022 +0.39712229010906197,-0.03808294503873896,0.0712507533802984 +-0.22157478622671975,-0.043961546617296926,1.2046226453983435 +-0.14380152428009801,-0.13732492382698894,-0.1531577268884468 +0.11655704752343893,0.8520165927228398,1.06900559499773 +0.06684077809500955,-0.24029649403173642,0.6057824922086725 +0.5763188425203355,0.0054869990317176764,-0.204899969393435 +0.10804084436855188,0.9067276096034624,1.0673342635796141 +0.3680871015577365,0.18475750308874866,-0.2324916910580907 +-0.19891757146556616,-0.22391319581358396,0.15033679991409016 +-0.24159714583688016,0.07538471482289277,-0.23498146304256887 +0.5155478002273212,0.20568308416494285,0.7701040798151586 +0.07542078841080424,-0.15647729582056197,0.07186472914688913 +-0.18101644786331655,0.9393206214043841,-0.07593071599163417 +0.059950579666341874,0.0507886944596983,0.2149951746374285 +0.5764764245665528,-0.14195146555551308,1.1549130129492586 +0.18166898926119573,0.39698447978279183,1.7832627740647444 +-0.24571384699828253,-0.01849190919184332,0.9422649160881549 +0.009567080019378671,-0.09389628214190174,2.2014041512450704 +-0.1490403194792987,-0.2286979153930817,-0.03688979573062007 +0.249890065048403,-0.10247905921247413,1.1174262705633886 +-0.04827803673858477,-0.12497427550413331,0.17080699192816068 +-0.17209801124632584,-0.005777531767379496,0.9630861308299863 +0.09748044602012101,0.2382762663335533,-0.11208742972609795 +0.8465195105636392,-0.16011698191449847,1.1546681529563523 +0.23944391873862908,0.07500703111128809,0.5158016436448626 +-0.1131072447406799,-0.2180792816740537,2.8162301149019093 +0.18079588813008945,-0.04913587700205477,0.45773223431703924 +0.8584764985014719,0.15936911464324915,2.775162752254629 +-0.13176136037090375,1.0297927246050256,0.25045810265114976 +-0.15981678519097875,-0.09123809829668716,0.896278487727699 +0.05587010302901263,0.0028865691101578883,-0.04764349928592243 +-0.11893169785850374,-0.10419611853035698,0.8841432927457353 +-0.10126498171790316,-0.22803849609495586,0.41453485907810894 +0.8126067538412947,-0.07204233788244224,-0.11093384081334678 +0.044061226430786304,-0.0087145985266949,1.7472215953048826 +0.2703550242254713,-0.2248325698289006,0.24457641038837713 +0.7795661049668567,-0.17589966010005093,0.4616340653881882 +-0.1930625078195205,-0.2275484733755812,0.45174203871061624 +0.027447484811261913,-0.1748017912466185,-0.12941652520410835 +-0.0005714015772377845,-0.06006011184419416,2.0247962096582306 +0.9899301284907838,1.0254155982895743,2.713748887111715 +0.8478683708730084,0.2725477151754109,-0.0631280724245322 +-0.1413395676721218,-0.2181582110178632,0.15989739681504261 +-0.0537104593729891,-0.2344520296754996,0.5356779517502619 +0.04949185824331698,0.015493489966794005,1.551037772032532 +1.0067852043880117,0.563969681717482,1.6406863846166881 +0.6305282662074548,-0.15596270020045652,0.5076518160276077 +0.3008447739748389,-0.2487144130569945,0.43326601403639686 +0.04595682183743033,0.0020045384812422684,0.08208488176577239 +-0.15817181815266534,0.2997310146509877,0.18235788232140876 +-0.12788568858521732,-0.058416441048557644,0.9990273701264369 +0.084137683530988,-0.15464331980186774,0.10801302989820988 +-0.1855605252201013,0.11951675457052846,-0.20773633020029147 +-0.09238747522231247,0.0951526998938797,0.7620393772868403 +0.553669274130297,-0.14974167607140504,1.0115416120859835 +-0.13090717210818797,0.36332521007179885,0.7635798142205996 +0.13349641446233002,-0.08314077518294646,0.28665189921818335 +-0.06369796929263535,-0.16980239936080105,-0.0485675362071144 +1.0793823598301675,-0.043664676086667714,2.4341057274537166 +-0.15208336132871053,0.48688465838387873,0.02500498283026481 +0.6501520474309601,-0.10779852709220639,-0.05216494022331647 +-0.04689270655894495,0.22162924311457866,0.04031471961563288 +0.11834294531161493,1.1540528783214004,1.3808308490376013 +-0.2469038458829142,0.031237454383450936,0.17755974904548594 +-0.20375700145465037,0.1483833115207534,0.8715437726141464 +-0.08453075947405961,0.717965994020275,-0.23958603661204053 +-0.20698904937316587,-0.15135366517733484,-0.23037954917579492 +-0.11582615281203928,-0.20122304886348824,1.7380679091291296 +0.03755885312700541,0.04377610456105502,2.4843481272535266 +1.4619335453183635,-0.23046161381825672,0.25221694338175427 +-0.24774917575065344,-0.033907032818435545,-0.006223377390861373 +0.7049639194234588,-0.2206817264406206,2.0201472108411886 +-0.10863551872187949,0.6328948876107486,4.237905601759825 +0.5767447833474277,0.2856414258484615,-0.09072482801055837 +0.15103680037720058,0.995116110549517,4.93075914788322 +1.384874637439564,0.33607775035596,-0.15228804282910022 +0.0505319748661176,0.03767414460048174,0.023790222923377957 +0.14301832477200993,0.7030112629633978,0.43761409772616233 +-0.22735601689187201,0.4347538913166855,0.16021279137616157 +0.37575664762951677,-0.16019924189108792,0.2094200593756641 +-0.16033586376854891,0.5301266823073824,-0.061778459635690286 +0.19939215958256284,-0.21535787652088462,-0.23076121043127368 +0.4425754147470252,-0.03400223440025388,0.16951098947993776 +0.6418168478949005,0.07790954457781152,0.17380164297427658 +0.09224031872733479,-0.2362005967989203,-0.2220358778116628 +0.6981982788098113,0.00504260065168155,0.0937051850054264 +0.2296809230695101,-0.21765630141372405,-0.1695763901214561 +-0.1007029532570983,-0.010984410713053366,0.10130162804566012 +0.344417748718689,-0.054988959593311876,0.1528202715512325 +0.3529702244704279,-0.08659598313099309,2.1575914988323266 +-0.041704474188670626,0.1095593187239074,-0.06484725116856607 +0.16387408551183508,0.3522542126112207,0.1562830763104428 +-0.17255697289992566,-0.22618397377054436,-0.14046383707241453 +-0.13347795071454094,-0.19350103503039395,0.259804267271486 +0.9888898461640123,-0.19394599778887595,0.33097945689129127 +0.1562764302384529,-0.15484004837064155,0.5127354308281402 +-0.09031373284188621,2.2882739346328425,2.561760537732833 +0.24357452489940373,0.6525870323993148,-0.21393418982362772 +0.8957239396444854,-0.15571867793574043,0.763700668618392 +0.4178071671214192,0.015656856220363224,0.708530301115415 +0.043413489752710255,0.06097905589968511,1.5821945792879777 +0.6266337268006934,0.2907621853172856,-0.24074170875515327 +0.01930821234895197,-0.0330443659751343,2.855655877548918 +-0.22283575714144793,-0.18690659330232745,-0.04666338975395537 +0.9473315036230603,-0.1870832237968601,0.11830116953454167 +0.006454741538354791,-0.22981172763340657,-0.2427155041562044 +0.002641458002140662,0.39121116400954314,-0.15722033533916024 +0.38177894825966197,0.41944976217812624,0.7584497562282515 +0.10214928194018902,-0.10920906925888962,2.9800928038305248 +0.157562041370938,-0.12912433226460054,-0.23707114187894937 +-0.042668685790298394,0.07663537544078536,0.19668386253675296 +0.747737685699425,-0.07388455150322706,1.3708346418630093 +-0.13948608776995172,0.07790882427219725,1.7490665066278195 +0.6963397786341426,1.0554741708084399,0.12418054761165004 +-0.16218281193944256,-0.017220135261086095,-0.20183258351798766 +0.4637986847561326,-0.054837717515067524,1.113090289767206 +0.19086794885372277,0.2838147643153851,3.0409496679034786 +0.3320386849970798,0.15420781281459106,0.39101925850565045 +0.48620191764770737,0.5000212926961278,-0.2201444884211588 +0.2440512482519624,-0.12226153896547048,0.29662843189096066 +-0.22451251644903358,0.34637384045408326,-0.149920480806728 +-0.02926509013222714,-0.24346651239084238,0.7068360822999787 +-0.2173197800143427,-0.14284793496894868,0.08648141148053828 +0.28856101209443463,0.3520655394911715,0.03632449606366711 +0.013272458188777647,-0.17721492182093415,1.1528210417703229 +0.06328060479253833,-0.14710933930900466,-0.061826194463302925 +0.2416228027579247,-0.08029373852550861,1.5413553802548297 +0.5897489961891168,0.12623997117064462,0.5130409562888301 +0.7645309807666683,0.36730588077168114,0.2784526584547261 +-0.1199073901619673,-0.20378566715285604,0.2451215069195687 +0.45228714122944547,-0.2107879131663681,0.02448578427521203 +-0.10041573298584425,0.06841771057796092,-0.21547325593948213 +0.11736630219633826,0.04463378987035804,0.2216631614538227 +0.011440178331032946,-0.08648322655965729,0.20781126311747505 +-0.06368707479065877,0.15183617052004927,3.389826472428486 +0.42403866621079433,-0.21493872934727448,0.5487756417885222 +0.06802953549614005,-0.1892689094384019,-0.0418113133482535 +0.7523935786983209,-0.04830636828194937,-0.22806919175878407 +-0.13512417459861964,0.17612737295679926,1.786754935800253 +-0.24910567206430556,-0.09057328860893801,0.6998551801709948 +0.6428711543376651,-0.01309849948779268,0.3630561376412865 +-0.17333003761380494,0.45531741921963287,2.040717991919836 +-0.20539363246746484,-0.014180510188138123,0.6775425463444561 +0.25846271639373786,-0.22451950680060226,0.36990353138910004 +0.004311036524432432,-0.1806546087819373,4.655128721985689 +-0.06561396121580726,0.17372571215175447,-0.14186876269464754 +-0.2366890408163836,-0.12529667953462043,1.5729130604543458 +0.22090247749699282,-0.05641993585047189,0.904573452099517 +0.07428929261281586,-0.20138981045642765,0.908189144727664 +-0.06719578127536427,0.45565952208919,-0.20286804796815663 +-0.1771451988475995,-0.16813331252746994,0.7975729889377339 +-0.21302905173468875,-0.13101585481997147,-0.1526710782691995 +-0.14502202934084846,-0.09420861812543438,0.14216103994390905 +0.20017024079513984,0.401110693827219,0.04705023462283159 +0.2659972646120601,0.14186642504132124,1.0440411140332595 +0.14461955793350606,0.015959579453665163,0.8466986550036284 +-0.13887634709107416,0.09754750770700954,0.9504066851441608 +0.1379443330118979,0.1190696011273143,-0.18231631287763622 +-0.11382988766156585,0.2412407126457115,-0.22953885800231316 +0.8016204871452304,-0.07522765125066971,1.0674586204414571 +-0.19896785336194064,0.09787156054724916,1.457479690427836 +-0.17449051947824457,0.08085803355084364,0.30702575755111783 +0.5728114879861212,-0.14725365579816085,0.01931895738347028 +0.8821768728123456,-0.12723246035183886,2.3638598686881465 +-0.019098875791731862,-0.06743309131427067,0.9053546883596031 +-0.2060152882984044,0.5188302737437357,0.1866343842844354 +-0.22579630579075688,0.1688191480692055,0.5332248430990542 +-0.2333041862525561,-0.1947457796987794,0.28248447673344157 +0.02945064420723781,-0.16218266473689952,1.2569761829596267 +0.4055246339632286,-0.1851575515735693,0.44441921717028554 +0.25473798104319767,0.04327829793278298,2.0406826275561833 +-0.022164442030867176,0.3110434885165042,-0.03494826489078237 +0.4260910116246498,-0.18013683249432189,0.08143756998229262 +-0.2230321044703394,0.3785876216111048,0.0319354837208633 +0.5146590425700592,-0.1691887839200955,0.577614359441643 +0.4999851858578096,-0.052592531120278785,-0.07482032016056572 +-0.14840737726147823,0.13746385231486163,1.0304165611607732 +-0.10279182038289242,-0.05387849112448442,0.2000466469550607 +-0.1303899475945108,0.03887916851853718,0.13982530843220847 +-0.1376484492930974,-0.2195184051595866,-0.1774829096848124 +-0.13784554884848066,-0.22203750849776185,1.0175172171400901 +-0.22760143563281687,0.36360506372795964,0.872558012340356 +-0.13296324158876247,0.17699321519177913,0.05356058317821216 +-0.22704918898412707,-0.20632929406873743,-0.17573586908893335 +0.7062025578407296,-0.18361734277513386,0.02410196139537657 +-0.13782465097719684,-0.14842105827252505,0.6005813805366242 +0.5509251377640301,0.04175531371697183,-0.013985295002214432 +0.9436644114779154,-0.17426835019468906,-0.009413012457497455 +-0.0616938547625934,-0.059300881630809904,2.0094396136915664 +1.264969736649134,-0.034304678447083986,1.1976943227256471 +0.39101515638936224,0.1601205104926235,0.12964072058474402 +-0.2155784030866718,-0.010691680291891825,-0.08626666375735492 +-0.02862652257587947,0.018575912765453118,1.1934486111352354 +1.1877257876781224,0.7688160083128075,0.3194098034191498 +0.24802490779146874,-0.23930239627811062,1.421311331160937 +0.7093107589718214,0.3041134349062824,0.07600847336490407 +0.8595180005661076,0.21500841876756438,0.2517406355594288 +-0.1640049387343347,-0.19806737497751986,1.7233041321759492 +0.27538975083898487,1.1889563417024767,0.009022311605566324 +-0.08074228397871733,-0.007960652103436217,2.7117744408182314 +0.3599504919114963,-0.13374171348203828,9.216287888563768e-05 +0.2056380389312804,-0.24684776380952209,0.7484369990384053 +-0.008573389351308941,0.11253825546581381,1.744012194557034 +-0.012528771466951555,-0.12848688307863282,-0.07379286083826433 +0.22977195440285697,-0.19241584129048428,1.1334193507988013 +-0.07591648110816837,-0.2015693418668762,3.817984441324378 +0.22258194625581113,-0.06470220134914026,1.2451632100131529 +0.17603650838169166,-0.2068324224997384,0.2845799546870714 +0.15589689355071157,-0.11148050747911659,0.13364467011252879 +0.20771196515966028,0.7685344056940362,0.88586557942489 +-0.1334330104991706,0.39222068591112236,0.5374929684890489 +0.7884050460312011,-0.19360442245067555,1.0764652113206368 +0.13709500971393634,-0.15140955996413974,0.24750791433282626 +0.5891598956664115,0.47504205255640697,1.993717894318316 +0.6170963949070424,-0.08288487488969437,0.47056621966442913 +-0.06438030181219664,-0.1459638248916038,0.7957028231291832 +-0.17624639349300425,0.2080580187373201,0.34425505173636084 +-0.13539221598607998,-0.2436932743712272,0.41014997983244394 +-0.11721912263374462,0.5855135166775066,2.9397900089367703 +0.7218513155292413,0.010097534255158191,0.41395081148123947 +0.4659418943701693,-0.15137953360549444,-0.17291922195227852 +0.5234500747817706,-0.05170818799722829,0.485918008308896 +-0.10935364191299687,-0.15305714050212865,0.2240730663043365 +0.4633360526346092,0.33447978595164296,-0.2139297816878338 +-0.15511554688651708,-0.11696469135799634,0.42487705116305063 +-0.22605119209319818,-0.21150770367892058,2.960378195307575 +-0.22854080241256344,-0.10140864384266479,-0.17036986841190407 +1.5539618250762448,-0.1540357362825226,-0.10863525410048314 +-0.08031879784245494,0.7896468160836947,-0.19414069553625612 +-0.21291853398289087,-0.24109416162812025,0.8231484291866698 +-0.05095592798674867,-0.22316189736678588,0.22623452618416856 +0.05848308206021047,-0.154282449637605,1.311377877131436 +0.44058666776674005,0.2651647916973918,0.0139981910861805 +0.019637857755743282,0.6406250229597692,0.023300189044169584 +-0.11934937594610961,-0.1480840117534334,0.4107268720949351 +-0.08775316351766235,-0.23716932063510038,0.1157409042332424 +-0.13828996695338003,0.24815288112574746,0.8567050650970416 +1.1855427062734754,-0.12082520604858141,0.005152783964364582 +-0.2208510585085649,-0.13078191550869375,0.06787319046246842 +0.8546006558293844,-0.08485509709587494,-0.10223992045918903 +0.444004830387453,0.05081625707571941,-0.022664066429280427 +-0.11152928281491173,-0.18073647610844895,0.026115455619803996 +-0.15957820178481158,-0.1947447133657693,0.00044623214668759736 +-0.2039001723112886,0.15116968360997868,-0.08976751495550445 +-0.03243609591251395,0.2373534017814466,0.4923120218666377 +0.014938240687525695,1.3713397365599092,2.558263836681039 +-0.24231479387250568,0.0928466107244516,-0.16649532400761496 +0.1126849742714966,0.057046510293347785,0.06717755251231622 +-0.19862797511651917,0.43550375700470356,0.9445279700004505 +0.5106242610285908,-0.01173595779312539,0.5187609175192944 +0.11427347448769959,-0.04353146414542386,1.7906769300636332 +-0.12124234557065394,-0.008308532372607313,0.31338588567643555 +0.24254380337817483,1.017190432128087,0.5423247043481892 +-0.014852518030967932,0.22778928193965436,6.038866425043209 +-0.05432898618630072,1.2635095795649005,3.487225832151791 +0.3257208194005513,-0.0537829644357416,0.28948844002930063 +0.4030887591094562,-0.22137526071931762,0.010418862030568132 +-0.04507676837076485,-0.19920562457023033,0.003176610648882361 +1.682420686869926,0.22992677250604915,-0.07030739986952603 +0.23530852601769453,0.10655655579657414,0.20749340913237962 +-0.22577391146211298,0.5951965830991673,-0.07123220705045974 +-0.07313700205014312,0.1859704604028306,0.23395273908048886 +-0.2346103729864776,-0.20751597547678158,0.11431573664728117 +1.2252180042410348,0.5887726680237059,2.3304287398869437 +0.13174697501301408,0.1647569807977265,-0.08128301048158151 +-0.1586427256067593,-0.18201682162812646,1.4091010749724973 +0.7209114318218689,-0.1782034072684724,0.3528924070371525 +1.3591708725531435,-0.23935864990678865,0.25603240200483646 +0.731766368255752,1.7845168256822124,0.07094407707812128 +-0.13820466235036155,-0.19968884402191808,-0.1889959128448035 +0.47930402522939053,-0.2496125571315436,-0.20314190486467723 +-0.24607754902259757,0.09866332878470208,0.12470917151767497 +0.06119133513555364,0.43274143039031365,0.5680468717143204 +-0.016148131194613446,0.6305889838701818,0.14239095504221927 +0.6547518938739555,0.49742486767646177,-0.17223785377093348 +-0.17622030916755166,0.3885414457924905,-0.21101524348158898 +0.12376633966646305,-0.10063581116976614,0.1890767825595377 +-0.19522411125043407,-0.12427251986510185,1.3693007831202528 +-0.18304358928827902,-0.2244647766667587,-0.23125534366544387 +-0.200860107695676,0.1194537592139171,0.6695865437473218 +-0.0748693654301513,0.13049251626463443,1.0421993391291748 +-0.23165725807181387,0.19627939217231954,0.26782649583008555 +0.11321128354888388,-0.0442737565693721,1.0293981720792826 +0.20263083214712735,-0.06264648789115823,0.1810875112431269 +0.6067231553823049,0.10313404968458728,0.6703805657732641 +1.9538097054503902,0.37308157818821186,1.081252430278687 +0.6072697325351695,-0.16262307559010108,1.2040790083705077 +0.7042895208828612,0.5218918108037077,0.4637887685060488 +-0.09602307306722088,0.6816215682387124,-0.027619195216234904 +-0.1280403581862705,0.1015483922732533,0.650564619788067 +0.3089965942235683,0.29194322438433584,0.8719625079986837 +0.012794732836221012,-0.02406252753077684,-0.21074962601769087 +-0.1839288828048301,-0.0311621061012482,-0.2035702155574033 +-0.06428317755347773,-0.0975873860340454,-0.07901128274904531 +-0.19144028041304054,0.3079344349965004,1.0876110714433331 +0.8475965213127361,-0.11990775537356471,0.10559368694383964 +0.024334539523353016,0.645921805381314,-0.010310637716253734 +0.13822829551685534,0.3413094675689019,2.7612535772572135 +0.30443104646403885,-0.11526559820905519,0.35239065966785044 +1.5690527473542613,-0.017784674200310963,0.2804105195294355 +0.3410442838162706,0.3101685143987465,1.6014870007330169 +0.21911490279909207,-0.05538966910486032,0.1038327166515971 +-0.1730504841191593,-0.09038300459524401,2.777638890086159 +0.47342605644988955,-0.017759888459684237,-0.09169266815200713 +0.5149898694394128,-0.19332432273190436,1.0545745888421905 +-0.24179649965573477,-0.2179307929030309,1.8390183036852368 +0.34732763171513126,0.3044800425827272,-0.2049480320335781 +-0.10705837396589607,-0.11223940128136142,-0.06436054698704058 +0.1959550131019981,0.4309457581453461,-0.19758212453444374 +0.3004902562029408,-0.18801580037572985,-0.13167793374330922 +0.5767365493602218,0.14666884107084693,-0.089213677716203 +0.034422763266571954,-0.21281682531546106,0.9439387505892198 +-0.23730526054032497,-0.10143053226551829,2.1164545782636845 +0.7923987048401315,-0.24509077348786465,1.2849159826933465 +0.22151261148960227,-0.23035874218426847,0.006505779420005797 +-0.1106275702306822,0.36520889252500544,0.931673188522949 +-0.24989269100670808,-0.22416988577019323,-0.20257521488798122 +-0.21194460503908666,0.9939418567700995,0.6291687313165647 +-0.14665188778583366,-0.16443222562946475,0.2883575047404521 +1.3575208434535657,0.2873584779433551,1.3120557280806993 +0.24253821535874637,-0.00296444926879208,0.5885413453669889 +-0.17233603787960025,0.4215149810781621,-0.007420684046782672 +-0.017520058468672134,-0.137549276550054,0.05687113380090636 +-0.12224902463091214,-0.06770352303442115,-0.17328755804699153 +-0.11252904524152788,-0.05368407432586661,0.5370028602136041 +-0.13704286898585943,0.21173946616796163,-0.027859398798389362 +0.4839675170982862,-0.22588158669764202,-0.20983321694214963 +0.385921701577182,0.12250367987774657,2.143184724216801 +0.06080789621307153,0.3557179479023995,-0.1108103072587324 +0.5498126312869654,0.23446695191976014,1.346695439216185 +0.3024757934333392,-0.211223421387913,1.0821596049418127 +0.18166374305136151,-0.18162916024915113,-0.08705182286199226 +1.35458593048155,-0.21814898851167264,0.4229186608140305 +-0.06077463474141642,0.36308907395783463,-0.07740183368893538 +1.2856356833463534,-0.11243210367122944,0.37997370061997104 +0.6744190562345566,-0.037152569250909234,1.573191932573978 +-0.08851919592166702,0.2480213196739689,-0.19024174706836708 +0.3218766481523305,-0.0572330418094269,0.35577049457069976 +-0.2250309936525817,0.028215437854028136,1.193833803759329 +0.5923747611907854,0.621730232510346,0.40712534294988534 +0.509221469976291,-0.029713985259187253,0.5110138623406236 +0.11984316642745252,0.16753238233197992,0.25435446084650637 +1.078415941878911,-0.13961413783297894,-0.24921832607255773 +0.03212812304251206,-0.2281216021735295,-0.015587559094245668 +0.22208446079996613,0.11890209220780124,-0.059140749194780906 +0.6615964539267295,-0.14256489878524925,-0.044749285946254186 +0.13715824605503868,-0.1250552883753106,1.8347423509487233 +-0.24791173627797822,-0.23214989157382568,1.668766258160871 +-0.19729876304212834,-0.05371297622604221,-0.24805060167333362 +0.0009295256780056382,0.11163075403006101,-0.13377889360813083 +-0.18009807469866734,-0.17809831046864016,1.3647143787453568 +0.11351414089316442,-0.19575531022073556,-0.04032419446469038 +0.1825583898001571,-0.13374869088146485,0.5903894721821822 +-0.19424652462438743,0.35145932616765785,0.3263476593572072 +-0.23740607058166538,-0.12637380602606185,0.2648523008196426 +-0.2397759109509012,-0.11585179577889859,0.4047647722728386 +-0.08512702149618998,-0.21572394601300074,-0.17231340471655754 +0.08313582623660415,-0.04777169991289493,0.20702160087442845 +0.39230761033759287,0.33017588438349255,0.17510662927528098 +-0.07652268103434715,0.17607427811712484,0.06404412752055538 +0.13101599245460704,-0.09768918924968442,-0.11465913917021758 +0.5722950966766075,0.9045539190457428,-0.09748484638794502 +0.3139767729625712,1.135244402247919,0.1359323621225238 +-0.08230091705924639,-0.10067437096390236,-0.07422967426906596 +0.24324812555446362,-0.16112498194594088,4.060241954839597 +0.612985675671767,0.10312102754288494,0.03336171819757433 +0.6674543348651122,-0.03681718012489485,0.602771722034472 +-0.11839993490430176,-0.19440043957837017,1.723634262454331 +-0.22919213275326525,0.841639533446707,1.6392329702395132 +0.46662800025827866,-0.14211943445398,0.7491982013569225 +-0.177325599870453,-0.20727725747639525,-0.08651938008592519 +-0.11363898982395257,-0.2082776345771224,-0.19760548979487608 +1.3835178469093699,-0.12643359166415008,1.2496565319992952 +-0.08669202220520156,-0.09354783381576817,0.9619993026142446 +-0.06182648706300217,-0.015455825321854438,-0.21358762379492424 +-0.1830908931543206,-0.10775066137105951,-0.13786665248799765 +0.14208926997298937,0.03828905846830838,0.5930658455582907 +0.2375721783531502,1.4272207511879813,-0.12686661161700047 +0.7688664277968282,0.0724954216488784,0.048681434091869535 +-0.24128139783417085,0.11427995297582144,0.0025456353202377713 +0.7606801888943591,0.05273346783027738,0.21671097146342844 +-0.215565106830208,-0.22440442547639206,0.5275024092864509 +-0.2413233390488653,-0.11769615854255824,0.7884744999229456 +0.5089681057411726,-0.06281416568002013,0.10860689364506038 +-0.22731998293927744,0.02426002202148564,0.6945738530500484 +0.7393415002441773,0.9435863431858436,0.8961523028953675 +1.0270293091718055,-0.06778114634352389,1.3014057932307532 +0.1135211975778539,-0.016761590789421688,-0.1551383814424746 +0.042473099975270656,0.10717706955582523,2.965813570479261 +-0.22149858117457386,0.12062231131065337,-0.1493180515073341 +0.14662260531866683,0.24781169388773827,1.7672459265227172 +0.052246541211018405,-0.10603127326930142,0.6763681672735165 +-0.01178563829228177,-0.03837310706445099,0.21922757008067262 +1.318796055164349,0.39116650773308825,0.40168362203784025 +0.7108502628131718,-0.20713836015721604,-0.15520031412189927 +0.12482108685743842,-0.118622504202782,-0.01930526495433965 +0.08271574221489314,-0.22071337421977433,1.386157062557136 +0.035090871847332616,-0.23290693575672167,2.2065693164115125 +-0.20390351633241066,-0.12970122298443176,0.6753709335809165 +-0.11747708778910476,-0.11296392233268154,-0.047684999172027065 +-0.09964323768547276,0.26668378032740514,-0.2275198392033231 +-0.09468369885500838,-0.19226986641706734,-0.04731094763893684 +0.4203236847053804,-0.02271634705897352,0.32895913720850456 +-0.20910652787348227,-0.12574712997598325,-0.04506076058178257 +0.24073623110192122,-0.2088904827032656,3.415508556428066 +-0.20708927579340225,-0.07681168966288818,-0.06952711773098019 +0.010441599913412314,-0.026856091219236322,0.35084243418464023 +0.27782062862064494,-0.2166941649428055,0.08706252805542758 +-0.1258804342314027,-0.15472039312542835,0.5301782276214426 +0.38190015992934934,0.4179570804859546,2.622624438217276 +-0.06149291284856004,-0.23448872210691304,0.7905214065220243 +-0.11984050298413237,0.9345985026747323,0.022628343383405747 +0.7052478902775787,0.32370884406483236,0.12888682360853365 +0.368985380619408,0.32396847933453465,-0.06432674402797656 +0.07058771955899129,0.09311122398234473,1.435686225110737 +-0.13591845907323197,0.3390112228356036,0.40507403517194207 +0.10082108356786962,-0.003932636284162155,0.5221921849901748 +-0.10666321951937702,-0.17271506492072836,0.5811483083882817 +-0.24495042555545024,-0.23762972431958307,0.22422211189738706 +0.1727213996073088,0.29254843736184755,-0.03450139959233697 +-0.188459330912785,-0.09594256154260339,0.10199274941651126 +0.6012163453743542,-0.174474279577254,-0.06171810153304569 +0.629697017475115,-0.01019147646541066,0.4069088374280133 +-0.04167238890702646,-0.1398192972642322,1.1984903654761896 +0.2858701560932878,0.18465928939797194,2.5481553777063706 +-0.17586935137511117,0.6805856099834816,0.8226406016706722 +-0.19290411700694932,-0.006844148777445991,1.068309077773584 +-0.2093485627580537,-0.10720910392591326,0.8176160085935671 +0.14313031102125,0.11306276013175348,-0.14693562920289105 +0.6925395418240753,0.3187246834678883,0.6891899437500799 +0.7454121507169276,-0.15325586806294916,0.8447885138211948 +0.531530269390268,0.17988227474325352,-0.17454904706477048 +-0.11448780348076185,-0.2025137796532958,0.22586803940875283 +0.7761425989099628,-0.07360752215940095,0.929923893421376 +-0.044394305952387164,-0.16066643619294088,0.2284944018459848 +0.21893875018995101,-0.2189558482249539,0.22341560146688488 +0.003013806611816494,-0.07188883705175134,0.7599728026414068 +-0.18053077971857262,0.0017355628140590662,1.0141232630137023 +0.182973975712308,-0.1296367237871251,2.2910515616940583 +1.1811682485579125,0.4279850359679265,0.46549049002226894 +0.0015615824915860554,0.4944791310086275,0.3937967258462203 +0.3569826765066245,-0.09703800755473421,-0.06403727622568892 +2.1826380390432396,-0.03561815355943895,-0.23350731266454344 +-0.18652807241515657,-0.1679178708823574,1.1623449022609083 +-0.05181133088403736,0.29291804199266525,1.1500189449628258 +1.192797921685031,-0.24430371948325216,0.2830325494413546 +0.02205032677640878,-0.22627599578010318,-0.037768397434932544 +-0.19917875208252772,-0.13723584026784713,0.6081178032127473 +-0.01632165115093359,-0.13544241257853926,0.6060914273083544 +0.9509600133354259,-0.1941591031243542,1.458735601142502 +0.9903753234999202,-0.07794047350937164,-0.21423305169150356 +0.7537429560709654,0.12984866493251035,2.231507668153865 +-0.1020513189510659,0.10382526679776649,0.3214439912313183 +-0.11831822148748591,-0.1336468146010142,0.8461095400307985 +0.36282478581406097,-0.1838713545956291,1.4283219585707416 +0.4818831513620676,-0.06941820269904636,0.04486376909275225 +1.008834901301244,-0.06694310450364852,-0.0076179761647625355 +0.03497084169291509,-0.1969841805793361,0.048440076124110554 +0.30076093248068914,-0.12746458553009737,0.6653541927898284 +0.015230963650659457,0.007417222770333354,-0.16737032573000776 +-0.16482735180732389,-0.13145458362643164,0.8713372061018791 +0.6105270686653019,-0.2494636568947638,0.5296110970783693 +0.5344868397878209,-0.20772703492229228,-0.1643013719215583 +0.6372244115219153,0.4523564475857297,-0.24162871184612766 +0.6208495109729953,0.27678779403541753,0.43194527094638324 +-0.15838870790541507,-0.061657142494387834,0.03746679401054509 +0.12129869917677555,-0.03481449041776011,-0.23058440518351794 +0.2108780159732918,-0.1953523128335169,5.534593716718421 +2.78477984097234,0.24597174815743034,-0.03385089132689098 +-0.20985485496795242,0.588319702561157,1.2896003589617473 +-0.1930018497265062,0.7846011077994131,-0.03134989171924388 +2.0752970405066176,-0.1542373677437771,0.023008657703961988 +-0.2312230862263301,-0.24352209166486352,0.3888554716246235 +-0.1352450896315336,0.36928700463301034,0.2042511986567045 +0.5249343487554571,-0.24903529344405437,-0.04022271046839257 +-0.0694855264484753,-0.23752171683488657,0.028354126902749466 +0.0626756414895383,-0.23355154119343313,0.24000916172044712 +-0.09163617886535702,0.5043531749791583,2.198819720584903 +-0.24954710479182074,0.408469144029284,0.5876387174645225 +0.04301949069222566,-0.16263083279531487,-0.016032832856444107 +0.06215100793811551,-0.12207053206242008,0.5581185508365817 +0.14089900446086334,-0.2030091983419703,0.37446468488041185 +-0.09875353103014661,-0.197462995622232,0.6043837513536141 +0.1928077459713668,-0.03703168702206386,1.9154716707315744 +-0.09505537731617247,-0.24278186092684378,1.5191810617363533 +-0.1353750569654798,0.2565035599617801,0.8879802000840138 +0.2846394025892083,0.10013187880086671,0.8849174481635065 +-0.24858217945005148,0.28782169898787535,0.3907815489279861 +-0.0016463061777235444,0.15264703686243702,-0.07671056785440394 +-0.11456802215786813,-0.1900946154529223,0.4936349570960189 +-0.07348192683470714,-0.17374320551913477,0.8314959777924193 +0.03276237891975298,-0.14280777280496934,1.595982240133125 +0.15042826511481572,0.07277898648057218,1.7857653699695182 +-0.10722783921149553,-0.23901833014290882,0.1972463209770367 +0.457356387650384,0.13050558971661963,0.4630901025036598 +-0.051638337412583224,-0.0595131450441142,0.1355814586532748 +0.12408564340835754,0.011462684140516821,-0.20743850798358754 +0.3157598815206578,-0.17110011793124708,0.6095171667337198 +-0.20515378796020053,-0.2386826059477796,-0.15441092561431122 +0.12679041113823147,-0.13455008724550094,-0.08598273910552226 +0.2334507739439568,-0.23471931007017618,0.15454424443119008 +-0.00012006608890674508,-0.12587289656814,-0.1669147962333924 +-0.19108401621196913,0.033930788158423875,-0.0795615537378691 +-0.10040180157582784,0.13360414616654875,0.19822611583760646 +-0.2493048530882976,-0.21779430710483252,2.586523417812336 +-0.18009606771910014,-0.154439652578805,-0.23366181922266743 +0.07416124976318972,0.5019268728884356,0.9118720093560928 +-0.19414405447787453,-0.24355066755556398,1.4048702592926878 +-0.2496724040831069,0.2957273149375227,-0.07720304246736742 +-0.12226034661601665,-0.0882568592354275,0.7447406457097995 +0.20833375419651878,-0.12416311042281858,1.2773710835606247 +0.35396408680188485,0.34110816315318127,-0.01595848504482722 +-0.04391874419919925,-0.12481468275881288,4.052105247470537 +-0.04197845058401492,-0.11676744809139164,0.45122055759359114 +0.00036316112006318235,-0.16555552032927762,0.812876075304874 +-0.2011527132822853,-0.023323265715853525,1.3010171120275273 +-0.14647716844160372,0.754136605162719,0.6262232495271108 +0.08603167662348776,0.0895558394726696,-0.034115358566972065 +-0.19724369829321292,0.3389050493172652,0.2697375149934127 +0.300547439529836,0.05565307126098351,0.10353727873463775 +-0.20214565753874927,0.554582648076758,0.32560843207842827 +-0.21987962160954977,-0.01510827646769039,0.03752423876840144 +-0.17705099545662406,0.1908963973756096,0.29225657709005826 +0.4042738695020006,1.092761170761559,0.9103485403203859 +-0.2285244372891567,-0.05785441912617978,0.9309843409511747 +-0.12394151546040438,-0.08155668966288945,-0.2386044730284986 +-0.06382958813874445,-0.21061595282342632,1.12192318379622 +1.966734849443975,0.10925114846118567,1.7714720102912027 +-0.0666260731457066,0.10064457437140628,1.3891189132857917 +-0.009604113447351487,0.03299719303427162,0.7400813398110723 +0.01852549324145547,-0.04438639271967121,-0.007419508977515865 +-0.2454851830110455,-0.139625195947225,0.050034154130127295 +0.12358178146153292,-0.0722635785204633,0.4594890433951976 +0.22338205083552715,-0.2215415834280515,-0.16824674886751811 +1.378923821307619,0.22538017556573114,0.0046725926482215074 +-0.22344948833410144,0.07707718815658643,0.2243738564540514 +-0.14246702671861944,0.44147969727962866,2.587591471033431 +-0.20122978711334066,0.009006635692436427,0.9288649958421724 +0.6594733493343237,-0.004508278827135587,1.4966232086441116 +0.88542888735894,0.004357268636742295,3.180965496848407 +0.3236842996785412,-0.13159846920628782,0.4196414129236389 +0.25170805713273625,-0.06603384579350183,1.346481989821452 +-0.14994505430698607,0.009931038376415124,3.073739050948617 +0.012767283262582418,-0.08117151038293108,2.0680398159344797 +0.866135839850682,0.07369234890199816,0.6102534581110556 +0.9060454706483239,0.08438520748142991,-0.21521388032914454 +0.2560610859356591,0.09964435257658799,0.2839233451685478 +0.030096772689534923,-0.21004683566762022,-0.062018081545969994 +-0.15339843541742687,-0.2100642213782576,-0.07204289737393993 +1.2642955528406998,-0.22772864808823554,0.9110557358546583 +0.567164010340533,1.0440093075097112,-0.01737993912363936 +-0.21552797427396608,-0.17456041183980264,0.10709287600077566 +0.7101102208119123,-0.16158647764553954,0.2761220091606369 +-0.2139973852452517,-0.19433587948447859,-0.1468808541725017 +0.2923365387049788,-0.22252586037285785,0.04006411411848293 +-0.1669719273163192,-0.10187372116442958,0.743922570541833 +-0.08097385822333708,0.3435043465719283,0.8763872020510577 +0.0411436062174394,-0.041015506483045694,0.4076034678438135 +0.5231555246984647,0.3939604192003182,0.019156611406525803 +-0.21346450002427658,0.2514466769959637,-0.24255997887017616 +0.6742994216069552,0.21184442996567998,0.3183603597220447 +0.16419810241829413,-0.1374058288757427,-0.02811555721348194 +-0.14659627665017466,0.058207899364869475,0.35237972410931184 +-0.22722740583022127,0.4079728137309996,-0.23159334029326722 +0.02457914781038495,-0.12997264108309434,0.02438105627706849 +-0.18772795756204902,-0.10807794748314592,0.07068478266435413 +-0.14267640919241603,0.523535452148917,0.23285335973346521 +0.4292963239692923,0.5113167062754401,0.5133047998065875 +1.169030094205692,-0.06672637615351412,0.4563311333591238 +-0.1444409476959447,-0.07556581378065227,-0.07986313476771434 +-0.1558963513976445,-0.07302866866502811,1.1223134333296043 +-0.017105577726410193,-0.09174699966353306,0.03541892528544438 +0.16393433199369406,0.33740064534889214,-0.14143552667851078 +-0.002554309520265724,0.1114224259512922,0.8771297896233696 +0.5532189613933144,-0.1769343889794593,2.9094146959940637 +-0.0781016573974575,-0.2351370436820057,0.3255569380002843 +0.12003196700664459,-0.1976382287617763,0.6100134855943516 +-0.23182119603289605,-0.05649610990770648,1.271187298599439 +1.9589125359475306,0.26369773628275117,-0.215645497301833 +-0.06257740956839258,0.13707686984749234,0.3190914436804574 +-0.08424860398653752,-0.041852215507315355,0.3837525900318969 +0.05320809997440651,0.09804684606154201,-0.09975670758615751 +-0.020381216730619323,0.25212961263041955,-0.13026300355383647 +0.3388226618190803,-0.16093331454584445,2.0162349518622156 +-0.23511916462057492,-0.1096176261958576,0.1370934052370557 +0.1571365744649883,-0.1060286638563504,1.7837921975929047 +0.20953034295908657,-0.24721258070100205,0.30497952967095665 +0.13126526201788852,-0.003452113973998888,1.1532498158241706 +0.6778588704241347,-0.2125579093673558,1.07315709433756 +0.7476897505639325,-0.2200009452761722,1.1565985401070458 +-0.189646235901671,-0.2305519370436288,0.9176550934096213 +0.09282521678120503,0.0032698199486337343,0.44543477180942426 +-0.24927648893249862,-0.2146713041012273,1.1741571681368679 +-0.005662662770309024,-0.19601421117530277,0.18473999518361994 +0.047283182323637596,-0.23672879358149235,2.178542938154042 +-0.19040046074759642,0.06206872156868992,1.202819857081385 +-0.20670064945151684,0.23978572064097864,1.059864463243452 +0.10941598229486171,-0.23804032172548145,0.547320532467175 +-0.06243378629835675,0.6433908174008822,-0.13250199011408736 +0.363485258734759,-0.03883770784836474,1.144180592514105 +0.0030945485497005376,-0.14262929781540284,0.43528605055623515 +0.17987560857158208,0.14205997920501634,0.10051072212046136 +-0.09062808483728904,0.3626369817465853,2.217413540168858 +-0.16825585103894475,-0.22778520127433094,-0.12631483555350614 +0.2919441368203298,0.6995584177791148,-0.22942347820842812 +0.22851017010514596,0.03297378029354103,0.38992941432940564 +-0.19632531977779183,0.20790858801542222,0.20046980663424313 +-0.0067189722069655455,0.02613232509983643,1.1848039146898761 +0.4747738921331639,-0.16662094797872828,0.8864332616968154 +0.30726188174865454,-0.1281516608164454,0.48866116847889773 +-0.004834242950794099,0.19998571736703769,0.5631840086669331 +2.030750389465722,0.10299954852611981,0.7399435693441349 +0.37165507322341795,0.18543518814084714,-0.19877442850161423 +0.797680818956173,-0.2300819963306533,0.23358272871613128 +0.09459576577406931,-0.22388126323495552,0.31996468422664426 +-0.13308804113414033,0.23514149800842826,0.21659344345679904 +0.3361726437902298,-0.16970571502046294,0.5701195971734213 +-0.11880479434486274,-0.11549345901927413,1.2479078307077347 +-0.15732593990357474,-0.241411938387621,0.15941084219893314 +0.5445837475421976,-0.21102389355779438,2.870894091647415 +-0.2403941603383713,0.664570263943497,1.2070676552163089 +0.07413934252800775,-0.1328610187543879,-0.14008614208846182 +1.1908012007984545,0.4999058117203933,1.4165679769418513 +0.22512223030719936,-0.092784955988619,1.0952255403621067 +0.005626846359082505,0.07623228927389308,0.36313932660319304 +0.028656171950562415,-0.2451286754816023,-0.14275413512280982 +0.44647607262628164,-0.06329680255189177,0.12462096091988828 +0.17644220399785115,0.1460746358433883,0.1232909015482665 +-0.23341979197342558,0.08106347991283619,0.2676347090428882 +-0.1770848350786195,-0.03031736179649655,0.016744598243047637 +-0.07432740049365943,-0.20884518785097156,1.1748572780878954 +0.985322455690661,-0.008354595730759445,-0.10106339215024687 +0.3801077401015852,-0.21869770366240285,0.5533529713268425 +0.0891297724729308,-0.16353788620970955,0.8738532411724456 +0.25456294119304124,0.015353328263946364,-0.07678714864484401 +-0.11474372323368576,0.48865569787605734,0.5403820753720416 +0.06163718290005249,0.03812399522943927,0.8087921585794016 +-0.0029959021198777414,0.6579864672802083,3.490440100888999 +-0.13415786218785003,0.08801776021161406,-0.11074752265111204 +0.29618517732948524,-0.18809867809905625,0.440962848117905 +0.033875347013558044,-0.13578303134737985,0.4875886192668326 +-0.23569714543060777,0.21169897676429628,0.9810714734590422 +-0.037173992662358546,-0.15028999464209247,0.14413205789223005 +-0.2134248534206425,-0.18429699789402051,0.9808367883765194 +-0.12678224434695703,-0.01800582650396995,-0.12985808512890534 +-0.02432631620110884,0.210778918848052,0.0555938102840563 +-0.23559912136023115,-0.13458689015628078,0.7795924443213549 +0.05581336217729932,-0.05968219166912847,0.29806076649937974 +0.41742858528479176,0.34474130610945375,0.29345139789198604 +0.39444176492030636,-0.142553185101562,0.31644315036986637 +0.09822420119209202,1.1308108917819093,0.8424636061146489 +0.25498479669793683,0.20929143327513788,-0.16836091229989397 +0.07546875668873454,0.5670209773350826,-0.11449757316941339 +0.10977810116451636,0.09312925135845035,0.056689580145136864 +0.5202411268218781,-0.22477615980312304,0.23524844746832185 +-0.20594901963341608,-0.18534395127625417,0.3722885546933409 +0.061191710523256615,-0.06113814716785057,0.2884641165391939 +1.136558307333469,-0.19782954814226442,0.2967985393067786 +-0.1361108326388496,0.04240587148203828,-0.20634784953612387 +-0.14656480623352386,0.3635978781083643,-0.17868234825510787 +-0.1260295912339181,-0.1607854820140171,0.12155365999916723 +0.6545159142274621,-0.012372878077866606,0.055687656168822264 +0.27208768906872627,-0.09975681493734165,1.2648587093772312 +-0.2108359047442852,-0.23832075035244543,0.29666810231109464 +-0.12567526825336894,-0.23513902416161875,-0.12839018020518472 +0.030887589183304753,-0.11012392554846212,0.6076062713020908 +0.15959966178742796,-0.22363605714663504,0.20787716806509238 +-0.11966644356415818,-0.03964354667251832,0.7950899032455911 +0.16251998941799495,0.21730949163744523,1.4121484534703674 +0.9572826117221724,-0.23283495860208278,-0.13621451275635482 +-0.04092608863190475,-0.17477819855044033,0.3990759492532131 +-0.164589588489313,-0.14985498251277543,1.2620943447209951 +-0.06118414058128013,0.13018382454074834,0.7327384513105314 +0.34565872285205745,0.4347797799715295,0.9722325805452159 +-0.15595611852747296,0.23910146927223874,-0.10520810066239897 +0.5725577883180715,-0.23445115746659345,0.07247661587424081 +0.6190744228321288,-0.06640674851678477,0.7180471453316921 +-0.05074235810529251,-0.2112304058532058,-0.13844144197891206 +0.0705903317606612,-0.07212295914957001,2.1191811817239246 +-0.039450454052522926,-0.18810919446328428,0.007340070192979775 +0.09524057062688301,0.05987829348732476,-0.017849008687564227 +0.09001241468522275,0.08385352499419596,-0.08742944568235356 +-0.0402112997890684,-0.21863492989130104,0.06852782325001255 +0.9204227329598089,-0.2436673691313955,-0.07200243288848576 +1.2144503520909564,-0.24120326916482607,-0.028638152152802243 +0.6023941837586191,0.38429270204253485,0.5605424390860234 +-0.12599210742330466,0.6612464472410918,-0.12220234617644093 +0.7235426714542186,-0.24332657150948642,-0.19140645609288334 +0.4612967341920271,0.5328180749742185,0.9941907521698192 +0.005135605676068855,-0.0007008905092325268,2.4802526913128258 +2.2239727677319903,-0.08273583191768827,0.437112189130044 +0.13936497045367985,-0.14356848519882387,0.0312647988461478 +0.11418742358897044,-0.1602302873580837,-0.134202191929276 +0.1677646958735584,-0.13158428218200385,2.3272985827444033 +0.07972950663937417,-0.029326070945089766,-0.003673029919814025 +0.16160953860319088,-0.09556836061942106,1.3608280803857566 +-0.2343947498993724,-0.09250476382330108,2.7197205784907847 +-0.01250565162532849,-0.06334185535591391,2.832667744149973 +-0.07406116413164632,-0.1968034225401289,0.9961892704780662 +-0.12777825255792977,-0.24588560470722487,0.48001967311459304 +-0.2187219455529007,-0.0003408631172706622,0.6626545755968217 +1.0571709539755039,-0.02743903297655645,-0.13210585049342916 +0.1066379610707558,-0.20531415666443426,-0.08323164070395317 +0.15722503231735463,0.08395363663938615,0.6609663850996452 +-0.17166541879614006,0.03097735465151935,-0.09516535655497907 +0.13931438882094077,-0.16575809345911113,1.5220115024297411 +-0.16176541209793588,0.07191333502380282,0.49261496269662386 +-0.05582897514615073,-0.19125434515154746,-0.11492791172002478 +-0.0456301980620446,0.11839185446353667,3.1186194208515343 +0.035871688354357334,-0.2395266414827362,3.0842942584288298 +-0.243361223130968,-0.24064123748067204,-0.17234182279099658 +-0.062171376814952994,-0.23217425642178705,-0.22534887728753727 +0.2722124124527412,-0.24769038975602206,0.0034669344094127585 +0.5934107776054309,-0.15999450097965254,0.9343546806397476 +-0.24772346272105827,-0.17512298230091977,0.6196582499938086 +0.17986815064699468,-0.10042848782721003,0.1663518894525592 +0.02157865869979264,0.10767011367346202,0.3655632834031496 +0.7704575398133955,-0.21600932373997297,-0.24796988420306776 +0.6915396198691829,0.2814706639347464,0.17403785242160735 +-0.011164129965909542,-0.24699324878308998,0.008958966508810673 +0.2141283706996493,-0.20195968882640444,0.9219506943714801 +0.4254664406874953,-0.23581892313772557,0.35257797704598715 +0.6377704714344791,-0.0075565020077854594,1.37876724513165 +0.27688942793444826,0.30044160509923756,0.10036109597839815 +0.925345341975945,-0.16960237729903566,-0.1473364367226111 +-0.05821672474887424,-0.07056468837643629,1.3977013741733375 +-0.22368271242145904,0.1391975772947825,0.36665979562264406 +0.13654174663251173,-0.055861867686295585,0.8746740404012188 +0.42105083859160597,-0.1972279382976186,-0.08749296327009612 +0.8454287416668,-0.07914774366352481,0.9518194920603662 +-0.1249960756433422,-0.025385956864495407,0.06858372442514926 +-0.18383263045824638,-0.09595123093922459,-0.12502183590197463 +0.9180962439418225,0.17676912791574012,0.7237593048634877 +0.08336353345703323,-0.23818590648242782,1.267703054633966 +-0.16399744384881187,-0.15701763017139864,0.09790983185769636 +0.34510119931346483,0.19573102305029183,0.36342069113926034 +0.28416250582138436,-0.03430574553141391,1.3324463939583284 +0.9602990680330579,0.2078894869230572,0.3317762114482756 +0.0149499462941165,-0.08676891266952372,1.1467188399429546 +0.3823091684060952,0.09193155555617777,-0.22526279343390815 +-0.22214912631812828,-0.2383008003455223,0.9510416899683256 +1.1500795736606313,-0.22568957022733013,2.3789172642589826 +0.037694992107299874,-0.21964378904139628,0.88245064211057 +-0.21272364656679546,0.06421870565074322,3.6432406080192594 +0.4215017543993489,-0.21067148847141273,0.06087277157485188 +0.004736250287987187,-0.2209776367885992,-0.17317002481453786 +0.5609864641133823,-0.03585741603831216,-0.05355207064783138 +-0.034614217441647166,-0.156259446679841,1.0246590494837775 +0.23457882820845327,-0.009715087945675716,0.09692581689034108 +0.9717825178640171,0.0013484169218429543,-0.14991660114954902 +-0.16680402699696473,-0.21446421304871663,0.11762490200968445 +1.1248275994400752,-0.22393243093248924,0.7060864941849697 +0.3080432008693408,0.06052796924393672,-0.10331403624179519 +-0.1529839215607222,-0.0939697593157584,-0.13604498036239596 +-0.23407047991498858,-0.026206162537244615,0.44036259728466565 +0.7222222823909743,-0.14482597636046088,0.7594792518939819 +-0.06143923904799484,0.7157165827720079,1.4674578468842006 +0.1865396033990694,0.21540309702531207,1.4151962532515234 +0.5041011764826171,0.5087136638664121,-0.21262623408811643 +0.3935899923489349,-0.05530992312669006,1.6167597647089413 +0.579432855022821,0.21586287959238826,0.5433605661524734 +0.0202379519609181,0.05610514664220606,0.07972838395582504 +0.34237519007078077,-0.053839711307482246,1.5302506865825682 +0.5157428265707097,-0.039342507841265945,2.3468309832855483 +0.546253643058207,-0.06108418369387561,0.16211276405716957 +0.2091856968143293,0.140973277048124,1.4480696978876875 +-0.031227877969976725,0.08215183547054655,0.3634573986980508 +-0.04871030512333929,0.022920503226204147,2.190286832605371 +0.31998733206318375,-0.2107184269406032,0.14797650099576004 +0.41576547916433737,0.15494791717427803,2.4308158581919823 +0.24361212685224326,-0.15925249965542998,0.3506666729297282 +0.4426555461079612,-0.0431918990287056,0.5723069358120675 +-0.10503092643259004,-0.2461816038324903,0.17734892861925816 +-0.22369608037396255,-0.21423446317304712,0.0072420289730330545 +0.05915854113944774,0.15804212687911656,1.2062059591935799 +-0.11191422775578089,-0.01554820651686939,-0.1909260435606936 +0.7651204424232012,-0.15263668342096293,3.8018817051188174 +1.5610842057348264,0.06556873260518759,0.2043654542580709 +-0.0020724987975938303,-0.24028179684905537,1.2501972090235862 +0.24645594761390555,-0.1254612254909866,0.08771186933064129 +0.38355173383059715,0.015214101127576707,0.010638369056633012 +0.476188706251791,0.05773123813019926,1.2689995543985984 +-0.1518109214138888,-0.11191359038618445,2.8751421554476337 +0.9866515124091688,-0.11344728406250698,0.04165845280163044 +-0.038971073053929745,-0.15263243946143945,0.11232339658806195 +1.174154316476516,0.16774771278134498,4.373939719439313 +0.20734548080420523,-0.07318345515806374,0.03481190427033026 +-0.249020196261002,-0.08385138567538233,0.2575306685677241 +-0.09256844213638693,0.5966641032469031,0.24628766123517803 +-0.09029116550899507,0.32517707324170597,0.11345717535516509 +0.0322446336566356,-0.04380238567798919,0.27891860135767543 +-0.20401297819838543,0.07164390404535054,0.40227362925133314 +-0.09850611391188283,-0.13862012263103576,1.1686262620091374 +0.07117063761881848,0.22554238152004574,1.5782265032932583 +0.952696232757863,-0.11238163224248823,0.6399136087470477 +1.646449372788512,-0.10002125577450419,1.136081606778417 +0.022561929398958125,0.027918208828228763,3.0376396884692527 +-0.18737945608854506,0.6487527676282708,1.317119469396842 +1.3148532017897379,-0.031475616811060175,0.03104689783004344 +-0.03102312772862925,-0.18887168423593315,0.2799130727618051 +0.3633199671919982,-0.12082297927514069,0.3447794681125268 +-0.24052666579850138,0.6610499126090023,0.2511433732011503 +0.10444062161427503,0.30161222331898796,0.5259893191213764 +-0.010090125249715781,-0.24312078437374052,1.8091702522359627 +0.34574845314759994,0.8345276510906514,-0.05002001479457943 +-0.20547964427493356,0.12089830929358075,1.8979702420103695 +-0.0737105437053753,-0.2281206382774659,1.94562016750361 +-0.12820510893030673,-0.08930466031579104,0.11852341222773227 diff --git a/seismostats/analysis/tests/test_estimate_beta.py b/seismostats/analysis/tests/test_estimate_beta.py index 1934b99..849bd16 100644 --- a/seismostats/analysis/tests/test_estimate_beta.py +++ b/seismostats/analysis/tests/test_estimate_beta.py @@ -4,6 +4,7 @@ import numpy as np import pytest import datetime as dt +import pandas as pd # import functions to be tested from seismostats.analysis.estimate_beta import ( @@ -17,11 +18,14 @@ shi_bolt_confidence, estimate_b_more_positive, make_more_incomplete, + b_value_to_beta, ) -from seismostats.utils.simulate_distributions import simulate_magnitudes_binned +from seismostats.utils.simulate_distributions import ( + simulate_magnitudes_binned, + bin_to_precision) -@pytest.mark.parametrize( +@ pytest.mark.parametrize( "method, return_std, return_n, b_parameter", [ ("classic", True, True, "beta"), @@ -94,53 +98,70 @@ def test_estimate_b( assert w[-1].category == UserWarning -@pytest.mark.parametrize( - "n,b,mc,delta_m,b_parameter,precision", - [ - (1000000, 1.2, 3, 0, "b_value", 0.005), - (1000000, np.log(10), 3, 0.1, "beta", 0.01), - ], -) -def test_estimate_b_classic( - n: int, - b: float, - mc: float, - delta_m: float, - b_parameter: str, - precision: float, -): - mags = simulate_magnitudes_binned( - n, b, mc, delta_m, b_parameter=b_parameter - ) - b_estimate = estimate_b_classic(mags, mc, delta_m, b_parameter=b_parameter) +def magnitudes(b: float): + # print the current directory + import os + print(os.getcwd()) - assert abs(b - b_estimate) / b <= precision + df_mags = pd.read_csv( + 'seismostats/analysis/tests/data/simulated_magnitudes.csv') + if b == 0.5: + mags = df_mags["b_value = 0.5"].values + elif b == 1: + mags = df_mags["b_value = 1"].values + elif b == 1.5: + mags = df_mags["b_value = 1.5"].values + return mags -@pytest.mark.parametrize( - "n,b,mc,delta_m,b_parameter,precision", +@ pytest.mark.parametrize( + "b, mags, mc, delta_m, precision, b_parameter", [ - (1000000, 1.2 * np.log(10), 3, 0, "beta", 0.005), - (1000000, 0.8, 3, 0.1, "b_value", 0.01), + (1, magnitudes(1), 0, 0.1, 0.002, "b_value"), + (1.5, magnitudes(1.5), 0.5, 0.01, 0.01, "b_value"), + (b_value_to_beta(0.5), magnitudes(0.5), 2, 0.2, 0.003, "beta"), ], ) -def test_estimate_b_utsu( - n: int, +def test_estimate_b_classic( b: float, + mags: np.ndarray, mc: float, delta_m: float, - b_parameter: str, precision: float, + b_parameter: str, ): - mags = simulate_magnitudes_binned( - n, b, mc, delta_m, b_parameter=b_parameter - ) + print('test_estimate_b_classic') + mags = bin_to_precision(mags, delta_m) + mags = mags[mags >= mc - delta_m / 2] + b_estimate = estimate_b_classic(mags, mc, delta_m, b_parameter=b_parameter) - b_estimate = estimate_b_utsu(mags, mc, delta_m, b_parameter=b_parameter) assert abs(b - b_estimate) / b <= precision -@pytest.mark.parametrize( +# @ pytest.mark.parametrize( +# "b, mags, mc, delta_m, precision, b_parameter", +# [ +# (1, magnitudes(1), 0, 0.01, 0.002, "b_value"), +# (1.5, magnitudes(1.5), 0.5, 0.01, 0.01, "b_value"), +# (b_value_to_beta(0.5), magnitudes(0.5), 2, 0.2, 0.003, "beta"), +# ], +# ) +# def test_estimate_b_utsu( +# b: float, +# mags: np.ndarray, +# mc: float, +# delta_m: float, +# precision: float, +# b_parameter: str, +# ): +# print('test_estimate_b_utsu') +# mags = bin_to_precision(mags, delta_m) +# mags = mags[mags >= mc - delta_m / 2] +# b_estimate = estimate_b_utsu(mags, mc, delta_m, b_parameter=b_parameter) +# assert abs(b - b_estimate) / b <= precision + + +@ pytest.mark.parametrize( "magnitudes,mag_diffs", [(np.array([1, -2, 3]), np.array([-3, 5, 2]))], ) @@ -149,74 +170,72 @@ def test_differences(magnitudes: np.ndarray, mag_diffs: np.ndarray): assert (y == mag_diffs).all() -@pytest.mark.parametrize( - "n,b,mc,delta_m,b_parameter,dmc,precision", +@ pytest.mark.parametrize( + "b, mags, mc, delta_m, dmc, precision, b_parameter", [ - (1000000, 1.2, 3, 0, "b_value", None, 0.005), - (1000000, np.log(10), 3, 0.1, "beta", 1, 0.01), + (1, magnitudes(1), 0, 0.1, 0.3, 0.008, "b_value"), + (1.5, magnitudes(1.5), 0.5, 0.01, None, 0.02, "b_value"), + (b_value_to_beta(0.5), magnitudes(0.5), 2, 0.2, None, 0.02, "beta"), ], ) def test_estimate_b_positive( - n: int, b: float, + mags: np.ndarray, mc: float, delta_m: float, - b_parameter: str, dmc: float, precision: float, + b_parameter: str, ): - mags = simulate_magnitudes_binned( - n, b, mc, delta_m, b_parameter=b_parameter - ) + mags = bin_to_precision(mags, delta_m) + mags = mags[mags >= mc - delta_m / 2] b_estimate = estimate_b_positive( mags, delta_m=delta_m, dmc=dmc, b_parameter=b_parameter ) assert abs(b - b_estimate) / b <= precision -@pytest.mark.parametrize( - "n,b,mc,delta_m,b_parameter,precision", +@ pytest.mark.parametrize( + "b, mags, mc, delta_m, precision, b_parameter", [ - (1000, 1.2 * np.log(10), 3, 0, "beta", 0.6), - (1000, 1, 3, 0.1, "b_value", 0.2), + (1, magnitudes(1)[:1500], 0, 0.01, 0.06, "b_value"), ], ) def test_estimate_b_laplace( - n: int, b: float, + mags: np.ndarray, mc: float, delta_m: float, - b_parameter: str, precision: float, + b_parameter: str, ): - mags = simulate_magnitudes_binned( - n, b, mc, delta_m, b_parameter=b_parameter - ) + mags = bin_to_precision(mags, delta_m) + mags = mags[mags >= mc - delta_m / 2] b_estimate = estimate_b_laplace( mags, delta_m=delta_m, b_parameter=b_parameter ) assert abs(b - b_estimate) / b <= precision -@pytest.mark.parametrize( - "n,b,mc,delta_m,b_parameter,dmc,precision", +@ pytest.mark.parametrize( + "b, mags, mc, delta_m, dmc, precision, b_parameter", [ - (100000, 1.2 * np.log(10), 3, 0, "beta", None, 0.01), - (100000, 1, 3, 0.1, "b_value", 1, 0.04), + (1, magnitudes(1), 0, 0.1, 0.3, 0.04, "b_value"), + (1.5, magnitudes(1.5), 0.5, 0.01, None, 0.02, "b_value"), + (b_value_to_beta(0.5), magnitudes(0.5), 2, 0.2, None, 0.04, "beta"), ], ) def test_estimate_b_more_positive( - n: int, b: float, + mags: np.ndarray, mc: float, delta_m: float, - b_parameter: str, dmc: float, precision: float, + b_parameter: str, ): - mags = simulate_magnitudes_binned( - n, b, mc, delta_m, b_parameter=b_parameter - ) + mags = bin_to_precision(mags, delta_m) + mags = mags[mags >= mc - delta_m / 2] b_estimate = estimate_b_more_positive( mags, delta_m=delta_m, dmc=dmc, b_parameter=b_parameter ) @@ -328,7 +347,7 @@ def _create_test_catalog_poisson(a_val_true: float, b_val_true: float): return mags, dates -@pytest.mark.parametrize("a_val_true,b_val_true,precision", [(7, 1, 0.01)]) +@ pytest.mark.parametrize("a_val_true,b_val_true,precision", [(7, 1, 0.01)]) def test_estimate_b_weichert( a_val_true: float, b_val_true: float, precision: float ): @@ -363,7 +382,7 @@ def test_estimate_b_weichert( data = pickle.load(f) -@pytest.mark.parametrize( +@ pytest.mark.parametrize( "magnitudes,b,b_parameter,std", [data["values_test1"], data["values_test2"]], ) diff --git a/seismostats/analysis/tests/test_estimate_mc.py b/seismostats/analysis/tests/test_estimate_mc.py index 2a47283..c8d312d 100644 --- a/seismostats/analysis/tests/test_estimate_mc.py +++ b/seismostats/analysis/tests/test_estimate_mc.py @@ -9,7 +9,7 @@ @pytest.fixture -def setup_magnitudes(): +def magnitudes(): mags = np.array( [ 2.3, @@ -117,11 +117,11 @@ def setup_magnitudes(): return mags -def test_empirical_cdf(setup_magnitudes, delta_m=0.1): - x, y = empirical_cdf(setup_magnitudes, delta_m=delta_m) +def test_empirical_cdf(magnitudes, delta_m=0.1): + x, y = empirical_cdf(magnitudes, delta_m=delta_m) - x_expected = bin_to_precision(np.arange(min(setup_magnitudes), max( - setup_magnitudes) + delta_m, delta_m)) + x_expected = bin_to_precision(np.arange(min(magnitudes), max( + magnitudes) + delta_m, delta_m)) assert_allclose(x, x_expected, rtol=1e-7) assert_equal(y[-1], 1) @@ -150,7 +150,7 @@ def test_empirical_cdf(setup_magnitudes, delta_m=0.1): @pytest.fixture -def setup_ks_dists(): +def ks_dists(): ks_ds_df = pd.read_csv( 'seismostats/analysis/tests/data/ks_ds.csv', index_col=0) ks_ds_list = ks_ds_df.values.T @@ -158,18 +158,18 @@ def setup_ks_dists(): def test_estimate_mc_ks( - setup_magnitudes, - setup_ks_dists, + magnitudes, + ks_dists, mcs=[0.8, 0.9, 1.0, 1.1] ): # test when beta is given best_mc, best_beta, mcs_tested, betas, ks_ds, ps = mc_ks( - setup_magnitudes, + magnitudes, delta_m=0.1, mcs_test=mcs, p_pass=0.1, beta=2.24, - ks_ds_list=setup_ks_dists, + ks_ds_list=ks_dists, ) assert_equal(1.1, best_mc) assert_equal(2.24, best_beta) @@ -183,7 +183,7 @@ def test_estimate_mc_ks( # test when beta is not given best_mc, best_beta, mcs_tested, betas, ks_ds, ps = mc_ks( - setup_magnitudes, + magnitudes, delta_m=0.1, mcs_test=[1.1], p_pass=0.1, @@ -207,18 +207,18 @@ def test_estimate_mc_ks( # test when mcs are not given best_mc, best_beta, mcs_tested, betas, ks_ds, ps = mc_ks( - setup_magnitudes, + magnitudes, delta_m=0.1, p_pass=0.1, beta=2.24, - ks_ds_list=setup_ks_dists[2:], + ks_ds_list=ks_dists[2:], ) assert_equal(1.1, best_mc) assert_equal([1.0, 1.1], mcs_tested) # test when b-positive is used best_mc, best_beta, mcs_tested, betas, ks_ds, ps = mc_ks( - setup_magnitudes, + magnitudes, delta_m=0.1, mcs_test=[1.5], b_method="positive" @@ -231,7 +231,7 @@ def test_estimate_mc_ks( assert_equal(len(ps), 1) -def test_estimate_mc_maxc(setup_magnitudes): - mc = mc_max_curvature(setup_magnitudes, delta_m=0.1, correction_factor=0.2) +def test_estimate_mc_maxc(magnitudes): + mc = mc_max_curvature(magnitudes, delta_m=0.1, correction_factor=0.2) assert_equal(1.3, mc)