diff --git a/sgkit/stats/grm.py b/sgkit/stats/grm.py index 342deaaee..a96d6d91b 100644 --- a/sgkit/stats/grm.py +++ b/sgkit/stats/grm.py @@ -1,4 +1,4 @@ -from typing import Hashable, Optional +from typing import Hashable, Optional, Tuple import dask.array as da import numpy as np @@ -9,13 +9,17 @@ from sgkit.typing import ArrayLike from sgkit.utils import conditional_merge_datasets, create_dataset +EST_VAN_RADEN = "VanRaden" +EST_ENDELMAN_JANNINK = "Endelman-Jannink" +EST_MARTINI = "Martini" + def _grm_VanRaden( call_dosage: ArrayLike, ancestral_frequency: ArrayLike, ploidy: int, skipna: bool = False, -): +) -> ArrayLike: ancestral_dosage = ancestral_frequency * ploidy M = call_dosage - ancestral_dosage[:, None] if skipna: @@ -32,11 +36,53 @@ def _grm_VanRaden( return G +def _shrinkage_Ledoit_Wolf(X: ArrayLike) -> Tuple[ArrayLike, float]: + # shrinkage estimator of Ledoit & Wolf 2004 + # following the notation of Endelman & Jannink + # X is an m * n matrix with mean centered columns + m, n = X.shape + S = (X.T @ X) / m + T = da.diag(S).mean() * da.eye(n) + # calculate scaling parameter delta + X2 = X**2 + Gamma = X2.T @ X2 / m # E&J eq 25 + delta_numerator = (Gamma - S**2).sum() / m # Error in E&J eq 24? + delta_denominator = ((S - T) ** 2).sum() # squared Frobenius norm + delta = delta_numerator / delta_denominator # E&J eq 20 + # delta must be in [0 1] + delta = da.maximum(delta, 0.0) + delta = da.minimum(delta, 1.0) + Cov = delta * T + (1 - delta) * S # E&J eq 16 + return Cov, delta + + +def _grm_Endelman_Jannink( + call_dosage: ArrayLike, + ancestral_frequency: ArrayLike, + ploidy: int, + skipna: bool = False, +) -> ArrayLike: + if skipna: + raise NotImplementedError( + f"The 'skipna' option is not implemented for the '{EST_ENDELMAN_JANNINK}' estimator" + ) + ancestral_dosage = ancestral_frequency * ploidy + W = call_dosage - ancestral_dosage[:, None] + W_mean = da.nanmean(W, axis=0, keepdims=True) + X = W - W_mean # mean centered + Cov, _ = _shrinkage_Ledoit_Wolf(X) + # E&J eq 17 + numerator = Cov + W_mean.T @ W_mean + denominator = ploidy * da.mean(ancestral_frequency * (1 - ancestral_frequency)) + G = numerator / denominator + return G + + def genomic_relationship( ds: Dataset, *, call_dosage: Hashable = variables.call_dosage, - estimator: Optional[Literal["VanRaden"]] = None, + estimator: Optional[Literal[EST_VAN_RADEN, EST_ENDELMAN_JANNINK]] = None, # type: ignore ancestral_frequency: Optional[Hashable] = None, ploidy: Optional[int] = None, skipna: bool = False, @@ -44,6 +90,15 @@ def genomic_relationship( ) -> Dataset: """Compute a genomic relationship matrix (AKA the GRM or G-matrix). + + The following estimators are supported: + + * **VanRaden**: the first estimator described by VanRaden 2008 [1] and + generalized to autopolyploids by Ashraf et al 2016 [2] and Bilton 2020 [3]. + * **Endelman-Jannink**: a shrinkage estimator described by Endelman and + Jannick 2012 [4]. This is based on the VanRaden estimator and aims to + improve the accuracy of estimated breeding values with low-density markers. + Parameters ---------- ds @@ -52,10 +107,8 @@ def genomic_relationship( Input variable name holding call_dosage as defined by :data:`sgkit.variables.call_dosage_spec`. estimator - Specifies a relatedness estimator to use. Currently the only option - is ``"VanRaden"`` which uses the method described by VanRaden 2008 [1] - and generalized to autopolyploids by Ashraf et al 2016 [2] and - Bilton 2020 [3]. + Specifies the relatedness estimator to use. Must be one of + ``'VanRaden'`` (the default) or ``'Endelman-Jannink'``. ancestral_frequency Frequency of variant alleles corresponding to call_dosage within the ancestral/base/reference population. @@ -83,10 +136,6 @@ def genomic_relationship( which is a matrix of pairwise relationships among all samples. The dimensions are named ``samples_0`` and ``samples_1``. - Warnings - -------- - This function is only applicable to fixed-ploidy, biallelic datasets. - Raises ------ ValueError @@ -98,6 +147,17 @@ def genomic_relationship( ValueError If ancestral_frequency is the incorrect shape. + Note + ---- + The shrinkage parameter for the Endelman-Jannink estimator depends upon + the total number of variants in the dataset. Monomorphic variants need + to be removed from the dataset in order for the resulting estimates to + match those found using the default settings in rrBLUP [5]. + + Warnings + -------- + This function is only applicable to fixed-ploidy, biallelic datasets. + Examples -------- @@ -217,31 +277,45 @@ def genomic_relationship( "Developing statistical methods for genetic analysis of genotypes from genotyping-by-sequencing data" PhD thesis, University of Otago. + + [4] - J. B. Endelman and J. -L. Jannink 2012. + "Shrinkage Estimation of the Realized Relationship Matrix" + G3 2: 1405-1413. + + [5] - J. B. Endelman + "Ridge regression and other kernels for genomic selection with R package" + Plant Genome 4: 250-255. """ variables.validate( ds, {call_dosage: variables.call_dosage_spec}, ) - estimator = estimator or "VanRaden" - if estimator not in {"VanRaden"}: - raise ValueError("Unknown estimator '{}'".format(estimator)) + estimator = estimator or EST_VAN_RADEN # TODO: raise on mixed ploidy ploidy = ploidy or ds.dims.get("ploidy") if ploidy is None: raise ValueError("Ploidy must be specified when the ploidy dimension is absent") - - # VanRaden GRM - cd = da.array(ds[call_dosage].data) - n_variants, _ = cd.shape - if ancestral_frequency is None: - raise ValueError("The 'VanRaden' estimator requires ancestral_frequency") - af = da.array(ds[ancestral_frequency].data) - if af.shape != (n_variants,): - raise ValueError( - "The ancestral_frequency variable must have one value per variant" - ) - G = _grm_VanRaden(cd, af, ploidy=ploidy, skipna=skipna) + dosage = da.array(ds[call_dosage].data) + + # estimators requiring 'ancestral_frequency' + if estimator in {EST_VAN_RADEN, EST_ENDELMAN_JANNINK}: + n_variants, _ = dosage.shape + if ancestral_frequency is None: + raise ValueError( + f"The '{estimator}' estimator requires the 'ancestral_frequency' argument" + ) + af = da.array(ds[ancestral_frequency].data) + if af.shape != (n_variants,): + raise ValueError( + "The ancestral_frequency variable must have one value per variant" + ) + if estimator == EST_VAN_RADEN: + G = _grm_VanRaden(dosage, af, ploidy=ploidy, skipna=skipna) + elif estimator == EST_ENDELMAN_JANNINK: + G = _grm_Endelman_Jannink(dosage, af, ploidy=ploidy, skipna=skipna) + else: + raise ValueError(f"Unknown estimator '{estimator}'") new_ds = create_dataset( { @@ -451,7 +525,7 @@ def hybrid_relationship( pedigree_relationship: Hashable = None, pedigree_subset_inverse_relationship: Hashable = None, genomic_sample: Optional[Hashable] = None, - estimator: Optional[Literal["Martini"]] = None, + estimator: Optional[Literal[EST_MARTINI]] = None, # type: ignore tau: float = 1.0, omega: float = 1.0, merge: bool = True, @@ -585,9 +659,9 @@ def hybrid_relationship( Journal of Dairy Science 93 (2): 743-752. """ if estimator is None: - estimator = "Martini" - if estimator not in {"Martini"}: - raise ValueError("Unknown estimator '{}'".format(estimator)) + estimator = EST_MARTINI + if estimator not in {EST_MARTINI}: + raise ValueError(f"Unknown estimator '{estimator}'") variables.validate( ds, { @@ -697,7 +771,7 @@ def hybrid_inverse_relationship( pedigree_inverse_relationship: Hashable, pedigree_subset_inverse_relationship: Hashable = None, genomic_sample: Optional[Hashable] = None, - estimator: Optional[Literal["Martini"]] = None, + estimator: Optional[Literal[EST_MARTINI]] = None, # type: ignore tau: float = 1.0, omega: float = 1.0, merge: bool = True, @@ -847,9 +921,9 @@ def hybrid_inverse_relationship( Journal of Dairy Science 93 (2): 743-752. """ if estimator is None: - estimator = "Martini" - if estimator not in {"Martini"}: - raise ValueError("Unknown estimator '{}'".format(estimator)) + estimator = EST_MARTINI + if estimator not in {EST_MARTINI}: + raise ValueError(f"Unknown estimator '{estimator}'") variables.validate( ds, { diff --git a/sgkit/tests/test_grm.py b/sgkit/tests/test_grm.py index a7dff13eb..b5d10f7b3 100644 --- a/sgkit/tests/test_grm.py +++ b/sgkit/tests/test_grm.py @@ -5,9 +5,11 @@ import pandas as pd import pytest import xarray as xr +from sklearn.covariance import LedoitWolf import sgkit as sg -from sgkit import ( +from sgkit.stats.grm import ( + _shrinkage_Ledoit_Wolf, genomic_relationship, hybrid_inverse_relationship, hybrid_relationship, @@ -15,6 +17,33 @@ ) +@pytest.mark.parametrize( + "n_variant, n_sample, ploidy, seed", + [ + (10, 5, 2, 0), + (10, 50, 2, 0), + (10, 5, 4, 1), + (10, 50, 4, 2), + (100, 200, 2, 3), + (100, 200, 4, 4), + (80, 200, 6, 5), + ], +) +def test_shrinkage_Ledoit_Wolf(n_variant, n_sample, ploidy, seed): + np.random.seed(seed) + call_dosage = np.random.randint(0, ploidy + 1, size=(n_variant, n_sample)) + ancestral_dosage = np.random.rand(n_variant) * ploidy + W = call_dosage - ancestral_dosage[:, None] + LW = LedoitWolf().fit(W) # automatically mean centers + expect_cov, expect_delta = LW.covariance_, LW.shrinkage_ + # mean center columns + X = W - W.mean(axis=0, keepdims=True) + actual_cov, actual_delta = _shrinkage_Ledoit_Wolf(X) + np.testing.assert_almost_equal(expect_cov, actual_cov) + np.testing.assert_almost_equal(expect_delta, actual_delta) + + +@pytest.mark.parametrize("estimator", ["VanRaden", "Endelman-Jannink"]) @pytest.mark.parametrize( "chunks", [ @@ -23,7 +52,7 @@ (100, 50), ], ) -def test_genomic_relationship__VanRaden_rrBLUP_diploid(chunks): +def test_genomic_relationship__rrBLUP_diploid(estimator, chunks): # Load reference data calculated with function A.mat # from the rrBLUP R library using the code: # @@ -42,6 +71,18 @@ def test_genomic_relationship__VanRaden_rrBLUP_diploid(chunks): # row.names=FALSE, # col.names=FALSE, # ) + # A <- rrBLUP::A.mat( + # dose, + # impute.method="mean", + # shrink=TRUE, + # min.MAF=0.0, + # ) + # write.table( + # A, + # file="pine_snps_100_500_EJ_matrix.txt", + # row.names=FALSE, + # col.names=FALSE, + # ) # # Note the pine_snps_100_500.csv contains the first 100 samples # and 500 SNPs from the dataset published by Resende et al 2012: @@ -53,7 +94,10 @@ def test_genomic_relationship__VanRaden_rrBLUP_diploid(chunks): dosage = np.loadtxt( path / "test_grm/pine_snps_100_500.csv", skiprows=1, delimiter="," ).T[1:] - expect = np.loadtxt(path / "test_grm/pine_snps_100_500_A_matrix.txt") + if estimator == "VanRaden": + expect = np.loadtxt(path / "test_grm/pine_snps_100_500_A_matrix.txt") + elif estimator == "Endelman-Jannink": + expect = np.loadtxt(path / "test_grm/pine_snps_100_500_EJ_matrix.txt") # replace sentinel values and perform mean imputation dosage[dosage == -9] = np.nan idx = np.isnan(dosage) @@ -67,12 +111,13 @@ def test_genomic_relationship__VanRaden_rrBLUP_diploid(chunks): ds["call_dosage"] = ["variants", "samples"], dosage ds["ancestral_frequency"] = ds["call_dosage"].mean(dim="samples") / 2 ds = genomic_relationship( - ds, ancestral_frequency="ancestral_frequency", estimator="VanRaden", ploidy=2 + ds, ancestral_frequency="ancestral_frequency", estimator=estimator, ploidy=2 ).compute() actual = ds.stat_genomic_relationship.values np.testing.assert_array_almost_equal(actual, expect) +@pytest.mark.parametrize("estimator", ["VanRaden", "Endelman-Jannink"]) @pytest.mark.parametrize( "chunks", [ @@ -81,9 +126,10 @@ def test_genomic_relationship__VanRaden_rrBLUP_diploid(chunks): (50, 25), ], ) -def test_genomic_relationship__VanRaden_AGHmatrix_tetraploid(chunks): - # Load reference data calculated with function Gmatrix - # from the AGHmatrix R library using the code: +def test_genomic_relationship__tetraploid(estimator, chunks): + # Load reference data. + # The VanRaden estimator was calculated with the AGHmatrix R + # library using the code: # # dose = data.matrix(read.csv('sim4x_snps.txt', header = F)) # A <- AGHmatrix::Gmatrix( @@ -100,11 +146,33 @@ def test_genomic_relationship__VanRaden_AGHmatrix_tetraploid(chunks): # col.names=FALSE, # ) # + # The Endelman-Jannink estimator was calculated with the rrBLUP + # R library using the code: + # + # dose = data.matrix(read.csv('sim4x_snps.txt', header = F)) + # dose = dose / 2 - 1 + # A <- rrBLUP::A.mat( + # dose, + # impute.method="mean", + # shrink=TRUE, + # min.MAF=0.0, + # ) + # A <- A * 2 # convert to 4x estimate + # write.table( + # A, + # file="sim4x_snps_EJ_matrix.txt", + # row.names=FALSE, + # col.names=FALSE, + # ) + # # Where the 'sim4x_snps.txt' is the transposed # "call_dosage" array simulated within this test. # path = pathlib.Path(__file__).parent.absolute() - expect = np.loadtxt(path / "test_grm/sim4x_snps_A_matrix.txt") + if estimator == "VanRaden": + expect = np.loadtxt(path / "test_grm/sim4x_snps_A_matrix.txt") + elif estimator == "Endelman-Jannink": + expect = np.loadtxt(path / "test_grm/sim4x_snps_EJ_matrix.txt") ds = sg.simulate_genotype_call_dataset( n_variant=200, n_sample=50, n_ploidy=4, seed=0 ) @@ -113,7 +181,9 @@ def test_genomic_relationship__VanRaden_AGHmatrix_tetraploid(chunks): if chunks: ds["call_dosage"] = ds["call_dosage"].chunk(chunks) ds["ancestral_frequency"] = ds["call_dosage"].mean(dim="samples") / 4 - ds = genomic_relationship(ds, ancestral_frequency="ancestral_frequency") + ds = genomic_relationship( + ds, estimator=estimator, ancestral_frequency="ancestral_frequency" + ) actual = ds.stat_genomic_relationship.values np.testing.assert_array_almost_equal(actual, expect) @@ -232,7 +302,8 @@ def test_genomic_relationship__raise_on_unknown_estimator(): ) -def test_genomic_relationship__raise_on_ancestral_frequency_shape(): +@pytest.mark.parametrize("estimator", ["VanRaden", "Endelman-Jannink"]) +def test_genomic_relationship__raise_on_ancestral_frequency_shape(estimator): ds = xr.Dataset() dosage = np.random.randint(0, 3, size=(10, 3)) ds["call_dosage"] = ["variants", "samples"], dosage @@ -241,18 +312,44 @@ def test_genomic_relationship__raise_on_ancestral_frequency_shape(): ValueError, match="The ancestral_frequency variable must have one value per variant", ): - genomic_relationship(ds, ancestral_frequency="ancestral_frequency", ploidy=2) + genomic_relationship( + ds, estimator=estimator, ancestral_frequency="ancestral_frequency", ploidy=2 + ) -def test_genomic_relationship__raise_on_ancestral_frequency_missing(): +@pytest.mark.parametrize("estimator", ["VanRaden", "Endelman-Jannink"]) +def test_genomic_relationship__raise_on_ancestral_frequency_missing(estimator): ds = xr.Dataset() dosage = np.random.randint(0, 3, size=(10, 3)) ds["call_dosage"] = ["variants", "samples"], dosage with pytest.raises( ValueError, - match="The 'VanRaden' estimator requires ancestral_frequency", + match="The '{}' estimator requires the 'ancestral_frequency' argument".format( + estimator + ), ): - genomic_relationship(ds, ploidy=2) + genomic_relationship(ds, ploidy=2, estimator=estimator) + + +@pytest.mark.parametrize("estimator", ["Endelman-Jannink"]) +def test_genomic_relationship__raise_on_skipna(estimator): + ds = xr.Dataset() + dosage = np.random.randint(0, 3, size=(10, 3)) + ds["call_dosage"] = ["variants", "samples"], dosage + ds["ancestral_frequency"] = ds["call_dosage"].mean(dim="samples") / 2 + with pytest.raises( + NotImplementedError, + match="The 'skipna' option is not implemented for the '{}' estimator".format( + estimator + ), + ): + genomic_relationship( + ds, + ancestral_frequency="ancestral_frequency", + estimator=estimator, + ploidy=2, + skipna=True, + ) def test_invert_relationship_matrix__full(): diff --git a/sgkit/tests/test_grm/pine_snps_100_500_EJ_matrix.txt b/sgkit/tests/test_grm/pine_snps_100_500_EJ_matrix.txt new file mode 100644 index 000000000..fe6029d0e --- /dev/null +++ b/sgkit/tests/test_grm/pine_snps_100_500_EJ_matrix.txt @@ -0,0 +1,100 @@ +0.461156461558977 -0.00897367283626589 -0.0019057811609003 0.00111582546501822 0.00850493880443534 -0.0237576171911034 -0.0499804686822396 0.0356165792887391 -0.00330822695779614 -0.0428155444631088 -0.0359489131655809 -0.0249235157566114 -0.00721117420205786 -0.00609430211880385 -0.0241886296069255 0.0171283125352219 -0.0370113074458357 -0.0382049224231878 -0.0110789796300134 0.0443783954727284 -0.0515700529358048 0.0201813764050815 0.0898683746202261 -0.0460922119940477 -0.0610365567900499 0.0350285098982242 -0.0176047819556475 0.00134540459860866 -0.0189697853133959 -0.0193258635130022 -0.00284898143619931 0.0623189010040702 0.0394107347704269 0.0613541286807689 -0.0240142578686732 0.0237868380354488 0.0471082600200143 0.0724427484993203 -0.00716869615389147 0.0340348548643908 -0.0813774931342641 -0.00392522851962009 0.0119157804293481 0.0335999188413723 -0.0160291333603892 -0.0333037768603902 0.023332517583835 -0.00419615821718095 -0.0105860554422823 0.0614107634063085 -0.0510580316190927 0.000509919988535413 -0.0411365935855015 -0.0549792625081292 0.0209009482392375 0.0171594332916255 0.0121449877546965 -0.00935031584967006 -0.00572081593462212 -0.0423051131761888 0.00473425282175886 0.00355899565153884 0.0304136913317859 -0.0213772107002177 -0.0495288839225235 -0.025244363040724 -0.0182183984494272 0.00424476551786016 0.00781200027813735 0.0150899538007608 -0.0224627423009827 -0.0283292540448113 -0.0519768410860092 -0.00905126820250525 -0.0371038675897 -0.0191616093295012 0.00570149085769733 0.000236945143714594 -0.0411056965751305 0.00981357307024499 0.0597838990052878 0.0526366791336449 -0.0412020774199395 -0.0186632754908426 0.0423674443560273 0.14154251441125 -0.0257543031856325 0.0355431834411642 0.00778314244769228 -0.0118716990852924 -0.000643103111003139 0.0391398813920412 -0.0088824877984437 -0.0547321694988847 -0.0400231654986327 -0.0221586677534114 -0.0346609844466083 0.0350131702620375 -0.0313913115933475 0.000808684862767126 +-0.00897367283626589 0.852387837220944 0.0116195940398918 0.023175918515526 -0.045091553535061 0.00166851200594465 -0.0163611334632232 0.00138517092740598 -0.123707907828231 -0.021813259952112 -0.0903160951460663 -0.00200854678286711 -0.0537558873217658 0.0143841935492206 0.0368430479262303 -0.0395838723243542 0.000541351824219532 -0.0703892605918068 0.0033050020647334 -0.05726216432793 -0.0352475592464272 -0.0595252001364144 0.0181684663667807 -0.0508576209211198 -0.0316110046062659 -0.0271348216561872 0.120664206815309 0.318905596082122 -0.0377849498231855 0.175602268507254 -0.0541773889254309 -0.0526962420234891 -0.0557899324225532 -0.0481616261950473 0.00855026418947975 -0.0886609894110039 -0.00835531823435903 0.0771461254044205 -0.0334035876243836 0.0797013518273447 0.0367133469121138 -0.0143354625511503 0.0106527535392713 -0.0474350822377529 -0.00613164865166701 -0.0362094071806555 -0.0702598969359386 0.240447358988018 0.128181737419967 -0.00827024089330612 -0.021825560528729 0.135604661247755 -0.0644381932978726 0.0335511701601847 0.110617606380727 0.00727377876074632 -0.0820878245234639 -0.0219848501900818 -0.101266281857485 0.13127315471291 0.241513926970115 -0.0721321114129478 -0.0243042585833433 0.0101255699185804 0.118485959463755 -0.0174799550493797 -0.0301808876134331 -0.0839594825143633 -0.0417808339013769 -0.0936856650310469 -0.0232822672796782 -0.0659552185385168 0.0507809779134087 -0.0830950529880663 0.169018619802813 -0.041915881967416 -0.0675525879032064 -0.0390297133326286 -0.0544962460406102 -0.0160387815048281 0.0171746709822454 -0.08164891411159 0.0314367695373425 -0.0359711231297472 -0.0308372669889665 -0.0151408794729004 -0.0917180369958901 -0.0357288671949247 0.0234370812148061 -0.0111218107609652 0.0290866409473459 -0.0643928397568698 -0.0486406882041334 -0.0413589217425085 -0.0137774441543553 0.0606554935787704 -0.0714527573481672 -0.0552566443769704 -0.087642062627442 -0.103155361097751 +-0.0019057811609003 0.0116195940398918 0.857673072225886 -0.0143284585096962 -0.0557352169381143 -0.00680698905054354 0.0366797950497896 -0.0512937118689111 -0.0221368738654288 0.188077204513164 -0.11440089693361 0.147932579209498 0.00845566498109847 -0.0237757562362162 -0.0295848062964077 0.00909713546875751 -0.0166945433018283 -0.0325416096704618 0.140065381939296 -0.0577924771952759 -0.087114517768582 -0.0730295512927374 -0.0747314555663441 -0.0117223726213101 -0.0882411520235175 -0.0588353471166989 -0.13513835062375 0.0535599865747301 -0.0293342879666428 -0.0886223695049067 -0.0646342560205907 -0.01831082866782 -0.0530416562100469 -0.0639199672986437 0.0342813507334069 -0.0256151155098699 -0.0588909609438925 -0.0430036921604894 0.114597463209296 -0.00399199006052924 -0.0101917534716399 -0.050533868728508 0.429172626196013 0.0839568046882208 -0.0480043736882922 -0.0697251789537274 -0.0177636778971329 0.0149113372671364 -0.00940650822453573 -0.0131780108741643 -0.0484944019690006 0.0653486175102014 -0.0919828698625527 -0.0555211560087789 0.0154926862747172 -0.0497266194128567 -0.00141630402026421 0.121266836693192 -0.0637129439922193 -0.0660289356054985 0.0830706259039466 -0.0148884945148026 -0.0304595725710012 0.350518347086928 -0.122550052360995 -0.16961779242147 -0.0609853172942646 -0.00234691271371609 -0.0144065010973386 -0.00710675898277636 0.0612887886311607 -0.011695019743346 -0.0389871153704174 0.265026480254283 -0.085899747347947 -0.109008295686652 -0.0725795649809251 -0.021524899784081 0.011087573597087 0.00790300409189692 -0.0401613147141274 -0.0676437125941514 0.0394417034811423 -0.0369550169411611 -0.0480791912161906 -0.0411607999924857 -0.0948664822077936 -0.0270939980022448 0.3341022488539 0.00488603704850214 0.0317122140665424 -0.0395302575555708 -0.0301550993703615 -0.0180968142482322 0.0179487305870821 0.053056226789374 -0.0393365127758684 -0.0587499310546941 -0.0167607344266127 -0.0702890319939486 +0.00111582546501822 0.023175918515526 -0.0143284585096962 0.774071919230294 -0.0267485011355989 -0.0188532641690193 -0.0629244127498531 0.0828129721178146 0.0409461942562473 0.0100353128526609 -0.0167495870664377 0.0522807362055046 -0.0296140449419419 -0.0622341352177136 -0.102571946797002 0.00221110258391011 0.0101743103270432 -0.0382221277812583 -0.00619022039324826 -0.119094839879993 -0.0878848731033192 -0.0199377264865862 0.0613229106388917 -0.0543315449845862 -0.0941013010652686 -0.0473901646933404 -0.00298576053619553 0.0863710481644458 0.0113665563297017 0.0180255404885683 0.0108017654502611 0.113286615249529 -0.0697891022978526 -0.0273622189761668 -0.0165178975333708 -0.02840820089903 -0.0927971072017753 -0.0194062534516456 -0.0126376676947874 0.0946488630126467 -0.0327307548727763 -0.0523774148518163 -0.0524395409904819 -0.00921501632810494 0.238350608234989 -0.0701462551139026 0.0111354349140773 0.0330903423835137 0.134438889752835 0.0121418045676872 -0.13284712268374 -0.0526047897623828 -0.110319662175865 -0.0675275214754484 0.156609940513123 -0.0168069935173521 -0.0694406638412137 -0.00639946496248322 0.00595793652783166 -0.0198501914817715 0.00804011730533153 -0.0351993093056039 -0.0715877066009711 -0.0137867866884371 -0.0527161434373708 -0.0784900257315286 0.305916645695981 0.0654898793161011 -0.039877485854672 -0.0410619984463031 -0.0426534785097224 -0.0800114112169868 -0.111477988754326 0.000523461390327693 0.0263122415077954 0.0645416738602091 -0.074228054415566 0.00995152758746856 -0.154588215186387 -0.0206815550313775 -0.0094290798568845 -0.0976195183915148 0.0854680804427267 0.287302118246805 0.0834593751303025 -0.0968808582236434 -0.102601543374348 -0.0111428644192809 -0.0245943381729895 0.000950577279684761 0.315539050607303 -0.0732951489350867 0.0426995090206093 0.117261818423127 -0.0744328539818267 -0.0682813094089885 -0.065763227900763 0.0626255665421573 -0.0299343891362732 -0.0258985696241471 +0.00850493880443534 -0.045091553535061 -0.0557352169381143 -0.0267485011355989 1.04344677981645 0.0584741625644821 0.0174524027667379 0.0264487156935164 0.110327965494959 -0.0361577828346211 0.0274598816441133 0.0827747579294784 -0.107838040784462 0.06128259412267 0.0101377111523756 -0.147728215196159 -0.0498823475876267 -0.0225989996001194 -0.0851809461885168 -0.0553893468444248 -0.0602466093882964 0.0576080050593032 0.00340607005011254 -0.0400618316108331 0.0100782549009861 -0.0102275471870499 0.00169704884104808 -0.0742351067405036 -0.0280959216888073 0.0524433758668631 -0.0966821544103861 -0.000455363770135955 0.0510995078121645 0.0509107892156798 -0.0812282035409215 0.000290541785942333 -0.00229472558644553 0.101121293755184 0.00370706590751972 -0.0683637499904836 -0.104637026734027 0.0344043985593807 0.00738501520372721 0.0982384087260992 -0.0819020336601388 -0.0737784560807881 -0.0714451410754389 0.0043352358081729 -0.116707734344371 -0.0692333071605332 -0.0244798443721786 -0.116801541446723 0.0586318908614081 -0.0809965025101941 -0.0382399924476631 -0.0137369403282573 0.0102653978244164 -0.0832190792755184 -0.0147716700069698 -0.0104211172668162 -0.0452674161296658 0.381233049482316 0.0974533173007556 -0.0266506919707471 -0.00581986796689013 0.0923653572176273 -0.0645388301059669 -0.0400176291271858 -0.0510597034366237 -0.0542921442007698 0.140537141073253 -0.0469487575349543 -0.042205816711613 -0.0175453483920164 -0.0197104671015724 -0.0439349255464198 0.00667590816714995 0.276850161512337 -0.10953666829053 0.0600258138638933 0.0170960525885839 0.0900899491687317 -0.0469164138754726 -0.0743925542373794 -0.0508469706950423 0.0349028849670147 0.0559437984154197 -0.00912351829396349 -0.0843840544856331 -0.0401631109797223 -0.0655750438971756 0.0149659775700006 -0.0729726696468714 0.0128482995717833 0.0099075510832418 -0.10411503992328 -0.0542769778501417 -0.0415267358857219 -0.0828224910415079 0.206862506355744 +-0.0237576171911034 0.00166851200594465 -0.00680698905054354 -0.0188532641690193 0.0584741625644821 0.826625688939414 0.273564789179593 -0.0364848668845554 -0.0420196319130554 0.103355027270238 -0.0665744578978925 0.150958845976401 -0.101818007017841 0.316674453772353 0.311707303390145 -0.0631337969746 -0.155547001988571 -0.164011356880491 0.0402471472528342 0.0508839499304214 0.0343441257856028 -0.0849056712524456 -0.0288670580728226 0.250148834252904 -0.0445117078171029 -0.0476762790643014 0.166837224590304 0.0376596414197048 -0.0450235471359383 0.17159508392951 -0.0419197283489303 -0.0366191278710522 -0.0855381327676041 -0.0617739744707044 0.309009044722717 -0.0519012186917726 0.0655417786132639 -0.105803410569246 0.099479280713227 0.00213975320596997 0.227536785578305 -0.0567091586687919 0.0948180159468084 -0.0366445769942717 -0.00736694370116684 -0.155904054084348 -0.0868526832591872 0.0102054217922864 -0.0444379539923503 -0.159959737013733 -0.012256194780716 -0.0324896709898718 0.122885899401413 -0.115639911829191 0.035563588463366 -0.045797095734262 -0.170202915808109 0.0450941929127345 -0.0747659180095134 -0.02314217301248 -0.0177665664985354 -0.0295747865116326 -0.0660888908275196 0.0287672064309623 0.107725033942498 0.178209862012673 0.0153747702313985 -0.0929272090593362 -0.0550654156299066 -0.124001586419269 0.066503195137216 -0.111774738583278 -0.0225653225230573 0.0744183839290297 -0.0872249579192109 -0.0561742070652019 -0.137132690511085 -0.0226008351815484 -0.0698476234508024 -0.0805309542239622 -0.0273121977486218 -0.0729515168337422 0.0282533686966246 0.0065447986205864 -0.0642454403508167 -0.175524158422012 -0.0858855016734084 -0.1064990922881 0.0663583852649528 -0.0820676984331966 0.0155651193153875 -0.146021681641479 -0.0362162013700892 -0.0177726683708061 0.260474780553278 -0.0455495611425198 -0.111415359226998 0.00183522571054492 -0.0997681420913968 -0.0763942636399493 +-0.0499804686822396 -0.0163611334632232 0.0366797950497896 -0.0629244127498531 0.0174524027667379 0.273564789179593 0.855897319943752 -0.11077419825361 -0.0340263043924273 0.103253392194239 -0.0532027713024827 0.0538569750397535 -0.0865219868196241 0.245626245767714 0.391664835533003 -0.0287020490416772 -0.092938721966371 -0.102510167354615 0.0874824489159266 0.057225682729744 0.0555868605383095 -0.0817005050444785 -0.0105254091304785 0.353908368441523 -0.0328553549419979 -0.107683983014371 0.0866290801930553 -0.0192880430603823 -0.121615171746999 0.174664226781208 -0.044456228865914 -0.0492145979846702 -0.12265463461749 -0.0967296223006423 0.331867138412937 -0.147826796709679 0.0534089981324219 -0.0685310323243062 0.0416955511644277 0.043491778796612 0.259359693964861 -0.138243600195286 0.0746194806435117 0.0211026174000468 -0.0148359437988125 -0.140187903677666 -0.114854946938121 0.0170296354116533 0.0134687965166191 -0.173093906242371 0.00750559103730766 0.00554383332882076 0.284517945245347 -0.0484563561593008 0.0433240602278137 -0.0293442225047024 -0.152165194949314 0.0642977398488052 -0.10875079252584 -0.0481004724367138 -0.00346094278099868 -0.0633100805282704 -0.157617790675974 0.0781112576625884 0.111870581380097 0.00650881672460408 -0.00539219328182961 -0.0440527034104941 -0.072478069572802 -0.161224668366965 0.0736276582765375 -0.0546285438465597 0.0532424643351614 0.0780568883761624 -0.114622793283294 -0.0279136326669313 -0.104580826085898 -0.0842930682398488 -0.0277896606141904 -0.113595529680008 -0.0858095957703832 -0.112062749410367 0.0366496553677462 0.0102426431423152 -0.0438294841862086 -0.182693796142183 -0.149795035416277 -0.123376338088135 0.0753702632580752 -0.080946378861042 -0.00236188775285111 -0.100754140121321 -0.069536244803729 0.0024533308354535 0.369881811512388 -0.0106742021947062 -0.121060365753603 -0.0241734868805046 -0.0335024499311229 -0.0657134826244816 +0.0356165792887391 0.00138517092740598 -0.0512937118689111 0.0828129721178146 0.0264487156935164 -0.0364848668845554 -0.11077419825361 0.780286943282871 0.0293089148077251 -0.0910467109123165 -0.0272386950681295 -0.0385604304534988 -0.0541179626841356 -0.0497037178223688 -0.117662264927801 0.0229662977532241 0.005848688707946 -0.021065013358329 -0.063180355221431 0.00534576056496931 -0.0342731203116097 -0.0136168704877246 -0.0243982733830666 -0.0938570576484375 -0.0533123293972526 0.12351212937185 -0.008761851028021 0.031133354287114 -0.0410146974366421 -0.00987718118223435 0.0190072525576467 -0.00674823603666887 0.146121995678758 0.12266693915967 -0.0155962998041069 -0.065803856723849 -0.0450444380988478 -0.0201093234614017 -0.0630734174230231 -0.0121103269526709 -0.0872659567752288 0.0157879642897949 0.00568291587428638 0.00425820330761432 0.0991783357819749 0.0287193837973423 -0.0589956457633019 -0.0123644554245227 -0.038552758382569 0.0966881901489075 -0.0894316908648212 -0.056492226694871 -0.137424127818174 -0.027739311288528 -0.0428417568909458 0.204544172961328 -0.0299956153398741 -0.0672380746328055 -0.00776358986901384 -0.0048651913230925 0.0187552526383706 -0.118549054747143 0.113531368926285 -0.0559896179761865 0.0120825587665654 -0.0223978663600544 0.0593878664983183 -0.0464403134196989 0.0393014527455145 -0.0242544767769595 -0.0667981147987293 -0.0737562196385653 -0.0600326615236558 -0.0574854972215105 0.00637995172060935 -0.0191702245697158 -0.00202281185731103 -0.0399091651267679 -0.0110597077204124 -0.0365346654453308 0.161990572719185 0.104019744620451 -0.0224594923382272 0.0969517826393285 0.00485184654263687 0.141960895695471 -0.0584202875440289 0.0920268061963449 -0.0710821340423086 -0.0821750056856646 0.0708125300485224 0.067406311081243 -0.0586125725259177 0.0440872429754268 -0.0711522419271293 -0.0531939880266932 -0.0592592038148384 0.236664503885876 0.0485929262478732 -0.0652399834132554 +-0.00330822695779614 -0.123707907828231 -0.0221368738654288 0.0409461942562473 0.110327965494959 -0.0420196319130554 -0.0340263043924273 0.0293089148077251 0.981489405762232 -0.000194734748797987 0.150084999275284 0.025572848983136 -0.0684950170268723 -0.0970569722060623 -0.0823693316107141 0.0178753124318396 0.0110628679768474 0.0564198553921832 -0.103172055373817 -0.0120273853431544 -0.0110692567931745 0.219219079228683 -0.0300143177814941 -0.0452929638011595 0.037338177132317 0.0275321461630398 -0.0957436309402344 -0.139239918420216 0.0284343606185464 -0.0645150968257836 -0.0290523485294229 -0.013013275508493 0.0991877267131083 0.00826544208564488 -0.0959581936623048 0.00609314100990773 -0.0388996514482967 -0.00128860206600822 -0.112823587299874 -0.0352892483666841 -0.0699514300940031 -0.00194323822137018 -0.0465801830308193 0.38340324851337 0.00576098748284974 0.0160200209615406 -0.136211379255646 -0.110270221207507 -0.0126481389744432 0.0386082573669955 -0.017685794369673 -0.0561872132928705 -0.0169934609657174 -0.063034450635222 0.0253702353692646 -0.00153944124234748 -0.105430972532777 -0.0879308364030307 0.0632248278685034 -0.0212183772572303 -0.114471190883669 0.0561244898172417 0.0351286013883935 0.0222160224021411 -0.107241313735622 -0.0039033254169453 0.0277858626419219 -0.0126239306404005 -0.0632259668282641 -0.107162295770539 -0.0179662882141484 0.0222116306678852 -0.0158334927019403 -0.0158017709658088 -0.0129051288994077 0.0784826174077926 -0.0610237479613586 0.115619906855333 -0.0307209373245175 0.05070048717511 0.0486364100111006 0.0556201106517495 -0.000645676739244862 0.0111351342704091 -0.0249889838102441 0.0302370231491324 -0.0740585882605964 0.0481689050128767 -0.0223917737742041 0.0239486512787538 0.0182651714731278 0.0640550852183117 0.0877620686297415 0.103569532414217 -0.134997206858502 -0.100358578401365 -0.149341786388233 0.00940526773898869 -0.0521874016708529 0.0800036422495982 +-0.0428155444631088 -0.021813259952112 0.188077204513164 0.0100353128526609 -0.0361577828346211 0.103355027270238 0.103253392194239 -0.0910467109123165 -0.000194734748797987 1.01799855781055 -0.0490211609153961 0.415770369033542 -0.00415206554138345 0.0512582629431818 -0.00681700974949034 0.0385343779932752 -0.113765295215445 -0.0950416905555886 0.153587125117955 -0.0692734800683658 -0.0242095663409647 0.00371684506258808 -0.0518804322982266 0.0959648078067354 -0.0637149727664616 -0.148247408281957 -0.140612805275862 -0.0176268641139672 -0.0792320140235875 -0.128509635457952 -0.00868932927927769 -0.0499754120268128 -0.0934186378531058 -0.101847464695196 0.0390585823156084 -0.128620336743031 -0.078622719481635 -0.0851278283766932 0.15610317066973 -0.0168702532436913 0.103378037005459 -0.131701740936491 0.0453681548833243 0.0230411029529586 -0.0186017680241679 -0.0976405390078011 -0.0418390921039219 -0.0253548321512696 0.026339722157509 -0.127898003261741 -0.0492136346235967 0.0734227226164431 -0.0873508258685893 0.0461222899960295 0.0060113917486396 -0.0211136045925095 -0.0152114289481854 0.121946613083263 -0.0485759020015665 -0.016144951959765 0.000419363235517357 -0.0469258228541015 -0.0719633939638973 0.28824936622053 -0.111470665382865 -0.076732620745886 0.0559276896905375 0.0406743353336288 0.0211622281397668 -0.0569810692109499 0.182207103820288 -0.0420577921402437 0.0354384918789219 0.198673717448889 -0.0984536665867968 -0.084049803292166 -0.101827602114104 -0.0397968713916073 0.0236347334470499 -0.0285246479076065 -0.0761040277167194 -0.0898496948354053 0.00163796436395798 0.0335634382999034 0.0253582998381726 -0.157973521558358 -0.111452348271874 -0.127594036130259 0.197848796827344 0.201443622927318 0.025778294500781 -0.118817320593155 0.0520201094280373 0.0284108938708961 0.0149007247046417 0.0531572041402184 -0.105415464976667 -0.0703795030120257 0.0273004334511554 -0.0853956903052865 +-0.0359489131655809 -0.0903160951460663 -0.11440089693361 -0.0167495870664377 0.0274598816441133 -0.0665744578978925 -0.0532027713024827 -0.0272386950681295 0.150084999275284 -0.0490211609153961 0.931065269694768 -0.0746936408736152 -0.0408883095982943 -0.0448757713620914 -0.0831844192515992 0.0371222606731899 -0.0434613796471207 0.0405034712180084 -0.140876970299298 0.00961832407793511 0.208251453690301 0.191734128887724 -0.0635427392306112 -0.0305319095299076 0.343706065545374 0.0340408025578141 0.0226819781264646 -0.0876992091397588 0.0232848581469114 -0.0132243153983843 0.0362906757493828 -0.106571655913519 0.0244468123892832 -0.0212409690512757 -0.0291950039642686 -0.0299012328118449 0.0380989556745279 -0.0608781497047261 -0.141317695883156 -0.0509455867564189 -0.0858811166407899 0.0113865486359588 -0.106986916636785 0.0649373302696166 -0.0788389079448744 0.0688004755021778 -0.0979683335153129 -0.0502829367963009 -0.0335081385380936 -0.000452944584055894 0.193491881770054 -0.0750423252805074 0.038240095965207 0.0827332476812594 -0.0362024550966288 -0.0347525468108172 0.00601175746438672 -0.0807253066996056 0.041740063431925 0.130383857553863 -0.0686446542802643 0.0168219292101809 0.0390857689761332 -0.0937065433876403 0.0128358254556051 0.0516193993706004 -0.0496295090381781 0.00158958685925546 -0.101695812695935 -0.0191856082047115 -0.0399146045664405 0.069323993371305 0.0202757523812389 -0.0868090329250578 0.177875202317443 -0.0171572466617767 -0.00496190031896037 0.0319611114636013 0.12957411594421 0.00887241488657865 0.0155303091333158 0.0837058780940913 -0.0437576689118545 -0.0719810372050311 -0.0981384054702785 4.85635959847609e-05 0.0522073090713513 -0.0189442602147323 -0.117685978708475 0.010976813923934 -0.0522860917883641 -0.00859363847962669 -0.00649762560427885 -0.0274522283773534 -0.0768878923436938 -0.0697953017787637 -0.0211595338522251 -0.0410259266656617 -0.0264268169927876 0.0814751931570147 +-0.0249235157566114 -0.00200854678286711 0.147932579209498 0.0522807362055046 0.0827747579294784 0.150958845976401 0.0538569750397535 -0.0385604304534988 0.025572848983136 0.415770369033542 -0.0746936408736152 0.996611924698267 -0.107103417339234 0.102395991134812 0.0562451420103222 0.00228231035787408 -0.0737806687313882 -0.107096843144301 0.0855230141319238 -0.0285016678678029 -0.059824811052267 0.0117894407469745 -0.0854201247361978 0.0613999406977444 -0.110525933394852 -0.0592264224282355 -0.101154783904307 0.0797792473298229 -0.0549229653345117 -0.0929540069280062 -0.0148730870255231 -0.0247882341551247 -0.106310452770461 -0.0473827309338169 0.00346250042832436 0.0239422708494649 -0.0435749517685629 -0.06052491381922 0.13309250241852 -0.0253022956246963 0.0248900341335835 -0.109226181057402 0.150664768981855 0.0281606109673939 -0.0302938444162809 -0.0865805569271703 -0.0691043073620155 -0.0034096418638285 -0.013339170780834 -0.0932236587676025 -0.0356037553898148 0.0229214064329588 -0.0977954039148735 -0.0399808902588419 0.0455573331934719 -0.0209640190618739 -0.122970163771204 0.0968598015822155 -0.0518508013075593 -0.0389102948221944 0.00519539434166973 0.00598464915035281 -0.0528359284952873 0.143978286197329 -0.112145994373637 -0.0752720432501561 -0.0121589727871192 -0.012210980267311 -0.0577626737716265 -0.10975352097076 0.193228924896325 -0.0853242332940581 -0.0345589930207627 0.195518287431402 -0.0632271084602118 -0.0752089842873172 -0.115188725795153 0.0661508333915354 -0.0666823176071666 0.0272310034596306 -0.0634937603614729 -0.0648758007251856 -0.0101606330611615 -0.00368098783826666 -0.0305190735107805 -0.171819155729484 -0.0942247983552784 -0.0777460628128358 0.206652006649201 0.150500380807321 0.0433491957290849 -0.0716801699489185 0.0188609181019767 0.0152893023921278 0.0315877747641991 0.0280382489635119 -0.170816086466176 0.0664834808366127 -0.0231329901546224 -0.0411533298037522 +-0.00721117420205786 -0.0537558873217658 0.00845566498109847 -0.0296140449419419 -0.107838040784462 -0.101818007017841 -0.0865219868196241 -0.0541179626841356 -0.0684950170268723 -0.00415206554138345 -0.0408883095982943 -0.107103417339234 0.936972827865467 -0.0969073612087532 -0.108381336942127 0.0377357559454435 0.0973425342806864 0.0306814346114878 0.128986033639392 0.0106828471164685 -0.107425538442196 -0.0266876300481748 -0.0118605748911939 -0.0985438331151991 -0.00957427878372411 -0.00798175284469117 -0.106009610688282 -0.144027346074402 0.0141242557289528 -0.07870885940534 0.0313755268698634 0.0239693293170771 0.0760495864102952 0.0986634279762826 -0.0699466295839657 0.0280553410470457 -0.0163858908850437 0.028885438432019 0.0868921946675293 -0.0674046242465574 -0.037458960938285 0.0311612143042519 -0.116904670193035 -0.0829121544338592 -0.0943711035436117 0.0438812379515199 0.224315951151813 -0.0592021711810903 0.0106897169726582 0.0316187525056828 -0.0874107528071399 -0.0497280633529208 -0.0329031490738657 -0.0189693341655922 -0.00386388958587371 -0.0562259969520381 0.239942036052073 0.0980949732093683 0.0854035987956128 -0.0376949446517507 -0.0637893645257218 -0.0368803847410105 -0.0148962604035824 -0.0375543323210307 -0.0119780979292073 -0.0373162474816709 -0.0816294399304886 0.00482479200783341 0.00543276904556217 0.193502359134681 -0.0964472886038923 0.0597480325599021 0.0940673654243207 -0.0225251252353712 -0.0256751904991947 -0.033686780842145 0.174294802628768 -0.0990032667068767 0.00345052572550485 0.0403414061037786 -0.0841871780491887 0.0437971695604667 -0.0393248612724587 -0.103610006923668 0.028745401352779 0.100968627307761 0.209592488330378 0.0368317782682955 -0.051544967974164 -0.00228436365309111 -0.0612084254567695 0.0559321237303893 -0.0122236217345858 -0.040427218888564 -0.149949520533294 -0.0295132347835984 0.252906545600347 -0.0298977239201533 -0.0248893532144148 -0.0285336597623604 +-0.00609430211880385 0.0143841935492206 -0.0237757562362162 -0.0622341352177136 0.06128259412267 0.316674453772353 0.245626245767714 -0.0497037178223688 -0.0970569722060623 0.0512582629431818 -0.0448757713620914 0.102395991134812 -0.0969073612087532 0.844570630470536 0.299240516336205 -0.079292334913376 -0.132836809456127 -0.16724366701846 0.0895095211850462 0.0735590926258692 0.0320107405275529 -0.107010768976815 -0.028014425072324 0.317345940838745 -0.04383642797024 -0.070678440309692 0.197606174531184 0.0212404851895533 -0.0493240842017503 0.169543573319789 -0.0443097754116049 -0.0794154152770668 -0.0641002275880508 -0.0564325060637812 0.252610044124646 -0.0461685326528117 -0.0257584002949083 -0.097483091127808 0.132198456021111 0.0316013654185264 0.183796143197309 -0.086202522127388 0.133931759080555 -0.0593441682103162 -0.0588749392804855 -0.160688726551305 -0.129368054334391 -0.0115887985012331 -0.0626481044631776 -0.101385211071598 0.0124405200693637 -0.0207709214570484 0.166233759328264 -0.0514251613044873 0.0199986357642327 0.00875919626901734 -0.138991709905524 0.10902288397694 -0.0780903642334167 -0.045484346625819 -0.0192387690245155 0.00231967807954596 -0.102632551344346 0.0333650462154672 0.0864315955074781 0.170424826617625 0.00356283460893586 -0.0990466764927083 -0.109326500229772 -0.116692099483021 0.0366099803452795 -0.0581589560245902 -0.0807775693632144 0.110007957807196 -0.0699483761625879 -0.0760456145402258 -0.117170879623527 -0.0273916654424857 -0.0303571030044694 -0.118342756469791 -0.0382681324865256 -0.0491098064415264 -0.0254473364662722 0.00256337873201512 -0.0493036755754636 -0.137054131304891 -0.123190782745469 -0.154537617467901 0.0278431489631014 -0.0475983147116404 -0.00197283981529565 -0.13934371286083 -0.0143400194336083 -0.0212488192786524 0.374615103725806 -0.0651182864978313 -0.0825888061284641 0.0149024937435985 -0.0737762988810466 -0.0236095961267314 +-0.0241886296069255 0.0368430479262303 -0.0295848062964077 -0.102571946797002 0.0101377111523756 0.311707303390145 0.391664835533003 -0.117662264927801 -0.0823693316107141 -0.00681700974949034 -0.0831844192515992 0.0562451420103222 -0.108381336942127 0.299240516336205 0.919813806106119 -0.0690068735529648 -0.0824290619348572 -0.0940940422048547 0.0616459823182886 0.0675177648589967 0.0651485643098298 -0.0609352534012849 -0.0442751473147244 0.316426677270622 -0.0327122286484497 -0.106878950271804 0.171442789866632 0.0664300133419775 -0.0650531342083204 0.0931158702487049 -0.0604444282480262 -0.0544868147670307 -0.117862349028981 -0.0659485876577582 0.233752865029858 -0.0648601754275947 0.0629344102795251 -0.0535528389446417 0.111144951134127 -0.0126943823189729 0.237346215774479 -0.0664462646864593 0.0952774858289589 -0.0233878884417988 -0.073593811906998 -0.0750610308545552 -0.0958245219229184 0.0474025104397319 -0.0258358855166498 -0.139682763380869 0.0213053290630016 -0.0057902717439794 0.158836789381581 -0.0166753530484032 -0.024678628699387 -0.00761675834703794 -0.139844154313147 0.117876292990837 -0.10400454754281 0.0227754824397191 -0.0403488515447582 -0.0292914370370226 -0.121878046326721 -0.0121495954346027 0.116747422702968 0.0127138765690999 -0.0583343567289781 -0.0825577918765044 -0.0421362078407363 -0.135894664400473 0.12606500979885 -0.049525748018563 -0.0464096059504753 0.0546475127109283 -0.00474696364700216 -0.0285751291830732 -0.0505900785330112 -0.0267160134315841 0.0137814729530687 -0.0775776641545625 -0.0417366332904245 -0.145232678311654 -0.0310131829002861 -0.0193126077580354 -0.093352482161504 -0.158452906941738 -0.0931206438855947 -0.117311832707458 0.0697373499016705 -0.0815096212283737 -0.0375874449962222 -0.121124093510439 -0.0590379227752099 -0.0926405172877795 0.3385129574414 -0.0188897473521471 -0.0939789322449218 -0.00411123186733595 -0.0727958850910053 -0.0814279672636849 +0.0171283125352219 -0.0395838723243542 0.00909713546875751 0.00221110258391011 -0.147728215196159 -0.0631337969746 -0.0287020490416772 0.0229662977532241 0.0178753124318396 0.0385343779932752 0.0371222606731899 0.00228231035787408 0.0377357559454435 -0.079292334913376 -0.0690068735529648 1.01746141254737 -0.0373054555747016 0.113076150655591 -0.00923063388175871 -0.00975805651470275 -0.111610050070003 0.0447844070903423 0.0264293149674026 0.0189864881176752 -0.0574992275425143 0.0286628312321485 -0.136667919150832 -0.0622225108217506 0.147875110248737 -0.0853874071735914 0.493618388161021 0.00116214484308169 -0.0184567537989371 -0.0291515899973373 -0.0557267243107068 -0.00108050069659539 -0.0681832217094926 -6.94870757821578e-05 -0.041070722631103 0.00924925696372486 -0.0625006167968562 0.0422579005776371 -0.0440389625171225 0.0136636749254451 0.0540972986335619 -0.000107094459393253 0.0620127366661659 -0.128827231667211 -0.0100650768725218 -0.0302104497403177 -0.0738938745251251 -0.0280444772642929 -0.0304226139490323 -0.0513391968840202 -0.0446621752203914 -0.0745304987099158 0.0382616237176042 -0.0571318275008044 0.169976542307287 -0.051702539931532 -0.0742294922639575 -0.129926424672019 -0.0693474299690917 0.0160623372331978 -0.100238056846979 -0.0705326873725403 0.0333881653148109 0.0807093286341092 0.064396635129512 0.0835529606025964 -0.0704798992654798 0.00367777315358589 -0.0962907682366826 0.0240570760479759 -0.0979189530816728 0.0155530851026305 -0.0497193312452489 -0.0721738330016904 0.0233915934898606 -0.0492977184886677 -0.034968608834337 -0.0297658753623649 -0.0648413514642765 0.010971442604511 -0.0251465731194857 0.00509253117012535 -0.00577857579435035 0.0647256156968637 0.062493894758599 0.0403660230660227 0.00211232865288482 0.00203275187103675 0.202007388305582 0.0133476299970134 -0.0700847392663635 0.00781550629144894 -0.0159588197072784 0.00417540294869807 0.0396143126536924 -0.100595173228303 +-0.0370113074458357 0.000541351824219532 -0.0166945433018283 0.0101743103270432 -0.0498823475876267 -0.155547001988571 -0.092938721966371 0.005848688707946 0.0110628679768474 -0.113765295215445 -0.0434613796471207 -0.0737806687313882 0.0973425342806864 -0.132836809456127 -0.0824290619348572 -0.0373054555747016 1.01767409871844 0.308128549874988 -0.0500507495579795 0.0506139411479575 -0.0267739266143147 -0.0118098546444746 -0.04149114459161 -0.0969149498408066 -0.0924583994963409 0.177845306601215 -0.0450039212252052 -0.0273248486721078 -0.00155713155053537 -0.0802638643473823 -0.00338485094614494 -0.0199191213657667 0.0619268906341472 0.0990676142811327 -0.052950421436256 0.0200854808706438 -0.00464283202620787 -0.00635044352236388 -0.0643420037202614 -0.0688223363590321 -0.0318429724743378 0.25504767875654 -0.0513387216450151 -0.0205495466048082 -0.0187745649733965 0.431635933032899 -0.00519193310299082 -0.0648250006975423 0.0405404062749875 0.165654308784336 -0.0217323603066589 -0.115781178859652 -0.10183005945937 0.000552501530517498 -0.0283270479020079 -0.0488808152567648 0.0635189852802382 -0.0587056453762142 0.0457415527482676 -0.0303751074246492 -0.00958956721314832 -0.0135800360981446 0.00144765393064754 -0.0685766854585797 -0.0102505571826698 -0.0818979335811703 -0.0634967378119528 -0.0405198951054889 0.0105734158618604 0.0467830486945929 -0.0652074522978877 -0.105975242197909 0.0501785347802722 -0.0884319904034468 0.0288718398760898 -0.0552664681322748 0.0969124792048966 -0.0574874996944902 -0.0149231142050114 0.0136889789507199 -0.0554202049111477 -0.0639190231201848 -0.0826906821780154 -0.09432747400688 -0.0548709837517765 0.0199486619589717 0.071747531118433 0.158403461660521 -0.105798120893753 0.0269151434604788 -0.0328404838129954 0.230511028557534 0.0159273521818421 0.0144821664088039 -0.106525874807048 -0.0831931339208166 0.0741154334895952 -0.0335706215820424 -0.00314116738184983 -0.00370685527953247 +-0.0382049224231878 -0.0703892605918068 -0.0325416096704618 -0.0382221277812583 -0.0225989996001194 -0.164011356880491 -0.102510167354615 -0.021065013358329 0.0564198553921832 -0.0950416905555886 0.0405034712180084 -0.107096843144301 0.0306814346114878 -0.16724366701846 -0.0940940422048547 0.113076150655591 0.308128549874988 1.03223139947148 -0.0750528898588021 -0.027707158295074 0.0274450255145465 0.0609120857348898 0.0062723818627904 -0.147545251212635 -0.0279019836062039 0.252347938155003 -0.0573410917687149 -0.126162078095313 0.00905149268276531 -0.0936053931188894 0.114556546674545 -0.0122804213971261 0.0247399431387635 0.00712367048502392 -0.104554306818006 0.00795007688297308 -0.0464206500510534 -0.0211694748375162 -0.136586437985526 -0.0400970627453355 -0.0858380177186769 0.187768823409966 -0.0444498905851241 0.00773017123280658 0.02764041570779 0.484945495651082 -0.036052822764949 -0.0886454205035542 -0.0230209248431613 0.099036435385609 -0.0588825110830937 -0.12461902793219 -0.0690543470642255 0.0391136837674379 -0.0739836355009889 -0.0137897123994747 0.000399081697461523 -0.145803389699334 0.048205368515463 -0.04351723864459 -0.125660643449921 0.0370190213172795 0.0504228397422653 -0.0669906224412474 -0.127339258994769 -0.0448363177186768 -0.0376045252868316 0.0208418552024716 -0.00398192842107511 0.0355964911424687 -0.108662334536845 -0.0149885672392643 0.0303236668032662 -0.0120338537942086 0.0326631038320055 0.0175953883888232 -0.00539157627701579 -0.0407682630346435 0.0775736083657618 0.00855063792525638 -0.006157896149537 -0.0534708785656439 -0.044175691300854 -0.0189256966970216 0.0145232025581373 0.0571794367066297 0.0416869140666824 0.280933385648845 -0.074027919389387 -0.0607615513162407 -0.0678470158963801 0.276819847854656 -0.0393478389200008 -0.0362751706770364 -0.074649090565095 -0.105014392884974 0.0452558128413937 -0.0258708054117776 0.0219451729116167 0.0371063749612906 +-0.0110789796300134 0.0033050020647334 0.140065381939296 -0.00619022039324826 -0.0851809461885168 0.0402471472528342 0.0874824489159266 -0.063180355221431 -0.103172055373817 0.153587125117955 -0.140876970299298 0.0855230141319238 0.128986033639392 0.0895095211850462 0.0616459823182886 -0.00923063388175871 -0.0500507495579795 -0.0750528898588021 0.782094932828294 -0.0443034941233968 -0.0797275688819465 0.000797587037219713 -0.0704155707311367 0.0418412784649736 -0.0399955941176939 -0.0803810371490913 -0.132962084335182 0.000413363878895732 -0.107318926724294 -0.138217223135277 -0.0741582705579008 -0.00241046710038563 -0.0543016578169686 -0.112837911882117 0.0520615704555248 -0.0797712334119874 -0.0584708552484179 -0.0755464873336005 0.247372555875685 -0.0145824257709366 0.0170245194312977 -0.0775766311037987 0.155822371161585 -0.00892160732758806 -0.0104893422311126 -0.045798360959398 0.126729698585313 -0.0607383900106459 -0.0157709205462105 -0.0692462297887167 -0.0572511789463095 0.0264386135924596 -0.0611600212035659 0.0275740767307411 -0.0152174888235151 0.00686326399997443 0.0623210391110118 0.245436755959243 -0.0937949818619069 -0.0558898002323526 0.00262348238764559 -0.0884385492418976 -0.0962089599836064 0.21606644877929 -0.0491833828711793 -0.0618355427339147 0.0126891867361839 -0.0169919257655763 -0.0505773851585084 0.0616328473547737 0.00511042700342348 -0.0586223576691473 -0.0281501477834944 0.128043650756898 -0.0879653861040943 -0.0918212474506431 0.120698327110911 -0.0520199996853502 -0.00228134268903575 -0.0171918313767813 -0.0645600452897568 -0.0164824831752834 0.0501021269845217 0.00461857441127714 -0.0480457257497478 -0.0913151359807268 0.117163969209924 -0.0721661197530335 0.117727675826748 -0.0176013293007918 -0.0246856517216017 -0.107443100490218 -0.0415232435806701 0.0378894170275919 0.100684908170044 0.0568764198401594 0.161310423990983 -0.0274900796120382 -0.0248110083971168 -0.0572660460334297 +0.0443783954727284 -0.05726216432793 -0.0577924771952759 -0.119094839879993 -0.0553893468444248 0.0508839499304214 0.057225682729744 0.00534576056496931 -0.0120273853431544 -0.0692734800683658 0.00961832407793511 -0.0285016678678029 0.0106828471164685 0.0735590926258692 0.0675177648589967 -0.00975805651470275 0.0506139411479575 -0.027707158295074 -0.0443034941233968 1.00034661360818 0.0904102496247122 -0.102337408323089 0.179731379265813 0.0915592234600244 0.0181675100100127 -0.00853808835746996 0.109016545687241 -0.0720167832068099 -0.0490466970638777 0.0052429756222704 0.0044438238120257 0.0695701829124519 0.0016143173685897 0.0328868711769938 0.0101582025865359 0.114567082151193 0.381901379720439 0.133965209180873 0.0201365224549137 -0.0358891563576607 0.0474611482763959 0.0319932275195099 -0.00222750563291582 0.00910374111885732 -0.0523101407045391 -0.0781919930652198 -0.0594313516954146 -0.139922286338054 -0.0820331215748268 -0.0450427317009664 0.150599618930788 -0.0608324596385361 0.0495711918745835 -0.124052394813858 -0.101741158784541 -0.0497286944303839 0.0104226072736545 0.0136559509583581 0.00164034534614305 -0.0570696261289179 -0.0789545620724662 -0.0580731981696686 0.00657543796384721 -0.0480013250035737 0.0800317864903617 0.109746313047789 -0.110148644023497 -0.070367632986749 -0.00663527111124922 0.00472922909793337 0.00243552188360696 0.0235102319114178 -0.103472195877032 -0.0259934800474516 -0.0682380482984431 -0.0240704018691593 0.0230559594028374 -0.0268879990040905 -0.103088517376573 -0.137745668576792 -0.0198383994657265 -0.0246287482194784 -0.132682855938839 -0.131926355992128 0.0709297540943224 0.167517230761834 -0.00697744806835752 -0.00357034087920372 -0.0590595642707286 0.07533519883565 -0.0992438430560188 -0.0167097989063175 -0.0761519386916171 -0.0711175232754199 -0.00275314659324793 -0.102499894952888 -0.0355902115390564 0.00604589111689117 -0.0541609081388927 -0.017361062480248 +-0.0515700529358048 -0.0352475592464272 -0.087114517768582 -0.0878848731033192 -0.0602466093882964 0.0343441257856028 0.0555868605383095 -0.0342731203116097 -0.0110692567931745 -0.0242095663409647 0.208251453690301 -0.059824811052267 -0.107425538442196 0.0320107405275529 0.0651485643098298 -0.111610050070003 -0.0267739266143147 0.0274450255145465 -0.0797275688819465 0.0904102496247122 0.87640143154539 0.106513284952248 -0.0751727876957324 0.0336041965578593 0.204071449406207 0.000675163352627292 0.0883965505044443 -0.0585036726119626 -0.0342486882181589 0.0154799768418002 -0.0389876757096284 -0.151728492503716 -0.0785170458809281 -0.0469579628476962 0.0887500855389398 -0.04916925056709 0.209551163440892 -0.0813135266371911 -0.0822098351151398 -0.0456459716589857 0.0387463342881158 -0.0296919205353084 -0.0763297393106558 -0.0120523043980363 -0.109436828924242 0.0454391096642726 -0.0755017960241217 -0.0529227900534051 -0.0794982451388313 -0.0252729662053937 0.424535048267284 -0.0385581388379442 0.111611922216016 0.142914607182533 -0.0595794062523965 -0.017614555869772 -0.0534314528635472 -0.0581839418014273 -0.0522044612427177 0.045795268642133 -0.0644445265255513 -0.0375438183408795 0.0121472497523871 -0.0469573261029125 0.0798441000449144 0.125208626134841 -0.0334883352457982 -0.0901115245307811 -0.0667100407563709 -0.0475819988601644 -0.046528107447338 0.0980662212548939 0.042168026375816 -0.0659987322382654 0.0955009702822504 -0.0544653259007377 0.00149347975096855 0.00769853309518306 0.185947909368819 -0.073310382495335 0.015752592013442 -0.00513612668215578 -0.0297149801312589 -0.0356830409399949 -0.0763457341994595 -0.0924633971254061 -0.00352625803900327 -0.0581878243220543 -0.0821289281868449 -0.00264813358141339 -0.0914576001383151 -0.0037032730551555 -0.0859528798922491 -0.0102335666557162 0.110747987323814 -0.0351923212542367 0.00123008385489133 -0.000205219342616142 -0.0702735765994709 0.0486490747086078 +0.0201813764050815 -0.0595252001364144 -0.0730295512927374 -0.0199377264865862 0.0576080050593032 -0.0849056712524456 -0.0817005050444785 -0.0136168704877246 0.219219079228683 0.00371684506258808 0.191734128887724 0.0117894407469745 -0.0266876300481748 -0.107010768976815 -0.0609352534012849 0.0447844070903423 -0.0118098546444746 0.0609120857348898 0.000797587037219713 -0.102337408323089 0.106513284952248 0.950219014246442 -0.0216686577603353 -0.0563628726830359 0.157602809119078 0.0615491412392318 -0.0878133316336151 -0.119478203701793 0.0311120567952525 -0.064158418694589 0.020443231552285 -0.0601567738226981 0.0190932748640517 0.00263445253767519 -0.0681914546295574 -0.0392977273485744 -0.0251476813408387 -0.0309661424071427 -0.0562216346802858 -0.0469676957950936 -0.0841412373152605 -0.0248926678887989 -0.0658190176057761 0.22122410975871 -0.0964217377688751 0.131127746129686 -0.0124707965282868 -0.0792599039453788 -0.00714273579598434 -0.0042005129125905 0.123861406155399 -0.0972962877198958 -0.0276750528912026 0.10071008371593 -0.0399392245095858 -0.0367316017525737 0.0355997565599918 -0.0460891455324602 -0.0193365081345285 -0.0479760184163321 -0.113250223785564 0.0252400290527806 0.0280124626893959 -0.0789590811123428 -0.0909353797757818 0.00909249757912082 0.0236516213014149 0.0195548235528012 -0.0267111431103628 -0.00253456519628706 -0.0501962910754976 0.0183113404110164 0.00737251002243092 -0.0872851543482158 -0.0378394856838714 -0.025841636376772 0.0152810007839294 0.0579842049060923 0.1143755791535 -0.00187386543540481 -0.00256166348897113 0.0628977641223187 0.0196403597414643 -0.0321401041678846 -0.0304866150451592 0.018684741910828 0.0189499710705224 0.0289488050008878 -0.0576220414332954 0.00138787010225455 -0.0558234527176789 -0.000383864108592224 0.052883271788792 -0.00694894096520749 -0.0898114218295519 -0.0345894053075778 -0.000533289114673226 -0.00613850841049007 -0.0542478124668538 -0.000235167892960296 +0.0898683746202261 0.0181684663667807 -0.0747314555663441 0.0613229106388917 0.00340607005011254 -0.0288670580728226 -0.0105254091304785 -0.0243982733830666 -0.0300143177814941 -0.0518804322982266 -0.0635427392306112 -0.0854201247361978 -0.0118605748911939 -0.028014425072324 -0.0442751473147244 0.0264293149674026 -0.04149114459161 0.0062723818627904 -0.0704155707311367 0.179731379265813 -0.0751727876957324 -0.0216686577603353 0.817035883040868 -0.0227688788459504 -0.135420124301945 -0.0969108339001623 -0.0191364780454577 0.00795390889543167 0.0102692172816004 0.0229731171761613 0.00897254926440423 0.250483931844848 -0.0460775685949028 0.0177907927496839 -0.021104666253079 -0.00209495827532339 0.165954754576297 0.192741874899823 -0.0410983913908773 0.168307343179638 -0.0261068210931821 0.0188459196172725 -0.0686718117411384 -0.015814374270624 0.134709491781703 -0.0892395469509596 -0.0426559363065222 0.00913985711486273 0.100840535088493 0.0190962317860392 -0.125894917869741 -0.0623857265578726 -0.0164193716205697 -0.130994161721755 0.133315300527151 -0.0434837813470141 -0.0454479547756097 -0.0960307644385246 0.00349710279627844 -0.06945468190939 -0.0641644538589718 0.00872647628675581 -0.0294781183038984 -0.0654255009641026 -0.0196446762185838 0.0168804937738585 0.0631129477009522 0.116000945572138 -0.027631588819478 -0.0659775804708052 -0.0289965061078353 -0.0683001976248188 -0.0792713478023245 -0.0488962912631381 -0.0682222537856999 0.137192972922327 -0.0639070770079314 -0.0210620892670117 -0.111658327114105 -0.104047351482982 -0.0774469007321801 -0.0537123511735978 0.105665789559964 0.0563783125695188 0.299949375669777 0.153987038269766 -0.0658365576929587 0.0180072259805751 -0.0629697405634149 0.012759875491142 0.123719755047509 -0.0538448871921884 -0.0171298076156714 -0.018332022337655 -0.0291969582481214 -0.0555708698212735 -0.106413246367597 -0.0544680020156014 -0.0680688343030054 0.0300890682950224 +-0.0460922119940477 -0.0508576209211198 -0.0117223726213101 -0.0543315449845862 -0.0400618316108331 0.250148834252904 0.353908368441523 -0.0938570576484375 -0.0452929638011595 0.0959648078067354 -0.0305319095299076 0.0613999406977444 -0.0985438331151991 0.317345940838745 0.316426677270622 0.0189864881176752 -0.0969149498408066 -0.147545251212635 0.0418412784649736 0.0915592234600244 0.0336041965578593 -0.0563628726830359 -0.0227688788459504 0.937473755974121 -0.0283336048356309 -0.140446632544869 0.237016919539179 -0.0827354816201384 -0.045416530061152 0.188567826460628 -0.00903361948527676 -0.059995652397926 -0.150764761074992 -0.0795328791348292 0.283333264673584 -0.0508935001046857 0.00457280350090224 -0.0698086803782124 0.0421806888096731 -0.0120374193402899 0.302535763199704 -0.125233377568548 -0.000802284148455989 -0.00691590724556071 -0.00856863047390782 -0.131296875709121 -0.0952813500952731 -0.0280549567509962 -0.0397520851215048 -0.16934162512008 0.00175327899378002 0.032021574012245 0.231730669479576 -0.0493257352979881 0.0222495679528721 -0.00141312109847768 -0.133172227730427 0.124149450889283 -0.0863401984896762 -0.0767988949746224 -0.0106616972525981 -0.0618951751721238 -0.166944840377144 0.016182373716175 0.128366268902188 0.116588200182312 0.0614662225236123 -0.0523425523126652 -0.0724737343344118 -0.090780663202079 0.0752068440368349 -0.0250540154418223 -0.0113316804482541 0.0273239578001176 -0.116904559045705 -0.0432561571485651 -0.0772790911835614 -0.0751158138500467 -0.0105068733999379 -0.124900919578117 -0.0210417825875655 -0.166597725266669 -0.0371240676019762 0.0447843838085641 -0.0684189922914285 -0.214917540003328 -0.118099944950395 -0.193352540897977 0.103513603994173 -0.0355365516624036 0.00678550644948046 -0.173272646219466 -0.0108394351337141 -0.00862692748665817 0.312170345973933 -0.00342290856423348 -0.105874730221107 -0.0459768899200929 -0.0275627044088623 -0.0344329572971442 +-0.0610365567900499 -0.0316110046062659 -0.0882411520235175 -0.0941013010652686 0.0100782549009861 -0.0445117078171029 -0.0328553549419979 -0.0533123293972526 0.037338177132317 -0.0637149727664616 0.343706065545374 -0.110525933394852 -0.00957427878372411 -0.04383642797024 -0.0327122286484497 -0.0574992275425143 -0.0924583994963409 -0.0279019836062039 -0.0399955941176939 0.0181675100100127 0.204071449406207 0.157602809119078 -0.135420124301945 -0.0283336048356309 1.02702188706699 -0.0325747118001295 0.12012663670599 -0.124498869421499 0.0130211566518066 0.0482331384756666 -0.0374766495621615 -0.153499806270042 -0.0132467576208463 -0.0186345118380464 -0.0427382162749195 -0.0191126993572869 0.0673948429922926 -0.0523937239895826 -0.0505270257994131 -0.175354526706002 -0.0570034075032789 -0.00824225825411711 -0.0899597521953216 -0.0220783282617644 -0.186909240195363 0.0124021007364674 -0.0313117066355488 -0.0227368857185831 -0.0594484935109331 -0.0619373956874447 0.389284633476418 0.0697677876225582 0.0775579138563795 0.256540943962394 -0.101472480368598 -0.030116623385321 0.0631341437981424 -0.0913179457236006 -0.101735270948535 0.192058139284317 -0.0192682516384693 0.0158247160887069 0.024770424375155 -0.0639956073280553 0.0429211269142081 0.146910320874224 -0.0798968066405771 -0.0603028520519041 -0.0891463869294447 -0.0310632155796081 -0.0101895527820697 0.172243566331008 0.0737563753951913 -0.0824071620263723 0.202468677888262 -0.084047686855781 0.0076136751597888 -0.0465241279453657 0.254045077220499 -0.0340486801074654 -0.0132487028526028 0.0151785191906965 -0.0427028917481588 -0.136584167473911 -0.143098345416214 -0.00163595093292149 0.0261422443634084 -0.0375697478251756 -0.0817090350709698 0.0455553282520543 -0.157172582056723 -0.0107290226958334 -0.0691976841410164 -0.0457292694482972 0.0241010244735958 0.0219833331659103 0.0486790463080709 -0.0821776934934052 -0.0103053574239733 0.0354527827640145 +0.0350285098982242 -0.0271348216561872 -0.0588353471166989 -0.0473901646933404 -0.0102275471870499 -0.0476762790643014 -0.107683983014371 0.12351212937185 0.0275321461630398 -0.148247408281957 0.0340408025578141 -0.0592264224282355 -0.00798175284469117 -0.070678440309692 -0.106878950271804 0.0286628312321485 0.177845306601215 0.252347938155003 -0.0803810371490913 -0.00853808835746996 0.000675163352627292 0.0615491412392318 -0.0969108339001623 -0.140446632544869 -0.0325747118001295 0.930117786714684 -0.0271676472756861 -0.0759353839807823 -0.0410168937597144 -0.0998449252515538 0.0211936588287037 -0.0557582179287314 0.111234642358124 0.138537506432019 -0.0991085328044325 0.0188453942062127 -0.0101744697797476 -0.0478845733778127 -0.0738242229800708 -0.0483223850557967 -0.122939054084724 0.014709392531637 -0.0450261417852332 0.0141174465009021 -0.0202841422198037 0.278503993021142 -0.076858556570241 -0.048640605193057 -0.139475129749173 0.135947634732016 -0.00379278210082655 -0.0638659267877637 -0.134182580347092 0.00879440540157288 -0.0695835507262805 0.0783546555131155 -0.0127922434008057 -0.0968777268201452 0.038136128907457 -0.0147735089287343 -0.0343707027943207 -0.000829459020266402 0.18055675124615 -0.0506987433534249 -0.0852312661060188 -0.0693008542795376 -0.0282514588998773 -0.065788572494557 -0.0321212619550117 -0.030199994496386 -0.158123106333691 -0.0291875041724419 -0.0473694307121674 -0.0333150930282951 -0.00678879992638393 -0.0695216387906012 -0.0215159456171376 -0.0341080932285597 -0.00501626122440471 -0.00330967983750562 0.18012709452434 0.1908434188542 -0.0266689903257301 -0.0292877410201256 -0.0294240729766624 0.133133865813151 -0.0398786569378396 0.395633390535412 -0.0794285933791513 -0.0742422368678158 -0.0431910212328703 0.370667469502466 -0.081044110111577 0.0103560860471798 -0.0769700383514312 -0.0840935525390379 0.00764107548190201 0.0727527774958209 0.00634487272420895 -0.029091334492454 +-0.0176047819556475 0.120664206815309 -0.13513835062375 -0.00298576053619553 0.00169704884104808 0.166837224590304 0.0866290801930553 -0.008761851028021 -0.0957436309402344 -0.140612805275862 0.0226819781264646 -0.101154783904307 -0.106009610688282 0.197606174531184 0.171442789866632 -0.136667919150832 -0.0450039212252052 -0.0573410917687149 -0.132962084335182 0.109016545687241 0.0883965505044443 -0.0878133316336151 -0.0191364780454577 0.237016919539179 0.12012663670599 -0.0271676472756861 1.01101642125574 0.151555913624257 0.0251318877535946 0.302755710088242 -0.0531906104154623 -0.103223625544135 -0.0455358180205719 0.0691040217044304 0.118010404771468 0.0272508012901339 0.0576394110489979 0.0566760703419265 -0.127787259643851 -0.0314120037813781 0.101737274609097 -0.0451008717641828 -0.0809344336731452 -0.16665995505363 -0.0409279825324478 -0.0616477048580686 -0.0470063707769703 0.107622301995698 -0.0735701856670122 -0.0895233736741436 0.165976935931634 -0.0259240641037759 0.124779083969584 -0.0230326269735803 -0.0576297156612002 0.0139707301413187 -0.0980816679598769 -0.0620299648342915 -0.0526457393697815 0.166549944609621 0.120678307273971 -0.010777383901984 -0.040846209864911 -0.170888040794351 0.337755471595752 0.21401828397952 -0.0372107066868908 -0.076376865010681 -0.00268365290507485 -0.103184854160911 -0.0665392171009087 -0.022600261788186 -0.0604001883892085 -0.117639700510366 0.232598873418496 -0.0418822208798764 -0.0681555606203545 -0.0214918921075465 -0.0557342629942099 -0.129772818873186 0.00340138122738972 -0.0874001029133848 -0.104507158031328 -0.0287303274528628 -0.0616157551162367 -0.0775444587407274 -0.0538698058288102 -0.0363828874922296 -0.124090063696932 -0.0751195708010401 -0.0384854137500002 -0.0693436236664389 -0.101652306040376 -0.132118644540461 0.14980104468915 -0.148733192305549 -0.056118829635934 -0.04175766048613 -0.0253356398079017 0.00924544877864178 +0.00134540459860866 0.318905596082122 0.0535599865747301 0.0863710481644458 -0.0742351067405036 0.0376596414197048 -0.0192880430603823 0.031133354287114 -0.139239918420216 -0.0176268641139672 -0.0876992091397588 0.0797792473298229 -0.144027346074402 0.0212404851895533 0.0664300133419775 -0.0622225108217506 -0.0273248486721078 -0.126162078095313 0.000413363878895732 -0.0720167832068099 -0.0585036726119626 -0.119478203701793 0.00795390889543167 -0.0827354816201384 -0.124498869421499 -0.0759353839807823 0.151555913624257 0.9054134419677 -0.054848665502608 0.0540551875912187 -0.0725004858443305 -0.0160503140598902 -0.0591846290835975 -0.0987020768838335 0.0672195227014224 -0.0466105174120268 -0.0412251294645102 0.0415775222945519 -0.037320257710908 0.059628815743968 0.0281167959542283 -0.0493510261972251 0.134074365108143 -0.142398306753222 0.0607484675716505 -0.0864816610051732 -0.0335366945047875 0.259281844949877 0.0975091802836465 -0.0419868940502275 -0.0833171633928375 0.0952944106666302 -0.123532729200343 -0.042921411194519 0.0854877700130888 -0.0376475861046767 -0.0780289828891248 0.00423219687195352 -0.102466385397893 0.145955760255341 0.295695400116072 -0.0304588573852668 -0.0112406372523138 0.0116408190790877 0.147084575483586 -0.0595717167233917 -0.00551686693820071 -0.0264811141524287 0.0473169913497224 -0.117568904132956 0.00995994641884915 -0.0760646519528619 -0.0240061307843186 -0.0247055626095379 0.179228329221976 0.0132283727061836 -0.024182457013824 0.00604777334243238 -0.0595515949481579 0.0127667889576483 -0.0191841381821419 -0.134594942806735 -0.0044141116321511 0.0423049038522505 -0.00532908285062113 -0.0820375443707927 -0.01037127778339 -0.0884092499009851 0.0381570222359685 -0.0183752459743595 0.068581458373283 -0.101588111888164 -0.0296175296478699 -0.0563726634213595 0.0270451554460779 0.100129850540801 -0.0634821317857134 -0.0467128883779788 -0.0123968725606188 -0.0823575311647344 +-0.0189697853133959 -0.0377849498231855 -0.0293342879666428 0.0113665563297017 -0.0280959216888073 -0.0450235471359383 -0.121615171746999 -0.0410146974366421 0.0284343606185464 -0.0792320140235875 0.0232848581469114 -0.0549229653345117 0.0141242557289528 -0.0493240842017503 -0.0650531342083204 0.147875110248737 -0.00155713155053537 0.00905149268276531 -0.107318926724294 -0.0490466970638777 -0.0342486882181589 0.0311120567952525 0.0102692172816004 -0.045416530061152 0.0130211566518066 -0.0410168937597144 0.0251318877535946 -0.054848665502608 0.898236382188937 0.0253129503604998 0.217309480325276 -0.0254125875585512 -0.0449995497659574 -0.0308212122907026 -0.0593032303037394 0.235483474716815 -0.0127207588969207 0.033247865080021 -0.0630479887082565 -0.0964258545327217 -0.0114091948091102 0.0115917709059763 -0.103192095478188 -0.0160733865125772 -0.0128818907314475 -0.0282747850768353 0.0550392973819437 0.00457608224746663 -0.0247536551719392 0.0485932260212661 -0.0266884933228882 -0.00951927339044939 -0.0119085237108565 -0.0185179817417048 -0.0468235294950891 -0.0641263187872371 -0.0093601062803761 -0.0348117366826035 0.295513513120141 -0.0218202342739651 -0.0236084238759712 0.04383348973074 -0.0761994882166349 -0.0918299222854155 -0.00699805850250988 0.0622666763121433 -0.0108741661872489 -0.0154881651810363 0.0134478508520327 0.0482362017234371 -0.0172032087268732 -0.0147606321695561 -0.0748191191335421 -0.0590859967700912 -0.0261543360611924 -0.0520789556453343 -0.0469025222773364 0.148919156039771 -0.0306218443542888 -0.0145504851872062 0.00915313817317174 -0.120609024914412 -0.0550886937037099 -0.0256666363247405 0.0212044983638052 -0.00297377168366633 -0.0264209432681421 -0.0754225499770283 -0.0972787702346404 0.163465410089553 -0.0308837082948735 -0.0736149076048152 0.326386505906811 -0.0398236797896994 -0.0665453662321784 -0.0587398210715343 -0.0241984137276277 -0.0161927437500358 0.00921568586300772 0.167080806702922 +-0.0193258635130022 0.175602268507254 -0.0886223695049067 0.0180255404885683 0.0524433758668631 0.17159508392951 0.174664226781208 -0.00987718118223435 -0.0645150968257836 -0.128509635457952 -0.0132243153983843 -0.0929540069280062 -0.07870885940534 0.169543573319789 0.0931158702487049 -0.0853874071735914 -0.0802638643473823 -0.0936053931188894 -0.138217223135277 0.0052429756222704 0.0154799768418002 -0.064158418694589 0.0229731171761613 0.188567826460628 0.0482331384756666 -0.0998449252515538 0.302755710088242 0.0540551875912187 0.0253129503604998 0.930934772706215 -0.0372510058165394 -0.10536924907536 -0.0314053126664244 -0.000593639494120216 0.189291296395621 -0.0703739775873281 -0.0213023299850547 0.0435684378897016 -0.0951027151892565 -0.0417132562359151 0.100750796684444 -0.097355694883058 0.00831362846257683 -0.0727079537567071 -0.0818683845928507 -0.100669298305492 -0.0666588906931321 0.204866356779037 0.0177127645444093 -0.106382793902944 0.0192240664930782 -0.000639435050553003 0.224262152472862 -0.0659983082216418 0.0679657170747575 0.0174030266185711 -0.120370448056024 -0.0530177364491435 -0.0905164639002499 0.126571443107391 0.100974527731089 0.0228799042654537 -0.113743269965877 -0.160290546577098 0.293117032770078 0.123739252479171 0.0472373495331864 -0.109450471061747 -0.0194264917026998 -0.0890883708279947 -0.0283829588780166 -0.044988428064104 0.0918040006238837 -0.106897129125433 0.154841160791428 -0.0249533013065922 -0.0526253372860211 -0.0471076723963089 -0.0569661535768143 -0.079696822984385 -0.0425465588936746 -0.0879980498180019 -0.0528591786027953 0.0270103290974852 -0.0777807065668599 -0.0805915140813085 -0.0227978267427198 -0.156868212083354 -0.0208268098082925 -0.0307571417170769 -0.0256721739716551 -0.124549373652876 -0.0616485131695518 -0.0272962972955744 0.0889281791284196 -0.0140269157295321 -0.0629613100798821 -0.00271161993581798 -0.0425448531003383 -0.0340079746961275 +-0.00284898143619931 -0.0541773889254309 -0.0646342560205907 0.0108017654502611 -0.0966821544103861 -0.0419197283489303 -0.044456228865914 0.0190072525576467 -0.0290523485294229 -0.00868932927927769 0.0362906757493828 -0.0148730870255231 0.0313755268698634 -0.0443097754116049 -0.0604444282480262 0.493618388161021 -0.00338485094614494 0.114556546674545 -0.0741582705579008 0.0044438238120257 -0.0389876757096284 0.020443231552285 0.00897254926440423 -0.00903361948527676 -0.0374766495621615 0.0211936588287037 -0.0531906104154623 -0.0725004858443305 0.217309480325276 -0.0372510058165394 0.984612121223003 -0.0489690536132914 -0.0354224514108723 -0.0103392438222922 -0.0643368059817568 -0.00227216497157086 -0.0748389379688208 0.0163480739966426 -0.0707874223977052 0.00463788586196489 -0.0467242045104125 0.0254788409090434 -0.104120194577114 -0.0147165401461092 0.0263916558785717 0.0241801551937531 0.0653380604424904 -0.0743248371947475 -0.0262245737275963 -0.0448514662031143 -0.0909083913437345 -0.091670875736271 -0.0506088571270059 -0.0420615296793724 -0.0578977960475477 -0.0778616633456735 0.0680430409633097 -0.0740922732668294 0.22650618119612 -0.0542449962936951 -0.0832215307443802 -0.0570302523840837 -0.0292053978103761 -0.0328705546924818 -0.0374558720682272 -0.00939463964556352 0.0261689913290323 0.0483625711441422 0.00282762426107287 0.154843382144353 0.00739657730503182 -0.036573176319655 -0.0196074959670888 -0.0138060223096966 -0.0995080360898384 0.00957154048274643 0.00473502001023081 -0.0586142330606551 -0.00590141513909572 -0.083585534230546 -0.0476502313129963 -0.0501809255441948 -0.0588021648722967 0.0179945251268277 -0.00866272140479447 -0.022109122692603 -0.000965351184093917 0.0346913795442009 -0.0100826911989709 0.101639333213537 0.0167142288429062 -0.0104880744827502 0.121268673997205 0.0334364300515545 -0.0713340582058029 -0.0462824612717696 0.0534257178855649 0.02859588213128 0.00891724164674981 -0.051027337280479 +0.0623189010040702 -0.0526962420234891 -0.01831082866782 0.113286615249529 -0.000455363770135955 -0.0366191278710522 -0.0492145979846702 -0.00674823603666887 -0.013013275508493 -0.0499754120268128 -0.106571655913519 -0.0247882341551247 0.0239693293170771 -0.0794154152770668 -0.0544868147670307 0.00116214484308169 -0.0199191213657667 -0.0122804213971261 -0.00241046710038563 0.0695701829124519 -0.151728492503716 -0.0601567738226981 0.250483931844848 -0.059995652397926 -0.153499806270042 -0.0557582179287314 -0.103223625544135 -0.0160503140598902 -0.0254125875585512 -0.10536924907536 -0.0489690536132914 0.855025319027358 -0.000455303382017552 0.030892728402282 -0.0545637075891196 0.0170786426417748 0.0630920989311463 0.153903145397215 0.00816962232503621 0.174177938982158 -0.0038929067949624 0.0379914210137714 -0.0391344770089343 -0.0279865072238682 0.140098761039807 -0.0806055613363568 0.0301542344629873 -0.0335803870853016 0.0888023419720506 0.0181401632987217 -0.136876263282806 -0.0532688999766558 -0.0472536558760946 -0.137722866306262 0.0589155050861193 -0.0183950709744347 -0.0648743626620612 -0.0247075172709162 0.013414975100843 -0.15864120379337 -0.095289737644953 0.0343377145096339 -0.0460106477381283 -0.0226497280510179 -0.103472807972319 -0.00848526439391279 0.132592874429052 0.10243946282266 -0.0102845854746693 -0.0313832356784902 0.0343850743808513 0.0297172055432516 -0.0970133968554591 0.0177931652977199 -0.135401555011452 0.171034217156817 -0.0523559672446327 0.0431631892703537 -0.170907583704129 -0.0105541522401955 -0.092221240243505 -0.00753629158243783 0.113292363731295 0.0869024772222039 0.295870993994828 0.0847522762624918 -0.0459831940096079 0.0865727199709835 -0.0238966769608107 -0.0559062244305234 0.197395100966654 -0.0213917773186545 0.0322549361298862 0.0382497559879894 -0.0232743483035907 -0.0798693980874526 -0.0434195846956691 -0.0215813378323896 -0.0839121918624084 -0.0391393460799008 +0.0394107347704269 -0.0557899324225532 -0.0530416562100469 -0.0697891022978526 0.0510995078121645 -0.0855381327676041 -0.12265463461749 0.146121995678758 0.0991877267131083 -0.0934186378531058 0.0244468123892832 -0.106310452770461 0.0760495864102952 -0.0641002275880508 -0.117862349028981 -0.0184567537989371 0.0619268906341472 0.0247399431387635 -0.0543016578169686 0.0016143173685897 -0.0785170458809281 0.0190932748640517 -0.0460775685949028 -0.150764761074992 -0.0132467576208463 0.111234642358124 -0.0455358180205719 -0.0591846290835975 -0.0449995497659574 -0.0314053126664244 -0.0354224514108723 -0.000455303382017552 1.00619331172509 0.150353519773866 -0.0905307867740077 0.0114303387626601 -0.0170968293862744 0.0279970680055879 -0.0391070955901718 -0.125492288429188 -0.0704914672681781 0.180056445252842 -0.0855468419515811 0.0654006768686072 -0.0529190902413413 -0.0516160396150529 -0.0610726499107851 -0.0384810373365894 -0.092102247730475 0.114039652783898 -0.0229087378115551 -0.0591635173765913 0.0507656415787618 -0.0485812843060877 -0.135161120903053 0.086495315185899 0.00938637564321481 -0.0783727429129661 -0.0153200133361788 -0.026414698257083 -0.0440414405007264 -0.048582387854495 0.315576304678814 -0.0707528211439884 0.00936648709915628 0.0820953476921742 -0.087217638868851 -0.0927211313993904 -0.00518022914937962 0.0162639560963199 -0.0995804132368166 0.0856288056273935 -0.0284869483108157 -0.061959224595853 0.0582424457306021 -0.0842016340404469 0.0427006833948347 -0.034543932107213 0.0179301815933684 -0.0344538819537815 0.104021600437347 0.344812580899782 -0.107630215329903 -0.0877095548634951 -0.0237526037526607 0.264564269866596 0.0406477170942794 0.138511753134246 -0.0609515628052377 -0.104306110155899 -0.10840172191093 0.151480056655818 -0.0741798046391405 -0.0315143873264473 -0.0909682119465212 -0.0882652167069178 0.112067220278818 0.0744989102918628 -0.0339051559809501 -0.0544610659893472 +0.0613541286807689 -0.0481616261950473 -0.0639199672986437 -0.0273622189761668 0.0509107892156798 -0.0617739744707044 -0.0967296223006423 0.12266693915967 0.00826544208564488 -0.101847464695196 -0.0212409690512757 -0.0473827309338169 0.0986634279762826 -0.0564325060637812 -0.0659485876577582 -0.0291515899973373 0.0990676142811327 0.00712367048502392 -0.112837911882117 0.0328868711769938 -0.0469579628476962 0.00263445253767519 0.0177907927496839 -0.0795328791348292 -0.0186345118380464 0.138537506432019 0.0691040217044304 -0.0987020768838335 -0.0308212122907026 -0.000593639494120216 -0.0103392438222922 0.030892728402282 0.150353519773866 0.971093886727861 -0.106420465953089 0.105514745252815 0.0345930823061188 -0.0197680644538872 -0.0176012332476111 -0.0973528819284465 -0.110988769381766 0.134372578788094 -0.115396557377291 -0.0632456237606557 -0.0453737200888111 0.0696667330473767 -0.018922438478337 -0.0583927112480624 -0.0472731409035782 0.214251535956835 -0.0538825652718778 -0.107103880524773 0.0497864346756951 -0.0275923336592945 -0.0656275398192732 0.112023279001605 0.0680642611133316 -0.0769275848203656 -0.0212051416065456 0.0336922764936202 -0.0757040321296074 -0.0755649690234784 0.140436412214589 -0.161391883889871 0.0467124577475181 -0.00374739067053838 -0.129104451589336 -0.0267013870815333 0.0324661241300635 0.0100476017754799 -0.0795305127248807 -0.0214260638102556 -0.0718508776110499 -0.078652604905665 0.040807688825655 -0.0322094245531354 -0.0280199107421012 -0.0548507108119634 -0.0788687105514378 0.0435524784888944 0.104285586614484 0.151824912557244 -0.0898268924278112 -0.0885675749931693 0.0374537690590343 0.146000377414124 -0.0154262279595622 0.185225669664867 -0.1114725258703 -0.0108551174806426 -0.0775292199073668 0.168589825538372 -0.0558462501206317 -0.111198885581207 -0.124542485321563 -0.0530576189229304 -0.0363587454675468 0.159418811329768 -0.00316145995453716 0.0172124289852256 +-0.0240142578686732 0.00855026418947975 0.0342813507334069 -0.0165178975333708 -0.0812282035409215 0.309009044722717 0.331867138412937 -0.0155962998041069 -0.0959581936623048 0.0390585823156084 -0.0291950039642686 0.00346250042832436 -0.0699466295839657 0.252610044124646 0.233752865029858 -0.0557267243107068 -0.052950421436256 -0.104554306818006 0.0520615704555248 0.0101582025865359 0.0887500855389398 -0.0681914546295574 -0.021104666253079 0.283333264673584 -0.0427382162749195 -0.0991085328044325 0.118010404771468 0.0672195227014224 -0.0593032303037394 0.189291296395621 -0.0643368059817568 -0.0545637075891196 -0.0905307867740077 -0.106420465953089 0.862678641471053 -0.112675511708905 0.0936885695975152 -0.125219798110821 -0.034265274389191 0.00990520556346012 0.27962711046866 -0.118889604662387 0.0842297790942963 -0.0530130300952931 0.0345071114518861 -0.159371919349092 -0.14788440006381 0.0748779622506605 0.0156243127633297 -0.107892695338775 -0.00535027748550031 0.00766405638042957 0.196250930257507 -0.0593443391298934 0.0449060293755194 -0.0468870608062048 -0.143674479784331 0.041380871024683 -0.113718864892956 -0.0260732377053254 0.104520944416186 -0.0878055053916417 -0.140721694756035 0.0425651678785884 0.143055895785179 0.0553243314501953 0.0519693320570894 -0.0696980751468535 -0.0811230487716904 -0.13388295805233 0.0317845151986646 -0.077556807297391 0.0451845795703633 0.0290021954081317 -0.0711646345006137 -0.0507201226279297 -0.145512017622975 -0.0694158193935804 -0.0184456885775375 -0.0792193665049725 -0.024808330842688 -0.127961442569793 -0.0106816142959605 0.0526454746226988 -0.00563979838081071 -0.174946025086166 -0.10473222494782 -0.163148628933293 0.0913617833824326 -0.104959688741742 0.0286980762503041 -0.13993252354388 -0.0488955190863389 -0.0208280038941973 0.361290331317898 0.03462798846839 -0.121845717454662 0.0182296264311064 -0.0769965931672483 -0.0996952309093588 +0.0237868380354488 -0.0886609894110039 -0.0256151155098699 -0.02840820089903 0.000290541785942333 -0.0519012186917726 -0.147826796709679 -0.065803856723849 0.00609314100990773 -0.128620336743031 -0.0299012328118449 0.0239422708494649 0.0280553410470457 -0.0461685326528117 -0.0648601754275947 -0.00108050069659539 0.0200854808706438 0.00795007688297308 -0.0797712334119874 0.114567082151193 -0.04916925056709 -0.0392977273485744 -0.00209495827532339 -0.0508935001046857 -0.0191126993572869 0.0188453942062127 0.0272508012901339 -0.0466105174120268 0.235483474716815 -0.0703739775873281 -0.00227216497157086 0.0170786426417748 0.0114303387626601 0.105514745252815 -0.112675511708905 0.966349080228923 0.064407915106883 0.0402935418202239 -0.0123351414306709 -0.10659696021988 -0.0961429057967273 0.000240212102032944 -0.0261071128261908 -0.0353732252556667 -0.0247552945869741 -0.0257409923911981 0.0765167983499612 -0.101231880558236 -0.0840829272842419 0.115817733260243 0.0510280468812534 -0.0484731285710116 -0.074465645217826 -0.0212499100574185 -0.0723834072111965 -0.0114976040671561 0.0520508790516408 -0.0188152875794605 0.157557324633049 -0.00588380321051397 -0.0256931534417882 0.127770467639901 -0.0168386960652325 -0.10495981652161 -0.0686115448149738 -0.0327030012092988 -0.0774398239236582 -0.0222156821323368 0.0714189642496326 0.0852892944751742 -0.0212350123570876 -0.0194087056666794 -0.0984343050496079 0.0203614176913179 -0.0509688950580297 -0.0529677596655269 -0.0282063272322366 0.202416027192135 -0.0901200489921307 0.0912077772173305 0.00897488195051314 -0.0552599590777042 -0.129414240838037 -0.0716457360183813 0.00866997974597212 0.0047145129945554 0.0254183251123874 0.0168509229268406 -0.0947348928519572 0.219610350577862 -0.0548747024599608 0.0328565587339645 0.159365584159361 -0.0271648068075225 -0.123232717078494 -0.0454724267544308 -0.0356685091385385 -0.0179056880913723 0.000585687587809651 0.241717301250855 +0.0471082600200143 -0.00835531823435903 -0.0588909609438925 -0.0927971072017753 -0.00229472558644553 0.0655417786132639 0.0534089981324219 -0.0450444380988478 -0.0388996514482967 -0.078622719481635 0.0380989556745279 -0.0435749517685629 -0.0163858908850437 -0.0257584002949083 0.0629344102795251 -0.0681832217094926 -0.00464283202620787 -0.0464206500510534 -0.0584708552484179 0.381901379720439 0.209551163440892 -0.0251476813408387 0.165954754576297 0.00457280350090224 0.0673948429922926 -0.0101744697797476 0.0576394110489979 -0.0412251294645102 -0.0127207588969207 -0.0213023299850547 -0.0748389379688208 0.0630920989311463 -0.0170968293862744 0.0345930823061188 0.0936885695975152 0.064407915106883 0.955500918653494 0.128327805243475 -0.0678349719737245 -0.0731204700871832 0.0369209081420503 0.0270080768663058 -0.090350010836088 0.0116623055898195 -0.0659310174312886 -0.0782499590801488 -0.0731525823968824 -0.0375894759815261 -0.0914354645609618 -0.0382362493362148 0.267448576980371 -0.0576500336422556 0.0505585881456231 -0.0400144349893591 -0.0913074316138495 -0.0901795855761042 -0.0355201329783681 -0.0734985816590846 -0.0773357750840361 -0.0138055541210571 -0.0273820401825634 -0.0049887049738043 0.0317748703527983 -0.0734925919353133 0.109705713049473 0.121770152414649 -0.107846101059522 -0.0658475729577068 -0.0382857906721604 -0.0490864913827045 -0.0110734596597906 0.0651915876426592 -0.0100659931898324 -0.079877198279677 -0.00847729355487874 -0.0904886315230538 -0.0752519403877547 0.0203201243192183 -0.0125471565222692 -0.0507473536308158 -0.0318382022921211 -0.0124601088608959 -0.0390280335994691 -0.146986948268419 0.131458203777016 0.173872817113564 -0.00875220961881679 -0.0119994088568522 -0.0767703576477495 0.0544823326201244 -0.0680938684862513 -0.0757085183532132 -0.0999052530432616 -0.0504954831572648 0.0280598571342629 -0.0463758405184495 -0.0483498285366865 -0.0199230655093716 -0.0777048207234517 -0.0176078235427532 +0.0724427484993203 0.0771461254044205 -0.0430036921604894 -0.0194062534516456 0.101121293755184 -0.105803410569246 -0.0685310323243062 -0.0201093234614017 -0.00128860206600822 -0.0851278283766932 -0.0608781497047261 -0.06052491381922 0.028885438432019 -0.097483091127808 -0.0535528389446417 -6.94870757821578e-05 -0.00635044352236388 -0.0211694748375162 -0.0755464873336005 0.133965209180873 -0.0813135266371911 -0.0309661424071427 0.192741874899823 -0.0698086803782124 -0.0523937239895826 -0.0478845733778127 0.0566760703419265 0.0415775222945519 0.033247865080021 0.0435684378897016 0.0163480739966426 0.153903145397215 0.0279970680055879 -0.0197680644538872 -0.125219798110821 0.0402935418202239 0.128327805243475 0.844314062830338 -0.0483911410158693 0.0491170872281194 -0.0392447783055578 0.0152225921690773 -0.0445778953051285 0.0200117545608769 0.00729118889381231 -0.0577914649889074 -0.0319234022333628 0.110351447782652 -0.0572699148450385 -0.019386308703795 -0.0794289606224965 -0.0648721442800752 -0.0649300086231819 -0.140332537303178 -0.0771205623085779 -0.045476999196816 -0.040611540424602 -0.0530612233607345 0.0405406925017595 0.118515034487117 0.0745379541129016 0.0927915894859045 0.014561118892328 -0.0556560809607412 0.10555306345259 -0.0567238164415345 -0.0479837536449498 -0.00933125581912969 0.0175679301636374 -0.0925588594491024 0.0192068861062522 -0.036062439605849 -0.0273328212404089 -0.0665041675396298 0.100561565007448 0.0428376944707898 0.0113650055158328 0.0562938460020339 -0.115794775211027 -0.0429352955366053 -0.0160340789624347 0.00332129721920917 -0.00221767298983443 -0.0773775413375974 0.123770283815626 0.225083850671155 0.0266917674748267 0.0445180637066635 -0.0635656339274654 0.018293558870682 -0.00415216983597669 -0.0335251684943653 -0.00650152613166565 -0.0224769466246051 -0.134589535543511 -0.0378036581233712 -0.0486252694710812 -0.0502322742111365 -0.0896610103752891 0.018136195372141 +-0.00716869615389147 -0.0334035876243836 0.114597463209296 -0.0126376676947874 0.00370706590751972 0.099479280713227 0.0416955511644277 -0.0630734174230231 -0.112823587299874 0.15610317066973 -0.141317695883156 0.13309250241852 0.0868921946675293 0.132198456021111 0.111144951134127 -0.041070722631103 -0.0643420037202614 -0.136586437985526 0.247372555875685 0.0201365224549137 -0.0822098351151398 -0.0562216346802858 -0.0410983913908773 0.0421806888096731 -0.0505270257994131 -0.0738242229800708 -0.127787259643851 -0.037320257710908 -0.0630479887082565 -0.0951027151892565 -0.0707874223977052 0.00816962232503621 -0.0391070955901718 -0.0176012332476111 -0.034265274389191 -0.0123351414306709 -0.0678349719737245 -0.0483911410158693 0.860260335852132 -0.06298861196394 -0.00898014477172636 -0.0646380150389755 0.149718890172637 -0.0591892281206941 -0.0506396547262363 -0.073906513085944 0.124362767393251 -0.0556073447983691 -0.0927256945827603 -0.0282631911577377 -0.0448598049409095 -0.023784575051933 0.0053641983594642 -0.0711959072905521 -0.0285384059986073 0.0172561442509502 0.174214086795286 0.272997466140779 -0.0932499134750729 -0.0443361128749489 -0.0475480921907338 0.0257725257691463 -0.0456119990208697 0.129246814511917 -0.0772566752890816 -0.0966924237364413 -0.00719562208232714 -0.0554140636844675 -0.0335620171885032 0.176465097944221 0.108908409706188 -0.0243524730048243 -0.129621895010894 0.1222589388896 -0.0914151651339724 -0.0674889510195976 0.0906910883944637 -0.0740316343729947 -0.0925038351642482 -0.0468201605074584 -0.0342648537111846 -0.0638686964967765 -0.0455164585892987 -0.0383075400127221 -0.0266152790922359 -0.0759027743412027 0.146733886945468 -0.0652684246927312 0.0587280582633803 -0.000677371304634985 -0.0431192202803278 -0.017508773654351 -0.00138144995949039 0.0130210960851717 0.038063849343817 -0.0165617722382415 0.188976228810515 0.0326905664088729 -0.0224690054218889 -0.0583017227391155 +0.0340348548643908 0.0797013518273447 -0.00399199006052924 0.0946488630126467 -0.0683637499904836 0.00213975320596997 0.043491778796612 -0.0121103269526709 -0.0352892483666841 -0.0168702532436913 -0.0509455867564189 -0.0253022956246963 -0.0674046242465574 0.0316013654185264 -0.0126943823189729 0.00924925696372486 -0.0688223363590321 -0.0400970627453355 -0.0145824257709366 -0.0358891563576607 -0.0456459716589857 -0.0469676957950936 0.168307343179638 -0.0120374193402899 -0.175354526706002 -0.0483223850557967 -0.0314120037813781 0.059628815743968 -0.0964258545327217 -0.0417132562359151 0.00463788586196489 0.174177938982158 -0.125492288429188 -0.0973528819284465 0.00990520556346012 -0.10659696021988 -0.0731204700871832 0.0491170872281194 -0.06298861196394 0.847450133296581 -0.021248826909435 -0.0974481257708204 -0.0199998684474941 -0.0381221236114005 0.199528275510898 -0.0664981114454762 -0.0786722835646636 0.107402564030201 0.270238188603098 -0.0383288430160514 -0.168271973451658 -0.025532991244742 -0.063309879874337 -0.1240393152879 0.290511434602067 -0.0122359810730965 -0.0763565372422756 -0.0188454526033379 0.0330493721753836 -0.0826106672296094 0.037065298259962 -0.0611296833437029 -0.0623612806624049 0.054194113310272 -0.0834998122383725 -0.0377081940058237 0.140387562695026 0.178931719590674 -0.0379955420904135 -0.108053935537997 0.0360820437976285 -0.0492753625035503 -0.00988115377289628 -0.00275583664584831 -0.0783622917090618 0.270422219271921 -0.0879751031348543 -0.0144989220923987 -0.158011545474497 -0.046115169921056 -0.0335325484755206 -0.00696562871920526 0.261668865896527 0.129716789325876 0.149969419478498 -0.0685641484633577 -0.141171945534894 0.0157962558951437 -0.0340622798693854 -0.0763848613614201 0.220164326921872 -0.0315974267499465 -0.0300300704843929 0.021540165316162 0.0577242515605879 0.00175327868186442 -0.120755022062261 -0.0286814503627817 -0.0481933551676848 -0.0789268832742254 +-0.0813774931342641 0.0367133469121138 -0.0101917534716399 -0.0327307548727763 -0.104637026734027 0.227536785578305 0.259359693964861 -0.0872659567752288 -0.0699514300940031 0.103378037005459 -0.0858811166407899 0.0248900341335835 -0.037458960938285 0.183796143197309 0.237346215774479 -0.0625006167968562 -0.0318429724743378 -0.0858380177186769 0.0170245194312977 0.0474611482763959 0.0387463342881158 -0.0841412373152605 -0.0261068210931821 0.302535763199704 -0.0570034075032789 -0.122939054084724 0.101737274609097 0.0281167959542283 -0.0114091948091102 0.100750796684444 -0.0467242045104125 -0.0038929067949624 -0.0704914672681781 -0.110988769381766 0.27962711046866 -0.0961429057967273 0.0369209081420503 -0.0392447783055578 -0.00898014477172636 -0.021248826909435 0.787185090972018 -0.0239957051409454 0.0400014092295203 -0.0432995462470244 0.00891821056606368 -0.125359254257348 -0.0756032380895794 0.0565618846899277 0.0392156988264916 -0.119311059182169 0.0195902711695229 0.0201815084382292 0.064900154378731 -0.0513528321031219 0.0217973049891835 -0.0367354777420415 -0.118835566783417 0.0565128354155827 -0.0208506564716702 -0.0133917773488319 0.0502382892870422 -0.136029455368754 -0.0976921388895561 0.0662922474735609 0.109278477743009 0.0610453654128998 0.0484359240644708 -0.0777802418283016 -0.027105420179273 -0.106945382809207 0.053887474659827 -0.0589269613172261 0.0527329147325484 0.0631805510063334 -0.0617264088046133 0.00945659885590903 -0.0661218607134774 -0.076576550051141 -0.0483102699106745 -0.0627573794660245 -0.0257655611542982 -0.155662640400209 0.0354141255074943 0.00416477418308177 -0.0233621746480337 -0.161700099094788 -0.133267287729695 -0.112874523134058 0.13644931448332 -0.0543053690471838 -0.0134932194126813 -0.137071314500263 0.0348098800440612 -0.00461223368789648 0.212015097445239 -0.0124156505156105 -0.0710676655159842 -0.0492826302242881 -0.03297709033145 -0.0522182709881014 +-0.00392522851962009 -0.0143354625511503 -0.050533868728508 -0.0523774148518163 0.0344043985593807 -0.0567091586687919 -0.138243600195286 0.0157879642897949 -0.00194323822137018 -0.131701740936491 0.0113865486359588 -0.109226181057402 0.0311612143042519 -0.086202522127388 -0.0664462646864593 0.0422579005776371 0.25504767875654 0.187768823409966 -0.0775766311037987 0.0319932275195099 -0.0296919205353084 -0.0248926678887989 0.0188459196172725 -0.125233377568548 -0.00824225825411711 0.014709392531637 -0.0451008717641828 -0.0493510261972251 0.0115917709059763 -0.097355694883058 0.0254788409090434 0.0379914210137714 0.180056445252842 0.134372578788094 -0.118889604662387 0.000240212102032944 0.0270080768663058 0.0152225921690773 -0.0646380150389755 -0.0974481257708204 -0.0239957051409454 0.957543926166312 -0.0216988265741742 -0.0261442129921132 0.0043563643371083 0.187410773991875 -0.0183603694570897 -0.111052870425351 -0.065881085099581 0.145256696914874 0.0091627463377265 -0.135049090893186 0.0213882053579272 0.0384809236679041 -0.128984555650647 -0.0111999522120447 0.0320954332919991 -0.104113137164268 -0.0156618268975243 -0.00315645192100091 -0.0928782218374679 -0.00462409137617471 0.269959557397828 -0.135889680945226 -0.0360928878898859 0.157723899548991 -0.0911755857651036 -0.0377872469749151 -0.0247546937358659 0.0383236989800967 -0.0695630303870674 -0.00825149002964839 -0.0414586677485809 -0.111949157045914 -0.017858289965327 -0.0028118827802313 0.0296530714366922 -0.0321435489765313 0.021164418241327 0.0264882173584844 -0.057474626245066 0.103342181686684 -0.0868627012223907 -0.114978831369764 -0.0334575399160364 0.109475001016548 0.0321403934610434 0.100433866342205 -0.0648538358441387 -0.00429321962272865 -0.014904246064755 0.0435267974471091 -0.0429167598445599 0.0104849097786781 -0.0733180859190728 -0.0331318249722888 0.06391373745965 0.0425895301621619 0.0301230820430499 -0.0011357536071717 +0.0119157804293481 0.0106527535392713 0.429172626196013 -0.0524395409904819 0.00738501520372721 0.0948180159468084 0.0746194806435117 0.00568291587428638 -0.0465801830308193 0.0453681548833243 -0.106986916636785 0.150664768981855 -0.116904670193035 0.133931759080555 0.0952774858289589 -0.0440389625171225 -0.0513387216450151 -0.0444498905851241 0.155822371161585 -0.00222750563291582 -0.0763297393106558 -0.0658190176057761 -0.0686718117411384 -0.000802284148455989 -0.0899597521953216 -0.0450261417852332 -0.0809344336731452 0.134074365108143 -0.103192095478188 0.00831362846257683 -0.104120194577114 -0.0391344770089343 -0.0855468419515811 -0.115396557377291 0.0842297790942963 -0.0261071128261908 -0.090350010836088 -0.0445778953051285 0.149718890172637 -0.0199998684474941 0.0400014092295203 -0.0216988265741742 0.978261122253939 0.0643688340164446 -0.0631781269070635 -0.0608306531716432 -0.0457393529545833 -0.00765751995054714 -0.0158605787935323 -0.0594598113535523 -0.0541744132569149 0.0535057953136951 -0.111596354507941 -0.0699612476985716 0.0193714231629933 -0.0491843836880729 -0.0407578288830932 0.115915243176141 -0.116891143174178 -0.0461002404576996 0.0719429824860755 0.0214842958095949 -0.0363994534466237 0.313664268448512 -0.0967578663135787 -0.130666527517783 -0.0964705487503332 -0.0308578245715731 -0.0353280037622145 -0.00982550192047017 0.0665457806308762 -0.105685820977086 -0.0993819487998445 0.293143104021755 -0.0783614759729995 -0.136553508169754 -0.0135393030443397 0.0263950917291625 -0.00992955860022414 0.00356983507527896 -0.0537831161182019 -0.079157820231619 0.0348359659683552 -0.0276667025733254 -0.0881697685234607 -0.0728623664041846 -0.0963075214748516 -0.0371988992215591 0.336027897849622 -0.0746155057570185 0.039645648461516 -0.0944387826858017 -0.104712817688115 -0.0201556428294254 0.114768413640526 0.0627096333179316 -0.0253100116632096 -0.0298542571647515 -0.0190818345489686 -0.0602734596868889 +0.0335999188413723 -0.0474350822377529 0.0839568046882208 -0.00921501632810494 0.0982384087260992 -0.0366445769942717 0.0211026174000468 0.00425820330761432 0.38340324851337 0.0230411029529586 0.0649373302696166 0.0281606109673939 -0.0829121544338592 -0.0593441682103162 -0.0233878884417988 0.0136636749254451 -0.0205495466048082 0.00773017123280658 -0.00892160732758806 0.00910374111885732 -0.0120523043980363 0.22122410975871 -0.015814374270624 -0.00691590724556071 -0.0220783282617644 0.0141174465009021 -0.16665995505363 -0.142398306753222 -0.0160733865125772 -0.0727079537567071 -0.0147165401461092 -0.0279865072238682 0.0654006768686072 -0.0632456237606557 -0.0530130300952931 -0.0353732252556667 0.0116623055898195 0.0200117545608769 -0.0591892281206941 -0.0381221236114005 -0.0432995462470244 -0.0261442129921132 0.0643688340164446 0.937224363778998 -0.0531077280211871 -1.88604523530309e-05 -0.101877567720961 -0.12114442282859 -0.0221314131899542 0.0105256388109403 0.00133452628362507 -0.00802679198482005 -0.0055284703793255 -0.104508883413974 -0.0062852569178802 -0.0406952489035651 -0.100567621639543 0.0142175141892883 0.0621193034328287 -0.00114420982313492 -0.0806039448496461 -0.0586734056548992 0.0414470953107039 0.111623412904884 -0.118515320061851 -0.0863409894749868 -0.0157383319886926 -0.00390559245028289 -0.0531361884562036 -0.0420692723105788 -0.0578064554946517 0.0349390624757354 -0.00175815126143686 0.00910552784930932 -0.0187274256442499 -0.0344102007895443 -0.0140524283073256 0.02499926306713 -0.00183115147878415 0.106319102682756 0.030599042396884 0.025456859754319 0.0281660502009543 -0.0267185991345255 -0.0747904645530471 0.0703269447138436 -0.0594611749039675 0.0138011494933979 0.0237159204087068 -0.0334263604623056 -0.0298476235925714 0.0206818326100383 0.0284625830932968 0.113395110897765 -0.0618696625420931 -0.00601285822803505 -0.0852956419479519 -0.0344354428147231 -0.0420200378589295 0.0346761091354782 +-0.0160291333603892 -0.00613164865166701 -0.0480043736882922 0.238350608234989 -0.0819020336601388 -0.00736694370116684 -0.0148359437988125 0.0991783357819749 0.00576098748284974 -0.0186017680241679 -0.0788389079448744 -0.0302938444162809 -0.0943711035436117 -0.0588749392804855 -0.073593811906998 0.0540972986335619 -0.0187745649733965 0.02764041570779 -0.0104893422311126 -0.0523101407045391 -0.109436828924242 -0.0964217377688751 0.134709491781703 -0.00856863047390782 -0.186909240195363 -0.0202841422198037 -0.0409279825324478 0.0607484675716505 -0.0128818907314475 -0.0818683845928507 0.0263916558785717 0.140098761039807 -0.0529190902413413 -0.0453737200888111 0.0345071114518861 -0.0247552945869741 -0.0659310174312886 0.00729118889381231 -0.0506396547262363 0.199528275510898 0.00891821056606368 0.0043563643371083 -0.0631781269070635 -0.0531077280211871 0.776577215833519 -0.0251741358456096 -0.0465582501886584 -0.0286581253052065 0.119036582310105 -0.0105170308192465 -0.173673565172956 -0.0842187104659505 -0.0951700301900695 -0.114919121970331 0.125037425626227 0.030275421481992 -0.0663384842705482 -0.038841076447779 0.000872140223089905 -0.0118989747826214 0.034177586451599 -0.0588428871643557 -0.0184832536039958 -0.0223592354548156 -0.0852313375556598 -0.0771174299901557 0.185334295408952 0.114978042752483 0.0184447189611591 -0.0603609974297459 -0.0107712763317594 -0.0805043004029038 -0.123577741421156 -0.0265621524471063 -0.0453325589558345 0.212628743614605 -0.064385522829403 -0.00767968048083662 -0.136475607835813 -0.0335266511869073 0.0363573627780977 -0.0491032894009288 0.145355457985414 0.27446808268349 0.150618350238967 -0.044398938312976 -0.100534982601916 0.0221686380165813 -0.0226292524244883 -0.0876000198392718 0.221359193592634 -0.0524582544234454 0.0462752858338566 0.137545047795176 -0.0120581657849523 0.0103778915599618 -0.0925347264035884 0.0388857675004094 0.0149543589947777 -0.0247534655369721 +-0.0333037768603902 -0.0362094071806555 -0.0697251789537274 -0.0701462551139026 -0.0737784560807881 -0.155904054084348 -0.140187903677666 0.0287193837973423 0.0160200209615406 -0.0976405390078011 0.0688004755021778 -0.0865805569271703 0.0438812379515199 -0.160688726551305 -0.0750610308545552 -0.000107094459393253 0.431635933032899 0.484945495651082 -0.045798360959398 -0.0781919930652198 0.0454391096642726 0.131127746129686 -0.0892395469509596 -0.131296875709121 0.0124021007364674 0.278503993021142 -0.0616477048580686 -0.0864816610051732 -0.0282747850768353 -0.100669298305492 0.0241801551937531 -0.0806055613363568 -0.0516160396150529 0.0696667330473767 -0.159371919349092 -0.0257409923911981 -0.0782499590801488 -0.0577914649889074 -0.073906513085944 -0.0664981114454762 -0.125359254257348 0.187410773991875 -0.0608306531716432 -1.88604523530309e-05 -0.0251741358456096 1.05420843729795 0.0483060398283006 -0.0860755716610903 -0.0202667457792101 0.203047220271609 -0.0394455925175807 -0.112671066239302 -0.121133291678286 0.112744107187092 -0.0600298174575386 0.0298624763360052 0.090249032764537 -0.114557727820016 0.0761534366329077 -0.000527467945911613 -0.0735695264804925 -0.027921654739658 0.0699299905412767 -0.0703591015556646 -0.0703822549502224 -0.0904158297216541 -0.0479433994894653 0.00436197278523615 -0.000492535582189194 0.0799198376933804 -0.11587175557229 -0.056768261074986 0.00554859084408772 -0.0526942591296826 0.0190508080867921 -0.0204401368683505 0.0348136817780988 -0.0809707388369247 0.0833379883921637 0.0717706271106498 -0.0143823933272292 -0.0418865002000421 0.00461725001548527 -0.0721500784594641 -0.0816443432453839 0.0744317251374555 0.0834417860221614 0.177479858859651 -0.0955258537341497 -0.0601490769224902 -0.0524080896532476 0.278710451173009 -0.00795454096686113 -0.0651126242557105 -0.0858036216484477 -0.0152046351593639 0.0446279984644102 -0.00552443751892031 0.0167118647229687 0.000754840176589452 +0.023332517583835 -0.0702598969359386 -0.0177636778971329 0.0111354349140773 -0.0714451410754389 -0.0868526832591872 -0.114854946938121 -0.0589956457633019 -0.136211379255646 -0.0418390921039219 -0.0979683335153129 -0.0691043073620155 0.224315951151813 -0.129368054334391 -0.0958245219229184 0.0620127366661659 -0.00519193310299082 -0.036052822764949 0.126729698585313 -0.0594313516954146 -0.0755017960241217 -0.0124707965282868 -0.0426559363065222 -0.0952813500952731 -0.0313117066355488 -0.076858556570241 -0.0470063707769703 -0.0335366945047875 0.0550392973819437 -0.0666588906931321 0.0653380604424904 0.0301542344629873 -0.0610726499107851 -0.018922438478337 -0.14788440006381 0.0765167983499612 -0.0731525823968824 -0.0319234022333628 0.124362767393251 -0.0786722835646636 -0.0756032380895794 -0.0183603694570897 -0.0457393529545833 -0.101877567720961 -0.0465582501886584 0.0483060398283006 0.924060330213489 -0.0768244578820221 -0.0127615893261008 -0.00971989654369324 0.014860973144737 0.0492730076322411 -0.0397138341994113 0.0307113440289387 -0.0570593393506115 -0.0862595772592583 0.295077388528477 0.0602523911705662 0.0910693154081994 -0.0509964695314392 -0.027611867831843 -0.060278910788944 -0.0597289733207245 -0.0539081459312134 -0.0108923074340124 -0.0611993902075278 0.00799839722025928 0.180997524628128 0.219027310229874 0.379434188584621 -0.0528372303773778 0.0208141675420267 -0.024537903401053 -0.027326179588781 -0.0666467427257652 -0.0535900093119604 0.148107598523856 -0.052433204639527 -0.0204526152282003 0.0600628139071966 -0.0510394408867255 -0.0203738964471019 0.0207558465284221 0.00607072758923878 -0.0459541678804199 -0.040711666374212 0.143817810214033 -0.0609270367605575 -0.0538758082258489 0.028169976161799 -0.0603879398501875 -0.00652114212111897 0.0588830113994609 -0.104902163685466 -0.136817607195784 0.0685387404288858 0.216215636849849 -0.00786111992827925 0.0419358213015524 0.0534187772694809 +-0.00419615821718095 0.240447358988018 0.0149113372671364 0.0330903423835137 0.0043352358081729 0.0102054217922864 0.0170296354116533 -0.0123644554245227 -0.110270221207507 -0.0253548321512696 -0.0502829367963009 -0.0034096418638285 -0.0592021711810903 -0.0115887985012331 0.0474025104397319 -0.128827231667211 -0.0648250006975423 -0.0886454205035542 -0.0607383900106459 -0.139922286338054 -0.0529227900534051 -0.0792599039453788 0.00913985711486273 -0.0280549567509962 -0.0227368857185831 -0.048640605193057 0.107622301995698 0.259281844949877 0.00457608224746663 0.204866356779037 -0.0743248371947475 -0.0335803870853016 -0.0384810373365894 -0.0583927112480624 0.0748779622506605 -0.101231880558236 -0.0375894759815261 0.110351447782652 -0.0556073447983691 0.107402564030201 0.0565618846899277 -0.111052870425351 -0.00765751995054714 -0.12114442282859 -0.0286581253052065 -0.0860755716610903 -0.0768244578820221 0.789602646831965 0.141964384880485 -0.0254673645768827 -0.101692713269708 0.0983873627115117 -0.0488258863110261 -0.0294807583317449 0.129850022004764 0.0492258553611076 -0.113114953943844 -0.0282111095030369 -0.0474751434135097 0.175227175634231 0.22307309635672 -0.0229826795814829 -0.0421049650709645 -0.0319433064318825 0.164613198953221 -0.0716243182234037 0.0299258115966728 -0.0360475546219488 -0.0723254639452112 -0.172384361573914 0.00299895771415536 -0.0412335405295961 0.1780912290967 -0.0661052810755094 0.211354955366275 0.0148403315654485 -0.0621523014479042 -0.0431180421180481 -0.048790569629344 -0.0102781831638237 0.0042700267535079 -0.0802625232062547 0.0171353028751803 0.0110164173088342 -0.00394412400502963 -0.0646960954837386 -0.0339151238014343 -0.0499941953615486 0.033261616772988 0.0262880633543046 0.0374285079970444 -0.0344885587452035 -0.0117723182333129 -0.101484477930303 -0.00903065009636552 0.0831873559568306 -0.0617972410675281 -0.000120308045246673 -0.0535510166756158 -0.0811324252214495 +-0.0105860554422823 0.128181737419967 -0.00940650822453573 0.134438889752835 -0.116707734344371 -0.0444379539923503 0.0134687965166191 -0.038552758382569 -0.0126481389744432 0.026339722157509 -0.0335081385380936 -0.013339170780834 0.0106897169726582 -0.0626481044631776 -0.0258358855166498 -0.0100650768725218 0.0405404062749875 -0.0230209248431613 -0.0157709205462105 -0.0820331215748268 -0.0794982451388313 -0.00714273579598434 0.100840535088493 -0.0397520851215048 -0.0594484935109331 -0.139475129749173 -0.0735701856670122 0.0975091802836465 -0.0247536551719392 0.0177127645444093 -0.0262245737275963 0.0888023419720506 -0.092102247730475 -0.0472731409035782 0.0156243127633297 -0.0840829272842419 -0.0914354645609618 -0.0572699148450385 -0.0927256945827603 0.270238188603098 0.0392156988264916 -0.065881085099581 -0.0158605787935323 -0.0221314131899542 0.119036582310105 -0.0202667457792101 -0.0127615893261008 0.141964384880485 0.814590704374433 -0.0331458327008105 -0.170158075889037 0.0407565109638924 -0.0614654887295812 -0.00327391345680694 0.268922019652707 -0.0300009838157515 -0.0168082899694664 0.0284290694388054 -0.0304412763493011 -0.0554217085447548 0.046499484382999 -0.121009880716466 -0.0831078255712047 0.076535310377789 -0.0134989258953246 -0.046800461261851 0.0702130011265644 0.173720671438128 0.0235454012812508 -0.0844655823115831 -0.0307267393262731 0.0328751198482684 0.0911302490424119 -0.00260288403126251 -0.0185974711371567 0.150720066585887 -0.0613460170158398 -0.0612168265916374 -0.0644272961484072 0.0334142538463022 -0.105387915039105 -0.111592677304751 0.203789193170464 0.0944378879305285 0.0771087331715645 -0.0884345886711146 -0.12696901098423 -0.0554820347210362 0.0412784056725897 -0.000400038868815761 0.112195625908953 -0.0621660789835348 0.0182399534995573 -0.0784694526954731 -0.0286519507952047 0.0297561041040712 -0.098914275685595 -0.0917653004871633 0.0164241322180746 -0.101786374318926 +0.0614107634063085 -0.00827024089330612 -0.0131780108741643 0.0121418045676872 -0.0692333071605332 -0.159959737013733 -0.173093906242371 0.0966881901489075 0.0386082573669955 -0.127898003261741 -0.000452944584055894 -0.0932236587676025 0.0316187525056828 -0.101385211071598 -0.139682763380869 -0.0302104497403177 0.165654308784336 0.099036435385609 -0.0692462297887167 -0.0450427317009664 -0.0252729662053937 -0.0042005129125905 0.0190962317860392 -0.16934162512008 -0.0619373956874447 0.135947634732016 -0.0895233736741436 -0.0419868940502275 0.0485932260212661 -0.106382793902944 -0.0448514662031143 0.0181401632987217 0.114039652783898 0.214251535956835 -0.107892695338775 0.115817733260243 -0.0382362493362148 -0.019386308703795 -0.0282631911577377 -0.0383288430160514 -0.119311059182169 0.145256696914874 -0.0594598113535523 0.0105256388109403 -0.0105170308192465 0.203047220271609 -0.00971989654369324 -0.0254673645768827 -0.0331458327008105 0.908263599386835 -0.0286954103645339 -0.0333115943757366 -0.0717230092769206 0.0568314901000169 0.00114844190227574 0.0836318189723794 0.0494747198831461 -0.0865720446170232 0.0441251520874492 0.00852982497045956 -0.0440107365691225 -0.0613961851124883 0.100218620316485 -0.0832911277077545 -0.111488812212664 -0.0633596870960881 -0.0593855382680243 -0.0422672703737272 -0.0527175603662645 0.0176640732197746 -0.0684043195720281 -0.0253327346696004 -0.0579975544774692 -0.0688474951487282 -0.0388220679461932 0.0104999570095971 -0.0544950376352982 -0.0580926882519149 -0.00894678692286527 0.0821111705317794 0.14914293558429 0.0349174479819852 -0.0620062919077949 -0.0329940433939873 0.0197960193513179 0.096116981228464 0.0110187345301733 0.170818629726339 -0.0880167457950424 -0.0239556032948353 -0.0130277160757648 0.241308207606417 0.0240166759477128 -0.0299663082389153 -0.13757966454996 -0.0213935807450313 -0.0204670543325441 0.124516513210372 0.00305463339866252 0.0460208612252867 +-0.0510580316190927 -0.021825560528729 -0.0484944019690006 -0.13284712268374 -0.0244798443721786 -0.012256194780716 0.00750559103730766 -0.0894316908648212 -0.017685794369673 -0.0492136346235967 0.193491881770054 -0.0356037553898148 -0.0874107528071399 0.0124405200693637 0.0213053290630016 -0.0738938745251251 -0.0217323603066589 -0.0588825110830937 -0.0572511789463095 0.150599618930788 0.424535048267284 0.123861406155399 -0.125894917869741 0.00175327899378002 0.389284633476418 -0.00379278210082655 0.165976935931634 -0.0833171633928375 -0.0266884933228882 0.0192240664930782 -0.0909083913437345 -0.136876263282806 -0.0229087378115551 -0.0538825652718778 -0.00535027748550031 0.0510280468812534 0.267448576980371 -0.0794289606224965 -0.0448598049409095 -0.168271973451658 0.0195902711695229 0.0091627463377265 -0.0541744132569149 0.00133452628362507 -0.173673565172956 -0.0394455925175807 0.014860973144737 -0.101692713269708 -0.170158075889037 -0.0286954103645339 1.08094794989059 -1.82376149237188e-05 0.080258171866498 0.178553530171312 -0.112394648432202 -0.0514122636401224 0.00687796739436516 -0.0817327231627716 -0.12237022421971 0.107034688827575 -0.0346760905948113 0.0485362024952429 0.0205386600267201 -0.0234374146513659 0.083638174024618 0.169551000427564 -0.110659403833917 -0.137372222378323 0.00464387915066896 0.035318059894664 -0.0371260838965671 0.176939411055823 -0.013772350792861 -0.0711429651651911 0.0898795640071314 -0.104419703438052 -0.00617140275399208 -0.00538512453623324 0.210088302765557 -0.0855486429776687 0.0228475194631067 0.0133301390641864 -0.122459034536676 -0.121567260399571 -0.136279578080174 -0.0527520148571624 0.0476933339646679 -0.0624067398697739 -0.0424396831693776 0.0242982209659557 -0.172547126593481 -0.0414162631917127 -0.0847956835165387 -0.0497396085936333 0.0682680783394008 -0.0141170245177571 0.02949758680099 -0.0758128258501591 -0.0181030672383156 0.0124519110683462 +0.000509919988535413 0.135604661247755 0.0653486175102014 -0.0526047897623828 -0.116801541446723 -0.0324896709898718 0.00554383332882076 -0.056492226694871 -0.0561872132928705 0.0734227226164431 -0.0750423252805074 0.0229214064329588 -0.0497280633529208 -0.0207709214570484 -0.0057902717439794 -0.0280444772642929 -0.115781178859652 -0.12461902793219 0.0264386135924596 -0.0608324596385361 -0.0385581388379442 -0.0972962877198958 -0.0623857265578726 0.032021574012245 0.0697677876225582 -0.0638659267877637 -0.0259240641037759 0.0952944106666302 -0.00951927339044939 -0.000639435050553003 -0.091670875736271 -0.0532688999766558 -0.0591635173765913 -0.107103880524773 0.00766405638042957 -0.0484731285710116 -0.0576500336422556 -0.0648721442800752 -0.023784575051933 -0.025532991244742 0.0201815084382292 -0.135049090893186 0.0535057953136951 -0.00802679198482005 -0.0842187104659505 -0.112671066239302 0.0492730076322411 0.0983873627115117 0.0407565109638924 -0.0333115943757366 -1.82376149237188e-05 0.892354964521667 -0.0169143274552028 0.210591377395967 -0.0182898310640409 -0.042745436922367 -0.0258366005447709 0.0540039010857669 -0.0703435416841285 0.02230937388112 0.135895791719136 -0.12571873761861 -0.0629016835098915 0.0693562731260779 -0.023658029975968 -0.0745655220100714 -0.0591708961969117 -0.0516878641069059 0.0493972214788708 0.00853308758681707 0.0552797323808842 -0.00613835123443229 0.120480397881374 0.0451307547968796 0.0465140047342107 -0.0378730602670154 -0.0577898616882819 -0.0562899553494286 0.22888312328133 0.0545134691283417 0.0350592914855758 -0.0828545074786838 -0.011230139009152 -0.0115437860836159 -0.0879029455612785 -0.0722293255984296 -0.0470032809727273 -0.077763477958888 0.0736388808514564 -0.0128781003605751 -0.030872072430665 -0.0430998945295161 0.029943381709195 -0.0228460534464373 0.0080205304169292 0.292896108866295 0.00504512589109213 -0.0420333785258618 0.27136019859287 -0.0350459796342497 +-0.0411365935855015 -0.0644381932978726 -0.0919828698625527 -0.110319662175865 0.0586318908614081 0.122885899401413 0.284517945245347 -0.137424127818174 -0.0169934609657174 -0.0873508258685893 0.038240095965207 -0.0977954039148735 -0.0329031490738657 0.166233759328264 0.158836789381581 -0.0304226139490323 -0.10183005945937 -0.0690543470642255 -0.0611600212035659 0.0495711918745835 0.111611922216016 -0.0276750528912026 -0.0164193716205697 0.231730669479576 0.0775579138563795 -0.134182580347092 0.124779083969584 -0.123532729200343 -0.0119085237108565 0.224262152472862 -0.0506088571270059 -0.0472536558760946 0.0507656415787618 0.0497864346756951 0.196250930257507 -0.074465645217826 0.0505585881456231 -0.0649300086231819 0.0053641983594642 -0.063309879874337 0.064900154378731 0.0213882053579272 -0.111596354507941 -0.0055284703793255 -0.0951700301900695 -0.121133291678286 -0.0397138341994113 -0.0488258863110261 -0.0614654887295812 -0.0717230092769206 0.080258171866498 -0.0169143274552028 1.01705249968783 -0.0132633416340042 -0.0803790671615884 -0.0269693844797943 -0.0666128329745716 0.00990578702951475 -0.107440398043116 -0.0084229783630219 -0.0896775050241393 0.0354324868984828 -0.0348889950428637 -0.103090250524052 0.163855561656947 0.180976992742389 -0.048595760236739 -0.0529511286764466 -0.0618368063288744 -0.0498903993125154 -0.0483045645891744 0.174047044963751 0.0938153679590959 -0.0454272715478209 -0.0331212593653382 -0.0217650421379729 -0.0278893989695562 -0.040732494497848 0.0542121636672836 -0.0426433419642627 -0.0330868767478101 0.0350250604075162 -0.102693500094227 -0.0402917688535092 -0.0671875045317497 -0.0753786589561138 -0.00559651527745425 -0.118313346522282 -0.0360216983635644 -0.110833070570809 -0.106522547405579 -0.045571704366226 -0.0211441202255403 -0.0696012506093912 0.228959316261817 -0.0117115577154894 -0.0465569644625748 0.0111243441706055 0.0209345921034947 0.0305423547203684 +-0.0549792625081292 0.0335511701601847 -0.0555211560087789 -0.0675275214754484 -0.0809965025101941 -0.115639911829191 -0.0484563561593008 -0.027739311288528 -0.063034450635222 0.0461222899960295 0.0827332476812594 -0.0399808902588419 -0.0189693341655922 -0.0514251613044873 -0.0166753530484032 -0.0513391968840202 0.000552501530517498 0.0391136837674379 0.0275740767307411 -0.124052394813858 0.142914607182533 0.10071008371593 -0.130994161721755 -0.0493257352979881 0.256540943962394 0.00879440540157288 -0.0230326269735803 -0.042921411194519 -0.0185179817417048 -0.0659983082216418 -0.0420615296793724 -0.137722866306262 -0.0485812843060877 -0.0275923336592945 -0.0593443391298934 -0.0212499100574185 -0.0400144349893591 -0.140332537303178 -0.0711959072905521 -0.1240393152879 -0.0513528321031219 0.0384809236679041 -0.0699612476985716 -0.104508883413974 -0.114919121970331 0.112744107187092 0.0307113440289387 -0.0294807583317449 -0.00327391345680694 0.0568314901000169 0.178553530171312 0.210591377395967 -0.0132633416340042 0.986127937273864 -0.0491020687595892 -0.00937406203197251 0.0763252491047642 -0.00911872896944193 -0.0831195951270711 0.00999297429089875 -0.0330359581541388 -0.039341699866471 -0.0279438309431971 -0.0344427401673768 -0.03643995873987 -0.00728387420742607 -0.0655063412231607 -0.0334616605297736 -0.00630272370630247 0.0369593610461085 -0.0166776825380539 0.0196259818301742 0.103441954287397 -0.018567502082668 -0.0133224256399505 -0.057168444525435 -0.0237184597168729 -0.0868977600923241 0.392773683975634 0.0129209231704839 -0.00355084998693659 0.0218849592276075 -0.0234883502727799 -0.0617936814138497 -0.119568994005044 -0.0766872485890833 -0.0427323016973249 -0.00200781320358541 0.0122954547903707 -0.00636132910353664 -0.0746231073066778 0.0021497154395405 -0.0375993064473916 -0.0123731711516514 -0.0155200039074547 0.257718137798272 0.0547509160245899 -0.0391982411729303 0.222078937891833 0.0372191110170571 +0.0209009482392375 0.110617606380727 0.0154926862747172 0.156609940513123 -0.0382399924476631 0.035563588463366 0.0433240602278137 -0.0428417568909458 0.0253702353692646 0.0060113917486396 -0.0362024550966288 0.0455573331934719 -0.00386388958587371 0.0199986357642327 -0.024678628699387 -0.0446621752203914 -0.0283270479020079 -0.0739836355009889 -0.0152174888235151 -0.101741158784541 -0.0595794062523965 -0.0399392245095858 0.133315300527151 0.0222495679528721 -0.101472480368598 -0.0695835507262805 -0.0576297156612002 0.0854877700130888 -0.0468235294950891 0.0679657170747575 -0.0578977960475477 0.0589155050861193 -0.135161120903053 -0.0656275398192732 0.0449060293755194 -0.0723834072111965 -0.0913074316138495 -0.0771205623085779 -0.0285384059986073 0.290511434602067 0.0217973049891835 -0.128984555650647 0.0193714231629933 -0.0062852569178802 0.125037425626227 -0.0600298174575386 -0.0570593393506115 0.129850022004764 0.268922019652707 0.00114844190227574 -0.112394648432202 -0.0182898310640409 -0.0803790671615884 -0.0491020687595892 0.856941219013525 -0.00998603544737862 -0.111471780453263 -0.011982557933866 -0.0622444919177216 -0.0821583395686525 0.0852797357027032 -0.0677629029196522 -0.12052145261572 0.072751642249816 -0.0539246990244962 -0.0550191364256748 0.16512257733804 0.0707511302782255 -0.1010301190133 -0.184500760558996 -0.00654669733806489 -0.0203252086946136 0.0612316185788536 0.0232226405697567 -0.0369914848648428 0.168171054735917 -0.0884885347117695 -0.0593305324642964 -0.0844765897758558 -0.0220088842236175 -0.0335495659659729 -0.0595170663680639 0.218395132928382 0.130763228907672 0.0681848413025958 -0.101610705618581 -0.0837579858553571 -0.0250641723305748 0.033029716079272 -0.0155394215700372 0.17433565458757 -0.0508298407932768 -0.0249184012411068 -0.0132526311881177 0.0224177444698865 0.0439792446052097 -0.131394047205276 -0.0149409166218108 -0.106066415358915 -0.0785096268515498 +0.0171594332916255 0.00727377876074632 -0.0497266194128567 -0.0168069935173521 -0.0137369403282573 -0.045797095734262 -0.0293442225047024 0.204544172961328 -0.00153944124234748 -0.0211136045925095 -0.0347525468108172 -0.0209640190618739 -0.0562259969520381 0.00875919626901734 -0.00761675834703794 -0.0745304987099158 -0.0488808152567648 -0.0137897123994747 0.00686326399997443 -0.0497286944303839 -0.017614555869772 -0.0367316017525737 -0.0434837813470141 -0.00141312109847768 -0.030116623385321 0.0783546555131155 0.0139707301413187 -0.0376475861046767 -0.0641263187872371 0.0174030266185711 -0.0778616633456735 -0.0183950709744347 0.086495315185899 0.112023279001605 -0.0468870608062048 -0.0114976040671561 -0.0901795855761042 -0.045476999196816 0.0172561442509502 -0.0122359810730965 -0.0367354777420415 -0.0111999522120447 -0.0491843836880729 -0.0406952489035651 0.030275421481992 0.0298624763360052 -0.0862595772592583 0.0492258553611076 -0.0300009838157515 0.0836318189723794 -0.0514122636401224 -0.042745436922367 -0.0269693844797943 -0.00937406203197251 -0.00998603544737862 0.739301210329411 -0.0260961442411098 -0.0172180206212838 -0.0477962714841012 0.0242320987223153 0.0183131345192592 -0.0300242261567631 0.136861470524383 -0.048748704124811 -0.0112898964984699 -0.0530968011107979 0.0729804183652595 -0.0823308533872272 -0.073367250965387 -0.0878027684890346 -0.011549228444867 0.0639440737499642 -0.0785168841699604 -0.0577756602362374 0.0337656916401877 -0.0554104958830577 -0.0272667738489141 0.00225889129716495 -0.0294861019473076 -0.0384325848390803 0.195126678627742 0.107222232370297 -0.040854056948462 0.0377667261144158 0.00193955580738244 0.0757093548666031 -0.0942996917534634 0.117391683990871 -0.0226289032807159 0.00271296530929177 0.0247930751630756 0.151575952172656 -0.0502879915378508 0.086788031778071 -0.01370200876067 -0.0805557181987568 -0.0587549393282926 0.196333918245246 -0.042444991295847 -0.0591608654492163 +0.0121449877546965 -0.0820878245234639 -0.00141630402026421 -0.0694406638412137 0.0102653978244164 -0.170202915808109 -0.152165194949314 -0.0299956153398741 -0.105430972532777 -0.0152114289481854 0.00601175746438672 -0.122970163771204 0.239942036052073 -0.138991709905524 -0.139844154313147 0.0382616237176042 0.0635189852802382 0.000399081697461523 0.0623210391110118 0.0104226072736545 -0.0534314528635472 0.0355997565599918 -0.0454479547756097 -0.133172227730427 0.0631341437981424 -0.0127922434008057 -0.0980816679598769 -0.0780289828891248 -0.0093601062803761 -0.120370448056024 0.0680430409633097 -0.0648743626620612 0.00938637564321481 0.0680642611133316 -0.143674479784331 0.0520508790516408 -0.0355201329783681 -0.040611540424602 0.174214086795286 -0.0763565372422756 -0.118835566783417 0.0320954332919991 -0.0407578288830932 -0.100567621639543 -0.0663384842705482 0.090249032764537 0.295077388528477 -0.113114953943844 -0.0168082899694664 0.0494747198831461 0.00687796739436516 -0.0258366005447709 -0.0666128329745716 0.0763252491047642 -0.111471780453263 -0.0260961442411098 0.923848863591847 0.0617700394858071 0.0154506659374427 -0.0416223025325373 -0.0574528411944672 0.0487476542514559 0.0668050514759949 -0.0513249464662678 -0.0973832351440144 -0.0538411192614395 -0.113790360757215 0.200379199702493 0.161904825241762 0.413968782778519 0.0126300207247289 0.0209923041994844 -0.0115332955723213 -0.0226600762452978 -0.0823341794351586 -0.076119297920103 0.179096685910364 -0.0649235587512447 -0.0195911519292893 0.0251468554654999 -0.0251931098420688 0.0131634036261306 -0.0665508482653592 -0.135996927936764 -0.0556770014335973 0.115991417896056 0.193134671012592 -0.0445287346830976 -0.0409553777221014 0.0199672613658722 -0.15666417335766 0.0439902084976107 0.00665910329153083 -0.0782585607487929 -0.143506639121128 0.0395859065825478 0.246090656169457 -0.0858680087049549 0.0470507504193426 0.0318743369447524 +-0.00935031584967006 -0.0219848501900818 0.121266836693192 -0.00639946496248322 -0.0832190792755184 0.0450941929127345 0.0642977398488052 -0.0672380746328055 -0.0879308364030307 0.121946613083263 -0.0807253066996056 0.0968598015822155 0.0980949732093683 0.10902288397694 0.117876292990837 -0.0571318275008044 -0.0587056453762142 -0.145803389699334 0.245436755959243 0.0136559509583581 -0.0581839418014273 -0.0460891455324602 -0.0960307644385246 0.124149450889283 -0.0913179457236006 -0.0968777268201452 -0.0620299648342915 0.00423219687195352 -0.0348117366826035 -0.0530177364491435 -0.0740922732668294 -0.0247075172709162 -0.0783727429129661 -0.0769275848203656 0.041380871024683 -0.0188152875794605 -0.0734985816590846 -0.0530612233607345 0.272997466140779 -0.0188454526033379 0.0565128354155827 -0.104113137164268 0.115915243176141 0.0142175141892883 -0.038841076447779 -0.114557727820016 0.0602523911705662 -0.0282111095030369 0.0284290694388054 -0.0865720446170232 -0.0817327231627716 0.0540039010857669 0.00990578702951475 -0.00911872896944193 -0.011982557933866 -0.0172180206212838 0.0617700394858071 0.736650358917371 -0.0418147431079456 0.00310795514408172 0.0296079956928779 -0.0472540367240065 -0.114393704084552 0.110351517287608 -0.0364956793178151 -0.105260225663164 -0.0112374348954934 -0.00954667264523631 -0.0300466512737319 0.0888247258153063 0.0339845413361616 0.0132725890168529 -0.00830255301332352 0.123024419683143 -0.06048577401084 -0.0886036132248793 0.126624764720364 -0.023829640061556 -0.0152500869590043 -0.0268828688081356 -0.0428893350053138 -0.103687956992328 0.0422227472900016 0.0159396169922519 -0.0190056033653468 -0.0907571300352564 0.121612437462742 -0.127911926562722 0.121958989045338 -0.0264135535079953 -0.00394098838433093 -0.123129192899422 -0.0146168738050757 -0.0603023394807416 0.0168005060670632 0.0203996208340016 0.126456894888982 -0.0285062005770232 0.01305655358398 -0.092701134011064 +-0.00572081593462212 -0.101266281857485 -0.0637129439922193 0.00595793652783166 -0.0147716700069698 -0.0747659180095134 -0.10875079252584 -0.00776358986901384 0.0632248278685034 -0.0485759020015665 0.041740063431925 -0.0518508013075593 0.0854035987956128 -0.0780903642334167 -0.10400454754281 0.169976542307287 0.0457415527482676 0.048205368515463 -0.0937949818619069 0.00164034534614305 -0.0522044612427177 -0.0193365081345285 0.00349710279627844 -0.0863401984896762 -0.101735270948535 0.038136128907457 -0.0526457393697815 -0.102466385397893 0.295513513120141 -0.0905164639002499 0.22650618119612 0.013414975100843 -0.0153200133361788 -0.0212051416065456 -0.113718864892956 0.157557324633049 -0.0773357750840361 0.0405406925017595 -0.0932499134750729 0.0330493721753836 -0.0208506564716702 -0.0156618268975243 -0.116891143174178 0.0621193034328287 0.000872140223089905 0.0761534366329077 0.0910693154081994 -0.0474751434135097 -0.0304412763493011 0.0441251520874492 -0.12237022421971 -0.0703435416841285 -0.107440398043116 -0.0831195951270711 -0.0622444919177216 -0.0477962714841012 0.0154506659374427 -0.0418147431079456 0.913847094334717 -0.0238608703390663 -0.0457762712844322 0.00929186716710206 -0.0492401647228268 -0.0497960302140967 -0.0417944984767513 -0.0763182154686386 -0.0331165288475975 0.0372548011942743 0.0557582742491475 0.116247246937646 -0.0631265555282774 -0.0911200706967354 -0.0159423702083479 -0.0549504529675486 -0.0373962744423195 0.0149184773700837 0.0155552161773751 0.132467247118319 -0.0624638106519357 0.06815477277135 -0.058919902524002 -0.00706304766402108 0.00369761917060757 -0.0708253343435349 -0.00718942994535563 -0.0253904516966571 -0.019481140252249 -0.00634070071069006 -0.104716833837754 0.181581805778199 0.0154198748973155 0.079000410562327 0.298154702702551 0.00752436844703366 -0.0937814519208373 -0.0847187717492989 -0.013718932409131 -0.02126132172707 -0.0293504573652706 0.224916808243512 +-0.0423051131761888 0.13127315471291 -0.0660289356054985 -0.0198501914817715 -0.0104211172668162 -0.02314217301248 -0.0481004724367138 -0.0048651913230925 -0.0212183772572303 -0.016144951959765 0.130383857553863 -0.0389102948221944 -0.0376949446517507 -0.045484346625819 0.0227754824397191 -0.051702539931532 -0.0303751074246492 -0.04351723864459 -0.0558898002323526 -0.0570696261289179 0.045795268642133 -0.0479760184163321 -0.06945468190939 -0.0767988949746224 0.192058139284317 -0.0147735089287343 0.166549944609621 0.145955760255341 -0.0218202342739651 0.126571443107391 -0.0542449962936951 -0.15864120379337 -0.026414698257083 0.0336922764936202 -0.0260732377053254 -0.00588380321051397 -0.0138055541210571 0.118515034487117 -0.0443361128749489 -0.0826106672296094 -0.0133917773488319 -0.00315645192100091 -0.0461002404576996 -0.00114420982313492 -0.0118989747826214 -0.000527467945911613 -0.0509964695314392 0.175227175634231 -0.0554217085447548 0.00852982497045956 0.107034688827575 0.02230937388112 -0.0084229783630219 0.00999297429089875 -0.0821583395686525 0.0242320987223153 -0.0416223025325373 0.00310795514408172 -0.0238608703390663 0.940450620369846 0.17565947935447 -0.0094254361531047 -0.0186976118676133 -0.0793564649670462 0.132179068730184 -0.0852862029922133 -0.0369271595486975 -0.0647378934062198 -0.0630125481685362 -0.0673481533442666 -0.0318005283200961 0.0227417471962402 0.000234115067058208 -0.129308362722184 0.466176547476444 -0.0623918302588146 0.0172899683589632 -0.050637937390108 0.0180541494823477 0.0183982436589206 -0.036339327029261 -0.0765410708399875 -0.035962418515188 -0.0617982892578729 -0.103929488620489 -0.0330017189950103 0.0251000146602861 -0.0207439036453082 -0.050957131087773 -0.0156686346470694 -0.0769964569860296 -0.0382243409728491 -0.0257791214509011 0.000154754153136931 -0.0863034401898634 -0.0435682124191599 -0.0367308239063932 -0.0296377061957362 -0.0173881213882064 0.00274657876009218 +0.00473425282175886 0.241513926970115 0.0830706259039466 0.00804011730533153 -0.0452674161296658 -0.0177665664985354 -0.00346094278099868 0.0187552526383706 -0.114471190883669 0.000419363235517357 -0.0686446542802643 0.00519539434166973 -0.0637893645257218 -0.0192387690245155 -0.0403488515447582 -0.0742294922639575 -0.00958956721314832 -0.125660643449921 0.00262348238764559 -0.0789545620724662 -0.0644445265255513 -0.113250223785564 -0.0641644538589718 -0.0106616972525981 -0.0192682516384693 -0.0343707027943207 0.120678307273971 0.295695400116072 -0.0236084238759712 0.100974527731089 -0.0832215307443802 -0.095289737644953 -0.0440414405007264 -0.0757040321296074 0.104520944416186 -0.0256931534417882 -0.0273820401825634 0.0745379541129016 -0.0475480921907338 0.037065298259962 0.0502382892870422 -0.0928782218374679 0.0719429824860755 -0.0806039448496461 0.034177586451599 -0.0735695264804925 -0.027611867831843 0.22307309635672 0.046499484382999 -0.0440107365691225 -0.0346760905948113 0.135895791719136 -0.0896775050241393 -0.0330359581541388 0.0852797357027032 0.0183131345192592 -0.0574528411944672 0.0296079956928779 -0.0457762712844322 0.17565947935447 0.778781291910292 -0.0103784358305311 -0.0438657519426175 0.0593968243829293 0.11427109650616 -0.0278795659370756 -0.0381863735100915 -0.0370143770840718 0.0199407386755204 -0.103048034593709 0.0467996448585568 -0.032405568277246 0.061609799876267 -0.000861337133299579 0.164836552727292 -0.0833753448660133 -0.0397867637654502 -0.0599322903972836 -0.0434900865175034 -0.0230735629849767 0.0429174813052563 -0.0398175158258432 -0.0100492923460346 -0.0140874792506867 -0.0651000318037026 -0.0278685415560704 -0.0576233104419873 -0.103608161651163 0.0561801154914462 -0.079344002769748 0.0453850942211182 -0.0406160240877882 -0.0332339867636381 -0.0401094413598029 -0.0131379157491319 0.0656789742902657 -0.0633807227373953 -0.0282047133212527 -0.06886150648582 -0.0261730277581816 +0.00355899565153884 -0.0721321114129478 -0.0148884945148026 -0.0351993093056039 0.381233049482316 -0.0295747865116326 -0.0633100805282704 -0.118549054747143 0.0561244898172417 -0.0469258228541015 0.0168219292101809 0.00598464915035281 -0.0368803847410105 0.00231967807954596 -0.0292914370370226 -0.129926424672019 -0.0135800360981446 0.0370190213172795 -0.0884385492418976 -0.0580731981696686 -0.0375438183408795 0.0252400290527806 0.00872647628675581 -0.0618951751721238 0.0158247160887069 -0.000829459020266402 -0.010777383901984 -0.0304588573852668 0.04383348973074 0.0228799042654537 -0.0570302523840837 0.0343377145096339 -0.048582387854495 -0.0755649690234784 -0.0878055053916417 0.127770467639901 -0.0049887049738043 0.0927915894859045 0.0257725257691463 -0.0611296833437029 -0.136029455368754 -0.00462409137617471 0.0214842958095949 -0.0586734056548992 -0.0588428871643557 -0.027921654739658 -0.060278910788944 -0.0229826795814829 -0.121009880716466 -0.0613961851124883 0.0485362024952429 -0.12571873761861 0.0354324868984828 -0.039341699866471 -0.0677629029196522 -0.0300242261567631 0.0487476542514559 -0.0472540367240065 0.00929186716710206 -0.0094254361531047 -0.0103784358305311 1.03412543685568 0.0135732355224405 -0.034974739045591 -0.0186667706694728 0.0350257182364982 -0.0304656121852813 -0.02051688012021 -0.0391057024689018 0.00262167681325721 0.177943926664493 0.0320548386249076 -0.0458981783087588 -0.0197185388061067 -0.0314024809952429 0.000149344658208143 -0.00400295021479605 0.268375361531062 -0.0378887859459457 0.065678836210279 -0.024253477861535 0.051956735828589 -0.0681251090785437 -0.0694722071315624 -0.0246459127049246 0.0590836396736 0.0932763293802343 -0.0318026287136036 -0.0219395596772269 0.0552267915164107 -0.0718696403309721 0.0104840154698608 0.0298786931607971 0.0655606930255557 -0.0716220042546346 -0.112474092958965 -0.0205358634247803 -0.101659368747967 -0.0453973203294553 0.183165410951624 +0.0304136913317859 -0.0243042585833433 -0.0304595725710012 -0.0715877066009711 0.0974533173007556 -0.0660888908275196 -0.157617790675974 0.113531368926285 0.0351286013883935 -0.0719633939638973 0.0390857689761332 -0.0528359284952873 -0.0148962604035824 -0.102632551344346 -0.121878046326721 -0.0693474299690917 0.00144765393064754 0.0504228397422653 -0.0962089599836064 0.00657543796384721 0.0121472497523871 0.0280124626893959 -0.0294781183038984 -0.166944840377144 0.024770424375155 0.18055675124615 -0.040846209864911 -0.0112406372523138 -0.0761994882166349 -0.113743269965877 -0.0292053978103761 -0.0460106477381283 0.315576304678814 0.140436412214589 -0.140721694756035 -0.0168386960652325 0.0317748703527983 0.014561118892328 -0.0456119990208697 -0.0623612806624049 -0.0976921388895561 0.269959557397828 -0.0363994534466237 0.0414470953107039 -0.0184832536039958 0.0699299905412767 -0.0597289733207245 -0.0421049650709645 -0.0831078255712047 0.100218620316485 0.0205386600267201 -0.0629016835098915 -0.0348889950428637 -0.0279438309431971 -0.12052145261572 0.136861470524383 0.0668050514759949 -0.114393704084552 -0.0492401647228268 -0.0186976118676133 -0.0438657519426175 0.0135732355224405 0.819024102907724 -0.0701199683973641 -0.0181405935584037 0.116974836925211 -0.112195151554138 -0.0316049971184345 -0.0131455427052044 -0.00255012107875752 -0.131447328587853 0.0413296479592055 -0.0637074036931832 -0.10263323154456 -0.00269520261498815 -0.0594962688791876 0.00388267027959445 -0.0119041541809152 -0.0010509169885528 -0.0127574150407013 0.164054502070107 0.262011265254552 -0.0298845073914012 -0.0943473537094773 -0.0189725689506883 0.220672289139664 0.0111499174479003 0.199901387416677 -0.0703653573241634 -0.0407330512343206 -0.100186733639658 0.16129679855636 -0.0998400137665607 0.00440703098862957 -0.108869029469169 -0.0514775913009615 0.0408162721898304 0.0796658991204338 -0.018523486394162 -0.0303401316891026 +-0.0213772107002177 0.0101255699185804 0.350518347086928 -0.0137867866884371 -0.0266506919707471 0.0287672064309623 0.0781112576625884 -0.0559896179761865 0.0222160224021411 0.28824936622053 -0.0937065433876403 0.143978286197329 -0.0375543323210307 0.0333650462154672 -0.0121495954346027 0.0160623372331978 -0.0685766854585797 -0.0669906224412474 0.21606644877929 -0.0480013250035737 -0.0469573261029125 -0.0789590811123428 -0.0654255009641026 0.016182373716175 -0.0639956073280553 -0.0506987433534249 -0.170888040794351 0.0116408190790877 -0.0918299222854155 -0.160290546577098 -0.0328705546924818 -0.0226497280510179 -0.0707528211439884 -0.161391883889871 0.0425651678785884 -0.10495981652161 -0.0734925919353133 -0.0556560809607412 0.129246814511917 0.054194113310272 0.0662922474735609 -0.135889680945226 0.313664268448512 0.111623412904884 -0.0223592354548156 -0.0703591015556646 -0.0539081459312134 -0.0319433064318825 0.076535310377789 -0.0832911277077545 -0.0234374146513659 0.0693562731260779 -0.103090250524052 -0.0344427401673768 0.072751642249816 -0.048748704124811 -0.0513249464662678 0.110351517287608 -0.0497960302140967 -0.0793564649670462 0.0593968243829293 -0.034974739045591 -0.0701199683973641 0.854544660212398 -0.103074825249069 -0.0997405331144406 -0.0259379715057234 0.0155676002706699 -0.0468914706997456 -0.0476154397952992 0.077432015231446 -0.00992690977537723 -0.0363687691970426 0.375516413525629 -0.1325790606759 -0.0623917979273423 -0.0489856867656543 -0.0144612159852716 0.00514293826458984 -0.043561715653228 -0.0705814151091889 -0.0501255198804243 0.0998948486084729 0.0189220724574337 -0.0209028619769727 -0.115123168061885 -0.101802165068803 -0.0215726919569932 0.309621582188894 0.0146524685606223 0.0252299183238881 -0.0819443743740123 -0.0395335117973086 0.0624780509452232 0.0594345742263999 0.0251757135775496 -0.0593063245715214 -0.116703044773764 -0.0583538566866557 -0.0683121050962806 +-0.0495288839225235 0.118485959463755 -0.122550052360995 -0.0527161434373708 -0.00581986796689013 0.107725033942498 0.111870581380097 0.0120825587665654 -0.107241313735622 -0.111470665382865 0.0128358254556051 -0.112145994373637 -0.0119780979292073 0.0864315955074781 0.116747422702968 -0.100238056846979 -0.0102505571826698 -0.127339258994769 -0.0491833828711793 0.0800317864903617 0.0798441000449144 -0.0909353797757818 -0.0196446762185838 0.128366268902188 0.0429211269142081 -0.0852312661060188 0.337755471595752 0.147084575483586 -0.00699805850250988 0.293117032770078 -0.0374558720682272 -0.103472807972319 0.00936648709915628 0.0467124577475181 0.143055895785179 -0.0686115448149738 0.109705713049473 0.10555306345259 -0.0772566752890816 -0.0834998122383725 0.109278477743009 -0.0360928878898859 -0.0967578663135787 -0.118515320061851 -0.0852313375556598 -0.0703822549502224 -0.0108923074340124 0.164613198953221 -0.0134989258953246 -0.111488812212664 0.083638174024618 -0.023658029975968 0.163855561656947 -0.03643995873987 -0.0539246990244962 -0.0112898964984699 -0.0973832351440144 -0.0364956793178151 -0.0417944984767513 0.132179068730184 0.11427109650616 -0.0186667706694728 -0.0181405935584037 -0.103074825249069 0.82633634612362 0.134684039369463 -0.02639916725145 -0.123162088609205 -0.0303035937291463 -0.0692295773748009 -0.073349118981333 -0.00427797698312721 0.0538622220384728 -0.116811200481328 0.160674114259555 -0.0373266715901421 0.0185459095959645 -0.0570771945848155 0.00658510100278736 -0.0839825390024487 0.00774041738339005 -0.0115866856876868 -0.0627324826883736 -0.0378392830334688 -0.0609315693547262 -0.0815726858643583 0.0448754094103933 -0.127323162630268 -0.0247999313507374 -0.05173691906611 -0.0582995326898583 -0.103193319913842 -0.0473143705430186 -0.10247662471682 0.0464209304611677 -0.0365512073964765 -0.0243206785959445 -0.00293928368623286 -0.0217449855546278 -0.0622413255844454 +-0.025244363040724 -0.0174799550493797 -0.16961779242147 -0.0784900257315286 0.0923653572176273 0.178209862012673 0.00650881672460408 -0.0223978663600544 -0.0039033254169453 -0.076732620745886 0.0516193993706004 -0.0752720432501561 -0.0373162474816709 0.170424826617625 0.0127138765690999 -0.0705326873725403 -0.0818979335811703 -0.0448363177186768 -0.0618355427339147 0.109746313047789 0.125208626134841 0.00909249757912082 0.0168804937738585 0.116588200182312 0.146910320874224 -0.0693008542795376 0.21401828397952 -0.0595717167233917 0.0622666763121433 0.123739252479171 -0.00939463964556352 -0.00848526439391279 0.0820953476921742 -0.00374739067053838 0.0553243314501953 -0.0327030012092988 0.121770152414649 -0.0567238164415345 -0.0966924237364413 -0.0377081940058237 0.0610453654128998 0.157723899548991 -0.130666527517783 -0.0863409894749868 -0.0771174299901557 -0.0904158297216541 -0.0611993902075278 -0.0716243182234037 -0.046800461261851 -0.0633596870960881 0.169551000427564 -0.0745655220100714 0.180976992742389 -0.00728387420742607 -0.0550191364256748 -0.0530968011107979 -0.0538411192614395 -0.105260225663164 -0.0763182154686386 -0.0852862029922133 -0.0278795659370756 0.0350257182364982 0.116974836925211 -0.0997405331144406 0.134684039369463 0.950515932018113 -0.0658995112235792 -0.0535116506674958 -0.0306662392452427 0.000123279928410924 -0.0223873081637046 0.118360858772444 0.00882760867089179 -0.0775066576689825 -0.00799011457969918 -0.0557932117060748 -0.0264223925785735 -0.0165101521396772 0.0125255812427818 -0.102602821230341 -0.0349859362446848 0.140355849899848 -0.0398059757853242 -0.0459372600062969 -0.00528661395861271 -0.00401955055608032 0.0160792855977041 -0.140064939794414 -0.089074110305047 -0.0207320675337629 -0.042168404072362 -0.133478555184162 -0.0604614383446005 -0.020020880038783 0.147805215669522 -0.0856602259959101 0.00274314022289657 -0.0540926822392204 -0.135662981636587 0.0280738733859389 +-0.0182183984494272 -0.0301808876134331 -0.0609853172942646 0.305916645695981 -0.0645388301059669 0.0153747702313985 -0.00539219328182961 0.0593878664983183 0.0277858626419219 0.0559276896905375 -0.0496295090381781 -0.0121589727871192 -0.0816294399304886 0.00356283460893586 -0.0583343567289781 0.0333881653148109 -0.0634967378119528 -0.0376045252868316 0.0126891867361839 -0.110148644023497 -0.0334883352457982 0.0236516213014149 0.0631129477009522 0.0614662225236123 -0.0798968066405771 -0.0282514588998773 -0.0372107066868908 -0.00551686693820071 -0.0108741661872489 0.0472373495331864 0.0261689913290323 0.132592874429052 -0.087217638868851 -0.129104451589336 0.0519693320570894 -0.0774398239236582 -0.107846101059522 -0.0479837536449498 -0.00719562208232714 0.140387562695026 0.0484359240644708 -0.0911755857651036 -0.0964705487503332 -0.0157383319886926 0.185334295408952 -0.0479433994894653 0.00799839722025928 0.0299258115966728 0.0702130011265644 -0.0593855382680243 -0.110659403833917 -0.0591708961969117 -0.048595760236739 -0.0655063412231607 0.16512257733804 0.0729804183652595 -0.113790360757215 -0.0112374348954934 -0.0331165288475975 -0.0369271595486975 -0.0381863735100915 -0.0304656121852813 -0.112195151554138 -0.0259379715057234 -0.02639916725145 -0.0658995112235792 0.867201160203905 0.0982617876320901 -0.0816408608180071 -0.0640843820351637 -0.0152291238639788 -0.0260827084452719 -0.0821161884754023 -0.0352659602199595 -0.0240192551815882 0.0875726487249252 -0.105602911303234 -0.0227320404611925 -0.142662606046057 -0.0319791002189872 0.0321251548397015 -0.0673454230162376 0.0798291511017962 0.392854483685192 0.159059034897853 -0.126562182312478 -0.134585963647953 -0.0271293496723649 -0.0503939420560484 -0.0125291108524359 0.264165949157645 -0.0816557353345246 0.0730887940242469 0.173874787036572 0.0149241530548149 -0.079740259739216 -0.0893865730392773 0.0705499301682713 -0.0774182748045102 -0.0423972300299546 +0.00424476551786016 -0.0839594825143633 -0.00234691271371609 0.0654898793161011 -0.0400176291271858 -0.0929272090593362 -0.0440527034104941 -0.0464403134196989 -0.0126239306404005 0.0406743353336288 0.00158958685925546 -0.012210980267311 0.00482479200783341 -0.0990466764927083 -0.0825577918765044 0.0807093286341092 -0.0405198951054889 0.0208418552024716 -0.0169919257655763 -0.070367632986749 -0.0901115245307811 0.0195548235528012 0.116000945572138 -0.0523425523126652 -0.0603028520519041 -0.065788572494557 -0.076376865010681 -0.0264811141524287 -0.0154881651810363 -0.109450471061747 0.0483625711441422 0.10243946282266 -0.0927211313993904 -0.0267013870815333 -0.0696980751468535 -0.0222156821323368 -0.0658475729577068 -0.00933125581912969 -0.0554140636844675 0.178931719590674 -0.0777802418283016 -0.0377872469749151 -0.0308578245715731 -0.00390559245028289 0.114978042752483 0.00436197278523615 0.180997524628128 -0.0360475546219488 0.173720671438128 -0.0422672703737272 -0.137372222378323 -0.0516878641069059 -0.0529511286764466 -0.0334616605297736 0.0707511302782255 -0.0823308533872272 0.200379199702493 -0.00954667264523631 0.0372548011942743 -0.0647378934062198 -0.0370143770840718 -0.02051688012021 -0.0316049971184345 0.0155676002706699 -0.123162088609205 -0.0535116506674958 0.0982617876320901 0.867467085208227 0.155315964844993 0.11814438875344 0.026263820024708 0.0279955943420343 -0.0260061405450422 0.0380857465553461 -0.079190362896947 0.082722057139342 -0.0126159556426226 -0.0242183663666693 -0.0910670102748958 0.00753119789226034 -0.0986318842557066 -0.0654111733810983 0.151947692665025 0.099070098693323 0.10820306451786 -0.0281039657038373 -0.0233238269278541 -0.0287088568548618 -0.0131654983225883 -0.0529649897308629 0.092351364482442 -0.0478278277730235 0.0143621906568228 0.00169934245958239 -0.0850399535729019 0.0434347845083965 -0.0469307990767869 -0.121914615701965 0.0219305545707014 0.0179714513348334 +0.00781200027813735 -0.0417808339013769 -0.0144065010973386 -0.039877485854672 -0.0510597034366237 -0.0550654156299066 -0.072478069572802 0.0393014527455145 -0.0632259668282641 0.0211622281397668 -0.101695812695935 -0.0577626737716265 0.00543276904556217 -0.109326500229772 -0.0421362078407363 0.064396635129512 0.0105734158618604 -0.00398192842107511 -0.0505773851585084 -0.00663527111124922 -0.0667100407563709 -0.0267111431103628 -0.027631588819478 -0.0724737343344118 -0.0891463869294447 -0.0321212619550117 -0.00268365290507485 0.0473169913497224 0.0134478508520327 -0.0194264917026998 0.00282762426107287 -0.0102845854746693 -0.00518022914937962 0.0324661241300635 -0.0811230487716904 0.0714189642496326 -0.0382857906721604 0.0175679301636374 -0.0335620171885032 -0.0379955420904135 -0.027105420179273 -0.0247546937358659 -0.0353280037622145 -0.0531361884562036 0.0184447189611591 -0.000492535582189194 0.219027310229874 -0.0723254639452112 0.0235454012812508 -0.0527175603662645 0.00464387915066896 0.0493972214788708 -0.0618368063288744 -0.00630272370630247 -0.1010301190133 -0.073367250965387 0.161904825241762 -0.0300466512737319 0.0557582742491475 -0.0630125481685362 0.0199407386755204 -0.0391057024689018 -0.0131455427052044 -0.0468914706997456 -0.0303035937291463 -0.0306662392452427 -0.0816408608180071 0.155315964844993 0.939298144657947 0.24502394305982 -0.0200932666580634 -0.0281735378700877 0.0150698680291386 -0.0410226708102408 -0.0748666579255745 0.105330467016809 0.0569913481373509 -0.058025577123882 -0.041577533810213 0.137723804515511 -0.0216355640775616 -0.0393607816880472 -0.0276524768953697 -0.00968266096426958 -0.04225792263754 0.0538423306709301 0.00806195530443258 -0.0278347974417041 -0.0170696513100828 -0.0166727210310635 -0.0860597534097326 -0.0208628687357728 0.011844410260807 -0.0395115779182103 -0.0605869644041205 0.0859702067912399 0.0631936577456421 -0.0385907051520299 0.222183993373623 0.0222894644497399 +0.0150899538007608 -0.0936856650310469 -0.00710675898277636 -0.0410619984463031 -0.0542921442007698 -0.124001586419269 -0.161224668366965 -0.0242544767769595 -0.107162295770539 -0.0569810692109499 -0.0191856082047115 -0.10975352097076 0.193502359134681 -0.116692099483021 -0.135894664400473 0.0835529606025964 0.0467830486945929 0.0355964911424687 0.0616328473547737 0.00472922909793337 -0.0475819988601644 -0.00253456519628706 -0.0659775804708052 -0.090780663202079 -0.0310632155796081 -0.030199994496386 -0.103184854160911 -0.117568904132956 0.0482362017234371 -0.0890883708279947 0.154843382144353 -0.0313832356784902 0.0162639560963199 0.0100476017754799 -0.13388295805233 0.0852892944751742 -0.0490864913827045 -0.0925588594491024 0.176465097944221 -0.108053935537997 -0.106945382809207 0.0383236989800967 -0.00982550192047017 -0.0420692723105788 -0.0603609974297459 0.0799198376933804 0.379434188584621 -0.172384361573914 -0.0844655823115831 0.0176640732197746 0.035318059894664 0.00853308758681707 -0.0498903993125154 0.0369593610461085 -0.184500760558996 -0.0878027684890346 0.413968782778519 0.0888247258153063 0.116247246937646 -0.0673481533442666 -0.103048034593709 0.00262167681325721 -0.00255012107875752 -0.0476154397952992 -0.0692295773748009 0.000123279928410924 -0.0640843820351637 0.11814438875344 0.24502394305982 0.990328033085356 -0.0757970268491252 0.0233880200917775 -0.0450615395361844 -0.0320798974912219 -0.108062172783966 -0.104288500593583 0.242977107314174 -0.0650019544752421 0.00526625677207516 0.0218740340324361 -0.0408718848425665 -0.00273936009971492 -0.0734799864117259 -0.0397462966283282 -0.0212146302817461 0.0112700197973845 0.20785614175942 -0.0822669310775544 -0.0263040031455085 0.00154812988292958 -0.110035199846477 -0.0140127302223537 0.00448690310623447 -0.0310119475048499 -0.128424261066936 0.066485932157822 0.279694697543887 -0.0285879552703771 0.0446230719454515 0.0128456537002905 +-0.0224627423009827 -0.0232822672796782 0.0612887886311607 -0.0426534785097224 0.140537141073253 0.066503195137216 0.0736276582765375 -0.0667981147987293 -0.0179662882141484 0.182207103820288 -0.0399146045664405 0.193228924896325 -0.0964472886038923 0.0366099803452795 0.12606500979885 -0.0704798992654798 -0.0652074522978877 -0.108662334536845 0.00511042700342348 0.00243552188360696 -0.046528107447338 -0.0501962910754976 -0.0289965061078353 0.0752068440368349 -0.0101895527820697 -0.158123106333691 -0.0665392171009087 0.00995994641884915 -0.0172032087268732 -0.0283829588780166 0.00739657730503182 0.0343850743808513 -0.0995804132368166 -0.0795305127248807 0.0317845151986646 -0.0212350123570876 -0.0110734596597906 0.0192068861062522 0.108908409706188 0.0360820437976285 0.053887474659827 -0.0695630303870674 0.0665457806308762 -0.0578064554946517 -0.0107712763317594 -0.11587175557229 -0.0528372303773778 0.00299895771415536 -0.0307267393262731 -0.0684043195720281 -0.0371260838965671 0.0552797323808842 -0.0483045645891744 -0.0166776825380539 -0.00654669733806489 -0.011549228444867 0.0126300207247289 0.0339845413361616 -0.0631265555282774 -0.0318005283200961 0.0467996448585568 0.177943926664493 -0.131447328587853 0.077432015231446 -0.073349118981333 -0.0223873081637046 -0.0152291238639788 0.026263820024708 -0.0200932666580634 -0.0757970268491252 0.889788749939527 -0.0539794222460849 -0.0373584569418306 0.145132346449499 -0.0280570128663771 0.0275283733713518 -0.0712643085167757 0.170872667596284 -0.0323283369135206 -0.0355107561117526 -0.00731922267838606 -0.094754369246473 0.00828408685630311 0.0174557300189147 0.0146618808392373 -0.0944704807357743 -0.00152411557906352 -0.131924774979109 0.0898388146097877 -0.0185120320508546 -0.0232537949340589 -0.119871330770582 0.0156501393749626 0.0587849260880925 0.0443447731125461 0.0356679424516416 -0.0926996560542439 -0.0565241442846198 -0.0208539329937725 -0.0308125273116988 +-0.0283292540448113 -0.0659552185385168 -0.011695019743346 -0.0800114112169868 -0.0469487575349543 -0.111774738583278 -0.0546285438465597 -0.0737562196385653 0.0222116306678852 -0.0420577921402437 0.069323993371305 -0.0853242332940581 0.0597480325599021 -0.0581589560245902 -0.049525748018563 0.00367777315358589 -0.105975242197909 -0.0149885672392643 -0.0586223576691473 0.0235102319114178 0.0980662212548939 0.0183113404110164 -0.0683001976248188 -0.0250540154418223 0.172243566331008 -0.0291875041724419 -0.022600261788186 -0.0760646519528619 -0.0147606321695561 -0.044988428064104 -0.036573176319655 0.0297172055432516 0.0856288056273935 -0.0214260638102556 -0.077556807297391 -0.0194087056666794 0.0651915876426592 -0.036062439605849 -0.0243524730048243 -0.0492753625035503 -0.0589269613172261 -0.00825149002964839 -0.105685820977086 0.0349390624757354 -0.0805043004029038 -0.056768261074986 0.0208141675420267 -0.0412335405295961 0.0328751198482684 -0.0253327346696004 0.176939411055823 -0.00613835123443229 0.174047044963751 0.0196259818301742 -0.0203252086946136 0.0639440737499642 0.0209923041994844 0.0132725890168529 -0.0911200706967354 0.0227417471962402 -0.032405568277246 0.0320548386249076 0.0413296479592055 -0.00992690977537723 -0.00427797698312721 0.118360858772444 -0.0260827084452719 0.0279955943420343 -0.0281735378700877 0.0233880200917775 -0.0539794222460849 0.977708934258807 -0.0102964542329761 -0.0455703241937058 0.0795584941929481 -0.0506615891527652 -0.00197264825580253 -0.0117595573873126 0.114389034363418 -0.0766371894053795 0.0549642375448709 0.111278360074001 -0.0085104560435339 -0.00438757275673642 0.0317376373494056 0.0689168412861551 0.0305089931842287 -0.0273060406631041 0.0211062095478673 -0.0331160768757471 -0.0885127780293621 -0.0210568690049471 -0.0530964203248029 -0.0468309203626276 -0.063323281076191 0.0131115709538391 0.0421011075329136 -0.0785874491232929 -0.0462842969570983 -0.0654931242992382 +-0.0519768410860092 0.0507809779134087 -0.0389871153704174 -0.111477988754326 -0.042205816711613 -0.0225653225230573 0.0532424643351614 -0.0600326615236558 -0.0158334927019403 0.0354384918789219 0.0202757523812389 -0.0345589930207627 0.0940673654243207 -0.0807775693632144 -0.0464096059504753 -0.0962907682366826 0.0501785347802722 0.0303236668032662 -0.0281501477834944 -0.103472195877032 0.042168026375816 0.00737251002243092 -0.0792713478023245 -0.0113316804482541 0.0737563753951913 -0.0473694307121674 -0.0604001883892085 -0.0240061307843186 -0.0748191191335421 0.0918040006238837 -0.0196074959670888 -0.0970133968554591 -0.0284869483108157 -0.0718508776110499 0.0451845795703633 -0.0984343050496079 -0.0100659931898324 -0.0273328212404089 -0.129621895010894 -0.00988115377289628 0.0527329147325484 -0.0414586677485809 -0.0993819487998445 -0.00175815126143686 -0.123577741421156 0.00554859084408772 -0.024537903401053 0.1780912290967 0.0911302490424119 -0.0579975544774692 -0.013772350792861 0.120480397881374 0.0938153679590959 0.103441954287397 0.0612316185788536 -0.0785168841699604 -0.0115332955723213 -0.00830255301332352 -0.0159423702083479 0.000234115067058208 0.061609799876267 -0.0458981783087588 -0.0637074036931832 -0.0363687691970426 0.0538622220384728 0.00882760867089179 -0.0821161884754023 -0.0260061405450422 0.0150698680291386 -0.0450615395361844 -0.0373584569418306 -0.0102964542329761 0.902577380561072 -0.048201894532596 -0.00779559615533373 -0.0109777393827545 0.158773754933954 -0.0497964564102068 0.109472466962808 0.0545070494225697 -0.0642941810761403 -0.00370420008721941 0.0221884945677497 -0.0386348392917255 -0.0927514744082477 -0.0221688941943849 0.184410729793375 -0.0696253138640403 -0.0208153343423202 -0.0052956024082225 -0.0983491594209184 0.00400787359090661 -0.0647191240721297 -0.0649441520498805 -0.0185145430567632 0.135683809735109 0.190284850632306 -0.0335513017400115 0.0721797906082723 -0.014357641036449 +-0.00905126820250525 -0.0830950529880663 0.265026480254283 0.000523461390327693 -0.0175453483920164 0.0744183839290297 0.0780568883761624 -0.0574854972215105 -0.0158017709658088 0.198673717448889 -0.0868090329250578 0.195518287431402 -0.0225251252353712 0.110007957807196 0.0546475127109283 0.0240570760479759 -0.0884319904034468 -0.0120338537942086 0.128043650756898 -0.0259934800474516 -0.0659987322382654 -0.0872851543482158 -0.0488962912631381 0.0273239578001176 -0.0824071620263723 -0.0333150930282951 -0.117639700510366 -0.0247055626095379 -0.0590859967700912 -0.106897129125433 -0.0138060223096966 0.0177931652977199 -0.061959224595853 -0.078652604905665 0.0290021954081317 0.0203614176913179 -0.079877198279677 -0.0665041675396298 0.1222589388896 -0.00275583664584831 0.0631805510063334 -0.111949157045914 0.293143104021755 0.00910552784930932 -0.0265621524471063 -0.0526942591296826 -0.027326179588781 -0.0661052810755094 -0.00260288403126251 -0.0688474951487282 -0.0711429651651911 0.0451307547968796 -0.0454272715478209 -0.018567502082668 0.0232226405697567 -0.0577756602362374 -0.0226600762452978 0.123024419683143 -0.0549504529675486 -0.129308362722184 -0.000861337133299579 -0.0197185388061067 -0.10263323154456 0.375516413525629 -0.116811200481328 -0.0775066576689825 -0.0352659602199595 0.0380857465553461 -0.0410226708102408 -0.0320798974912219 0.145132346449499 -0.0455703241937058 -0.048201894532596 0.834575446301899 -0.156216814848999 -0.0547632199014453 -0.0917716368054863 0.0169390921872399 -0.0166322775771605 -0.0486875869294167 -0.0674979827822969 -0.0271527220808881 0.0282040331149669 0.00253353878464717 -0.0175054804241589 -0.0933733463303093 -0.102130881312235 -0.022487599051949 0.286419015293889 -0.0207690067729133 0.0689014671152679 -0.0446414397951639 -0.00201610319946474 0.0172521457222058 0.0815195384468201 0.0228910023220801 -0.112817528393362 -0.0705033639294843 -0.0323660836071102 -0.0145735126473156 +-0.0371038675897 0.169018619802813 -0.085899747347947 0.0263122415077954 -0.0197104671015724 -0.0872249579192109 -0.114622793283294 0.00637995172060935 -0.0129051288994077 -0.0984536665867968 0.177875202317443 -0.0632271084602118 -0.0256751904991947 -0.0699483761625879 -0.00474696364700216 -0.0979189530816728 0.0288718398760898 0.0326631038320055 -0.0879653861040943 -0.0682380482984431 0.0955009702822504 -0.0378394856838714 -0.0682222537856999 -0.116904559045705 0.202468677888262 -0.00678879992638393 0.232598873418496 0.179228329221976 -0.0261543360611924 0.154841160791428 -0.0995080360898384 -0.135401555011452 0.0582424457306021 0.040807688825655 -0.0711646345006137 -0.0509688950580297 -0.00847729355487874 0.100561565007448 -0.0914151651339724 -0.0783622917090618 -0.0617264088046133 -0.017858289965327 -0.0783614759729995 -0.0187274256442499 -0.0453325589558345 0.0190508080867921 -0.0666467427257652 0.211354955366275 -0.0185974711371567 -0.0388220679461932 0.0898795640071314 0.0465140047342107 -0.0331212593653382 -0.0133224256399505 -0.0369914848648428 0.0337656916401877 -0.0823341794351586 -0.06048577401084 -0.0373962744423195 0.466176547476444 0.164836552727292 -0.0314024809952429 -0.00269520261498815 -0.1325790606759 0.160674114259555 -0.00799011457969918 -0.0240192551815882 -0.079190362896947 -0.0748666579255745 -0.108062172783966 -0.0280570128663771 0.0795584941929481 -0.00779559615533373 -0.156216814848999 0.977214102632763 -0.0525380873209313 0.0148775010189405 -0.0275322835226964 0.0486221308309176 -0.0209901439033872 -0.00419935876485239 0.011479490002 -0.056501723476038 -0.0525784013923567 -0.0638229956149888 -0.0139035871781484 0.0379407161587321 0.0161200129174215 -0.0963232413005109 0.0298921190793884 -0.0678599206254322 -0.0131905818678536 -0.0353343363259373 -0.0585759274704243 -0.112667764673701 -0.03722282733014 -0.0178005281446979 -0.0109063160101809 -0.0485986922339274 0.00509935268939837 +-0.0191616093295012 -0.041915881967416 -0.109008295686652 0.0645416738602091 -0.0439349255464198 -0.0561742070652019 -0.0279136326669313 -0.0191702245697158 0.0784826174077926 -0.084049803292166 -0.0171572466617767 -0.0752089842873172 -0.033686780842145 -0.0760456145402258 -0.0285751291830732 0.0155530851026305 -0.0552664681322748 0.0175953883888232 -0.0918212474506431 -0.0240704018691593 -0.0544653259007377 -0.025841636376772 0.137192972922327 -0.0432561571485651 -0.084047686855781 -0.0695216387906012 -0.0418822208798764 0.0132283727061836 -0.0520789556453343 -0.0249533013065922 0.00957154048274643 0.171034217156817 -0.0842016340404469 -0.0322094245531354 -0.0507201226279297 -0.0529677596655269 -0.0904886315230538 0.0428376944707898 -0.0674889510195976 0.270422219271921 0.00945659885590903 -0.0028118827802313 -0.136553508169754 -0.0344102007895443 0.212628743614605 -0.0204401368683505 -0.0535900093119604 0.0148403315654485 0.150720066585887 0.0104999570095971 -0.104419703438052 -0.0378730602670154 -0.0217650421379729 -0.057168444525435 0.168171054735917 -0.0554104958830577 -0.076119297920103 -0.0886036132248793 0.0149184773700837 -0.0623918302588146 -0.0833753448660133 0.000149344658208143 -0.0594962688791876 -0.0623917979273423 -0.0373266715901421 -0.0557932117060748 0.0875726487249252 0.082722057139342 0.105330467016809 -0.104288500593583 0.0275283733713518 -0.0506615891527652 -0.0109777393827545 -0.0547632199014453 -0.0525380873209313 0.938476539961472 -0.0150304653533141 -0.00103623764367588 -0.135319149807745 0.160159907261577 -0.0534817340593481 -0.0225931216834745 0.0957727489675114 0.108816392224799 0.0816001679910137 -0.0239924348856182 -0.0309489637768723 0.051261672037065 -0.0297959800785451 -0.0489946497505661 0.128876946889665 -0.0103483311973678 0.0583046915503601 0.0826796580457133 -0.057948465896803 -0.00263157585155516 -0.0367472284287267 -0.0491880767838589 0.195508160056321 0.012488764023656 +0.00570149085769733 -0.0675525879032064 -0.0725795649809251 -0.074228054415566 0.00667590816714995 -0.137132690511085 -0.104580826085898 -0.00202281185731103 -0.0610237479613586 -0.101827602114104 -0.00496190031896037 -0.115188725795153 0.174294802628768 -0.117170879623527 -0.0505900785330112 -0.0497193312452489 0.0969124792048966 -0.00539157627701579 0.120698327110911 0.0230559594028374 0.00149347975096855 0.0152810007839294 -0.0639070770079314 -0.0772790911835614 0.0076136751597888 -0.0215159456171376 -0.0681555606203545 -0.024182457013824 -0.0469025222773364 -0.0526253372860211 0.00473502001023081 -0.0523559672446327 0.0427006833948347 -0.0280199107421012 -0.145512017622975 -0.0282063272322366 -0.0752519403877547 0.0113650055158328 0.0906910883944637 -0.0879751031348543 -0.0661218607134774 0.0296530714366922 -0.0135393030443397 -0.0140524283073256 -0.064385522829403 0.0348136817780988 0.148107598523856 -0.0621523014479042 -0.0613460170158398 -0.0544950376352982 -0.00617140275399208 -0.0577898616882819 -0.0278893989695562 -0.0237184597168729 -0.0884885347117695 -0.0272667738489141 0.179096685910364 0.126624764720364 0.0155552161773751 0.0172899683589632 -0.0397867637654502 -0.00400295021479605 0.00388267027959445 -0.0489856867656543 0.0185459095959645 -0.0264223925785735 -0.105602911303234 -0.0126159556426226 0.0569913481373509 0.242977107314174 -0.0712643085167757 -0.00197264825580253 0.158773754933954 -0.0917716368054863 0.0148775010189405 -0.0150304653533141 0.984529899701176 0.0350134237300884 -0.0192215480767542 0.00307305997897691 -0.0609816681872653 0.0347767672437616 -0.0389255526624963 -0.015748674012872 -0.0886470444930379 0.0488171023643953 0.45515540932491 -0.00110159580277951 -0.0702279158542757 -0.0251242294878443 -0.117588374305041 -0.0162680317946322 -0.0534045456294026 -0.0533126819262757 -0.0920014787404063 -0.0184779131450402 0.442103396389511 -0.0182076055687815 0.00162141028758006 -0.0430939711136906 +0.000236945143714594 -0.0390297133326286 -0.021524899784081 0.00995152758746856 0.276850161512337 -0.0226008351815484 -0.0842930682398488 -0.0399091651267679 0.115619906855333 -0.0397968713916073 0.0319611114636013 0.0661508333915354 -0.0990032667068767 -0.0273916654424857 -0.0267160134315841 -0.0721738330016904 -0.0574874996944902 -0.0407682630346435 -0.0520199996853502 -0.0268879990040905 0.00769853309518306 0.0579842049060923 -0.0210620892670117 -0.0751158138500467 -0.0465241279453657 -0.0341080932285597 -0.0214918921075465 0.00604777334243238 0.148919156039771 -0.0471076723963089 -0.0586142330606551 0.0431631892703537 -0.034543932107213 -0.0548507108119634 -0.0694158193935804 0.202416027192135 0.0203201243192183 0.0562938460020339 -0.0740316343729947 -0.0144989220923987 -0.076576550051141 -0.0321435489765313 0.0263950917291625 0.02499926306713 -0.00767968048083662 -0.0809707388369247 -0.052433204639527 -0.0431180421180481 -0.0612168265916374 -0.0580926882519149 -0.00538512453623324 -0.0562899553494286 -0.040732494497848 -0.0868977600923241 -0.0593305324642964 0.00225889129716495 -0.0649235587512447 -0.023829640061556 0.132467247118319 -0.050637937390108 -0.0599322903972836 0.268375361531062 -0.0119041541809152 -0.0144612159852716 -0.0570771945848155 -0.0165101521396772 -0.0227320404611925 -0.0242183663666693 -0.058025577123882 -0.0650019544752421 0.170872667596284 -0.0117595573873126 -0.0497964564102068 0.0169390921872399 -0.0275322835226964 -0.00103623764367588 0.0350134237300884 0.937328510375972 -0.0601212799603853 0.0482437551468882 0.0329622322484774 0.0255238025555994 0.0255850849575253 0.0108261877154139 0.0177281478481919 -0.0115249325704893 0.0593524179408755 -0.0205601616663331 -0.0767596840336894 0.0998422311513665 0.0066081764024371 -0.0878735202359715 0.11320415688874 0.0313263269415912 -0.0512753102944846 -0.0908562371743175 -0.0790483306584813 -0.0467955248286637 -0.0908322200197301 0.107829170261611 +-0.0411056965751305 -0.0544962460406102 0.011087573597087 -0.154588215186387 -0.10953666829053 -0.0698476234508024 -0.0277896606141904 -0.0110597077204124 -0.0307209373245175 0.0236347334470499 0.12957411594421 -0.0666823176071666 0.00345052572550485 -0.0303571030044694 0.0137814729530687 0.0233915934898606 -0.0149231142050114 0.0775736083657618 -0.00228134268903575 -0.103088517376573 0.185947909368819 0.1143755791535 -0.111658327114105 -0.0105068733999379 0.254045077220499 -0.00501626122440471 -0.0557342629942099 -0.0595515949481579 -0.0306218443542888 -0.0569661535768143 -0.00590141513909572 -0.170907583704129 0.0179301815933684 -0.0788687105514378 -0.0184456885775375 -0.0901200489921307 -0.0125471565222692 -0.115794775211027 -0.0925038351642482 -0.158011545474497 -0.0483102699106745 0.021164418241327 -0.00992955860022414 -0.00183115147878415 -0.136475607835813 0.0833379883921637 -0.0204526152282003 -0.048790569629344 -0.0644272961484072 -0.00894678692286527 0.210088302765557 0.22888312328133 0.0542121636672836 0.392773683975634 -0.0844765897758558 -0.0294861019473076 -0.0195911519292893 -0.0152500869590043 -0.0624638106519357 0.0180541494823477 -0.0434900865175034 -0.0378887859459457 -0.0010509169885528 0.00514293826458984 0.00658510100278736 0.0125255812427818 -0.142662606046057 -0.0910670102748958 -0.041577533810213 0.00526625677207516 -0.0323283369135206 0.114389034363418 0.109472466962808 -0.0166322775771605 0.0486221308309176 -0.135319149807745 -0.0192215480767542 -0.0601212799603853 0.961523584890291 -0.0329968915724081 0.0331915632381056 0.0101241798047577 -0.0049637591560566 -0.0882626475233787 -0.0900257257554117 -0.0481938885135998 0.0225988675373215 -0.0252999633525994 0.0369349529207028 -0.0388023124913158 -0.107458129180707 0.0143092119679177 -0.046378230051844 -0.00638322193434175 0.0206915254731547 0.180276174864931 0.0747084484692253 -0.00530021834690972 0.124457065451552 0.0117976390364595 +0.00981357307024499 -0.0160387815048281 0.00790300409189692 -0.0206815550313775 0.0600258138638933 -0.0805309542239622 -0.113595529680008 -0.0365346654453308 0.05070048717511 -0.0285246479076065 0.00887241488657865 0.0272310034596306 0.0403414061037786 -0.118342756469791 -0.0775776641545625 -0.0492977184886677 0.0136889789507199 0.00855063792525638 -0.0171918313767813 -0.137745668576792 -0.073310382495335 -0.00187386543540481 -0.104047351482982 -0.124900919578117 -0.0340486801074654 -0.00330967983750562 -0.129772818873186 0.0127667889576483 -0.0145504851872062 -0.079696822984385 -0.083585534230546 -0.0105541522401955 -0.0344538819537815 0.0435524784888944 -0.0792193665049725 0.0912077772173305 -0.0507473536308158 -0.0429352955366053 -0.0468201605074584 -0.046115169921056 -0.0627573794660245 0.0264882173584844 0.00356983507527896 0.106319102682756 -0.0335266511869073 0.0717706271106498 0.0600628139071966 -0.0102781831638237 0.0334142538463022 0.0821111705317794 -0.0855486429776687 0.0545134691283417 -0.0426433419642627 0.0129209231704839 -0.0220088842236175 -0.0384325848390803 0.0251468554654999 -0.0268828688081356 0.06815477277135 0.0183982436589206 -0.0230735629849767 0.065678836210279 -0.0127574150407013 -0.043561715653228 -0.0839825390024487 -0.102602821230341 -0.0319791002189872 0.00753119789226034 0.137723804515511 0.0218740340324361 -0.0355107561117526 -0.0766371894053795 0.0545070494225697 -0.0486875869294167 -0.0209901439033872 0.160159907261577 0.00307305997897691 0.0482437551468882 -0.0329968915724081 0.924130447642177 -0.0188770991334021 0.0137711952293723 -0.0169920379990865 -0.0678279635070099 -0.0774698324144306 0.0128402027977932 0.0807925544150096 0.00838565017172653 -0.0172415740138064 0.0230724882578658 -0.0529952132301029 0.0536261081226704 0.00580591095135909 0.0576408955650089 -0.0886215012607717 0.0575732773572177 0.0222769107482059 -0.0337379642287049 0.241062272282199 0.127764510847486 +0.0597838990052878 0.0171746709822454 -0.0401613147141274 -0.0094290798568845 0.0170960525885839 -0.0273121977486218 -0.0858095957703832 0.161990572719185 0.0486364100111006 -0.0761040277167194 0.0155303091333158 -0.0634937603614729 -0.0841871780491887 -0.0382681324865256 -0.0417366332904245 -0.034968608834337 -0.0554202049111477 -0.006157896149537 -0.0645600452897568 -0.0198383994657265 0.015752592013442 -0.00256166348897113 -0.0774469007321801 -0.0210417825875655 -0.0132487028526028 0.18012709452434 0.00340138122738972 -0.0191841381821419 0.00915313817317174 -0.0425465588936746 -0.0476502313129963 -0.092221240243505 0.104021600437347 0.104285586614484 -0.024808330842688 0.00897488195051314 -0.0318382022921211 -0.0160340789624347 -0.0342648537111846 -0.0335325484755206 -0.0257655611542982 -0.057474626245066 -0.0537831161182019 0.030599042396884 0.0363573627780977 -0.0143823933272292 -0.0510394408867255 0.0042700267535079 -0.105387915039105 0.14914293558429 0.0228475194631067 0.0350592914855758 -0.0330868767478101 -0.00355084998693659 -0.0335495659659729 0.195126678627742 -0.0251931098420688 -0.0428893350053138 -0.058919902524002 -0.036339327029261 0.0429174813052563 -0.024253477861535 0.164054502070107 -0.0705814151091889 0.00774041738339005 -0.0349859362446848 0.0321251548397015 -0.0986318842557066 -0.0216355640775616 -0.0408718848425665 -0.00731922267838606 0.0549642375448709 -0.0642941810761403 -0.0674979827822969 -0.00419935876485239 -0.0534817340593481 -0.0609816681872653 0.0329622322484774 0.0331915632381056 -0.0188770991334021 0.718777467834945 0.141077152467265 -0.051410719257752 0.0540653535310776 -0.0323903690080143 0.0937770330169163 -0.055177089493464 0.0579064928703769 -0.045544238747601 -0.0740977999092732 -0.0345170635914512 0.0659297696790246 -0.0499125103272672 0.0134352794553157 -0.0607384478868876 -0.00214423034397086 -0.0598843300259619 0.172636817829774 -0.0158917128531331 -0.00995017426204662 +0.0526366791336449 -0.08164891411159 -0.0676437125941514 -0.0976195183915148 0.0900899491687317 -0.0729515168337422 -0.112062749410367 0.104019744620451 0.0556201106517495 -0.0898496948354053 0.0837058780940913 -0.0648758007251856 0.0437971695604667 -0.0491098064415264 -0.145232678311654 -0.0297658753623649 -0.0639190231201848 -0.0534708785656439 -0.0164824831752834 -0.0246287482194784 -0.00513612668215578 0.0628977641223187 -0.0537123511735978 -0.166597725266669 0.0151785191906965 0.1908434188542 -0.0874001029133848 -0.134594942806735 -0.120609024914412 -0.0879980498180019 -0.0501809255441948 -0.00753629158243783 0.344812580899782 0.151824912557244 -0.127961442569793 -0.0552599590777042 -0.0124601088608959 0.00332129721920917 -0.0638686964967765 -0.00696562871920526 -0.155662640400209 0.103342181686684 -0.079157820231619 0.025456859754319 -0.0491032894009288 -0.0418865002000421 -0.0203738964471019 -0.0802625232062547 -0.111592677304751 0.0349174479819852 0.0133301390641864 -0.0828545074786838 0.0350250604075162 0.0218849592276075 -0.0595170663680639 0.107222232370297 0.0131634036261306 -0.103687956992328 -0.00706304766402108 -0.0765410708399875 -0.0398175158258432 0.051956735828589 0.262011265254552 -0.0501255198804243 -0.0115866856876868 0.140355849899848 -0.0673454230162376 -0.0654111733810983 -0.0393607816880472 -0.00273936009971492 -0.094754369246473 0.111278360074001 -0.00370420008721941 -0.0271527220808881 0.011479490002 -0.0225931216834745 0.0347767672437616 0.0255238025555994 0.0101241798047577 0.0137711952293723 0.141077152467265 0.922262077292179 -0.00871020548439948 -0.071151854918188 -0.0130893290135505 0.217820642092582 0.0100044911217586 0.110453967744251 -0.0640637557939897 -0.0674560301158731 -0.0634711118575348 0.139137322231286 -0.0897247898800055 0.00464496556419887 -0.0463787528353666 -0.0130414407503573 0.0221064537762665 0.0956867494294332 -0.0459398980796189 0.0477356185710512 +-0.0412020774199395 0.0314367695373425 0.0394417034811423 0.0854680804427267 -0.0469164138754726 0.0282533686966246 0.0366496553677462 -0.0224594923382272 -0.000645676739244862 0.00163796436395798 -0.0437576689118545 -0.0101606330611615 -0.0393248612724587 -0.0254473364662722 -0.0310131829002861 -0.0648413514642765 -0.0826906821780154 -0.044175691300854 0.0501021269845217 -0.132682855938839 -0.0297149801312589 0.0196403597414643 0.105665789559964 -0.0371240676019762 -0.0427028917481588 -0.0266689903257301 -0.104507158031328 -0.0044141116321511 -0.0550886937037099 -0.0528591786027953 -0.0588021648722967 0.113292363731295 -0.107630215329903 -0.0898268924278112 -0.0106816142959605 -0.129414240838037 -0.0390280335994691 -0.00221767298983443 -0.0455164585892987 0.261668865896527 0.0354141255074943 -0.0868627012223907 0.0348359659683552 0.0281660502009543 0.145355457985414 0.00461725001548527 0.0207558465284221 0.0171353028751803 0.203789193170464 -0.0620062919077949 -0.122459034536676 -0.011230139009152 -0.102693500094227 -0.0234883502727799 0.218395132928382 -0.040854056948462 -0.0665508482653592 0.0422227472900016 0.00369761917060757 -0.035962418515188 -0.0100492923460346 -0.0681251090785437 -0.0298845073914012 0.0998948486084729 -0.0627324826883736 -0.0398059757853242 0.0798291511017962 0.151947692665025 -0.0276524768953697 -0.0734799864117259 0.00828408685630311 -0.0085104560435339 0.0221884945677497 0.0282040331149669 -0.056501723476038 0.0957727489675114 -0.0389255526624963 0.0255850849575253 -0.0049637591560566 -0.0169920379990865 -0.051410719257752 -0.00871020548439948 0.754390914237516 0.0958794173566027 0.124012882800152 -0.0473053447108807 -0.0834403824797676 -0.0306775028110685 0.0354103101589804 -0.0717944292764728 0.152444140376676 -0.0913494933925803 -0.0552598459740827 0.0367210858415299 0.0172052791616873 0.0392004532319195 -0.049265223634425 -0.0793197694131118 -0.0805014523176943 -0.0338984254935911 +-0.0186632754908426 -0.0359711231297472 -0.0369550169411611 0.287302118246805 -0.0743925542373794 0.0065447986205864 0.0102426431423152 0.0969517826393285 0.0111351342704091 0.0335634382999034 -0.0719810372050311 -0.00368098783826666 -0.103610006923668 0.00256337873201512 -0.0193126077580354 0.010971442604511 -0.09432747400688 -0.0189256966970216 0.00461857441127714 -0.131926355992128 -0.0356830409399949 -0.0321401041678846 0.0563783125695188 0.0447843838085641 -0.136584167473911 -0.0292877410201256 -0.0287303274528628 0.0423049038522505 -0.0256666363247405 0.0270103290974852 0.0179945251268277 0.0869024772222039 -0.0877095548634951 -0.0885675749931693 0.0526454746226988 -0.0716457360183813 -0.146986948268419 -0.0773775413375974 -0.0383075400127221 0.129716789325876 0.00416477418308177 -0.114978831369764 -0.0276667025733254 -0.0267185991345255 0.27446808268349 -0.0721500784594641 0.00607072758923878 0.0110164173088342 0.0944378879305285 -0.0329940433939873 -0.121567260399571 -0.0115437860836159 -0.0402917688535092 -0.0617936814138497 0.130763228907672 0.0377667261144158 -0.135996927936764 0.0159396169922519 -0.0708253343435349 -0.0617982892578729 -0.0140874792506867 -0.0694722071315624 -0.0943473537094773 0.0189220724574337 -0.0378392830334688 -0.0459372600062969 0.392854483685192 0.099070098693323 -0.00968266096426958 -0.0397462966283282 0.0174557300189147 -0.00438757275673642 -0.0386348392917255 0.00253353878464717 -0.0525784013923567 0.108816392224799 -0.015748674012872 0.0108261877154139 -0.0882626475233787 -0.0678279635070099 0.0540653535310776 -0.071151854918188 0.0958794173566027 0.804305176937687 0.17297909487258 -0.137740443151196 -0.0796260648200169 -0.0468019765911647 -0.0176124102423788 -0.0596066772363132 0.261016854366851 -0.126731016363405 0.0126751078520373 0.0800530573665813 -0.00238178453715675 -0.00638883469501213 -0.0723883715459758 0.0237370222932395 0.0108318791428577 -0.0761054300690764 +0.0423674443560273 -0.0308372669889665 -0.0480791912161906 0.0834593751303025 -0.0508469706950423 -0.0642454403508167 -0.0438294841862086 0.00485184654263687 -0.0249889838102441 0.0253582998381726 -0.0981384054702785 -0.0305190735107805 0.028745401352779 -0.0493036755754636 -0.093352482161504 -0.0251465731194857 -0.0548709837517765 0.0145232025581373 -0.0480457257497478 0.0709297540943224 -0.0763457341994595 -0.0304866150451592 0.299949375669777 -0.0684189922914285 -0.143098345416214 -0.0294240729766624 -0.0616157551162367 -0.00532908285062113 0.0212044983638052 -0.0777807065668599 -0.00866272140479447 0.295870993994828 -0.0237526037526607 0.0374537690590343 -0.00563979838081071 0.00866997974597212 0.131458203777016 0.123770283815626 -0.0266152790922359 0.149969419478498 -0.0233621746480337 -0.0334575399160364 -0.0881697685234607 -0.0747904645530471 0.150618350238967 -0.0816443432453839 -0.0459541678804199 -0.00394412400502963 0.0771087331715645 0.0197960193513179 -0.136279578080174 -0.0879029455612785 -0.0671875045317497 -0.119568994005044 0.0681848413025958 0.00193955580738244 -0.0556770014335973 -0.0190056033653468 -0.00718942994535563 -0.103929488620489 -0.0651000318037026 -0.0246459127049246 -0.0189725689506883 -0.0209028619769727 -0.0609315693547262 -0.00528661395861271 0.159059034897853 0.10820306451786 -0.04225792263754 -0.0212146302817461 0.0146618808392373 0.0317376373494056 -0.0927514744082477 -0.0175054804241589 -0.0638229956149888 0.0816001679910137 -0.0886470444930379 0.0177281478481919 -0.0900257257554117 -0.0774698324144306 -0.0323903690080143 -0.0130893290135505 0.124012882800152 0.17297909487258 0.830742632587109 0.121516697619518 -0.0618959535066238 0.0728969707710403 -0.0773717493623966 0.0523033282329279 0.162922624117247 -0.0396705367889622 0.00789718824911228 0.0137782167016433 -0.0721568270814952 -0.0763988156455936 -0.0661498426238361 -0.0159348920019013 -0.086909345247439 -0.0288959200805307 +0.14154251441125 -0.0151408794729004 -0.0411607999924857 -0.0968808582236434 0.0349028849670147 -0.175524158422012 -0.182693796142183 0.141960895695471 0.0302370231491324 -0.157973521558358 4.85635959847609e-05 -0.171819155729484 0.100968627307761 -0.137054131304891 -0.158452906941738 0.00509253117012535 0.0199486619589717 0.0571794367066297 -0.0913151359807268 0.167517230761834 -0.0924633971254061 0.018684741910828 0.153987038269766 -0.214917540003328 -0.00163595093292149 0.133133865813151 -0.0775444587407274 -0.0820375443707927 -0.00297377168366633 -0.0805915140813085 -0.022109122692603 0.0847522762624918 0.264564269866596 0.146000377414124 -0.174946025086166 0.0047145129945554 0.173872817113564 0.225083850671155 -0.0759027743412027 -0.0685641484633577 -0.161700099094788 0.109475001016548 -0.0728623664041846 0.0703269447138436 -0.044398938312976 0.0744317251374555 -0.040711666374212 -0.0646960954837386 -0.0884345886711146 0.096116981228464 -0.0527520148571624 -0.0722293255984296 -0.0753786589561138 -0.0766872485890833 -0.101610705618581 0.0757093548666031 0.115991417896056 -0.0907571300352564 -0.0253904516966571 -0.0330017189950103 -0.0278685415560704 0.0590836396736 0.220672289139664 -0.115123168061885 -0.0815726858643583 -0.00401955055608032 -0.126562182312478 -0.0281039657038373 0.0538423306709301 0.0112700197973845 -0.0944704807357743 0.0689168412861551 -0.0221688941943849 -0.0933733463303093 -0.0139035871781484 -0.0239924348856182 0.0488171023643953 -0.0115249325704893 -0.0481938885135998 0.0128402027977932 0.0937770330169163 0.217820642092582 -0.0473053447108807 -0.137740443151196 0.121516697619518 0.917874907321149 0.106413281632624 0.179961411500362 -0.107805517640833 -0.0536201799417396 -0.114573135102822 0.190950829238881 -0.0831193477984816 -0.0728632624603561 -0.177539899810584 -0.0860526650760714 0.0846837976378457 0.0737875410557072 -0.00928094992564566 -0.00494752777600485 +-0.0257543031856325 -0.0917180369958901 -0.0948664822077936 -0.102601543374348 0.0559437984154197 -0.0858855016734084 -0.149795035416277 -0.0584202875440289 -0.0740585882605964 -0.111452348271874 0.0522073090713513 -0.0942247983552784 0.209592488330378 -0.123190782745469 -0.0931206438855947 -0.00577857579435035 0.071747531118433 0.0416869140666824 0.117163969209924 -0.00697744806835752 -0.00352625803900327 0.0189499710705224 -0.0658365576929587 -0.118099944950395 0.0261422443634084 -0.0398786569378396 -0.0538698058288102 -0.01037127778339 -0.0264209432681421 -0.0227978267427198 -0.000965351184093917 -0.0459831940096079 0.0406477170942794 -0.0154262279595622 -0.10473222494782 0.0254183251123874 -0.00875220961881679 0.0266917674748267 0.146733886945468 -0.141171945534894 -0.133267287729695 0.0321403934610434 -0.0963075214748516 -0.0594611749039675 -0.100534982601916 0.0834417860221614 0.143817810214033 -0.0339151238014343 -0.12696901098423 0.0110187345301733 0.0476933339646679 -0.0470032809727273 -0.00559651527745425 -0.0427323016973249 -0.0837579858553571 -0.0942996917534634 0.193134671012592 0.121612437462742 -0.019481140252249 0.0251000146602861 -0.0576233104419873 0.0932763293802343 0.0111499174479003 -0.101802165068803 0.0448754094103933 0.0160792855977041 -0.134585963647953 -0.0233238269278541 0.00806195530443258 0.20785614175942 -0.00152411557906352 0.0305089931842287 0.184410729793375 -0.102130881312235 0.0379407161587321 -0.0309489637768723 0.45515540932491 0.0593524179408755 0.0225988675373215 0.0807925544150096 -0.055177089493464 0.0100044911217586 -0.0834403824797676 -0.0796260648200169 -0.0618959535066238 0.106413281632624 0.965599062863585 -0.0262102143918428 -0.124681309537337 -0.000473194190179681 -0.205935527167337 0.0002398856204679 -0.0607737380152675 -0.0722598330152437 -0.122967873958175 -0.00852923051136739 0.460366131876661 -0.0496184749114717 0.00353174871043615 -0.0661339224363403 +0.0355431834411642 -0.0357288671949247 -0.0270939980022448 -0.0111428644192809 -0.00912351829396349 -0.1064990922881 -0.123376338088135 0.0920268061963449 0.0481689050128767 -0.127594036130259 -0.0189442602147323 -0.0777460628128358 0.0368317782682955 -0.154537617467901 -0.117311832707458 0.0647256156968637 0.158403461660521 0.280933385648845 -0.0721661197530335 -0.00357034087920372 -0.0581878243220543 0.0289488050008878 0.0180072259805751 -0.193352540897977 -0.0375697478251756 0.395633390535412 -0.0363828874922296 -0.0884092499009851 -0.0754225499770283 -0.156868212083354 0.0346913795442009 0.0865727199709835 0.138511753134246 0.185225669664867 -0.163148628933293 0.0168509229268406 -0.0119994088568522 0.0445180637066635 -0.0652684246927312 0.0157962558951437 -0.112874523134058 0.100433866342205 -0.0371988992215591 0.0138011494933979 0.0221686380165813 0.177479858859651 -0.0609270367605575 -0.0499941953615486 -0.0554820347210362 0.170818629726339 -0.0624067398697739 -0.077763477958888 -0.118313346522282 -0.00200781320358541 -0.0250641723305748 0.117391683990871 -0.0445287346830976 -0.127911926562722 -0.00634070071069006 -0.0207439036453082 -0.103608161651163 -0.0318026287136036 0.199901387416677 -0.0215726919569932 -0.127323162630268 -0.140064939794414 -0.0271293496723649 -0.0287088568548618 -0.0278347974417041 -0.0822669310775544 -0.131924774979109 -0.0273060406631041 -0.0696253138640403 -0.022487599051949 0.0161200129174215 0.051261672037065 -0.00110159580277951 -0.0205601616663331 -0.0252999633525994 0.00838565017172653 0.0579064928703769 0.110453967744251 -0.0306775028110685 -0.0468019765911647 0.0728969707710403 0.179961411500362 -0.0262102143918428 0.907914846701238 -0.111983228852766 -0.0726594611483257 -0.0443383191688461 0.39816262073069 -0.0623873856489814 -0.0262526911526669 -0.14986997273233 -0.127837894841005 0.0258354786420042 0.106671668201256 0.00721004437107968 -0.0650942484476697 +0.00778314244769228 0.0234370812148061 0.3341022488539 -0.0245943381729895 -0.0843840544856331 0.0663583852649528 0.0753702632580752 -0.0710821340423086 -0.0223917737742041 0.197848796827344 -0.117685978708475 0.206652006649201 -0.051544967974164 0.0278431489631014 0.0697373499016705 0.062493894758599 -0.105798120893753 -0.074027919389387 0.117727675826748 -0.0590595642707286 -0.0821289281868449 -0.0576220414332954 -0.0629697405634149 0.103513603994173 -0.0817090350709698 -0.0794285933791513 -0.124090063696932 0.0381570222359685 -0.0972787702346404 -0.0208268098082925 -0.0100826911989709 -0.0238966769608107 -0.0609515628052377 -0.1114725258703 0.0913617833824326 -0.0947348928519572 -0.0767703576477495 -0.0635656339274654 0.0587280582633803 -0.0340622798693854 0.13644931448332 -0.0648538358441387 0.336027897849622 0.0237159204087068 -0.0226292524244883 -0.0955258537341497 -0.0538758082258489 0.033261616772988 0.0412784056725897 -0.0880167457950424 -0.0424396831693776 0.0736388808514564 -0.0360216983635644 0.0122954547903707 0.033029716079272 -0.0226289032807159 -0.0409553777221014 0.121958989045338 -0.104716833837754 -0.050957131087773 0.0561801154914462 -0.0219395596772269 -0.0703653573241634 0.309621582188894 -0.0247999313507374 -0.089074110305047 -0.0503939420560484 -0.0131654983225883 -0.0170696513100828 -0.0263040031455085 0.0898388146097877 0.0211062095478673 -0.0208153343423202 0.286419015293889 -0.0963232413005109 -0.0297959800785451 -0.0702279158542757 -0.0767596840336894 0.0369349529207028 -0.0172415740138064 -0.045544238747601 -0.0640637557939897 0.0354103101589804 -0.0176124102423788 -0.0773717493623966 -0.107805517640833 -0.124681309537337 -0.111983228852766 0.843487886182107 -0.0487698196722555 0.0366713979696829 -0.107019429379197 -0.0205845371658624 -0.0164743476972062 0.0607323870274675 0.0929374419200517 -0.0638456501875012 -0.0571972898191464 0.00376217074098088 -0.163429716022503 +-0.0118716990852924 -0.0111218107609652 0.00488603704850214 0.000950577279684761 -0.0401631109797223 -0.0820676984331966 -0.080946378861042 -0.0821750056856646 0.0239486512787538 0.201443622927318 0.010976813923934 0.150500380807321 -0.00228436365309111 -0.0475983147116404 -0.0815096212283737 0.0403660230660227 0.0269151434604788 -0.0607615513162407 -0.0176013293007918 0.07533519883565 -0.00264813358141339 0.00138787010225455 0.012759875491142 -0.0355365516624036 0.0455553282520543 -0.0742422368678158 -0.0751195708010401 -0.0183752459743595 0.163465410089553 -0.0307571417170769 0.101639333213537 -0.0559062244305234 -0.104306110155899 -0.0108551174806426 -0.104959688741742 0.219610350577862 0.0544823326201244 0.018293558870682 -0.000677371304634985 -0.0763848613614201 -0.0543053690471838 -0.00429321962272865 -0.0746155057570185 -0.0334263604623056 -0.0876000198392718 -0.0601490769224902 0.028169976161799 0.0262880633543046 -0.000400038868815761 -0.0239556032948353 0.0242982209659557 -0.0128781003605751 -0.110833070570809 -0.00636132910353664 -0.0155394215700372 0.00271296530929177 0.0199672613658722 -0.0264135535079953 0.181581805778199 -0.0156686346470694 -0.079344002769748 0.0552267915164107 -0.0407330512343206 0.0146524685606223 -0.05173691906611 -0.0207320675337629 -0.0125291108524359 -0.0529649897308629 -0.0166727210310635 0.00154812988292958 -0.0185120320508546 -0.0331160768757471 -0.0052956024082225 -0.0207690067729133 0.0298921190793884 -0.0489946497505661 -0.0251242294878443 0.0998422311513665 -0.0388023124913158 0.0230724882578658 -0.0740977999092732 -0.0674560301158731 -0.0717944292764728 -0.0596066772363132 0.0523033282329279 -0.0536201799417396 -0.000473194190179681 -0.0726594611483257 -0.0487698196722555 0.9996208210928 -0.00660905218688416 -0.0764324838560006 0.14932687396706 -0.00300705026120447 -0.072135416977002 0.0081342513485445 -0.0596919680515694 -0.012892018497318 -0.00794146458323017 0.118101535668889 +-0.000643103111003139 0.0290866409473459 0.0317122140665424 0.315539050607303 -0.0655750438971756 0.0155651193153875 -0.00236188775285111 0.0708125300485224 0.0182651714731278 0.025778294500781 -0.0522860917883641 0.0433491957290849 -0.0612084254567695 -0.00197283981529565 -0.0375874449962222 0.00211232865288482 -0.0328404838129954 -0.0678470158963801 -0.0246856517216017 -0.0992438430560188 -0.0914576001383151 -0.0558234527176789 0.123719755047509 0.00678550644948046 -0.157172582056723 -0.0431910212328703 -0.0384854137500002 0.068581458373283 -0.0308837082948735 -0.0256721739716551 0.0167142288429062 0.197395100966654 -0.10840172191093 -0.0775292199073668 0.0286980762503041 -0.0548747024599608 -0.0680938684862513 -0.00415216983597669 -0.0431192202803278 0.220164326921872 -0.0134932194126813 -0.014904246064755 0.039645648461516 -0.0298476235925714 0.221359193592634 -0.0524080896532476 -0.0603879398501875 0.0374285079970444 0.112195625908953 -0.0130277160757648 -0.172547126593481 -0.030872072430665 -0.106522547405579 -0.0746231073066778 0.17433565458757 0.0247930751630756 -0.15666417335766 -0.00394098838433093 0.0154198748973155 -0.0769964569860296 0.0453850942211182 -0.0718696403309721 -0.100186733639658 0.0252299183238881 -0.0582995326898583 -0.042168404072362 0.264165949157645 0.092351364482442 -0.0860597534097326 -0.110035199846477 -0.0232537949340589 -0.0885127780293621 -0.0983491594209184 0.0689014671152679 -0.0678599206254322 0.128876946889665 -0.117588374305041 0.0066081764024371 -0.107458129180707 -0.0529952132301029 -0.0345170635914512 -0.0634711118575348 0.152444140376676 0.261016854366851 0.162922624117247 -0.114573135102822 -0.205935527167337 -0.0443383191688461 0.0366713979696829 -0.00660905218688416 0.799031020489935 -0.0794299388205114 -0.0152544193383979 0.117778179434549 0.0270364656932287 -0.046852543789041 -0.141415619521805 0.0948845218953941 -0.0570767403758147 -0.0368730217307307 +0.0391398813920412 -0.0643928397568698 -0.0395302575555708 -0.0732951489350867 0.0149659775700006 -0.146021681641479 -0.100754140121321 0.067406311081243 0.0640550852183117 -0.118817320593155 -0.00859363847962669 -0.0716801699489185 0.0559321237303893 -0.13934371286083 -0.121124093510439 0.00203275187103675 0.230511028557534 0.276819847854656 -0.107443100490218 -0.0167097989063175 -0.0037032730551555 -0.000383864108592224 -0.0538448871921884 -0.173272646219466 -0.0107290226958334 0.370667469502466 -0.0693436236664389 -0.101588111888164 -0.0736149076048152 -0.124549373652876 -0.0104880744827502 -0.0213917773186545 0.151480056655818 0.168589825538372 -0.13993252354388 0.0328565587339645 -0.0757085183532132 -0.0335251684943653 -0.017508773654351 -0.0315974267499465 -0.137071314500263 0.0435267974471091 -0.0944387826858017 0.0206818326100383 -0.0524582544234454 0.278710451173009 -0.00652114212111897 -0.0344885587452035 -0.0621660789835348 0.241308207606417 -0.0414162631917127 -0.0430998945295161 -0.045571704366226 0.0021497154395405 -0.0508298407932768 0.151575952172656 0.0439902084976107 -0.123129192899422 0.079000410562327 -0.0382243409728491 -0.0406160240877882 0.0104840154698608 0.16129679855636 -0.0819443743740123 -0.103193319913842 -0.133478555184162 -0.0816557353345246 -0.0478278277730235 -0.0208628687357728 -0.0140127302223537 -0.119871330770582 -0.0210568690049471 0.00400787359090661 -0.0446414397951639 -0.0131905818678536 -0.0103483311973678 -0.0162680317946322 -0.0878735202359715 0.0143092119679177 0.0536261081226704 0.0659297696790246 0.139137322231286 -0.0913494933925803 -0.126731016363405 -0.0396705367889622 0.190950829238881 0.0002398856204679 0.39816262073069 -0.107019429379197 -0.0764324838560006 -0.0794299388205114 0.940578737889897 -0.0104830790229741 -0.033214676724717 -0.170638081269194 -0.0586443024527059 0.0317148411480538 0.147418957335639 -0.010120489848608 0.0260544270175734 +-0.0088824877984437 -0.0486406882041334 -0.0301550993703615 0.0426995090206093 -0.0729726696468714 -0.0362162013700892 -0.069536244803729 -0.0586125725259177 0.0877620686297415 0.0520201094280373 -0.00649762560427885 0.0188609181019767 -0.0122236217345858 -0.0143400194336083 -0.0590379227752099 0.202007388305582 0.0159273521818421 -0.0393478389200008 -0.0415232435806701 -0.0761519386916171 -0.0859528798922491 0.052883271788792 -0.0171298076156714 -0.0108394351337141 -0.0691976841410164 -0.081044110111577 -0.101652306040376 -0.0296175296478699 0.326386505906811 -0.0616485131695518 0.121268673997205 0.0322549361298862 -0.0741798046391405 -0.0558462501206317 -0.0488955190863389 0.159365584159361 -0.0999052530432616 -0.00650152613166565 -0.00138144995949039 -0.0300300704843929 0.0348098800440612 -0.0429167598445599 -0.104712817688115 0.0284625830932968 0.0462752858338566 -0.00795454096686113 0.0588830113994609 -0.0117723182333129 0.0182399534995573 0.0240166759477128 -0.0847956835165387 0.029943381709195 -0.0211441202255403 -0.0375993064473916 -0.0249184012411068 -0.0502879915378508 0.00665910329153083 -0.0146168738050757 0.298154702702551 -0.0257791214509011 -0.0332339867636381 0.0298786931607971 -0.0998400137665607 -0.0395335117973086 -0.0473143705430186 -0.0604614383446005 0.0730887940242469 0.0143621906568228 0.011844410260807 0.00448690310623447 0.0156501393749626 -0.0530964203248029 -0.0647191240721297 -0.00201610319946474 -0.0353343363259373 0.0583046915503601 -0.0534045456294026 0.11320415688874 -0.046378230051844 0.00580591095135909 -0.0499125103272672 -0.0897247898800055 -0.0552598459740827 0.0126751078520373 0.00789718824911228 -0.0831193477984816 -0.0607737380152675 -0.0623873856489814 -0.0205845371658624 0.14932687396706 -0.0152544193383979 -0.0104830790229741 0.842758650421911 0.0179089835563012 -0.0873107134688963 0.0102057743104036 -0.105951419126752 -0.0199628263124186 0.00872356916772731 0.137945588771889 +-0.0547321694988847 -0.0413589217425085 -0.0180968142482322 0.117261818423127 0.0128482995717833 -0.0177726683708061 0.0024533308354535 0.0440872429754268 0.103569532414217 0.0284108938708961 -0.0274522283773534 0.0152893023921278 -0.040427218888564 -0.0212488192786524 -0.0926405172877795 0.0133476299970134 0.0144821664088039 -0.0362751706770364 0.0378894170275919 -0.0711175232754199 -0.0102335666557162 -0.00694894096520749 -0.018332022337655 -0.00862692748665817 -0.0457292694482972 0.0103560860471798 -0.132118644540461 -0.0563726634213595 -0.0398236797896994 -0.0272962972955744 0.0334364300515545 0.0382497559879894 -0.0315143873264473 -0.111198885581207 -0.0208280038941973 -0.0271648068075225 -0.0504954831572648 -0.0224769466246051 0.0130210960851717 0.021540165316162 -0.00461223368789648 0.0104849097786781 -0.0201556428294254 0.113395110897765 0.137545047795176 -0.0651126242557105 -0.104902163685466 -0.101484477930303 -0.0784694526954731 -0.0299663082389153 -0.0497396085936333 -0.0228460534464373 -0.0696012506093912 -0.0123731711516514 -0.0132526311881177 0.086788031778071 -0.0782585607487929 -0.0603023394807416 0.00752436844703366 0.000154754153136931 -0.0401094413598029 0.0655606930255557 0.00440703098862957 0.0624780509452232 -0.10247662471682 -0.020020880038783 0.173874787036572 0.00169934245958239 -0.0395115779182103 -0.0310119475048499 0.0587849260880925 -0.0468309203626276 -0.0649441520498805 0.0172521457222058 -0.0585759274704243 0.0826796580457133 -0.0533126819262757 0.0313263269415912 -0.00638322193434175 0.0576408955650089 0.0134352794553157 0.00464496556419887 0.0367210858415299 0.0800530573665813 0.0137782167016433 -0.0728632624603561 -0.0722598330152437 -0.0262526911526669 -0.0164743476972062 -0.00300705026120447 0.117778179434549 -0.033214676724717 0.0179089835563012 0.864110969375098 -0.00324677849961758 -0.0208464090640686 -0.0113869609632929 0.0135674079917227 0.0239490034154655 0.0607356647745415 +-0.0400231654986327 -0.0137774441543553 0.0179487305870821 -0.0744328539818267 0.0099075510832418 0.260474780553278 0.369881811512388 -0.0711522419271293 -0.134997206858502 0.0149007247046417 -0.0768878923436938 0.0315877747641991 -0.149949520533294 0.374615103725806 0.3385129574414 -0.0700847392663635 -0.106525874807048 -0.074649090565095 0.100684908170044 -0.00275314659324793 0.110747987323814 -0.0898114218295519 -0.0291969582481214 0.312170345973933 0.0241010244735958 -0.0769700383514312 0.14980104468915 0.0270451554460779 -0.0665453662321784 0.0889281791284196 -0.0713340582058029 -0.0232743483035907 -0.0909682119465212 -0.124542485321563 0.361290331317898 -0.123232717078494 0.0280598571342629 -0.134589535543511 0.038063849343817 0.0577242515605879 0.212015097445239 -0.0733180859190728 0.114768413640526 -0.0618696625420931 -0.0120581657849523 -0.0858036216484477 -0.136817607195784 -0.00903065009636552 -0.0286519507952047 -0.13757966454996 0.0682680783394008 0.0080205304169292 0.228959316261817 -0.0155200039074547 0.0224177444698865 -0.01370200876067 -0.143506639121128 0.0168005060670632 -0.0937814519208373 -0.0863034401898634 -0.0131379157491319 -0.0716220042546346 -0.108869029469169 0.0594345742263999 0.0464209304611677 0.147805215669522 0.0149241530548149 -0.0850399535729019 -0.0605869644041205 -0.128424261066936 0.0443447731125461 -0.063323281076191 -0.0185145430567632 0.0815195384468201 -0.112667764673701 -0.057948465896803 -0.0920014787404063 -0.0512753102944846 0.0206915254731547 -0.0886215012607717 -0.0607384478868876 -0.0463787528353666 0.0172052791616873 -0.00238178453715675 -0.0721568270814952 -0.177539899810584 -0.122967873958175 -0.14986997273233 0.0607323870274675 -0.072135416977002 0.0270364656932287 -0.170638081269194 -0.0873107134688963 -0.00324677849961758 0.933601577572625 0.00755914338783087 -0.0941216183074579 0.00497474300097007 -0.0520607320762314 -0.0462921389745091 +-0.0221586677534114 0.0606554935787704 0.053056226789374 -0.0682813094089885 -0.10411503992328 -0.0455495611425198 -0.0106742021947062 -0.0531939880266932 -0.100358578401365 0.0531572041402184 -0.0697953017787637 0.0280382489635119 -0.0295132347835984 -0.0651182864978313 -0.0188897473521471 0.00781550629144894 -0.0831931339208166 -0.105014392884974 0.0568764198401594 -0.102499894952888 -0.0351923212542367 -0.0345894053075778 -0.0555708698212735 -0.00342290856423348 0.0219833331659103 -0.0840935525390379 -0.148733192305549 0.100129850540801 -0.0587398210715343 -0.0140269157295321 -0.0462824612717696 -0.0798693980874526 -0.0882652167069178 -0.0530576189229304 0.03462798846839 -0.0454724267544308 -0.0463758405184495 -0.0378036581233712 -0.0165617722382415 0.00175327868186442 -0.0124156505156105 -0.0331318249722888 0.0627096333179316 -0.00601285822803505 0.0103778915599618 -0.0152046351593639 0.0685387404288858 0.0831873559568306 0.0297561041040712 -0.0213935807450313 -0.0141170245177571 0.292896108866295 -0.0117115577154894 0.257718137798272 0.0439792446052097 -0.0805557181987568 0.0395859065825478 0.0203996208340016 -0.0847187717492989 -0.0435682124191599 0.0656789742902657 -0.112474092958965 -0.0514775913009615 0.0251757135775496 -0.0365512073964765 -0.0856602259959101 -0.079740259739216 0.0434347845083965 0.0859702067912399 0.066485932157822 0.0356679424516416 0.0131115709538391 0.135683809735109 0.0228910023220801 -0.03722282733014 -0.00263157585155516 -0.0184779131450402 -0.0908562371743175 0.180276174864931 0.0575732773572177 -0.00214423034397086 -0.0130414407503573 0.0392004532319195 -0.00638883469501213 -0.0763988156455936 -0.0860526650760714 -0.00852923051136739 -0.127837894841005 0.0929374419200517 0.0081342513485445 -0.046852543789041 -0.0586443024527059 0.0102057743104036 -0.0208464090640686 0.00755914338783087 0.84298297078791 0.00191974621476292 -0.0552312597401219 0.212110429018249 -0.00750620357298075 +-0.0346609844466083 -0.0714527573481672 -0.0393365127758684 -0.065763227900763 -0.0542769778501417 -0.111415359226998 -0.121060365753603 -0.0592592038148384 -0.149341786388233 -0.105415464976667 -0.0211595338522251 -0.170816086466176 0.252906545600347 -0.0825888061284641 -0.0939789322449218 -0.0159588197072784 0.0741154334895952 0.0452558128413937 0.161310423990983 -0.0355902115390564 0.00123008385489133 -0.000533289114673226 -0.106413246367597 -0.105874730221107 0.0486790463080709 0.00764107548190201 -0.056118829635934 -0.0634821317857134 -0.0241984137276277 -0.0629613100798821 0.0534257178855649 -0.0434195846956691 0.112067220278818 -0.0363587454675468 -0.121845717454662 -0.0356685091385385 -0.0483498285366865 -0.0486252694710812 0.188976228810515 -0.120755022062261 -0.0710676655159842 0.06391373745965 -0.0253100116632096 -0.0852956419479519 -0.0925347264035884 0.0446279984644102 0.216215636849849 -0.0617972410675281 -0.098914275685595 -0.0204670543325441 0.02949758680099 0.00504512589109213 -0.0465569644625748 0.0547509160245899 -0.131394047205276 -0.0587549393282926 0.246090656169457 0.126456894888982 -0.013718932409131 -0.0367308239063932 -0.0633807227373953 -0.0205358634247803 0.0408162721898304 -0.0593063245715214 -0.0243206785959445 0.00274314022289657 -0.0893865730392773 -0.0469307990767869 0.0631936577456421 0.279694697543887 -0.0926996560542439 0.0421011075329136 0.190284850632306 -0.112817528393362 -0.0178005281446979 -0.0367472284287267 0.442103396389511 -0.0790483306584813 0.0747084484692253 0.0222769107482059 -0.0598843300259619 0.0221064537762665 -0.049265223634425 -0.0723883715459758 -0.0661498426238361 0.0846837976378457 0.460366131876661 0.0258354786420042 -0.0638456501875012 -0.0596919680515694 -0.141415619521805 0.0317148411480538 -0.105951419126752 -0.0113869609632929 -0.0941216183074579 0.00191974621476292 0.959543134762486 -0.0262684920806077 0.0367973129331987 -0.0700962283453104 +0.0350131702620375 -0.0552566443769704 -0.0587499310546941 0.0626255665421573 -0.0415267358857219 0.00183522571054492 -0.0241734868805046 0.236664503885876 0.00940526773898869 -0.0703795030120257 -0.0410259266656617 0.0664834808366127 -0.0298977239201533 0.0149024937435985 -0.00411123186733595 0.00417540294869807 -0.0335706215820424 -0.0258708054117776 -0.0274900796120382 0.00604589111689117 -0.000205219342616142 -0.00613850841049007 -0.0544680020156014 -0.0459768899200929 -0.0821776934934052 0.0727527774958209 -0.04175766048613 -0.0467128883779788 -0.0161927437500358 -0.00271161993581798 0.02859588213128 -0.0215813378323896 0.0744989102918628 0.159418811329768 0.0182296264311064 -0.0179056880913723 -0.0199230655093716 -0.0502322742111365 0.0326905664088729 -0.0286814503627817 -0.0492826302242881 0.0425895301621619 -0.0298542571647515 -0.0344354428147231 0.0388857675004094 -0.00552443751892031 -0.00786111992827925 -0.000120308045246673 -0.0917653004871633 0.124516513210372 -0.0758128258501591 -0.0420333785258618 0.0111243441706055 -0.0391982411729303 -0.0149409166218108 0.196333918245246 -0.0858680087049549 -0.0285062005770232 -0.02126132172707 -0.0296377061957362 -0.0282047133212527 -0.101659368747967 0.0796658991204338 -0.116703044773764 -0.00293928368623286 -0.0540926822392204 0.0705499301682713 -0.121914615701965 -0.0385907051520299 -0.0285879552703771 -0.0565241442846198 -0.0785874491232929 -0.0335513017400115 -0.0705033639294843 -0.0109063160101809 -0.0491880767838589 -0.0182076055687815 -0.0467955248286637 -0.00530021834690972 -0.0337379642287049 0.172636817829774 0.0956867494294332 -0.0793197694131118 0.0237370222932395 -0.0159348920019013 0.0737875410557072 -0.0496184749114717 0.106671668201256 -0.0571972898191464 -0.012892018497318 0.0948845218953941 0.147418957335639 -0.0199628263124186 0.0135674079917227 0.00497474300097007 -0.0552312597401219 -0.0262684920806077 0.738403920701361 0.0131760613070509 -0.0562761265026599 +-0.0313913115933475 -0.087642062627442 -0.0167607344266127 -0.0299343891362732 -0.0828224910415079 -0.0997681420913968 -0.0335024499311229 0.0485929262478732 -0.0521874016708529 0.0273004334511554 -0.0264268169927876 -0.0231329901546224 -0.0248893532144148 -0.0737762988810466 -0.0727958850910053 0.0396143126536924 -0.00314116738184983 0.0219451729116167 -0.0248110083971168 -0.0541609081388927 -0.0702735765994709 -0.0542478124668538 -0.0680688343030054 -0.0275627044088623 -0.0103053574239733 0.00634487272420895 -0.0253356398079017 -0.0123968725606188 0.00921568586300772 -0.0425448531003383 0.00891724164674981 -0.0839121918624084 -0.0339051559809501 -0.00316145995453716 -0.0769965931672483 0.000585687587809651 -0.0777048207234517 -0.0896610103752891 -0.0224690054218889 -0.0481933551676848 -0.03297709033145 0.0301230820430499 -0.0190818345489686 -0.0420200378589295 0.0149543589947777 0.0167118647229687 0.0419358213015524 -0.0535510166756158 0.0164241322180746 0.00305463339866252 -0.0181030672383156 0.27136019859287 0.0209345921034947 0.222078937891833 -0.106066415358915 -0.042444991295847 0.0470507504193426 0.01305655358398 -0.0293504573652706 -0.0173881213882064 -0.06886150648582 -0.0453973203294553 -0.018523486394162 -0.0583538566866557 -0.0217449855546278 -0.135662981636587 -0.0774182748045102 0.0219305545707014 0.222183993373623 0.0446230719454515 -0.0208539329937725 -0.0462842969570983 0.0721797906082723 -0.0323660836071102 -0.0485986922339274 0.195508160056321 0.00162141028758006 -0.0908322200197301 0.124457065451552 0.241062272282199 -0.0158917128531331 -0.0459398980796189 -0.0805014523176943 0.0108318791428577 -0.086909345247439 -0.00928094992564566 0.00353174871043615 0.00721004437107968 0.00376217074098088 -0.00794146458323017 -0.0570767403758147 -0.010120489848608 0.00872356916772731 0.0239490034154655 -0.0520607320762314 0.212110429018249 0.0367973129331987 0.0131760613070509 0.967154890046992 0.00490500329073439 +0.000808684862767126 -0.103155361097751 -0.0702890319939486 -0.0258985696241471 0.206862506355744 -0.0763942636399493 -0.0657134826244816 -0.0652399834132554 0.0800036422495982 -0.0853956903052865 0.0814751931570147 -0.0411533298037522 -0.0285336597623604 -0.0236095961267314 -0.0814279672636849 -0.100595173228303 -0.00370685527953247 0.0371063749612906 -0.0572660460334297 -0.017361062480248 0.0486490747086078 -0.000235167892960296 0.0300890682950224 -0.0344329572971442 0.0354527827640145 -0.029091334492454 0.00924544877864178 -0.0823575311647344 0.167080806702922 -0.0340079746961275 -0.051027337280479 -0.0391393460799008 -0.0544610659893472 0.0172124289852256 -0.0996952309093588 0.241717301250855 -0.0176078235427532 0.018136195372141 -0.0583017227391155 -0.0789268832742254 -0.0522182709881014 -0.0011357536071717 -0.0602734596868889 0.0346761091354782 -0.0247534655369721 0.000754840176589452 0.0534187772694809 -0.0811324252214495 -0.101786374318926 0.0460208612252867 0.0124519110683462 -0.0350459796342497 0.0305423547203684 0.0372191110170571 -0.0785096268515498 -0.0591608654492163 0.0318743369447524 -0.092701134011064 0.224916808243512 0.00274657876009218 -0.0261730277581816 0.183165410951624 -0.0303401316891026 -0.0683121050962806 -0.0622413255844454 0.0280738733859389 -0.0423972300299546 0.0179714513348334 0.0222894644497399 0.0128456537002905 -0.0308125273116988 -0.0654931242992382 -0.014357641036449 -0.0145735126473156 0.00509935268939837 0.012488764023656 -0.0430939711136906 0.107829170261611 0.0117976390364595 0.127764510847486 -0.00995017426204662 0.0477356185710512 -0.0338984254935911 -0.0761054300690764 -0.0288959200805307 -0.00494752777600485 -0.0661339224363403 -0.0650942484476697 -0.163429716022503 0.118101535668889 -0.0368730217307307 0.0260544270175734 0.137945588771889 0.0607356647745415 -0.0462921389745091 -0.00750620357298075 -0.0700962283453104 -0.0562761265026599 0.00490500329073439 0.902204737750864 diff --git a/sgkit/tests/test_grm/sim4x_snps_EJ_matrix.txt b/sgkit/tests/test_grm/sim4x_snps_EJ_matrix.txt new file mode 100644 index 000000000..3b4c76dbe --- /dev/null +++ b/sgkit/tests/test_grm/sim4x_snps_EJ_matrix.txt @@ -0,0 +1,50 @@ +0.99139830556299 -0.00872928808429358 -0.00182668484344525 0.00653724818121625 -0.00970151606672012 -0.000376300209204042 -0.00403458912076372 -0.0091303154891467 -0.0025063409800139 -0.00827800141524512 -0.011689008215917 0.0115839728993057 -0.00370022855006686 -0.00477544967109968 0.00508040518986163 -0.00669776381402845 -0.00268322403262799 0.000189176270803031 -0.00282502824029689 0.00174876087798355 -0.00402662162696809 -0.00999581810884953 -0.00385248501614402 0.00111040057509016 0.00540928303137548 -0.00698286105725443 0.00424675223654728 -0.01053417308331 -0.000443470088921046 0.0123927477433028 0.0216485503248726 0.00151440563571961 -0.00537102531242966 0.0102047418916794 0.00762366597460141 -0.00812376323011608 -0.0137103317505542 -0.0133038216165181 -0.00704629871285398 -0.00451845971574771 0.00491745509699287 -0.0111787605293305 -0.00695077002248261 -0.00153934420399 -0.00108979788561008 0.00732488729441047 0.0195789695538859 -0.0123684128297053 -0.0255917352614339 0.000210070633222509 +-0.00872928808429358 0.979607657325068 0.013431491704646 -0.00889919957983649 -0.00102826652144262 -0.00972348179348385 0.000177712990146353 0.00609232442501052 -0.00491450250585163 -0.00130425963330593 0.0102250528497914 -0.0121370253809638 0.00426471913088922 0.00141937999090896 -0.0153833768402732 0.00848957097232418 0.0069811156586017 -0.00660909092766351 0.00733497227697362 -0.000694705775658744 -0.0172682480578359 0.00632440609999726 0.00690943896977523 -0.0103964129646348 0.0167022887242049 0.00572616959889409 -0.00952595590123065 -0.0134024588012545 -0.00543608263450608 -0.0200726937421609 -0.00947170795901056 0.0132677670267852 -0.00537172446980187 -0.0160297498935342 0.00305587249331858 0.00235502521497819 0.00724782854394178 -0.00679031977975044 -0.00796747776056923 -0.00742228206762626 -0.0010310582198045 -0.00282418315881203 0.00515645291808189 0.0103908900852927 -0.0036749480627296 -0.0179892403535247 -0.0195425879553243 0.00642988400321616 0.0145902400876579 -0.00340182207684797 +-0.00182668484344525 0.013431491704646 0.985440376249954 0.0124467290772185 0.00900697124226935 -0.00496561178265876 -0.0112710197157002 0.000489665130614573 -0.0060027059064772 -0.00538915321640824 0.00509179304289849 0.00650682700062013 -0.00503928034493413 0.0080376304024754 -0.015962237977893 0.00179970421402713 0.0145883688984007 -0.00359397606185596 -0.000568886743279924 -0.00240987669501391 -0.0119519334661707 0.000946736239325219 0.00231520312366715 -0.00736187747877194 0.00685926528759672 0.000192033242387686 -0.00954637245801039 -0.00853722461242934 -0.0122527341908585 0.000842676667501641 -0.00569257969869433 0.00799746134411329 -0.0101909497496339 -0.00701209512044159 -0.0126423838970718 0.00903153748671044 0.0185461608874445 -0.00167041445942237 0.00240121515025889 -0.01140897101506 -0.00384259614539234 0.012851559202682 -0.00279650842000591 -0.00241914183601318 -0.00685878237554415 -0.0140045432795399 -0.028385245950584 -0.00648751209608981 0.00108471770973292 -0.0106787135783719 +0.00653724818121625 -0.00889919957983649 0.0124467290772185 0.971486082138641 0.00639917619766479 -0.00398383696540467 -0.00463737768754823 -0.00448089610618991 -0.0141275253569849 -0.00842055003685811 0.00604939383933444 0.00563517788868008 0.0039138804937386 -0.00398383696540467 -0.00136967407683044 -0.000329531800742811 0.000314804122497319 -0.00918454834584282 -0.0101418474317996 -0.000329531800742808 -0.00695698701121268 -0.000771362148107467 -0.011007098528722 -0.00386417457966007 -0.008567826819313 -0.00426918573141101 0.00307624379352643 -0.00497795524697515 -0.00349598262352286 0.00199007752292165 -0.00712267339147443 0.00563517788868007 0.00222940229441084 0.0043096868465861 -0.00628503669126226 -0.00518046082285062 0.0106609980899531 0.00312226778804358 0.00377580851018714 0.00384024210251115 -0.013593647020586 -0.0065703854572686 0.000811863263282556 -0.00234538276059406 -0.00425077613360415 0.00312226778804359 -0.00655197585946174 0.00343523095076022 -0.0061745791044211 0.00222019749550741 +-0.00970151606672012 -0.00102826652144262 0.00900697124226935 0.00639917619766479 1.00886374757312 0.00521627903375568 0.000281329858505038 0.0131943247473693 -0.00157552458432736 -0.00396208243597636 0.0208799848646826 -0.0103341322553963 -0.0170665321524764 -0.0187207200097967 -0.00623716674740886 0.0125389380758895 -0.00285097771395844 -0.0058283026873488 0.00707313347658808 -0.00178908090844251 -0.0049814611882332 0.00788984564333283 0.0104106225702242 -0.0166208488968026 -0.00299809348677672 -0.00723965983192186 -0.013618238504948 0.00519869943190972 -0.0196741661874443 -0.0112919393180407 -0.0269041082542195 0.0203355637567316 -0.00415805915824556 -0.0185722662643298 -0.0138488664542215 0.000779887981575457 0.0133951453835451 0.0154048144568411 -0.00077069316178318 -0.00997163915690443 1.35606943446576e-05 0.0180644933632448 0.00322954145289991 0.00671096239736946 -0.00577090592531874 -0.0206060188453003 -0.0255295703052602 -0.0059740804875185 0.00537375162071151 -0.0134977461232426 +-0.000376300209204042 -0.00972348179348385 -0.00496561178265876 -0.00398383696540467 0.00521627903375568 0.992782209320489 0.00856368716919138 0.00950018240587242 -0.00715167101740517 -0.00672548380940646 -0.0072984699942203 0.0136674564589898 0.00474672869101302 -0.00747245574980477 0.00288358183183076 -0.00835776628205888 -0.00149274173629232 -0.0123967565548357 -0.00352460804248156 -0.00339675188008195 0.0114620822028558 -0.00403731032263275 -0.0134930330479246 0.00515136763579192 -0.00709090930710277 -0.00839735193611351 -0.000877136830678602 -0.00468302947509334 -0.00386454678663211 0.00426190741587645 0.00951369790207383 -0.00923387201540956 0.00686521566802247 -0.012448207867567 -0.00725430703456335 -0.00144118482489334 -0.0147935705530815 -0.00852962439447882 0.00104778276105447 -0.00865444749013319 0.000164760881601523 -0.00235144889408454 -0.00411573721679793 -0.00591168402521527 -5.57820851087652e-05 0.00731273994190556 0.00869915370393855 0.000426272731586897 -0.00673734946808309 -0.00229052617414552 +-0.00403458912076372 0.000177712990146353 -0.0112710197157002 -0.00463737768754823 0.000281329858505038 0.00856368716919138 0.995529343824801 -0.00459852136191372 0.00371104796746296 0.00273599318449967 0.00855506084346849 -0.00561846843295407 0.00575826063366591 0.00107880243148204 -0.00584760755433933 -0.000111383085501392 -0.000951710816534669 -0.00214964247558127 -0.00565707323580822 -0.0047069418187341 -0.00038232108612264 0.00117354145133746 0.000834674071531147 -0.00155271377607876 -0.00731499331724597 0.000329793361062939 0.00137001106477037 -0.00406431607511459 -0.0103927410826132 -0.00455722552823847 -0.00893969065747181 0.0134353144419072 -0.00732143165770849 -0.0205330091149522 -0.0124897250529747 0.00274072134534157 5.15368363194405e-05 -0.00367054685228787 -0.00761598522261826 -0.0153687899797276 0.00137270209559148 -0.000832777759210202 0.00137946738645416 0.0119117944619993 0.00702681270271868 -0.0107786133081371 -0.0192800247576456 -0.000589303300059644 -0.00274159149146153 0.00913063739156267 +-0.0091303154891467 0.00609232442501052 0.000489665130614573 -0.00448089610618991 0.0131943247473693 0.00950018240587242 -0.00459852136191372 0.97614677362157 -0.00418837967130092 -0.00654073393053751 0.00135796437980622 -0.0125585749412644 0.00333603037836722 0.00353648373869795 -0.0120922236060305 0.00170675080141213 0.0010000485869167 0.0071591153321319 -0.00241595791402835 0.00392000696932491 0.00248307748918928 -0.00984936116795851 0.00463081361490983 -0.0146552470467497 -0.0037015816082394 -0.00660005206952364 -0.00524690137414749 -0.0042732901625005 -0.00480816443562391 -0.00702855810137141 -0.00198123489345049 -0.00517641673385697 -0.000767272802541935 -0.0120042649625617 -0.00451258476294176 -0.00956811683304167 0.000769883357759053 -0.0088051144607814 0.000779133413234363 0.00811946257035788 0.00106552337253704 -0.00149857143252638 -0.0126823870146703 0.00645745314335457 0.00313249869471939 0.0052475954835355 0.00391703424467551 0.00430662360879294 -0.00727203256052198 -0.0027739038779658 +-0.0025063409800139 -0.00491450250585163 -0.0060027059064772 -0.0141275253569849 -0.00157552458432736 -0.00715167101740517 0.00371104796746296 -0.00418837967130092 0.982992407718329 0.00314955523435371 -0.00962834039560848 -0.00594828186909654 -0.0120230467673406 -0.00288846589589645 0.0101867497574164 -0.00589566867887728 -0.000544989485163113 0.0060469543312937 -0.00294573181933782 0.00652396912227125 0.00183115643352259 -0.0131268933073321 0.00724161648633865 0.00780645415106936 0.0101445485001605 -0.000408954631632437 -0.0093100705988694 0.00901097500581808 0.00127446728887503 -0.00647564643741318 -0.0111138842335416 -0.00843342671778315 0.00229008857709344 -0.00657144173608889 -0.00312713676658531 -0.00556291268913332 -0.0066292861327108 -0.00601842447346294 0.0024557749573552 0.00987720695394101 0.00705337082060868 -0.00753070252444664 0.00364082993547677 -0.0104445495167925 0.00305612401609895 -0.00811515692104407 0.00174856476617208 0.000731057203172476 -0.0135748350447592 0.00514968762721922 +-0.00827800141524512 -0.00130425963330593 -0.00538915321640824 -0.00842055003685811 -0.00396208243597636 -0.00672548380940646 0.00273599318449967 -0.00654073393053751 0.00314955523435371 0.974155800771036 -0.00351243051892873 0.00210435784702402 -0.022877868754906 0.00143778958871583 -0.00318742067124796 -0.0020535956541252 -0.00979752256273126 -0.0128364140024639 -0.00990048553028962 0.00715804396778766 -0.0115293325581768 0.00107228866339972 -0.00432921811329329 -0.00073348667367345 -0.00557528632449763 0.00206950035381128 0.00403019794786175 0.0128633091082939 0.00377344442976619 0.00132464097105355 -0.00029638448715069 -0.00277433642703369 -0.0069624445004747 -0.00498610376705828 0.00719933980146291 0.00586114817360447 -0.00373163551299044 0.0114161185504345 -0.00679675812021295 0.00524075476505303 0.00403288897868286 0.00642980857559636 0.00726133388574617 -0.00383761646177007 -0.00227923898864943 0.000165892588041612 -0.0101764786421529 -0.00299175581385497 0.000839075281972889 -0.00339709391600607 +-0.011689008215917 0.0102250528497914 0.00509179304289849 0.00604939383933444 0.0208799848646826 -0.0072984699942203 0.00855506084346849 0.00135796437980622 -0.00962834039560848 -0.00351243051892873 0.987643069629664 -0.0304891309815238 0.00219469565643769 0.00992461417767863 -0.0106469042374284 0.0116661320175884 -0.00258063327204169 -0.0165797744148598 -0.00108130732960283 0.00756501682193958 -0.02355701198366 0.014681231797872 0.00905815594669628 -0.0175085536805256 0.0128576253361724 -0.00879085455063591 -0.013963498968645 0.00290633229798352 -0.0024332056343472 -0.0164816904633829 -0.0206849638705502 0.0115758948757154 -0.00710939433252943 -0.00657325258325029 -0.00751319835022048 0.0180551678801497 0.0152209952414739 0.00296774790908625 -0.00188106855538098 -0.0022358305973336 -0.021725407857117 0.00356379642492905 0.0149042595291949 0.000915983177201966 0.00184385701928705 -0.0189698532932908 -0.0400167015596757 0.00286151543752625 0.012683639580588 -0.0031603847477182 +0.0115839728993057 -0.0121370253809638 0.00650682700062013 0.00563517788868008 -0.0103341322553963 0.0136674564589898 -0.00561846843295407 -0.0125585749412644 -0.00594828186909654 0.00210435784702402 -0.0304891309815238 0.992744017050052 0.000913739780972709 -0.009359439525008 0.000707723332712241 -0.00573493181118987 0.00262965511427196 0.00500761188011905 -0.00625328769241456 -0.00512616762405865 0.00355325365337705 -0.000980497245129973 -0.0123297024281834 0.000187808127106525 -0.0246923710852428 -0.0152419297540524 0.025166745208384 -0.00543944265165148 0.000481737962263892 0.0149202447044849 0.0156359556060723 -0.0140674578729278 -0.00051838611070123 0.00560022988232359 -0.00388102485308589 -0.0069188399973474 -0.0233090759719719 0.00720381643952445 0.00332921983093267 -0.00198070167684184 -0.00198483627897923 -0.00698740819180882 -0.0016242094386177 -0.020370250202768 -0.00383624831807357 0.0125933017711743 0.022501719634656 -0.00153949505922959 -0.0158706628633715 0.00159551862957897 +-0.00370022855006686 0.00426471913088922 -0.00503928034493413 0.0039138804937386 -0.0170665321524764 0.00474672869101302 0.00575826063366591 0.00333603037836722 -0.0120230467673406 -0.022877868754906 0.00219469565643769 0.000913739780972709 0.991715493840988 -0.000495218181004551 0.00404442768695932 -0.0105464863765785 -0.000430100516832295 -0.00856241458662285 -0.00140444105689942 -0.00981557503909003 0.00425066548695224 -0.00675479330021342 0.0117270747541783 -0.00526230807625703 -0.00184726734098853 -0.00989058157401398 0.00268311338597608 0.00100143181613715 -0.0149246106374659 -0.00622029123406204 -0.00567826437757993 0.00196320754015543 0.00194473760025275 0.00521275307584673 0.00179914082637056 -0.00867312369624438 -0.00865913039440322 -0.000289292245887846 0.000269464199828414 0.00382624880066999 -0.00136730999640949 -0.00840823674358964 -0.00204467254905005 0.00372878857894553 -0.00196014935034648 0.000150425543836234 0.0126419613855437 -0.000626137581197322 -0.00745740616914333 -0.000924111505348333 +-0.00477544967109968 0.00141937999090896 0.0080376304024754 -0.00398383696540467 -0.0187207200097967 -0.00747245574980477 0.00107880243148204 0.00353648373869795 -0.00288846589589645 0.00143778958871583 0.00992461417767863 -0.009359439525008 -0.000495218181004551 0.974634123363614 -0.00301733308054448 0.00124448881174379 -0.00455453449741735 0.00435571084110326 -0.0136304662161997 -0.00151695085928532 -0.00676368623424063 -0.00103830131630695 0.00529460032925315 -0.00182991402200195 -0.00147092686476818 0.000986754442447737 0.00419002446084151 -0.0070858541958607 -0.000541242175521707 0.000802658464379132 -0.00462817288864479 -0.0121208791960371 0.00380342290689743 -9.94118281570453e-05 0.00311306298914016 -0.0105100393879368 -0.00203241959787743 -0.00588923033841475 0.0196172674229908 -0.0157567747628921 0.00638997139876137 -0.00591684473512504 8.46841499115592e-05 -0.00859544121602328 -0.00589843513731819 0.0074577280715593 -0.00313699546628906 0.00454901161807529 -0.00275959871124843 -0.00633106068577941 +0.00508040518986163 -0.0153833768402732 -0.015962237977893 -0.00136967407683044 -0.00623716674740886 0.00288358183183076 -0.00584760755433933 -0.0120922236060305 0.0101867497574164 -0.00318742067124796 -0.0106469042374284 0.000707723332712241 0.00404442768695932 -0.00301733308054448 0.967438289444981 0.00540378028554157 -0.0054133019973054 0.00668099900576219 -0.00164477685063702 -0.000410292604281016 0.012130239956593 -0.00445183813816332 0.0028438049970916 0.025890775501945 -0.00308576550529026 0.00489711396783294 -0.00904832231162762 -0.00924313715640881 -0.000519472560569439 0.00898428111821244 -0.00372354733500313 -0.00779717897253033 0.00156393557149482 0.0101321597792722 0.00179637436792965 -0.00995046310065666 -0.0110556777843447 0.00513371753745311 -0.00563421717098773 0.00196310194148773 -0.00597247590656559 -0.0059842359665745 -0.0046250493087558 -0.012678207155961 0.000439908911979978 0.00208572196635777 0.00354639784937062 -0.0086517112027402 -0.00337175308657298 -0.00769001090634171 +-0.00669776381402845 0.00848957097232418 0.00179970421402713 -0.000329531800742811 0.0125389380758895 -0.00835776628205888 -0.000111383085501392 0.00170675080141213 -0.00589566867887728 -0.0020535956541252 0.0116661320175884 -0.00573493181118987 -0.0105464863765785 0.00124448881174379 0.00540378028554157 0.992862924867456 -0.00518285507431948 -0.00727048339053796 0.00663131821474737 -8.61629402599664e-05 0.00876427629923775 -0.00795461616516816 -0.0105455809529978 -0.0125984121180994 0.0069799839521616 0.00315871477668526 -0.00687430483071842 0.0115531191696417 -0.00542824597929915 -0.0084446535611834 -0.00210345254030056 0.00462924935940186 -0.000506817231376855 0.00201880854054807 -0.00977732735768398 0.000779993580243173 0.013336989122047 0.00258562299320371 -0.0155290490417752 -0.00329512688517217 -0.0124835382352925 0.00441386710260135 -0.00673000570403987 0.012243106880427 -0.0212932751998195 -0.00930878803718973 -0.0286778679841407 -0.000119843470460735 -0.00219555071703369 -0.0075361449281847 +-0.00268322403262799 0.0069811156586017 0.0145883688984007 0.000314804122497319 -0.00285097771395844 -0.00149274173629232 -0.000951710816534669 0.0010000485869167 -0.000544989485163113 -0.00979752256273126 -0.00258063327204169 0.00262965511427196 -0.000430100516832295 -0.00455453449741735 -0.0054133019973054 -0.00518285507431948 0.985555446244572 -0.000984425581058899 -0.0028199429580069 0.00291873610439574 -0.00566046342400153 -0.00242584678478003 -0.000741026549528148 0.00127415542399882 -0.00327303031981974 -0.00428827940106612 -0.0012414758785067 -0.00766712467047331 -0.0148349267288526 -0.0108437913144052 -0.00465099878241735 0.00984618728351345 0.00444298541272378 -0.00481942145007208 -0.00202150461935337 0.00255258127827931 0.00796840830721365 -0.0120619030929751 -0.00689732683630244 0.000348218044393761 -0.00196627582593279 -0.00488898558125796 -0.00967854424883491 0.0116254497592685 -0.00762859529523897 0.00106006588327501 -0.0128899627873118 -0.00410758869671479 0.000660824085662304 -0.00175490748707802 +0.000189176270803031 -0.00660909092766351 -0.00359397606185596 -0.00918454834584282 -0.0058283026873488 -0.0123967565548357 -0.00214964247558127 0.0071591153321319 0.0060469543312937 -0.0128364140024639 -0.0165797744148598 0.00500761188011905 -0.00856241458662285 0.00435571084110326 0.00668099900576219 -0.00727048339053796 -0.000984425581058899 1.00147341067459 0.00471984362272286 0.00678686420147709 0.0114691141020228 -0.00773857507644037 -0.0111232349565577 0.00185903743853721 -0.0127210773995413 -0.00779083114521155 0.00943106097815145 -0.0120764748679968 -0.00180988475771823 0.00262438880569447 0.00600443627803461 -0.0078417141391593 -0.00643366653188968 0.0081919390840973 -0.00327074166701859 -0.0335688604659429 -0.0258278911964623 -0.0104983950809926 -0.00626798015162793 0.00693332114236809 0.00921096564603301 0.000861146607404342 -0.00626039501920137 -0.00887861708229321 0.00771816855720042 0.00896432235042158 0.0230000009950251 0.0024911958382245 -1.87215211116932e-05 -0.00391778370660379 +-0.00282502824029689 0.00733497227697362 -0.000568886743279924 -0.0101418474317996 0.00707313347658808 -0.00352460804248156 -0.00565707323580822 -0.00241595791402835 -0.00294573181933782 -0.00990048553028962 -0.00108130732960283 -0.00625328769241456 -0.00140444105689942 -0.0136304662161997 -0.00164477685063702 0.00663131821474737 -0.0028199429580069 0.00471984362272286 0.973109189983438 0.00286145509543042 -0.00409835372676344 0.00105832553260648 0.00817466119273052 0.00269579888621659 -0.00291917370144782 -0.00121524471101687 -0.0132090524256148 0.00341271692186386 -0.00172455680297473 -0.00394495046872224 0.00708549202642842 0.000668630569821319 -0.00412702440229402 -0.0107616171105986 -0.0041904168013217 -0.00188210974867731 0.00201253120972215 0.00486401191081271 -0.00442157796720379 -0.00398484798765308 -0.00689662767893023 0.00848863537769557 0.00466865891829592 0.000336261872573373 0.000693226985310337 -0.00823743490998998 -0.0141703956005652 -0.000433847826473698 0.00777781364658669 -0.0134974946004622 +0.00174876087798355 -0.000694705775658744 -0.00240987669501391 -0.000329531800742808 -0.00178908090844251 -0.00339675188008195 -0.0047069418187341 0.00392000696932491 0.00652396912227125 0.00715804396778766 0.00756501682193958 -0.00512616762405865 -0.00981557503909003 -0.00151695085928532 -0.000410292604281016 -8.61629402599664e-05 0.00291873610439574 0.00678686420147709 0.00286145509543042 0.978162609495897 -0.0116963719966111 0.00577832006899755 0.00953593023714189 -0.00580327865391884 -0.00450549252167892 0.00656996294574049 -0.0127968434339333 -0.000954462189451623 -0.0209953012756684 -0.00883063138537507 -0.00343043241028271 -2.68900578457428e-05 0.000691174769765592 -0.00407277646007393 -0.00610908923327679 -0.00581873061260027 0.0146639689920291 -0.00569185530140114 0.00131710109519886 0.00212612746197628 -0.0111164998367429 0.000204286193560315 0.00497240219658517 -0.00145562576132635 0.00346489756301525 -0.0130249111909743 -0.0138358690891048 -0.0161402979935191 0.00529043555606782 -0.00653456219837933 +-0.00402662162696809 -0.0172682480578359 -0.0119519334661707 -0.00695698701121268 -0.0049814611882332 0.0114620822028558 -0.00038232108612264 0.00248307748918928 0.00183115643352259 -0.0115293325581768 -0.02355701198366 0.00355325365337705 0.00425066548695224 -0.00676368623424063 0.012130239956593 0.00876427629923775 -0.00566046342400153 0.0114691141020228 -0.00409835372676344 -0.0116963719966111 0.987518935536985 -0.00781221346766782 -0.0222426320319016 0.0050070786635104 -0.0132549557359402 0.00502224892836352 0.010277902477267 -0.00570675402682301 0.00363935619311255 0.00163027052412398 0.0151355967902375 -0.0166599114886456 -0.00144466552623042 0.0104195004187275 -0.0157708585778771 -0.00694858203722223 -0.0120943312325441 0.000933965157067905 -0.00956329815905601 0.00547896291562609 0.000853008241718224 -0.00979801052276803 -0.011856912752487 0.00439470293645339 -0.00294098857297196 0.00981116384953717 0.0206251628779401 0.00701995689871225 -0.0115983585416271 0.00199169718939851 +-0.00999581810884953 0.00632440609999726 0.000946736239325219 -0.000771362148107467 0.00788984564333283 -0.00403731032263275 0.00117354145133746 -0.00984936116795851 -0.0131268933073321 0.00107228866339972 0.014681231797872 -0.000980497245129973 -0.00675479330021342 -0.00103830131630695 -0.00445183813816332 -0.00795461616516816 -0.00242584678478003 -0.00773857507644037 0.00105832553260648 0.00577832006899755 -0.00781221346766782 0.989981837896206 -0.00847722240159498 0.00932536665432705 0.00343409924432013 -0.00151663899440912 -0.00863175243494933 0.00172376208447457 -0.000164469150233471 -0.0136521905745801 -0.0143322139869938 0.0159743501113658 -0.00419316817423866 -0.0133368482459185 0.00427669038823358 0.00538138200970995 0.00535201217680715 0.00387054753004255 -0.00770940135534906 -0.000815630706432116 -0.0140776786252066 0.0072428186892716 0.00090691414801418 -0.00734265297052814 -0.00604126545275946 -0.0124012735183422 -0.0155283298677521 -0.004175070441308 0.00928659591070934 0.00279027129776768 +-0.00385248501614402 0.00690943896977523 0.00231520312366715 -0.011007098528722 0.0104106225702242 -0.0134930330479246 0.000834674071531147 0.00463081361490983 0.00724161648633865 -0.00432921811329329 0.00905815594669628 -0.0123297024281834 0.0117270747541783 0.00529460032925315 0.0028438049970916 -0.0105455809529978 -0.000741026549528148 -0.0111232349565577 0.00817466119273052 0.00953593023714189 -0.0222426320319016 -0.00847722240159498 0.994187435058349 -0.00128266611351425 -0.00380494695381772 -0.00733270375768063 -0.012293924425866 -0.00657623023902663 -0.0164781090945051 -0.015009742480398 -0.00303829793945682 0.0030787990546319 -0.000667388158300704 -0.00691600304241363 0.00186161271629358 0.00707304296344431 0.00580341953004729 -0.00383215897250805 0.00502117756401927 -0.0107315933768955 0.010661400467973 -0.00519591278153204 0.0063684382210655 -0.000177214992569822 -0.00467963928690002 -0.00354560307244182 -0.0151499673470349 -0.00737016176857072 0.0113928148510222 -0.0130631287013324 +0.00111040057509016 -0.0103964129646348 -0.00736187747877194 -0.00386417457966007 -0.0166208488968026 0.00515136763579192 -0.00155271377607876 -0.0146552470467497 0.00780645415106936 -0.00073348667367345 -0.0175085536805256 0.000187808127106525 -0.00526230807625703 -0.00182991402200195 0.025890775501945 -0.0125984121180994 0.00127415542399882 0.00185903743853721 0.00269579888621659 -0.00580327865391884 0.0050070786635104 0.00932536665432705 -0.00128266611351425 0.99289022739929 0.0042023980962058 0.00139076965747423 0.00278971806450813 -0.00915892582258144 0.00729403356474646 0.0118493527431242 0.0059274982117576 0.000114531788454101 -0.0027943656913174 -0.00589544732714482 0.00183148338392275 -0.00740174482665486 -0.00268372707818873 -0.00714002671046099 -0.00585035892725629 -0.00221247148695238 -0.00593736689057248 -0.00152603497399708 -0.0133082379124838 -0.0122251197941482 0.0035139697098016 0.00108272583628402 0.00129630740032015 -0.00601504937079358 -0.0118916344759841 -0.0118427433554853 +0.00540928303137548 0.0167022887242049 0.00685926528759672 -0.008567826819313 -0.00299809348677672 -0.00709090930710277 -0.00731499331724597 -0.0037015816082394 0.0101445485001605 -0.00557528632449763 0.0128576253361724 -0.0246923710852428 -0.00184726734098853 -0.00147092686476818 -0.00308576550529026 0.0069799839521616 -0.00327303031981974 -0.0127210773995413 -0.00291917370144782 -0.00450549252167892 -0.0132549557359402 0.00343409924432013 -0.00380494695381772 0.0042023980962058 0.9756680033944 0.00789850214010366 -0.0133367426472508 -0.00110484746627154 -0.000502310422267402 -0.00685460251683485 -0.00775961536297251 0.00209314115802077 -0.00596083159962142 -0.00235141872303662 0.00983060448624334 0.00176591808515864 0.00435752168826464 0.000904892103517354 -0.00395418543867359 -0.0139945084846756 -0.00115992540445253 -0.0015723305079455 0.0100902251303206 0.00796082317478708 -0.00518453508289219 -0.0116747483057715 -0.0233533747013445 0.000778137476509912 0.00709753378026562 -0.000309009645295366 +-0.00698286105725443 0.00572616959889409 0.000192033242387686 -0.00426918573141101 -0.00723965983192186 -0.00839735193611351 0.000329793361062939 -0.00660005206952364 -0.000408954631632437 0.00206950035381128 -0.00879085455063591 -0.0152419297540524 -0.00989058157401398 0.000986754442447737 0.00489711396783294 0.00315871477668526 -0.00428827940106612 -0.00779083114521155 -0.00121524471101687 0.00656996294574049 0.00502224892836352 -0.00151663899440912 -0.00733270375768063 0.00139076965747423 0.00789850214010366 0.963383122816229 -0.0120038927555897 -0.00756077151472162 0.00580633684372781 0.00347173828149773 -0.00563075155517461 0.0048796399646547 -0.00145320133880956 -0.00976544661348339 -0.00591000401664256 0.0104533318041678 0.000700661262497305 0.00256655949459652 0.00745704399971104 -0.0033347125392268 0.00288978373503687 0.000965236350275838 -0.00260006897762092 0.00510229548900556 -0.00498579190218208 -0.00799843708890097 0.00158313483981765 -0.00475498785774807 -0.00563734075087673 0.00323819794967073 +0.00424675223654728 -0.00952595590123065 -0.00954637245801039 0.00307624379352643 -0.013618238504948 -0.000877136830678602 0.00137001106477037 -0.00524690137414749 -0.0093100705988694 0.00403019794786175 -0.013963498968645 0.025166745208384 0.00268311338597608 0.00419002446084151 -0.00904832231162762 -0.00687430483071842 -0.0012414758785067 0.00943106097815145 -0.0132090524256148 -0.0127968434339333 0.010277902477267 -0.00863175243494933 -0.012293924425866 0.00278971806450813 -0.0133367426472508 -0.0120038927555897 0.984728764848329 0.000373885824227024 0.000136060035023024 0.017453631703997 0.01069813930484 -0.0179294293233749 0.00205384212892138 0.00820213981972519 0.00253985052146693 -0.0181640711905941 -0.0165855286834741 -0.00559802170512642 0.00267976845435464 -0.00547953628239379 0.0122601181634894 -0.00417076989840704 -0.0127712359961958 -0.00922019057844458 -0.0120551076310645 0.017065853187041 0.0265733945009092 0.00674176071606459 -0.022905211612185 0.00677272004439632 +-0.01053417308331 -0.0134024588012545 -0.00853722461242934 -0.00497795524697515 0.00519869943190972 -0.00468302947509334 -0.00406431607511459 -0.0042732901625005 0.00901097500581808 0.0128633091082939 0.00290633229798352 -0.00543944265165148 0.00100143181613715 -0.0070858541958607 -0.00924313715640881 0.0115531191696417 -0.00766712467047331 -0.0120764748679968 0.00341271692186386 -0.000954462189451623 -0.00570675402682301 0.00172376208447457 -0.00657623023902663 -0.00915892582258144 -0.00110484746627154 -0.00756077151472162 0.000373885824227024 0.992517307282311 -0.00759958258378426 -0.00855004095125855 -0.0061362710809192 -0.00891909800553152 0.0121968313631294 -0.00374650406736438 -0.00661193281372423 -0.00214399380563472 0.0103741604960585 0.0133603682490791 -0.00788803984415564 -0.00376254958475029 -0.00287478445893149 0.00788413663129044 0.0062579957197483 0.00456941308933105 -0.00863872892314745 -0.00592866513722979 -0.00884783384912204 0.00760910928510367 -0.00663730381420524 -0.00234364240992552 +-0.000443470088921046 -0.00543608263450608 -0.0122527341908585 -0.00349598262352286 -0.0196741661874443 -0.00386454678663211 -0.0103927410826132 -0.00480816443562391 0.00127446728887503 0.00377344442976619 -0.0024332056343472 0.000481737962263892 -0.0149246106374659 -0.000541242175521707 -0.000519472560569439 -0.00542824597929915 -0.0148349267288526 -0.00180988475771823 -0.00172455680297473 -0.0209953012756684 0.00363935619311255 -0.000164469150233471 -0.0164781090945051 0.00729403356474646 -0.000502310422267402 0.00580633684372781 0.000136060035023024 -0.00759958258378426 0.987196933516128 0.00964909394032813 0.0129422993901156 -0.0103060449841732 -0.00969864894073843 -0.000180263144839008 0.0058884356199146 0.000407968732447744 0.000702894504329567 0.000588584009179284 -0.00585104299910454 0.0062607320071413 -0.00234065459975216 -0.00181449223436846 -0.0052141715240993 -0.00431720159937707 0.00554039361225278 0.00745113887585718 0.00574949853822739 0.00236336984687281 -0.000308637438323322 0.0103462945765679 +0.0123927477433028 -0.0200726937421609 0.000842676667501641 0.00199007752292165 -0.0112919393180407 0.00426190741587645 -0.00455722552823847 -0.00702855810137141 -0.00647564643741318 0.00132464097105355 -0.0164816904633829 0.0149202447044849 -0.00622029123406204 0.000802658464379132 0.00898428111821244 -0.0084446535611834 -0.0108437913144052 0.00262438880569447 -0.00394495046872224 -0.00883063138537507 0.00163027052412398 -0.0136521905745801 -0.015009742480398 0.0118493527431242 -0.00685460251683485 0.00347173828149773 0.017453631703997 -0.00855004095125855 0.00964909394032813 0.97617463954106 0.0124212977346417 -0.00847796188441213 -0.00846895319732017 0.00253409625285266 -0.000370173733617729 -0.0139933918637594 -0.00897502102519737 -0.016587897695022 -1.8947803971081e-05 0.00748358703207709 0.0121115335794339 -0.00574795934735451 -0.00443787500737007 -0.0121678387851829 0.00112958475788901 0.0121104018729938 0.0165997684601114 -0.00561515367238055 -0.00884108364378332 -0.0016636039119878 +0.0216485503248726 -0.00947170795901056 -0.00569257969869433 -0.00712267339147443 -0.0269041082542195 0.00951369790207383 -0.00893969065747181 -0.00198123489345049 -0.0111138842335416 -0.00029638448715069 -0.0206849638705502 0.0156359556060723 -0.00567826437757993 -0.00462817288864479 -0.00372354733500313 -0.00210345254030056 -0.00465099878241735 0.00600443627803461 0.00708549202642842 -0.00343043241028271 0.0151355967902375 -0.0143322139869938 -0.00303829793945682 0.0059274982117576 -0.00775961536297251 -0.00563075155517461 0.01069813930484 -0.0061362710809192 0.0129422993901156 0.0124212977346417 0.997309536964058 -0.0290248838840301 -0.00641832017187597 0.0127206398024892 0.010511860272638 -0.0114312135045251 -0.0193966642310419 -0.00808364435945279 -0.00809359357230031 -0.000151340946528061 0.00366348988848577 -0.0164253752200941 -0.00512815949750755 -0.0226305263019223 -0.00177505743555341 0.00834133857858979 0.0373868452271795 -0.00633622139568919 -0.00938295964502583 -0.000211358242886371 +0.00151440563571961 0.0132677670267852 0.00799746134411329 0.00563517788868007 0.0203355637567316 -0.00923387201540956 0.0134353144419072 -0.00517641673385697 -0.00843342671778315 -0.00277433642703369 0.0115758948757154 -0.0140674578729278 0.00196320754015543 -0.0121208791960371 -0.00779717897253033 0.00462924935940186 0.00984618728351345 -0.0078417141391593 0.000668630569821319 -2.68900578457428e-05 -0.0166599114886456 0.0159743501113658 0.0030787990546319 0.000114531788454101 0.00209314115802077 0.0048796399646547 -0.0179294293233749 -0.00891909800553152 -0.0103060449841732 -0.00847796188441213 -0.0290248838840301 0.997972282485105 -0.0126319316386635 -0.0119621643728465 -0.0143741938925174 0.0203635503604139 0.0176698439567584 -0.00595919684762059 -0.00740360586151508 -0.0129157915767817 -0.0124780053184107 0.0133730639037166 0.00855602660914502 0.0202041413109781 -0.00860427380795467 -0.0191625001694625 -0.0371806577317426 -0.0121433328828376 0.00850298086985788 -0.000907945303770752 +-0.00537102531242966 -0.00537172446980187 -0.0101909497496339 0.00222940229441084 -0.00415805915824556 0.00686521566802247 -0.00732143165770849 -0.000767272802541935 0.00229008857709344 -0.0069624445004747 -0.00710939433252943 -0.00051838611070123 0.00194473760025275 0.00380342290689743 0.00156393557149482 -0.000506817231376855 0.00444298541272378 -0.00643366653188968 -0.00412702440229402 0.000691174769765592 -0.00144466552623042 -0.00419316817423866 -0.000667388158300704 -0.0027943656913174 -0.00596083159962142 -0.00145320133880956 0.00205384212892138 0.0121968313631294 -0.00969864894073843 -0.00846895319732017 -0.00641832017187597 -0.0126319316386635 0.990305122478742 0.00998189518664395 -0.00701050562501264 -0.00243641972737995 0.00436012713706894 -0.00600514541451795 0.00238111045835537 -0.00878294246780918 -0.00281311732504839 -0.0103382265320887 -0.00270130668003469 0.00341476913740861 -0.00111159767161027 -0.010832534299957 0.000530634013889672 0.00286964887208543 0.0044163820382619 -0.00260174898619361 +0.0102047418916794 -0.0160297498935342 -0.00701209512044159 0.0043096868465861 -0.0185722662643298 -0.012448207867567 -0.0205330091149522 -0.0120042649625617 -0.00657144173608889 -0.00498610376705828 -0.00657325258325029 0.00560022988232359 0.00521275307584673 -9.94118281570453e-05 0.0101321597792722 0.00201880854054807 -0.00481942145007208 0.0081919390840973 -0.0107616171105986 -0.00407277646007393 0.0104195004187275 -0.0133368482459185 -0.00691600304241363 -0.00589544732714482 -0.00235141872303662 -0.00976544661348339 0.00820213981972519 -0.00374650406736438 -0.000180263144839008 0.00253409625285266 0.0127206398024892 -0.0119621643728465 0.00998189518664395 0.98438499321252 0.00954510486499741 -0.00981340213935362 -0.00279418466502989 0.00195431460612821 -0.0101029760206411 -2.17293479359503e-05 -0.00834902420327124 -0.00669913195772496 0.00130898274616364 -0.00635245809375964 -0.00764224656115601 0.0101770671528732 0.0214364074010258 0.000778092219938038 -0.000496093433537335 0.000933517522476065 +0.00762366597460141 0.00305587249331858 -0.0126423838970718 -0.00628503669126226 -0.0138488664542215 -0.00725430703456335 -0.0124897250529747 -0.00451258476294176 -0.00312713676658531 0.00719933980146291 -0.00751319835022048 -0.00388102485308589 0.00179914082637056 0.00311306298914016 0.00179637436792965 -0.00977732735768398 -0.00202150461935337 -0.00327074166701859 -0.0041904168013217 -0.00610908923327679 -0.0157708585778771 0.00427669038823358 0.00186161271629358 0.00183148338392275 0.00983060448624334 -0.00591000401664256 0.00253985052146693 -0.00661193281372423 0.0058884356199146 -0.000370173733617729 0.010511860272638 -0.0143741938925174 -0.00701050562501264 0.00954510486499741 0.981520620744981 -0.010244005643318 -0.013490533197788 -0.00426983963221133 -0.00730505918992241 0.00379145164955309 -0.00329216924604672 -0.00956798106332603 0.00677355497148416 -0.00121107993783154 -0.00268017588035879 0.00488365388260044 0.0232395822204216 -0.00305007801611663 -0.00180149486925174 0.00193957689034296 +-0.00812376323011608 0.00235502521497819 0.00903153748671044 -0.00518046082285062 0.000779887981575457 -0.00144118482489334 0.00274072134534157 -0.00956811683304167 -0.00556291268913332 0.00586114817360447 0.0180551678801497 -0.0069188399973474 -0.00867312369624438 -0.0105100393879368 -0.00995046310065666 0.000779993580243173 0.00255258127827931 -0.0335688604659429 -0.00188210974867731 -0.00581873061260027 -0.00694858203722223 0.00538138200970995 0.00707304296344431 -0.00740174482665486 0.00176591808515864 0.0104533318041678 -0.0181640711905941 -0.00214399380563472 0.000407968732447744 -0.0139933918637594 -0.0114312135045251 0.0203635503604139 -0.00243641972737995 -0.00981340213935362 -0.010244005643318 0.984614947244342 0.00559905291931161 0.00681844725956123 -0.000890013511603652 0.00592265429785096 -0.00512613745301073 0.00290114141702582 0.00734716488605041 0.000566261160967454 0.0126564174075006 -0.0158556887103299 -0.0251143885889293 0.00191340606494896 0.00981798948249568 0.000141029564248267 +-0.0137103317505542 0.00724782854394178 0.0185461608874445 0.0106609980899531 0.0133951453835451 -0.0147935705530815 5.15368363194405e-05 0.000769883357759053 -0.0066292861327108 -0.00373163551299044 0.0152209952414739 -0.0233090759719719 -0.00865913039440322 -0.00203241959787743 -0.0110556777843447 0.013336989122047 0.00796840830721365 -0.0258278911964623 0.00201253120972215 0.0146639689920291 -0.0120943312325441 0.00535201217680715 0.00580341953004729 -0.00268372707818873 0.00435752168826464 0.000700661262497305 -0.0165855286834741 0.0103741604960585 0.000702894504329567 -0.00897502102519737 -0.0193966642310419 0.0176698439567584 0.00436012713706894 -0.00279418466502989 -0.013490533197788 0.00559905291931161 0.98961432508079 0.00136782307950999 -0.000997065824727536 -0.0111116509917093 -0.0171172239657396 0.00965432514673076 0.00299632807147308 0.00221796425367514 0.00148418579020501 -0.00999452046164588 -0.0468825157759583 -0.00711751268156465 0.00846616167424414 -0.0064676438414427 +-0.0133038216165181 -0.00679031977975044 -0.00167041445942237 0.00312226778804358 0.0154048144568411 -0.00852962439447882 -0.00367054685228787 -0.0088051144607814 -0.00601842447346294 0.0114161185504345 0.00296774790908625 0.00720381643952445 -0.000289292245887846 -0.00588923033841475 0.00513371753745311 0.00258562299320371 -0.0120619030929751 -0.0104983950809926 0.00486401191081271 -0.00569185530140114 0.000933965157067905 0.00387054753004255 -0.00383215897250805 -0.00714002671046099 0.000904892103517354 0.00256655949459652 -0.00559802170512642 0.0133603682490791 0.000588584009179284 -0.016587897695022 -0.00808364435945279 -0.00595919684762059 -0.00600514541451795 0.00195431460612821 -0.00426983963221133 0.00681844725956123 0.00136782307950999 0.978831838613978 0.00612677954020328 -0.00116578527173451 -0.00375437089361923 0.0129099870036113 -0.002366885767242 -0.00564175704684242 -0.00914601897060848 -0.00670088739391745 -0.00967941950136768 -0.000653736892383656 -0.00234578513861402 -0.0116445937334797 +-0.00704629871285398 -0.00796747776056923 0.00240121515025889 0.00377580851018714 -0.00077069316178318 0.00104778276105447 -0.00761598522261826 0.000779133413234363 0.0024557749573552 -0.00679675812021295 -0.00188106855538098 0.00332921983093267 0.000269464199828414 0.0196172674229908 -0.00563421717098773 -0.0155290490417752 -0.00689732683630244 -0.00626798015162793 -0.00442157796720379 0.00131710109519886 -0.00956329815905601 -0.00770940135534906 0.00502117756401927 -0.00585035892725629 -0.00395418543867359 0.00745704399971104 0.00267976845435464 -0.00788803984415564 -0.00585104299910454 -1.8947803971081e-05 -0.00809359357230031 -0.00740360586151508 0.00238111045835537 -0.0101029760206411 -0.00730505918992241 -0.000890013511603652 -0.000997065824727536 0.00612677954020328 0.980511216445492 -0.0030943767454892 0.0106995274651874 0.00179369842263249 -0.0117404192032033 -0.0129881825085043 -0.00462783085272067 0.00636203005165091 -0.000224159496191618 0.00533653497820477 0.0124061474864395 -0.00749870200281858 +-0.00451845971574771 -0.00742228206762626 -0.01140897101506 0.00384024210251115 -0.00997163915690443 -0.00865444749013319 -0.0153687899797276 0.00811946257035788 0.00987720695394101 0.00524075476505303 -0.0022358305973336 -0.00198070167684184 0.00382624880066999 -0.0157567747628921 0.00196310194148773 -0.00329512688517217 0.000348218044393761 0.00693332114236809 -0.00398484798765308 0.00212612746197628 0.00547896291562609 -0.000815630706432116 -0.0107315933768955 -0.00221247148695238 -0.0139945084846756 -0.0033347125392268 -0.00547953628239379 -0.00376254958475029 0.0062607320071413 0.00748358703207709 -0.000151340946528061 -0.0129157915767817 -0.00878294246780918 -2.17293479359503e-05 0.00379145164955309 0.00592265429785096 -0.0111116509917093 -0.00116578527173451 -0.0030943767454892 0.974372611513629 0.00476716033331671 -0.00281168883925605 -0.0179229355719435 0.00881599422027333 0.00178517769557731 0.00547178016121949 0.0165232327718544 -0.00647732644598588 -0.00673734946808309 0.00231187327756967 +0.00491745509699287 -0.0010310582198045 -0.00384259614539234 -0.013593647020586 1.35606943446576e-05 0.000164760881601523 0.00137270209559148 0.00106552337253704 0.00705337082060868 0.00403288897868286 -0.021725407857117 -0.00198483627897923 -0.00136730999640949 0.00638997139876137 -0.00597247590656559 -0.0124835382352925 -0.00196627582593279 0.00921096564603301 -0.00689662767893023 -0.0111164998367429 0.000853008241718224 -0.0140776786252066 0.010661400467973 -0.00593736689057248 -0.00115992540445253 0.00288978373503687 0.0122601181634894 -0.00287478445893149 -0.00234065459975216 0.0121115335794339 0.00366348988848577 -0.0124780053184107 -0.00281311732504839 -0.00834902420327124 -0.00329216924604672 -0.00512613745301073 -0.0171172239657396 -0.00375437089361923 0.0106995274651874 0.00476716033331671 0.981631078331822 -0.00675131259887634 -0.00651817464506929 -0.00345705087026855 -0.00630686664831036 0.0044786427308495 0.0163912118362694 -0.00667676878406819 -0.00957034514374698 -0.00490879349380923 +-0.0111787605293305 -0.00282418315881203 0.012851559202682 -0.0065703854572686 0.0180644933632448 -0.00235144889408454 -0.000832777759210202 -0.00149857143252638 -0.00753070252444664 0.00642980857559636 0.00356379642492905 -0.00698740819180882 -0.00840823674358964 -0.00591684473512504 -0.0059842359665745 0.00441386710260135 -0.00488898558125796 0.000861146607404342 0.00848863537769557 0.000204286193560315 -0.00979801052276803 0.0072428186892716 -0.00519591278153204 -0.00152603497399708 -0.0015723305079455 0.000965236350275838 -0.00417076989840704 0.00788413663129044 -0.00181449223436846 -0.00574795934735451 -0.0164253752200941 0.0133730639037166 -0.0103382265320887 -0.00669913195772496 -0.00956798106332603 0.00290114141702582 0.00965432514673076 0.0129099870036113 0.00179369842263249 -0.00281168883925605 -0.00675131259887634 0.969497664549212 0.00626101370096958 -0.00947001779604084 -0.0116084586097142 -0.00494702115856439 -0.0262313230071813 -0.00571430898820166 0.0175060789534527 -0.0103657504156553 +-0.00695077002248261 0.00515645291808189 -0.00279650842000591 0.000811863263282556 0.00322954145289991 -0.00411573721679793 0.00137946738645416 -0.0126823870146703 0.00364082993547677 0.00726133388574617 0.0149042595291949 -0.0016242094386177 -0.00204467254905005 8.46841499115592e-05 -0.0046250493087558 -0.00673000570403987 -0.00967854424883491 -0.00626039501920137 0.00466865891829592 0.00497240219658517 -0.011856912752487 0.00090691414801418 0.0063684382210655 -0.0133082379124838 0.0100902251303206 -0.00260006897762092 -0.0127712359961958 0.0062579957197483 -0.0052141715240993 -0.00443787500737007 -0.00512815949750755 0.00855602660914502 -0.00270130668003469 0.00130898274616364 0.00677355497148416 0.00734716488605041 0.00299632807147308 -0.002366885767242 -0.0117404192032033 -0.0179229355719435 -0.00651817464506929 0.00626101370096958 0.969967245063003 -0.0105377141267429 0.00815116631263368 -0.0191194689162457 -0.0212517832543327 0.00320512606369842 0.0134622145957213 -0.00364015091161271 +-0.00153934420399 0.0103908900852927 -0.00241914183601318 -0.00234538276059406 0.00671096239736946 -0.00591168402521527 0.0119117944619993 0.00645745314335457 -0.0104445495167925 -0.00383761646177007 0.000915983177201966 -0.020370250202768 0.00372878857894553 -0.00859544121602328 -0.012678207155961 0.012243106880427 0.0116254497592685 -0.00887861708229321 0.000336261872573373 -0.00145562576132635 0.00439470293645339 -0.00734265297052814 -0.000177214992569822 -0.0122251197941482 0.00796082317478708 0.00510229548900556 -0.00922019057844458 0.00456941308933105 -0.00431720159937707 -0.0121678387851829 -0.0226305263019223 0.0202041413109781 0.00341476913740861 -0.00635245809375964 -0.00121107993783154 0.000566261160967454 0.00221796425367514 -0.00564175704684242 -0.0129881825085043 0.00881599422027333 -0.00345705087026855 -0.00947001779604084 -0.0105377141267429 0.985802532243649 -0.00434792449045239 0.00592580804878787 -0.0233012996588608 0.0030639908423538 -0.00429592487558853 0.000938738574481675 +-0.00108979788561008 -0.0036749480627296 -0.00685878237554415 -0.00425077613360415 -0.00577090592531874 -5.57820851087652e-05 0.00702681270271868 0.00313249869471939 0.00305612401609895 -0.00227923898864943 0.00184385701928705 -0.00383624831807357 -0.00196014935034648 -0.00589843513731819 0.000439908911979978 -0.0212932751998195 -0.00762859529523897 0.00771816855720042 0.000693226985310337 0.00346489756301525 -0.00294098857297196 -0.00604126545275946 -0.00467963928690002 0.0035139697098016 -0.00518453508289219 -0.00498579190218208 -0.0120551076310645 -0.00863872892314745 0.00554039361225278 0.00112958475788901 -0.00177505743555341 -0.00860427380795467 -0.00111159767161027 -0.00764224656115601 -0.00268017588035879 0.0126564174075006 0.00148418579020501 -0.00914601897060848 -0.00462783085272067 0.00178517769557731 -0.00630686664831036 -0.0116084586097142 0.00815116631263368 -0.00434792449045239 0.989839767080233 -0.0017924409255879 0.00352824470547106 -0.005245920522947 0.0014913383735637 0.00665417427956786 +0.00732488729441047 -0.0179892403535247 -0.0140045432795399 0.00312226778804359 -0.0206060188453003 0.00731273994190556 -0.0107786133081371 0.0052475954835355 -0.00811515692104407 0.000165892588041612 -0.0189698532932908 0.0125933017711743 0.000150425543836234 0.0074577280715593 0.00208572196635777 -0.00930878803718973 0.00106006588327501 0.00896432235042158 -0.00823743490998998 -0.0130249111909743 0.00981116384953717 -0.0124012735183422 -0.00354560307244182 0.00108272583628402 -0.0116747483057715 -0.00799843708890097 0.017065853187041 -0.00592866513722979 0.00745113887585718 0.0121104018729938 0.00834133857858979 -0.0191625001694625 -0.010832534299957 0.0101770671528732 0.00488365388260044 -0.0158556887103299 -0.00999452046164588 -0.00670088739391745 0.00636203005165091 0.00547178016121949 0.0044786427308495 -0.00494702115856439 -0.0191194689162457 0.00592580804878787 -0.0017924409255879 0.984252107178799 0.0243467989319556 -0.00274020826224107 -0.0178810714194847 0.00350228014628555 +0.0195789695538859 -0.0195425879553243 -0.028385245950584 -0.00655197585946174 -0.0255295703052602 0.00869915370393855 -0.0192800247576456 0.00391703424467551 0.00174856476617208 -0.0101764786421529 -0.0400167015596757 0.022501719634656 0.0126419613855437 -0.00313699546628906 0.00354639784937062 -0.0286778679841407 -0.0128899627873118 0.0230000009950251 -0.0141703956005652 -0.0138358690891048 0.0206251628779401 -0.0155283298677521 -0.0151499673470349 0.00129630740032015 -0.0233533747013445 0.00158313483981765 0.0265733945009092 -0.00884783384912204 0.00574949853822739 0.0165997684601114 0.0373868452271795 -0.0371806577317426 0.000530634013889672 0.0214364074010258 0.0232395822204216 -0.0251143885889293 -0.0468825157759583 -0.00967941950136768 -0.000224159496191618 0.0165232327718544 0.0163912118362694 -0.0262313230071813 -0.0212517832543327 -0.0233012996588608 0.00352824470547106 0.0243467989319556 1.04777707047776 0.00777674228224245 -0.0258926769791074 0.0229716772865456 +-0.0123684128297053 0.00642988400321616 -0.00648751209608981 0.00343523095076022 -0.0059740804875185 0.000426272731586897 -0.000589303300059644 0.00430662360879294 0.000731057203172476 -0.00299175581385497 0.00286151543752625 -0.00153949505922959 -0.000626137581197322 0.00454901161807529 -0.0086517112027402 -0.000119843470460735 -0.00410758869671479 0.0024911958382245 -0.000433847826473698 -0.0161402979935191 0.00701995689871225 -0.004175070441308 -0.00737016176857072 -0.00601504937079358 0.000778137476509912 -0.00475498785774807 0.00674176071606459 0.00760910928510367 0.00236336984687281 -0.00561515367238055 -0.00633622139568919 -0.0121433328828376 0.00286964887208543 0.000778092219938038 -0.00305007801611663 0.00191340606494896 -0.00711751268156465 -0.000653736892383656 0.00533653497820477 -0.00647732644598588 -0.00667676878406819 -0.00571430898820166 0.00320512606369842 0.0030639908423538 -0.005245920522947 -0.00274020826224107 0.00777674228224245 0.960682711463807 -0.00329139466105473 0.00117595078833029 +-0.0255917352614339 0.0145902400876579 0.00108471770973292 -0.0061745791044211 0.00537375162071151 -0.00673734946808309 -0.00274159149146153 -0.00727203256052198 -0.0135748350447592 0.000839075281972889 0.012683639580588 -0.0158706628633715 -0.00745740616914333 -0.00275959871124843 -0.00337175308657298 -0.00219555071703369 0.000660824085662304 -1.87215211116932e-05 0.00777781364658669 0.00529043555606782 -0.0115983585416271 0.00928659591070934 0.0113928148510222 -0.0118916344759841 0.00709753378026562 -0.00563734075087673 -0.022905211612185 -0.00663730381420524 -0.000308637438323322 -0.00884108364378332 -0.00938295964502583 0.00850298086985788 0.0044163820382619 -0.000496093433537335 -0.00180149486925174 0.00981798948249568 0.00846616167424414 -0.00234578513861402 0.0124061474864395 -0.00673734946808309 -0.00957034514374698 0.0175060789534527 0.0134622145957213 -0.00429592487558853 0.0014913383735637 -0.0178810714194847 -0.0258926769791074 -0.00329139466105473 0.990512471968524 -0.0102406154551247 +0.000210070633222509 -0.00340182207684797 -0.0106787135783719 0.00222019749550741 -0.0134977461232426 -0.00229052617414552 0.00913063739156267 -0.0027739038779658 0.00514968762721922 -0.00339709391600607 -0.0031603847477182 0.00159551862957897 -0.000924111505348333 -0.00633106068577941 -0.00769001090634171 -0.0075361449281847 -0.00175490748707802 -0.00391778370660379 -0.0134974946004622 -0.00653456219837933 0.00199169718939851 0.00279027129776768 -0.0130631287013324 -0.0118427433554853 -0.000309009645295366 0.00323819794967073 0.00677272004439632 -0.00234364240992552 0.0103462945765679 -0.0016636039119878 -0.000211358242886371 -0.000907945303770752 -0.00260174898619361 0.000933517522476065 0.00193957689034296 0.000141029564248267 -0.0064676438414427 -0.0116445937334797 -0.00749870200281858 0.00231187327756967 -0.00490879349380923 -0.0103657504156553 -0.00364015091161271 0.000938738574481675 0.00665417427956786 0.00350228014628555 0.0229716772865456 0.00117595078833029 -0.0102406154551247 0.980219695947328